From bc9f36bb1b0ca38df04902299e3527855c934cf4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tales=20A=2E=20Mendon=C3=A7a?= Date: Wed, 15 Apr 2026 15:20:10 -0300 Subject: [PATCH 01/15] =?UTF-8?q?=E2=9C=A8=20feat:=20feat:=20complete=20re?= =?UTF-8?q?write=20from=20Python/GTK3=20to=20Rust/GTK4/libadwaita?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Full rewrite of the BigLinux WebApps Manager and Viewer in Rust, replacing the previous Python+GTK3 implementation. Architecture: - 3-crate workspace: webapps-core, webapps-manager, webapps-viewer - webapps-core: shared models, config, desktop entry generation, i18n, templates - webapps-manager: GTK4/Adw GUI for creating, editing, importing/exporting webapps - webapps-viewer: lightweight WebKitGTK6 browser for viewer-mode webapps Manager features: - Create/edit/delete webapps with URL, name, icon, category, browser, profile - Template gallery (Google, Office365, Communication, Media, Productivity) - Welcome dialog with first-run onboarding - Import/export webapps as ZIP archives - Browser selection dialog with system-installed browser detection - Favicon auto-detection from websites - Legacy .desktop migration from Python-era format - Keyboard shortcuts (Ctrl+N, Ctrl+F, Ctrl+Q) Viewer features: - WebKitGTK6 web view with navigation bar (back/forward/reload/fullscreen) - URL bar with Ctrl+L focus, context menu "Open Link in Browser" - Zoom controls (Ctrl+/-, Ctrl+0) with persistent per-webapp zoom level - Developer tools toggle, software rendering mode via desktop action - Download handling with system notification on completion - Edge resize handles for CSD windows Desktop integration: - Sanitized .desktop entry generation with proper Exec/Icon/Categories - Desktop action for software rendering mode (WEBKIT_DISABLE_DMABUF_RENDERER) - Separate browser profiles with isolated cookies/data - XDG menu integration (applications-merged) - Systemd user service for login tasks Internationalization: - gettextrs integration with 80 translatable strings - 29 languages: bg, cs, da, de, el, en, es, et, fi, fr, he, hr, hu, is, it, ja, ko, nl, no, pl, pt, pt-BR, ro, ru, sk, sv, tr, uk, zh - Pre-compiled .mo files in usr/share/locale/ Build: - Release profile: LTO thin, opt-level s, strip, codegen-units 1 - Binaries: gui ~6.3MB, viewer ~2.2MB - Dependencies: gtk4, libadwaita, webkitgtk-6.0, openssl, gettext Removed: - Python source code and dependencies - GTK3/webkit2gtk-4.0 dependency - Legacy bash CLI script (big-webapps) - JSON locale files (replaced by gettext .po/.mo) --- .gitignore | 174 +- Cargo.lock | 2989 +++++++++++++++++ Cargo.toml | 40 + biglinux-webapps/locale/bg.json | 1 - biglinux-webapps/locale/bg.po | 940 ++++-- biglinux-webapps/locale/biglinux-webapps.pot | 847 ++--- biglinux-webapps/locale/cs.json | 1 - biglinux-webapps/locale/cs.po | 939 ++++-- biglinux-webapps/locale/da.json | 1 - biglinux-webapps/locale/da.po | 938 ++++-- biglinux-webapps/locale/de.json | 1 - biglinux-webapps/locale/de.po | 939 ++++-- biglinux-webapps/locale/el.json | 1 - biglinux-webapps/locale/el.po | 944 ++++-- biglinux-webapps/locale/en.json | 1 - biglinux-webapps/locale/en.po | 947 ++++-- biglinux-webapps/locale/es.json | 1 - biglinux-webapps/locale/es.po | 940 ++++-- biglinux-webapps/locale/et.json | 1 - biglinux-webapps/locale/et.po | 939 ++++-- biglinux-webapps/locale/fi.json | 1 - biglinux-webapps/locale/fi.po | 939 ++++-- biglinux-webapps/locale/fr.json | 1 - biglinux-webapps/locale/fr.po | 939 ++++-- biglinux-webapps/locale/he.json | 1 - biglinux-webapps/locale/he.po | 938 ++++-- biglinux-webapps/locale/hr.json | 1 - biglinux-webapps/locale/hr.po | 938 ++++-- biglinux-webapps/locale/hu.json | 1 - biglinux-webapps/locale/hu.po | 937 ++++-- biglinux-webapps/locale/is.json | 1 - biglinux-webapps/locale/is.po | 938 ++++-- biglinux-webapps/locale/it.json | 1 - biglinux-webapps/locale/it.po | 939 ++++-- biglinux-webapps/locale/ja.json | 1 - biglinux-webapps/locale/ja.po | 933 +++-- biglinux-webapps/locale/ko.json | 1 - biglinux-webapps/locale/ko.po | 934 +++-- biglinux-webapps/locale/nl.json | 1 - biglinux-webapps/locale/nl.po | 938 ++++-- biglinux-webapps/locale/no.json | 1 - biglinux-webapps/locale/no.po | 939 ++++-- biglinux-webapps/locale/pl.json | 1 - biglinux-webapps/locale/pl.po | 941 ++++-- biglinux-webapps/locale/pt-BR.po | 356 ++ biglinux-webapps/locale/pt.json | 1 - biglinux-webapps/locale/pt.po | 939 ++++-- biglinux-webapps/locale/ro.json | 1 - biglinux-webapps/locale/ro.po | 940 ++++-- biglinux-webapps/locale/ru.json | 1 - biglinux-webapps/locale/ru.po | 939 ++++-- biglinux-webapps/locale/sk.json | 1 - biglinux-webapps/locale/sk.po | 940 ++++-- biglinux-webapps/locale/sv.json | 1 - biglinux-webapps/locale/sv.po | 938 ++++-- biglinux-webapps/locale/tr.json | 1 - biglinux-webapps/locale/tr.po | 939 ++++-- biglinux-webapps/locale/uk.json | 1 - biglinux-webapps/locale/uk.po | 939 ++++-- biglinux-webapps/locale/zh.json | 1 - biglinux-webapps/locale/zh.po | 933 +++-- biglinux-webapps/usr/bin/big-webapps | 348 -- biglinux-webapps/usr/bin/big-webapps-gui | 7 - biglinux-webapps/usr/bin/big-webapps-viewer | 923 ----- .../br.com.biglinux.webapps.desktop | 8 +- .../share/biglinux/webapps/check_browser.sh | 164 - .../biglinux/webapps/get_app_icon_url.py | 74 - .../usr/share/biglinux/webapps/get_json.sh | 4 - .../icons/flatpak-ungoogled-chromium.svg | 12 +- .../webapps/icons/ungoogled-chromium.svg | 11 +- .../usr/share/biglinux/webapps/main.py | 36 - .../usr/share/biglinux/webapps/select_icon.sh | 39 - .../webapps/update_old_desktop_files.sh | 60 - .../biglinux/webapps/webapps/__init__.py | 5 - .../biglinux/webapps/webapps/application.py | 269 -- .../webapps/webapps/models/__init__.py | 3 - .../webapps/webapps/models/browser_model.py | 121 - .../webapps/webapps/models/webapp_model.py | 221 -- .../webapps/webapps/templates/__init__.py | 5 - .../webapps/templates/communication.py | 84 - .../webapps/webapps/templates/google.py | 139 - .../webapps/webapps/templates/media.py | 93 - .../webapps/webapps/templates/office365.py | 115 - .../webapps/webapps/templates/productivity.py | 134 - .../webapps/webapps/templates/registry.py | 116 - .../biglinux/webapps/webapps/ui/__init__.py | 3 - .../webapps/webapps/ui/browser_dialog.py | 253 -- .../webapps/webapps/ui/favicon_picker.py | 109 - .../webapps/webapps/ui/main_window.py | 442 --- .../webapps/webapps/ui/template_gallery.py | 177 - .../webapps/webapps/ui/webapp_dialog.py | 807 ----- .../biglinux/webapps/webapps/ui/webapp_row.py | 175 - .../webapps/webapps/ui/welcome_dialog.py | 229 -- .../webapps/webapps/utils/__init__.py | 3 - .../webapps/utils/browser_icon_utils.py | 135 - .../webapps/webapps/utils/browser_registry.py | 73 - .../webapps/webapps/utils/command_executor.py | 239 -- .../biglinux/webapps/webapps/utils/mpris.py | 239 -- .../webapps/webapps/utils/translation.py | 8 - .../webapps/webapps/utils/url_utils.py | 246 -- .../webapps/webapps/utils/webapp_service.py | 261 -- .../pt_BR/LC_MESSAGES/biglinux-webapps.mo | Bin 0 -> 5509 bytes crates/webapps-core/Cargo.toml | 14 + crates/webapps-core/src/config.rs | 42 + crates/webapps-core/src/desktop.rs | 141 + crates/webapps-core/src/i18n.rs | 11 + crates/webapps-core/src/lib.rs | 5 + crates/webapps-core/src/models/browser.rs | 126 + crates/webapps-core/src/models/mod.rs | 5 + crates/webapps-core/src/models/webapp.rs | 206 ++ .../src/templates/communication.rs | 95 + crates/webapps-core/src/templates/google.rs | 152 + crates/webapps-core/src/templates/media.rs | 105 + crates/webapps-core/src/templates/mod.rs | 8 + .../webapps-core/src/templates/office365.rs | 127 + .../src/templates/productivity.rs | 150 + crates/webapps-core/src/templates/registry.rs | 139 + crates/webapps-manager/Cargo.toml | 30 + crates/webapps-manager/src/browser_dialog.rs | 138 + crates/webapps-manager/src/favicon.rs | 169 + crates/webapps-manager/src/main.rs | 28 + crates/webapps-manager/src/service.rs | 609 ++++ .../webapps-manager/src/template_gallery.rs | 179 + crates/webapps-manager/src/webapp_dialog.rs | 517 +++ crates/webapps-manager/src/webapp_row.rs | 116 + crates/webapps-manager/src/welcome_dialog.rs | 151 + crates/webapps-manager/src/window.rs | 568 ++++ crates/webapps-viewer/Cargo.toml | 26 + crates/webapps-viewer/src/main.rs | 56 + crates/webapps-viewer/src/window.rs | 645 ++++ pkgbuild/PKGBUILD | 55 +- ruff.toml | 7 - .../locale/bg/LC_MESSAGES/biglinux-webapps.mo | Bin 0 -> 7041 bytes .../locale/cs/LC_MESSAGES/biglinux-webapps.mo | Bin 0 -> 5626 bytes .../locale/da/LC_MESSAGES/biglinux-webapps.mo | Bin 0 -> 5231 bytes .../locale/de/LC_MESSAGES/biglinux-webapps.mo | Bin 0 -> 5416 bytes .../locale/el/LC_MESSAGES/biglinux-webapps.mo | Bin 0 -> 7292 bytes .../locale/en/LC_MESSAGES/biglinux-webapps.mo | Bin 0 -> 5128 bytes .../locale/es/LC_MESSAGES/biglinux-webapps.mo | Bin 0 -> 5590 bytes .../locale/et/LC_MESSAGES/biglinux-webapps.mo | Bin 0 -> 5348 bytes .../locale/fi/LC_MESSAGES/biglinux-webapps.mo | Bin 0 -> 5372 bytes .../locale/fr/LC_MESSAGES/biglinux-webapps.mo | Bin 0 -> 5747 bytes .../locale/he/LC_MESSAGES/biglinux-webapps.mo | Bin 0 -> 6246 bytes .../locale/hr/LC_MESSAGES/biglinux-webapps.mo | Bin 0 -> 5437 bytes .../locale/hu/LC_MESSAGES/biglinux-webapps.mo | Bin 0 -> 5688 bytes .../locale/is/LC_MESSAGES/biglinux-webapps.mo | Bin 0 -> 5465 bytes .../locale/it/LC_MESSAGES/biglinux-webapps.mo | Bin 0 -> 5423 bytes .../locale/ja/LC_MESSAGES/biglinux-webapps.mo | Bin 0 -> 6223 bytes .../locale/ko/LC_MESSAGES/biglinux-webapps.mo | Bin 0 -> 5693 bytes .../locale/nl/LC_MESSAGES/biglinux-webapps.mo | Bin 0 -> 5365 bytes .../locale/no/LC_MESSAGES/biglinux-webapps.mo | Bin 0 -> 5280 bytes .../locale/pl/LC_MESSAGES/biglinux-webapps.mo | Bin 0 -> 5680 bytes .../locale/pt/LC_MESSAGES/biglinux-webapps.mo | Bin 0 -> 5476 bytes .../pt_BR/LC_MESSAGES/biglinux-webapps.mo | Bin 0 -> 5509 bytes .../locale/ro/LC_MESSAGES/biglinux-webapps.mo | Bin 0 -> 5592 bytes .../locale/ru/LC_MESSAGES/biglinux-webapps.mo | Bin 0 -> 6931 bytes .../locale/sk/LC_MESSAGES/biglinux-webapps.mo | Bin 0 -> 5723 bytes .../locale/sv/LC_MESSAGES/biglinux-webapps.mo | Bin 0 -> 5339 bytes .../locale/tr/LC_MESSAGES/biglinux-webapps.mo | Bin 0 -> 5670 bytes .../locale/uk/LC_MESSAGES/biglinux-webapps.mo | Bin 0 -> 6862 bytes .../locale/zh/LC_MESSAGES/biglinux-webapps.mo | Bin 0 -> 5216 bytes 161 files changed, 25773 insertions(+), 15957 deletions(-) create mode 100644 Cargo.lock create mode 100644 Cargo.toml delete mode 100644 biglinux-webapps/locale/bg.json delete mode 100644 biglinux-webapps/locale/cs.json delete mode 100644 biglinux-webapps/locale/da.json delete mode 100644 biglinux-webapps/locale/de.json delete mode 100644 biglinux-webapps/locale/el.json delete mode 100644 biglinux-webapps/locale/en.json delete mode 100644 biglinux-webapps/locale/es.json delete mode 100644 biglinux-webapps/locale/et.json delete mode 100644 biglinux-webapps/locale/fi.json delete mode 100644 biglinux-webapps/locale/fr.json delete mode 100644 biglinux-webapps/locale/he.json delete mode 100644 biglinux-webapps/locale/hr.json delete mode 100644 biglinux-webapps/locale/hu.json delete mode 100644 biglinux-webapps/locale/is.json delete mode 100644 biglinux-webapps/locale/it.json delete mode 100644 biglinux-webapps/locale/ja.json delete mode 100644 biglinux-webapps/locale/ko.json delete mode 100644 biglinux-webapps/locale/nl.json delete mode 100644 biglinux-webapps/locale/no.json delete mode 100644 biglinux-webapps/locale/pl.json create mode 100644 biglinux-webapps/locale/pt-BR.po delete mode 100644 biglinux-webapps/locale/pt.json delete mode 100644 biglinux-webapps/locale/ro.json delete mode 100644 biglinux-webapps/locale/ru.json delete mode 100644 biglinux-webapps/locale/sk.json delete mode 100644 biglinux-webapps/locale/sv.json delete mode 100644 biglinux-webapps/locale/tr.json delete mode 100644 biglinux-webapps/locale/uk.json delete mode 100644 biglinux-webapps/locale/zh.json delete mode 100755 biglinux-webapps/usr/bin/big-webapps delete mode 100755 biglinux-webapps/usr/bin/big-webapps-gui delete mode 100755 biglinux-webapps/usr/bin/big-webapps-viewer mode change 100755 => 100644 biglinux-webapps/usr/share/applications/br.com.biglinux.webapps.desktop delete mode 100755 biglinux-webapps/usr/share/biglinux/webapps/check_browser.sh delete mode 100755 biglinux-webapps/usr/share/biglinux/webapps/get_app_icon_url.py delete mode 100755 biglinux-webapps/usr/share/biglinux/webapps/get_json.sh mode change 120000 => 100644 biglinux-webapps/usr/share/biglinux/webapps/icons/flatpak-ungoogled-chromium.svg mode change 120000 => 100644 biglinux-webapps/usr/share/biglinux/webapps/icons/ungoogled-chromium.svg delete mode 100644 biglinux-webapps/usr/share/biglinux/webapps/main.py delete mode 100755 biglinux-webapps/usr/share/biglinux/webapps/select_icon.sh delete mode 100755 biglinux-webapps/usr/share/biglinux/webapps/update_old_desktop_files.sh delete mode 100644 biglinux-webapps/usr/share/biglinux/webapps/webapps/__init__.py delete mode 100644 biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py delete mode 100644 biglinux-webapps/usr/share/biglinux/webapps/webapps/models/__init__.py delete mode 100644 biglinux-webapps/usr/share/biglinux/webapps/webapps/models/browser_model.py delete mode 100644 biglinux-webapps/usr/share/biglinux/webapps/webapps/models/webapp_model.py delete mode 100644 biglinux-webapps/usr/share/biglinux/webapps/webapps/templates/__init__.py delete mode 100644 biglinux-webapps/usr/share/biglinux/webapps/webapps/templates/communication.py delete mode 100644 biglinux-webapps/usr/share/biglinux/webapps/webapps/templates/google.py delete mode 100644 biglinux-webapps/usr/share/biglinux/webapps/webapps/templates/media.py delete mode 100644 biglinux-webapps/usr/share/biglinux/webapps/webapps/templates/office365.py delete mode 100644 biglinux-webapps/usr/share/biglinux/webapps/webapps/templates/productivity.py delete mode 100644 biglinux-webapps/usr/share/biglinux/webapps/webapps/templates/registry.py delete mode 100644 biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/__init__.py delete mode 100644 biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py delete mode 100644 biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py delete mode 100644 biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py delete mode 100644 biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py delete mode 100644 biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py delete mode 100644 biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py delete mode 100644 biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py delete mode 100644 biglinux-webapps/usr/share/biglinux/webapps/webapps/utils/__init__.py delete mode 100644 biglinux-webapps/usr/share/biglinux/webapps/webapps/utils/browser_icon_utils.py delete mode 100644 biglinux-webapps/usr/share/biglinux/webapps/webapps/utils/browser_registry.py delete mode 100644 biglinux-webapps/usr/share/biglinux/webapps/webapps/utils/command_executor.py delete mode 100644 biglinux-webapps/usr/share/biglinux/webapps/webapps/utils/mpris.py delete mode 100644 biglinux-webapps/usr/share/biglinux/webapps/webapps/utils/translation.py delete mode 100644 biglinux-webapps/usr/share/biglinux/webapps/webapps/utils/url_utils.py delete mode 100644 biglinux-webapps/usr/share/biglinux/webapps/webapps/utils/webapp_service.py create mode 100644 biglinux-webapps/usr/share/locale/pt_BR/LC_MESSAGES/biglinux-webapps.mo create mode 100644 crates/webapps-core/Cargo.toml create mode 100644 crates/webapps-core/src/config.rs create mode 100644 crates/webapps-core/src/desktop.rs create mode 100644 crates/webapps-core/src/i18n.rs create mode 100644 crates/webapps-core/src/lib.rs create mode 100644 crates/webapps-core/src/models/browser.rs create mode 100644 crates/webapps-core/src/models/mod.rs create mode 100644 crates/webapps-core/src/models/webapp.rs create mode 100644 crates/webapps-core/src/templates/communication.rs create mode 100644 crates/webapps-core/src/templates/google.rs create mode 100644 crates/webapps-core/src/templates/media.rs create mode 100644 crates/webapps-core/src/templates/mod.rs create mode 100644 crates/webapps-core/src/templates/office365.rs create mode 100644 crates/webapps-core/src/templates/productivity.rs create mode 100644 crates/webapps-core/src/templates/registry.rs create mode 100644 crates/webapps-manager/Cargo.toml create mode 100644 crates/webapps-manager/src/browser_dialog.rs create mode 100644 crates/webapps-manager/src/favicon.rs create mode 100644 crates/webapps-manager/src/main.rs create mode 100644 crates/webapps-manager/src/service.rs create mode 100644 crates/webapps-manager/src/template_gallery.rs create mode 100644 crates/webapps-manager/src/webapp_dialog.rs create mode 100644 crates/webapps-manager/src/webapp_row.rs create mode 100644 crates/webapps-manager/src/welcome_dialog.rs create mode 100644 crates/webapps-manager/src/window.rs create mode 100644 crates/webapps-viewer/Cargo.toml create mode 100644 crates/webapps-viewer/src/main.rs create mode 100644 crates/webapps-viewer/src/window.rs delete mode 100644 ruff.toml create mode 100644 usr/share/locale/bg/LC_MESSAGES/biglinux-webapps.mo create mode 100644 usr/share/locale/cs/LC_MESSAGES/biglinux-webapps.mo create mode 100644 usr/share/locale/da/LC_MESSAGES/biglinux-webapps.mo create mode 100644 usr/share/locale/de/LC_MESSAGES/biglinux-webapps.mo create mode 100644 usr/share/locale/el/LC_MESSAGES/biglinux-webapps.mo create mode 100644 usr/share/locale/en/LC_MESSAGES/biglinux-webapps.mo create mode 100644 usr/share/locale/es/LC_MESSAGES/biglinux-webapps.mo create mode 100644 usr/share/locale/et/LC_MESSAGES/biglinux-webapps.mo create mode 100644 usr/share/locale/fi/LC_MESSAGES/biglinux-webapps.mo create mode 100644 usr/share/locale/fr/LC_MESSAGES/biglinux-webapps.mo create mode 100644 usr/share/locale/he/LC_MESSAGES/biglinux-webapps.mo create mode 100644 usr/share/locale/hr/LC_MESSAGES/biglinux-webapps.mo create mode 100644 usr/share/locale/hu/LC_MESSAGES/biglinux-webapps.mo create mode 100644 usr/share/locale/is/LC_MESSAGES/biglinux-webapps.mo create mode 100644 usr/share/locale/it/LC_MESSAGES/biglinux-webapps.mo create mode 100644 usr/share/locale/ja/LC_MESSAGES/biglinux-webapps.mo create mode 100644 usr/share/locale/ko/LC_MESSAGES/biglinux-webapps.mo create mode 100644 usr/share/locale/nl/LC_MESSAGES/biglinux-webapps.mo create mode 100644 usr/share/locale/no/LC_MESSAGES/biglinux-webapps.mo create mode 100644 usr/share/locale/pl/LC_MESSAGES/biglinux-webapps.mo create mode 100644 usr/share/locale/pt/LC_MESSAGES/biglinux-webapps.mo create mode 100644 usr/share/locale/pt_BR/LC_MESSAGES/biglinux-webapps.mo create mode 100644 usr/share/locale/ro/LC_MESSAGES/biglinux-webapps.mo create mode 100644 usr/share/locale/ru/LC_MESSAGES/biglinux-webapps.mo create mode 100644 usr/share/locale/sk/LC_MESSAGES/biglinux-webapps.mo create mode 100644 usr/share/locale/sv/LC_MESSAGES/biglinux-webapps.mo create mode 100644 usr/share/locale/tr/LC_MESSAGES/biglinux-webapps.mo create mode 100644 usr/share/locale/uk/LC_MESSAGES/biglinux-webapps.mo create mode 100644 usr/share/locale/zh/LC_MESSAGES/biglinux-webapps.mo diff --git a/.gitignore b/.gitignore index 26a34848..b8d2e3e1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,165 +1,19 @@ -# Byte-compiled / optimized / DLL files -__pycache__/ -*.py[cod] -*$py.class +# Rust build output +/target/ -# C extensions -*.so +# IDE / editor +.idea/ +.vscode/ +*.swp +*.swo +*~ -# Distribution / packaging -.Python -build/ -develop-eggs/ -dist/ -eggs/ -.eggs/ -parts/ -sdist/ -wheels/ -share/python-wheels/ -*.egg-info/ -.installed.cfg -*.egg -MANIFEST +# OS artifacts +.DS_Store +Thumbs.db -# PyInstaller -# Usually these files are written by a python script from a template -# before PyInstaller builds the exe, so as to inject date/other infos into it. -*.manifest -*.spec - -# Installer logs -pip-log.txt -pip-delete-this-directory.txt - -# Unit test / coverage reports -htmlcov/ -.tox/ -.nox/ -.coverage -.coverage.* -.cache -nosetests.xml -coverage.xml -*.cover -*.py,cover -.hypothesis/ -.pytest_cache/ -cover/ - -# Django stuff: -*.log -local_settings.py -db.sqlite3 -db.sqlite3-journal - -# Flask stuff: -instance/ -.webassets-cache - -# Scrapy stuff: -.scrapy - -# PyBuilder -.pybuilder/ -target/ - -# Jupyter Notebook -.ipynb_checkpoints - -# IPython -profile_default/ -ipython_config.py - -# pyenv -# For a library or package, you might want to ignore these files since the code is -# intended to run in multiple environments; otherwise, check them in: -# .python-version - -# pipenv -# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. -# However, in case of collaboration, if having platform-specific dependencies or dependencies -# having no cross-platform support, pipenv may install dependencies that don't work, or not -# install all needed dependencies. -#Pipfile.lock - -# UV -# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control. -# This is especially recommended for binary packages to ensure reproducibility, and is more -# commonly ignored for libraries. -#uv.lock - -# poetry -# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. -# This is especially recommended for binary packages to ensure reproducibility, and is more -# commonly ignored for libraries. -# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control -#poetry.lock - -# pdm -# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. -#pdm.lock -# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it -# in version control. -# https://pdm.fming.dev/latest/usage/project/#working-with-version-control -.pdm.toml -.pdm-python -.pdm-build/ - -# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm -__pypackages__/ - -# Celery stuff -celerybeat-schedule -celerybeat.pid - -# SageMath parsed files -*.sage.py - -# Environments -.env -.venv -env/ -venv/ -ENV/ -env.bak/ -venv.bak/ - -# Spyder project settings -.spyderproject -.spyproject - -# Rope project settings -.ropeproject - -# mkdocs documentation -/site - -# mypy -.mypy_cache/ -.dmypy.json -dmypy.json - -# Pyre type checker -.pyre/ - -# pytype static type analyzer -.pytype/ - -# Cython debug symbols -cython_debug/ - -# PyCharm -# JetBrains specific template is maintained in a separate JetBrains.gitignore that can -# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore -# and can be added to the global gitignore or merged into this file. For a more nuclear -# option (not recommended) you can uncomment the following to ignore the entire idea folder. -#.idea/ - -# Ruff stuff: -.ruff_cache/ - -# PyPI configuration file -.pypirc +# Planning docs — local only +PLANNING.md +# Audit reports .audit diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 00000000..b91e6ebf --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,2989 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "adler2" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" + +[[package]] +name = "aho-corasick" +version = "1.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" +dependencies = [ + "memchr", +] + +[[package]] +name = "anstream" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d" +dependencies = [ + "anstyle", + "anstyle-parse", + "anstyle-query", + "anstyle-wincon", + "colorchoice", + "is_terminal_polyfill", + "utf8parse", +] + +[[package]] +name = "anstyle" +version = "1.0.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000" + +[[package]] +name = "anstyle-parse" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e" +dependencies = [ + "utf8parse", +] + +[[package]] +name = "anstyle-query" +version = "1.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" +dependencies = [ + "windows-sys 0.61.2", +] + +[[package]] +name = "anstyle-wincon" +version = "3.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d" +dependencies = [ + "anstyle", + "once_cell_polyfill", + "windows-sys 0.61.2", +] + +[[package]] +name = "anyhow" +version = "1.0.102" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c" + +[[package]] +name = "arbitrary" +version = "1.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1" +dependencies = [ + "derive_arbitrary", +] + +[[package]] +name = "atomic-waker" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" + +[[package]] +name = "autocfg" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" + +[[package]] +name = "base64" +version = "0.22.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" + +[[package]] +name = "bitflags" +version = "2.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3" + +[[package]] +name = "block" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a" + +[[package]] +name = "bumpalo" +version = "3.20.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb" + +[[package]] +name = "bytemuck" +version = "1.25.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec" + +[[package]] +name = "byteorder" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" + +[[package]] +name = "byteorder-lite" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495" + +[[package]] +name = "bytes" +version = "1.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" + +[[package]] +name = "cairo-rs" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5cc8d9aa793480744cd9a0524fef1a2e197d9eaa0f739cde19d16aba530dcb95" +dependencies = [ + "bitflags", + "cairo-sys-rs", + "glib", + "libc", +] + +[[package]] +name = "cairo-sys-rs" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8b4985713047f5faee02b8db6a6ef32bbb50269ff53c1aee716d1d195b76d54" +dependencies = [ + "glib-sys", + "libc", + "system-deps", +] + +[[package]] +name = "cc" +version = "1.2.60" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20" +dependencies = [ + "find-msvc-tools", + "shlex", +] + +[[package]] +name = "cfg-expr" +version = "0.20.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c6b04e07d8080154ed4ac03546d9a2b303cc2fe1901ba0b35b301516e289368" +dependencies = [ + "smallvec", + "target-lexicon", +] + +[[package]] +name = "cfg-if" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" + +[[package]] +name = "cfg_aliases" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" + +[[package]] +name = "clap" +version = "4.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351" +dependencies = [ + "clap_builder", + "clap_derive", +] + +[[package]] +name = "clap_builder" +version = "4.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f" +dependencies = [ + "anstream", + "anstyle", + "clap_lex", + "strsim", +] + +[[package]] +name = "clap_derive" +version = "4.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "clap_lex" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" + +[[package]] +name = "colorchoice" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570" + +[[package]] +name = "crc32fast" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "crossbeam-utils" +version = "0.8.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" + +[[package]] +name = "cssparser" +version = "0.34.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7c66d1cd8ed61bf80b38432613a7a2f09401ab8d0501110655f8b341484a3e3" +dependencies = [ + "cssparser-macros", + "dtoa-short", + "itoa", + "phf", + "smallvec", +] + +[[package]] +name = "cssparser-macros" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" +dependencies = [ + "quote", + "syn", +] + +[[package]] +name = "derive_arbitrary" +version = "1.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "derive_more" +version = "0.99.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "dirs" +version = "6.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e" +dependencies = [ + "dirs-sys", +] + +[[package]] +name = "dirs-sys" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab" +dependencies = [ + "libc", + "option-ext", + "redox_users", + "windows-sys 0.61.2", +] + +[[package]] +name = "displaydoc" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "dtoa" +version = "1.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c3cf4824e2d5f025c7b531afcb2325364084a16806f6d47fbc1f5fbd9960590" + +[[package]] +name = "dtoa-short" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87" +dependencies = [ + "dtoa", +] + +[[package]] +name = "ego-tree" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2972feb8dffe7bc8c5463b1dacda1b0dfbed3710e50f977d965429692d74cd8" + +[[package]] +name = "env_filter" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32e90c2accc4b07a8456ea0debdc2e7587bdd890680d71173a15d4ae604f6eef" +dependencies = [ + "log", + "regex", +] + +[[package]] +name = "env_logger" +version = "0.11.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0621c04f2196ac3f488dd583365b9c09be011a4ab8b9f37248ffcc8f6198b56a" +dependencies = [ + "anstream", + "anstyle", + "env_filter", + "jiff", + "log", +] + +[[package]] +name = "equivalent" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" + +[[package]] +name = "fdeflate" +version = "0.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c" +dependencies = [ + "simd-adler32", +] + +[[package]] +name = "field-offset" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f" +dependencies = [ + "memoffset", + "rustc_version", +] + +[[package]] +name = "find-msvc-tools" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" + +[[package]] +name = "flate2" +version = "1.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c" +dependencies = [ + "crc32fast", + "miniz_oxide", +] + +[[package]] +name = "form_urlencoded" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" +dependencies = [ + "percent-encoding", +] + +[[package]] +name = "futf" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843" +dependencies = [ + "mac", + "new_debug_unreachable", +] + +[[package]] +name = "futures-channel" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d" +dependencies = [ + "futures-core", + "futures-sink", +] + +[[package]] +name = "futures-core" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d" + +[[package]] +name = "futures-executor" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d" +dependencies = [ + "futures-core", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-io" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718" + +[[package]] +name = "futures-macro" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "futures-sink" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893" + +[[package]] +name = "futures-task" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393" + +[[package]] +name = "futures-util" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6" +dependencies = [ + "futures-core", + "futures-io", + "futures-macro", + "futures-sink", + "futures-task", + "memchr", + "pin-project-lite", + "slab", +] + +[[package]] +name = "fxhash" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" +dependencies = [ + "byteorder", +] + +[[package]] +name = "gdk-pixbuf" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25f420376dbee041b2db374ce4573892a36222bb3f6c0c43e24f0d67eae9b646" +dependencies = [ + "gdk-pixbuf-sys", + "gio", + "glib", + "libc", +] + +[[package]] +name = "gdk-pixbuf-sys" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "48f31b37b1fc4b48b54f6b91b7ef04c18e00b4585d98359dd7b998774bbd91fb" +dependencies = [ + "gio-sys", + "glib-sys", + "gobject-sys", + "libc", + "system-deps", +] + +[[package]] +name = "gdk4" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fd42fdbbf48612c6e8f47c65fb92d2e8f39c25aecd6af047e83897c1a22d2a4e" +dependencies = [ + "cairo-rs", + "gdk-pixbuf", + "gdk4-sys", + "gio", + "glib", + "libc", + "pango", +] + +[[package]] +name = "gdk4-sys" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d974ac4f15e67472c3a9728daf612590b4a5762a4b33f0edd298df0b80d043c" +dependencies = [ + "cairo-sys-rs", + "gdk-pixbuf-sys", + "gio-sys", + "glib-sys", + "gobject-sys", + "libc", + "pango-sys", + "pkg-config", + "system-deps", +] + +[[package]] +name = "getopts" +version = "0.2.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df" +dependencies = [ + "unicode-width", +] + +[[package]] +name = "getrandom" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" +dependencies = [ + "cfg-if", + "js-sys", + "libc", + "wasi", + "wasm-bindgen", +] + +[[package]] +name = "getrandom" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" +dependencies = [ + "cfg-if", + "js-sys", + "libc", + "r-efi", + "wasip2", + "wasm-bindgen", +] + +[[package]] +name = "gettext-rs" +version = "0.7.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d5857dc1b7f0fee86961de833f434e29494d72af102ce5355738c0664222bdf" +dependencies = [ + "gettext-sys", + "locale_config", +] + +[[package]] +name = "gettext-sys" +version = "0.26.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ea859ab0dd7e70ff823032b3e077d03d39c965d68c6c10775add60e999d8ee9" +dependencies = [ + "cc", + "temp-dir", +] + +[[package]] +name = "gio" +version = "0.22.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "401b600a9795c46ff45890146968b712c96ce4e9393798804133e137bd81d89c" +dependencies = [ + "futures-channel", + "futures-core", + "futures-io", + "futures-util", + "gio-sys", + "glib", + "libc", + "pin-project-lite", + "smallvec", +] + +[[package]] +name = "gio-sys" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "64729ba2772c080448f9f966dba8f4456beeb100d8c28a865ef8a0f2ef4987e1" +dependencies = [ + "glib-sys", + "gobject-sys", + "libc", + "system-deps", + "windows-sys 0.61.2", +] + +[[package]] +name = "glib" +version = "0.22.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1b7df55594e0e787d1560e23f7e12d7360d0b22e7b7c228ec2488b9e59b1b6b" +dependencies = [ + "bitflags", + "futures-channel", + "futures-core", + "futures-executor", + "futures-task", + "futures-util", + "gio-sys", + "glib-macros", + "glib-sys", + "gobject-sys", + "libc", + "memchr", + "smallvec", +] + +[[package]] +name = "glib-macros" +version = "0.22.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bda575994e3689b1bc12f89c3df621ead46ff292623b76b4710a3a5b79be54bb" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "glib-sys" +version = "0.22.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1eb23a616a3dbc7fc15bbd26f58756ff0b04c8a894df3f0680cd21011db6a642" +dependencies = [ + "libc", + "system-deps", +] + +[[package]] +name = "gobject-sys" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "18eda93f09d3778f38255b231b17ef67195013a592c91624a4daf8bead875565" +dependencies = [ + "glib-sys", + "libc", + "system-deps", +] + +[[package]] +name = "graphene-rs" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7d1b7881f96869f49808b6adfe906a93a57a34204952253444d68c3208d71f1" +dependencies = [ + "glib", + "graphene-sys", + "libc", +] + +[[package]] +name = "graphene-sys" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "517f062f3fd6b7fd3e57a3f038a74b3c23ca32f51199ff028aa704609943f79c" +dependencies = [ + "glib-sys", + "libc", + "pkg-config", + "system-deps", +] + +[[package]] +name = "gsk4" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53c912dfcbd28acace5fc99c40bb9f25e1dcb73efb1f2608327f66a99acdcb62" +dependencies = [ + "cairo-rs", + "gdk4", + "glib", + "graphene-rs", + "gsk4-sys", + "libc", + "pango", +] + +[[package]] +name = "gsk4-sys" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7d54bbc7a9d8b6ffe4f0c95eede15ccfb365c8bf521275abe6bcfb57b18fb8a" +dependencies = [ + "cairo-sys-rs", + "gdk4-sys", + "glib-sys", + "gobject-sys", + "graphene-sys", + "libc", + "pango-sys", + "system-deps", +] + +[[package]] +name = "gtk4" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25d47a7ca9ec6f50b5ace32eaaf11fe152c9bbc4f780a35e42c9b7fc5b046f9c" +dependencies = [ + "cairo-rs", + "field-offset", + "futures-channel", + "gdk-pixbuf", + "gdk4", + "gio", + "glib", + "graphene-rs", + "gsk4", + "gtk4-macros", + "gtk4-sys", + "libc", + "pango", +] + +[[package]] +name = "gtk4-macros" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3581b242ba62fdff122ebb626ea641582ec326031622bd19d60f85029c804a87" +dependencies = [ + "proc-macro-crate", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "gtk4-sys" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a25bd07084651c77bb6e7bce7d4cea8d9f98d210acee473e400a9106bc0ce50" +dependencies = [ + "cairo-sys-rs", + "gdk-pixbuf-sys", + "gdk4-sys", + "gio-sys", + "glib-sys", + "gobject-sys", + "graphene-sys", + "gsk4-sys", + "libc", + "pango-sys", + "system-deps", +] + +[[package]] +name = "hashbrown" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51" + +[[package]] +name = "heck" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" + +[[package]] +name = "html5ever" +version = "0.29.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b7410cae13cbc75623c98ac4cbfd1f0bedddf3227afc24f370cf0f50a44a11c" +dependencies = [ + "log", + "mac", + "markup5ever", + "match_token", +] + +[[package]] +name = "http" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" +dependencies = [ + "bytes", + "itoa", +] + +[[package]] +name = "http-body" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" +dependencies = [ + "bytes", + "http", +] + +[[package]] +name = "http-body-util" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" +dependencies = [ + "bytes", + "futures-core", + "http", + "http-body", + "pin-project-lite", +] + +[[package]] +name = "httparse" +version = "1.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" + +[[package]] +name = "hyper" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca" +dependencies = [ + "atomic-waker", + "bytes", + "futures-channel", + "futures-core", + "http", + "http-body", + "httparse", + "itoa", + "pin-project-lite", + "smallvec", + "tokio", + "want", +] + +[[package]] +name = "hyper-rustls" +version = "0.27.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f" +dependencies = [ + "http", + "hyper", + "hyper-util", + "rustls", + "tokio", + "tokio-rustls", + "tower-service", + "webpki-roots", +] + +[[package]] +name = "hyper-util" +version = "0.1.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" +dependencies = [ + "base64", + "bytes", + "futures-channel", + "futures-util", + "http", + "http-body", + "hyper", + "ipnet", + "libc", + "percent-encoding", + "pin-project-lite", + "socket2", + "tokio", + "tower-service", + "tracing", +] + +[[package]] +name = "icu_collections" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c" +dependencies = [ + "displaydoc", + "potential_utf", + "utf8_iter", + "yoke", + "zerofrom", + "zerovec", +] + +[[package]] +name = "icu_locale_core" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29" +dependencies = [ + "displaydoc", + "litemap", + "tinystr", + "writeable", + "zerovec", +] + +[[package]] +name = "icu_normalizer" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4" +dependencies = [ + "icu_collections", + "icu_normalizer_data", + "icu_properties", + "icu_provider", + "smallvec", + "zerovec", +] + +[[package]] +name = "icu_normalizer_data" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38" + +[[package]] +name = "icu_properties" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de" +dependencies = [ + "icu_collections", + "icu_locale_core", + "icu_properties_data", + "icu_provider", + "zerotrie", + "zerovec", +] + +[[package]] +name = "icu_properties_data" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14" + +[[package]] +name = "icu_provider" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421" +dependencies = [ + "displaydoc", + "icu_locale_core", + "writeable", + "yoke", + "zerofrom", + "zerotrie", + "zerovec", +] + +[[package]] +name = "idna" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" +dependencies = [ + "idna_adapter", + "smallvec", + "utf8_iter", +] + +[[package]] +name = "idna_adapter" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" +dependencies = [ + "icu_normalizer", + "icu_properties", +] + +[[package]] +name = "image" +version = "0.25.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85ab80394333c02fe689eaf900ab500fbd0c2213da414687ebf995a65d5a6104" +dependencies = [ + "bytemuck", + "byteorder-lite", + "moxcms", + "num-traits", + "png", +] + +[[package]] +name = "indexmap" +version = "2.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9" +dependencies = [ + "equivalent", + "hashbrown", +] + +[[package]] +name = "ipnet" +version = "2.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2" + +[[package]] +name = "iri-string" +version = "0.7.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25e659a4bb38e810ebc252e53b5814ff908a8c58c2a9ce2fae1bbec24cbf4e20" +dependencies = [ + "memchr", + "serde", +] + +[[package]] +name = "is-docker" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "928bae27f42bc99b60d9ac7334e3a21d10ad8f1835a4e12ec3ec0464765ed1b3" +dependencies = [ + "once_cell", +] + +[[package]] +name = "is-wsl" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "173609498df190136aa7dea1a91db051746d339e18476eed5ca40521f02d7aa5" +dependencies = [ + "is-docker", + "once_cell", +] + +[[package]] +name = "is_terminal_polyfill" +version = "1.70.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695" + +[[package]] +name = "itoa" +version = "1.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682" + +[[package]] +name = "javascriptcore6" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8d8d4f64d976c6dc6068723b6ef7838acf954d56b675f376c826f7e773362ddb" +dependencies = [ + "glib", + "javascriptcore6-sys", + "libc", +] + +[[package]] +name = "javascriptcore6-sys" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2b9787581c8949a7061c9b8593c4d1faf4b0fe5e5643c6c7793df20dbe39cf6" +dependencies = [ + "glib-sys", + "gobject-sys", + "libc", + "system-deps", +] + +[[package]] +name = "jiff" +version = "0.2.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a3546dc96b6d42c5f24902af9e2538e82e39ad350b0c766eb3fbf2d8f3d8359" +dependencies = [ + "jiff-static", + "log", + "portable-atomic", + "portable-atomic-util", + "serde_core", +] + +[[package]] +name = "jiff-static" +version = "0.2.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a8c8b344124222efd714b73bb41f8b5120b27a7cc1c75593a6ff768d9d05aa4" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "js-sys" +version = "0.3.95" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2964e92d1d9dc3364cae4d718d93f227e3abb088e747d92e0395bfdedf1c12ca" +dependencies = [ + "cfg-if", + "futures-util", + "once_cell", + "wasm-bindgen", +] + +[[package]] +name = "lazy_static" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" + +[[package]] +name = "libadwaita" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc0da4e27b20d3e71f830e5b0f0188d22c257986bf421c02cfde777fe07932a4" +dependencies = [ + "gdk4", + "gio", + "glib", + "gtk4", + "libadwaita-sys", + "libc", + "pango", +] + +[[package]] +name = "libadwaita-sys" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aaee067051c5d3c058d050d167688b80b67de1950cfca77730549aa761fc5d7d" +dependencies = [ + "gdk4-sys", + "gio-sys", + "glib-sys", + "gobject-sys", + "gtk4-sys", + "libc", + "pango-sys", + "system-deps", +] + +[[package]] +name = "libc" +version = "0.2.185" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52ff2c0fe9bc6cb6b14a0592c2ff4fa9ceb83eea9db979b0487cd054946a2b8f" + +[[package]] +name = "libredox" +version = "0.1.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e02f3bb43d335493c96bf3fd3a321600bf6bd07ed34bc64118e9293bdffea46c" +dependencies = [ + "libc", +] + +[[package]] +name = "litemap" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0" + +[[package]] +name = "locale_config" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08d2c35b16f4483f6c26f0e4e9550717a2f6575bcd6f12a53ff0c490a94a6934" +dependencies = [ + "lazy_static", + "objc", + "objc-foundation", + "regex", + "winapi", +] + +[[package]] +name = "lock_api" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" +dependencies = [ + "scopeguard", +] + +[[package]] +name = "log" +version = "0.4.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" + +[[package]] +name = "lru-slab" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" + +[[package]] +name = "mac" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" + +[[package]] +name = "malloc_buf" +version = "0.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb" +dependencies = [ + "libc", +] + +[[package]] +name = "markup5ever" +version = "0.14.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7a7213d12e1864c0f002f52c2923d4556935a43dec5e71355c2760e0f6e7a18" +dependencies = [ + "log", + "phf", + "phf_codegen", + "string_cache", + "string_cache_codegen", + "tendril", +] + +[[package]] +name = "match_token" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88a9689d8d44bf9964484516275f5cd4c9b59457a6940c1d5d0ecbb94510a36b" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "memchr" +version = "2.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79" + +[[package]] +name = "memoffset" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" +dependencies = [ + "autocfg", +] + +[[package]] +name = "miniz_oxide" +version = "0.8.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" +dependencies = [ + "adler2", + "simd-adler32", +] + +[[package]] +name = "mio" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1" +dependencies = [ + "libc", + "wasi", + "windows-sys 0.61.2", +] + +[[package]] +name = "moxcms" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb85c154ba489f01b25c0d36ae69a87e4a1c73a72631fc6c0eb6dde34a73e44b" +dependencies = [ + "num-traits", + "pxfm", +] + +[[package]] +name = "new_debug_unreachable" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" + +[[package]] +name = "num-traits" +version = "0.2.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" +dependencies = [ + "autocfg", +] + +[[package]] +name = "objc" +version = "0.2.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1" +dependencies = [ + "malloc_buf", +] + +[[package]] +name = "objc-foundation" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9" +dependencies = [ + "block", + "objc", + "objc_id", +] + +[[package]] +name = "objc_id" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b" +dependencies = [ + "objc", +] + +[[package]] +name = "once_cell" +version = "1.21.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50" + +[[package]] +name = "once_cell_polyfill" +version = "1.70.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" + +[[package]] +name = "open" +version = "5.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "43bb73a7fa3799b198970490a51174027ba0d4ec504b03cd08caf513d40024bc" +dependencies = [ + "is-wsl", + "libc", + "pathdiff", +] + +[[package]] +name = "option-ext" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" + +[[package]] +name = "pango" +version = "0.22.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4804fb6018c6604eac198f0f897320d3696c9af7983cde056f07cef93cac9202" +dependencies = [ + "gio", + "glib", + "libc", + "pango-sys", +] + +[[package]] +name = "pango-sys" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbd111a20ca90fedf03e09c59783c679c00900f1d8491cca5399f5e33609d5d6" +dependencies = [ + "glib-sys", + "gobject-sys", + "libc", + "system-deps", +] + +[[package]] +name = "parking_lot" +version = "0.12.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" +dependencies = [ + "lock_api", + "parking_lot_core", +] + +[[package]] +name = "parking_lot_core" +version = "0.9.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" +dependencies = [ + "cfg-if", + "libc", + "redox_syscall", + "smallvec", + "windows-link", +] + +[[package]] +name = "pathdiff" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3" + +[[package]] +name = "percent-encoding" +version = "2.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" + +[[package]] +name = "phf" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" +dependencies = [ + "phf_macros", + "phf_shared", +] + +[[package]] +name = "phf_codegen" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a" +dependencies = [ + "phf_generator", + "phf_shared", +] + +[[package]] +name = "phf_generator" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" +dependencies = [ + "phf_shared", + "rand 0.8.5", +] + +[[package]] +name = "phf_macros" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" +dependencies = [ + "phf_generator", + "phf_shared", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "phf_shared" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" +dependencies = [ + "siphasher", +] + +[[package]] +name = "pin-project-lite" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd" + +[[package]] +name = "pkg-config" +version = "0.3.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e" + +[[package]] +name = "png" +version = "0.18.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61" +dependencies = [ + "bitflags", + "crc32fast", + "fdeflate", + "flate2", + "miniz_oxide", +] + +[[package]] +name = "portable-atomic" +version = "1.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49" + +[[package]] +name = "portable-atomic-util" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "091397be61a01d4be58e7841595bd4bfedb15f1cd54977d79b8271e94ed799a3" +dependencies = [ + "portable-atomic", +] + +[[package]] +name = "potential_utf" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564" +dependencies = [ + "zerovec", +] + +[[package]] +name = "ppv-lite86" +version = "0.2.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" +dependencies = [ + "zerocopy", +] + +[[package]] +name = "precomputed-hash" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" + +[[package]] +name = "proc-macro-crate" +version = "3.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f" +dependencies = [ + "toml_edit", +] + +[[package]] +name = "proc-macro2" +version = "1.0.106" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "pxfm" +version = "0.1.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b5a041e753da8b807c9255f28de81879c78c876392ff2469cde94799b2896b9d" + +[[package]] +name = "quinn" +version = "0.11.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" +dependencies = [ + "bytes", + "cfg_aliases", + "pin-project-lite", + "quinn-proto", + "quinn-udp", + "rustc-hash", + "rustls", + "socket2", + "thiserror", + "tokio", + "tracing", + "web-time", +] + +[[package]] +name = "quinn-proto" +version = "0.11.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098" +dependencies = [ + "bytes", + "getrandom 0.3.4", + "lru-slab", + "rand 0.9.4", + "ring", + "rustc-hash", + "rustls", + "rustls-pki-types", + "slab", + "thiserror", + "tinyvec", + "tracing", + "web-time", +] + +[[package]] +name = "quinn-udp" +version = "0.5.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" +dependencies = [ + "cfg_aliases", + "libc", + "once_cell", + "socket2", + "tracing", + "windows-sys 0.60.2", +] + +[[package]] +name = "quote" +version = "1.0.45" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "r-efi" +version = "5.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" + +[[package]] +name = "rand" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" +dependencies = [ + "rand_core 0.6.4", +] + +[[package]] +name = "rand" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea" +dependencies = [ + "rand_chacha", + "rand_core 0.9.5", +] + +[[package]] +name = "rand_chacha" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" +dependencies = [ + "ppv-lite86", + "rand_core 0.9.5", +] + +[[package]] +name = "rand_core" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" + +[[package]] +name = "rand_core" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c" +dependencies = [ + "getrandom 0.3.4", +] + +[[package]] +name = "redox_syscall" +version = "0.5.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" +dependencies = [ + "bitflags", +] + +[[package]] +name = "redox_users" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac" +dependencies = [ + "getrandom 0.2.17", + "libredox", + "thiserror", +] + +[[package]] +name = "regex" +version = "1.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] + +[[package]] +name = "regex-automata" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", +] + +[[package]] +name = "regex-syntax" +version = "0.8.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a" + +[[package]] +name = "reqwest" +version = "0.12.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" +dependencies = [ + "base64", + "bytes", + "futures-channel", + "futures-core", + "futures-util", + "http", + "http-body", + "http-body-util", + "hyper", + "hyper-rustls", + "hyper-util", + "js-sys", + "log", + "percent-encoding", + "pin-project-lite", + "quinn", + "rustls", + "rustls-pki-types", + "serde", + "serde_json", + "serde_urlencoded", + "sync_wrapper", + "tokio", + "tokio-rustls", + "tower", + "tower-http", + "tower-service", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", + "webpki-roots", +] + +[[package]] +name = "ring" +version = "0.17.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" +dependencies = [ + "cc", + "cfg-if", + "getrandom 0.2.17", + "libc", + "untrusted", + "windows-sys 0.52.0", +] + +[[package]] +name = "rustc-hash" +version = "2.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe" + +[[package]] +name = "rustc_version" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" +dependencies = [ + "semver", +] + +[[package]] +name = "rustls" +version = "0.23.38" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69f9466fb2c14ea04357e91413efb882e2a6d4a406e625449bc0a5d360d53a21" +dependencies = [ + "once_cell", + "ring", + "rustls-pki-types", + "rustls-webpki", + "subtle", + "zeroize", +] + +[[package]] +name = "rustls-pki-types" +version = "1.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd" +dependencies = [ + "web-time", + "zeroize", +] + +[[package]] +name = "rustls-webpki" +version = "0.103.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8279bb85272c9f10811ae6a6c547ff594d6a7f3c6c6b02ee9726d1d0dcfcdd06" +dependencies = [ + "ring", + "rustls-pki-types", + "untrusted", +] + +[[package]] +name = "rustversion" +version = "1.0.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" + +[[package]] +name = "ryu" +version = "1.0.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" + +[[package]] +name = "scopeguard" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" + +[[package]] +name = "scraper" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc3d051b884f40e309de6c149734eab57aa8cc1347992710dc80bcc1c2194c15" +dependencies = [ + "cssparser", + "ego-tree", + "getopts", + "html5ever", + "precomputed-hash", + "selectors", + "tendril", +] + +[[package]] +name = "selectors" +version = "0.26.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fd568a4c9bb598e291a08244a5c1f5a8a6650bee243b5b0f8dbb3d9cc1d87fe8" +dependencies = [ + "bitflags", + "cssparser", + "derive_more", + "fxhash", + "log", + "new_debug_unreachable", + "phf", + "phf_codegen", + "precomputed-hash", + "servo_arc", + "smallvec", +] + +[[package]] +name = "semver" +version = "1.0.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd" + +[[package]] +name = "serde" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" +dependencies = [ + "serde_core", + "serde_derive", +] + +[[package]] +name = "serde_core" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "serde_json" +version = "1.0.149" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86" +dependencies = [ + "itoa", + "memchr", + "serde", + "serde_core", + "zmij", +] + +[[package]] +name = "serde_spanned" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26" +dependencies = [ + "serde_core", +] + +[[package]] +name = "serde_urlencoded" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" +dependencies = [ + "form_urlencoded", + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "servo_arc" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "170fb83ab34de17dc69aa7c67482b22218ddb85da56546f9bd6b929e32a05930" +dependencies = [ + "stable_deref_trait", +] + +[[package]] +name = "shlex" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" + +[[package]] +name = "simd-adler32" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214" + +[[package]] +name = "siphasher" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e" + +[[package]] +name = "slab" +version = "0.4.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" + +[[package]] +name = "smallvec" +version = "1.15.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" + +[[package]] +name = "socket2" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e" +dependencies = [ + "libc", + "windows-sys 0.61.2", +] + +[[package]] +name = "soup3" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92d38b59ff6d302538efd337e15d04d61c5b909ec223c60ae4061d74605a962a" +dependencies = [ + "futures-channel", + "gio", + "glib", + "libc", + "soup3-sys", +] + +[[package]] +name = "soup3-sys" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "79d5d25225bb06f83b78ff8cc35973b56d45fcdd21af6ed6d2bbd67f5a6f9bea" +dependencies = [ + "gio-sys", + "glib-sys", + "gobject-sys", + "libc", + "system-deps", +] + +[[package]] +name = "stable_deref_trait" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" + +[[package]] +name = "string_cache" +version = "0.8.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f" +dependencies = [ + "new_debug_unreachable", + "parking_lot", + "phf_shared", + "precomputed-hash", + "serde", +] + +[[package]] +name = "string_cache_codegen" +version = "0.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0" +dependencies = [ + "phf_generator", + "phf_shared", + "proc-macro2", + "quote", +] + +[[package]] +name = "strsim" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" + +[[package]] +name = "subtle" +version = "2.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" + +[[package]] +name = "syn" +version = "2.0.117" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "sync_wrapper" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" +dependencies = [ + "futures-core", +] + +[[package]] +name = "synstructure" +version = "0.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "system-deps" +version = "7.0.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "396a35feb67335377e0251fcbc1092fc85c484bd4e3a7a54319399da127796e7" +dependencies = [ + "cfg-expr", + "heck", + "pkg-config", + "toml", + "version-compare", +] + +[[package]] +name = "target-lexicon" +version = "0.13.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c" + +[[package]] +name = "temp-dir" +version = "0.1.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "83176759e9416cf81ee66cb6508dbfe9c96f20b8b56265a39917551c23c70964" + +[[package]] +name = "tendril" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0" +dependencies = [ + "futf", + "mac", + "utf-8", +] + +[[package]] +name = "thiserror" +version = "2.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" +dependencies = [ + "thiserror-impl", +] + +[[package]] +name = "thiserror-impl" +version = "2.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "tinystr" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d" +dependencies = [ + "displaydoc", + "zerovec", +] + +[[package]] +name = "tinyvec" +version = "1.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3" +dependencies = [ + "tinyvec_macros", +] + +[[package]] +name = "tinyvec_macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" + +[[package]] +name = "tokio" +version = "1.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a91135f59b1cbf38c91e73cf3386fca9bb77915c45ce2771460c9d92f0f3d776" +dependencies = [ + "bytes", + "libc", + "mio", + "pin-project-lite", + "socket2", + "windows-sys 0.61.2", +] + +[[package]] +name = "tokio-rustls" +version = "0.26.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" +dependencies = [ + "rustls", + "tokio", +] + +[[package]] +name = "toml" +version = "1.1.2+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee" +dependencies = [ + "indexmap", + "serde_core", + "serde_spanned", + "toml_datetime", + "toml_parser", + "toml_writer", + "winnow", +] + +[[package]] +name = "toml_datetime" +version = "1.1.1+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7" +dependencies = [ + "serde_core", +] + +[[package]] +name = "toml_edit" +version = "0.25.11+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b59c4d22ed448339746c59b905d24568fcbb3ab65a500494f7b8c3e97739f2b" +dependencies = [ + "indexmap", + "toml_datetime", + "toml_parser", + "winnow", +] + +[[package]] +name = "toml_parser" +version = "1.1.2+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526" +dependencies = [ + "winnow", +] + +[[package]] +name = "toml_writer" +version = "1.1.1+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db" + +[[package]] +name = "tower" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" +dependencies = [ + "futures-core", + "futures-util", + "pin-project-lite", + "sync_wrapper", + "tokio", + "tower-layer", + "tower-service", +] + +[[package]] +name = "tower-http" +version = "0.6.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" +dependencies = [ + "bitflags", + "bytes", + "futures-util", + "http", + "http-body", + "iri-string", + "pin-project-lite", + "tower", + "tower-layer", + "tower-service", +] + +[[package]] +name = "tower-layer" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" + +[[package]] +name = "tower-service" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" + +[[package]] +name = "tracing" +version = "0.1.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" +dependencies = [ + "pin-project-lite", + "tracing-core", +] + +[[package]] +name = "tracing-core" +version = "0.1.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" +dependencies = [ + "once_cell", +] + +[[package]] +name = "try-lock" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" + +[[package]] +name = "unicode-ident" +version = "1.0.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" + +[[package]] +name = "unicode-width" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254" + +[[package]] +name = "untrusted" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" + +[[package]] +name = "url" +version = "2.5.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" +dependencies = [ + "form_urlencoded", + "idna", + "percent-encoding", + "serde", +] + +[[package]] +name = "utf-8" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" + +[[package]] +name = "utf8_iter" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" + +[[package]] +name = "utf8parse" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" + +[[package]] +name = "version-compare" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03c2856837ef78f57382f06b2b8563a2f512f7185d732608fd9176cb3b8edf0e" + +[[package]] +name = "want" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" +dependencies = [ + "try-lock", +] + +[[package]] +name = "wasi" +version = "0.11.1+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" + +[[package]] +name = "wasip2" +version = "1.0.2+wasi-0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5" +dependencies = [ + "wit-bindgen", +] + +[[package]] +name = "wasm-bindgen" +version = "0.2.118" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0bf938a0bacb0469e83c1e148908bd7d5a6010354cf4fb73279b7447422e3a89" +dependencies = [ + "cfg-if", + "once_cell", + "rustversion", + "wasm-bindgen-macro", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-futures" +version = "0.4.68" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f371d383f2fb139252e0bfac3b81b265689bf45b6874af544ffa4c975ac1ebf8" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "wasm-bindgen-macro" +version = "0.2.118" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eeff24f84126c0ec2db7a449f0c2ec963c6a49efe0698c4242929da037ca28ed" +dependencies = [ + "quote", + "wasm-bindgen-macro-support", +] + +[[package]] +name = "wasm-bindgen-macro-support" +version = "0.2.118" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d08065faf983b2b80a79fd87d8254c409281cf7de75fc4b773019824196c904" +dependencies = [ + "bumpalo", + "proc-macro2", + "quote", + "syn", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-shared" +version = "0.2.118" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5fd04d9e306f1907bd13c6361b5c6bfc7b3b3c095ed3f8a9246390f8dbdee129" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "web-sys" +version = "0.3.95" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4f2dfbb17949fa2088e5d39408c48368947b86f7834484e87b73de55bc14d97d" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "web-time" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "webapps-core" +version = "4.0.0" +dependencies = [ + "anyhow", + "dirs", + "gettext-rs", + "log", + "serde", + "serde_json", + "url", +] + +[[package]] +name = "webapps-manager" +version = "4.0.0" +dependencies = [ + "anyhow", + "dirs", + "env_logger", + "gdk4", + "gettext-rs", + "gio", + "glib", + "gtk4", + "image", + "libadwaita", + "log", + "open", + "reqwest", + "scraper", + "serde", + "serde_json", + "url", + "webapps-core", + "zip", +] + +[[package]] +name = "webapps-viewer" +version = "4.0.0" +dependencies = [ + "anyhow", + "clap", + "dirs", + "env_logger", + "gdk4", + "gettext-rs", + "gio", + "glib", + "gtk4", + "libadwaita", + "log", + "serde", + "serde_json", + "webapps-core", + "webkit6", +] + +[[package]] +name = "webkit6" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4959dd2a92813d4b2ae134e71345a03030bcff189b4f79cd131e9218aba22b70" +dependencies = [ + "gdk4", + "gio", + "glib", + "gtk4", + "javascriptcore6", + "libc", + "soup3", + "webkit6-sys", +] + +[[package]] +name = "webkit6-sys" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "236078ce03ff041bf87904c8257e6a9b0e9e0f957267c15f9c1756aadcf02581" +dependencies = [ + "gdk4-sys", + "gio-sys", + "glib-sys", + "gobject-sys", + "gtk4-sys", + "javascriptcore6-sys", + "libc", + "soup3-sys", + "system-deps", +] + +[[package]] +name = "webpki-roots" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed" +dependencies = [ + "rustls-pki-types", +] + +[[package]] +name = "winapi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" +dependencies = [ + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", +] + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" + +[[package]] +name = "windows-link" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" + +[[package]] +name = "windows-sys" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-sys" +version = "0.60.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" +dependencies = [ + "windows-targets 0.53.5", +] + +[[package]] +name = "windows-sys" +version = "0.61.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" +dependencies = [ + "windows-link", +] + +[[package]] +name = "windows-targets" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" +dependencies = [ + "windows_aarch64_gnullvm 0.52.6", + "windows_aarch64_msvc 0.52.6", + "windows_i686_gnu 0.52.6", + "windows_i686_gnullvm 0.52.6", + "windows_i686_msvc 0.52.6", + "windows_x86_64_gnu 0.52.6", + "windows_x86_64_gnullvm 0.52.6", + "windows_x86_64_msvc 0.52.6", +] + +[[package]] +name = "windows-targets" +version = "0.53.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" +dependencies = [ + "windows-link", + "windows_aarch64_gnullvm 0.53.1", + "windows_aarch64_msvc 0.53.1", + "windows_i686_gnu 0.53.1", + "windows_i686_gnullvm 0.53.1", + "windows_i686_msvc 0.53.1", + "windows_x86_64_gnu 0.53.1", + "windows_x86_64_gnullvm 0.53.1", + "windows_x86_64_msvc 0.53.1", +] + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" + +[[package]] +name = "windows_i686_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" + +[[package]] +name = "windows_i686_gnu" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" + +[[package]] +name = "windows_i686_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" + +[[package]] +name = "windows_i686_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" + +[[package]] +name = "winnow" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09dac053f1cd375980747450bfc7250c264eaae0583872e845c0c7cd578872b5" +dependencies = [ + "memchr", +] + +[[package]] +name = "wit-bindgen" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5" + +[[package]] +name = "writeable" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4" + +[[package]] +name = "yoke" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca" +dependencies = [ + "stable_deref_trait", + "yoke-derive", + "zerofrom", +] + +[[package]] +name = "yoke-derive" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e" +dependencies = [ + "proc-macro2", + "quote", + "syn", + "synstructure", +] + +[[package]] +name = "zerocopy" +version = "0.8.48" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9" +dependencies = [ + "zerocopy-derive", +] + +[[package]] +name = "zerocopy-derive" +version = "0.8.48" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "zerofrom" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df" +dependencies = [ + "zerofrom-derive", +] + +[[package]] +name = "zerofrom-derive" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1" +dependencies = [ + "proc-macro2", + "quote", + "syn", + "synstructure", +] + +[[package]] +name = "zeroize" +version = "1.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" + +[[package]] +name = "zerotrie" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf" +dependencies = [ + "displaydoc", + "yoke", + "zerofrom", +] + +[[package]] +name = "zerovec" +version = "0.11.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239" +dependencies = [ + "yoke", + "zerofrom", + "zerovec-derive", +] + +[[package]] +name = "zerovec-derive" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "zip" +version = "2.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fabe6324e908f85a1c52063ce7aa26b68dcb7eb6dbc83a2d148403c9bc3eba50" +dependencies = [ + "arbitrary", + "crc32fast", + "crossbeam-utils", + "displaydoc", + "flate2", + "indexmap", + "memchr", + "thiserror", + "zopfli", +] + +[[package]] +name = "zmij" +version = "1.0.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa" + +[[package]] +name = "zopfli" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249" +dependencies = [ + "bumpalo", + "crc32fast", + "log", + "simd-adler32", +] diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 00000000..21bf5057 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,40 @@ +[workspace] +resolver = "2" +members = [ + "crates/webapps-core", + "crates/webapps-viewer", + "crates/webapps-manager", +] + +[workspace.package] +version = "4.0.0" +edition = "2021" +license = "GPL-3.0-or-later" +repository = "https://github.com/biglinux/biglinux-webapps" + +[workspace.dependencies] +gtk4 = { version = "0.11", features = ["v4_10"] } +libadwaita = { version = "0.9", features = ["v1_6"] } +webkit6 = { version = "0.6", features = ["v2_50"] } +glib = { package = "glib", version = "0.22" } +gio = { package = "gio", version = "0.22" } +gdk4 = { package = "gdk4", version = "0.11" } +serde = { version = "1", features = ["derive"] } +serde_json = "1" +log = "0.4" +env_logger = "0.11" +anyhow = "1" +dirs = "6" +clap = { version = "4", features = ["derive"] } +reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "blocking"] } +scraper = "0.22" +zbus = "5" +tokio = { version = "1", features = ["rt-multi-thread", "macros"] } +image = { version = "0.25", default-features = false, features = ["png", "ico"] } +gettextrs = { package = "gettext-rs", version = "0.7", features = ["gettext-system"] } + +[profile.release] +lto = "thin" +opt-level = "s" +strip = true +codegen-units = 1 diff --git a/biglinux-webapps/locale/bg.json b/biglinux-webapps/locale/bg.json deleted file mode 100644 index 74eef0eb..00000000 --- a/biglinux-webapps/locale/bg.json +++ /dev/null @@ -1 +0,0 @@ -{"bg":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Шаблони"]},"Choose a Template":{"*":["Изберете шаблон"]},"Search templates...":{"*":["Търсене на шаблони..."]},"Search templates":{"*":["Търсене на шаблони"]},"Search Results":{"*":["Резултати от търсенето"]},"No templates found":{"*":["Не са намерени шаблони."]},"Browser: {0}":{"*":["Браузър: {0}"]},"Edit WebApp":{"*":["Редактиране на уеб приложение"]},"Edit {0}":{"*":["Редактиране на {0}"]},"Delete WebApp":{"*":["Изтрий WebApp"]},"Delete {0}":{"*":["Изтрий {0}"]},"Welcome to WebApps Manager":{"*":["Добре дошли в WebApps Manager"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Какво са WebApps?\n\nWebApps са уеб приложения, които работят в отделен прозорец на браузъра, предоставяйки по-приложен опит за вашите любими уебсайтове.\n\nПредимства на използването на WebApps:\n\n• Фокус: Работете без разсейвания от други раздели на браузъра\n• Интеграция с работния плот: Бърз достъп от менюто на приложението\n• Изолирани профили: По желание, всяко уеб приложение може да има свои собствени бисквитки и настройки\n"]},"Don't show this again":{"*":["Не показвай това отново"]},"Let's Start":{"*":["Нека започнем"]},"Select Browser":{"*":["Изберете браузър"]},"Cancel":{"*":["Отмени"]},"Select":{"*":["Изберете"]},"System Default":{"*":["Системен по подразбиране"]},"Default":{"*":["По подразбиране"]},"Please select a browser.":{"*":["Моля, изберете браузър."]},"Error":{"*":["Грешка"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Добави WebApp"]},"Choose from templates":{"*":["Изберете от шаблони"]},"URL":{"*":["URL"]},"Detect":{"*":["Открийте"]},"Detect name and icon from website":{"*":["Открийте име и икона от уебсайт"]},"Name":{"*":["Име"]},"App Icon":{"*":["Икона на приложението"]},"Select icon for the WebApp":{"*":["Изберете икона за уеб приложението"]},"Available Icons":{"*":["Налични икони"]},"Category":{"*":["Категория"]},"Application Mode":{"*":["Режим на приложение"]},"Opens as a native window without browser interface":{"*":["Отваря се като роден прозорец без интерфейс на браузъра."]},"Browser":{"*":["Браузър"]},"Profile Settings":{"*":["Настройки на профила"]},"Configure a separate browser profile for this webapp":{"*":["Конфигурирайте отделен браузър профил за това уеб приложение."]},"Use separate profile":{"*":["Използвайте отделен профил"]},"Allows independent cookies and sessions":{"*":["Позволява независими бисквитки и сесии"]},"Profile Name":{"*":["Име на профил"]},"Save":{"*":["Запази"]},"Loading...":{"*":["Зареждане..."]},"Detecting website information, please wait":{"*":["Откриване на информация за уебсайта, моля изчакайте"]},"Please enter a URL first.":{"*":["Моля, въведете URL адрес първо."]},"Please enter a name for the WebApp.":{"*":["Моля, въведете име за уеб приложението."]},"Please enter a URL for the WebApp.":{"*":["Моля, въведете URL адрес за WebApp."]},"Please select a browser for the WebApp.":{"*":["Моля, изберете браузър за WebApp."]},"WebApps Manager":{"*":["Мениджър на уеб приложения"]},"Search WebApps":{"*":["Търсене на уеб приложения"]},"Main Menu":{"*":["Главно меню"]},"Refresh":{"*":["Обнови"]},"Export WebApps":{"*":["Експортиране на уеб приложения"]},"Import WebApps":{"*":["Импорт на уеб приложения"]},"Browse Applications Folder":{"*":["Преглед на папката с приложения"]},"Browse Profiles Folder":{"*":["Преглед на папка с профили"]},"Show Welcome Screen":{"*":["Покажи екран за приветствие"]},"Remove All WebApps":{"*":["Премахнете всички уеб приложения"]},"About":{"*":["За програмата"]},"Add":{"*":["Добави"]},"No WebApps Found":{"*":["Не са намерени уеб приложения."]},"Add a new webapp to get started":{"*":["Добавете нов уеб приложение, за да започнете."]},"WebApp created successfully":{"*":["WebApp създаден успешно"]},"WebApp updated successfully":{"*":["Web приложението беше актуализирано успешно."]},"Browser changed to {0}":{"*":["Браузърът беше променен на {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Сигурни ли сте, че искате да изтриете {0}?\n\nURL: {1}\nБраузър: {2}"]},"Also delete configuration folder":{"*":["Също така изтрийте папката с конфигурацията."]},"Delete":{"*":["Изтрий"]},"WebApp deleted successfully":{"*":["Web приложението беше успешно изтрито."]},"REMOVE ALL":{"*":["Премахнете всичко"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Сигурни ли сте, че искате да премахнете всички ваши WebApps? Това действие не може да бъде отменено.\n\nНапишете \"{0}\", за да потвърдите."]},"Remove All":{"*":["Премахни всичко"]},"All WebApps have been removed":{"*":["Всички уеб приложения са премахнати."]},"Failed to remove all WebApps":{"*":["Неуспешно премахване на всички уеб приложения."]},"Icon {0} of {1}":{"*":["Икона {0} от {1}"]},"WebApps exported successfully":{"*":["Web приложенията бяха експортирани успешно."]},"No WebApps":{"*":["Няма уеб приложения"]},"There are no WebApps to export.":{"*":["Няма налични WebApps за експортиране."]},"The selected file does not exist.":{"*":["Избраният файл не съществува."]},"The selected file is not a valid ZIP archive.":{"*":["Избраният файл не е валиден ZIP архив."]},"Error importing WebApps":{"*":["Грешка при импортиране на WebApps"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["Импортирни {} WebApps успешно ({} дубликати пропуснати)"]},"Imported {} WebApps successfully":{"*":["Успешно импортирани {} WebApps"]},"No":{"*":["Не"]},"Yes":{"*":["Да"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/bg.po b/biglinux-webapps/locale/bg.po index 06170917..f11ef8ef 100644 --- a/biglinux-webapps/locale/bg.po +++ b/biglinux-webapps/locale/bg.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the biglinux-webapps package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" "Project-Id-Version: biglinux-webapps\n" @@ -14,443 +14,749 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Шаблони" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Изберете шаблон" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Търсене на шаблони..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 -msgid "Search templates" -msgstr "Търсене на шаблони" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Резултати от търсенето" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Не са намерени шаблони." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 -#, python-brace-format -msgid "Browser: {0}" -msgstr "Браузър: {0}" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Редактиране на уеб приложение" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 -#, python-brace-format -msgid "Edit {0}" -msgstr "Редактиране на {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Изтрий WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 -#, python-brace-format -msgid "Delete {0}" -msgstr "Изтрий {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:20 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Добре дошли в WebApps Manager" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 -msgid "" -"What are WebApps?\n" -"\n" -"WebApps are web applications that run in a dedicated browser window, providing a more app-like " -"experience for your favorite websites.\n" -"\n" -"Benefits of using WebApps:\n" -"\n" -"• Focus: Work without the distractions of other browser tabs\n" -"• Desktop Integration: Quick access from your application menu\n" -"• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" -msgstr "" -"Какво са WebApps?\n" -"\n" -"WebApps са уеб приложения, които работят в отделен прозорец на браузъра, предоставяйки по-приложен " -"опит за вашите любими уебсайтове.\n" -"\n" -"Предимства на използването на WebApps:\n" -"\n" -"• Фокус: Работете без разсейвания от други раздели на браузъра\n" -"• Интеграция с работния плот: Бърз достъп от менюто на приложението\n" -"• Изолирани профили: По желание, всяко уеб приложение може да има свои собствени бисквитки и " -"настройки\n" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Не показвай това отново" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Нека започнем" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Изберете браузър" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:99 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:225 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:291 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Отмени" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Изберете" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 -msgid "System Default" -msgstr "Системен по подразбиране" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 -msgid "Default" -msgstr "По подразбиране" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 -msgid "Please select a browser." -msgstr "Моля, изберете браузър." -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 -msgid "Error" -msgstr "Грешка" -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "OK" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Добави WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 -msgid "Choose from templates" -msgstr "Изберете от шаблони" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 -msgid "Detect" -msgstr "Открийте" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Открийте име и икона от уебсайт" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Име" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 -msgid "App Icon" -msgstr "Икона на приложението" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 -msgid "Select icon for the WebApp" -msgstr "Изберете икона за уеб приложението" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 -msgid "Available Icons" -msgstr "Налични икони" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Категория" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 -msgid "Application Mode" -msgstr "Режим на приложение" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Отваря се като роден прозорец без интерфейс на браузъра." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 +#. -- Browser row (hidden in app mode) -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Браузър" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 -msgid "Profile Settings" -msgstr "Настройки на профила" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 -msgid "Configure a separate browser profile for this webapp" -msgstr "Конфигурирайте отделен браузър профил за това уеб приложение." -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -msgid "Use separate profile" -msgstr "Използвайте отделен профил" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Позволява независими бисквитки и сесии" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Име на профил" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Запази" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Зареждане..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 -msgid "Detecting website information, please wait" -msgstr "Откриване на информация за уебсайта, моля изчакайте" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 -msgid "Please enter a URL first." -msgstr "Моля, въведете URL адрес първо." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 -msgid "Please enter a name for the WebApp." -msgstr "Моля, въведете име за уеб приложението." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 -msgid "Please enter a URL for the WebApp." -msgstr "Моля, въведете URL адрес за WebApp." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 -msgid "Please select a browser for the WebApp." -msgstr "Моля, изберете браузър за WebApp." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "Мениджър на уеб приложения" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Търсене на уеб приложения" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 -msgid "Main Menu" -msgstr "Главно меню" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 -msgid "Refresh" -msgstr "Обнови" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Експортиране на уеб приложения" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Импорт на уеб приложения" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Преглед на папката с приложения" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Преглед на папка с профили" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 -msgid "Show Welcome Screen" -msgstr "Покажи екран за приветствие" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Премахнете всички уеб приложения" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "За програмата" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 -msgid "Add" -msgstr "Добави" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 -msgid "No WebApps Found" -msgstr "Не са намерени уеб приложения." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Добавете нов уеб приложение, за да започнете." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "WebApp създаден успешно" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "Web приложението беше актуализирано успешно." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 -#, python-brace-format -msgid "Browser changed to {0}" -msgstr "Браузърът беше променен на {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 -#, python-brace-format -msgid "" -"Are you sure you want to delete {0}?\n" -"\n" -"URL: {1}\n" -"Browser: {2}" -msgstr "" -"Сигурни ли сте, че искате да изтриете {0}?\n" -"\n" -"URL: {1}\n" -"Браузър: {2}" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Също така изтрийте папката с конфигурацията." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Изтрий" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "Web приложението беше успешно изтрито." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 -msgid "REMOVE ALL" -msgstr "Премахнете всичко" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 -#, python-brace-format -msgid "" -"Are you sure you want to remove all your WebApps? This action cannot be undone.\n" -"\n" -"Type \"{0}\" to confirm." -msgstr "" -"Сигурни ли сте, че искате да премахнете всички ваши WebApps? Това действие не може да бъде " -"отменено.\n" -"\n" -"Напишете \"{0}\", за да потвърдите." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Премахни всичко" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Всички уеб приложения са премахнати." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Неуспешно премахване на всички уеб приложения." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 -#, python-brace-format -msgid "Icon {0} of {1}" -msgstr "Икона {0} от {1}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "Web приложенията бяха експортирани успешно." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Няма уеб приложения" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 +msgid "Change browser" +msgstr "Смени браузъра" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 +msgid "Edit" +msgstr "Редактирай" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 +msgid "New WebApp" +msgstr "Нов WebApp" + +#. -- Icon row -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 +msgid "Icon" +msgstr "Икона" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 +msgid "App Mode" +msgstr "Режим на приложението" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 +msgid "Separate Profile" +msgstr "Отделен профил" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 +msgid "Select Icon" +msgstr "Избери икона" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 +msgid "Images" +msgstr "Изображения" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 +msgid "ZIP files" +msgstr "ZIP файлове" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 +#, rust-format +msgid "Imported {imported}, skipped {dups} duplicates" +msgstr "Импортирани {imported}, пропуснати {dups} дубликати" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 +msgid "Import failed" +msgstr "Импортът не бе успешен" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 +msgid "Export failed" +msgstr "Експортът не бе успешен" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 +msgid "" +"This will delete all webapps and their desktop entries. This cannot be " +"undone." +msgstr "" +"Това ще изтрие всички webapps и техните десктоп записи. Това не може да бъде" +" отменено." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 +msgid "Browser changed" +msgstr "Браузърът е сменен" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 +msgid "What are WebApps?" +msgstr "Какво са WebApps?" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 +msgid "" +"WebApps are web applications that run in a dedicated browser window, " +"providing a more app-like experience for your favorite websites." +msgstr "" +"WebApps са уеб приложения, които се изпълняват в отделен прозорец на " +"браузъра, предоставяйки по-приложенски опит за любимите ви уебсайтове." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 +msgid "Benefits of using WebApps:" +msgstr "Предимства на използването на WebApps:" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Focus" +msgstr "Фокус" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Work without the distractions of other browser tabs" +msgstr "Работа без разсейване от други раздели на браузъра" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Desktop Integration" +msgstr "Интеграция с работния плот" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Quick access from your application menu" +msgstr "Бърз достъп от менюто на приложенията ви" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Isolated Profiles" +msgstr "Изолирани профили" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Each webapp can have its own cookies and settings" +msgstr "Всеки webapp може да има свои собствени бисквитки и настройки" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 +msgid "Back" +msgstr "Назад" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 +msgid "Forward" +msgstr "Напред" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 +msgid "Reload" +msgstr "Презареди" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 +msgid "Fullscreen" +msgstr "Цял екран" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 +msgid "Enter URL…" +msgstr "Въведете URL…" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 +msgid "Zoom In" +msgstr "Увеличи" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 +msgid "Zoom Out" +msgstr "Намали" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 +msgid "Reset Zoom" +msgstr "Нулиране на мащаба" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 +msgid "Developer Tools" +msgstr "Инструменти за разработчици" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 +msgid "Menu" +msgstr "Меню" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 +msgid "Open Link in Browser" +msgstr "Отвори връзката в браузъра" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 +msgid "Download Complete" +msgstr "Изтеглянето е завършено" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 +msgid "Save File" +msgstr "Запази файла" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 +#~ msgid "Search templates" +#~ msgstr "Търсене на шаблони" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 +#, python-brace-format +#~ msgid "Browser: {0}" +#~ msgstr "Браузър: {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 +#, python-brace-format +#~ msgid "Edit {0}" +#~ msgstr "Редактиране на {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 +#, python-brace-format +#~ msgid "Delete {0}" +#~ msgstr "Изтрий {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 +#~ msgid "" +#~ "What are WebApps?\n" +#~ "\n" +#~ "WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n" +#~ "\n" +#~ "Benefits of using WebApps:\n" +#~ "\n" +#~ "• Focus: Work without the distractions of other browser tabs\n" +#~ "• Desktop Integration: Quick access from your application menu\n" +#~ "• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" +#~ msgstr "" +#~ "Какво са WebApps?\n" +#~ "\n" +#~ "WebApps са уеб приложения, които работят в отделен прозорец на браузъра, предоставяйки по-приложен опит за вашите любими уебсайтове.\n" +#~ "\n" +#~ "Предимства на използването на WebApps:\n" +#~ "\n" +#~ "• Фокус: Работете без разсейвания от други раздели на браузъра\n" +#~ "• Интеграция с работния плот: Бърз достъп от менюто на приложението\n" +#~ "• Изолирани профили: По желание, всяко уеб приложение може да има свои собствени бисквитки и настройки\n" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 +#~ msgid "System Default" +#~ msgstr "Системен по подразбиране" + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 -msgid "There are no WebApps to export." -msgstr "Няма налични WebApps за експортиране." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 -msgid "The selected file does not exist." -msgstr "Избраният файл не съществува." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 -msgid "The selected file is not a valid ZIP archive." -msgstr "Избраният файл не е валиден ZIP архив." +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 -msgid "Error importing WebApps" -msgstr "Грешка при импортиране на WebApps" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 +#~ msgid "Default" +#~ msgstr "По подразбиране" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 +#~ msgid "Please select a browser." +#~ msgstr "Моля, изберете браузър." + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 -msgid "Imported {} WebApps successfully ({} duplicates skipped)" -msgstr "Импортирни {} WebApps успешно ({} дубликати пропуснати)" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 +#~ msgid "Error" +#~ msgstr "Грешка" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 +#~ msgid "Choose from templates" +#~ msgstr "Изберете от шаблони" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 +#~ msgid "Detect" +#~ msgstr "Открийте" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 +#~ msgid "App Icon" +#~ msgstr "Икона на приложението" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 +#~ msgid "Select icon for the WebApp" +#~ msgstr "Изберете икона за уеб приложението" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 +#~ msgid "Available Icons" +#~ msgstr "Налични икони" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 +#~ msgid "Application Mode" +#~ msgstr "Режим на приложение" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 +#~ msgid "Profile Settings" +#~ msgstr "Настройки на профила" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 +#~ msgid "Configure a separate browser profile for this webapp" +#~ msgstr "Конфигурирайте отделен браузър профил за това уеб приложение." + +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 -msgid "Imported {} WebApps successfully" -msgstr "Успешно импортирани {} WebApps" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 -msgid "No" -msgstr "Не" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 -msgid "Yes" -msgstr "Да" +#~ msgid "Use separate profile" +#~ msgstr "Използвайте отделен профил" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 +#~ msgid "Detecting website information, please wait" +#~ msgstr "Откриване на информация за уебсайта, моля изчакайте" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 +#~ msgid "Please enter a URL first." +#~ msgstr "Моля, въведете URL адрес първо." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 +#~ msgid "Please enter a name for the WebApp." +#~ msgstr "Моля, въведете име за уеб приложението." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 +#~ msgid "Please enter a URL for the WebApp." +#~ msgstr "Моля, въведете URL адрес за WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 +#~ msgid "Please select a browser for the WebApp." +#~ msgstr "Моля, изберете браузър за WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 +#~ msgid "Main Menu" +#~ msgstr "Главно меню" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 +#~ msgid "Refresh" +#~ msgstr "Обнови" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 +#~ msgid "Show Welcome Screen" +#~ msgstr "Покажи екран за приветствие" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 +#~ msgid "Add" +#~ msgstr "Добави" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 +#~ msgid "No WebApps Found" +#~ msgstr "Не са намерени уеб приложения." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 +#, python-brace-format +#~ msgid "Browser changed to {0}" +#~ msgstr "Браузърът беше променен на {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to delete {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Browser: {2}" +#~ msgstr "" +#~ "Сигурни ли сте, че искате да изтриете {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Браузър: {2}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 +#~ msgid "REMOVE ALL" +#~ msgstr "Премахнете всичко" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to remove all your WebApps? This action cannot be undone.\n" +#~ "\n" +#~ "Type \"{0}\" to confirm." +#~ msgstr "" +#~ "Сигурни ли сте, че искате да премахнете всички ваши WebApps? Това действие не може да бъде отменено.\n" +#~ "\n" +#~ "Напишете \"{0}\", за да потвърдите." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 +#, python-brace-format +#~ msgid "Icon {0} of {1}" +#~ msgstr "Икона {0} от {1}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#~ msgid "There are no WebApps to export." +#~ msgstr "Няма налични WebApps за експортиране." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 +#~ msgid "The selected file does not exist." +#~ msgstr "Избраният файл не съществува." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 +#~ msgid "The selected file is not a valid ZIP archive." +#~ msgstr "Избраният файл не е валиден ZIP архив." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 +#~ msgid "Error importing WebApps" +#~ msgstr "Грешка при импортиране на WebApps" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 +#~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" +#~ msgstr "Импортирни {} WebApps успешно ({} дубликати пропуснати)" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 +#~ msgid "Imported {} WebApps successfully" +#~ msgstr "Успешно импортирани {} WebApps" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 +#~ msgid "No" +#~ msgstr "Не" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 +#~ msgid "Yes" +#~ msgstr "Да" diff --git a/biglinux-webapps/locale/biglinux-webapps.pot b/biglinux-webapps/locale/biglinux-webapps.pot index 5e7e6bc7..ccda5701 100644 --- a/biglinux-webapps/locale/biglinux-webapps.pot +++ b/biglinux-webapps/locale/biglinux-webapps.pot @@ -4,500 +4,353 @@ # FIRST AUTHOR , YEAR. # #, fuzzy -msgid "" -msgstr "Project-Id-Version: biglinux-webapps\n" - "Report-Msgid-Bugs-To: \n" - "Last-Translator: FULL NAME \n" - "Language-Team: LANGUAGE \n" - "Language: \n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" - -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 -msgid "Templates" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 -msgid "Choose a Template" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 -msgid "Search templates..." -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 -msgid "Search templates" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 -msgid "Search Results" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 -msgid "No templates found" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 96 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 99 -#, python-brace-format -msgid "Browser: {0}" -msgstr "" - -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 110 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 62 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 150 -msgid "Edit WebApp" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 -#, python-brace-format -msgid "Edit {0}" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 124 -msgid "Delete WebApp" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 -#, python-brace-format -msgid "Delete {0}" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 26 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 102 -msgid "Welcome to WebApps Manager" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 117 -msgid "What are WebApps?\n" - "\n" - "WebApps are web applications that run in a dedicated browser window, " - "providing a more app-like experience for your favorite websites.\n" - "\n" - "Benefits of using WebApps:\n" - "\n" - "• Focus: Work without the distractions of other browser tabs\n" - "• Desktop Integration: Quick access from your application " - "menu\n" - "• Isolated Profiles: Optionally, each webapp can have its own " - "cookies and settings\n" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 -msgid "Don't show this again" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 158 -msgid "Let's Start" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 69 -msgid "Select Browser" -msgstr "" - -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 130 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 398 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 315 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 -msgid "Cancel" -msgstr "" - -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 133 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 257 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 344 -msgid "Select" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 184 -msgid "System Default" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 190 -msgid "Default" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 219 -msgid "Please select a browser." -msgstr "" - -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 228 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 796 -msgid "Error" -msgstr "" - -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 229 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 797 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 242 -msgid "OK" -msgstr "" - -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 62 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 150 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 147 -msgid "Add WebApp" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 -msgid "Choose from templates" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 227 -msgid "URL" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 235 -msgid "Detect" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 236 -msgid "Detect name and icon from website" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 245 -msgid "Name" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 251 -msgid "App Icon" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 -msgid "Select icon for the WebApp" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 265 -msgid "Available Icons" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 301 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 310 -msgid "Category" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 317 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 326 -msgid "Application Mode" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 319 -msgid "Opens as a native window without browser interface" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 333 -msgid "Browser" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 354 -msgid "Profile Settings" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 356 -msgid "Configure a separate browser profile for this webapp" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 359 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 365 -msgid "Use separate profile" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 360 -msgid "Allows independent cookies and sessions" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 376 -msgid "Profile Name" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 402 -msgid "Save" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 425 -msgid "Loading..." -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 429 -msgid "Detecting website information, please wait" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 636 -msgid "Please enter a URL first." -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 752 -msgid "Please enter a name for the WebApp." -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 756 -msgid "Please enter a URL for the WebApp." -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 760 -msgid "Please select a browser for the WebApp." -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 33 -msgid "WebApps Manager" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 67 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 70 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 120 -msgid "Search WebApps" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 -msgid "Main Menu" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 85 -msgid "Refresh" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 86 -msgid "Export WebApps" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 -msgid "Import WebApps" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 90 -msgid "Browse Applications Folder" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 91 -msgid "Browse Profiles Folder" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 95 -msgid "Show Welcome Screen" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 96 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 344 -msgid "Remove All WebApps" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 97 -msgid "About" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 -msgid "Add" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 142 -msgid "No WebApps Found" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 143 -msgid "Add a new webapp to get started" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 240 -msgid "WebApp created successfully" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 242 -msgid "WebApp updated successfully" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 277 -#, python-brace-format -msgid "Browser changed to {0}" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 292 -#, python-brace-format -msgid "Are you sure you want to delete {0}?\n" - "\n" - "URL: {1}\n" - "Browser: {2}" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 309 -msgid "Also delete configuration folder" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 316 -msgid "Delete" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 335 -msgid "WebApp deleted successfully" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 -msgid "REMOVE ALL" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 -#, python-brace-format -msgid "Are you sure you want to remove all your WebApps? This action cannot " - "be undone.\n" - "\n" - "Type \"{0}\" to confirm." -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 -msgid "Remove All" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 379 -msgid "All WebApps have been removed" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 381 -msgid "Failed to remove all WebApps" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 -#, python-brace-format -msgid "Icon {0} of {1}" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 -msgid "WebApps exported successfully" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 169 -msgid "No WebApps" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 169 -msgid "There are no WebApps to export." -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 208 -msgid "The selected file does not exist." -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 209 -msgid "The selected file is not a valid ZIP archive." -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 213 -msgid "Error importing WebApps" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 224 -msgid "Imported {} WebApps successfully ({} duplicates skipped)" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 230 -msgid "Imported {} WebApps successfully" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 250 -msgid "No" -msgstr "" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 251 -msgid "Yes" -msgstr "" +msgid "" +msgstr "" +"Project-Id-Version: biglinux-webapps\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2026-04-15 14:00-0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 +msgid "Change browser" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 +msgid "Edit" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 +msgid "Delete" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 +msgid "Select Browser" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:99 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:225 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:291 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 +msgid "Cancel" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 +msgid "OK" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 +msgid "Choose a Template" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 +msgid "Search templates..." +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 +msgid "No templates found" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 +msgid "Search Results" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 +msgid "New WebApp" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 +msgid "Edit WebApp" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 +msgid "Templates" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 +msgid "Loading..." +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 +msgid "URL" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 +msgid "Detect name and icon from website" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 +msgid "Name" +msgstr "" + +#. -- Icon row -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 +msgid "Icon" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 +msgid "Select" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 +msgid "Category" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 +msgid "App Mode" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 +msgid "Opens as a native window without browser interface" +msgstr "" + +#. -- Browser row (hidden in app mode) -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 +msgid "Browser" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 +msgid "Separate Profile" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 +msgid "Allows independent cookies and sessions" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 +msgid "Profile Name" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 +msgid "Save" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 +msgid "Select Icon" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 +msgid "Images" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 +msgid "WebApps Manager" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 +msgid "Search WebApps" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 +msgid "Add WebApp" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 +msgid "Import WebApps" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 +msgid "Export WebApps" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 +msgid "Browse Applications Folder" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 +msgid "Browse Profiles Folder" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 +msgid "Remove All WebApps" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 +msgid "About" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 +msgid "WebApp created successfully" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 +msgid "ZIP files" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 +#, rust-format +msgid "Imported {imported}, skipped {dups} duplicates" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 +msgid "Import failed" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 +msgid "No WebApps" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 +msgid "WebApps exported successfully" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 +msgid "Export failed" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 +msgid "" +"This will delete all webapps and their desktop entries. This cannot be " +"undone." +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 +msgid "Remove All" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 +msgid "Failed to remove all WebApps" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 +msgid "All WebApps have been removed" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 +msgid "Add a new webapp to get started" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 +msgid "WebApp updated successfully" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 +msgid "Browser changed" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 +msgid "Delete WebApp" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 +msgid "Also delete configuration folder" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 +msgid "WebApp deleted successfully" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:20 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 +msgid "Welcome to WebApps Manager" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 +msgid "What are WebApps?" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 +msgid "" +"WebApps are web applications that run in a dedicated browser window, " +"providing a more app-like experience for your favorite websites." +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 +msgid "Benefits of using WebApps:" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Focus" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Work without the distractions of other browser tabs" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Desktop Integration" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Quick access from your application menu" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Isolated Profiles" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Each webapp can have its own cookies and settings" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 +msgid "Don't show this again" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 +msgid "Let's Start" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 +msgid "Back" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 +msgid "Forward" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 +msgid "Reload" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 +msgid "Fullscreen" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 +msgid "Enter URL…" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 +msgid "Zoom In" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 +msgid "Zoom Out" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 +msgid "Reset Zoom" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 +msgid "Developer Tools" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 +msgid "Menu" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 +msgid "Open Link in Browser" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 +msgid "Download Complete" +msgstr "" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 +msgid "Save File" +msgstr "" diff --git a/biglinux-webapps/locale/cs.json b/biglinux-webapps/locale/cs.json deleted file mode 100644 index 8156f001..00000000 --- a/biglinux-webapps/locale/cs.json +++ /dev/null @@ -1 +0,0 @@ -{"cs":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Šablony"]},"Choose a Template":{"*":["Vyberte šablonu"]},"Search templates...":{"*":["Hledat šablony..."]},"Search templates":{"*":["Hledat šablony"]},"Search Results":{"*":["Výsledky vyhledávání"]},"No templates found":{"*":["Žádné šablony nenalezeny"]},"Browser: {0}":{"*":["Prohlížeč: {0}"]},"Edit WebApp":{"*":["Upravit WebApp"]},"Edit {0}":{"*":["Upravit {0}"]},"Delete WebApp":{"*":["Smazat WebApp"]},"Delete {0}":{"*":["Smazat {0}"]},"Welcome to WebApps Manager":{"*":["Vítejte v správci webových aplikací"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Co jsou WebApps?\n\nWebApps jsou webové aplikace, které běží v dedikovaném okně prohlížeče, což poskytuje více aplikaci podobný zážitek pro vaše oblíbené webové stránky.\n\nVýhody používání WebApps:\n\n• Soustředění: Pracujte bez rozptýlení od ostatních karet prohlížeče\n• Integrace na ploše: Rychlý přístup z nabídky aplikací\n• Izolované profily: Volitelně může mít každá webová aplikace své vlastní cookies a nastavení\n"]},"Don't show this again":{"*":["Znovu to nezobrazovat"]},"Let's Start":{"*":["Začněme"]},"Select Browser":{"*":["Vyberte prohlížeč"]},"Cancel":{"*":["Zrušit"]},"Select":{"*":["Vybrat"]},"System Default":{"*":["Výchozí systém"]},"Default":{"*":["Výchozí"]},"Please select a browser.":{"*":["Vyberte prosím prohlížeč."]},"Error":{"*":["Chyba"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Přidat WebApp"]},"Choose from templates":{"*":["Vyberte z šablon"]},"URL":{"*":["URL"]},"Detect":{"*":["Detekovat"]},"Detect name and icon from website":{"*":["Detekuj název a ikonu z webové stránky"]},"Name":{"*":["Jméno"]},"App Icon":{"*":["Ikona aplikace"]},"Select icon for the WebApp":{"*":["Vyberte ikonu pro WebApp"]},"Available Icons":{"*":["Dostupné ikony"]},"Category":{"*":["Kategorie"]},"Application Mode":{"*":["Režim aplikace"]},"Opens as a native window without browser interface":{"*":["Otevře se jako nativní okno bez rozhraní prohlížeče."]},"Browser":{"*":["Prohlížeč"]},"Profile Settings":{"*":["Nastavení profilu"]},"Configure a separate browser profile for this webapp":{"*":["Nakonfigurujte samostatný profil prohlížeče pro tuto webovou aplikaci"]},"Use separate profile":{"*":["Použijte samostatný profil"]},"Allows independent cookies and sessions":{"*":["Umožňuje nezávislé cookies a relace"]},"Profile Name":{"*":["Název profilu"]},"Save":{"*":["Uložit"]},"Loading...":{"*":["Načítání..."]},"Detecting website information, please wait":{"*":["Zjišťuji informace o webové stránce, prosím čekejte"]},"Please enter a URL first.":{"*":["Nejprve zadejte URL."]},"Please enter a name for the WebApp.":{"*":["Zadejte název pro WebApp."]},"Please enter a URL for the WebApp.":{"*":["Zadejte prosím URL pro WebApp."]},"Please select a browser for the WebApp.":{"*":["Vyberte prosím pro WebApp prohlížeč."]},"WebApps Manager":{"*":["Správce webových aplikací"]},"Search WebApps":{"*":["Hledat WebApps"]},"Main Menu":{"*":["Hlavní nabídka"]},"Refresh":{"*":["Obnovit"]},"Export WebApps":{"*":["Exportovat webové aplikace"]},"Import WebApps":{"*":["Importovat WebApps"]},"Browse Applications Folder":{"*":["Procházet složku Aplikace"]},"Browse Profiles Folder":{"*":["Procházet složku profilů"]},"Show Welcome Screen":{"*":["Zobrazit uvítací obrazovku"]},"Remove All WebApps":{"*":["Odstranit všechny webové aplikace"]},"About":{"*":["O aplikaci"]},"Add":{"*":["Přidat"]},"No WebApps Found":{"*":["Žádné webové aplikace nenalezeny"]},"Add a new webapp to get started":{"*":["Přidejte novou webovou aplikaci, abyste mohli začít."]},"WebApp created successfully":{"*":["Webová aplikace byla úspěšně vytvořena."]},"WebApp updated successfully":{"*":["Webová aplikace byla úspěšně aktualizována."]},"Browser changed to {0}":{"*":["Prohlížeč byl změněn na {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Opravdu chcete smazat {0}?\n\nURL: {1}\nProhlížeč: {2}"]},"Also delete configuration folder":{"*":["Také odstraňte složku konfigurace."]},"Delete":{"*":["Smazat"]},"WebApp deleted successfully":{"*":["Webová aplikace byla úspěšně smazána."]},"REMOVE ALL":{"*":["ODSTRANIT VŠE"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Opravdu chcete odstranit všechny své WebApps? Tuto akci nelze vrátit zpět.\n\nZadejte \"{0}\" pro potvrzení."]},"Remove All":{"*":["Odstranit vše"]},"All WebApps have been removed":{"*":["Všechny webové aplikace byly odstraněny."]},"Failed to remove all WebApps":{"*":["Nepodařilo se odstranit všechny WebAppy"]},"Icon {0} of {1}":{"*":["Ikona {0} z {1}"]},"WebApps exported successfully":{"*":["Webové aplikace byly úspěšně exportovány."]},"No WebApps":{"*":["Žádné webové aplikace"]},"There are no WebApps to export.":{"*":["Není k exportu žádná WebApp."]},"The selected file does not exist.":{"*":["Vybraný soubor neexistuje."]},"The selected file is not a valid ZIP archive.":{"*":["Vybraný soubor není platný ZIP archiv."]},"Error importing WebApps":{"*":["Chyba při importu WebApps"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["Úspěšně importováno {} WebApps ({} duplicit bylo přeskočeno)"]},"Imported {} WebApps successfully":{"*":["Úspěšně importováno {} WebApps"]},"No":{"*":["Ne"]},"Yes":{"*":["Ano"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/cs.po b/biglinux-webapps/locale/cs.po index c19b18d3..12bb1f85 100644 --- a/biglinux-webapps/locale/cs.po +++ b/biglinux-webapps/locale/cs.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the biglinux-webapps package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" "Project-Id-Version: biglinux-webapps\n" @@ -14,442 +14,749 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Šablony" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Vyberte šablonu" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Hledat šablony..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 -msgid "Search templates" -msgstr "Hledat šablony" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Výsledky vyhledávání" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Žádné šablony nenalezeny" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 -#, python-brace-format -msgid "Browser: {0}" -msgstr "Prohlížeč: {0}" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Upravit WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 -#, python-brace-format -msgid "Edit {0}" -msgstr "Upravit {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Smazat WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 -#, python-brace-format -msgid "Delete {0}" -msgstr "Smazat {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:20 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Vítejte v správci webových aplikací" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 -msgid "" -"What are WebApps?\n" -"\n" -"WebApps are web applications that run in a dedicated browser window, providing a more app-like " -"experience for your favorite websites.\n" -"\n" -"Benefits of using WebApps:\n" -"\n" -"• Focus: Work without the distractions of other browser tabs\n" -"• Desktop Integration: Quick access from your application menu\n" -"• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" -msgstr "" -"Co jsou WebApps?\n" -"\n" -"WebApps jsou webové aplikace, které běží v dedikovaném okně prohlížeče, což poskytuje více aplikaci " -"podobný zážitek pro vaše oblíbené webové stránky.\n" -"\n" -"Výhody používání WebApps:\n" -"\n" -"• Soustředění: Pracujte bez rozptýlení od ostatních karet prohlížeče\n" -"• Integrace na ploše: Rychlý přístup z nabídky aplikací\n" -"• Izolované profily: Volitelně může mít každá webová aplikace své vlastní cookies a " -"nastavení\n" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Znovu to nezobrazovat" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Začněme" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Vyberte prohlížeč" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:99 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:225 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:291 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Zrušit" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Vybrat" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 -msgid "System Default" -msgstr "Výchozí systém" -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 -msgid "Default" -msgstr "Výchozí" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 -msgid "Please select a browser." -msgstr "Vyberte prosím prohlížeč." -# # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 -msgid "Error" -msgstr "Chyba" -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "OK" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Přidat WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 -msgid "Choose from templates" -msgstr "Vyberte z šablon" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 -msgid "Detect" -msgstr "Detekovat" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Detekuj název a ikonu z webové stránky" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Jméno" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 -msgid "App Icon" -msgstr "Ikona aplikace" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 -msgid "Select icon for the WebApp" -msgstr "Vyberte ikonu pro WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 -msgid "Available Icons" -msgstr "Dostupné ikony" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Kategorie" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 -msgid "Application Mode" -msgstr "Režim aplikace" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Otevře se jako nativní okno bez rozhraní prohlížeče." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 +#. -- Browser row (hidden in app mode) -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Prohlížeč" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 -msgid "Profile Settings" -msgstr "Nastavení profilu" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 -msgid "Configure a separate browser profile for this webapp" -msgstr "Nakonfigurujte samostatný profil prohlížeče pro tuto webovou aplikaci" -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -msgid "Use separate profile" -msgstr "Použijte samostatný profil" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Umožňuje nezávislé cookies a relace" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Název profilu" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Uložit" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Načítání..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 -msgid "Detecting website information, please wait" -msgstr "Zjišťuji informace o webové stránce, prosím čekejte" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 -msgid "Please enter a URL first." -msgstr "Nejprve zadejte URL." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 -msgid "Please enter a name for the WebApp." -msgstr "Zadejte název pro WebApp." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 -msgid "Please enter a URL for the WebApp." -msgstr "Zadejte prosím URL pro WebApp." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 -msgid "Please select a browser for the WebApp." -msgstr "Vyberte prosím pro WebApp prohlížeč." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "Správce webových aplikací" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Hledat WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 -msgid "Main Menu" -msgstr "Hlavní nabídka" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 -msgid "Refresh" -msgstr "Obnovit" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Exportovat webové aplikace" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Importovat WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Procházet složku Aplikace" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Procházet složku profilů" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 -msgid "Show Welcome Screen" -msgstr "Zobrazit uvítací obrazovku" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Odstranit všechny webové aplikace" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "O aplikaci" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 -msgid "Add" -msgstr "Přidat" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 -msgid "No WebApps Found" -msgstr "Žádné webové aplikace nenalezeny" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Přidejte novou webovou aplikaci, abyste mohli začít." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "Webová aplikace byla úspěšně vytvořena." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "Webová aplikace byla úspěšně aktualizována." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 -#, python-brace-format -msgid "Browser changed to {0}" -msgstr "Prohlížeč byl změněn na {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 -#, python-brace-format -msgid "" -"Are you sure you want to delete {0}?\n" -"\n" -"URL: {1}\n" -"Browser: {2}" -msgstr "" -"Opravdu chcete smazat {0}?\n" -"\n" -"URL: {1}\n" -"Prohlížeč: {2}" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Také odstraňte složku konfigurace." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Smazat" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "Webová aplikace byla úspěšně smazána." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 -msgid "REMOVE ALL" -msgstr "ODSTRANIT VŠE" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 -#, python-brace-format -msgid "" -"Are you sure you want to remove all your WebApps? This action cannot be undone.\n" -"\n" -"Type \"{0}\" to confirm." -msgstr "" -"Opravdu chcete odstranit všechny své WebApps? Tuto akci nelze vrátit zpět.\n" -"\n" -"Zadejte \"{0}\" pro potvrzení." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Odstranit vše" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Všechny webové aplikace byly odstraněny." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Nepodařilo se odstranit všechny WebAppy" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 -#, python-brace-format -msgid "Icon {0} of {1}" -msgstr "Ikona {0} z {1}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "Webové aplikace byly úspěšně exportovány." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Žádné webové aplikace" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 +msgid "Change browser" +msgstr "Změnit prohlížeč" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 +msgid "Edit" +msgstr "Upravit" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 +msgid "New WebApp" +msgstr "Nová WebApp" + +#. -- Icon row -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 +msgid "Icon" +msgstr "Ikona" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 +msgid "App Mode" +msgstr "Režim aplikace" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 +msgid "Separate Profile" +msgstr "Samostatný profil" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 +msgid "Select Icon" +msgstr "Vybrat ikonu" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 +msgid "Images" +msgstr "Obrázky" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 +msgid "ZIP files" +msgstr "ZIP soubory" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 +#, rust-format +msgid "Imported {imported}, skipped {dups} duplicates" +msgstr "Importováno {imported}, přeskočeno {dups} duplicit" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 +msgid "Import failed" +msgstr "Import selhal" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 +msgid "Export failed" +msgstr "Export selhal" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 +msgid "" +"This will delete all webapps and their desktop entries. This cannot be " +"undone." +msgstr "" +"Tímto se smažou všechny webové aplikace a jejich položky na ploše. Tuto akci" +" nelze vrátit zpět." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 +msgid "Browser changed" +msgstr "Prohlížeč změněn" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 +msgid "What are WebApps?" +msgstr "Co jsou WebApps?" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 +msgid "" +"WebApps are web applications that run in a dedicated browser window, " +"providing a more app-like experience for your favorite websites." +msgstr "" +"WebApps jsou webové aplikace, které běží v samostatném okně prohlížeče a " +"poskytují více aplikaci podobný zážitek pro vaše oblíbené webové stránky." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 +msgid "Benefits of using WebApps:" +msgstr "Výhody používání WebApps:" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Focus" +msgstr "Soustředění" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Work without the distractions of other browser tabs" +msgstr "Pracujte bez rozptýlení ostatními záložkami v prohlížeči" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Desktop Integration" +msgstr "Integrace na ploše" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Quick access from your application menu" +msgstr "Rychlý přístup z nabídky aplikací" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Isolated Profiles" +msgstr "Izolované profily" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Each webapp can have its own cookies and settings" +msgstr "Každý webapp může mít své vlastní cookies a nastavení" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 +msgid "Back" +msgstr "Zpět" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 +msgid "Forward" +msgstr "Vpřed" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 +msgid "Reload" +msgstr "Obnovit" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 +msgid "Fullscreen" +msgstr "Celá obrazovka" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 +msgid "Enter URL…" +msgstr "Zadejte URL…" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 +msgid "Zoom In" +msgstr "Přiblížit" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 +msgid "Zoom Out" +msgstr "Oddálit" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 +msgid "Reset Zoom" +msgstr "Obnovit přiblížení" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 +msgid "Developer Tools" +msgstr "Nástroje pro vývojáře" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 +msgid "Menu" +msgstr "Menu" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 +msgid "Open Link in Browser" +msgstr "Otevřít odkaz v prohlížeči" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 +msgid "Download Complete" +msgstr "Stahování dokončeno" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 +msgid "Save File" +msgstr "Uložit soubor" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 +#~ msgid "Search templates" +#~ msgstr "Hledat šablony" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 +#, python-brace-format +#~ msgid "Browser: {0}" +#~ msgstr "Prohlížeč: {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 +#, python-brace-format +#~ msgid "Edit {0}" +#~ msgstr "Upravit {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 +#, python-brace-format +#~ msgid "Delete {0}" +#~ msgstr "Smazat {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 +#~ msgid "" +#~ "What are WebApps?\n" +#~ "\n" +#~ "WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n" +#~ "\n" +#~ "Benefits of using WebApps:\n" +#~ "\n" +#~ "• Focus: Work without the distractions of other browser tabs\n" +#~ "• Desktop Integration: Quick access from your application menu\n" +#~ "• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" +#~ msgstr "" +#~ "Co jsou WebApps?\n" +#~ "\n" +#~ "WebApps jsou webové aplikace, které běží v dedikovaném okně prohlížeče, což poskytuje více aplikaci podobný zážitek pro vaše oblíbené webové stránky.\n" +#~ "\n" +#~ "Výhody používání WebApps:\n" +#~ "\n" +#~ "• Soustředění: Pracujte bez rozptýlení od ostatních karet prohlížeče\n" +#~ "• Integrace na ploše: Rychlý přístup z nabídky aplikací\n" +#~ "• Izolované profily: Volitelně může mít každá webová aplikace své vlastní cookies a nastavení\n" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 +#~ msgid "System Default" +#~ msgstr "Výchozí systém" + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 -msgid "There are no WebApps to export." -msgstr "Není k exportu žádná WebApp." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 -msgid "The selected file does not exist." -msgstr "Vybraný soubor neexistuje." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 -msgid "The selected file is not a valid ZIP archive." -msgstr "Vybraný soubor není platný ZIP archiv." +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 -msgid "Error importing WebApps" -msgstr "Chyba při importu WebApps" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 +#~ msgid "Default" +#~ msgstr "Výchozí" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 +#~ msgid "Please select a browser." +#~ msgstr "Vyberte prosím prohlížeč." + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 -msgid "Imported {} WebApps successfully ({} duplicates skipped)" -msgstr "Úspěšně importováno {} WebApps ({} duplicit bylo přeskočeno)" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 +#~ msgid "Error" +#~ msgstr "Chyba" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 +#~ msgid "Choose from templates" +#~ msgstr "Vyberte z šablon" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 +#~ msgid "Detect" +#~ msgstr "Detekovat" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 +#~ msgid "App Icon" +#~ msgstr "Ikona aplikace" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 +#~ msgid "Select icon for the WebApp" +#~ msgstr "Vyberte ikonu pro WebApp" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 +#~ msgid "Available Icons" +#~ msgstr "Dostupné ikony" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 +#~ msgid "Application Mode" +#~ msgstr "Režim aplikace" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 +#~ msgid "Profile Settings" +#~ msgstr "Nastavení profilu" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 +#~ msgid "Configure a separate browser profile for this webapp" +#~ msgstr "Nakonfigurujte samostatný profil prohlížeče pro tuto webovou aplikaci" + +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 -msgid "Imported {} WebApps successfully" -msgstr "Úspěšně importováno {} WebApps" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 -msgid "No" -msgstr "Ne" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 -msgid "Yes" -msgstr "Ano" +#~ msgid "Use separate profile" +#~ msgstr "Použijte samostatný profil" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 +#~ msgid "Detecting website information, please wait" +#~ msgstr "Zjišťuji informace o webové stránce, prosím čekejte" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 +#~ msgid "Please enter a URL first." +#~ msgstr "Nejprve zadejte URL." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 +#~ msgid "Please enter a name for the WebApp." +#~ msgstr "Zadejte název pro WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 +#~ msgid "Please enter a URL for the WebApp." +#~ msgstr "Zadejte prosím URL pro WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 +#~ msgid "Please select a browser for the WebApp." +#~ msgstr "Vyberte prosím pro WebApp prohlížeč." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 +#~ msgid "Main Menu" +#~ msgstr "Hlavní nabídka" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 +#~ msgid "Refresh" +#~ msgstr "Obnovit" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 +#~ msgid "Show Welcome Screen" +#~ msgstr "Zobrazit uvítací obrazovku" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 +#~ msgid "Add" +#~ msgstr "Přidat" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 +#~ msgid "No WebApps Found" +#~ msgstr "Žádné webové aplikace nenalezeny" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 +#, python-brace-format +#~ msgid "Browser changed to {0}" +#~ msgstr "Prohlížeč byl změněn na {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to delete {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Browser: {2}" +#~ msgstr "" +#~ "Opravdu chcete smazat {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Prohlížeč: {2}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 +#~ msgid "REMOVE ALL" +#~ msgstr "ODSTRANIT VŠE" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to remove all your WebApps? This action cannot be undone.\n" +#~ "\n" +#~ "Type \"{0}\" to confirm." +#~ msgstr "" +#~ "Opravdu chcete odstranit všechny své WebApps? Tuto akci nelze vrátit zpět.\n" +#~ "\n" +#~ "Zadejte \"{0}\" pro potvrzení." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 +#, python-brace-format +#~ msgid "Icon {0} of {1}" +#~ msgstr "Ikona {0} z {1}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#~ msgid "There are no WebApps to export." +#~ msgstr "Není k exportu žádná WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 +#~ msgid "The selected file does not exist." +#~ msgstr "Vybraný soubor neexistuje." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 +#~ msgid "The selected file is not a valid ZIP archive." +#~ msgstr "Vybraný soubor není platný ZIP archiv." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 +#~ msgid "Error importing WebApps" +#~ msgstr "Chyba při importu WebApps" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 +#~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" +#~ msgstr "Úspěšně importováno {} WebApps ({} duplicit bylo přeskočeno)" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 +#~ msgid "Imported {} WebApps successfully" +#~ msgstr "Úspěšně importováno {} WebApps" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 +#~ msgid "No" +#~ msgstr "Ne" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 +#~ msgid "Yes" +#~ msgstr "Ano" diff --git a/biglinux-webapps/locale/da.json b/biglinux-webapps/locale/da.json deleted file mode 100644 index 7d880778..00000000 --- a/biglinux-webapps/locale/da.json +++ /dev/null @@ -1 +0,0 @@ -{"da":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Skabeloner"]},"Choose a Template":{"*":["Vælg en skabelon"]},"Search templates...":{"*":["Søg skabeloner..."]},"Search templates":{"*":["Søg skabeloner"]},"Search Results":{"*":["Søgeresultater"]},"No templates found":{"*":["Ingen skabeloner fundet"]},"Browser: {0}":{"*":["Browser: {0}"]},"Edit WebApp":{"*":["Rediger WebApp"]},"Edit {0}":{"*":["Rediger {0}"]},"Delete WebApp":{"*":["Slet WebApp"]},"Delete {0}":{"*":["Slet {0}"]},"Welcome to WebApps Manager":{"*":["Velkommen til WebApps Manager"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Hvad er WebApps?\n\nWebApps er webapplikationer, der kører i et dedikeret browservindue og giver en mere app-lignende oplevelse for dine yndlingswebsteder.\n\nFordele ved at bruge WebApps:\n\n• Fokus: Arbejd uden distraktioner fra andre browsertabs\n• Desktopintegration: Hurtig adgang fra din applikationsmenu\n• Isolerede profiler: Valgfrit kan hver webapp have sine egne cookies og indstillinger\n"]},"Don't show this again":{"*":["Vis ikke dette igen"]},"Let's Start":{"*":["Lad os starte"]},"Select Browser":{"*":["Vælg browser"]},"Cancel":{"*":["Annuller"]},"Select":{"*":["Vælg"]},"System Default":{"*":["Systemstandard"]},"Default":{"*":["Standard"]},"Please select a browser.":{"*":["Vælg venligst en browser."]},"Error":{"*":["Fejl"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Tilføj WebApp"]},"Choose from templates":{"*":["Vælg fra skabeloner"]},"URL":{"*":["URL"]},"Detect":{"*":["Registrer"]},"Detect name and icon from website":{"*":["Registrer navn og ikon fra hjemmeside"]},"Name":{"*":["Navn"]},"App Icon":{"*":["App-ikon"]},"Select icon for the WebApp":{"*":["Vælg ikon til WebApp"]},"Available Icons":{"*":["Tilgængelige ikoner"]},"Category":{"*":["Kategori"]},"Application Mode":{"*":["Applikationsmode"]},"Opens as a native window without browser interface":{"*":["Åbner som et native vindue uden browsergrænseflade"]},"Browser":{"*":["Browser"]},"Profile Settings":{"*":["Profilindstillinger"]},"Configure a separate browser profile for this webapp":{"*":["Konfigurer en separat browserprofil til denne webapp"]},"Use separate profile":{"*":["Brug separat profil"]},"Allows independent cookies and sessions":{"*":["Tillader uafhængige cookies og sessioner"]},"Profile Name":{"*":["Profilnavn"]},"Save":{"*":["Gem"]},"Loading...":{"*":["Indlæser..."]},"Detecting website information, please wait":{"*":["Registrerer webstedoplysninger, vent venligst"]},"Please enter a URL first.":{"*":["Indtast venligst en URL først."]},"Please enter a name for the WebApp.":{"*":["Indtast venligst et navn til WebApp'en."]},"Please enter a URL for the WebApp.":{"*":["Indtast venligst en URL til WebApp'en."]},"Please select a browser for the WebApp.":{"*":["Vælg en browser til WebApp'en."]},"WebApps Manager":{"*":["WebApps Manager"]},"Search WebApps":{"*":["Søg WebApps"]},"Main Menu":{"*":["Hovedmenu"]},"Refresh":{"*":["Opdater"]},"Export WebApps":{"*":["Eksporter WebApps"]},"Import WebApps":{"*":["Importer WebApps"]},"Browse Applications Folder":{"*":["Gennemse applikationsmappe"]},"Browse Profiles Folder":{"*":["Gennemse profiler-mappe"]},"Show Welcome Screen":{"*":["Vis visningsskærm"]},"Remove All WebApps":{"*":["Fjern alle webapps"]},"About":{"*":["Om"]},"Add":{"*":["Tilføj"]},"No WebApps Found":{"*":["Ingen WebApps fundet"]},"Add a new webapp to get started":{"*":["Tilføj en ny webapp for at komme i gang"]},"WebApp created successfully":{"*":["WebApp oprettet med succes"]},"WebApp updated successfully":{"*":["WebApp opdateret med succes"]},"Browser changed to {0}":{"*":["Browser ændret til {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Er du sikker på, at du vil slette {0}?\n\nURL: {1} \nBrowser: {2}"]},"Also delete configuration folder":{"*":["Slet også konfigurationsmappen."]},"Delete":{"*":["Slet"]},"WebApp deleted successfully":{"*":["WebApp slettet med succes"]},"REMOVE ALL":{"*":["FJERN ALT"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Er du sikker på, at du vil fjerne alle dine WebApps? Denne handling kan ikke fortrydes.\n\nSkriv \"{0}\" for at bekræfte."]},"Remove All":{"*":["Fjern alt"]},"All WebApps have been removed":{"*":["Alle WebApps er blevet fjernet."]},"Failed to remove all WebApps":{"*":["Kunne ikke fjerne alle WebApps"]},"Icon {0} of {1}":{"*":["Ikon {0} af {1}"]},"WebApps exported successfully":{"*":["WebApps eksporteret med succes"]},"No WebApps":{"*":["Ingen WebApps"]},"There are no WebApps to export.":{"*":["Der er ingen WebApps at eksportere."]},"The selected file does not exist.":{"*":["Den valgte fil findes ikke."]},"The selected file is not a valid ZIP archive.":{"*":["Den valgte fil er ikke et gyldigt ZIP-arkiv."]},"Error importing WebApps":{"*":["Fejl ved import af WebApps"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["Importerede {} WebApps med succes ({} dubletter sprunget over)"]},"Imported {} WebApps successfully":{"*":["Importerede {} WebApps med succes"]},"No":{"*":["Ne"]},"Yes":{"*":["Ja"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/da.po b/biglinux-webapps/locale/da.po index fbac4b40..ce1b73d9 100644 --- a/biglinux-webapps/locale/da.po +++ b/biglinux-webapps/locale/da.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the biglinux-webapps package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" "Project-Id-Version: biglinux-webapps\n" @@ -14,441 +14,749 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Skabeloner" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Vælg en skabelon" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Søg skabeloner..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 -msgid "Search templates" -msgstr "Søg skabeloner" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Søgeresultater" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Ingen skabeloner fundet" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 -#, python-brace-format -msgid "Browser: {0}" -msgstr "Browser: {0}" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Rediger WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 -#, python-brace-format -msgid "Edit {0}" -msgstr "Rediger {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Slet WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 -#, python-brace-format -msgid "Delete {0}" -msgstr "Slet {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:20 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Velkommen til WebApps Manager" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 -msgid "" -"What are WebApps?\n" -"\n" -"WebApps are web applications that run in a dedicated browser window, providing a more app-like " -"experience for your favorite websites.\n" -"\n" -"Benefits of using WebApps:\n" -"\n" -"• Focus: Work without the distractions of other browser tabs\n" -"• Desktop Integration: Quick access from your application menu\n" -"• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" -msgstr "" -"Hvad er WebApps?\n" -"\n" -"WebApps er webapplikationer, der kører i et dedikeret browservindue og giver en mere app-lignende " -"oplevelse for dine yndlingswebsteder.\n" -"\n" -"Fordele ved at bruge WebApps:\n" -"\n" -"• Fokus: Arbejd uden distraktioner fra andre browsertabs\n" -"• Desktopintegration: Hurtig adgang fra din applikationsmenu\n" -"• Isolerede profiler: Valgfrit kan hver webapp have sine egne cookies og indstillinger\n" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Vis ikke dette igen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Lad os starte" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Vælg browser" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:99 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:225 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:291 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Annuller" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Vælg" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 -msgid "System Default" -msgstr "Systemstandard" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 -msgid "Default" -msgstr "Standard" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 -msgid "Please select a browser." -msgstr "Vælg venligst en browser." -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 -msgid "Error" -msgstr "Fejl" -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "OK" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Tilføj WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 -msgid "Choose from templates" -msgstr "Vælg fra skabeloner" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 -msgid "Detect" -msgstr "Registrer" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Registrer navn og ikon fra hjemmeside" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Navn" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 -msgid "App Icon" -msgstr "App-ikon" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 -msgid "Select icon for the WebApp" -msgstr "Vælg ikon til WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 -msgid "Available Icons" -msgstr "Tilgængelige ikoner" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Kategori" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 -msgid "Application Mode" -msgstr "Applikationsmode" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Åbner som et native vindue uden browsergrænseflade" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 +#. -- Browser row (hidden in app mode) -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Browser" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 -msgid "Profile Settings" -msgstr "Profilindstillinger" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 -msgid "Configure a separate browser profile for this webapp" -msgstr "Konfigurer en separat browserprofil til denne webapp" -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -msgid "Use separate profile" -msgstr "Brug separat profil" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Tillader uafhængige cookies og sessioner" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Profilnavn" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Gem" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Indlæser..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 -msgid "Detecting website information, please wait" -msgstr "Registrerer webstedoplysninger, vent venligst" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 -msgid "Please enter a URL first." -msgstr "Indtast venligst en URL først." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 -msgid "Please enter a name for the WebApp." -msgstr "Indtast venligst et navn til WebApp'en." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 -msgid "Please enter a URL for the WebApp." -msgstr "Indtast venligst en URL til WebApp'en." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 -msgid "Please select a browser for the WebApp." -msgstr "Vælg en browser til WebApp'en." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "WebApps Manager" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Søg WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 -msgid "Main Menu" -msgstr "Hovedmenu" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 -msgid "Refresh" -msgstr "Opdater" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Eksporter WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Importer WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Gennemse applikationsmappe" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Gennemse profiler-mappe" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 -msgid "Show Welcome Screen" -msgstr "Vis visningsskærm" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Fjern alle webapps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "Om" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 -msgid "Add" -msgstr "Tilføj" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 -msgid "No WebApps Found" -msgstr "Ingen WebApps fundet" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Tilføj en ny webapp for at komme i gang" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "WebApp oprettet med succes" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "WebApp opdateret med succes" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 -#, python-brace-format -msgid "Browser changed to {0}" -msgstr "Browser ændret til {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 -#, python-brace-format -msgid "" -"Are you sure you want to delete {0}?\n" -"\n" -"URL: {1}\n" -"Browser: {2}" -msgstr "" -"Er du sikker på, at du vil slette {0}?\n" -"\n" -"URL: {1} \n" -"Browser: {2}" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Slet også konfigurationsmappen." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Slet" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "WebApp slettet med succes" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 -msgid "REMOVE ALL" -msgstr "FJERN ALT" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 -#, python-brace-format -msgid "" -"Are you sure you want to remove all your WebApps? This action cannot be undone.\n" -"\n" -"Type \"{0}\" to confirm." -msgstr "" -"Er du sikker på, at du vil fjerne alle dine WebApps? Denne handling kan ikke fortrydes.\n" -"\n" -"Skriv \"{0}\" for at bekræfte." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Fjern alt" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Alle WebApps er blevet fjernet." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Kunne ikke fjerne alle WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 -#, python-brace-format -msgid "Icon {0} of {1}" -msgstr "Ikon {0} af {1}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebApps eksporteret med succes" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Ingen WebApps" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 +msgid "Change browser" +msgstr "Skift browser" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 +msgid "Edit" +msgstr "Rediger" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 +msgid "New WebApp" +msgstr "Ny WebApp" + +#. -- Icon row -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 +msgid "Icon" +msgstr "Ikon" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 +msgid "App Mode" +msgstr "App-tilstand" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 +msgid "Separate Profile" +msgstr "Separat profil" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 +msgid "Select Icon" +msgstr "Vælg ikon" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 +msgid "Images" +msgstr "Billeder" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 +msgid "ZIP files" +msgstr "ZIP-filer" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 +#, rust-format +msgid "Imported {imported}, skipped {dups} duplicates" +msgstr "Importeret {imported}, sprunget over {dups} dubletter" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 +msgid "Import failed" +msgstr "Import mislykkedes" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 +msgid "Export failed" +msgstr "Eksport mislykkedes" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 +msgid "" +"This will delete all webapps and their desktop entries. This cannot be " +"undone." +msgstr "" +"Dette vil slette alle webapps og deres skrivebordsgenveje. Dette kan ikke " +"fortrydes." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 +msgid "Browser changed" +msgstr "Browser ændret" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 +msgid "What are WebApps?" +msgstr "Hvad er WebApps?" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 +msgid "" +"WebApps are web applications that run in a dedicated browser window, " +"providing a more app-like experience for your favorite websites." +msgstr "" +"WebApps er webapplikationer, der kører i et dedikeret browservindue og giver" +" en mere app-lignende oplevelse for dine yndlingswebsteder." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 +msgid "Benefits of using WebApps:" +msgstr "Fordele ved at bruge WebApps:" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Focus" +msgstr "Fokus" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Work without the distractions of other browser tabs" +msgstr "Arbejd uden forstyrrelser fra andre browsertabs" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Desktop Integration" +msgstr "Desktopintegration" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Quick access from your application menu" +msgstr "Hurtig adgang fra din applikationsmenu" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Isolated Profiles" +msgstr "Isolerede profiler" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Each webapp can have its own cookies and settings" +msgstr "Hver webapp kan have sine egne cookies og indstillinger" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 +msgid "Back" +msgstr "Tilbage" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 +msgid "Forward" +msgstr "Frem" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 +msgid "Reload" +msgstr "Genindlæs" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 +msgid "Fullscreen" +msgstr "Fuld skærm" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 +msgid "Enter URL…" +msgstr "Indtast URL…" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 +msgid "Zoom In" +msgstr "Zoom ind" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 +msgid "Zoom Out" +msgstr "Zoom ud" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 +msgid "Reset Zoom" +msgstr "Nulstil Zoom" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 +msgid "Developer Tools" +msgstr "Udviklerværktøjer" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 +msgid "Menu" +msgstr "Menu" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 +msgid "Open Link in Browser" +msgstr "Åbn link i browser" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 +msgid "Download Complete" +msgstr "Download fuldført" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 +msgid "Save File" +msgstr "Gem fil" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 +#~ msgid "Search templates" +#~ msgstr "Søg skabeloner" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 +#, python-brace-format +#~ msgid "Browser: {0}" +#~ msgstr "Browser: {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 +#, python-brace-format +#~ msgid "Edit {0}" +#~ msgstr "Rediger {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 +#, python-brace-format +#~ msgid "Delete {0}" +#~ msgstr "Slet {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 +#~ msgid "" +#~ "What are WebApps?\n" +#~ "\n" +#~ "WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n" +#~ "\n" +#~ "Benefits of using WebApps:\n" +#~ "\n" +#~ "• Focus: Work without the distractions of other browser tabs\n" +#~ "• Desktop Integration: Quick access from your application menu\n" +#~ "• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" +#~ msgstr "" +#~ "Hvad er WebApps?\n" +#~ "\n" +#~ "WebApps er webapplikationer, der kører i et dedikeret browservindue og giver en mere app-lignende oplevelse for dine yndlingswebsteder.\n" +#~ "\n" +#~ "Fordele ved at bruge WebApps:\n" +#~ "\n" +#~ "• Fokus: Arbejd uden distraktioner fra andre browsertabs\n" +#~ "• Desktopintegration: Hurtig adgang fra din applikationsmenu\n" +#~ "• Isolerede profiler: Valgfrit kan hver webapp have sine egne cookies og indstillinger\n" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 +#~ msgid "System Default" +#~ msgstr "Systemstandard" + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 -msgid "There are no WebApps to export." -msgstr "Der er ingen WebApps at eksportere." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 -msgid "The selected file does not exist." -msgstr "Den valgte fil findes ikke." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 -msgid "The selected file is not a valid ZIP archive." -msgstr "Den valgte fil er ikke et gyldigt ZIP-arkiv." +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 -msgid "Error importing WebApps" -msgstr "Fejl ved import af WebApps" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 +#~ msgid "Default" +#~ msgstr "Standard" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 +#~ msgid "Please select a browser." +#~ msgstr "Vælg venligst en browser." + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 -msgid "Imported {} WebApps successfully ({} duplicates skipped)" -msgstr "Importerede {} WebApps med succes ({} dubletter sprunget over)" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 +#~ msgid "Error" +#~ msgstr "Fejl" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 +#~ msgid "Choose from templates" +#~ msgstr "Vælg fra skabeloner" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 +#~ msgid "Detect" +#~ msgstr "Registrer" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 +#~ msgid "App Icon" +#~ msgstr "App-ikon" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 +#~ msgid "Select icon for the WebApp" +#~ msgstr "Vælg ikon til WebApp" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 +#~ msgid "Available Icons" +#~ msgstr "Tilgængelige ikoner" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 +#~ msgid "Application Mode" +#~ msgstr "Applikationsmode" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 +#~ msgid "Profile Settings" +#~ msgstr "Profilindstillinger" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 +#~ msgid "Configure a separate browser profile for this webapp" +#~ msgstr "Konfigurer en separat browserprofil til denne webapp" + +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 -msgid "Imported {} WebApps successfully" -msgstr "Importerede {} WebApps med succes" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 -msgid "No" -msgstr "Ne" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 -msgid "Yes" -msgstr "Ja" +#~ msgid "Use separate profile" +#~ msgstr "Brug separat profil" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 +#~ msgid "Detecting website information, please wait" +#~ msgstr "Registrerer webstedoplysninger, vent venligst" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 +#~ msgid "Please enter a URL first." +#~ msgstr "Indtast venligst en URL først." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 +#~ msgid "Please enter a name for the WebApp." +#~ msgstr "Indtast venligst et navn til WebApp'en." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 +#~ msgid "Please enter a URL for the WebApp." +#~ msgstr "Indtast venligst en URL til WebApp'en." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 +#~ msgid "Please select a browser for the WebApp." +#~ msgstr "Vælg en browser til WebApp'en." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 +#~ msgid "Main Menu" +#~ msgstr "Hovedmenu" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 +#~ msgid "Refresh" +#~ msgstr "Opdater" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 +#~ msgid "Show Welcome Screen" +#~ msgstr "Vis visningsskærm" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 +#~ msgid "Add" +#~ msgstr "Tilføj" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 +#~ msgid "No WebApps Found" +#~ msgstr "Ingen WebApps fundet" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 +#, python-brace-format +#~ msgid "Browser changed to {0}" +#~ msgstr "Browser ændret til {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to delete {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Browser: {2}" +#~ msgstr "" +#~ "Er du sikker på, at du vil slette {0}?\n" +#~ "\n" +#~ "URL: {1} \n" +#~ "Browser: {2}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 +#~ msgid "REMOVE ALL" +#~ msgstr "FJERN ALT" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to remove all your WebApps? This action cannot be undone.\n" +#~ "\n" +#~ "Type \"{0}\" to confirm." +#~ msgstr "" +#~ "Er du sikker på, at du vil fjerne alle dine WebApps? Denne handling kan ikke fortrydes.\n" +#~ "\n" +#~ "Skriv \"{0}\" for at bekræfte." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 +#, python-brace-format +#~ msgid "Icon {0} of {1}" +#~ msgstr "Ikon {0} af {1}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#~ msgid "There are no WebApps to export." +#~ msgstr "Der er ingen WebApps at eksportere." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 +#~ msgid "The selected file does not exist." +#~ msgstr "Den valgte fil findes ikke." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 +#~ msgid "The selected file is not a valid ZIP archive." +#~ msgstr "Den valgte fil er ikke et gyldigt ZIP-arkiv." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 +#~ msgid "Error importing WebApps" +#~ msgstr "Fejl ved import af WebApps" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 +#~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" +#~ msgstr "Importerede {} WebApps med succes ({} dubletter sprunget over)" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 +#~ msgid "Imported {} WebApps successfully" +#~ msgstr "Importerede {} WebApps med succes" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 +#~ msgid "No" +#~ msgstr "Ne" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 +#~ msgid "Yes" +#~ msgstr "Ja" diff --git a/biglinux-webapps/locale/de.json b/biglinux-webapps/locale/de.json deleted file mode 100644 index e51216e3..00000000 --- a/biglinux-webapps/locale/de.json +++ /dev/null @@ -1 +0,0 @@ -{"biglinux-webapps/biglinux-webapps":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Vorlagen"]},"Choose a Template":{"*":["Wählen Sie eine Vorlage"]},"Search templates...":{"*":["Vorlagen suchen..."]},"Search templates":{"*":["Suchvorlagen"]},"Search Results":{"*":["Suchergebnisse"]},"No templates found":{"*":["Keine Vorlagen gefunden"]},"Browser: {0}":{"*":["Browser: {0}"]},"Edit WebApp":{"*":["WebApp bearbeiten"]},"Edit {0}":{"*":["Bearbeiten {0}"]},"Delete WebApp":{"*":["WebApp löschen"]},"Delete {0}":{"*":["Löschen {0}"]},"Welcome to WebApps Manager":{"*":["Willkommen bei WebApps-Manager"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Was sind WebApps?\n\nWebApps sind Webanwendungen, die in einem dedizierten Browser-Fenster ausgeführt werden und eine App-ähnliche Erfahrung für Ihre bevorzugten Websites bieten.\n\nVorteile der Verwendung von WebApps:\n\n• Fokus: Arbeiten ohne die Ablenkungen durch andere Browser-Tabs\n• Desktop-Integration: Schneller Zugriff über Ihr Anwendungsmenü\n• Isolierte Profile: Optional kann jede WebApp ihre eigenen Cookies und Einstellungen haben\n"]},"Don't show this again":{"*":["Zeige dies nicht erneut"]},"Let's Start":{"*":["Lassen Sie uns beginnen"]},"Select Browser":{"*":["Browser auswählen"]},"Cancel":{"*":["Abbrechen"]},"Select":{"*":["Auswählen"]},"System Default":{"*":["System-Default"]},"Default":{"*":["Default"]},"Please select a browser.":{"*":["Bitte wählen Sie einen Browser aus."]},"Error":{"*":["Fehler"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["WebApp hinzufügen"]},"Choose from templates":{"*":["Wählen Sie aus Vorlagen"]},"URL":{"*":["URL"]},"Detect":{"*":["Erkennen"]},"Detect name and icon from website":{"*":["Name und Icon von Website erkennen"]},"Name":{"*":["Name"]},"App Icon":{"*":["App-Icon"]},"Select icon for the WebApp":{"*":["Icon für die WebApp aus.wählen"]},"Available Icons":{"*":["Verfügbare Icons"]},"Category":{"*":["Kategorie"]},"Application Mode":{"*":["Anwendungsmodus"]},"Opens as a native window without browser interface":{"*":["Öffnet sich als natives Fenster ohne Browseroberfläche"]},"Browser":{"*":["Browser"]},"Profile Settings":{"*":["Profile-Einstellungen"]},"Configure a separate browser profile for this webapp":{"*":["Konfigurieren Sie ein separates Browserprofil für diese Webanwendung."]},"Use separate profile":{"*":["Separates Profil verwenden"]},"Allows independent cookies and sessions":{"*":["Erlaubt unabhängige Cookies und Sitzungen"]},"Profile Name":{"*":["Profilname"]},"Save":{"*":["Speichern"]},"Loading...":{"*":["Laden ..."]},"Detecting website information, please wait":{"*":["Websiteinformationen werden erkannt, bitte warten."]},"Please enter a URL first.":{"*":["Bitte geben Sie zuerst eine URL ein."]},"Please enter a name for the WebApp.":{"*":["Bitte geben Sie einen Name für die WebApp ein."]},"Please enter a URL for the WebApp.":{"*":["Bitte geben Sie eine URL für die WebApp ein."]},"Please select a browser for the WebApp.":{"*":["Bitte wählen Sie einen Browser für die WebApp aus."]},"WebApps Manager":{"*":["WebApps-Manager"]},"Search WebApps":{"*":["WebApps suchen"]},"Main Menu":{"*":["Hauptmenü"]},"Refresh":{"*":["Aktualisieren"]},"Export WebApps":{"*":["WebApps exportieren"]},"Import WebApps":{"*":["WebApps importieren"]},"Browse Applications Folder":{"*":["Ordner „Anwendungen“ durchsuchen"]},"Browse Profiles Folder":{"*":["Ordner „Profile“ durchsuchen"]},"Show Welcome Screen":{"*":["Willkommensbildschirm zeigen"]},"Remove All WebApps":{"*":["Alle WebApps entfernen"]},"About":{"*":["Über"]},"Add":{"*":["Hinzufügen"]},"No WebApps Found":{"*":["Keine WebApps gefunden"]},"Add a new webapp to get started":{"*":["Fügen Sie eine neue WebApp hinzu, um zu beginnen"]},"WebApp created successfully":{"*":["WebApp erfolgreich erstellt"]},"WebApp updated successfully":{"*":["WebApp erfolgreich aktualisiert"]},"Browser changed to {0}":{"*":["Browser geändert in {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Sind Sie sicher, dass Sie {0} löschen möchten?\n\nURL: {1}\nBrowser: {2}"]},"Also delete configuration folder":{"*":["Auch Konfigurationsordner löschen"]},"Delete":{"*":["Löschen"]},"WebApp deleted successfully":{"*":["WebApp erfolgreich gelöscht"]},"REMOVE ALL":{"*":["ALLE ENTFERNEN"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Sind Sie sicher, dass Sie alle Ihre WebApps entfernen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\n\nGeben Sie \"{0}\" ein, um zu bestätigen."]},"Remove All":{"*":["Alles entfernen"]},"All WebApps have been removed":{"*":["Alle WebApps sind entfernt worden"]},"Failed to remove all WebApps":{"*":["Alle WebApps konnten nicht entfernt werden"]},"Icon {0} of {1}":{"*":["Symbol {0} von {1}"]},"WebApps exported successfully":{"*":["WebApps erfolgreich exportiert"]},"No WebApps":{"*":["Keine WebApps"]},"There are no WebApps to export.":{"*":["Es gibt keine zu exportierenden WebApps."]},"The selected file does not exist.":{"*":["Die ausgewählte Datei ist nicht vorhanden."]},"The selected file is not a valid ZIP archive.":{"*":["Die ausgewählte Datei ist kein gültiges ZIP-Archiv."]},"Error importing WebApps":{"*":["Fehler beim Importieren von WebApps"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["{} WebApps erfolgreich importiert ({} Duplikate übersprungen)"]},"Imported {} WebApps successfully":{"*":["{} WebApps erfolgreich importiert"]},"No":{"*":["Nein"]},"Yes":{"*":["Ja"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/de.po b/biglinux-webapps/locale/de.po index 418dbc6c..6deb0f2b 100644 --- a/biglinux-webapps/locale/de.po +++ b/biglinux-webapps/locale/de.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the biglinux-webapps package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" "Project-Id-Version: biglinux-webapps\n" @@ -14,442 +14,749 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Vorlagen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Wählen Sie eine Vorlage" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Vorlagen suchen..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 -msgid "Search templates" -msgstr "Suchvorlagen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Suchergebnisse" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Keine Vorlagen gefunden" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 -#, python-brace-format -msgid "Browser: {0}" -msgstr "Browser: {0}" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "WebApp bearbeiten" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 -#, python-brace-format -msgid "Edit {0}" -msgstr "Bearbeiten {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "WebApp löschen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 -#, python-brace-format -msgid "Delete {0}" -msgstr "Löschen {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:20 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Willkommen bei WebApps-Manager" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 -msgid "" -"What are WebApps?\n" -"\n" -"WebApps are web applications that run in a dedicated browser window, providing a more app-like " -"experience for your favorite websites.\n" -"\n" -"Benefits of using WebApps:\n" -"\n" -"• Focus: Work without the distractions of other browser tabs\n" -"• Desktop Integration: Quick access from your application menu\n" -"• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" -msgstr "" -"Was sind WebApps?\n" -"\n" -"WebApps sind Webanwendungen, die in einem dedizierten Browser-Fenster ausgeführt werden und eine " -"App-ähnliche Erfahrung für Ihre bevorzugten Websites bieten.\n" -"\n" -"Vorteile der Verwendung von WebApps:\n" -"\n" -"• Fokus: Arbeiten ohne die Ablenkungen durch andere Browser-Tabs\n" -"• Desktop-Integration: Schneller Zugriff über Ihr Anwendungsmenü\n" -"• Isolierte Profile: Optional kann jede WebApp ihre eigenen Cookies und Einstellungen haben\n" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Zeige dies nicht erneut" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 151 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 151 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Lassen Sie uns beginnen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Browser auswählen" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:99 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:225 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:291 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Abbrechen" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Auswählen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 175 -msgid "System Default" -msgstr "System-Default" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 -msgid "Default" -msgstr "Default" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 -msgid "Please select a browser." -msgstr "Bitte wählen Sie einen Browser aus." -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 -msgid "Error" -msgstr "Fehler" -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "OK" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "WebApp hinzufügen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 -msgid "Choose from templates" -msgstr "Wählen Sie aus Vorlagen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 -msgid "Detect" -msgstr "Erkennen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Name und Icon von Website erkennen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Name" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 -msgid "App Icon" -msgstr "App-Icon" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 -msgid "Select icon for the WebApp" -msgstr "Icon für die WebApp aus.wählen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 -msgid "Available Icons" -msgstr "Verfügbare Icons" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Kategorie" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 -msgid "Application Mode" -msgstr "Anwendungsmodus" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Öffnet sich als natives Fenster ohne Browseroberfläche" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 +#. -- Browser row (hidden in app mode) -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Browser" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 -msgid "Profile Settings" -msgstr "Profile-Einstellungen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 -msgid "Configure a separate browser profile for this webapp" -msgstr "Konfigurieren Sie ein separates Browserprofil für diese Webanwendung." -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -msgid "Use separate profile" -msgstr "Separates Profil verwenden" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Erlaubt unabhängige Cookies und Sitzungen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Profilname" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Speichern" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Laden ..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 -msgid "Detecting website information, please wait" -msgstr "Websiteinformationen werden erkannt, bitte warten." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 -msgid "Please enter a URL first." -msgstr "Bitte geben Sie zuerst eine URL ein." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 -msgid "Please enter a name for the WebApp." -msgstr "Bitte geben Sie einen Name für die WebApp ein." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 -msgid "Please enter a URL for the WebApp." -msgstr "Bitte geben Sie eine URL für die WebApp ein." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 -msgid "Please select a browser for the WebApp." -msgstr "Bitte wählen Sie einen Browser für die WebApp aus." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "WebApps-Manager" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "WebApps suchen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 -msgid "Main Menu" -msgstr "Hauptmenü" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 77 -msgid "Refresh" -msgstr "Aktualisieren" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 78 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 78 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "WebApps exportieren" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "WebApps importieren" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 82 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 82 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Ordner „Anwendungen“ durchsuchen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 83 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 83 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Ordner „Profile“ durchsuchen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 -msgid "Show Welcome Screen" -msgstr "Willkommensbildschirm zeigen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 88 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 410 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 88 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 410 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Alle WebApps entfernen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 89 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 89 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "Über" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 -msgid "Add" -msgstr "Hinzufügen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 -msgid "No WebApps Found" -msgstr "Keine WebApps gefunden" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Fügen Sie eine neue WebApp hinzu, um zu beginnen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "WebApp erfolgreich erstellt" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "WebApp erfolgreich aktualisiert" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 -#, python-brace-format -msgid "Browser changed to {0}" -msgstr "Browser geändert in {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 -#, python-brace-format -msgid "" -"Are you sure you want to delete {0}?\n" -"\n" -"URL: {1}\n" -"Browser: {2}" -msgstr "" -"Sind Sie sicher, dass Sie {0} löschen möchten?\n" -"\n" -"URL: {1}\n" -"Browser: {2}" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Auch Konfigurationsordner löschen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Löschen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "WebApp erfolgreich gelöscht" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 -msgid "REMOVE ALL" -msgstr "ALLE ENTFERNEN" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 -#, python-brace-format -msgid "" -"Are you sure you want to remove all your WebApps? This action cannot be undone.\n" -"\n" -"Type \"{0}\" to confirm." -msgstr "" -"Sind Sie sicher, dass Sie alle Ihre WebApps entfernen möchten? Diese Aktion kann nicht rückgängig " -"gemacht werden.\n" -"\n" -"Geben Sie \"{0}\" ein, um zu bestätigen." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Alles entfernen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 464 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 464 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Alle WebApps sind entfernt worden" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 466 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 466 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Alle WebApps konnten nicht entfernt werden" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 -#, python-brace-format -msgid "Icon {0} of {1}" -msgstr "Symbol {0} von {1}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebApps erfolgreich exportiert" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Keine WebApps" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 +msgid "Change browser" +msgstr "Browser wechseln" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 +msgid "Edit" +msgstr "Bearbeiten" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 +msgid "New WebApp" +msgstr "Neue WebApp" + +#. -- Icon row -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 +msgid "Icon" +msgstr "Symbol" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 +msgid "App Mode" +msgstr "App-Modus" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 +msgid "Separate Profile" +msgstr "Getrenntes Profil" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 +msgid "Select Icon" +msgstr "Symbol auswählen" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 +msgid "Images" +msgstr "Bilder" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 +msgid "ZIP files" +msgstr "ZIP-Dateien" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 +#, rust-format +msgid "Imported {imported}, skipped {dups} duplicates" +msgstr "Importiert {imported}, übersprungene {dups} Duplikate" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 +msgid "Import failed" +msgstr "Import fehlgeschlagen" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 +msgid "Export failed" +msgstr "Export fehlgeschlagen" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 +msgid "" +"This will delete all webapps and their desktop entries. This cannot be " +"undone." +msgstr "" +"Dadurch werden alle Webapps und deren Desktop-Einträge gelöscht. Dies kann " +"nicht rückgängig gemacht werden." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 +msgid "Browser changed" +msgstr "Browser geändert" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 +msgid "What are WebApps?" +msgstr "Was sind WebApps?" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 +msgid "" +"WebApps are web applications that run in a dedicated browser window, " +"providing a more app-like experience for your favorite websites." +msgstr "" +"WebApps sind Webanwendungen, die in einem eigenen Browserfenster laufen und " +"ein app-ähnlicheres Erlebnis für Ihre Lieblingswebsites bieten." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 +msgid "Benefits of using WebApps:" +msgstr "Vorteile der Verwendung von WebApps:" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Focus" +msgstr "Fokus" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Work without the distractions of other browser tabs" +msgstr "Arbeiten ohne Ablenkung durch andere Browser-Tabs" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Desktop Integration" +msgstr "Desktop-Integration" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Quick access from your application menu" +msgstr "Schneller Zugriff über Ihr Anwendungsmenü" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Isolated Profiles" +msgstr "Isolierte Profile" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Each webapp can have its own cookies and settings" +msgstr "Jede WebApp kann eigene Cookies und Einstellungen haben" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 +msgid "Back" +msgstr "Zurück" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 +msgid "Forward" +msgstr "Vorwärts" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 +msgid "Reload" +msgstr "Neu laden" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 +msgid "Fullscreen" +msgstr "Vollbild" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 +msgid "Enter URL…" +msgstr "URL eingeben…" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 +msgid "Zoom In" +msgstr "Vergrößern" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 +msgid "Zoom Out" +msgstr "Verkleinern" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 +msgid "Reset Zoom" +msgstr "Zoom zurücksetzen" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 +msgid "Developer Tools" +msgstr "Entwicklerwerkzeuge" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 +msgid "Menu" +msgstr "Menü" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 +msgid "Open Link in Browser" +msgstr "Link im Browser öffnen" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 +msgid "Download Complete" +msgstr "Download abgeschlossen" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 +msgid "Save File" +msgstr "Datei speichern" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 +#~ msgid "Search templates" +#~ msgstr "Suchvorlagen" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 +#, python-brace-format +#~ msgid "Browser: {0}" +#~ msgstr "Browser: {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 +#, python-brace-format +#~ msgid "Edit {0}" +#~ msgstr "Bearbeiten {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 +#, python-brace-format +#~ msgid "Delete {0}" +#~ msgstr "Löschen {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 +#~ msgid "" +#~ "What are WebApps?\n" +#~ "\n" +#~ "WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n" +#~ "\n" +#~ "Benefits of using WebApps:\n" +#~ "\n" +#~ "• Focus: Work without the distractions of other browser tabs\n" +#~ "• Desktop Integration: Quick access from your application menu\n" +#~ "• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" +#~ msgstr "" +#~ "Was sind WebApps?\n" +#~ "\n" +#~ "WebApps sind Webanwendungen, die in einem dedizierten Browser-Fenster ausgeführt werden und eine App-ähnliche Erfahrung für Ihre bevorzugten Websites bieten.\n" +#~ "\n" +#~ "Vorteile der Verwendung von WebApps:\n" +#~ "\n" +#~ "• Fokus: Arbeiten ohne die Ablenkungen durch andere Browser-Tabs\n" +#~ "• Desktop-Integration: Schneller Zugriff über Ihr Anwendungsmenü\n" +#~ "• Isolierte Profile: Optional kann jede WebApp ihre eigenen Cookies und Einstellungen haben\n" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 175 +#~ msgid "System Default" +#~ msgstr "System-Default" + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 -msgid "There are no WebApps to export." -msgstr "Es gibt keine zu exportierenden WebApps." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 -msgid "The selected file does not exist." -msgstr "Die ausgewählte Datei ist nicht vorhanden." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 -msgid "The selected file is not a valid ZIP archive." -msgstr "Die ausgewählte Datei ist kein gültiges ZIP-Archiv." +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 -msgid "Error importing WebApps" -msgstr "Fehler beim Importieren von WebApps" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 +#~ msgid "Default" +#~ msgstr "Default" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 +#~ msgid "Please select a browser." +#~ msgstr "Bitte wählen Sie einen Browser aus." + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 -msgid "Imported {} WebApps successfully ({} duplicates skipped)" -msgstr "{} WebApps erfolgreich importiert ({} Duplikate übersprungen)" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 +#~ msgid "Error" +#~ msgstr "Fehler" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 +#~ msgid "Choose from templates" +#~ msgstr "Wählen Sie aus Vorlagen" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 +#~ msgid "Detect" +#~ msgstr "Erkennen" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 +#~ msgid "App Icon" +#~ msgstr "App-Icon" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 +#~ msgid "Select icon for the WebApp" +#~ msgstr "Icon für die WebApp aus.wählen" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 +#~ msgid "Available Icons" +#~ msgstr "Verfügbare Icons" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 +#~ msgid "Application Mode" +#~ msgstr "Anwendungsmodus" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 +#~ msgid "Profile Settings" +#~ msgstr "Profile-Einstellungen" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 +#~ msgid "Configure a separate browser profile for this webapp" +#~ msgstr "Konfigurieren Sie ein separates Browserprofil für diese Webanwendung." + +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 -msgid "Imported {} WebApps successfully" -msgstr "{} WebApps erfolgreich importiert" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 -msgid "No" -msgstr "Nein" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 -msgid "Yes" -msgstr "Ja" +#~ msgid "Use separate profile" +#~ msgstr "Separates Profil verwenden" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 +#~ msgid "Detecting website information, please wait" +#~ msgstr "Websiteinformationen werden erkannt, bitte warten." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 +#~ msgid "Please enter a URL first." +#~ msgstr "Bitte geben Sie zuerst eine URL ein." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 +#~ msgid "Please enter a name for the WebApp." +#~ msgstr "Bitte geben Sie einen Name für die WebApp ein." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 +#~ msgid "Please enter a URL for the WebApp." +#~ msgstr "Bitte geben Sie eine URL für die WebApp ein." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 +#~ msgid "Please select a browser for the WebApp." +#~ msgstr "Bitte wählen Sie einen Browser für die WebApp aus." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 +#~ msgid "Main Menu" +#~ msgstr "Hauptmenü" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 77 +#~ msgid "Refresh" +#~ msgstr "Aktualisieren" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 +#~ msgid "Show Welcome Screen" +#~ msgstr "Willkommensbildschirm zeigen" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 +#~ msgid "Add" +#~ msgstr "Hinzufügen" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 +#~ msgid "No WebApps Found" +#~ msgstr "Keine WebApps gefunden" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 +#, python-brace-format +#~ msgid "Browser changed to {0}" +#~ msgstr "Browser geändert in {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to delete {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Browser: {2}" +#~ msgstr "" +#~ "Sind Sie sicher, dass Sie {0} löschen möchten?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Browser: {2}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 +#~ msgid "REMOVE ALL" +#~ msgstr "ALLE ENTFERNEN" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to remove all your WebApps? This action cannot be undone.\n" +#~ "\n" +#~ "Type \"{0}\" to confirm." +#~ msgstr "" +#~ "Sind Sie sicher, dass Sie alle Ihre WebApps entfernen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\n" +#~ "\n" +#~ "Geben Sie \"{0}\" ein, um zu bestätigen." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 +#, python-brace-format +#~ msgid "Icon {0} of {1}" +#~ msgstr "Symbol {0} von {1}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#~ msgid "There are no WebApps to export." +#~ msgstr "Es gibt keine zu exportierenden WebApps." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 +#~ msgid "The selected file does not exist." +#~ msgstr "Die ausgewählte Datei ist nicht vorhanden." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 +#~ msgid "The selected file is not a valid ZIP archive." +#~ msgstr "Die ausgewählte Datei ist kein gültiges ZIP-Archiv." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 +#~ msgid "Error importing WebApps" +#~ msgstr "Fehler beim Importieren von WebApps" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 +#~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" +#~ msgstr "{} WebApps erfolgreich importiert ({} Duplikate übersprungen)" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 +#~ msgid "Imported {} WebApps successfully" +#~ msgstr "{} WebApps erfolgreich importiert" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 +#~ msgid "No" +#~ msgstr "Nein" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 +#~ msgid "Yes" +#~ msgstr "Ja" diff --git a/biglinux-webapps/locale/el.json b/biglinux-webapps/locale/el.json deleted file mode 100644 index 4a2bcf13..00000000 --- a/biglinux-webapps/locale/el.json +++ /dev/null @@ -1 +0,0 @@ -{"el":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Πρότυπα"]},"Choose a Template":{"*":["Επιλέξτε ένα Πρότυπο"]},"Search templates...":{"*":["Αναζήτηση προτύπων..."]},"Search templates":{"*":["Αναζήτηση προτύπων"]},"Search Results":{"*":["Αποτελέσματα Αναζήτησης"]},"No templates found":{"*":["Δεν βρέθηκαν πρότυπα"]},"Browser: {0}":{"*":["Πλοηγός: {0}"]},"Edit WebApp":{"*":["Επεξεργασία WebApp"]},"Edit {0}":{"*":["Επεξεργασία {0}"]},"Delete WebApp":{"*":["Διαγραφή WebApp"]},"Delete {0}":{"*":["Διαγραφή {0}"]},"Welcome to WebApps Manager":{"*":["Καλώς ήρθατε στον Διαχειριστή WebApps"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Τι είναι οι WebApps;\n\nΟι WebApps είναι διαδικτυακές εφαρμογές που εκτελούνται σε ένα ειδικό παράθυρο προγράμματος περιήγησης, παρέχοντας μια πιο εφαρμογή-όμοια εμπειρία για τις αγαπημένες σας ιστοσελίδες.\n\nΟφέλη από τη χρήση WebApps:\n\n• Εστίαση: Εργαστείτε χωρίς τις αποσπάσεις από άλλες καρτέλες του προγράμματος περιήγησης\n• Ενοποίηση Επιφάνειας Εργασίας: Γρήγορη πρόσβαση από το μενού εφαρμογών σας\n• Απομονωμένα Προφίλ: Προαιρετικά, κάθε webapp μπορεί να έχει τα δικά της cookies και ρυθμίσεις\n"]},"Don't show this again":{"*":["Μην το δείξετε ξανά"]},"Let's Start":{"*":["Ας ξεκινήσουμε"]},"Select Browser":{"*":["Επιλέξτε πρόγραμμα περιήγησης"]},"Cancel":{"*":["Ακύρωση"]},"Select":{"*":["Επιλέξτε"]},"System Default":{"*":["Προεπιλογή Συστήματος"]},"Default":{"*":["Προεπιλογή"]},"Please select a browser.":{"*":["Παρακαλώ επιλέξτε έναν περιηγητή."]},"Error":{"*":["Σφάλμα"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Προσθήκη WebApp"]},"Choose from templates":{"*":["Επιλέξτε από πρότυπα"]},"URL":{"*":["Διεύθυνση URL"]},"Detect":{"*":["Ανίχνευση"]},"Detect name and icon from website":{"*":["Ανίχνευση ονόματος και εικονιδίου από τον ιστότοπο"]},"Name":{"*":["Όνομα"]},"App Icon":{"*":["Εικονίδιο εφαρμογής"]},"Select icon for the WebApp":{"*":["Επιλέξτε εικονίδιο για την Εφαρμογή Ιστού"]},"Available Icons":{"*":["Διαθέσιμα Εικονίδια"]},"Category":{"*":["Κατηγορία"]},"Application Mode":{"*":["Λειτουργία Εφαρμογής"]},"Opens as a native window without browser interface":{"*":["Ανοίγει ως εγγενές παράθυρο χωρίς διεπαφή προγράμματος περιήγησης."]},"Browser":{"*":["Πλοηγός"]},"Profile Settings":{"*":["Ρυθμίσεις Προφίλ"]},"Configure a separate browser profile for this webapp":{"*":["Ρυθμίστε ένα ξεχωριστό προφίλ προγράμματος περιήγησης για αυτήν την εφαρμογή ιστού."]},"Use separate profile":{"*":["Χρησιμοποιήστε ξεχωριστό προφίλ"]},"Allows independent cookies and sessions":{"*":["Επιτρέπει ανεξάρτητα cookies και συνεδρίες"]},"Profile Name":{"*":["Όνομα προφίλ"]},"Save":{"*":["Αποθήκευση"]},"Loading...":{"*":["Φόρτωση..."]},"Detecting website information, please wait":{"*":["Ανίχνευση πληροφοριών ιστοσελίδας, παρακαλώ περιμένετε"]},"Please enter a URL first.":{"*":["Παρακαλώ εισάγετε πρώτα μια διεύθυνση URL."]},"Please enter a name for the WebApp.":{"*":["Παρακαλώ εισάγετε ένα όνομα για την Εφαρμογή Ιστού."]},"Please enter a URL for the WebApp.":{"*":["Παρακαλώ εισάγετε μια διεύθυνση URL για την εφαρμογή ιστού."]},"Please select a browser for the WebApp.":{"*":["Παρακαλώ επιλέξτε έναν περιηγητή για την Εφαρμογή Ιστού."]},"WebApps Manager":{"*":["Διαχειριστής WebApps"]},"Search WebApps":{"*":["Αναζήτηση WebApps"]},"Main Menu":{"*":["Κύριο Μενού"]},"Refresh":{"*":["Ανανέωση"]},"Export WebApps":{"*":["Εξαγωγή WebApps"]},"Import WebApps":{"*":["Εισαγωγή WebApps"]},"Browse Applications Folder":{"*":["Περιήγηση στο Φάκελο Εφαρμογών"]},"Browse Profiles Folder":{"*":["Προβολή φακέλου προφίλ"]},"Show Welcome Screen":{"*":["Εμφάνιση Οθόνης Καλωσορίσματος"]},"Remove All WebApps":{"*":["Αφαίρεση όλων των WebApps"]},"About":{"*":["Σχετικά"]},"Add":{"*":["Προσθήκη"]},"No WebApps Found":{"*":["Δεν βρέθηκαν WebApps"]},"Add a new webapp to get started":{"*":["Προσθέστε μια νέα διαδικτυακή εφαρμογή για να ξεκινήσετε"]},"WebApp created successfully":{"*":["Η εφαρμογή Web δημιουργήθηκε με επιτυχία"]},"WebApp updated successfully":{"*":["Η εφαρμογή Web ενημερώθηκε με επιτυχία"]},"Browser changed to {0}":{"*":["Ο περιηγητής άλλαξε σε {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Είστε σίγουροι ότι θέλετε να διαγράψετε {0};\n\nΔιεύθυνση URL: {1} \nΠεριηγητής: {2}"]},"Also delete configuration folder":{"*":["Επίσης, διαγράψτε τον φάκελο διαμόρφωσης."]},"Delete":{"*":["Διαγραφή"]},"WebApp deleted successfully":{"*":["Η εφαρμογή Web διαγράφηκε με επιτυχία."]},"REMOVE ALL":{"*":["ΑΦΑΙΡΕΣΗ ΟΛΩΝ"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Είστε σίγουροι ότι θέλετε να αφαιρέσετε όλες τις WebApps σας; Αυτή η ενέργεια δεν μπορεί να αναιρεθεί.\n\nΠληκτρολογήστε \"{0}\" για επιβεβαίωση."]},"Remove All":{"*":["Αφαίρεση όλων"]},"All WebApps have been removed":{"*":["Όλες οι WebApps έχουν αφαιρεθεί."]},"Failed to remove all WebApps":{"*":["Αποτυχία κατά την αφαίρεση όλων των WebApps"]},"Icon {0} of {1}":{"*":["Εικονίδιο {0} του {1}"]},"WebApps exported successfully":{"*":["Οι εφαρμογές ιστού εξήχθησαν με επιτυχία"]},"No WebApps":{"*":["Όχι WebApps"]},"There are no WebApps to export.":{"*":["Δεν υπάρχουν WebApps προς εξαγωγή."]},"The selected file does not exist.":{"*":["Το επιλεγμένο αρχείο δεν υπάρχει."]},"The selected file is not a valid ZIP archive.":{"*":["Το επιλεγμένο αρχείο δεν είναι έγκυρο ZIP αρχείο."]},"Error importing WebApps":{"*":["Σφάλμα κατά την εισαγωγή WebApps"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["Εισήχθησαν {} WebApps με επιτυχία ({} διπλότυπα παραλείφθηκαν)"]},"Imported {} WebApps successfully":{"*":["Εισήχθησαν {} WebApps με επιτυχία"]},"No":{"*":["Όχι"]},"Yes":{"*":["Ναι"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/el.po b/biglinux-webapps/locale/el.po index fbc1cf4b..30667660 100644 --- a/biglinux-webapps/locale/el.po +++ b/biglinux-webapps/locale/el.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the biglinux-webapps package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" "Project-Id-Version: biglinux-webapps\n" @@ -14,443 +14,753 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Πρότυπα" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Επιλέξτε ένα Πρότυπο" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Αναζήτηση προτύπων..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 -msgid "Search templates" -msgstr "Αναζήτηση προτύπων" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Αποτελέσματα Αναζήτησης" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Δεν βρέθηκαν πρότυπα" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 -#, python-brace-format -msgid "Browser: {0}" -msgstr "Πλοηγός: {0}" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Επεξεργασία WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 -#, python-brace-format -msgid "Edit {0}" -msgstr "Επεξεργασία {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Διαγραφή WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 -#, python-brace-format -msgid "Delete {0}" -msgstr "Διαγραφή {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:20 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Καλώς ήρθατε στον Διαχειριστή WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 -msgid "" -"What are WebApps?\n" -"\n" -"WebApps are web applications that run in a dedicated browser window, providing a more app-like " -"experience for your favorite websites.\n" -"\n" -"Benefits of using WebApps:\n" -"\n" -"• Focus: Work without the distractions of other browser tabs\n" -"• Desktop Integration: Quick access from your application menu\n" -"• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" -msgstr "" -"Τι είναι οι WebApps;\n" -"\n" -"Οι WebApps είναι διαδικτυακές εφαρμογές που εκτελούνται σε ένα ειδικό παράθυρο προγράμματος " -"περιήγησης, παρέχοντας μια πιο εφαρμογή-όμοια εμπειρία για τις αγαπημένες σας ιστοσελίδες.\n" -"\n" -"Οφέλη από τη χρήση WebApps:\n" -"\n" -"• Εστίαση: Εργαστείτε χωρίς τις αποσπάσεις από άλλες καρτέλες του προγράμματος περιήγησης\n" -"• Ενοποίηση Επιφάνειας Εργασίας: Γρήγορη πρόσβαση από το μενού εφαρμογών σας\n" -"• Απομονωμένα Προφίλ: Προαιρετικά, κάθε webapp μπορεί να έχει τα δικά της cookies και " -"ρυθμίσεις\n" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Μην το δείξετε ξανά" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Ας ξεκινήσουμε" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Επιλέξτε πρόγραμμα περιήγησης" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:99 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:225 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:291 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Ακύρωση" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Επιλέξτε" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 -msgid "System Default" -msgstr "Προεπιλογή Συστήματος" -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 -msgid "Default" -msgstr "Προεπιλογή" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 -msgid "Please select a browser." -msgstr "Παρακαλώ επιλέξτε έναν περιηγητή." -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 -msgid "Error" -msgstr "Σφάλμα" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "OK" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Προσθήκη WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 -msgid "Choose from templates" -msgstr "Επιλέξτε από πρότυπα" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "Διεύθυνση URL" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 -msgid "Detect" -msgstr "Ανίχνευση" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Ανίχνευση ονόματος και εικονιδίου από τον ιστότοπο" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Όνομα" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 -msgid "App Icon" -msgstr "Εικονίδιο εφαρμογής" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 -msgid "Select icon for the WebApp" -msgstr "Επιλέξτε εικονίδιο για την Εφαρμογή Ιστού" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 -msgid "Available Icons" -msgstr "Διαθέσιμα Εικονίδια" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Κατηγορία" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 -msgid "Application Mode" -msgstr "Λειτουργία Εφαρμογής" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Ανοίγει ως εγγενές παράθυρο χωρίς διεπαφή προγράμματος περιήγησης." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 +#. -- Browser row (hidden in app mode) -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Πλοηγός" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 -msgid "Profile Settings" -msgstr "Ρυθμίσεις Προφίλ" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 -msgid "Configure a separate browser profile for this webapp" -msgstr "Ρυθμίστε ένα ξεχωριστό προφίλ προγράμματος περιήγησης για αυτήν την εφαρμογή ιστού." -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -msgid "Use separate profile" -msgstr "Χρησιμοποιήστε ξεχωριστό προφίλ" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Επιτρέπει ανεξάρτητα cookies και συνεδρίες" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Όνομα προφίλ" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Αποθήκευση" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Φόρτωση..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 -msgid "Detecting website information, please wait" -msgstr "Ανίχνευση πληροφοριών ιστοσελίδας, παρακαλώ περιμένετε" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 -msgid "Please enter a URL first." -msgstr "Παρακαλώ εισάγετε πρώτα μια διεύθυνση URL." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 -msgid "Please enter a name for the WebApp." -msgstr "Παρακαλώ εισάγετε ένα όνομα για την Εφαρμογή Ιστού." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 -msgid "Please enter a URL for the WebApp." -msgstr "Παρακαλώ εισάγετε μια διεύθυνση URL για την εφαρμογή ιστού." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 -msgid "Please select a browser for the WebApp." -msgstr "Παρακαλώ επιλέξτε έναν περιηγητή για την Εφαρμογή Ιστού." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "Διαχειριστής WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Αναζήτηση WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 -msgid "Main Menu" -msgstr "Κύριο Μενού" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 -msgid "Refresh" -msgstr "Ανανέωση" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Εξαγωγή WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Εισαγωγή WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Περιήγηση στο Φάκελο Εφαρμογών" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Προβολή φακέλου προφίλ" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 -msgid "Show Welcome Screen" -msgstr "Εμφάνιση Οθόνης Καλωσορίσματος" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Αφαίρεση όλων των WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "Σχετικά" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 -msgid "Add" -msgstr "Προσθήκη" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 -msgid "No WebApps Found" -msgstr "Δεν βρέθηκαν WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Προσθέστε μια νέα διαδικτυακή εφαρμογή για να ξεκινήσετε" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "Η εφαρμογή Web δημιουργήθηκε με επιτυχία" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "Η εφαρμογή Web ενημερώθηκε με επιτυχία" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 -#, python-brace-format -msgid "Browser changed to {0}" -msgstr "Ο περιηγητής άλλαξε σε {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 -#, python-brace-format -msgid "" -"Are you sure you want to delete {0}?\n" -"\n" -"URL: {1}\n" -"Browser: {2}" -msgstr "" -"Είστε σίγουροι ότι θέλετε να διαγράψετε {0};\n" -"\n" -"Διεύθυνση URL: {1} \n" -"Περιηγητής: {2}" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Επίσης, διαγράψτε τον φάκελο διαμόρφωσης." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Διαγραφή" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "Η εφαρμογή Web διαγράφηκε με επιτυχία." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 -msgid "REMOVE ALL" -msgstr "ΑΦΑΙΡΕΣΗ ΟΛΩΝ" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 -#, python-brace-format -msgid "" -"Are you sure you want to remove all your WebApps? This action cannot be undone.\n" -"\n" -"Type \"{0}\" to confirm." -msgstr "" -"Είστε σίγουροι ότι θέλετε να αφαιρέσετε όλες τις WebApps σας; Αυτή η ενέργεια δεν μπορεί να " -"αναιρεθεί.\n" -"\n" -"Πληκτρολογήστε \"{0}\" για επιβεβαίωση." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Αφαίρεση όλων" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Όλες οι WebApps έχουν αφαιρεθεί." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Αποτυχία κατά την αφαίρεση όλων των WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 -#, python-brace-format -msgid "Icon {0} of {1}" -msgstr "Εικονίδιο {0} του {1}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "Οι εφαρμογές ιστού εξήχθησαν με επιτυχία" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Όχι WebApps" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 +msgid "Change browser" +msgstr "Αλλαγή προγράμματος περιήγησης" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 +msgid "Edit" +msgstr "Επεξεργασία" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 +msgid "New WebApp" +msgstr "Νέα WebApp" + +#. -- Icon row -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 +msgid "Icon" +msgstr "Εικονίδιο" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 +msgid "App Mode" +msgstr "Λειτουργία εφαρμογής" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 +msgid "Separate Profile" +msgstr "Ξεχωριστό προφίλ" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 +msgid "Select Icon" +msgstr "Επιλογή εικονιδίου" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 +msgid "Images" +msgstr "Εικόνες" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 +msgid "ZIP files" +msgstr "Αρχεία ZIP" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 +#, rust-format +msgid "Imported {imported}, skipped {dups} duplicates" +msgstr "Εισήχθησαν {imported}, παραλήφθηκαν {dups} διπλότυπα" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 +msgid "Import failed" +msgstr "Η εισαγωγή απέτυχε" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 +msgid "Export failed" +msgstr "Η εξαγωγή απέτυχε" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 +msgid "" +"This will delete all webapps and their desktop entries. This cannot be " +"undone." +msgstr "" +"Αυτό θα διαγράψει όλες τις webapps και τις καταχωρήσεις τους στην επιφάνεια " +"εργασίας. Δεν μπορεί να αναιρεθεί." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 +msgid "Browser changed" +msgstr "Το πρόγραμμα περιήγησης άλλαξε" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 +msgid "What are WebApps?" +msgstr "Τι είναι οι WebApps;" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 +msgid "" +"WebApps are web applications that run in a dedicated browser window, " +"providing a more app-like experience for your favorite websites." +msgstr "" +"Τα WebApps είναι διαδικτυακές εφαρμογές που εκτελούνται σε ένα αφιερωμένο " +"παράθυρο προγράμματος περιήγησης, προσφέροντας μια εμπειρία πιο κοντά σε " +"εφαρμογή για τις αγαπημένες σας ιστοσελίδες." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 +msgid "Benefits of using WebApps:" +msgstr "Οφέλη από τη χρήση των WebApps:" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Focus" +msgstr "Εστίαση" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Work without the distractions of other browser tabs" +msgstr "" +"Εργαστείτε χωρίς τις αποσπάσεις άλλων καρτελών του προγράμματος περιήγησης" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Desktop Integration" +msgstr "Ενσωμάτωση στην επιφάνεια εργασίας" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Quick access from your application menu" +msgstr "Γρήγορη πρόσβαση από το μενού εφαρμογών σας" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Isolated Profiles" +msgstr "Απομονωμένα προφίλ" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Each webapp can have its own cookies and settings" +msgstr "Κάθε webapp μπορεί να έχει τα δικά του cookies και ρυθμίσεις" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 +msgid "Back" +msgstr "Πίσω" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 +msgid "Forward" +msgstr "Εμπρός" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 +msgid "Reload" +msgstr "Επαναφόρτωση" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 +msgid "Fullscreen" +msgstr "Πλήρης οθόνη" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 +msgid "Enter URL…" +msgstr "Εισαγάγετε URL…" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 +msgid "Zoom In" +msgstr "Μεγέθυνση" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 +msgid "Zoom Out" +msgstr "Σμίκρυνση" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 +msgid "Reset Zoom" +msgstr "Επαναφορά Ζουμ" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 +msgid "Developer Tools" +msgstr "Εργαλεία Προγραμματιστή" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 +msgid "Menu" +msgstr "Μενού" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 +msgid "Open Link in Browser" +msgstr "Άνοιγμα Συνδέσμου στον Περιηγητή" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 +msgid "Download Complete" +msgstr "Λήψη Ολοκληρώθηκε" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 +msgid "Save File" +msgstr "Αποθήκευση Αρχείου" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 +#~ msgid "Search templates" +#~ msgstr "Αναζήτηση προτύπων" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 +#, python-brace-format +#~ msgid "Browser: {0}" +#~ msgstr "Πλοηγός: {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 +#, python-brace-format +#~ msgid "Edit {0}" +#~ msgstr "Επεξεργασία {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 +#, python-brace-format +#~ msgid "Delete {0}" +#~ msgstr "Διαγραφή {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 +#~ msgid "" +#~ "What are WebApps?\n" +#~ "\n" +#~ "WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n" +#~ "\n" +#~ "Benefits of using WebApps:\n" +#~ "\n" +#~ "• Focus: Work without the distractions of other browser tabs\n" +#~ "• Desktop Integration: Quick access from your application menu\n" +#~ "• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" +#~ msgstr "" +#~ "Τι είναι οι WebApps;\n" +#~ "\n" +#~ "Οι WebApps είναι διαδικτυακές εφαρμογές που εκτελούνται σε ένα ειδικό παράθυρο προγράμματος περιήγησης, παρέχοντας μια πιο εφαρμογή-όμοια εμπειρία για τις αγαπημένες σας ιστοσελίδες.\n" +#~ "\n" +#~ "Οφέλη από τη χρήση WebApps:\n" +#~ "\n" +#~ "• Εστίαση: Εργαστείτε χωρίς τις αποσπάσεις από άλλες καρτέλες του προγράμματος περιήγησης\n" +#~ "• Ενοποίηση Επιφάνειας Εργασίας: Γρήγορη πρόσβαση από το μενού εφαρμογών σας\n" +#~ "• Απομονωμένα Προφίλ: Προαιρετικά, κάθε webapp μπορεί να έχει τα δικά της cookies και ρυθμίσεις\n" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 +#~ msgid "System Default" +#~ msgstr "Προεπιλογή Συστήματος" + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 -msgid "There are no WebApps to export." -msgstr "Δεν υπάρχουν WebApps προς εξαγωγή." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 -msgid "The selected file does not exist." -msgstr "Το επιλεγμένο αρχείο δεν υπάρχει." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 -msgid "The selected file is not a valid ZIP archive." -msgstr "Το επιλεγμένο αρχείο δεν είναι έγκυρο ZIP αρχείο." +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 -msgid "Error importing WebApps" -msgstr "Σφάλμα κατά την εισαγωγή WebApps" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 +#~ msgid "Default" +#~ msgstr "Προεπιλογή" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 +#~ msgid "Please select a browser." +#~ msgstr "Παρακαλώ επιλέξτε έναν περιηγητή." + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 -msgid "Imported {} WebApps successfully ({} duplicates skipped)" -msgstr "Εισήχθησαν {} WebApps με επιτυχία ({} διπλότυπα παραλείφθηκαν)" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 +#~ msgid "Error" +#~ msgstr "Σφάλμα" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 +#~ msgid "Choose from templates" +#~ msgstr "Επιλέξτε από πρότυπα" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 +#~ msgid "Detect" +#~ msgstr "Ανίχνευση" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 +#~ msgid "App Icon" +#~ msgstr "Εικονίδιο εφαρμογής" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 +#~ msgid "Select icon for the WebApp" +#~ msgstr "Επιλέξτε εικονίδιο για την Εφαρμογή Ιστού" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 +#~ msgid "Available Icons" +#~ msgstr "Διαθέσιμα Εικονίδια" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 +#~ msgid "Application Mode" +#~ msgstr "Λειτουργία Εφαρμογής" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 +#~ msgid "Profile Settings" +#~ msgstr "Ρυθμίσεις Προφίλ" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 +#~ msgid "Configure a separate browser profile for this webapp" +#~ msgstr "" +#~ "Ρυθμίστε ένα ξεχωριστό προφίλ προγράμματος περιήγησης για αυτήν την εφαρμογή" +#~ " ιστού." + +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 -msgid "Imported {} WebApps successfully" -msgstr "Εισήχθησαν {} WebApps με επιτυχία" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 -msgid "No" -msgstr "Όχι" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 -msgid "Yes" -msgstr "Ναι" +#~ msgid "Use separate profile" +#~ msgstr "Χρησιμοποιήστε ξεχωριστό προφίλ" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 +#~ msgid "Detecting website information, please wait" +#~ msgstr "Ανίχνευση πληροφοριών ιστοσελίδας, παρακαλώ περιμένετε" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 +#~ msgid "Please enter a URL first." +#~ msgstr "Παρακαλώ εισάγετε πρώτα μια διεύθυνση URL." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 +#~ msgid "Please enter a name for the WebApp." +#~ msgstr "Παρακαλώ εισάγετε ένα όνομα για την Εφαρμογή Ιστού." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 +#~ msgid "Please enter a URL for the WebApp." +#~ msgstr "Παρακαλώ εισάγετε μια διεύθυνση URL για την εφαρμογή ιστού." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 +#~ msgid "Please select a browser for the WebApp." +#~ msgstr "Παρακαλώ επιλέξτε έναν περιηγητή για την Εφαρμογή Ιστού." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 +#~ msgid "Main Menu" +#~ msgstr "Κύριο Μενού" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 +#~ msgid "Refresh" +#~ msgstr "Ανανέωση" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 +#~ msgid "Show Welcome Screen" +#~ msgstr "Εμφάνιση Οθόνης Καλωσορίσματος" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 +#~ msgid "Add" +#~ msgstr "Προσθήκη" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 +#~ msgid "No WebApps Found" +#~ msgstr "Δεν βρέθηκαν WebApps" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 +#, python-brace-format +#~ msgid "Browser changed to {0}" +#~ msgstr "Ο περιηγητής άλλαξε σε {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to delete {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Browser: {2}" +#~ msgstr "" +#~ "Είστε σίγουροι ότι θέλετε να διαγράψετε {0};\n" +#~ "\n" +#~ "Διεύθυνση URL: {1} \n" +#~ "Περιηγητής: {2}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 +#~ msgid "REMOVE ALL" +#~ msgstr "ΑΦΑΙΡΕΣΗ ΟΛΩΝ" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to remove all your WebApps? This action cannot be undone.\n" +#~ "\n" +#~ "Type \"{0}\" to confirm." +#~ msgstr "" +#~ "Είστε σίγουροι ότι θέλετε να αφαιρέσετε όλες τις WebApps σας; Αυτή η ενέργεια δεν μπορεί να αναιρεθεί.\n" +#~ "\n" +#~ "Πληκτρολογήστε \"{0}\" για επιβεβαίωση." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 +#, python-brace-format +#~ msgid "Icon {0} of {1}" +#~ msgstr "Εικονίδιο {0} του {1}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#~ msgid "There are no WebApps to export." +#~ msgstr "Δεν υπάρχουν WebApps προς εξαγωγή." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 +#~ msgid "The selected file does not exist." +#~ msgstr "Το επιλεγμένο αρχείο δεν υπάρχει." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 +#~ msgid "The selected file is not a valid ZIP archive." +#~ msgstr "Το επιλεγμένο αρχείο δεν είναι έγκυρο ZIP αρχείο." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 +#~ msgid "Error importing WebApps" +#~ msgstr "Σφάλμα κατά την εισαγωγή WebApps" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 +#~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" +#~ msgstr "Εισήχθησαν {} WebApps με επιτυχία ({} διπλότυπα παραλείφθηκαν)" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 +#~ msgid "Imported {} WebApps successfully" +#~ msgstr "Εισήχθησαν {} WebApps με επιτυχία" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 +#~ msgid "No" +#~ msgstr "Όχι" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 +#~ msgid "Yes" +#~ msgstr "Ναι" diff --git a/biglinux-webapps/locale/en.json b/biglinux-webapps/locale/en.json deleted file mode 100644 index dc8626ad..00000000 --- a/biglinux-webapps/locale/en.json +++ /dev/null @@ -1 +0,0 @@ -{"en":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Templates"]},"Choose a Template":{"*":["Choose a Template"]},"Search templates...":{"*":["Search templates..."]},"Search templates":{"*":["Search templates"]},"Search Results":{"*":["Search Results"]},"No templates found":{"*":["No templates found"]},"Browser: {0}":{"*":["Browser: {0}"]},"Edit WebApp":{"*":["Edit WebApp"]},"Edit {0}":{"*":["Edit {0}"]},"Delete WebApp":{"*":["Delete WebApp"]},"Delete {0}":{"*":["Delete {0}"]},"Welcome to WebApps Manager":{"*":["Welcome to WebApps Manager"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n"]},"Don't show this again":{"*":["Don't show this again"]},"Let's Start":{"*":["Let's Start"]},"Select Browser":{"*":["Select Browser"]},"Cancel":{"*":["Cancel"]},"Select":{"*":["Select"]},"System Default":{"*":["System Default"]},"Default":{"*":["Default"]},"Please select a browser.":{"*":["Please select a browser."]},"Error":{"*":["Error"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Add WebApp"]},"Choose from templates":{"*":["Choose from templates"]},"URL":{"*":["URL"]},"Detect":{"*":["Detect"]},"Detect name and icon from website":{"*":["Detect name and icon from website"]},"Name":{"*":["Name"]},"App Icon":{"*":["App Icon"]},"Select icon for the WebApp":{"*":["Select icon for the WebApp"]},"Available Icons":{"*":["Available Icons"]},"Category":{"*":["Category"]},"Application Mode":{"*":["Application Mode"]},"Opens as a native window without browser interface":{"*":["Opens as a native window without browser interface"]},"Browser":{"*":["Browser"]},"Profile Settings":{"*":["Profile Settings"]},"Configure a separate browser profile for this webapp":{"*":["Configure a separate browser profile for this webapp"]},"Use separate profile":{"*":["Use separate profile"]},"Allows independent cookies and sessions":{"*":["Allows independent cookies and sessions"]},"Profile Name":{"*":["Profile Name"]},"Save":{"*":["Save"]},"Loading...":{"*":["Loading..."]},"Detecting website information, please wait":{"*":["Detecting website information, please wait"]},"Please enter a URL first.":{"*":["Please enter a URL first."]},"Please enter a name for the WebApp.":{"*":["Please enter a name for the WebApp."]},"Please enter a URL for the WebApp.":{"*":["Please enter a URL for the WebApp."]},"Please select a browser for the WebApp.":{"*":["Please select a browser for the WebApp."]},"WebApps Manager":{"*":["WebApps Manager"]},"Search WebApps":{"*":["Search WebApps"]},"Main Menu":{"*":["Main Menu"]},"Refresh":{"*":["Refresh"]},"Export WebApps":{"*":["Export WebApps"]},"Import WebApps":{"*":["Import WebApps"]},"Browse Applications Folder":{"*":["Browse Applications Folder"]},"Browse Profiles Folder":{"*":["Browse Profiles Folder"]},"Show Welcome Screen":{"*":["Show Welcome Screen"]},"Remove All WebApps":{"*":["Remove All WebApps"]},"About":{"*":["About"]},"Add":{"*":["Add"]},"No WebApps Found":{"*":["No WebApps Found"]},"Add a new webapp to get started":{"*":["Add a new webapp to get started"]},"WebApp created successfully":{"*":["WebApp created successfully"]},"WebApp updated successfully":{"*":["WebApp updated successfully"]},"Browser changed to {0}":{"*":["Browser changed to {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}"]},"Also delete configuration folder":{"*":["Also delete configuration folder"]},"Delete":{"*":["Delete"]},"WebApp deleted successfully":{"*":["WebApp deleted successfully"]},"REMOVE ALL":{"*":["REMOVE ALL"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm."]},"Remove All":{"*":["Remove All"]},"All WebApps have been removed":{"*":["All WebApps have been removed"]},"Failed to remove all WebApps":{"*":["Failed to remove all WebApps"]},"Icon {0} of {1}":{"*":["Icon {0} of {1}"]},"WebApps exported successfully":{"*":["WebApps exported successfully"]},"No WebApps":{"*":["No WebApps"]},"There are no WebApps to export.":{"*":["There are no WebApps to export."]},"The selected file does not exist.":{"*":["The selected file does not exist."]},"The selected file is not a valid ZIP archive.":{"*":["The selected file is not a valid ZIP archive."]},"Error importing WebApps":{"*":["Error importing WebApps"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["Imported {} WebApps successfully ({} duplicates skipped)"]},"Imported {} WebApps successfully":{"*":["Imported {} WebApps successfully"]},"No":{"*":["No"]},"Yes":{"*":["Yes"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/en.po b/biglinux-webapps/locale/en.po index 81e9d3cf..b081c3e3 100644 --- a/biglinux-webapps/locale/en.po +++ b/biglinux-webapps/locale/en.po @@ -14,511 +14,736 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -# # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +# +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Templates" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Choose a Template" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Search templates..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 -msgid "Search templates" -msgstr "Search templates" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Search Results" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "No templates found" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 96 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 99 -#, python-brace-format -msgid "Browser: {0}" -msgstr "Browser: {0}" - -# # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 110 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 62 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 150 +# +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 110 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 62 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 150 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Edit WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 -#, python-brace-format -msgid "Edit {0}" -msgstr "Edit {0}" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 124 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 124 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Delete WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 -#, python-brace-format -msgid "Delete {0}" -msgstr "Delete {0}" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 26 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 102 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 26 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 102 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:20 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Welcome to WebApps Manager" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 117 -msgid "" -"What are WebApps?\n" -"\n" -"WebApps are web applications that run in a dedicated browser window, " -"providing a more app-like experience for your favorite websites.\n" -"\n" -"Benefits of using WebApps:\n" -"\n" -"• Focus: Work without the distractions of other browser tabs\n" -"• Desktop Integration: Quick access from your application menu\n" -"• Isolated Profiles: Optionally, each webapp can have its own cookies " -"and settings\n" -msgstr "" -"What are WebApps?\n" -"\n" -"WebApps are web applications that run in a dedicated browser window, " -"providing a more app-like experience for your favorite websites.\n" -"\n" -"Benefits of using WebApps:\n" -"\n" -"• Focus: Work without the distractions of other browser tabs\n" -"• Desktop Integration: Quick access from your application menu\n" -"• Isolated Profiles: Optionally, each webapp can have its own cookies " -"and settings\n" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Don't show this again" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 158 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 158 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Let's Start" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 69 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Select Browser" -# # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# +# # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 130 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 398 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 315 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 +# +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 130 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 398 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 315 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:99 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:225 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:291 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Cancel" -# # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 133 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 257 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 344 +# +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 133 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 257 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 344 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Select" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 184 -msgid "System Default" -msgstr "System Default" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 190 -msgid "Default" -msgstr "Default" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 219 -msgid "Please select a browser." -msgstr "Please select a browser." - -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 228 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 796 -msgid "Error" -msgstr "Error" - -# # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# +# # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 229 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 797 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 242 +# +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 229 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 797 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 242 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "OK" -# # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 62 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 150 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 147 +# +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 62 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 150 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 147 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Add WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 -msgid "Choose from templates" -msgstr "Choose from templates" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 227 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 227 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 235 -msgid "Detect" -msgstr "Detect" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 236 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 236 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Detect name and icon from website" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 245 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 245 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Name" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 251 -msgid "App Icon" -msgstr "App Icon" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 -msgid "Select icon for the WebApp" -msgstr "Select icon for the WebApp" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 265 -msgid "Available Icons" -msgstr "Available Icons" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 301 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 310 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 301 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 310 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Category" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 317 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 326 -msgid "Application Mode" -msgstr "Application Mode" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 319 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 319 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Opens as a native window without browser interface" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 333 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 333 +#. -- Browser row (hidden in app mode) -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Browser" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 354 -msgid "Profile Settings" -msgstr "Profile Settings" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 356 -msgid "Configure a separate browser profile for this webapp" -msgstr "Configure a separate browser profile for this webapp" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 359 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 365 -msgid "Use separate profile" -msgstr "Use separate profile" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 360 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 360 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Allows independent cookies and sessions" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 376 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 376 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Profile Name" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 402 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 402 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Save" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 425 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 425 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Loading..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 429 -msgid "Detecting website information, please wait" -msgstr "Detecting website information, please wait" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 636 -msgid "Please enter a URL first." -msgstr "Please enter a URL first." - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 752 -msgid "Please enter a name for the WebApp." -msgstr "Please enter a name for the WebApp." - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 756 -msgid "Please enter a URL for the WebApp." -msgstr "Please enter a URL for the WebApp." - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 760 -msgid "Please select a browser for the WebApp." -msgstr "Please select a browser for the WebApp." - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 33 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 33 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "WebApps Manager" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 67 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 70 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 120 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 67 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 70 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 120 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Search WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 -msgid "Main Menu" -msgstr "Main Menu" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 85 -msgid "Refresh" -msgstr "Refresh" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 86 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 86 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Export WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Import WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 90 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 90 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Browse Applications Folder" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 91 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 91 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Browse Profiles Folder" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 95 -msgid "Show Welcome Screen" -msgstr "Show Welcome Screen" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 96 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 344 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 96 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 344 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Remove All WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 97 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 97 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "About" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 -msgid "Add" -msgstr "Add" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 142 -msgid "No WebApps Found" -msgstr "No WebApps Found" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 143 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 143 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Add a new webapp to get started" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 240 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 240 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "WebApp created successfully" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 242 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 242 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "WebApp updated successfully" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 277 -#, python-brace-format -msgid "Browser changed to {0}" -msgstr "Browser changed to {0}" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 292 -#, python-brace-format -msgid "" -"Are you sure you want to delete {0}?\n" -"\n" -"URL: {1}\n" -"Browser: {2}" -msgstr "" -"Are you sure you want to delete {0}?\n" -"\n" -"URL: {1}\n" -"Browser: {2}" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 309 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 309 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Also delete configuration folder" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 316 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 316 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Delete" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 335 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 335 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "WebApp deleted successfully" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 -msgid "REMOVE ALL" -msgstr "REMOVE ALL" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 -#, python-brace-format -msgid "" -"Are you sure you want to remove all your WebApps? This action cannot be " -"undone.\n" -"\n" -"Type \"{0}\" to confirm." -msgstr "" -"Are you sure you want to remove all your WebApps? This action cannot be " -"undone.\n" -"\n" -"Type \"{0}\" to confirm." - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Remove All" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 379 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 379 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "All WebApps have been removed" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 381 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 381 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Failed to remove all WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 -#, python-brace-format -msgid "Icon {0} of {1}" -msgstr "Icon {0} of {1}" - -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebApps exported successfully" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 169 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 169 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "No WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 169 -msgid "There are no WebApps to export." -msgstr "There are no WebApps to export." +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 +msgid "Change browser" +msgstr "Change browser" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 208 -msgid "The selected file does not exist." -msgstr "The selected file does not exist." +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 +msgid "Edit" +msgstr "Edit" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 209 -msgid "The selected file is not a valid ZIP archive." -msgstr "The selected file is not a valid ZIP archive." +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 +msgid "New WebApp" +msgstr "New WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 213 -msgid "Error importing WebApps" -msgstr "Error importing WebApps" +#. -- Icon row -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 +msgid "Icon" +msgstr "Icon" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 224 -msgid "Imported {} WebApps successfully ({} duplicates skipped)" -msgstr "Imported {} WebApps successfully ({} duplicates skipped)" +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 +msgid "App Mode" +msgstr "App Mode" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 230 -msgid "Imported {} WebApps successfully" -msgstr "Imported {} WebApps successfully" +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 +msgid "Separate Profile" +msgstr "Separate Profile" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 250 -msgid "No" -msgstr "No" +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 +msgid "Select Icon" +msgstr "Select Icon" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 251 -msgid "Yes" -msgstr "Yes" +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 +msgid "Images" +msgstr "Images" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 +msgid "ZIP files" +msgstr "ZIP files" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 +#, rust-format +msgid "Imported {imported}, skipped {dups} duplicates" +msgstr "Imported {imported}, skipped {dups} duplicates" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 +msgid "Import failed" +msgstr "Import failed" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 +msgid "Export failed" +msgstr "Export failed" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 +msgid "" +"This will delete all webapps and their desktop entries. This cannot be " +"undone." +msgstr "" +"This will delete all webapps and their desktop entries. This cannot be " +"undone." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 +msgid "Browser changed" +msgstr "Browser changed" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 +msgid "What are WebApps?" +msgstr "What are WebApps?" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 +msgid "" +"WebApps are web applications that run in a dedicated browser window, " +"providing a more app-like experience for your favorite websites." +msgstr "" +"WebApps are web applications that run in a dedicated browser window, " +"providing a more app-like experience for your favorite websites." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 +msgid "Benefits of using WebApps:" +msgstr "Benefits of using WebApps:" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Focus" +msgstr "Focus" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Work without the distractions of other browser tabs" +msgstr "Work without the distractions of other browser tabs" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Desktop Integration" +msgstr "Desktop Integration" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Quick access from your application menu" +msgstr "Quick access from your application menu" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Isolated Profiles" +msgstr "Isolated Profiles" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Each webapp can have its own cookies and settings" +msgstr "Each webapp can have its own cookies and settings" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 +msgid "Back" +msgstr "Back" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 +msgid "Forward" +msgstr "Forward" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 +msgid "Reload" +msgstr "Reload" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 +msgid "Fullscreen" +msgstr "Fullscreen" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 +msgid "Enter URL…" +msgstr "Enter URL…" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 +msgid "Zoom In" +msgstr "Zoom In" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 +msgid "Zoom Out" +msgstr "Zoom Out" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 +msgid "Reset Zoom" +msgstr "Reset Zoom" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 +msgid "Developer Tools" +msgstr "Developer Tools" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 +msgid "Menu" +msgstr "Menu" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 +msgid "Open Link in Browser" +msgstr "Open Link in Browser" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 +msgid "Download Complete" +msgstr "Download Complete" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 +msgid "Save File" +msgstr "Save File" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 +#~ msgid "Search templates" +#~ msgstr "Search templates" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 96 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 99 +#, python-brace-format +#~ msgid "Browser: {0}" +#~ msgstr "Browser: {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 +#, python-brace-format +#~ msgid "Edit {0}" +#~ msgstr "Edit {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 +#, python-brace-format +#~ msgid "Delete {0}" +#~ msgstr "Delete {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 117 +#~ msgid "" +#~ "What are WebApps?\n" +#~ "\n" +#~ "WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n" +#~ "\n" +#~ "Benefits of using WebApps:\n" +#~ "\n" +#~ "• Focus: Work without the distractions of other browser tabs\n" +#~ "• Desktop Integration: Quick access from your application menu\n" +#~ "• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" +#~ msgstr "" +#~ "What are WebApps?\n" +#~ "\n" +#~ "WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n" +#~ "\n" +#~ "Benefits of using WebApps:\n" +#~ "\n" +#~ "• Focus: Work without the distractions of other browser tabs\n" +#~ "• Desktop Integration: Quick access from your application menu\n" +#~ "• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 184 +#~ msgid "System Default" +#~ msgstr "System Default" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 190 +#~ msgid "Default" +#~ msgstr "Default" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 219 +#~ msgid "Please select a browser." +#~ msgstr "Please select a browser." + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# +# +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 228 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 796 +#~ msgid "Error" +#~ msgstr "Error" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 +#~ msgid "Choose from templates" +#~ msgstr "Choose from templates" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 235 +#~ msgid "Detect" +#~ msgstr "Detect" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 251 +#~ msgid "App Icon" +#~ msgstr "App Icon" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 +#~ msgid "Select icon for the WebApp" +#~ msgstr "Select icon for the WebApp" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 265 +#~ msgid "Available Icons" +#~ msgstr "Available Icons" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 317 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 326 +#~ msgid "Application Mode" +#~ msgstr "Application Mode" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 354 +#~ msgid "Profile Settings" +#~ msgstr "Profile Settings" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 356 +#~ msgid "Configure a separate browser profile for this webapp" +#~ msgstr "Configure a separate browser profile for this webapp" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 359 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 365 +#~ msgid "Use separate profile" +#~ msgstr "Use separate profile" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 429 +#~ msgid "Detecting website information, please wait" +#~ msgstr "Detecting website information, please wait" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 636 +#~ msgid "Please enter a URL first." +#~ msgstr "Please enter a URL first." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 752 +#~ msgid "Please enter a name for the WebApp." +#~ msgstr "Please enter a name for the WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 756 +#~ msgid "Please enter a URL for the WebApp." +#~ msgstr "Please enter a URL for the WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 760 +#~ msgid "Please select a browser for the WebApp." +#~ msgstr "Please select a browser for the WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 +#~ msgid "Main Menu" +#~ msgstr "Main Menu" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 85 +#~ msgid "Refresh" +#~ msgstr "Refresh" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 95 +#~ msgid "Show Welcome Screen" +#~ msgstr "Show Welcome Screen" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 +#~ msgid "Add" +#~ msgstr "Add" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 142 +#~ msgid "No WebApps Found" +#~ msgstr "No WebApps Found" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 277 +#, python-brace-format +#~ msgid "Browser changed to {0}" +#~ msgstr "Browser changed to {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 292 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to delete {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Browser: {2}" +#~ msgstr "" +#~ "Are you sure you want to delete {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Browser: {2}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 +#~ msgid "REMOVE ALL" +#~ msgstr "REMOVE ALL" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to remove all your WebApps? This action cannot be undone.\n" +#~ "\n" +#~ "Type \"{0}\" to confirm." +#~ msgstr "" +#~ "Are you sure you want to remove all your WebApps? This action cannot be undone.\n" +#~ "\n" +#~ "Type \"{0}\" to confirm." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 +#, python-brace-format +#~ msgid "Icon {0} of {1}" +#~ msgstr "Icon {0} of {1}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 169 +#~ msgid "There are no WebApps to export." +#~ msgstr "There are no WebApps to export." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 208 +#~ msgid "The selected file does not exist." +#~ msgstr "The selected file does not exist." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 209 +#~ msgid "The selected file is not a valid ZIP archive." +#~ msgstr "The selected file is not a valid ZIP archive." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 213 +#~ msgid "Error importing WebApps" +#~ msgstr "Error importing WebApps" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 224 +#~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" +#~ msgstr "Imported {} WebApps successfully ({} duplicates skipped)" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 230 +#~ msgid "Imported {} WebApps successfully" +#~ msgstr "Imported {} WebApps successfully" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 250 +#~ msgid "No" +#~ msgstr "No" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 251 +#~ msgid "Yes" +#~ msgstr "Yes" diff --git a/biglinux-webapps/locale/es.json b/biglinux-webapps/locale/es.json deleted file mode 100644 index 227312d4..00000000 --- a/biglinux-webapps/locale/es.json +++ /dev/null @@ -1 +0,0 @@ -{"es":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Plantillas"]},"Choose a Template":{"*":["Elige una plantilla"]},"Search templates...":{"*":["Buscar plantillas..."]},"Search templates":{"*":["Buscar plantillas"]},"Search Results":{"*":["Resultados de búsqueda"]},"No templates found":{"*":["No se encontraron plantillas."]},"Browser: {0}":{"*":["Navegador: {0}"]},"Edit WebApp":{"*":["Editar WebApp"]},"Edit {0}":{"*":["Editar {0}"]},"Delete WebApp":{"*":["Eliminar WebApp"]},"Delete {0}":{"*":["Eliminar {0}"]},"Welcome to WebApps Manager":{"*":["Bienvenido a WebApps Manager"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["¿Qué son las WebApps?\n\nLas WebApps son aplicaciones web que se ejecutan en una ventana de navegador dedicada, proporcionando una experiencia más similar a una aplicación para tus sitios web favoritos.\n\nBeneficios de usar WebApps:\n\n• Enfoque: Trabaja sin las distracciones de otras pestañas del navegador\n• Integración de Escritorio: Acceso rápido desde tu menú de aplicaciones\n• Perfiles Aislados: Opcionalmente, cada webapp puede tener sus propias cookies y configuraciones\n"]},"Don't show this again":{"*":["No mostrar esto de nuevo"]},"Let's Start":{"*":["Comencemos"]},"Select Browser":{"*":["Seleccionar navegador"]},"Cancel":{"*":["Cancelar"]},"Select":{"*":["Seleccionar"]},"System Default":{"*":["Predeterminado del sistema"]},"Default":{"*":["Predeterminado"]},"Please select a browser.":{"*":["Por favor, selecciona un navegador."]},"Error":{"*":["Error"]},"OK":{"*":["Aceptar"]},"Add WebApp":{"*":["Agregar WebApp"]},"Choose from templates":{"*":["Elige de las plantillas"]},"URL":{"*":["URL"]},"Detect":{"*":["Detectar"]},"Detect name and icon from website":{"*":["Detectar nombre e ícono del sitio web"]},"Name":{"*":["Nombre"]},"App Icon":{"*":["Ícono de la aplicación"]},"Select icon for the WebApp":{"*":["Seleccionar ícono para la WebApp"]},"Available Icons":{"*":["Iconos disponibles"]},"Category":{"*":["Categoría"]},"Application Mode":{"*":["Modo de aplicación"]},"Opens as a native window without browser interface":{"*":["Se abre como una ventana nativa sin interfaz de navegador."]},"Browser":{"*":["Navegador"]},"Profile Settings":{"*":["Configuración del perfil"]},"Configure a separate browser profile for this webapp":{"*":["Configura un perfil de navegador separado para esta aplicación web."]},"Use separate profile":{"*":["Usar perfil separado"]},"Allows independent cookies and sessions":{"*":["Permite cookies y sesiones independientes"]},"Profile Name":{"*":["Nombre de perfil"]},"Save":{"*":["Guardar"]},"Loading...":{"*":["Cargando..."]},"Detecting website information, please wait":{"*":["Detectando información del sitio web, por favor espere."]},"Please enter a URL first.":{"*":["Por favor, ingrese una URL primero."]},"Please enter a name for the WebApp.":{"*":["Por favor, ingrese un nombre para la WebApp."]},"Please enter a URL for the WebApp.":{"*":["Por favor, ingrese una URL para la WebApp."]},"Please select a browser for the WebApp.":{"*":["Por favor, seleccione un navegador para la WebApp."]},"WebApps Manager":{"*":["Administrador de WebApps"]},"Search WebApps":{"*":["Buscar WebApps"]},"Main Menu":{"*":["Menú Principal"]},"Refresh":{"*":["Actualizar"]},"Export WebApps":{"*":["Exportar WebApps"]},"Import WebApps":{"*":["Importar WebApps"]},"Browse Applications Folder":{"*":["Explorar la carpeta de aplicaciones"]},"Browse Profiles Folder":{"*":["Explorar carpeta de perfiles"]},"Show Welcome Screen":{"*":["Mostrar Pantalla de Bienvenida"]},"Remove All WebApps":{"*":["Eliminar todas las aplicaciones web"]},"About":{"*":["Acerca de"]},"Add":{"*":["Agregar"]},"No WebApps Found":{"*":["No se encontraron aplicaciones web."]},"Add a new webapp to get started":{"*":["Agrega una nueva aplicación web para comenzar."]},"WebApp created successfully":{"*":["WebApp creado con éxito"]},"WebApp updated successfully":{"*":["WebApp actualizado con éxito"]},"Browser changed to {0}":{"*":["El navegador ha cambiado a {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["¿Estás seguro de que deseas eliminar {0}?\n\nURL: {1}\nNavegador: {2}"]},"Also delete configuration folder":{"*":["También elimina la carpeta de configuración."]},"Delete":{"*":["Eliminar"]},"WebApp deleted successfully":{"*":["WebApp eliminada con éxito"]},"REMOVE ALL":{"*":["ELIMINAR TODO"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["¿Estás seguro de que deseas eliminar todas tus WebApps? Esta acción no se puede deshacer.\n\nEscribe \"{0}\" para confirmar."]},"Remove All":{"*":["Eliminar todo"]},"All WebApps have been removed":{"*":["Todas las aplicaciones web han sido eliminadas."]},"Failed to remove all WebApps":{"*":["No se pudo eliminar todas las aplicaciones web."]},"Icon {0} of {1}":{"*":["Icono {0} de {1}"]},"WebApps exported successfully":{"*":["WebApps exportados con éxito"]},"No WebApps":{"*":["Sin WebApps"]},"There are no WebApps to export.":{"*":["No hay WebApps para exportar."]},"The selected file does not exist.":{"*":["El archivo seleccionado no existe."]},"The selected file is not a valid ZIP archive.":{"*":["El archivo seleccionado no es un archivo ZIP válido."]},"Error importing WebApps":{"*":["Error al importar WebApps"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["Se importaron {} WebApps con éxito ({} duplicados omitidos)"]},"Imported {} WebApps successfully":{"*":["WebApps {} importados con éxito."]},"No":{"*":["No"]},"Yes":{"*":["Sí"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/es.po b/biglinux-webapps/locale/es.po index 6bec8500..bd9eb1df 100644 --- a/biglinux-webapps/locale/es.po +++ b/biglinux-webapps/locale/es.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the biglinux-webapps package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" "Project-Id-Version: biglinux-webapps\n" @@ -14,442 +14,750 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Plantillas" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Elige una plantilla" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Buscar plantillas..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 -msgid "Search templates" -msgstr "Buscar plantillas" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Resultados de búsqueda" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "No se encontraron plantillas." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 -#, python-brace-format -msgid "Browser: {0}" -msgstr "Navegador: {0}" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Editar WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 -#, python-brace-format -msgid "Edit {0}" -msgstr "Editar {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Eliminar WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 -#, python-brace-format -msgid "Delete {0}" -msgstr "Eliminar {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:20 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Bienvenido a WebApps Manager" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 -msgid "" -"What are WebApps?\n" -"\n" -"WebApps are web applications that run in a dedicated browser window, providing a more app-like " -"experience for your favorite websites.\n" -"\n" -"Benefits of using WebApps:\n" -"\n" -"• Focus: Work without the distractions of other browser tabs\n" -"• Desktop Integration: Quick access from your application menu\n" -"• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" -msgstr "" -"¿Qué son las WebApps?\n" -"\n" -"Las WebApps son aplicaciones web que se ejecutan en una ventana de navegador dedicada, " -"proporcionando una experiencia más similar a una aplicación para tus sitios web favoritos.\n" -"\n" -"Beneficios de usar WebApps:\n" -"\n" -"• Enfoque: Trabaja sin las distracciones de otras pestañas del navegador\n" -"• Integración de Escritorio: Acceso rápido desde tu menú de aplicaciones\n" -"• Perfiles Aislados: Opcionalmente, cada webapp puede tener sus propias cookies y " -"configuraciones\n" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "No mostrar esto de nuevo" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Comencemos" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Seleccionar navegador" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:99 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:225 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:291 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Cancelar" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Seleccionar" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 -msgid "System Default" -msgstr "Predeterminado del sistema" -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 -msgid "Default" -msgstr "Predeterminado" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 -msgid "Please select a browser." -msgstr "Por favor, selecciona un navegador." -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 -msgid "Error" -msgstr "Error" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "Aceptar" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Agregar WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 -msgid "Choose from templates" -msgstr "Elige de las plantillas" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 -msgid "Detect" -msgstr "Detectar" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Detectar nombre e ícono del sitio web" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Nombre" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 -msgid "App Icon" -msgstr "Ícono de la aplicación" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 -msgid "Select icon for the WebApp" -msgstr "Seleccionar ícono para la WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 -msgid "Available Icons" -msgstr "Iconos disponibles" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Categoría" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 -msgid "Application Mode" -msgstr "Modo de aplicación" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Se abre como una ventana nativa sin interfaz de navegador." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 +#. -- Browser row (hidden in app mode) -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Navegador" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 -msgid "Profile Settings" -msgstr "Configuración del perfil" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 -msgid "Configure a separate browser profile for this webapp" -msgstr "Configura un perfil de navegador separado para esta aplicación web." -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -msgid "Use separate profile" -msgstr "Usar perfil separado" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Permite cookies y sesiones independientes" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Nombre de perfil" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Guardar" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Cargando..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 -msgid "Detecting website information, please wait" -msgstr "Detectando información del sitio web, por favor espere." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 -msgid "Please enter a URL first." -msgstr "Por favor, ingrese una URL primero." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 -msgid "Please enter a name for the WebApp." -msgstr "Por favor, ingrese un nombre para la WebApp." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 -msgid "Please enter a URL for the WebApp." -msgstr "Por favor, ingrese una URL para la WebApp." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 -msgid "Please select a browser for the WebApp." -msgstr "Por favor, seleccione un navegador para la WebApp." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "Administrador de WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Buscar WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 -msgid "Main Menu" -msgstr "Menú Principal" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 -msgid "Refresh" -msgstr "Actualizar" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Exportar WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Importar WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Explorar la carpeta de aplicaciones" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Explorar carpeta de perfiles" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 -msgid "Show Welcome Screen" -msgstr "Mostrar Pantalla de Bienvenida" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Eliminar todas las aplicaciones web" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "Acerca de" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 -msgid "Add" -msgstr "Agregar" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 -msgid "No WebApps Found" -msgstr "No se encontraron aplicaciones web." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Agrega una nueva aplicación web para comenzar." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "WebApp creado con éxito" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "WebApp actualizado con éxito" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 -#, python-brace-format -msgid "Browser changed to {0}" -msgstr "El navegador ha cambiado a {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 -#, python-brace-format -msgid "" -"Are you sure you want to delete {0}?\n" -"\n" -"URL: {1}\n" -"Browser: {2}" -msgstr "" -"¿Estás seguro de que deseas eliminar {0}?\n" -"\n" -"URL: {1}\n" -"Navegador: {2}" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "También elimina la carpeta de configuración." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Eliminar" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "WebApp eliminada con éxito" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 -msgid "REMOVE ALL" -msgstr "ELIMINAR TODO" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 -#, python-brace-format -msgid "" -"Are you sure you want to remove all your WebApps? This action cannot be undone.\n" -"\n" -"Type \"{0}\" to confirm." -msgstr "" -"¿Estás seguro de que deseas eliminar todas tus WebApps? Esta acción no se puede deshacer.\n" -"\n" -"Escribe \"{0}\" para confirmar." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Eliminar todo" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Todas las aplicaciones web han sido eliminadas." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "No se pudo eliminar todas las aplicaciones web." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 -#, python-brace-format -msgid "Icon {0} of {1}" -msgstr "Icono {0} de {1}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebApps exportados con éxito" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Sin WebApps" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 +msgid "Change browser" +msgstr "Cambiar navegador" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 +msgid "Edit" +msgstr "Editar" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 +msgid "New WebApp" +msgstr "Nueva WebApp" + +#. -- Icon row -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 +msgid "Icon" +msgstr "Ícono" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 +msgid "App Mode" +msgstr "Modo de aplicación" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 +msgid "Separate Profile" +msgstr "Perfil separado" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 +msgid "Select Icon" +msgstr "Seleccionar ícono" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 +msgid "Images" +msgstr "Imágenes" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 +msgid "ZIP files" +msgstr "Archivos ZIP" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 +#, rust-format +msgid "Imported {imported}, skipped {dups} duplicates" +msgstr "Importados {imported}, duplicados {dups} omitidos" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 +msgid "Import failed" +msgstr "Falló la importación" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 +msgid "Export failed" +msgstr "Falló la exportación" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 +msgid "" +"This will delete all webapps and their desktop entries. This cannot be " +"undone." +msgstr "" +"Esto eliminará todas las webapps y sus accesos directos en el escritorio. " +"Esta acción no se puede deshacer." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 +msgid "Browser changed" +msgstr "Navegador cambiado" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 +msgid "What are WebApps?" +msgstr "¿Qué son las WebApps?" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 +msgid "" +"WebApps are web applications that run in a dedicated browser window, " +"providing a more app-like experience for your favorite websites." +msgstr "" +"Las WebApps son aplicaciones web que se ejecutan en una ventana de navegador" +" dedicada, proporcionando una experiencia más similar a una aplicación para " +"tus sitios web favoritos." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 +msgid "Benefits of using WebApps:" +msgstr "Beneficios de usar WebApps:" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Focus" +msgstr "Enfoque" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Work without the distractions of other browser tabs" +msgstr "Trabaja sin las distracciones de otras pestañas del navegador" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Desktop Integration" +msgstr "Integración con el escritorio" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Quick access from your application menu" +msgstr "Acceso rápido desde tu menú de aplicaciones" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Isolated Profiles" +msgstr "Perfiles aislados" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Each webapp can have its own cookies and settings" +msgstr "Cada webapp puede tener sus propias cookies y configuraciones" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 +msgid "Back" +msgstr "Atrás" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 +msgid "Forward" +msgstr "Adelante" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 +msgid "Reload" +msgstr "Recargar" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 +msgid "Fullscreen" +msgstr "Pantalla completa" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 +msgid "Enter URL…" +msgstr "Introducir URL…" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 +msgid "Zoom In" +msgstr "Acercar" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 +msgid "Zoom Out" +msgstr "Alejar" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 +msgid "Reset Zoom" +msgstr "Restablecer zoom" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 +msgid "Developer Tools" +msgstr "Herramientas de desarrollador" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 +msgid "Menu" +msgstr "Menú" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 +msgid "Open Link in Browser" +msgstr "Abrir enlace en el navegador" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 +msgid "Download Complete" +msgstr "Descarga completa" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 +msgid "Save File" +msgstr "Guardar archivo" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 +#~ msgid "Search templates" +#~ msgstr "Buscar plantillas" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 +#, python-brace-format +#~ msgid "Browser: {0}" +#~ msgstr "Navegador: {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 +#, python-brace-format +#~ msgid "Edit {0}" +#~ msgstr "Editar {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 +#, python-brace-format +#~ msgid "Delete {0}" +#~ msgstr "Eliminar {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 +#~ msgid "" +#~ "What are WebApps?\n" +#~ "\n" +#~ "WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n" +#~ "\n" +#~ "Benefits of using WebApps:\n" +#~ "\n" +#~ "• Focus: Work without the distractions of other browser tabs\n" +#~ "• Desktop Integration: Quick access from your application menu\n" +#~ "• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" +#~ msgstr "" +#~ "¿Qué son las WebApps?\n" +#~ "\n" +#~ "Las WebApps son aplicaciones web que se ejecutan en una ventana de navegador dedicada, proporcionando una experiencia más similar a una aplicación para tus sitios web favoritos.\n" +#~ "\n" +#~ "Beneficios de usar WebApps:\n" +#~ "\n" +#~ "• Enfoque: Trabaja sin las distracciones de otras pestañas del navegador\n" +#~ "• Integración de Escritorio: Acceso rápido desde tu menú de aplicaciones\n" +#~ "• Perfiles Aislados: Opcionalmente, cada webapp puede tener sus propias cookies y configuraciones\n" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 +#~ msgid "System Default" +#~ msgstr "Predeterminado del sistema" + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 -msgid "There are no WebApps to export." -msgstr "No hay WebApps para exportar." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 -msgid "The selected file does not exist." -msgstr "El archivo seleccionado no existe." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 -msgid "The selected file is not a valid ZIP archive." -msgstr "El archivo seleccionado no es un archivo ZIP válido." +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 -msgid "Error importing WebApps" -msgstr "Error al importar WebApps" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 +#~ msgid "Default" +#~ msgstr "Predeterminado" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 +#~ msgid "Please select a browser." +#~ msgstr "Por favor, selecciona un navegador." + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 -msgid "Imported {} WebApps successfully ({} duplicates skipped)" -msgstr "Se importaron {} WebApps con éxito ({} duplicados omitidos)" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 +#~ msgid "Error" +#~ msgstr "Error" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 +#~ msgid "Choose from templates" +#~ msgstr "Elige de las plantillas" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 +#~ msgid "Detect" +#~ msgstr "Detectar" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 +#~ msgid "App Icon" +#~ msgstr "Ícono de la aplicación" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 +#~ msgid "Select icon for the WebApp" +#~ msgstr "Seleccionar ícono para la WebApp" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 +#~ msgid "Available Icons" +#~ msgstr "Iconos disponibles" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 +#~ msgid "Application Mode" +#~ msgstr "Modo de aplicación" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 +#~ msgid "Profile Settings" +#~ msgstr "Configuración del perfil" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 +#~ msgid "Configure a separate browser profile for this webapp" +#~ msgstr "Configura un perfil de navegador separado para esta aplicación web." + +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 -msgid "Imported {} WebApps successfully" -msgstr "WebApps {} importados con éxito." +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 -msgid "No" -msgstr "No" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 -msgid "Yes" -msgstr "Sí" +#~ msgid "Use separate profile" +#~ msgstr "Usar perfil separado" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 +#~ msgid "Detecting website information, please wait" +#~ msgstr "Detectando información del sitio web, por favor espere." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 +#~ msgid "Please enter a URL first." +#~ msgstr "Por favor, ingrese una URL primero." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 +#~ msgid "Please enter a name for the WebApp." +#~ msgstr "Por favor, ingrese un nombre para la WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 +#~ msgid "Please enter a URL for the WebApp." +#~ msgstr "Por favor, ingrese una URL para la WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 +#~ msgid "Please select a browser for the WebApp." +#~ msgstr "Por favor, seleccione un navegador para la WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 +#~ msgid "Main Menu" +#~ msgstr "Menú Principal" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 +#~ msgid "Refresh" +#~ msgstr "Actualizar" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 +#~ msgid "Show Welcome Screen" +#~ msgstr "Mostrar Pantalla de Bienvenida" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 +#~ msgid "Add" +#~ msgstr "Agregar" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 +#~ msgid "No WebApps Found" +#~ msgstr "No se encontraron aplicaciones web." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 +#, python-brace-format +#~ msgid "Browser changed to {0}" +#~ msgstr "El navegador ha cambiado a {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to delete {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Browser: {2}" +#~ msgstr "" +#~ "¿Estás seguro de que deseas eliminar {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Navegador: {2}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 +#~ msgid "REMOVE ALL" +#~ msgstr "ELIMINAR TODO" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to remove all your WebApps? This action cannot be undone.\n" +#~ "\n" +#~ "Type \"{0}\" to confirm." +#~ msgstr "" +#~ "¿Estás seguro de que deseas eliminar todas tus WebApps? Esta acción no se puede deshacer.\n" +#~ "\n" +#~ "Escribe \"{0}\" para confirmar." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 +#, python-brace-format +#~ msgid "Icon {0} of {1}" +#~ msgstr "Icono {0} de {1}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#~ msgid "There are no WebApps to export." +#~ msgstr "No hay WebApps para exportar." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 +#~ msgid "The selected file does not exist." +#~ msgstr "El archivo seleccionado no existe." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 +#~ msgid "The selected file is not a valid ZIP archive." +#~ msgstr "El archivo seleccionado no es un archivo ZIP válido." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 +#~ msgid "Error importing WebApps" +#~ msgstr "Error al importar WebApps" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 +#~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" +#~ msgstr "Se importaron {} WebApps con éxito ({} duplicados omitidos)" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 +#~ msgid "Imported {} WebApps successfully" +#~ msgstr "WebApps {} importados con éxito." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 +#~ msgid "No" +#~ msgstr "No" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 +#~ msgid "Yes" +#~ msgstr "Sí" diff --git a/biglinux-webapps/locale/et.json b/biglinux-webapps/locale/et.json deleted file mode 100644 index b6ec6083..00000000 --- a/biglinux-webapps/locale/et.json +++ /dev/null @@ -1 +0,0 @@ -{"et":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Mallid"]},"Choose a Template":{"*":["Vali mall."]},"Search templates...":{"*":["Otsi malle..."]},"Search templates":{"*":["Otsi malle"]},"Search Results":{"*":["Otsingutulemused"]},"No templates found":{"*":["Malle ei leitud"]},"Browser: {0}":{"*":["Brauser: {0}"]},"Edit WebApp":{"*":["Muuda Veebirakendust"]},"Edit {0}":{"*":["Muuda {0}"]},"Delete WebApp":{"*":["Kustuta Veebirakendus"]},"Delete {0}":{"*":["Kustuta {0}"]},"Welcome to WebApps Manager":{"*":["Tere tulemast WebApps Managerisse"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Mis on WebAppid?\n\nWebAppid on veebirakendused, mis töötavad spetsiaalses brauseriaknas, pakkudes teie lemmikveebisaitide jaoks rakendusele sarnast kogemust.\n\nWebAppide kasutamise eelised:\n\n• Fookus: Töö ilma teiste brauseri vahekaartide häirivate teguriteta\n• Desktopi integreerimine: Kiire juurdepääs teie rakenduse menüüst\n• Isoleeritud profiilid: Valikuliselt võib igal veebirakendusel olla oma küpsised ja seaded\n"]},"Don't show this again":{"*":["Ära näita seda uuesti"]},"Let's Start":{"*":["Alustame"]},"Select Browser":{"*":["Vali brauser"]},"Cancel":{"*":["Tühista"]},"Select":{"*":["Vali"]},"System Default":{"*":["Süsteemi vaikeväärtus"]},"Default":{"*":["Vaikimisi"]},"Please select a browser.":{"*":["Palun valige brauser."]},"Error":{"*":["Viga"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Lisa WebApp"]},"Choose from templates":{"*":["Vali mallide hulgast"]},"URL":{"*":["URL"]},"Detect":{"*":["Tuvasta"]},"Detect name and icon from website":{"*":["Tuvasta nimi ja ikoon veebisaidilt"]},"Name":{"*":["Nimi"]},"App Icon":{"*":["Rakenduse ikoon"]},"Select icon for the WebApp":{"*":["Vali ikoon WebApp'i jaoks"]},"Available Icons":{"*":["Saadaval ikoonid"]},"Category":{"*":["Kategooria"]},"Application Mode":{"*":["Rakenduse režiim"]},"Opens as a native window without browser interface":{"*":["Avatakse natiivse aknana ilma brauseri liideseta."]},"Browser":{"*":["Brauser"]},"Profile Settings":{"*":["Profiili seaded"]},"Configure a separate browser profile for this webapp":{"*":["Konfigureeri selle veebirakenduse jaoks eraldi brauseri profiil."]},"Use separate profile":{"*":["Kasutage eraldi profiili"]},"Allows independent cookies and sessions":{"*":["Lubab sõltumatud küpsised ja seansid"]},"Profile Name":{"*":["Profiili nimi"]},"Save":{"*":["Salvesta"]},"Loading...":{"*":["Laadimine..."]},"Detecting website information, please wait":{"*":["Veebiteabe tuvastamine, palun oota"]},"Please enter a URL first.":{"*":["Palun sisestage esmalt URL."]},"Please enter a name for the WebApp.":{"*":["Palun sisestage veebirakenduse nimi."]},"Please enter a URL for the WebApp.":{"*":["Palun sisestage URL WebApp'i jaoks."]},"Please select a browser for the WebApp.":{"*":["Palun valige veebirakenduse jaoks brauser."]},"WebApps Manager":{"*":["Veebirakenduste haldur"]},"Search WebApps":{"*":["Otsi Veebirakendusi"]},"Main Menu":{"*":["Peamenüü"]},"Refresh":{"*":["Värskenda"]},"Export WebApps":{"*":["Ekspordi Veebirakendused"]},"Import WebApps":{"*":["Impordi veebirakendused"]},"Browse Applications Folder":{"*":["Sirvi rakenduste kausta"]},"Browse Profiles Folder":{"*":["Sirvi profiilide kausta"]},"Show Welcome Screen":{"*":["Kuva Tere tulemast ekraanile"]},"Remove All WebApps":{"*":["Eemalda kõik veebirakendused"]},"About":{"*":["Teave"]},"Add":{"*":["Lisa"]},"No WebApps Found":{"*":["Veebirakendusi ei leitud"]},"Add a new webapp to get started":{"*":["Lisa uus veebirakendus, et alustada."]},"WebApp created successfully":{"*":["Veebirakendus loodi edukalt"]},"WebApp updated successfully":{"*":["Veebirakendus on edukalt uuendatud"]},"Browser changed to {0}":{"*":["Brauser on muutunud {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Kas olete kindel, et soovite kustutada {0}?\n\nURL: {1} \nBrauser: {2}"]},"Also delete configuration folder":{"*":["Kustuta ka konfiguratsioonikaust."]},"Delete":{"*":["Kustuta"]},"WebApp deleted successfully":{"*":["Veebirakendus kustutati edukalt"]},"REMOVE ALL":{"*":["Eemalda kõik"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Kas olete kindel, et soovite eemaldada kõik oma veebirakendused? Seda toimingut ei saa tagasi võtta.\n\nKinnitage, kirjutades \"{0}\"."]},"Remove All":{"*":["Eemalda kõik"]},"All WebApps have been removed":{"*":["Kõik veebirakendused on eemaldatud."]},"Failed to remove all WebApps":{"*":["Eba kõik WebAppid eemaldada."]},"Icon {0} of {1}":{"*":["Ikoon {0} {1}"]},"WebApps exported successfully":{"*":["WebApps eksporditi edukalt"]},"No WebApps":{"*":["Ei veebirakendusi"]},"There are no WebApps to export.":{"*":["WebApp'e eksportimiseks ei ole."]},"The selected file does not exist.":{"*":["Valitud faili ei eksisteeri."]},"The selected file is not a valid ZIP archive.":{"*":["Valitud fail ei ole kehtiv ZIP arhiiv."]},"Error importing WebApps":{"*":["Veateade WebAppide importimisel"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["Imporditi {} WebAppsi edukalt ({} duplikaate vahele jäetud)"]},"Imported {} WebApps successfully":{"*":["Imporditud {} WebAppsid edukalt"]},"No":{"*":["Ei"]},"Yes":{"*":["Jah"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/et.po b/biglinux-webapps/locale/et.po index 7fab3a6e..4831fb3c 100644 --- a/biglinux-webapps/locale/et.po +++ b/biglinux-webapps/locale/et.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the biglinux-webapps package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" "Project-Id-Version: biglinux-webapps\n" @@ -14,442 +14,749 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Mallid" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Vali mall." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Otsi malle..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 -msgid "Search templates" -msgstr "Otsi malle" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Otsingutulemused" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Malle ei leitud" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 -#, python-brace-format -msgid "Browser: {0}" -msgstr "Brauser: {0}" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Muuda Veebirakendust" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 -#, python-brace-format -msgid "Edit {0}" -msgstr "Muuda {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Kustuta Veebirakendus" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 -#, python-brace-format -msgid "Delete {0}" -msgstr "Kustuta {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:20 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Tere tulemast WebApps Managerisse" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 -msgid "" -"What are WebApps?\n" -"\n" -"WebApps are web applications that run in a dedicated browser window, providing a more app-like " -"experience for your favorite websites.\n" -"\n" -"Benefits of using WebApps:\n" -"\n" -"• Focus: Work without the distractions of other browser tabs\n" -"• Desktop Integration: Quick access from your application menu\n" -"• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" -msgstr "" -"Mis on WebAppid?\n" -"\n" -"WebAppid on veebirakendused, mis töötavad spetsiaalses brauseriaknas, pakkudes teie " -"lemmikveebisaitide jaoks rakendusele sarnast kogemust.\n" -"\n" -"WebAppide kasutamise eelised:\n" -"\n" -"• Fookus: Töö ilma teiste brauseri vahekaartide häirivate teguriteta\n" -"• Desktopi integreerimine: Kiire juurdepääs teie rakenduse menüüst\n" -"• Isoleeritud profiilid: Valikuliselt võib igal veebirakendusel olla oma küpsised ja seaded\n" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Ära näita seda uuesti" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Alustame" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Vali brauser" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:99 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:225 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:291 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Tühista" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Vali" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 -msgid "System Default" -msgstr "Süsteemi vaikeväärtus" -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 -msgid "Default" -msgstr "Vaikimisi" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 -msgid "Please select a browser." -msgstr "Palun valige brauser." -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 -msgid "Error" -msgstr "Viga" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "OK" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Lisa WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 -msgid "Choose from templates" -msgstr "Vali mallide hulgast" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 -msgid "Detect" -msgstr "Tuvasta" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Tuvasta nimi ja ikoon veebisaidilt" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Nimi" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 -msgid "App Icon" -msgstr "Rakenduse ikoon" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 -msgid "Select icon for the WebApp" -msgstr "Vali ikoon WebApp'i jaoks" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 -msgid "Available Icons" -msgstr "Saadaval ikoonid" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Kategooria" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 -msgid "Application Mode" -msgstr "Rakenduse režiim" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Avatakse natiivse aknana ilma brauseri liideseta." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 +#. -- Browser row (hidden in app mode) -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Brauser" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 -msgid "Profile Settings" -msgstr "Profiili seaded" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 -msgid "Configure a separate browser profile for this webapp" -msgstr "Konfigureeri selle veebirakenduse jaoks eraldi brauseri profiil." -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -msgid "Use separate profile" -msgstr "Kasutage eraldi profiili" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Lubab sõltumatud küpsised ja seansid" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Profiili nimi" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Salvesta" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Laadimine..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 -msgid "Detecting website information, please wait" -msgstr "Veebiteabe tuvastamine, palun oota" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 -msgid "Please enter a URL first." -msgstr "Palun sisestage esmalt URL." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 -msgid "Please enter a name for the WebApp." -msgstr "Palun sisestage veebirakenduse nimi." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 -msgid "Please enter a URL for the WebApp." -msgstr "Palun sisestage URL WebApp'i jaoks." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 -msgid "Please select a browser for the WebApp." -msgstr "Palun valige veebirakenduse jaoks brauser." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "Veebirakenduste haldur" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Otsi Veebirakendusi" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 -msgid "Main Menu" -msgstr "Peamenüü" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 -msgid "Refresh" -msgstr "Värskenda" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Ekspordi Veebirakendused" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Impordi veebirakendused" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Sirvi rakenduste kausta" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Sirvi profiilide kausta" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 -msgid "Show Welcome Screen" -msgstr "Kuva Tere tulemast ekraanile" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Eemalda kõik veebirakendused" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "Teave" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 -msgid "Add" -msgstr "Lisa" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 -msgid "No WebApps Found" -msgstr "Veebirakendusi ei leitud" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Lisa uus veebirakendus, et alustada." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "Veebirakendus loodi edukalt" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "Veebirakendus on edukalt uuendatud" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 -#, python-brace-format -msgid "Browser changed to {0}" -msgstr "Brauser on muutunud {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 -#, python-brace-format -msgid "" -"Are you sure you want to delete {0}?\n" -"\n" -"URL: {1}\n" -"Browser: {2}" -msgstr "" -"Kas olete kindel, et soovite kustutada {0}?\n" -"\n" -"URL: {1} \n" -"Brauser: {2}" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Kustuta ka konfiguratsioonikaust." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Kustuta" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "Veebirakendus kustutati edukalt" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 -msgid "REMOVE ALL" -msgstr "Eemalda kõik" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 -#, python-brace-format -msgid "" -"Are you sure you want to remove all your WebApps? This action cannot be undone.\n" -"\n" -"Type \"{0}\" to confirm." -msgstr "" -"Kas olete kindel, et soovite eemaldada kõik oma veebirakendused? Seda toimingut ei saa tagasi " -"võtta.\n" -"\n" -"Kinnitage, kirjutades \"{0}\"." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Eemalda kõik" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Kõik veebirakendused on eemaldatud." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Eba kõik WebAppid eemaldada." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 -#, python-brace-format -msgid "Icon {0} of {1}" -msgstr "Ikoon {0} {1}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebApps eksporditi edukalt" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Ei veebirakendusi" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 +msgid "Change browser" +msgstr "Muuda brauserit" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 +msgid "Edit" +msgstr "Muuda" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 +msgid "New WebApp" +msgstr "Uus WebApp" + +#. -- Icon row -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 +msgid "Icon" +msgstr "Ikoon" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 +msgid "App Mode" +msgstr "Rakenduse režiim" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 +msgid "Separate Profile" +msgstr "Eraldi profiil" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 +msgid "Select Icon" +msgstr "Vali ikoon" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 +msgid "Images" +msgstr "Pildid" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 +msgid "ZIP files" +msgstr "ZIP-failid" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 +#, rust-format +msgid "Imported {imported}, skipped {dups} duplicates" +msgstr "Imporditud {imported}, vahele jäetud {dups} dubleeritud kirjet" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 +msgid "Import failed" +msgstr "Import ebaõnnestus" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 +msgid "Export failed" +msgstr "Eksport ebaõnnestus" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 +msgid "" +"This will delete all webapps and their desktop entries. This cannot be " +"undone." +msgstr "" +"See kustutab kõik webapp’id ja nende töölaua kirjed. Seda ei saa tagasi " +"võtta." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 +msgid "Browser changed" +msgstr "Brauser vahetatud" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 +msgid "What are WebApps?" +msgstr "Mis on WebApp’id?" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 +msgid "" +"WebApps are web applications that run in a dedicated browser window, " +"providing a more app-like experience for your favorite websites." +msgstr "" +"WebApps on veebirakendused, mis töötavad pühendatud brauseriaknas, pakkudes " +"teie lemmikveebisaitidele rohkem rakenduse-laadset kogemust." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 +msgid "Benefits of using WebApps:" +msgstr "WebAppsi kasutamise eelised:" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Focus" +msgstr "Keskendumine" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Work without the distractions of other browser tabs" +msgstr "Töötage ilma teiste brauseri vahelehtede segamiseta" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Desktop Integration" +msgstr "Töölaudade integratsioon" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Quick access from your application menu" +msgstr "Kiire ligipääs teie rakenduste menüüst" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Isolated Profiles" +msgstr "Isolatsiooniprofiilid" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Each webapp can have its own cookies and settings" +msgstr "Igal webappil võib olla oma küpsised ja seaded" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 +msgid "Back" +msgstr "Tagasi" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 +msgid "Forward" +msgstr "Edasi" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 +msgid "Reload" +msgstr "Värskenda" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 +msgid "Fullscreen" +msgstr "Täisekraan" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 +msgid "Enter URL…" +msgstr "Sisesta URL…" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 +msgid "Zoom In" +msgstr "Suurenda" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 +msgid "Zoom Out" +msgstr "Vähenda" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 +msgid "Reset Zoom" +msgstr "Lähtesta suum" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 +msgid "Developer Tools" +msgstr "Arendajatööriistad" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 +msgid "Menu" +msgstr "Menüü" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 +msgid "Open Link in Browser" +msgstr "Ava link brauseris" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 +msgid "Download Complete" +msgstr "Allalaadimine lõpetatud" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 +msgid "Save File" +msgstr "Salvesta fail" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 +#~ msgid "Search templates" +#~ msgstr "Otsi malle" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 +#, python-brace-format +#~ msgid "Browser: {0}" +#~ msgstr "Brauser: {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 +#, python-brace-format +#~ msgid "Edit {0}" +#~ msgstr "Muuda {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 +#, python-brace-format +#~ msgid "Delete {0}" +#~ msgstr "Kustuta {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 +#~ msgid "" +#~ "What are WebApps?\n" +#~ "\n" +#~ "WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n" +#~ "\n" +#~ "Benefits of using WebApps:\n" +#~ "\n" +#~ "• Focus: Work without the distractions of other browser tabs\n" +#~ "• Desktop Integration: Quick access from your application menu\n" +#~ "• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" +#~ msgstr "" +#~ "Mis on WebAppid?\n" +#~ "\n" +#~ "WebAppid on veebirakendused, mis töötavad spetsiaalses brauseriaknas, pakkudes teie lemmikveebisaitide jaoks rakendusele sarnast kogemust.\n" +#~ "\n" +#~ "WebAppide kasutamise eelised:\n" +#~ "\n" +#~ "• Fookus: Töö ilma teiste brauseri vahekaartide häirivate teguriteta\n" +#~ "• Desktopi integreerimine: Kiire juurdepääs teie rakenduse menüüst\n" +#~ "• Isoleeritud profiilid: Valikuliselt võib igal veebirakendusel olla oma küpsised ja seaded\n" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 +#~ msgid "System Default" +#~ msgstr "Süsteemi vaikeväärtus" + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 -msgid "There are no WebApps to export." -msgstr "WebApp'e eksportimiseks ei ole." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 -msgid "The selected file does not exist." -msgstr "Valitud faili ei eksisteeri." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 -msgid "The selected file is not a valid ZIP archive." -msgstr "Valitud fail ei ole kehtiv ZIP arhiiv." +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 -msgid "Error importing WebApps" -msgstr "Veateade WebAppide importimisel" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 +#~ msgid "Default" +#~ msgstr "Vaikimisi" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 +#~ msgid "Please select a browser." +#~ msgstr "Palun valige brauser." + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 -msgid "Imported {} WebApps successfully ({} duplicates skipped)" -msgstr "Imporditi {} WebAppsi edukalt ({} duplikaate vahele jäetud)" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 +#~ msgid "Error" +#~ msgstr "Viga" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 +#~ msgid "Choose from templates" +#~ msgstr "Vali mallide hulgast" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 +#~ msgid "Detect" +#~ msgstr "Tuvasta" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 +#~ msgid "App Icon" +#~ msgstr "Rakenduse ikoon" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 +#~ msgid "Select icon for the WebApp" +#~ msgstr "Vali ikoon WebApp'i jaoks" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 +#~ msgid "Available Icons" +#~ msgstr "Saadaval ikoonid" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 +#~ msgid "Application Mode" +#~ msgstr "Rakenduse režiim" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 +#~ msgid "Profile Settings" +#~ msgstr "Profiili seaded" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 +#~ msgid "Configure a separate browser profile for this webapp" +#~ msgstr "Konfigureeri selle veebirakenduse jaoks eraldi brauseri profiil." + +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 -msgid "Imported {} WebApps successfully" -msgstr "Imporditud {} WebAppsid edukalt" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 -msgid "No" -msgstr "Ei" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 -msgid "Yes" -msgstr "Jah" +#~ msgid "Use separate profile" +#~ msgstr "Kasutage eraldi profiili" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 +#~ msgid "Detecting website information, please wait" +#~ msgstr "Veebiteabe tuvastamine, palun oota" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 +#~ msgid "Please enter a URL first." +#~ msgstr "Palun sisestage esmalt URL." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 +#~ msgid "Please enter a name for the WebApp." +#~ msgstr "Palun sisestage veebirakenduse nimi." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 +#~ msgid "Please enter a URL for the WebApp." +#~ msgstr "Palun sisestage URL WebApp'i jaoks." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 +#~ msgid "Please select a browser for the WebApp." +#~ msgstr "Palun valige veebirakenduse jaoks brauser." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 +#~ msgid "Main Menu" +#~ msgstr "Peamenüü" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 +#~ msgid "Refresh" +#~ msgstr "Värskenda" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 +#~ msgid "Show Welcome Screen" +#~ msgstr "Kuva Tere tulemast ekraanile" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 +#~ msgid "Add" +#~ msgstr "Lisa" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 +#~ msgid "No WebApps Found" +#~ msgstr "Veebirakendusi ei leitud" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 +#, python-brace-format +#~ msgid "Browser changed to {0}" +#~ msgstr "Brauser on muutunud {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to delete {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Browser: {2}" +#~ msgstr "" +#~ "Kas olete kindel, et soovite kustutada {0}?\n" +#~ "\n" +#~ "URL: {1} \n" +#~ "Brauser: {2}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 +#~ msgid "REMOVE ALL" +#~ msgstr "Eemalda kõik" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to remove all your WebApps? This action cannot be undone.\n" +#~ "\n" +#~ "Type \"{0}\" to confirm." +#~ msgstr "" +#~ "Kas olete kindel, et soovite eemaldada kõik oma veebirakendused? Seda toimingut ei saa tagasi võtta.\n" +#~ "\n" +#~ "Kinnitage, kirjutades \"{0}\"." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 +#, python-brace-format +#~ msgid "Icon {0} of {1}" +#~ msgstr "Ikoon {0} {1}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#~ msgid "There are no WebApps to export." +#~ msgstr "WebApp'e eksportimiseks ei ole." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 +#~ msgid "The selected file does not exist." +#~ msgstr "Valitud faili ei eksisteeri." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 +#~ msgid "The selected file is not a valid ZIP archive." +#~ msgstr "Valitud fail ei ole kehtiv ZIP arhiiv." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 +#~ msgid "Error importing WebApps" +#~ msgstr "Veateade WebAppide importimisel" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 +#~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" +#~ msgstr "Imporditi {} WebAppsi edukalt ({} duplikaate vahele jäetud)" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 +#~ msgid "Imported {} WebApps successfully" +#~ msgstr "Imporditud {} WebAppsid edukalt" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 +#~ msgid "No" +#~ msgstr "Ei" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 +#~ msgid "Yes" +#~ msgstr "Jah" diff --git a/biglinux-webapps/locale/fi.json b/biglinux-webapps/locale/fi.json deleted file mode 100644 index 0aad7f92..00000000 --- a/biglinux-webapps/locale/fi.json +++ /dev/null @@ -1 +0,0 @@ -{"fi":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Mallipohjat"]},"Choose a Template":{"*":["Valitse malli"]},"Search templates...":{"*":["Etsi malleja..."]},"Search templates":{"*":["Etsi malleja"]},"Search Results":{"*":["Hakutulokset"]},"No templates found":{"*":["Ei malleja löytynyt"]},"Browser: {0}":{"*":["Selaimen: {0}"]},"Edit WebApp":{"*":["Muokkaa WebAppia"]},"Edit {0}":{"*":["Muokkaa {0}"]},"Delete WebApp":{"*":["Poista WebApp"]},"Delete {0}":{"*":["Poista {0}"]},"Welcome to WebApps Manager":{"*":["Tervetuloa WebApps Manageriin"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Mitkä ovat WebAppit?\n\nWebAppit ovat verkkosovelluksia, jotka toimivat omassa selainikkunassaan, tarjoten sovelluksen kaltaisen kokemuksen suosikkisivustoillesi.\n\nWebAppien käytön edut:\n\n• Keskittyminen: Työskentele ilman muiden selainvälilehtien häiriöitä\n• Työpöytäintegraatio: Nopea pääsy sovellusvalikostasi\n• Eristetyt profiilit: Valinnaisesti jokaisella webappilla voi olla omat evästeensä ja asetuksensa\n"]},"Don't show this again":{"*":["Älä näytä tätä uudelleen"]},"Let's Start":{"*":["Aloitetaan"]},"Select Browser":{"*":["Valitse selain"]},"Cancel":{"*":["Peruuta"]},"Select":{"*":["Valitse"]},"System Default":{"*":["Järjestelmän oletus"]},"Default":{"*":["Oletus"]},"Please select a browser.":{"*":["Valitse selain."]},"Error":{"*":["Virhe"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Lisää WebApp"]},"Choose from templates":{"*":["Valitse malleista"]},"URL":{"*":["URL"]},"Detect":{"*":["Havaitse"]},"Detect name and icon from website":{"*":["Havaitse nimi ja kuvake verkkosivustolta"]},"Name":{"*":["Nimi"]},"App Icon":{"*":["Sovelluksen kuvake"]},"Select icon for the WebApp":{"*":["Valitse kuvake WebAppille"]},"Available Icons":{"*":["Saatavilla olevat kuvakkeet"]},"Category":{"*":["Kategoria"]},"Application Mode":{"*":["Sovellusmoodi"]},"Opens as a native window without browser interface":{"*":["Aukeaa natiivina ikkunana ilman selainliittymää."]},"Browser":{"*":["Selaimen"]},"Profile Settings":{"*":["Profiiliasetukset"]},"Configure a separate browser profile for this webapp":{"*":["Määritä erillinen selainprofiili tälle verkkosovellukselle"]},"Use separate profile":{"*":["Käytä erillistä profiilia"]},"Allows independent cookies and sessions":{"*":["Sallii itsenäiset evästeet ja istunnot"]},"Profile Name":{"*":["Profiilin nimi"]},"Save":{"*":["Tallenna"]},"Loading...":{"*":["Ladataan..."]},"Detecting website information, please wait":{"*":["Tunnistetaan verkkosivuston tietoja, ole hyvä ja odota."]},"Please enter a URL first.":{"*":["Ole hyvä ja syötä ensin URL-osoite."]},"Please enter a name for the WebApp.":{"*":["Ole hyvä ja syötä nimi WebAppille."]},"Please enter a URL for the WebApp.":{"*":["Ole hyvä ja syötä URL-osoite WebAppille."]},"Please select a browser for the WebApp.":{"*":["Valitse selain WebAppia varten."]},"WebApps Manager":{"*":["Verkkosovellusten hallinta"]},"Search WebApps":{"*":["Hae Web-sovelluksia"]},"Main Menu":{"*":["Päävalikko"]},"Refresh":{"*":["Päivitä"]},"Export WebApps":{"*":["Vie Web-sovellukset"]},"Import WebApps":{"*":["Tuonti Web-sovellukset"]},"Browse Applications Folder":{"*":["Selaa sovelluskansiota"]},"Browse Profiles Folder":{"*":["Selaa profiilikansiota"]},"Show Welcome Screen":{"*":["Näytä tervetulonäyttö"]},"Remove All WebApps":{"*":["Poista kaikki WebAppit"]},"About":{"*":["Tietoja"]},"Add":{"*":["Lisää"]},"No WebApps Found":{"*":["Ei Web-sovelluksia löytynyt"]},"Add a new webapp to get started":{"*":["Lisää uusi verkkosovellus aloittaaksesi"]},"WebApp created successfully":{"*":["WebApp luotiin onnistuneesti"]},"WebApp updated successfully":{"*":["WebApp päivitettiin onnistuneesti"]},"Browser changed to {0}":{"*":["Selainta muutettu {0}ksi"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Oletko varma, että haluat poistaa {0}?\n\nURL: {1}\nSelaimen: {2}"]},"Also delete configuration folder":{"*":["Myös poista asetuskansio."]},"Delete":{"*":["Poista"]},"WebApp deleted successfully":{"*":["WebApp poistettu onnistuneesti"]},"REMOVE ALL":{"*":["POISTA KAIKKI"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Oletko varma, että haluat poistaa kaikki WebAppisi? Tätä toimintoa ei voi peruuttaa.\n\nKirjoita \"{0}\" vahvistaaksesi."]},"Remove All":{"*":["Poista kaikki"]},"All WebApps have been removed":{"*":["Kaikki WebAppit on poistettu."]},"Failed to remove all WebApps":{"*":["Kaikkien WebAppien poistaminen epäonnistui."]},"Icon {0} of {1}":{"*":["Kuvake {0} kohteesta {1}"]},"WebApps exported successfully":{"*":["WebApps viety onnistuneesti"]},"No WebApps":{"*":["Ei Web-sovelluksia"]},"There are no WebApps to export.":{"*":["Ei ole WebAppse, joita voisi viedä."]},"The selected file does not exist.":{"*":["Valittua tiedostoa ei ole olemassa."]},"The selected file is not a valid ZIP archive.":{"*":["Valittu tiedosto ei ole voimassa oleva ZIP-arkisto."]},"Error importing WebApps":{"*":["Virhe WebAppsien tuonnissa"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["Tuodut {} WebApps onnistuneesti ({} kaksoiskappaletta ohitettu)"]},"Imported {} WebApps successfully":{"*":["Tuodut {} WebApps onnistuneesti"]},"No":{"*":["Ei"]},"Yes":{"*":["Kyllä"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/fi.po b/biglinux-webapps/locale/fi.po index 2e6c7052..936f31ac 100644 --- a/biglinux-webapps/locale/fi.po +++ b/biglinux-webapps/locale/fi.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the biglinux-webapps package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" "Project-Id-Version: biglinux-webapps\n" @@ -14,442 +14,749 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Mallipohjat" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Valitse malli" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Etsi malleja..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 -msgid "Search templates" -msgstr "Etsi malleja" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Hakutulokset" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Ei malleja löytynyt" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 -#, python-brace-format -msgid "Browser: {0}" -msgstr "Selaimen: {0}" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Muokkaa WebAppia" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 -#, python-brace-format -msgid "Edit {0}" -msgstr "Muokkaa {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Poista WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 -#, python-brace-format -msgid "Delete {0}" -msgstr "Poista {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:20 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Tervetuloa WebApps Manageriin" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 -msgid "" -"What are WebApps?\n" -"\n" -"WebApps are web applications that run in a dedicated browser window, providing a more app-like " -"experience for your favorite websites.\n" -"\n" -"Benefits of using WebApps:\n" -"\n" -"• Focus: Work without the distractions of other browser tabs\n" -"• Desktop Integration: Quick access from your application menu\n" -"• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" -msgstr "" -"Mitkä ovat WebAppit?\n" -"\n" -"WebAppit ovat verkkosovelluksia, jotka toimivat omassa selainikkunassaan, tarjoten sovelluksen " -"kaltaisen kokemuksen suosikkisivustoillesi.\n" -"\n" -"WebAppien käytön edut:\n" -"\n" -"• Keskittyminen: Työskentele ilman muiden selainvälilehtien häiriöitä\n" -"• Työpöytäintegraatio: Nopea pääsy sovellusvalikostasi\n" -"• Eristetyt profiilit: Valinnaisesti jokaisella webappilla voi olla omat evästeensä ja " -"asetuksensa\n" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Älä näytä tätä uudelleen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Aloitetaan" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Valitse selain" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:99 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:225 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:291 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Peruuta" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Valitse" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 -msgid "System Default" -msgstr "Järjestelmän oletus" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 -msgid "Default" -msgstr "Oletus" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 -msgid "Please select a browser." -msgstr "Valitse selain." -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 -msgid "Error" -msgstr "Virhe" -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "OK" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Lisää WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 -msgid "Choose from templates" -msgstr "Valitse malleista" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 -msgid "Detect" -msgstr "Havaitse" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Havaitse nimi ja kuvake verkkosivustolta" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Nimi" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 -msgid "App Icon" -msgstr "Sovelluksen kuvake" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 -msgid "Select icon for the WebApp" -msgstr "Valitse kuvake WebAppille" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 -msgid "Available Icons" -msgstr "Saatavilla olevat kuvakkeet" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Kategoria" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 -msgid "Application Mode" -msgstr "Sovellusmoodi" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Aukeaa natiivina ikkunana ilman selainliittymää." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 +#. -- Browser row (hidden in app mode) -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Selaimen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 -msgid "Profile Settings" -msgstr "Profiiliasetukset" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 -msgid "Configure a separate browser profile for this webapp" -msgstr "Määritä erillinen selainprofiili tälle verkkosovellukselle" -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -msgid "Use separate profile" -msgstr "Käytä erillistä profiilia" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Sallii itsenäiset evästeet ja istunnot" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Profiilin nimi" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Tallenna" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Ladataan..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 -msgid "Detecting website information, please wait" -msgstr "Tunnistetaan verkkosivuston tietoja, ole hyvä ja odota." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 -msgid "Please enter a URL first." -msgstr "Ole hyvä ja syötä ensin URL-osoite." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 -msgid "Please enter a name for the WebApp." -msgstr "Ole hyvä ja syötä nimi WebAppille." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 -msgid "Please enter a URL for the WebApp." -msgstr "Ole hyvä ja syötä URL-osoite WebAppille." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 -msgid "Please select a browser for the WebApp." -msgstr "Valitse selain WebAppia varten." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "Verkkosovellusten hallinta" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Hae Web-sovelluksia" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 -msgid "Main Menu" -msgstr "Päävalikko" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 -msgid "Refresh" -msgstr "Päivitä" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Vie Web-sovellukset" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Tuonti Web-sovellukset" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Selaa sovelluskansiota" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Selaa profiilikansiota" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 -msgid "Show Welcome Screen" -msgstr "Näytä tervetulonäyttö" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Poista kaikki WebAppit" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "Tietoja" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 -msgid "Add" -msgstr "Lisää" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 -msgid "No WebApps Found" -msgstr "Ei Web-sovelluksia löytynyt" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Lisää uusi verkkosovellus aloittaaksesi" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "WebApp luotiin onnistuneesti" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "WebApp päivitettiin onnistuneesti" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 -#, python-brace-format -msgid "Browser changed to {0}" -msgstr "Selainta muutettu {0}ksi" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 -#, python-brace-format -msgid "" -"Are you sure you want to delete {0}?\n" -"\n" -"URL: {1}\n" -"Browser: {2}" -msgstr "" -"Oletko varma, että haluat poistaa {0}?\n" -"\n" -"URL: {1}\n" -"Selaimen: {2}" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Myös poista asetuskansio." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Poista" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "WebApp poistettu onnistuneesti" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 -msgid "REMOVE ALL" -msgstr "POISTA KAIKKI" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 -#, python-brace-format -msgid "" -"Are you sure you want to remove all your WebApps? This action cannot be undone.\n" -"\n" -"Type \"{0}\" to confirm." -msgstr "" -"Oletko varma, että haluat poistaa kaikki WebAppisi? Tätä toimintoa ei voi peruuttaa.\n" -"\n" -"Kirjoita \"{0}\" vahvistaaksesi." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Poista kaikki" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Kaikki WebAppit on poistettu." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Kaikkien WebAppien poistaminen epäonnistui." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 -#, python-brace-format -msgid "Icon {0} of {1}" -msgstr "Kuvake {0} kohteesta {1}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebApps viety onnistuneesti" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Ei Web-sovelluksia" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 +msgid "Change browser" +msgstr "Vaihda selain" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 +msgid "Edit" +msgstr "Muokkaa" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 +msgid "New WebApp" +msgstr "Uusi WebApp" + +#. -- Icon row -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 +msgid "Icon" +msgstr "Kuvake" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 +msgid "App Mode" +msgstr "Sovellustila" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 +msgid "Separate Profile" +msgstr "Erota profiili" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 +msgid "Select Icon" +msgstr "Valitse kuvake" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 +msgid "Images" +msgstr "Kuvat" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 +msgid "ZIP files" +msgstr "ZIP-tiedostot" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 +#, rust-format +msgid "Imported {imported}, skipped {dups} duplicates" +msgstr "Tuotiin {imported}, ohitettiin {dups} kaksoiskappaletta" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 +msgid "Import failed" +msgstr "Tuonti epäonnistui" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 +msgid "Export failed" +msgstr "Vienti epäonnistui" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 +msgid "" +"This will delete all webapps and their desktop entries. This cannot be " +"undone." +msgstr "" +"Tämä poistaa kaikki webappit ja niiden työpöytätiedostot. Tätä ei voi " +"peruuttaa." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 +msgid "Browser changed" +msgstr "Selain vaihdettu" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 +msgid "What are WebApps?" +msgstr "Mitä WebAppit ovat?" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 +msgid "" +"WebApps are web applications that run in a dedicated browser window, " +"providing a more app-like experience for your favorite websites." +msgstr "" +"WebApps ovat verkkosovelluksia, jotka toimivat omassa selainikkunassaan, " +"tarjoten sovellusmaisen käyttökokemuksen suosikkisivustoillesi." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 +msgid "Benefits of using WebApps:" +msgstr "WebAppsien käytön edut:" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Focus" +msgstr "Keskittyminen" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Work without the distractions of other browser tabs" +msgstr "Työskentele ilman muiden välilehtien häiriöitä" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Desktop Integration" +msgstr "Työpöydän integrointi" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Quick access from your application menu" +msgstr "Nopea pääsy sovellusvalikostasi" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Isolated Profiles" +msgstr "Eristetyt profiilit" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Each webapp can have its own cookies and settings" +msgstr "Jokaisella webappilla voi olla omat evästeensä ja asetuksensa" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 +msgid "Back" +msgstr "Takaisin" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 +msgid "Forward" +msgstr "Eteenpäin" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 +msgid "Reload" +msgstr "Lataa uudelleen" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 +msgid "Fullscreen" +msgstr "Koko näyttö" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 +msgid "Enter URL…" +msgstr "Syötä URL…" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 +msgid "Zoom In" +msgstr "Suurenna" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 +msgid "Zoom Out" +msgstr "Pienennä" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 +msgid "Reset Zoom" +msgstr "Nollaa zoomaus" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 +msgid "Developer Tools" +msgstr "Kehittäjätyökalut" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 +msgid "Menu" +msgstr "Valikko" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 +msgid "Open Link in Browser" +msgstr "Avaa linkki selaimessa" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 +msgid "Download Complete" +msgstr "Lataus valmis" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 +msgid "Save File" +msgstr "Tallenna tiedosto" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 +#~ msgid "Search templates" +#~ msgstr "Etsi malleja" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 +#, python-brace-format +#~ msgid "Browser: {0}" +#~ msgstr "Selaimen: {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 +#, python-brace-format +#~ msgid "Edit {0}" +#~ msgstr "Muokkaa {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 +#, python-brace-format +#~ msgid "Delete {0}" +#~ msgstr "Poista {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 +#~ msgid "" +#~ "What are WebApps?\n" +#~ "\n" +#~ "WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n" +#~ "\n" +#~ "Benefits of using WebApps:\n" +#~ "\n" +#~ "• Focus: Work without the distractions of other browser tabs\n" +#~ "• Desktop Integration: Quick access from your application menu\n" +#~ "• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" +#~ msgstr "" +#~ "Mitkä ovat WebAppit?\n" +#~ "\n" +#~ "WebAppit ovat verkkosovelluksia, jotka toimivat omassa selainikkunassaan, tarjoten sovelluksen kaltaisen kokemuksen suosikkisivustoillesi.\n" +#~ "\n" +#~ "WebAppien käytön edut:\n" +#~ "\n" +#~ "• Keskittyminen: Työskentele ilman muiden selainvälilehtien häiriöitä\n" +#~ "• Työpöytäintegraatio: Nopea pääsy sovellusvalikostasi\n" +#~ "• Eristetyt profiilit: Valinnaisesti jokaisella webappilla voi olla omat evästeensä ja asetuksensa\n" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 +#~ msgid "System Default" +#~ msgstr "Järjestelmän oletus" + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 -msgid "There are no WebApps to export." -msgstr "Ei ole WebAppse, joita voisi viedä." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 -msgid "The selected file does not exist." -msgstr "Valittua tiedostoa ei ole olemassa." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 -msgid "The selected file is not a valid ZIP archive." -msgstr "Valittu tiedosto ei ole voimassa oleva ZIP-arkisto." +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 -msgid "Error importing WebApps" -msgstr "Virhe WebAppsien tuonnissa" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 +#~ msgid "Default" +#~ msgstr "Oletus" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 +#~ msgid "Please select a browser." +#~ msgstr "Valitse selain." + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 -msgid "Imported {} WebApps successfully ({} duplicates skipped)" -msgstr "Tuodut {} WebApps onnistuneesti ({} kaksoiskappaletta ohitettu)" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 +#~ msgid "Error" +#~ msgstr "Virhe" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 +#~ msgid "Choose from templates" +#~ msgstr "Valitse malleista" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 +#~ msgid "Detect" +#~ msgstr "Havaitse" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 +#~ msgid "App Icon" +#~ msgstr "Sovelluksen kuvake" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 +#~ msgid "Select icon for the WebApp" +#~ msgstr "Valitse kuvake WebAppille" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 +#~ msgid "Available Icons" +#~ msgstr "Saatavilla olevat kuvakkeet" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 +#~ msgid "Application Mode" +#~ msgstr "Sovellusmoodi" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 +#~ msgid "Profile Settings" +#~ msgstr "Profiiliasetukset" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 +#~ msgid "Configure a separate browser profile for this webapp" +#~ msgstr "Määritä erillinen selainprofiili tälle verkkosovellukselle" + +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 -msgid "Imported {} WebApps successfully" -msgstr "Tuodut {} WebApps onnistuneesti" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 -msgid "No" -msgstr "Ei" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 -msgid "Yes" -msgstr "Kyllä" +#~ msgid "Use separate profile" +#~ msgstr "Käytä erillistä profiilia" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 +#~ msgid "Detecting website information, please wait" +#~ msgstr "Tunnistetaan verkkosivuston tietoja, ole hyvä ja odota." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 +#~ msgid "Please enter a URL first." +#~ msgstr "Ole hyvä ja syötä ensin URL-osoite." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 +#~ msgid "Please enter a name for the WebApp." +#~ msgstr "Ole hyvä ja syötä nimi WebAppille." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 +#~ msgid "Please enter a URL for the WebApp." +#~ msgstr "Ole hyvä ja syötä URL-osoite WebAppille." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 +#~ msgid "Please select a browser for the WebApp." +#~ msgstr "Valitse selain WebAppia varten." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 +#~ msgid "Main Menu" +#~ msgstr "Päävalikko" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 +#~ msgid "Refresh" +#~ msgstr "Päivitä" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 +#~ msgid "Show Welcome Screen" +#~ msgstr "Näytä tervetulonäyttö" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 +#~ msgid "Add" +#~ msgstr "Lisää" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 +#~ msgid "No WebApps Found" +#~ msgstr "Ei Web-sovelluksia löytynyt" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 +#, python-brace-format +#~ msgid "Browser changed to {0}" +#~ msgstr "Selainta muutettu {0}ksi" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to delete {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Browser: {2}" +#~ msgstr "" +#~ "Oletko varma, että haluat poistaa {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Selaimen: {2}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 +#~ msgid "REMOVE ALL" +#~ msgstr "POISTA KAIKKI" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to remove all your WebApps? This action cannot be undone.\n" +#~ "\n" +#~ "Type \"{0}\" to confirm." +#~ msgstr "" +#~ "Oletko varma, että haluat poistaa kaikki WebAppisi? Tätä toimintoa ei voi peruuttaa.\n" +#~ "\n" +#~ "Kirjoita \"{0}\" vahvistaaksesi." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 +#, python-brace-format +#~ msgid "Icon {0} of {1}" +#~ msgstr "Kuvake {0} kohteesta {1}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#~ msgid "There are no WebApps to export." +#~ msgstr "Ei ole WebAppse, joita voisi viedä." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 +#~ msgid "The selected file does not exist." +#~ msgstr "Valittua tiedostoa ei ole olemassa." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 +#~ msgid "The selected file is not a valid ZIP archive." +#~ msgstr "Valittu tiedosto ei ole voimassa oleva ZIP-arkisto." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 +#~ msgid "Error importing WebApps" +#~ msgstr "Virhe WebAppsien tuonnissa" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 +#~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" +#~ msgstr "Tuodut {} WebApps onnistuneesti ({} kaksoiskappaletta ohitettu)" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 +#~ msgid "Imported {} WebApps successfully" +#~ msgstr "Tuodut {} WebApps onnistuneesti" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 +#~ msgid "No" +#~ msgstr "Ei" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 +#~ msgid "Yes" +#~ msgstr "Kyllä" diff --git a/biglinux-webapps/locale/fr.json b/biglinux-webapps/locale/fr.json deleted file mode 100644 index 5b08255e..00000000 --- a/biglinux-webapps/locale/fr.json +++ /dev/null @@ -1 +0,0 @@ -{"fr":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Modèles"]},"Choose a Template":{"*":["Choisissez un modèle"]},"Search templates...":{"*":["Rechercher des modèles..."]},"Search templates":{"*":["Rechercher des modèles"]},"Search Results":{"*":["Résultats de recherche"]},"No templates found":{"*":["Aucun modèle trouvé"]},"Browser: {0}":{"*":["Navigateur : {0}"]},"Edit WebApp":{"*":["Modifier WebApp"]},"Edit {0}":{"*":["Modifier {0}"]},"Delete WebApp":{"*":["Supprimer l'application Web"]},"Delete {0}":{"*":["Supprimer {0}"]},"Welcome to WebApps Manager":{"*":["Bienvenue dans le gestionnaire d'applications Web"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Qu'est-ce que les WebApps ?\n\nLes WebApps sont des applications web qui s'exécutent dans une fenêtre de navigateur dédiée, offrant une expérience plus semblable à celle d'une application pour vos sites web préférés.\n\nAvantages de l'utilisation des WebApps :\n\n• Concentration : Travaillez sans les distractions des autres onglets du navigateur\n• Intégration de bureau : Accès rapide depuis votre menu d'application\n• Profils isolés : En option, chaque webapp peut avoir ses propres cookies et paramètres\n"]},"Don't show this again":{"*":["Ne plus afficher ceci."]},"Let's Start":{"*":["Commençons"]},"Select Browser":{"*":["Sélectionner le navigateur"]},"Cancel":{"*":["Annuler"]},"Select":{"*":["Sélectionner"]},"System Default":{"*":["Paramètre par défaut du système"]},"Default":{"*":["Par défaut"]},"Please select a browser.":{"*":["Veuillez sélectionner un navigateur."]},"Error":{"*":["Erreur"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Ajouter WebApp"]},"Choose from templates":{"*":["Choisissez parmi les modèles"]},"URL":{"*":["URL"]},"Detect":{"*":["Détecter"]},"Detect name and icon from website":{"*":["Détecter le nom et l'icône du site web"]},"Name":{"*":["Nom"]},"App Icon":{"*":["Icône de l'application"]},"Select icon for the WebApp":{"*":["Sélectionnez l'icône pour l'application Web"]},"Available Icons":{"*":["Icônes disponibles"]},"Category":{"*":["Catégorie"]},"Application Mode":{"*":["Mode d'application"]},"Opens as a native window without browser interface":{"*":["S'ouvre en tant que fenêtre native sans interface de navigateur."]},"Browser":{"*":["Navigateur"]},"Profile Settings":{"*":["Paramètres du profil"]},"Configure a separate browser profile for this webapp":{"*":["Configurez un profil de navigateur séparé pour cette application web."]},"Use separate profile":{"*":["Utiliser un profil séparé"]},"Allows independent cookies and sessions":{"*":["Autorise les cookies et les sessions indépendants"]},"Profile Name":{"*":["Nom de profil"]},"Save":{"*":["Enregistrer"]},"Loading...":{"*":["Chargement..."]},"Detecting website information, please wait":{"*":["Détection des informations du site web, veuillez patienter."]},"Please enter a URL first.":{"*":["Veuillez d'abord entrer une URL."]},"Please enter a name for the WebApp.":{"*":["Veuillez entrer un nom pour l'application Web."]},"Please enter a URL for the WebApp.":{"*":["Veuillez entrer une URL pour l'application Web."]},"Please select a browser for the WebApp.":{"*":["Veuillez sélectionner un navigateur pour l'application Web."]},"WebApps Manager":{"*":["Gestionnaire d'applications Web"]},"Search WebApps":{"*":["Rechercher des applications Web"]},"Main Menu":{"*":["Menu Principal"]},"Refresh":{"*":["Rafraîchir"]},"Export WebApps":{"*":["Exporter des applications Web"]},"Import WebApps":{"*":["Importer des applications Web"]},"Browse Applications Folder":{"*":["Parcourir le dossier Applications"]},"Browse Profiles Folder":{"*":["Parcourir le dossier des profils"]},"Show Welcome Screen":{"*":["Afficher l'écran d'accueil"]},"Remove All WebApps":{"*":["Supprimer toutes les applications Web"]},"About":{"*":["À propos"]},"Add":{"*":["Ajouter"]},"No WebApps Found":{"*":["Aucune application Web trouvée"]},"Add a new webapp to get started":{"*":["Ajoutez une nouvelle application web pour commencer."]},"WebApp created successfully":{"*":["WebApp créé avec succès"]},"WebApp updated successfully":{"*":["WebApp mis à jour avec succès"]},"Browser changed to {0}":{"*":["Le navigateur a été changé en {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Êtes-vous sûr de vouloir supprimer {0} ?\n\nURL : {1} \nNavigateur : {2}"]},"Also delete configuration folder":{"*":["Supprimez également le dossier de configuration."]},"Delete":{"*":["Supprimer"]},"WebApp deleted successfully":{"*":["WebApp supprimé avec succès"]},"REMOVE ALL":{"*":["SUPPRIMER TOUT"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Êtes-vous sûr de vouloir supprimer toutes vos WebApps ? Cette action ne peut pas être annulée.\n\nTapez \"{0}\" pour confirmer."]},"Remove All":{"*":["Tout supprimer"]},"All WebApps have been removed":{"*":["Toutes les applications Web ont été supprimées."]},"Failed to remove all WebApps":{"*":["Échec de la suppression de toutes les WebApps"]},"Icon {0} of {1}":{"*":["Icône {0} de {1}"]},"WebApps exported successfully":{"*":["WebApps exportés avec succès"]},"No WebApps":{"*":["Pas d'applications Web"]},"There are no WebApps to export.":{"*":["Il n'y a pas d'applications Web à exporter."]},"The selected file does not exist.":{"*":["Le fichier sélectionné n'existe pas."]},"The selected file is not a valid ZIP archive.":{"*":["Le fichier sélectionné n'est pas une archive ZIP valide."]},"Error importing WebApps":{"*":["Erreur d'importation des WebApps"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["WebApps importés avec succès ({} doublons ignorés)"]},"Imported {} WebApps successfully":{"*":["Applications Web {} importées avec succès"]},"No":{"*":["Non"]},"Yes":{"*":["Oui"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/fr.po b/biglinux-webapps/locale/fr.po index a63d5bde..11edcdfe 100644 --- a/biglinux-webapps/locale/fr.po +++ b/biglinux-webapps/locale/fr.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the biglinux-webapps package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" "Project-Id-Version: biglinux-webapps\n" @@ -14,441 +14,750 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Modèles" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Choisissez un modèle" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Rechercher des modèles..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 -msgid "Search templates" -msgstr "Rechercher des modèles" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Résultats de recherche" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Aucun modèle trouvé" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 -#, python-brace-format -msgid "Browser: {0}" -msgstr "Navigateur : {0}" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Modifier WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 -#, python-brace-format -msgid "Edit {0}" -msgstr "Modifier {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Supprimer l'application Web" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 -#, python-brace-format -msgid "Delete {0}" -msgstr "Supprimer {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:20 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Bienvenue dans le gestionnaire d'applications Web" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 -msgid "" -"What are WebApps?\n" -"\n" -"WebApps are web applications that run in a dedicated browser window, providing a more app-like " -"experience for your favorite websites.\n" -"\n" -"Benefits of using WebApps:\n" -"\n" -"• Focus: Work without the distractions of other browser tabs\n" -"• Desktop Integration: Quick access from your application menu\n" -"• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" -msgstr "" -"Qu'est-ce que les WebApps ?\n" -"\n" -"Les WebApps sont des applications web qui s'exécutent dans une fenêtre de navigateur dédiée, " -"offrant une expérience plus semblable à celle d'une application pour vos sites web préférés.\n" -"\n" -"Avantages de l'utilisation des WebApps :\n" -"\n" -"• Concentration : Travaillez sans les distractions des autres onglets du navigateur\n" -"• Intégration de bureau : Accès rapide depuis votre menu d'application\n" -"• Profils isolés : En option, chaque webapp peut avoir ses propres cookies et paramètres\n" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Ne plus afficher ceci." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Commençons" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Sélectionner le navigateur" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:99 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:225 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:291 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Annuler" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Sélectionner" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 -msgid "System Default" -msgstr "Paramètre par défaut du système" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 -msgid "Default" -msgstr "Par défaut" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 -msgid "Please select a browser." -msgstr "Veuillez sélectionner un navigateur." -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 -msgid "Error" -msgstr "Erreur" -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "OK" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Ajouter WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 -msgid "Choose from templates" -msgstr "Choisissez parmi les modèles" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 -msgid "Detect" -msgstr "Détecter" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Détecter le nom et l'icône du site web" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Nom" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 -msgid "App Icon" -msgstr "Icône de l'application" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 -msgid "Select icon for the WebApp" -msgstr "Sélectionnez l'icône pour l'application Web" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 -msgid "Available Icons" -msgstr "Icônes disponibles" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Catégorie" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 -msgid "Application Mode" -msgstr "Mode d'application" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "S'ouvre en tant que fenêtre native sans interface de navigateur." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 +#. -- Browser row (hidden in app mode) -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Navigateur" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 -msgid "Profile Settings" -msgstr "Paramètres du profil" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 -msgid "Configure a separate browser profile for this webapp" -msgstr "Configurez un profil de navigateur séparé pour cette application web." -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -msgid "Use separate profile" -msgstr "Utiliser un profil séparé" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Autorise les cookies et les sessions indépendants" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Nom de profil" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Enregistrer" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Chargement..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 -msgid "Detecting website information, please wait" -msgstr "Détection des informations du site web, veuillez patienter." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 -msgid "Please enter a URL first." -msgstr "Veuillez d'abord entrer une URL." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 -msgid "Please enter a name for the WebApp." -msgstr "Veuillez entrer un nom pour l'application Web." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 -msgid "Please enter a URL for the WebApp." -msgstr "Veuillez entrer une URL pour l'application Web." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 -msgid "Please select a browser for the WebApp." -msgstr "Veuillez sélectionner un navigateur pour l'application Web." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "Gestionnaire d'applications Web" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Rechercher des applications Web" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 -msgid "Main Menu" -msgstr "Menu Principal" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 -msgid "Refresh" -msgstr "Rafraîchir" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Exporter des applications Web" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Importer des applications Web" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Parcourir le dossier Applications" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Parcourir le dossier des profils" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 -msgid "Show Welcome Screen" -msgstr "Afficher l'écran d'accueil" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Supprimer toutes les applications Web" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "À propos" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 -msgid "Add" -msgstr "Ajouter" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 -msgid "No WebApps Found" -msgstr "Aucune application Web trouvée" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Ajoutez une nouvelle application web pour commencer." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "WebApp créé avec succès" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "WebApp mis à jour avec succès" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 -#, python-brace-format -msgid "Browser changed to {0}" -msgstr "Le navigateur a été changé en {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 -#, python-brace-format -msgid "" -"Are you sure you want to delete {0}?\n" -"\n" -"URL: {1}\n" -"Browser: {2}" -msgstr "" -"Êtes-vous sûr de vouloir supprimer {0} ?\n" -"\n" -"URL : {1} \n" -"Navigateur : {2}" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Supprimez également le dossier de configuration." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Supprimer" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "WebApp supprimé avec succès" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 -msgid "REMOVE ALL" -msgstr "SUPPRIMER TOUT" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 -#, python-brace-format -msgid "" -"Are you sure you want to remove all your WebApps? This action cannot be undone.\n" -"\n" -"Type \"{0}\" to confirm." -msgstr "" -"Êtes-vous sûr de vouloir supprimer toutes vos WebApps ? Cette action ne peut pas être annulée.\n" -"\n" -"Tapez \"{0}\" pour confirmer." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Tout supprimer" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Toutes les applications Web ont été supprimées." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Échec de la suppression de toutes les WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 -#, python-brace-format -msgid "Icon {0} of {1}" -msgstr "Icône {0} de {1}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebApps exportés avec succès" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Pas d'applications Web" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 +msgid "Change browser" +msgstr "Changer de navigateur" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 +msgid "Edit" +msgstr "Modifier" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 +msgid "New WebApp" +msgstr "Nouvelle WebApp" + +#. -- Icon row -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 +msgid "Icon" +msgstr "Icône" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 +msgid "App Mode" +msgstr "Mode d’application" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 +msgid "Separate Profile" +msgstr "Profil séparé" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 +msgid "Select Icon" +msgstr "Sélectionner une icône" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 +msgid "Images" +msgstr "Images" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 +msgid "ZIP files" +msgstr "Fichiers ZIP" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 +#, rust-format +msgid "Imported {imported}, skipped {dups} duplicates" +msgstr "Importé {imported}, ignoré {dups} doublons" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 +msgid "Import failed" +msgstr "Échec de l’importation" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 +msgid "Export failed" +msgstr "Échec de l’exportation" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 +msgid "" +"This will delete all webapps and their desktop entries. This cannot be " +"undone." +msgstr "" +"Cela supprimera toutes les webapps et leurs entrées sur le bureau. Cette " +"action est irréversible." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 +msgid "Browser changed" +msgstr "Navigateur changé" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 +msgid "What are WebApps?" +msgstr "Que sont les WebApps ?" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 +msgid "" +"WebApps are web applications that run in a dedicated browser window, " +"providing a more app-like experience for your favorite websites." +msgstr "" +"Les WebApps sont des applications web qui s'exécutent dans une fenêtre de " +"navigateur dédiée, offrant une expérience plus proche d'une application pour" +" vos sites préférés." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 +msgid "Benefits of using WebApps:" +msgstr "Avantages d'utiliser les WebApps :" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Focus" +msgstr "Concentration" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Work without the distractions of other browser tabs" +msgstr "Travaillez sans les distractions des autres onglets du navigateur" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Desktop Integration" +msgstr "Intégration au bureau" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Quick access from your application menu" +msgstr "Accès rapide depuis votre menu d'applications" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Isolated Profiles" +msgstr "Profils isolés" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Each webapp can have its own cookies and settings" +msgstr "Chaque WebApp peut avoir ses propres cookies et paramètres" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 +msgid "Back" +msgstr "Retour" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 +msgid "Forward" +msgstr "Avant" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 +msgid "Reload" +msgstr "Recharger" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 +msgid "Fullscreen" +msgstr "Plein écran" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 +msgid "Enter URL…" +msgstr "Entrez l'URL…" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 +msgid "Zoom In" +msgstr "Zoomer" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 +msgid "Zoom Out" +msgstr "Dézoomer" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 +msgid "Reset Zoom" +msgstr "Réinitialiser le zoom" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 +msgid "Developer Tools" +msgstr "Outils de développement" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 +msgid "Menu" +msgstr "Menu" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 +msgid "Open Link in Browser" +msgstr "Ouvrir le lien dans le navigateur" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 +msgid "Download Complete" +msgstr "Téléchargement terminé" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 +msgid "Save File" +msgstr "Enregistrer le fichier" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 +#~ msgid "Search templates" +#~ msgstr "Rechercher des modèles" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 +#, python-brace-format +#~ msgid "Browser: {0}" +#~ msgstr "Navigateur : {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 +#, python-brace-format +#~ msgid "Edit {0}" +#~ msgstr "Modifier {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 +#, python-brace-format +#~ msgid "Delete {0}" +#~ msgstr "Supprimer {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 +#~ msgid "" +#~ "What are WebApps?\n" +#~ "\n" +#~ "WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n" +#~ "\n" +#~ "Benefits of using WebApps:\n" +#~ "\n" +#~ "• Focus: Work without the distractions of other browser tabs\n" +#~ "• Desktop Integration: Quick access from your application menu\n" +#~ "• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" +#~ msgstr "" +#~ "Qu'est-ce que les WebApps ?\n" +#~ "\n" +#~ "Les WebApps sont des applications web qui s'exécutent dans une fenêtre de navigateur dédiée, offrant une expérience plus semblable à celle d'une application pour vos sites web préférés.\n" +#~ "\n" +#~ "Avantages de l'utilisation des WebApps :\n" +#~ "\n" +#~ "• Concentration : Travaillez sans les distractions des autres onglets du navigateur\n" +#~ "• Intégration de bureau : Accès rapide depuis votre menu d'application\n" +#~ "• Profils isolés : En option, chaque webapp peut avoir ses propres cookies et paramètres\n" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 +#~ msgid "System Default" +#~ msgstr "Paramètre par défaut du système" + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 -msgid "There are no WebApps to export." -msgstr "Il n'y a pas d'applications Web à exporter." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 -msgid "The selected file does not exist." -msgstr "Le fichier sélectionné n'existe pas." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 -msgid "The selected file is not a valid ZIP archive." -msgstr "Le fichier sélectionné n'est pas une archive ZIP valide." +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 -msgid "Error importing WebApps" -msgstr "Erreur d'importation des WebApps" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 +#~ msgid "Default" +#~ msgstr "Par défaut" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 +#~ msgid "Please select a browser." +#~ msgstr "Veuillez sélectionner un navigateur." + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 -msgid "Imported {} WebApps successfully ({} duplicates skipped)" -msgstr "WebApps importés avec succès ({} doublons ignorés)" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 +#~ msgid "Error" +#~ msgstr "Erreur" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 +#~ msgid "Choose from templates" +#~ msgstr "Choisissez parmi les modèles" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 +#~ msgid "Detect" +#~ msgstr "Détecter" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 +#~ msgid "App Icon" +#~ msgstr "Icône de l'application" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 +#~ msgid "Select icon for the WebApp" +#~ msgstr "Sélectionnez l'icône pour l'application Web" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 +#~ msgid "Available Icons" +#~ msgstr "Icônes disponibles" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 +#~ msgid "Application Mode" +#~ msgstr "Mode d'application" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 +#~ msgid "Profile Settings" +#~ msgstr "Paramètres du profil" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 +#~ msgid "Configure a separate browser profile for this webapp" +#~ msgstr "Configurez un profil de navigateur séparé pour cette application web." + +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 -msgid "Imported {} WebApps successfully" -msgstr "Applications Web {} importées avec succès" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 -msgid "No" -msgstr "Non" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 -msgid "Yes" -msgstr "Oui" +#~ msgid "Use separate profile" +#~ msgstr "Utiliser un profil séparé" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 +#~ msgid "Detecting website information, please wait" +#~ msgstr "Détection des informations du site web, veuillez patienter." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 +#~ msgid "Please enter a URL first." +#~ msgstr "Veuillez d'abord entrer une URL." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 +#~ msgid "Please enter a name for the WebApp." +#~ msgstr "Veuillez entrer un nom pour l'application Web." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 +#~ msgid "Please enter a URL for the WebApp." +#~ msgstr "Veuillez entrer une URL pour l'application Web." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 +#~ msgid "Please select a browser for the WebApp." +#~ msgstr "Veuillez sélectionner un navigateur pour l'application Web." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 +#~ msgid "Main Menu" +#~ msgstr "Menu Principal" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 +#~ msgid "Refresh" +#~ msgstr "Rafraîchir" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 +#~ msgid "Show Welcome Screen" +#~ msgstr "Afficher l'écran d'accueil" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 +#~ msgid "Add" +#~ msgstr "Ajouter" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 +#~ msgid "No WebApps Found" +#~ msgstr "Aucune application Web trouvée" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 +#, python-brace-format +#~ msgid "Browser changed to {0}" +#~ msgstr "Le navigateur a été changé en {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to delete {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Browser: {2}" +#~ msgstr "" +#~ "Êtes-vous sûr de vouloir supprimer {0} ?\n" +#~ "\n" +#~ "URL : {1} \n" +#~ "Navigateur : {2}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 +#~ msgid "REMOVE ALL" +#~ msgstr "SUPPRIMER TOUT" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to remove all your WebApps? This action cannot be undone.\n" +#~ "\n" +#~ "Type \"{0}\" to confirm." +#~ msgstr "" +#~ "Êtes-vous sûr de vouloir supprimer toutes vos WebApps ? Cette action ne peut pas être annulée.\n" +#~ "\n" +#~ "Tapez \"{0}\" pour confirmer." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 +#, python-brace-format +#~ msgid "Icon {0} of {1}" +#~ msgstr "Icône {0} de {1}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#~ msgid "There are no WebApps to export." +#~ msgstr "Il n'y a pas d'applications Web à exporter." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 +#~ msgid "The selected file does not exist." +#~ msgstr "Le fichier sélectionné n'existe pas." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 +#~ msgid "The selected file is not a valid ZIP archive." +#~ msgstr "Le fichier sélectionné n'est pas une archive ZIP valide." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 +#~ msgid "Error importing WebApps" +#~ msgstr "Erreur d'importation des WebApps" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 +#~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" +#~ msgstr "WebApps importés avec succès ({} doublons ignorés)" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 +#~ msgid "Imported {} WebApps successfully" +#~ msgstr "Applications Web {} importées avec succès" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 +#~ msgid "No" +#~ msgstr "Non" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 +#~ msgid "Yes" +#~ msgstr "Oui" diff --git a/biglinux-webapps/locale/he.json b/biglinux-webapps/locale/he.json deleted file mode 100644 index 366219c2..00000000 --- a/biglinux-webapps/locale/he.json +++ /dev/null @@ -1 +0,0 @@ -{"he":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["תבניות"]},"Choose a Template":{"*":["בחר תבנית"]},"Search templates...":{"*":["חפש תבניות..."]},"Search templates":{"*":["חפש תבניות"]},"Search Results":{"*":["תוצאות חיפוש"]},"No templates found":{"*":["לא נמצאו תבניות"]},"Browser: {0}":{"*":["דפדפן: {0}"]},"Edit WebApp":{"*":["ערוך אפליקציית אינטרנט"]},"Edit {0}":{"*":["ערוך {0}"]},"Delete WebApp":{"*":["מחק את היישום האינטרנטי"]},"Delete {0}":{"*":["מחק {0}"]},"Welcome to WebApps Manager":{"*":["ברוך הבא למנהל אפליקציות אינטרנט"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["מהן אפליקציות רשת?\n\nאפליקציות רשת הן יישומים רשתיים שפועלים בחלון דפדפן ייעודי, ומספקים חוויית שימוש דמוית אפליקציה לאתרי האינטרנט האהובים עליך.\n\nיתרונות השימוש באפליקציות רשת:\n\n• מיקוד: עבודה ללא הסחות דעת מכרטיסיות דפדפן אחרות\n• אינטגרציה עם שולחן העבודה: גישה מהירה מתפריט היישומים שלך\n• פרופילים מבודדים: אופציונלית, לכל אפליקציית רשת יכולות להיות עוגיות והגדרות משלה\n"]},"Don't show this again":{"*":["אל תראה זאת שוב"]},"Let's Start":{"*":["בוא נתחיל"]},"Select Browser":{"*":["בחר דפדפן"]},"Cancel":{"*":["ביטול"]},"Select":{"*":["בחר"]},"System Default":{"*":["ברירת מחדל של מערכת"]},"Default":{"*":["ברירת מחדל"]},"Please select a browser.":{"*":["אנא בחר דפדפן."]},"Error":{"*":["שגיאה"]},"OK":{"*":["אוקי"]},"Add WebApp":{"*":["הוסף אפליקציית אינטרנט"]},"Choose from templates":{"*":["בחר מתוך תבניות"]},"URL":{"*":["כתובת אתר"]},"Detect":{"*":["גלה"]},"Detect name and icon from website":{"*":["גלה שם ואייקון מאתר אינטרנט"]},"Name":{"*":["שם"]},"App Icon":{"*":["אייקון אפליקציה"]},"Select icon for the WebApp":{"*":["בחר סמל עבור ה-WebApp"]},"Available Icons":{"*":["אייקונים זמינים"]},"Category":{"*":["קטגוריה"]},"Application Mode":{"*":["מצב יישום"]},"Opens as a native window without browser interface":{"*":["נפתח כחלון מקורי ללא ממשק דפדפן"]},"Browser":{"*":["דפדפן"]},"Profile Settings":{"*":["הגדרות פרופיל"]},"Configure a separate browser profile for this webapp":{"*":["הגדר פרופיל דפדפן נפרד עבור אפליקציה זו"]},"Use separate profile":{"*":["השתמש בפרופיל נפרד"]},"Allows independent cookies and sessions":{"*":["מאפשר עוגיות וסשנים עצמאיים"]},"Profile Name":{"*":["שם פרופיל"]},"Save":{"*":["שמור"]},"Loading...":{"*":["טוען..."]},"Detecting website information, please wait":{"*":["מאתר מידע על האתר, אנא המתן"]},"Please enter a URL first.":{"*":["אנא הזן כתובת URL קודם."]},"Please enter a name for the WebApp.":{"*":["אנא הזן שם עבור ה-WebApp."]},"Please enter a URL for the WebApp.":{"*":["אנא הזן כתובת URL עבור ה-WebApp."]},"Please select a browser for the WebApp.":{"*":["אנא בחר דפדפן עבור ה-WebApp."]},"WebApps Manager":{"*":["מנהל אפליקציות אינטרנט"]},"Search WebApps":{"*":["חפש אפליקציות אינטרנט"]},"Main Menu":{"*":["תפריט ראשי"]},"Refresh":{"*":["רענן"]},"Export WebApps":{"*":["ייצוא אפליקציות אינטרנט"]},"Import WebApps":{"*":["ייבוא אפליקציות אינטרנט"]},"Browse Applications Folder":{"*":["עבור לתיקיית היישומים"]},"Browse Profiles Folder":{"*":["דפדף לתיקיית פרופילים"]},"Show Welcome Screen":{"*":["הצג מסך ברוך הבא"]},"Remove All WebApps":{"*":["הסר את כל היישומים האינטרנטיים"]},"About":{"*":["אודות"]},"Add":{"*":["הוסף"]},"No WebApps Found":{"*":["לא נמצאו אפליקציות אינטרנט"]},"Add a new webapp to get started":{"*":["הוסף אפליקציית אינטרנט חדשה כדי להתחיל"]},"WebApp created successfully":{"*":["היישום האינטרנטי נוצר בהצלחה"]},"WebApp updated successfully":{"*":["היישום האינטרנטי עודכן בהצלחה"]},"Browser changed to {0}":{"*":["הדפדפן שונה ל-{0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["האם אתה בטוח שברצונך למחוק את {0}?\n\nכתובת אתר: {1}\nדפדפן: {2}"]},"Also delete configuration folder":{"*":["גם מחק את תיקיית ההגדרות"]},"Delete":{"*":["מחק"]},"WebApp deleted successfully":{"*":["היישום האינטרנטי נמחק בהצלחה"]},"REMOVE ALL":{"*":["הסר הכל"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["האם אתה בטוח שברצונך להסיר את כל ה-WebApps שלך? פעולה זו אינה ניתנת לביטול.\n\nהקלד \"{0}\" כדי לאשר."]},"Remove All":{"*":["הסר הכל"]},"All WebApps have been removed":{"*":["כל האפליקציות האינטרנטיות הוסרו"]},"Failed to remove all WebApps":{"*":["נכשל בהסרת כל היישומים האינטרנטיים"]},"Icon {0} of {1}":{"*":["אייקון {0} של {1}"]},"WebApps exported successfully":{"*":["היישומים המובנים ייצאו בהצלחה"]},"No WebApps":{"*":["אין אפליקציות אינטרנט"]},"There are no WebApps to export.":{"*":["אין אפליקציות אינטרנט לייצוא."]},"The selected file does not exist.":{"*":["הקובץ שנבחר אינו קיים."]},"The selected file is not a valid ZIP archive.":{"*":["הקובץ שנבחר אינו ארכיון ZIP תקף."]},"Error importing WebApps":{"*":["שגיאה בייבוא WebApps"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["ייבא {} אפליקציות אינטרנט בהצלחה ({} כפילויות הושמטו)"]},"Imported {} WebApps successfully":{"*":["ייבא {} WebApps בהצלחה"]},"No":{"*":["לא"]},"Yes":{"*":["כן"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/he.po b/biglinux-webapps/locale/he.po index 04eff9c9..aa5785f2 100644 --- a/biglinux-webapps/locale/he.po +++ b/biglinux-webapps/locale/he.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the biglinux-webapps package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" "Project-Id-Version: biglinux-webapps\n" @@ -14,441 +14,749 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "תבניות" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "בחר תבנית" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "חפש תבניות..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 -msgid "Search templates" -msgstr "חפש תבניות" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "תוצאות חיפוש" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "לא נמצאו תבניות" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 -#, python-brace-format -msgid "Browser: {0}" -msgstr "דפדפן: {0}" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "ערוך אפליקציית אינטרנט" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 -#, python-brace-format -msgid "Edit {0}" -msgstr "ערוך {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "מחק את היישום האינטרנטי" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 -#, python-brace-format -msgid "Delete {0}" -msgstr "מחק {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:20 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "ברוך הבא למנהל אפליקציות אינטרנט" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 -msgid "" -"What are WebApps?\n" -"\n" -"WebApps are web applications that run in a dedicated browser window, providing a more app-like " -"experience for your favorite websites.\n" -"\n" -"Benefits of using WebApps:\n" -"\n" -"• Focus: Work without the distractions of other browser tabs\n" -"• Desktop Integration: Quick access from your application menu\n" -"• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" -msgstr "" -"מהן אפליקציות רשת?\n" -"\n" -"אפליקציות רשת הן יישומים רשתיים שפועלים בחלון דפדפן ייעודי, ומספקים חוויית שימוש דמוית אפליקציה " -"לאתרי האינטרנט האהובים עליך.\n" -"\n" -"יתרונות השימוש באפליקציות רשת:\n" -"\n" -"• מיקוד: עבודה ללא הסחות דעת מכרטיסיות דפדפן אחרות\n" -"• אינטגרציה עם שולחן העבודה: גישה מהירה מתפריט היישומים שלך\n" -"• פרופילים מבודדים: אופציונלית, לכל אפליקציית רשת יכולות להיות עוגיות והגדרות משלה\n" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "אל תראה זאת שוב" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "בוא נתחיל" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "בחר דפדפן" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:99 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:225 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:291 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "ביטול" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "בחר" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 -msgid "System Default" -msgstr "ברירת מחדל של מערכת" -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 -msgid "Default" -msgstr "ברירת מחדל" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 -msgid "Please select a browser." -msgstr "אנא בחר דפדפן." -# # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 -msgid "Error" -msgstr "שגיאה" -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "אוקי" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "הוסף אפליקציית אינטרנט" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 -msgid "Choose from templates" -msgstr "בחר מתוך תבניות" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "כתובת אתר" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 -msgid "Detect" -msgstr "גלה" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "גלה שם ואייקון מאתר אינטרנט" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "שם" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 -msgid "App Icon" -msgstr "אייקון אפליקציה" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 -msgid "Select icon for the WebApp" -msgstr "בחר סמל עבור ה-WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 -msgid "Available Icons" -msgstr "אייקונים זמינים" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "קטגוריה" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 -msgid "Application Mode" -msgstr "מצב יישום" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "נפתח כחלון מקורי ללא ממשק דפדפן" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 +#. -- Browser row (hidden in app mode) -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "דפדפן" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 -msgid "Profile Settings" -msgstr "הגדרות פרופיל" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 -msgid "Configure a separate browser profile for this webapp" -msgstr "הגדר פרופיל דפדפן נפרד עבור אפליקציה זו" -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -msgid "Use separate profile" -msgstr "השתמש בפרופיל נפרד" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "מאפשר עוגיות וסשנים עצמאיים" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "שם פרופיל" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "שמור" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "טוען..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 -msgid "Detecting website information, please wait" -msgstr "מאתר מידע על האתר, אנא המתן" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 -msgid "Please enter a URL first." -msgstr "אנא הזן כתובת URL קודם." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 -msgid "Please enter a name for the WebApp." -msgstr "אנא הזן שם עבור ה-WebApp." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 -msgid "Please enter a URL for the WebApp." -msgstr "אנא הזן כתובת URL עבור ה-WebApp." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 -msgid "Please select a browser for the WebApp." -msgstr "אנא בחר דפדפן עבור ה-WebApp." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "מנהל אפליקציות אינטרנט" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "חפש אפליקציות אינטרנט" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 -msgid "Main Menu" -msgstr "תפריט ראשי" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 -msgid "Refresh" -msgstr "רענן" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "ייצוא אפליקציות אינטרנט" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 63 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 63 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "ייבוא אפליקציות אינטרנט" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "עבור לתיקיית היישומים" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 67 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 67 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "דפדף לתיקיית פרופילים" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 -msgid "Show Welcome Screen" -msgstr "הצג מסך ברוך הבא" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 390 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 390 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "הסר את כל היישומים האינטרנטיים" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 70 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 70 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "אודות" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 -msgid "Add" -msgstr "הוסף" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 -msgid "No WebApps Found" -msgstr "לא נמצאו אפליקציות אינטרנט" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "הוסף אפליקציית אינטרנט חדשה כדי להתחיל" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "היישום האינטרנטי נוצר בהצלחה" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "היישום האינטרנטי עודכן בהצלחה" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 -#, python-brace-format -msgid "Browser changed to {0}" -msgstr "הדפדפן שונה ל-{0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 -#, python-brace-format -msgid "" -"Are you sure you want to delete {0}?\n" -"\n" -"URL: {1}\n" -"Browser: {2}" -msgstr "" -"האם אתה בטוח שברצונך למחוק את {0}?\n" -"\n" -"כתובת אתר: {1}\n" -"דפדפן: {2}" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "גם מחק את תיקיית ההגדרות" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "מחק" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "היישום האינטרנטי נמחק בהצלחה" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 -msgid "REMOVE ALL" -msgstr "הסר הכל" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 -#, python-brace-format -msgid "" -"Are you sure you want to remove all your WebApps? This action cannot be undone.\n" -"\n" -"Type \"{0}\" to confirm." -msgstr "" -"האם אתה בטוח שברצונך להסיר את כל ה-WebApps שלך? פעולה זו אינה ניתנת לביטול.\n" -"\n" -"הקלד \"{0}\" כדי לאשר." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "הסר הכל" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 444 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 444 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "כל האפליקציות האינטרנטיות הוסרו" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 446 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 446 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "נכשל בהסרת כל היישומים האינטרנטיים" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 -#, python-brace-format -msgid "Icon {0} of {1}" -msgstr "אייקון {0} של {1}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "היישומים המובנים ייצאו בהצלחה" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "אין אפליקציות אינטרנט" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 +msgid "Change browser" +msgstr "שנה דפדפן" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 +msgid "Edit" +msgstr "ערוך" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 +msgid "New WebApp" +msgstr "WebApp חדש" + +#. -- Icon row -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 +msgid "Icon" +msgstr "סמל" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 +msgid "App Mode" +msgstr "מצב אפליקציה" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 +msgid "Separate Profile" +msgstr "פרופיל נפרד" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 +msgid "Select Icon" +msgstr "בחר סמל" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 +msgid "Images" +msgstr "תמונות" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 +msgid "ZIP files" +msgstr "קבצי ZIP" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 +#, rust-format +msgid "Imported {imported}, skipped {dups} duplicates" +msgstr "יובא {imported}, דילגו על {dups} כפילויות" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 +msgid "Import failed" +msgstr "הייבוא נכשל" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 +msgid "Export failed" +msgstr "הייצוא נכשל" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 +msgid "" +"This will delete all webapps and their desktop entries. This cannot be " +"undone." +msgstr "" +"פעולה זו תמחק את כל ה-Webapps ואת הקיצורים שלהם בשולחן העבודה. לא ניתן לבטל " +"פעולה זו." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 +msgid "Browser changed" +msgstr "הדפדפן שונה" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 +msgid "What are WebApps?" +msgstr "מהן WebApps?" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 +msgid "" +"WebApps are web applications that run in a dedicated browser window, " +"providing a more app-like experience for your favorite websites." +msgstr "" +"WebApps הן אפליקציות אינטרנט שרצות בחלון דפדפן ייעודי, ומספקות חוויית שימוש " +"דמויית אפליקציה לאתרים האהובים עליך." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 +msgid "Benefits of using WebApps:" +msgstr "יתרונות השימוש ב-WebApps:" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Focus" +msgstr "ריכוז" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Work without the distractions of other browser tabs" +msgstr "עבודה ללא הסחות דעת מטאבים אחרים בדפדפן" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Desktop Integration" +msgstr "אינטגרציה לשולחן העבודה" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Quick access from your application menu" +msgstr "גישה מהירה מתפריט האפליקציות שלך" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Isolated Profiles" +msgstr "פרופילים מבודדים" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Each webapp can have its own cookies and settings" +msgstr "לכל WebApp יכולות להיות עוגיות והגדרות משלו" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 +msgid "Back" +msgstr "חזור" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 +msgid "Forward" +msgstr "קדימה" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 +msgid "Reload" +msgstr "רענן" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 +msgid "Fullscreen" +msgstr "מסך מלא" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 +msgid "Enter URL…" +msgstr "הזן URL…" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 +msgid "Zoom In" +msgstr "הגדל זום" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 +msgid "Zoom Out" +msgstr "הקטן זום" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 +msgid "Reset Zoom" +msgstr "איפוס זום" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 +msgid "Developer Tools" +msgstr "כלי מפתח" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 +msgid "Menu" +msgstr "תפריט" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 +msgid "Open Link in Browser" +msgstr "פתח קישור בדפדפן" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 +msgid "Download Complete" +msgstr "ההורדה הושלמה" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 +msgid "Save File" +msgstr "שמור קובץ" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 +#~ msgid "Search templates" +#~ msgstr "חפש תבניות" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 +#, python-brace-format +#~ msgid "Browser: {0}" +#~ msgstr "דפדפן: {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 +#, python-brace-format +#~ msgid "Edit {0}" +#~ msgstr "ערוך {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 +#, python-brace-format +#~ msgid "Delete {0}" +#~ msgstr "מחק {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 +#~ msgid "" +#~ "What are WebApps?\n" +#~ "\n" +#~ "WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n" +#~ "\n" +#~ "Benefits of using WebApps:\n" +#~ "\n" +#~ "• Focus: Work without the distractions of other browser tabs\n" +#~ "• Desktop Integration: Quick access from your application menu\n" +#~ "• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" +#~ msgstr "" +#~ "מהן אפליקציות רשת?\n" +#~ "\n" +#~ "אפליקציות רשת הן יישומים רשתיים שפועלים בחלון דפדפן ייעודי, ומספקים חוויית שימוש דמוית אפליקציה לאתרי האינטרנט האהובים עליך.\n" +#~ "\n" +#~ "יתרונות השימוש באפליקציות רשת:\n" +#~ "\n" +#~ "• מיקוד: עבודה ללא הסחות דעת מכרטיסיות דפדפן אחרות\n" +#~ "• אינטגרציה עם שולחן העבודה: גישה מהירה מתפריט היישומים שלך\n" +#~ "• פרופילים מבודדים: אופציונלית, לכל אפליקציית רשת יכולות להיות עוגיות והגדרות משלה\n" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 +#~ msgid "System Default" +#~ msgstr "ברירת מחדל של מערכת" + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 -msgid "There are no WebApps to export." -msgstr "אין אפליקציות אינטרנט לייצוא." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 -msgid "The selected file does not exist." -msgstr "הקובץ שנבחר אינו קיים." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 -msgid "The selected file is not a valid ZIP archive." -msgstr "הקובץ שנבחר אינו ארכיון ZIP תקף." +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 -msgid "Error importing WebApps" -msgstr "שגיאה בייבוא WebApps" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 +#~ msgid "Default" +#~ msgstr "ברירת מחדל" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 +#~ msgid "Please select a browser." +#~ msgstr "אנא בחר דפדפן." + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 404 -msgid "Imported {} WebApps successfully ({} duplicates skipped)" -msgstr "ייבא {} אפליקציות אינטרנט בהצלחה ({} כפילויות הושמטו)" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 +#~ msgid "Error" +#~ msgstr "שגיאה" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 +#~ msgid "Choose from templates" +#~ msgstr "בחר מתוך תבניות" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 +#~ msgid "Detect" +#~ msgstr "גלה" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 +#~ msgid "App Icon" +#~ msgstr "אייקון אפליקציה" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 +#~ msgid "Select icon for the WebApp" +#~ msgstr "בחר סמל עבור ה-WebApp" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 +#~ msgid "Available Icons" +#~ msgstr "אייקונים זמינים" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 +#~ msgid "Application Mode" +#~ msgstr "מצב יישום" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 +#~ msgid "Profile Settings" +#~ msgstr "הגדרות פרופיל" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 +#~ msgid "Configure a separate browser profile for this webapp" +#~ msgstr "הגדר פרופיל דפדפן נפרד עבור אפליקציה זו" + +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 -msgid "Imported {} WebApps successfully" -msgstr "ייבא {} WebApps בהצלחה" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 -msgid "No" -msgstr "לא" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 -msgid "Yes" -msgstr "כן" +#~ msgid "Use separate profile" +#~ msgstr "השתמש בפרופיל נפרד" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 +#~ msgid "Detecting website information, please wait" +#~ msgstr "מאתר מידע על האתר, אנא המתן" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 +#~ msgid "Please enter a URL first." +#~ msgstr "אנא הזן כתובת URL קודם." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 +#~ msgid "Please enter a name for the WebApp." +#~ msgstr "אנא הזן שם עבור ה-WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 +#~ msgid "Please enter a URL for the WebApp." +#~ msgstr "אנא הזן כתובת URL עבור ה-WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 +#~ msgid "Please select a browser for the WebApp." +#~ msgstr "אנא בחר דפדפן עבור ה-WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 +#~ msgid "Main Menu" +#~ msgstr "תפריט ראשי" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 +#~ msgid "Refresh" +#~ msgstr "רענן" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 +#~ msgid "Show Welcome Screen" +#~ msgstr "הצג מסך ברוך הבא" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 +#~ msgid "Add" +#~ msgstr "הוסף" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 +#~ msgid "No WebApps Found" +#~ msgstr "לא נמצאו אפליקציות אינטרנט" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 +#, python-brace-format +#~ msgid "Browser changed to {0}" +#~ msgstr "הדפדפן שונה ל-{0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to delete {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Browser: {2}" +#~ msgstr "" +#~ "האם אתה בטוח שברצונך למחוק את {0}?\n" +#~ "\n" +#~ "כתובת אתר: {1}\n" +#~ "דפדפן: {2}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 +#~ msgid "REMOVE ALL" +#~ msgstr "הסר הכל" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to remove all your WebApps? This action cannot be undone.\n" +#~ "\n" +#~ "Type \"{0}\" to confirm." +#~ msgstr "" +#~ "האם אתה בטוח שברצונך להסיר את כל ה-WebApps שלך? פעולה זו אינה ניתנת לביטול.\n" +#~ "\n" +#~ "הקלד \"{0}\" כדי לאשר." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 +#, python-brace-format +#~ msgid "Icon {0} of {1}" +#~ msgstr "אייקון {0} של {1}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#~ msgid "There are no WebApps to export." +#~ msgstr "אין אפליקציות אינטרנט לייצוא." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 +#~ msgid "The selected file does not exist." +#~ msgstr "הקובץ שנבחר אינו קיים." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 +#~ msgid "The selected file is not a valid ZIP archive." +#~ msgstr "הקובץ שנבחר אינו ארכיון ZIP תקף." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 +#~ msgid "Error importing WebApps" +#~ msgstr "שגיאה בייבוא WebApps" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 404 +#~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" +#~ msgstr "ייבא {} אפליקציות אינטרנט בהצלחה ({} כפילויות הושמטו)" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 +#~ msgid "Imported {} WebApps successfully" +#~ msgstr "ייבא {} WebApps בהצלחה" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 +#~ msgid "No" +#~ msgstr "לא" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 +#~ msgid "Yes" +#~ msgstr "כן" diff --git a/biglinux-webapps/locale/hr.json b/biglinux-webapps/locale/hr.json deleted file mode 100644 index 8b09d58e..00000000 --- a/biglinux-webapps/locale/hr.json +++ /dev/null @@ -1 +0,0 @@ -{"hr":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Predlošci"]},"Choose a Template":{"*":["Odaberite predložak"]},"Search templates...":{"*":["Pretraži predloške..."]},"Search templates":{"*":["Pretraži predloške"]},"Search Results":{"*":["Rezultati pretraživanja"]},"No templates found":{"*":["Nema pronađenih predložaka"]},"Browser: {0}":{"*":["Preglednik: {0}"]},"Edit WebApp":{"*":["Uredi WebApp"]},"Edit {0}":{"*":["Uredi {0}"]},"Delete WebApp":{"*":["Izbriši WebApp"]},"Delete {0}":{"*":["Izbriši {0}"]},"Welcome to WebApps Manager":{"*":["Dobrodošli u WebApps Manager"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Što su WebAplikacije?\n\nWebAplikacije su web aplikacije koje se pokreću u posebnom prozoru preglednika, pružajući iskustvo slično aplikaciji za vaše omiljene web stranice.\n\nPrednosti korištenja WebAplikacija:\n\n• Fokus: Rad bez ometanja drugih kartica preglednika\n• Integracija s radnom površinom: Brzi pristup iz izbornika aplikacija\n• Izolirani profili: Opcionalno, svaka webaplikacija može imati svoje kolačiće i postavke\n"]},"Don't show this again":{"*":["Ne prikazuj ovo ponovno"]},"Let's Start":{"*":["Započnimo"]},"Select Browser":{"*":["Odaberite preglednik"]},"Cancel":{"*":["Otkaži"]},"Select":{"*":["Odaberi"]},"System Default":{"*":["Zadani sustava"]},"Default":{"*":["Zadano"]},"Please select a browser.":{"*":["Molimo odaberite preglednik."]},"Error":{"*":["Greška"]},"OK":{"*":["U redu"]},"Add WebApp":{"*":["Dodaj WebApp"]},"Choose from templates":{"*":["Odaberite iz predložaka"]},"URL":{"*":["URL"]},"Detect":{"*":["Otkrivanje"]},"Detect name and icon from website":{"*":["Otkrivanje imena i ikone s web stranice"]},"Name":{"*":["Ime"]},"App Icon":{"*":["Ikona aplikacije"]},"Select icon for the WebApp":{"*":["Odaberite ikonu za WebApp"]},"Available Icons":{"*":["Dostupne ikone"]},"Category":{"*":["Kategorija"]},"Application Mode":{"*":["Način aplikacije"]},"Opens as a native window without browser interface":{"*":["Otvara se kao izvorni prozor bez sučelja preglednika."]},"Browser":{"*":["Preglednik"]},"Profile Settings":{"*":["Postavke profila"]},"Configure a separate browser profile for this webapp":{"*":["Konfigurirajte odvojeni profil preglednika za ovu web aplikaciju"]},"Use separate profile":{"*":["Koristite odvojeni profil"]},"Allows independent cookies and sessions":{"*":["Omogućuje neovisne kolačiće i sesije"]},"Profile Name":{"*":["Ime profila"]},"Save":{"*":["Spremi"]},"Loading...":{"*":["Učitavanje..."]},"Detecting website information, please wait":{"*":["Otkrivanje informacija o web stranici, molimo pričekajte"]},"Please enter a URL first.":{"*":["Molimo unesite URL prvo."]},"Please enter a name for the WebApp.":{"*":["Molimo unesite naziv za WebApp."]},"Please enter a URL for the WebApp.":{"*":["Molimo unesite URL za WebApp."]},"Please select a browser for the WebApp.":{"*":["Molimo odaberite preglednik za WebApp."]},"WebApps Manager":{"*":["Upravitelj web aplikacija"]},"Search WebApps":{"*":["Pretraži WebAplikacije"]},"Main Menu":{"*":["Glavni izbornik"]},"Refresh":{"*":["Osvježi"]},"Export WebApps":{"*":["Izvezi WebAplikacije"]},"Import WebApps":{"*":["Uvezi WebAplikacije"]},"Browse Applications Folder":{"*":["Pregledaj mapu aplikacija"]},"Browse Profiles Folder":{"*":["Pregledaj mapu profila"]},"Show Welcome Screen":{"*":["Prikaži ekran dobrodošlice"]},"Remove All WebApps":{"*":["Ukloni sve web aplikacije"]},"About":{"*":["O aplikaciji"]},"Add":{"*":["Dodaj"]},"No WebApps Found":{"*":["Nema pronađenih WebAplikacija"]},"Add a new webapp to get started":{"*":["Dodajte novu web aplikaciju za početak"]},"WebApp created successfully":{"*":["WebApp je uspješno kreiran"]},"WebApp updated successfully":{"*":["WebApp je uspješno ažuriran"]},"Browser changed to {0}":{"*":["Preglednik je promijenjen u {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Jeste li sigurni da želite izbrisati {0}?\n\nURL: {1}\nPreglednik: {2}"]},"Also delete configuration folder":{"*":["Također izbrišite mapu s konfiguracijom."]},"Delete":{"*":["Izbriši"]},"WebApp deleted successfully":{"*":["WebApp je uspješno izbrisan."]},"REMOVE ALL":{"*":["UKLONI SVE"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Jeste li sigurni da želite ukloniti sve svoje WebAplikacije? Ova radnja se ne može poništiti.\n\nUpišite \"{0}\" za potvrdu."]},"Remove All":{"*":["Ukloni sve"]},"All WebApps have been removed":{"*":["Sve WebApp-ovi su uklonjeni."]},"Failed to remove all WebApps":{"*":["Nije uspjelo ukloniti sve WebAplikacije"]},"Icon {0} of {1}":{"*":["Ikona {0} od {1}"]},"WebApps exported successfully":{"*":["WebAplikacije su uspješno eksportirane."]},"No WebApps":{"*":["Nema WebAplikacija"]},"There are no WebApps to export.":{"*":["Nema WebAppsa za izvoz."]},"The selected file does not exist.":{"*":["Odabrana datoteka ne postoji."]},"The selected file is not a valid ZIP archive.":{"*":["Odabrana datoteka nije važeća ZIP arhiva."]},"Error importing WebApps":{"*":["Greška pri uvozu WebAplikacija"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["Uvezeni {} WebAppovi uspješno ({} duplicati preskočeni)"]},"Imported {} WebApps successfully":{"*":["Uvezeni {} WebAppovi uspješno"]},"No":{"*":["Ne"]},"Yes":{"*":["Da"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/hr.po b/biglinux-webapps/locale/hr.po index 50783b32..129bb923 100644 --- a/biglinux-webapps/locale/hr.po +++ b/biglinux-webapps/locale/hr.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the biglinux-webapps package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" "Project-Id-Version: biglinux-webapps\n" @@ -14,441 +14,749 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Predlošci" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Odaberite predložak" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Pretraži predloške..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 -msgid "Search templates" -msgstr "Pretraži predloške" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Rezultati pretraživanja" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Nema pronađenih predložaka" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 -#, python-brace-format -msgid "Browser: {0}" -msgstr "Preglednik: {0}" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Uredi WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 -#, python-brace-format -msgid "Edit {0}" -msgstr "Uredi {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Izbriši WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 -#, python-brace-format -msgid "Delete {0}" -msgstr "Izbriši {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:20 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Dobrodošli u WebApps Manager" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 -msgid "" -"What are WebApps?\n" -"\n" -"WebApps are web applications that run in a dedicated browser window, providing a more app-like " -"experience for your favorite websites.\n" -"\n" -"Benefits of using WebApps:\n" -"\n" -"• Focus: Work without the distractions of other browser tabs\n" -"• Desktop Integration: Quick access from your application menu\n" -"• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" -msgstr "" -"Što su WebAplikacije?\n" -"\n" -"WebAplikacije su web aplikacije koje se pokreću u posebnom prozoru preglednika, pružajući iskustvo " -"slično aplikaciji za vaše omiljene web stranice.\n" -"\n" -"Prednosti korištenja WebAplikacija:\n" -"\n" -"• Fokus: Rad bez ometanja drugih kartica preglednika\n" -"• Integracija s radnom površinom: Brzi pristup iz izbornika aplikacija\n" -"• Izolirani profili: Opcionalno, svaka webaplikacija može imati svoje kolačiće i postavke\n" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Ne prikazuj ovo ponovno" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Započnimo" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Odaberite preglednik" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:99 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:225 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:291 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Otkaži" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Odaberi" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 -msgid "System Default" -msgstr "Zadani sustava" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 -msgid "Default" -msgstr "Zadano" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 -msgid "Please select a browser." -msgstr "Molimo odaberite preglednik." -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 -msgid "Error" -msgstr "Greška" -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "U redu" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Dodaj WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 -msgid "Choose from templates" -msgstr "Odaberite iz predložaka" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 -msgid "Detect" -msgstr "Otkrivanje" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Otkrivanje imena i ikone s web stranice" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Ime" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 -msgid "App Icon" -msgstr "Ikona aplikacije" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 -msgid "Select icon for the WebApp" -msgstr "Odaberite ikonu za WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 -msgid "Available Icons" -msgstr "Dostupne ikone" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Kategorija" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 -msgid "Application Mode" -msgstr "Način aplikacije" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Otvara se kao izvorni prozor bez sučelja preglednika." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 +#. -- Browser row (hidden in app mode) -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Preglednik" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 -msgid "Profile Settings" -msgstr "Postavke profila" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 -msgid "Configure a separate browser profile for this webapp" -msgstr "Konfigurirajte odvojeni profil preglednika za ovu web aplikaciju" -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -msgid "Use separate profile" -msgstr "Koristite odvojeni profil" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Omogućuje neovisne kolačiće i sesije" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Ime profila" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Spremi" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Učitavanje..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 -msgid "Detecting website information, please wait" -msgstr "Otkrivanje informacija o web stranici, molimo pričekajte" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 -msgid "Please enter a URL first." -msgstr "Molimo unesite URL prvo." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 -msgid "Please enter a name for the WebApp." -msgstr "Molimo unesite naziv za WebApp." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 -msgid "Please enter a URL for the WebApp." -msgstr "Molimo unesite URL za WebApp." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 -msgid "Please select a browser for the WebApp." -msgstr "Molimo odaberite preglednik za WebApp." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "Upravitelj web aplikacija" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Pretraži WebAplikacije" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 -msgid "Main Menu" -msgstr "Glavni izbornik" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 -msgid "Refresh" -msgstr "Osvježi" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Izvezi WebAplikacije" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 63 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 63 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Uvezi WebAplikacije" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Pregledaj mapu aplikacija" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 67 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 67 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Pregledaj mapu profila" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 -msgid "Show Welcome Screen" -msgstr "Prikaži ekran dobrodošlice" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 390 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 390 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Ukloni sve web aplikacije" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 70 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 70 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "O aplikaciji" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 -msgid "Add" -msgstr "Dodaj" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 -msgid "No WebApps Found" -msgstr "Nema pronađenih WebAplikacija" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Dodajte novu web aplikaciju za početak" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "WebApp je uspješno kreiran" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "WebApp je uspješno ažuriran" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 -#, python-brace-format -msgid "Browser changed to {0}" -msgstr "Preglednik je promijenjen u {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 -#, python-brace-format -msgid "" -"Are you sure you want to delete {0}?\n" -"\n" -"URL: {1}\n" -"Browser: {2}" -msgstr "" -"Jeste li sigurni da želite izbrisati {0}?\n" -"\n" -"URL: {1}\n" -"Preglednik: {2}" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Također izbrišite mapu s konfiguracijom." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Izbriši" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "WebApp je uspješno izbrisan." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 -msgid "REMOVE ALL" -msgstr "UKLONI SVE" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 -#, python-brace-format -msgid "" -"Are you sure you want to remove all your WebApps? This action cannot be undone.\n" -"\n" -"Type \"{0}\" to confirm." -msgstr "" -"Jeste li sigurni da želite ukloniti sve svoje WebAplikacije? Ova radnja se ne može poništiti.\n" -"\n" -"Upišite \"{0}\" za potvrdu." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Ukloni sve" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 444 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 444 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Sve WebApp-ovi su uklonjeni." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 446 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 446 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Nije uspjelo ukloniti sve WebAplikacije" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 -#, python-brace-format -msgid "Icon {0} of {1}" -msgstr "Ikona {0} od {1}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebAplikacije su uspješno eksportirane." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Nema WebAplikacija" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 +msgid "Change browser" +msgstr "Promijeni preglednik" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 +msgid "Edit" +msgstr "Uredi" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 +msgid "New WebApp" +msgstr "Nova WebApp" + +#. -- Icon row -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 +msgid "Icon" +msgstr "Ikona" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 +msgid "App Mode" +msgstr "Način rada aplikacije" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 +msgid "Separate Profile" +msgstr "Odvojen profil" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 +msgid "Select Icon" +msgstr "Odaberi ikonu" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 +msgid "Images" +msgstr "Slike" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 +msgid "ZIP files" +msgstr "ZIP datoteke" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 +#, rust-format +msgid "Imported {imported}, skipped {dups} duplicates" +msgstr "Uvezeno {imported}, preskočeno {dups} duplikata" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 +msgid "Import failed" +msgstr "Uvoz nije uspio" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 +msgid "Export failed" +msgstr "Izvoz nije uspio" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 +msgid "" +"This will delete all webapps and their desktop entries. This cannot be " +"undone." +msgstr "" +"Ovo će izbrisati sve webaplikacije i njihove unose na radnoj površini. Ovo " +"se ne može poništiti." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 +msgid "Browser changed" +msgstr "Preglednik je promijenjen" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 +msgid "What are WebApps?" +msgstr "Što su WebApps?" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 +msgid "" +"WebApps are web applications that run in a dedicated browser window, " +"providing a more app-like experience for your favorite websites." +msgstr "" +"WebApps su web aplikacije koje se pokreću u posebnom prozoru preglednika, " +"pružajući iskustvo slično aplikaciji za vaše omiljene web stranice." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 +msgid "Benefits of using WebApps:" +msgstr "Prednosti korištenja WebApps:" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Focus" +msgstr "Fokus" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Work without the distractions of other browser tabs" +msgstr "Rad bez ometanja drugih kartica preglednika" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Desktop Integration" +msgstr "Integracija na radnu površinu" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Quick access from your application menu" +msgstr "Brzi pristup iz izbornika aplikacija" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Isolated Profiles" +msgstr "Izolirani profili" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Each webapp can have its own cookies and settings" +msgstr "Svaki webapp može imati svoje kolačiće i postavke" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 +msgid "Back" +msgstr "Natrag" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 +msgid "Forward" +msgstr "Naprijed" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 +msgid "Reload" +msgstr "Ponovno učitaj" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 +msgid "Fullscreen" +msgstr "Cijeli zaslon" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 +msgid "Enter URL…" +msgstr "Unesite URL…" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 +msgid "Zoom In" +msgstr "Uvećaj" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 +msgid "Zoom Out" +msgstr "Umanji" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 +msgid "Reset Zoom" +msgstr "Resetiraj zum" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 +msgid "Developer Tools" +msgstr "Alati za razvoj" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 +msgid "Menu" +msgstr "Izbornik" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 +msgid "Open Link in Browser" +msgstr "Otvori vezu u pregledniku" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 +msgid "Download Complete" +msgstr "Preuzimanje završeno" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 +msgid "Save File" +msgstr "Spremi datoteku" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 +#~ msgid "Search templates" +#~ msgstr "Pretraži predloške" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 +#, python-brace-format +#~ msgid "Browser: {0}" +#~ msgstr "Preglednik: {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 +#, python-brace-format +#~ msgid "Edit {0}" +#~ msgstr "Uredi {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 +#, python-brace-format +#~ msgid "Delete {0}" +#~ msgstr "Izbriši {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 +#~ msgid "" +#~ "What are WebApps?\n" +#~ "\n" +#~ "WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n" +#~ "\n" +#~ "Benefits of using WebApps:\n" +#~ "\n" +#~ "• Focus: Work without the distractions of other browser tabs\n" +#~ "• Desktop Integration: Quick access from your application menu\n" +#~ "• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" +#~ msgstr "" +#~ "Što su WebAplikacije?\n" +#~ "\n" +#~ "WebAplikacije su web aplikacije koje se pokreću u posebnom prozoru preglednika, pružajući iskustvo slično aplikaciji za vaše omiljene web stranice.\n" +#~ "\n" +#~ "Prednosti korištenja WebAplikacija:\n" +#~ "\n" +#~ "• Fokus: Rad bez ometanja drugih kartica preglednika\n" +#~ "• Integracija s radnom površinom: Brzi pristup iz izbornika aplikacija\n" +#~ "• Izolirani profili: Opcionalno, svaka webaplikacija može imati svoje kolačiće i postavke\n" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 +#~ msgid "System Default" +#~ msgstr "Zadani sustava" + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 -msgid "There are no WebApps to export." -msgstr "Nema WebAppsa za izvoz." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 -msgid "The selected file does not exist." -msgstr "Odabrana datoteka ne postoji." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 -msgid "The selected file is not a valid ZIP archive." -msgstr "Odabrana datoteka nije važeća ZIP arhiva." +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 -msgid "Error importing WebApps" -msgstr "Greška pri uvozu WebAplikacija" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 +#~ msgid "Default" +#~ msgstr "Zadano" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 +#~ msgid "Please select a browser." +#~ msgstr "Molimo odaberite preglednik." + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 404 -msgid "Imported {} WebApps successfully ({} duplicates skipped)" -msgstr "Uvezeni {} WebAppovi uspješno ({} duplicati preskočeni)" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 +#~ msgid "Error" +#~ msgstr "Greška" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 +#~ msgid "Choose from templates" +#~ msgstr "Odaberite iz predložaka" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 +#~ msgid "Detect" +#~ msgstr "Otkrivanje" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 +#~ msgid "App Icon" +#~ msgstr "Ikona aplikacije" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 +#~ msgid "Select icon for the WebApp" +#~ msgstr "Odaberite ikonu za WebApp" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 +#~ msgid "Available Icons" +#~ msgstr "Dostupne ikone" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 +#~ msgid "Application Mode" +#~ msgstr "Način aplikacije" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 +#~ msgid "Profile Settings" +#~ msgstr "Postavke profila" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 +#~ msgid "Configure a separate browser profile for this webapp" +#~ msgstr "Konfigurirajte odvojeni profil preglednika za ovu web aplikaciju" + +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 -msgid "Imported {} WebApps successfully" -msgstr "Uvezeni {} WebAppovi uspješno" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 -msgid "No" -msgstr "Ne" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 -msgid "Yes" -msgstr "Da" +#~ msgid "Use separate profile" +#~ msgstr "Koristite odvojeni profil" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 +#~ msgid "Detecting website information, please wait" +#~ msgstr "Otkrivanje informacija o web stranici, molimo pričekajte" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 +#~ msgid "Please enter a URL first." +#~ msgstr "Molimo unesite URL prvo." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 +#~ msgid "Please enter a name for the WebApp." +#~ msgstr "Molimo unesite naziv za WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 +#~ msgid "Please enter a URL for the WebApp." +#~ msgstr "Molimo unesite URL za WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 +#~ msgid "Please select a browser for the WebApp." +#~ msgstr "Molimo odaberite preglednik za WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 +#~ msgid "Main Menu" +#~ msgstr "Glavni izbornik" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 +#~ msgid "Refresh" +#~ msgstr "Osvježi" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 +#~ msgid "Show Welcome Screen" +#~ msgstr "Prikaži ekran dobrodošlice" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 +#~ msgid "Add" +#~ msgstr "Dodaj" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 +#~ msgid "No WebApps Found" +#~ msgstr "Nema pronađenih WebAplikacija" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 +#, python-brace-format +#~ msgid "Browser changed to {0}" +#~ msgstr "Preglednik je promijenjen u {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to delete {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Browser: {2}" +#~ msgstr "" +#~ "Jeste li sigurni da želite izbrisati {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Preglednik: {2}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 +#~ msgid "REMOVE ALL" +#~ msgstr "UKLONI SVE" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to remove all your WebApps? This action cannot be undone.\n" +#~ "\n" +#~ "Type \"{0}\" to confirm." +#~ msgstr "" +#~ "Jeste li sigurni da želite ukloniti sve svoje WebAplikacije? Ova radnja se ne može poništiti.\n" +#~ "\n" +#~ "Upišite \"{0}\" za potvrdu." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 +#, python-brace-format +#~ msgid "Icon {0} of {1}" +#~ msgstr "Ikona {0} od {1}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#~ msgid "There are no WebApps to export." +#~ msgstr "Nema WebAppsa za izvoz." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 +#~ msgid "The selected file does not exist." +#~ msgstr "Odabrana datoteka ne postoji." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 +#~ msgid "The selected file is not a valid ZIP archive." +#~ msgstr "Odabrana datoteka nije važeća ZIP arhiva." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 +#~ msgid "Error importing WebApps" +#~ msgstr "Greška pri uvozu WebAplikacija" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 404 +#~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" +#~ msgstr "Uvezeni {} WebAppovi uspješno ({} duplicati preskočeni)" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 +#~ msgid "Imported {} WebApps successfully" +#~ msgstr "Uvezeni {} WebAppovi uspješno" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 +#~ msgid "No" +#~ msgstr "Ne" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 +#~ msgid "Yes" +#~ msgstr "Da" diff --git a/biglinux-webapps/locale/hu.json b/biglinux-webapps/locale/hu.json deleted file mode 100644 index 917beacd..00000000 --- a/biglinux-webapps/locale/hu.json +++ /dev/null @@ -1 +0,0 @@ -{"hu":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Sablonok"]},"Choose a Template":{"*":["Válasszon egy sablont"]},"Search templates...":{"*":["Keresés sablonok..."]},"Search templates":{"*":["Keresési sablonok"]},"Search Results":{"*":["Keresési eredmények"]},"No templates found":{"*":["Nincsenek sablonok."]},"Browser: {0}":{"*":["Böngésző: {0}"]},"Edit WebApp":{"*":["Webalkalmazás szerkesztése"]},"Edit {0}":{"*":["Szerkesztés {0}"]},"Delete WebApp":{"*":["Webalkalmazás törlése"]},"Delete {0}":{"*":["Törölje {0}"]},"Welcome to WebApps Manager":{"*":["Üdvözöljük a WebApps Managerben"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Mi az a WebApp?\n\nA WebAppok olyan webalkalmazások, amelyek egy dedikált böngészőablakban futnak, így alkalmazás-szerű élményt nyújtanak a kedvenc weboldalaid számára.\n\nA WebAppok használatának előnyei:\n\n• Fókusz: Dolgozz zavaró böngészőfülek nélkül\n• Asztali integráció: Gyors hozzáférés az alkalmazásmenüből\n• Izolált profilok: Opcionálisan, minden webappnak lehet saját sütije és beállításai\n"]},"Don't show this again":{"*":["Ne mutasd ezt újra"]},"Let's Start":{"*":["Kezdjük el"]},"Select Browser":{"*":["Böngésző kiválasztása"]},"Cancel":{"*":["Mégse"]},"Select":{"*":["Kiválasztás"]},"System Default":{"*":["Rendszer alapértelmezett"]},"Default":{"*":["Alapértelmezett"]},"Please select a browser.":{"*":["Kérjük, válasszon egy böngészőt."]},"Error":{"*":["Hiba"]},"OK":{"*":["Rendben"]},"Add WebApp":{"*":["Webalkalmazás hozzáadása"]},"Choose from templates":{"*":["Válasszon a sablonok közül"]},"URL":{"*":["URL"]},"Detect":{"*":["Észlelés"]},"Detect name and icon from website":{"*":["Nevezze meg és ikont észlel a weboldalról"]},"Name":{"*":["Név"]},"App Icon":{"*":["Alkalmazás ikon"]},"Select icon for the WebApp":{"*":["Válassza ki az ikont a WebApp-hoz"]},"Available Icons":{"*":["Elérhető ikonok"]},"Category":{"*":["Kategória"]},"Application Mode":{"*":["Alkalmazás mód"]},"Opens as a native window without browser interface":{"*":["Böngészői felület nélküli natív ablakban nyílik meg."]},"Browser":{"*":["Böngésző"]},"Profile Settings":{"*":["Profilbeállítások"]},"Configure a separate browser profile for this webapp":{"*":["Állítson be egy külön böngészőprofilt ehhez a webalkalmazáshoz."]},"Use separate profile":{"*":["Használj külön profilt"]},"Allows independent cookies and sessions":{"*":["Független sütik és munkamenetek engedélyezése"]},"Profile Name":{"*":["Profil név"]},"Save":{"*":["Mentés"]},"Loading...":{"*":["Betöltés..."]},"Detecting website information, please wait":{"*":["Weboldal-információk észlelése, kérem várjon"]},"Please enter a URL first.":{"*":["Kérjük, először adjon meg egy URL-t."]},"Please enter a name for the WebApp.":{"*":["Kérjük, adjon meg egy nevet a WebApp számára."]},"Please enter a URL for the WebApp.":{"*":["Kérjük, adjon meg egy URL-t a WebApp számára."]},"Please select a browser for the WebApp.":{"*":["Kérjük, válasszon egy böngészőt a WebApp-hoz."]},"WebApps Manager":{"*":["Webalkalmazások kezelője"]},"Search WebApps":{"*":["Webalkalmazások keresése"]},"Main Menu":{"*":["Főmenü"]},"Refresh":{"*":["Frissítés"]},"Export WebApps":{"*":["Webalkalmazások exportálása"]},"Import WebApps":{"*":["Webalkalmazások importálása"]},"Browse Applications Folder":{"*":["Böngéssze az Alkalmazások mappát"]},"Browse Profiles Folder":{"*":["Profilok mappa böngészése"]},"Show Welcome Screen":{"*":["Üdvözlő képernyő megjelenítése"]},"Remove All WebApps":{"*":["Minden WebApp eltávolítása"]},"About":{"*":["Névjegy"]},"Add":{"*":["Hozzáadás"]},"No WebApps Found":{"*":["Nincs WebApp található"]},"Add a new webapp to get started":{"*":["Adj hozzá egy új webalkalmazást a kezdéshez."]},"WebApp created successfully":{"*":["A WebApp sikeresen létrejött"]},"WebApp updated successfully":{"*":["A WebApp sikeresen frissítve lett."]},"Browser changed to {0}":{"*":["A böngésző megváltozott {0}-ra."]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Biztosan törölni akarja a(z) {0} elemet?\n\nURL: {1}\nBöngésző: {2}"]},"Also delete configuration folder":{"*":["A konfigurációs mappa törlése is."]},"Delete":{"*":["Törlés"]},"WebApp deleted successfully":{"*":["A WebApp sikeresen törölve."]},"REMOVE ALL":{"*":["MINDEN ELTÁVOLÍTÁSA"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Biztos benne, hogy el akarja távolítani az összes WebApp-ját? Ez a művelet nem vonható vissza.\n\nÍrja be a \"{0}\" megerősítéshez."]},"Remove All":{"*":["Összes eltávolítása"]},"All WebApps have been removed":{"*":["Minden WebApp eltávolításra került."]},"Failed to remove all WebApps":{"*":["Nem sikerült eltávolítani az összes WebAppot."]},"Icon {0} of {1}":{"*":["Ikon {0} a {1}-ben"]},"WebApps exported successfully":{"*":["A WebAppok sikeresen exportálva lettek."]},"No WebApps":{"*":["Nincsenek Webalkalmazások"]},"There are no WebApps to export.":{"*":["Nincsenek exportálható WebAppok."]},"The selected file does not exist.":{"*":["A kiválasztott fájl nem létezik."]},"The selected file is not a valid ZIP archive.":{"*":["A kiválasztott fájl nem érvényes ZIP archívum."]},"Error importing WebApps":{"*":["Hiba a WebApps importálásakor"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["Sikeresen importált {} WebAppot ({} duplikált kihagyva)"]},"Imported {} WebApps successfully":{"*":["Sikeresen importált {} WebAppokat"]},"No":{"*":["Nem"]},"Yes":{"*":["Igen"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/hu.po b/biglinux-webapps/locale/hu.po index 4c93560e..4df8c325 100644 --- a/biglinux-webapps/locale/hu.po +++ b/biglinux-webapps/locale/hu.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the biglinux-webapps package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" "Project-Id-Version: biglinux-webapps\n" @@ -14,441 +14,748 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Sablonok" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Válasszon egy sablont" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Keresés sablonok..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 -msgid "Search templates" -msgstr "Keresési sablonok" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Keresési eredmények" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Nincsenek sablonok." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 -#, python-brace-format -msgid "Browser: {0}" -msgstr "Böngésző: {0}" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Webalkalmazás szerkesztése" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 -#, python-brace-format -msgid "Edit {0}" -msgstr "Szerkesztés {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Webalkalmazás törlése" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 -#, python-brace-format -msgid "Delete {0}" -msgstr "Törölje {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:20 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Üdvözöljük a WebApps Managerben" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 -msgid "" -"What are WebApps?\n" -"\n" -"WebApps are web applications that run in a dedicated browser window, providing a more app-like " -"experience for your favorite websites.\n" -"\n" -"Benefits of using WebApps:\n" -"\n" -"• Focus: Work without the distractions of other browser tabs\n" -"• Desktop Integration: Quick access from your application menu\n" -"• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" -msgstr "" -"Mi az a WebApp?\n" -"\n" -"A WebAppok olyan webalkalmazások, amelyek egy dedikált böngészőablakban futnak, így " -"alkalmazás-szerű élményt nyújtanak a kedvenc weboldalaid számára.\n" -"\n" -"A WebAppok használatának előnyei:\n" -"\n" -"• Fókusz: Dolgozz zavaró böngészőfülek nélkül\n" -"• Asztali integráció: Gyors hozzáférés az alkalmazásmenüből\n" -"• Izolált profilok: Opcionálisan, minden webappnak lehet saját sütije és beállításai\n" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Ne mutasd ezt újra" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Kezdjük el" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Böngésző kiválasztása" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:99 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:225 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:291 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Mégse" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Kiválasztás" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 -msgid "System Default" -msgstr "Rendszer alapértelmezett" -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 -msgid "Default" -msgstr "Alapértelmezett" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 -msgid "Please select a browser." -msgstr "Kérjük, válasszon egy böngészőt." -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 -msgid "Error" -msgstr "Hiba" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "Rendben" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Webalkalmazás hozzáadása" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 -msgid "Choose from templates" -msgstr "Válasszon a sablonok közül" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 -msgid "Detect" -msgstr "Észlelés" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Nevezze meg és ikont észlel a weboldalról" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Név" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 -msgid "App Icon" -msgstr "Alkalmazás ikon" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 -msgid "Select icon for the WebApp" -msgstr "Válassza ki az ikont a WebApp-hoz" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 -msgid "Available Icons" -msgstr "Elérhető ikonok" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Kategória" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 -msgid "Application Mode" -msgstr "Alkalmazás mód" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Böngészői felület nélküli natív ablakban nyílik meg." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 +#. -- Browser row (hidden in app mode) -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Böngésző" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 -msgid "Profile Settings" -msgstr "Profilbeállítások" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 -msgid "Configure a separate browser profile for this webapp" -msgstr "Állítson be egy külön böngészőprofilt ehhez a webalkalmazáshoz." -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -msgid "Use separate profile" -msgstr "Használj külön profilt" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Független sütik és munkamenetek engedélyezése" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Profil név" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Mentés" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Betöltés..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 -msgid "Detecting website information, please wait" -msgstr "Weboldal-információk észlelése, kérem várjon" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 -msgid "Please enter a URL first." -msgstr "Kérjük, először adjon meg egy URL-t." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 -msgid "Please enter a name for the WebApp." -msgstr "Kérjük, adjon meg egy nevet a WebApp számára." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 -msgid "Please enter a URL for the WebApp." -msgstr "Kérjük, adjon meg egy URL-t a WebApp számára." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 -msgid "Please select a browser for the WebApp." -msgstr "Kérjük, válasszon egy böngészőt a WebApp-hoz." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "Webalkalmazások kezelője" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Webalkalmazások keresése" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 -msgid "Main Menu" -msgstr "Főmenü" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 -msgid "Refresh" -msgstr "Frissítés" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Webalkalmazások exportálása" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 63 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 63 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Webalkalmazások importálása" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Böngéssze az Alkalmazások mappát" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 67 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 67 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Profilok mappa böngészése" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 -msgid "Show Welcome Screen" -msgstr "Üdvözlő képernyő megjelenítése" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 390 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 390 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Minden WebApp eltávolítása" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 70 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 70 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "Névjegy" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 -msgid "Add" -msgstr "Hozzáadás" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 -msgid "No WebApps Found" -msgstr "Nincs WebApp található" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Adj hozzá egy új webalkalmazást a kezdéshez." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "A WebApp sikeresen létrejött" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "A WebApp sikeresen frissítve lett." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 -#, python-brace-format -msgid "Browser changed to {0}" -msgstr "A böngésző megváltozott {0}-ra." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 -#, python-brace-format -msgid "" -"Are you sure you want to delete {0}?\n" -"\n" -"URL: {1}\n" -"Browser: {2}" -msgstr "" -"Biztosan törölni akarja a(z) {0} elemet?\n" -"\n" -"URL: {1}\n" -"Böngésző: {2}" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "A konfigurációs mappa törlése is." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Törlés" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "A WebApp sikeresen törölve." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 -msgid "REMOVE ALL" -msgstr "MINDEN ELTÁVOLÍTÁSA" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 -#, python-brace-format -msgid "" -"Are you sure you want to remove all your WebApps? This action cannot be undone.\n" -"\n" -"Type \"{0}\" to confirm." -msgstr "" -"Biztos benne, hogy el akarja távolítani az összes WebApp-ját? Ez a művelet nem vonható vissza.\n" -"\n" -"Írja be a \"{0}\" megerősítéshez." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Összes eltávolítása" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 444 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 444 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Minden WebApp eltávolításra került." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 446 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 446 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Nem sikerült eltávolítani az összes WebAppot." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 -#, python-brace-format -msgid "Icon {0} of {1}" -msgstr "Ikon {0} a {1}-ben" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "A WebAppok sikeresen exportálva lettek." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Nincsenek Webalkalmazások" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 +msgid "Change browser" +msgstr "Böngésző váltása" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 +msgid "Edit" +msgstr "Szerkesztés" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 +msgid "New WebApp" +msgstr "Új WebApp" + +#. -- Icon row -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 +msgid "Icon" +msgstr "Ikon" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 +msgid "App Mode" +msgstr "Alkalmazás mód" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 +msgid "Separate Profile" +msgstr "Külön profil" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 +msgid "Select Icon" +msgstr "Ikon kiválasztása" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 +msgid "Images" +msgstr "Képek" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 +msgid "ZIP files" +msgstr "ZIP fájlok" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 +#, rust-format +msgid "Imported {imported}, skipped {dups} duplicates" +msgstr "Importálva {imported}, kihagyva {dups} duplikátum" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 +msgid "Import failed" +msgstr "Importálás sikertelen" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 +msgid "Export failed" +msgstr "Exportálás sikertelen" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 +msgid "" +"This will delete all webapps and their desktop entries. This cannot be " +"undone." +msgstr "" +"Ez töröl minden webappot és azok asztali bejegyzéseit. Ez nem visszavonható." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 +msgid "Browser changed" +msgstr "Böngésző megváltoztatva" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 +msgid "What are WebApps?" +msgstr "Mik azok a WebAppok?" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 +msgid "" +"WebApps are web applications that run in a dedicated browser window, " +"providing a more app-like experience for your favorite websites." +msgstr "" +"A WebApps olyan webalkalmazások, amelyek egy dedikált böngészőablakban " +"futnak, így app-szerű élményt nyújtanak kedvenc weboldalaid számára." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 +msgid "Benefits of using WebApps:" +msgstr "A WebApps használatának előnyei:" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Focus" +msgstr "Fókusz" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Work without the distractions of other browser tabs" +msgstr "Dolgozz anélkül, hogy más böngészőfülek zavarnának" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Desktop Integration" +msgstr "Asztali integráció" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Quick access from your application menu" +msgstr "Gyors hozzáférés az alkalmazásmenüből" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Isolated Profiles" +msgstr "Elkülönített profilok" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Each webapp can have its own cookies and settings" +msgstr "Minden webappnak lehet saját sütije és beállítása" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 +msgid "Back" +msgstr "Vissza" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 +msgid "Forward" +msgstr "Előre" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 +msgid "Reload" +msgstr "Újratöltés" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 +msgid "Fullscreen" +msgstr "Teljes képernyő" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 +msgid "Enter URL…" +msgstr "Írd be az URL-t…" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 +msgid "Zoom In" +msgstr "Nagyítás" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 +msgid "Zoom Out" +msgstr "Kicsinyítés" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 +msgid "Reset Zoom" +msgstr "Nagyítás visszaállítása" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 +msgid "Developer Tools" +msgstr "Fejlesztői eszközök" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 +msgid "Menu" +msgstr "Menü" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 +msgid "Open Link in Browser" +msgstr "Hivatkozás megnyitása böngészőben" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 +msgid "Download Complete" +msgstr "Letöltés befejezve" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 +msgid "Save File" +msgstr "Fájl mentése" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 +#~ msgid "Search templates" +#~ msgstr "Keresési sablonok" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 +#, python-brace-format +#~ msgid "Browser: {0}" +#~ msgstr "Böngésző: {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 +#, python-brace-format +#~ msgid "Edit {0}" +#~ msgstr "Szerkesztés {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 +#, python-brace-format +#~ msgid "Delete {0}" +#~ msgstr "Törölje {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 +#~ msgid "" +#~ "What are WebApps?\n" +#~ "\n" +#~ "WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n" +#~ "\n" +#~ "Benefits of using WebApps:\n" +#~ "\n" +#~ "• Focus: Work without the distractions of other browser tabs\n" +#~ "• Desktop Integration: Quick access from your application menu\n" +#~ "• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" +#~ msgstr "" +#~ "Mi az a WebApp?\n" +#~ "\n" +#~ "A WebAppok olyan webalkalmazások, amelyek egy dedikált böngészőablakban futnak, így alkalmazás-szerű élményt nyújtanak a kedvenc weboldalaid számára.\n" +#~ "\n" +#~ "A WebAppok használatának előnyei:\n" +#~ "\n" +#~ "• Fókusz: Dolgozz zavaró böngészőfülek nélkül\n" +#~ "• Asztali integráció: Gyors hozzáférés az alkalmazásmenüből\n" +#~ "• Izolált profilok: Opcionálisan, minden webappnak lehet saját sütije és beállításai\n" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 +#~ msgid "System Default" +#~ msgstr "Rendszer alapértelmezett" + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 -msgid "There are no WebApps to export." -msgstr "Nincsenek exportálható WebAppok." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 -msgid "The selected file does not exist." -msgstr "A kiválasztott fájl nem létezik." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 -msgid "The selected file is not a valid ZIP archive." -msgstr "A kiválasztott fájl nem érvényes ZIP archívum." +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 -msgid "Error importing WebApps" -msgstr "Hiba a WebApps importálásakor" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 +#~ msgid "Default" +#~ msgstr "Alapértelmezett" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 +#~ msgid "Please select a browser." +#~ msgstr "Kérjük, válasszon egy böngészőt." + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 404 -msgid "Imported {} WebApps successfully ({} duplicates skipped)" -msgstr "Sikeresen importált {} WebAppot ({} duplikált kihagyva)" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 +#~ msgid "Error" +#~ msgstr "Hiba" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 +#~ msgid "Choose from templates" +#~ msgstr "Válasszon a sablonok közül" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 +#~ msgid "Detect" +#~ msgstr "Észlelés" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 +#~ msgid "App Icon" +#~ msgstr "Alkalmazás ikon" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 +#~ msgid "Select icon for the WebApp" +#~ msgstr "Válassza ki az ikont a WebApp-hoz" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 +#~ msgid "Available Icons" +#~ msgstr "Elérhető ikonok" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 +#~ msgid "Application Mode" +#~ msgstr "Alkalmazás mód" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 +#~ msgid "Profile Settings" +#~ msgstr "Profilbeállítások" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 +#~ msgid "Configure a separate browser profile for this webapp" +#~ msgstr "Állítson be egy külön böngészőprofilt ehhez a webalkalmazáshoz." + +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 -msgid "Imported {} WebApps successfully" -msgstr "Sikeresen importált {} WebAppokat" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 -msgid "No" -msgstr "Nem" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 -msgid "Yes" -msgstr "Igen" +#~ msgid "Use separate profile" +#~ msgstr "Használj külön profilt" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 +#~ msgid "Detecting website information, please wait" +#~ msgstr "Weboldal-információk észlelése, kérem várjon" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 +#~ msgid "Please enter a URL first." +#~ msgstr "Kérjük, először adjon meg egy URL-t." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 +#~ msgid "Please enter a name for the WebApp." +#~ msgstr "Kérjük, adjon meg egy nevet a WebApp számára." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 +#~ msgid "Please enter a URL for the WebApp." +#~ msgstr "Kérjük, adjon meg egy URL-t a WebApp számára." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 +#~ msgid "Please select a browser for the WebApp." +#~ msgstr "Kérjük, válasszon egy böngészőt a WebApp-hoz." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 +#~ msgid "Main Menu" +#~ msgstr "Főmenü" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 +#~ msgid "Refresh" +#~ msgstr "Frissítés" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 +#~ msgid "Show Welcome Screen" +#~ msgstr "Üdvözlő képernyő megjelenítése" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 +#~ msgid "Add" +#~ msgstr "Hozzáadás" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 +#~ msgid "No WebApps Found" +#~ msgstr "Nincs WebApp található" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 +#, python-brace-format +#~ msgid "Browser changed to {0}" +#~ msgstr "A böngésző megváltozott {0}-ra." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to delete {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Browser: {2}" +#~ msgstr "" +#~ "Biztosan törölni akarja a(z) {0} elemet?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Böngésző: {2}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 +#~ msgid "REMOVE ALL" +#~ msgstr "MINDEN ELTÁVOLÍTÁSA" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to remove all your WebApps? This action cannot be undone.\n" +#~ "\n" +#~ "Type \"{0}\" to confirm." +#~ msgstr "" +#~ "Biztos benne, hogy el akarja távolítani az összes WebApp-ját? Ez a művelet nem vonható vissza.\n" +#~ "\n" +#~ "Írja be a \"{0}\" megerősítéshez." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 +#, python-brace-format +#~ msgid "Icon {0} of {1}" +#~ msgstr "Ikon {0} a {1}-ben" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#~ msgid "There are no WebApps to export." +#~ msgstr "Nincsenek exportálható WebAppok." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 +#~ msgid "The selected file does not exist." +#~ msgstr "A kiválasztott fájl nem létezik." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 +#~ msgid "The selected file is not a valid ZIP archive." +#~ msgstr "A kiválasztott fájl nem érvényes ZIP archívum." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 +#~ msgid "Error importing WebApps" +#~ msgstr "Hiba a WebApps importálásakor" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 404 +#~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" +#~ msgstr "Sikeresen importált {} WebAppot ({} duplikált kihagyva)" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 +#~ msgid "Imported {} WebApps successfully" +#~ msgstr "Sikeresen importált {} WebAppokat" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 +#~ msgid "No" +#~ msgstr "Nem" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 +#~ msgid "Yes" +#~ msgstr "Igen" diff --git a/biglinux-webapps/locale/is.json b/biglinux-webapps/locale/is.json deleted file mode 100644 index f092e4bc..00000000 --- a/biglinux-webapps/locale/is.json +++ /dev/null @@ -1 +0,0 @@ -{"is":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["sniðmát"]},"Choose a Template":{"*":["Veldu sniðmát"]},"Search templates...":{"*":["Leita að sniðmátum..."]},"Search templates":{"*":["Leitaðu að sniðmátum"]},"Search Results":{"*":["Leitni niðurstöður"]},"No templates found":{"*":["Engin ekki fundin."]},"Browser: {0}":{"*":["Vafri: {0}"]},"Edit WebApp":{"*":["Breyta Vefforrit"]},"Edit {0}":{"*":["Breyta {0}"]},"Delete WebApp":{"*":["Eyða vefforriti"]},"Delete {0}":{"*":["Eyða {0}"]},"Welcome to WebApps Manager":{"*":["Velkomin í WebApps Stjóra"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Hvað eru Vefforrit?\n\nVefforrit eru vefumsóknir sem keyra í sérstöku vafravindu, sem veitir meira forritalíkt upplifun fyrir uppáhalds vefsíður þínar.\n\nÁvinningur af notkun Vefforrita:\n\n• Fókus: Vinna án truflana frá öðrum vafratöflum\n• Vinnustöðva samþætting: Fljótleg aðgangur frá forritavalmyndinni þinni\n• Einangruð prófíl: Valfrjálst, hvert vefforrit getur haft sín eigin kökur og stillingar\n"]},"Don't show this again":{"*":["Ekki sýna þetta aftur"]},"Let's Start":{"*":["לְבַשֵּׁל"]},"Select Browser":{"*":["Veldu vafra"]},"Cancel":{"*":["Hætta við"]},"Select":{"*":["Veldu"]},"System Default":{"*":["ברירת מחדל של מערכת"]},"Default":{"*":["ברירת מחדל"]},"Please select a browser.":{"*":["Vinsamlegast veldu vafra."]},"Error":{"*":["Villa"]},"OK":{"*":["Í lagi"]},"Add WebApp":{"*":["Bæta við Vefforriti"]},"Choose from templates":{"*":["Veldu úr sniðmátum"]},"URL":{"*":["Vefslóð"]},"Detect":{"*":["Greina"]},"Detect name and icon from website":{"*":["Greina nafn og tákn frá vefsíðu"]},"Name":{"*":["Nafn"]},"App Icon":{"*":["App tákn"]},"Select icon for the WebApp":{"*":["Veldu tákn fyrir vefforritið"]},"Available Icons":{"*":["tákn í boði"]},"Category":{"*":["Flokkur"]},"Application Mode":{"*":["Forritastilling"]},"Opens as a native window without browser interface":{"*":["Opnast sem innfæddur gluggi án vafra viðmóts"]},"Browser":{"*":["Vafri"]},"Profile Settings":{"*":["Prófíllstillingar"]},"Configure a separate browser profile for this webapp":{"*":["Stilltuðu aðskilda vafra prófíl fyrir þessa vefumsókn."]},"Use separate profile":{"*":["Notaðu aðskilda prófíl"]},"Allows independent cookies and sessions":{"*":["Leyfir sjálfstæðar kökur og lotur"]},"Profile Name":{"*":["Nafn prófíls"]},"Save":{"*":["Vista"]},"Loading...":{"*":["Hlaða..."]},"Detecting website information, please wait":{"*":["Að greina vefsíðugögn, vinsamlegast bíða."]},"Please enter a URL first.":{"*":["Vinsamlegast sláðu inn URL fyrst."]},"Please enter a name for the WebApp.":{"*":["Vinsamlegast sláðu inn nafn fyrir vefforritið."]},"Please enter a URL for the WebApp.":{"*":["Vinsamlegast sláðu inn vefslóð fyrir vefforritið."]},"Please select a browser for the WebApp.":{"*":["Vinsamlegast veldu vafra fyrir WebApp."]},"WebApps Manager":{"*":["Vefforritastjóri"]},"Search WebApps":{"*":["Leitaðu að Vefforritum"]},"Main Menu":{"*":["Aðalvalmynd"]},"Refresh":{"*":["Ferskaðuðu"]},"Export WebApps":{"*":["Flytja út vefforrit"]},"Import WebApps":{"*":["Flytja vefforrit"]},"Browse Applications Folder":{"*":["Skoða forritaskrá"]},"Browse Profiles Folder":{"*":["Skoða möppu prófíla"]},"Show Welcome Screen":{"*":["sýna velkomin skjár"]},"Remove All WebApps":{"*":["Fjarlægja allar vefforrit."]},"About":{"*":["Um umfjöllun"]},"Add":{"*":["Bæta við"]},"No WebApps Found":{"*":["Engin vefumsóknir fundust ekki"]},"Add a new webapp to get started":{"*":["Bættu við nýrri vefumsókn til að byrja."]},"WebApp created successfully":{"*":["Vefforrit búið til með góðum árangri"]},"WebApp updated successfully":{"*":["Vefforrit uppfært með góðum árangri"]},"Browser changed to {0}":{"*":["Vafri breytist í {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Ertu viss um að þú viljir eyða {0}?\n\nVefslóð: {1} \nVafri: {2}"]},"Also delete configuration folder":{"*":["Einnig eyða stillingaskránni."]},"Delete":{"*":["Eyða"]},"WebApp deleted successfully":{"*":["Vefumsókn eytt með góðum árangri"]},"REMOVE ALL":{"*":["FJARLÆGÐU ALLT"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Ertu viss um að þú viljir fjarlægja allar vefsíður þínar? Þessi aðgerð er ekki hægt að afturkalla.\n\nSláðu inn \"{0}\" til að staðfesta."]},"Remove All":{"*":["Fjarlægja allt"]},"All WebApps have been removed":{"*":["Öll vefforrit hafa verið fjarlægð."]},"Failed to remove all WebApps":{"*":["Ekki tókst að fjarlægja allar vefforrit."]},"Icon {0} of {1}":{"*":["Tákn {0} af {1}"]},"WebApps exported successfully":{"*":["Vefforritin fluttast út með góðum árangri"]},"No WebApps":{"*":["Engin ekki vefforrit."]},"There are no WebApps to export.":{"*":["Engin ekki vefforrit til að flytja út."]},"The selected file does not exist.":{"*":["Valda valin skráin er ekki til."]},"The selected file is not a valid ZIP archive.":{"*":["Valda skráin er ekki gilt ZIP skjal."]},"Error importing WebApps":{"*":["Villa við að flytja inn WebApps"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["Innflutt {} WebApps með góðum árangri ({} afrit sleppt)"]},"Imported {} WebApps successfully":{"*":["Innflutt {} WebApps með góðum árangri"]},"No":{"*":["Nei"]},"Yes":{"*":["Já"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/is.po b/biglinux-webapps/locale/is.po index 5aabf1c2..07586bf9 100644 --- a/biglinux-webapps/locale/is.po +++ b/biglinux-webapps/locale/is.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the biglinux-webapps package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" "Project-Id-Version: biglinux-webapps\n" @@ -14,441 +14,749 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "sniðmát" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Veldu sniðmát" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Leita að sniðmátum..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 -msgid "Search templates" -msgstr "Leitaðu að sniðmátum" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Leitni niðurstöður" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Engin ekki fundin." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 -#, python-brace-format -msgid "Browser: {0}" -msgstr "Vafri: {0}" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Breyta Vefforrit" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 -#, python-brace-format -msgid "Edit {0}" -msgstr "Breyta {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Eyða vefforriti" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 -#, python-brace-format -msgid "Delete {0}" -msgstr "Eyða {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:20 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Velkomin í WebApps Stjóra" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 -msgid "" -"What are WebApps?\n" -"\n" -"WebApps are web applications that run in a dedicated browser window, providing a more app-like " -"experience for your favorite websites.\n" -"\n" -"Benefits of using WebApps:\n" -"\n" -"• Focus: Work without the distractions of other browser tabs\n" -"• Desktop Integration: Quick access from your application menu\n" -"• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" -msgstr "" -"Hvað eru Vefforrit?\n" -"\n" -"Vefforrit eru vefumsóknir sem keyra í sérstöku vafravindu, sem veitir meira forritalíkt upplifun " -"fyrir uppáhalds vefsíður þínar.\n" -"\n" -"Ávinningur af notkun Vefforrita:\n" -"\n" -"• Fókus: Vinna án truflana frá öðrum vafratöflum\n" -"• Vinnustöðva samþætting: Fljótleg aðgangur frá forritavalmyndinni þinni\n" -"• Einangruð prófíl: Valfrjálst, hvert vefforrit getur haft sín eigin kökur og stillingar\n" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Ekki sýna þetta aftur" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "לְבַשֵּׁל" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Veldu vafra" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:99 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:225 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:291 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Hætta við" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Veldu" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 -msgid "System Default" -msgstr "ברירת מחדל של מערכת" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 -msgid "Default" -msgstr "ברירת מחדל" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 -msgid "Please select a browser." -msgstr "Vinsamlegast veldu vafra." -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 -msgid "Error" -msgstr "Villa" -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "Í lagi" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Bæta við Vefforriti" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 -msgid "Choose from templates" -msgstr "Veldu úr sniðmátum" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "Vefslóð" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 -msgid "Detect" -msgstr "Greina" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Greina nafn og tákn frá vefsíðu" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Nafn" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 -msgid "App Icon" -msgstr "App tákn" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 -msgid "Select icon for the WebApp" -msgstr "Veldu tákn fyrir vefforritið" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 -msgid "Available Icons" -msgstr "tákn í boði" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Flokkur" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 -msgid "Application Mode" -msgstr "Forritastilling" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Opnast sem innfæddur gluggi án vafra viðmóts" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 +#. -- Browser row (hidden in app mode) -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Vafri" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 -msgid "Profile Settings" -msgstr "Prófíllstillingar" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 -msgid "Configure a separate browser profile for this webapp" -msgstr "Stilltuðu aðskilda vafra prófíl fyrir þessa vefumsókn." -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -msgid "Use separate profile" -msgstr "Notaðu aðskilda prófíl" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Leyfir sjálfstæðar kökur og lotur" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Nafn prófíls" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Vista" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Hlaða..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 -msgid "Detecting website information, please wait" -msgstr "Að greina vefsíðugögn, vinsamlegast bíða." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 -msgid "Please enter a URL first." -msgstr "Vinsamlegast sláðu inn URL fyrst." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 -msgid "Please enter a name for the WebApp." -msgstr "Vinsamlegast sláðu inn nafn fyrir vefforritið." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 -msgid "Please enter a URL for the WebApp." -msgstr "Vinsamlegast sláðu inn vefslóð fyrir vefforritið." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 -msgid "Please select a browser for the WebApp." -msgstr "Vinsamlegast veldu vafra fyrir WebApp." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "Vefforritastjóri" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Leitaðu að Vefforritum" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 -msgid "Main Menu" -msgstr "Aðalvalmynd" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 -msgid "Refresh" -msgstr "Ferskaðuðu" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Flytja út vefforrit" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Flytja vefforrit" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Skoða forritaskrá" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Skoða möppu prófíla" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 -msgid "Show Welcome Screen" -msgstr "sýna velkomin skjár" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Fjarlægja allar vefforrit." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "Um umfjöllun" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 -msgid "Add" -msgstr "Bæta við" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 -msgid "No WebApps Found" -msgstr "Engin vefumsóknir fundust ekki" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Bættu við nýrri vefumsókn til að byrja." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "Vefforrit búið til með góðum árangri" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "Vefforrit uppfært með góðum árangri" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 -#, python-brace-format -msgid "Browser changed to {0}" -msgstr "Vafri breytist í {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 -#, python-brace-format -msgid "" -"Are you sure you want to delete {0}?\n" -"\n" -"URL: {1}\n" -"Browser: {2}" -msgstr "" -"Ertu viss um að þú viljir eyða {0}?\n" -"\n" -"Vefslóð: {1} \n" -"Vafri: {2}" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Einnig eyða stillingaskránni." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Eyða" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "Vefumsókn eytt með góðum árangri" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 -msgid "REMOVE ALL" -msgstr "FJARLÆGÐU ALLT" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 -#, python-brace-format -msgid "" -"Are you sure you want to remove all your WebApps? This action cannot be undone.\n" -"\n" -"Type \"{0}\" to confirm." -msgstr "" -"Ertu viss um að þú viljir fjarlægja allar vefsíður þínar? Þessi aðgerð er ekki hægt að afturkalla.\n" -"\n" -"Sláðu inn \"{0}\" til að staðfesta." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Fjarlægja allt" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Öll vefforrit hafa verið fjarlægð." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Ekki tókst að fjarlægja allar vefforrit." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 -#, python-brace-format -msgid "Icon {0} of {1}" -msgstr "Tákn {0} af {1}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "Vefforritin fluttast út með góðum árangri" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Engin ekki vefforrit." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 +msgid "Change browser" +msgstr "Skiptu um vafra" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 +msgid "Edit" +msgstr "Breyta" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 +msgid "New WebApp" +msgstr "Nýtt WebApp" + +#. -- Icon row -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 +msgid "Icon" +msgstr "Tákn" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 +msgid "App Mode" +msgstr "Forritsstilling" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 +msgid "Separate Profile" +msgstr "Aðskilin prófíl" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 +msgid "Select Icon" +msgstr "Veldu tákn" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 +msgid "Images" +msgstr "Myndir" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 +msgid "ZIP files" +msgstr "ZIP skrár" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 +#, rust-format +msgid "Imported {imported}, skipped {dups} duplicates" +msgstr "Flutt inn {imported}, sleppt {dups} tvíriti" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 +msgid "Import failed" +msgstr "Innflutningur mistókst" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 +msgid "Export failed" +msgstr "Útflutningur mistókst" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 +msgid "" +"This will delete all webapps and their desktop entries. This cannot be " +"undone." +msgstr "" +"Þetta mun eyða öllum weböppum og skjáborðsinnsláttum þeirra. Þetta er " +"óafturkræft." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 +msgid "Browser changed" +msgstr "Vafri breyttur" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 +msgid "What are WebApps?" +msgstr "Hvað eru WebApps?" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 +msgid "" +"WebApps are web applications that run in a dedicated browser window, " +"providing a more app-like experience for your favorite websites." +msgstr "" +"WebApps eru vefforrit sem keyra í sérstökum vafraglugga og bjóða upp á " +"upplifun sem líkist forriti fyrir uppáhaldsvefsíðurnar þínar." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 +msgid "Benefits of using WebApps:" +msgstr "Kostir við að nota WebApps:" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Focus" +msgstr "Einbeiting" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Work without the distractions of other browser tabs" +msgstr "Vinna án truflana frá öðrum flipa í vafranum" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Desktop Integration" +msgstr "Þráðtenging við skjáborð" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Quick access from your application menu" +msgstr "Hraður aðgangur úr forritavalmyndinni þinni" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Isolated Profiles" +msgstr "Aðskilin prófíl" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Each webapp can have its own cookies and settings" +msgstr "Hvert webapp getur haft sín eigin smákökur og stillingar" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 +msgid "Back" +msgstr "Til baka" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 +msgid "Forward" +msgstr "Áfram" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 +msgid "Reload" +msgstr "Endurhlaða" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 +msgid "Fullscreen" +msgstr "Allur skjár" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 +msgid "Enter URL…" +msgstr "Sláðu inn URL…" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 +msgid "Zoom In" +msgstr "Stækka" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 +msgid "Zoom Out" +msgstr "Minnka" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 +msgid "Reset Zoom" +msgstr "Endurstilla aðdrátt" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 +msgid "Developer Tools" +msgstr "Forritaraverkfæri" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 +msgid "Menu" +msgstr "Valmynd" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 +msgid "Open Link in Browser" +msgstr "Opna hlekk í vafra" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 +msgid "Download Complete" +msgstr "Niðurhal lokið" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 +msgid "Save File" +msgstr "Vista skrá" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 +#~ msgid "Search templates" +#~ msgstr "Leitaðu að sniðmátum" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 +#, python-brace-format +#~ msgid "Browser: {0}" +#~ msgstr "Vafri: {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 +#, python-brace-format +#~ msgid "Edit {0}" +#~ msgstr "Breyta {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 +#, python-brace-format +#~ msgid "Delete {0}" +#~ msgstr "Eyða {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 +#~ msgid "" +#~ "What are WebApps?\n" +#~ "\n" +#~ "WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n" +#~ "\n" +#~ "Benefits of using WebApps:\n" +#~ "\n" +#~ "• Focus: Work without the distractions of other browser tabs\n" +#~ "• Desktop Integration: Quick access from your application menu\n" +#~ "• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" +#~ msgstr "" +#~ "Hvað eru Vefforrit?\n" +#~ "\n" +#~ "Vefforrit eru vefumsóknir sem keyra í sérstöku vafravindu, sem veitir meira forritalíkt upplifun fyrir uppáhalds vefsíður þínar.\n" +#~ "\n" +#~ "Ávinningur af notkun Vefforrita:\n" +#~ "\n" +#~ "• Fókus: Vinna án truflana frá öðrum vafratöflum\n" +#~ "• Vinnustöðva samþætting: Fljótleg aðgangur frá forritavalmyndinni þinni\n" +#~ "• Einangruð prófíl: Valfrjálst, hvert vefforrit getur haft sín eigin kökur og stillingar\n" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 +#~ msgid "System Default" +#~ msgstr "ברירת מחדל של מערכת" + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 -msgid "There are no WebApps to export." -msgstr "Engin ekki vefforrit til að flytja út." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 -msgid "The selected file does not exist." -msgstr "Valda valin skráin er ekki til." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 -msgid "The selected file is not a valid ZIP archive." -msgstr "Valda skráin er ekki gilt ZIP skjal." +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 -msgid "Error importing WebApps" -msgstr "Villa við að flytja inn WebApps" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 +#~ msgid "Default" +#~ msgstr "ברירת מחדל" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 +#~ msgid "Please select a browser." +#~ msgstr "Vinsamlegast veldu vafra." + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 -msgid "Imported {} WebApps successfully ({} duplicates skipped)" -msgstr "Innflutt {} WebApps með góðum árangri ({} afrit sleppt)" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 +#~ msgid "Error" +#~ msgstr "Villa" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 +#~ msgid "Choose from templates" +#~ msgstr "Veldu úr sniðmátum" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 +#~ msgid "Detect" +#~ msgstr "Greina" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 +#~ msgid "App Icon" +#~ msgstr "App tákn" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 +#~ msgid "Select icon for the WebApp" +#~ msgstr "Veldu tákn fyrir vefforritið" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 +#~ msgid "Available Icons" +#~ msgstr "tákn í boði" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 +#~ msgid "Application Mode" +#~ msgstr "Forritastilling" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 +#~ msgid "Profile Settings" +#~ msgstr "Prófíllstillingar" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 +#~ msgid "Configure a separate browser profile for this webapp" +#~ msgstr "Stilltuðu aðskilda vafra prófíl fyrir þessa vefumsókn." + +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 -msgid "Imported {} WebApps successfully" -msgstr "Innflutt {} WebApps með góðum árangri" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 -msgid "No" -msgstr "Nei" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 -msgid "Yes" -msgstr "Já" +#~ msgid "Use separate profile" +#~ msgstr "Notaðu aðskilda prófíl" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 +#~ msgid "Detecting website information, please wait" +#~ msgstr "Að greina vefsíðugögn, vinsamlegast bíða." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 +#~ msgid "Please enter a URL first." +#~ msgstr "Vinsamlegast sláðu inn URL fyrst." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 +#~ msgid "Please enter a name for the WebApp." +#~ msgstr "Vinsamlegast sláðu inn nafn fyrir vefforritið." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 +#~ msgid "Please enter a URL for the WebApp." +#~ msgstr "Vinsamlegast sláðu inn vefslóð fyrir vefforritið." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 +#~ msgid "Please select a browser for the WebApp." +#~ msgstr "Vinsamlegast veldu vafra fyrir WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 +#~ msgid "Main Menu" +#~ msgstr "Aðalvalmynd" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 +#~ msgid "Refresh" +#~ msgstr "Ferskaðuðu" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 +#~ msgid "Show Welcome Screen" +#~ msgstr "sýna velkomin skjár" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 +#~ msgid "Add" +#~ msgstr "Bæta við" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 +#~ msgid "No WebApps Found" +#~ msgstr "Engin vefumsóknir fundust ekki" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 +#, python-brace-format +#~ msgid "Browser changed to {0}" +#~ msgstr "Vafri breytist í {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to delete {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Browser: {2}" +#~ msgstr "" +#~ "Ertu viss um að þú viljir eyða {0}?\n" +#~ "\n" +#~ "Vefslóð: {1} \n" +#~ "Vafri: {2}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 +#~ msgid "REMOVE ALL" +#~ msgstr "FJARLÆGÐU ALLT" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to remove all your WebApps? This action cannot be undone.\n" +#~ "\n" +#~ "Type \"{0}\" to confirm." +#~ msgstr "" +#~ "Ertu viss um að þú viljir fjarlægja allar vefsíður þínar? Þessi aðgerð er ekki hægt að afturkalla.\n" +#~ "\n" +#~ "Sláðu inn \"{0}\" til að staðfesta." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 +#, python-brace-format +#~ msgid "Icon {0} of {1}" +#~ msgstr "Tákn {0} af {1}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#~ msgid "There are no WebApps to export." +#~ msgstr "Engin ekki vefforrit til að flytja út." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 +#~ msgid "The selected file does not exist." +#~ msgstr "Valda valin skráin er ekki til." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 +#~ msgid "The selected file is not a valid ZIP archive." +#~ msgstr "Valda skráin er ekki gilt ZIP skjal." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 +#~ msgid "Error importing WebApps" +#~ msgstr "Villa við að flytja inn WebApps" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 +#~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" +#~ msgstr "Innflutt {} WebApps með góðum árangri ({} afrit sleppt)" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 +#~ msgid "Imported {} WebApps successfully" +#~ msgstr "Innflutt {} WebApps með góðum árangri" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 +#~ msgid "No" +#~ msgstr "Nei" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 +#~ msgid "Yes" +#~ msgstr "Já" diff --git a/biglinux-webapps/locale/it.json b/biglinux-webapps/locale/it.json deleted file mode 100644 index 91f56afb..00000000 --- a/biglinux-webapps/locale/it.json +++ /dev/null @@ -1 +0,0 @@ -{"it":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Modelli"]},"Choose a Template":{"*":["Scegli un Modello"]},"Search templates...":{"*":["Cerca modelli..."]},"Search templates":{"*":["Cerca modelli"]},"Search Results":{"*":["Risultati di ricerca"]},"No templates found":{"*":["Nessun modello trovato"]},"Browser: {0}":{"*":["Browser: {0}"]},"Edit WebApp":{"*":["Modifica WebApp"]},"Edit {0}":{"*":["Modifica {0}"]},"Delete WebApp":{"*":["Elimina WebApp"]},"Delete {0}":{"*":["Elimina {0}"]},"Welcome to WebApps Manager":{"*":["Benvenuto in WebApps Manager"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Cosa sono le WebApp?\n\nLe WebApp sono applicazioni web che funzionano in una finestra del browser dedicata, offrendo un'esperienza più simile a quella di un'app per i tuoi siti web preferiti.\n\nVantaggi dell'utilizzo delle WebApp:\n\n• Focus: Lavora senza le distrazioni di altre schede del browser\n• Integrazione Desktop: Accesso rapido dal menu delle applicazioni\n• Profili Isolati: Facoltativamente, ogni webapp può avere i propri cookie e impostazioni\n"]},"Don't show this again":{"*":["Non mostrare più questo."]},"Let's Start":{"*":["Iniziamo"]},"Select Browser":{"*":["Seleziona Browser"]},"Cancel":{"*":["Annulla"]},"Select":{"*":["Seleziona"]},"System Default":{"*":["Impostazione predefinita del sistema"]},"Default":{"*":["Predefinito"]},"Please select a browser.":{"*":["Seleziona un browser."]},"Error":{"*":["Errore"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Aggiungi WebApp"]},"Choose from templates":{"*":["Scegli tra i modelli"]},"URL":{"*":["URL"]},"Detect":{"*":["Rileva"]},"Detect name and icon from website":{"*":["Rileva nome e icona dal sito web"]},"Name":{"*":["Nome"]},"App Icon":{"*":["Icona dell'app"]},"Select icon for the WebApp":{"*":["Seleziona icona per il WebApp"]},"Available Icons":{"*":["Icone disponibili"]},"Category":{"*":["Categoria"]},"Application Mode":{"*":["Modalità applicazione"]},"Opens as a native window without browser interface":{"*":["Si apre come una finestra nativa senza interfaccia del browser."]},"Browser":{"*":["Browser"]},"Profile Settings":{"*":["Impostazioni del profilo"]},"Configure a separate browser profile for this webapp":{"*":["Configura un profilo browser separato per questa webapp"]},"Use separate profile":{"*":["Usa profilo separato"]},"Allows independent cookies and sessions":{"*":["Consente cookie e sessioni indipendenti"]},"Profile Name":{"*":["Nome Profilo"]},"Save":{"*":["Salva"]},"Loading...":{"*":["Caricamento..."]},"Detecting website information, please wait":{"*":["Rilevamento delle informazioni del sito web, attendere prego"]},"Please enter a URL first.":{"*":["Si prega di inserire prima un URL."]},"Please enter a name for the WebApp.":{"*":["Si prega di inserire un nome per il WebApp."]},"Please enter a URL for the WebApp.":{"*":["Si prega di inserire un URL per il WebApp."]},"Please select a browser for the WebApp.":{"*":["Seleziona un browser per il WebApp."]},"WebApps Manager":{"*":["Gestore WebApp"]},"Search WebApps":{"*":["Cerca WebApp"]},"Main Menu":{"*":["Menu Principale"]},"Refresh":{"*":["Aggiorna"]},"Export WebApps":{"*":["Esporta WebApp"]},"Import WebApps":{"*":["Importa WebApp"]},"Browse Applications Folder":{"*":["Sfoglia la cartella Applicazioni"]},"Browse Profiles Folder":{"*":["Sfoglia la cartella Profili"]},"Show Welcome Screen":{"*":["Mostra Schermata di Benvenuto"]},"Remove All WebApps":{"*":["Rimuovi tutte le WebApp"]},"About":{"*":["Informazioni"]},"Add":{"*":["Aggiungi"]},"No WebApps Found":{"*":["Nessuna WebApp trovata"]},"Add a new webapp to get started":{"*":["Aggiungi una nuova webapp per iniziare"]},"WebApp created successfully":{"*":["WebApp creato con successo"]},"WebApp updated successfully":{"*":["WebApp aggiornato con successo"]},"Browser changed to {0}":{"*":["Il browser è stato cambiato in {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Sei sicuro di voler eliminare {0}?\n\nURL: {1}\nBrowser: {2}"]},"Also delete configuration folder":{"*":["Elimina anche la cartella di configurazione."]},"Delete":{"*":["Elimina"]},"WebApp deleted successfully":{"*":["WebApp eliminato con successo"]},"REMOVE ALL":{"*":["RIMUOVI TUTTO"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Sei sicuro di voler rimuovere tutte le tue WebApp? Questa azione non può essere annullata.\n\nDigita \"{0}\" per confermare."]},"Remove All":{"*":["Rimuovi tutto"]},"All WebApps have been removed":{"*":["Tutte le WebApp sono state rimosse."]},"Failed to remove all WebApps":{"*":["Impossibile rimuovere tutte le WebApp"]},"Icon {0} of {1}":{"*":["Icona {0} di {1}"]},"WebApps exported successfully":{"*":["WebApp esportati con successo"]},"No WebApps":{"*":["Nessuna WebApp"]},"There are no WebApps to export.":{"*":["Non ci sono WebApp da esportare."]},"The selected file does not exist.":{"*":["Il file selezionato non esiste."]},"The selected file is not a valid ZIP archive.":{"*":["Il file selezionato non è un archivio ZIP valido."]},"Error importing WebApps":{"*":["Errore durante l'importazione di WebApps"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["Importati {} WebApps con successo ({} duplicati saltati)"]},"Imported {} WebApps successfully":{"*":["Importato {} WebApps con successo"]},"No":{"*":["No"]},"Yes":{"*":["Sì"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/it.po b/biglinux-webapps/locale/it.po index 30a69e99..814266e9 100644 --- a/biglinux-webapps/locale/it.po +++ b/biglinux-webapps/locale/it.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the biglinux-webapps package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" "Project-Id-Version: biglinux-webapps\n" @@ -14,441 +14,750 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Modelli" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Scegli un Modello" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Cerca modelli..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 -msgid "Search templates" -msgstr "Cerca modelli" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Risultati di ricerca" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Nessun modello trovato" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 -#, python-brace-format -msgid "Browser: {0}" -msgstr "Browser: {0}" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Modifica WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 -#, python-brace-format -msgid "Edit {0}" -msgstr "Modifica {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Elimina WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 -#, python-brace-format -msgid "Delete {0}" -msgstr "Elimina {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:20 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Benvenuto in WebApps Manager" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 -msgid "" -"What are WebApps?\n" -"\n" -"WebApps are web applications that run in a dedicated browser window, providing a more app-like " -"experience for your favorite websites.\n" -"\n" -"Benefits of using WebApps:\n" -"\n" -"• Focus: Work without the distractions of other browser tabs\n" -"• Desktop Integration: Quick access from your application menu\n" -"• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" -msgstr "" -"Cosa sono le WebApp?\n" -"\n" -"Le WebApp sono applicazioni web che funzionano in una finestra del browser dedicata, offrendo " -"un'esperienza più simile a quella di un'app per i tuoi siti web preferiti.\n" -"\n" -"Vantaggi dell'utilizzo delle WebApp:\n" -"\n" -"• Focus: Lavora senza le distrazioni di altre schede del browser\n" -"• Integrazione Desktop: Accesso rapido dal menu delle applicazioni\n" -"• Profili Isolati: Facoltativamente, ogni webapp può avere i propri cookie e impostazioni\n" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Non mostrare più questo." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Iniziamo" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Seleziona Browser" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:99 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:225 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:291 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Annulla" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Seleziona" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 -msgid "System Default" -msgstr "Impostazione predefinita del sistema" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 -msgid "Default" -msgstr "Predefinito" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 -msgid "Please select a browser." -msgstr "Seleziona un browser." -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 -msgid "Error" -msgstr "Errore" -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "OK" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Aggiungi WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 -msgid "Choose from templates" -msgstr "Scegli tra i modelli" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 -msgid "Detect" -msgstr "Rileva" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Rileva nome e icona dal sito web" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Nome" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 -msgid "App Icon" -msgstr "Icona dell'app" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 -msgid "Select icon for the WebApp" -msgstr "Seleziona icona per il WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 -msgid "Available Icons" -msgstr "Icone disponibili" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Categoria" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 -msgid "Application Mode" -msgstr "Modalità applicazione" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Si apre come una finestra nativa senza interfaccia del browser." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 +#. -- Browser row (hidden in app mode) -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Browser" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 -msgid "Profile Settings" -msgstr "Impostazioni del profilo" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 -msgid "Configure a separate browser profile for this webapp" -msgstr "Configura un profilo browser separato per questa webapp" -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -msgid "Use separate profile" -msgstr "Usa profilo separato" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Consente cookie e sessioni indipendenti" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Nome Profilo" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Salva" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Caricamento..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 -msgid "Detecting website information, please wait" -msgstr "Rilevamento delle informazioni del sito web, attendere prego" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 -msgid "Please enter a URL first." -msgstr "Si prega di inserire prima un URL." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 -msgid "Please enter a name for the WebApp." -msgstr "Si prega di inserire un nome per il WebApp." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 -msgid "Please enter a URL for the WebApp." -msgstr "Si prega di inserire un URL per il WebApp." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 -msgid "Please select a browser for the WebApp." -msgstr "Seleziona un browser per il WebApp." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "Gestore WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Cerca WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 -msgid "Main Menu" -msgstr "Menu Principale" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 -msgid "Refresh" -msgstr "Aggiorna" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Esporta WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Importa WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Sfoglia la cartella Applicazioni" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Sfoglia la cartella Profili" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 -msgid "Show Welcome Screen" -msgstr "Mostra Schermata di Benvenuto" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Rimuovi tutte le WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "Informazioni" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 -msgid "Add" -msgstr "Aggiungi" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 -msgid "No WebApps Found" -msgstr "Nessuna WebApp trovata" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Aggiungi una nuova webapp per iniziare" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "WebApp creato con successo" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "WebApp aggiornato con successo" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 -#, python-brace-format -msgid "Browser changed to {0}" -msgstr "Il browser è stato cambiato in {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 -#, python-brace-format -msgid "" -"Are you sure you want to delete {0}?\n" -"\n" -"URL: {1}\n" -"Browser: {2}" -msgstr "" -"Sei sicuro di voler eliminare {0}?\n" -"\n" -"URL: {1}\n" -"Browser: {2}" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Elimina anche la cartella di configurazione." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Elimina" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "WebApp eliminato con successo" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 -msgid "REMOVE ALL" -msgstr "RIMUOVI TUTTO" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 -#, python-brace-format -msgid "" -"Are you sure you want to remove all your WebApps? This action cannot be undone.\n" -"\n" -"Type \"{0}\" to confirm." -msgstr "" -"Sei sicuro di voler rimuovere tutte le tue WebApp? Questa azione non può essere annullata.\n" -"\n" -"Digita \"{0}\" per confermare." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Rimuovi tutto" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Tutte le WebApp sono state rimosse." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Impossibile rimuovere tutte le WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 -#, python-brace-format -msgid "Icon {0} of {1}" -msgstr "Icona {0} di {1}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebApp esportati con successo" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Nessuna WebApp" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 +msgid "Change browser" +msgstr "Cambia browser" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 +msgid "Edit" +msgstr "Modifica" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 +msgid "New WebApp" +msgstr "Nuova WebApp" + +#. -- Icon row -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 +msgid "Icon" +msgstr "Icona" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 +msgid "App Mode" +msgstr "Modalità App" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 +msgid "Separate Profile" +msgstr "Profilo separato" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 +msgid "Select Icon" +msgstr "Seleziona icona" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 +msgid "Images" +msgstr "Immagini" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 +msgid "ZIP files" +msgstr "File ZIP" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 +#, rust-format +msgid "Imported {imported}, skipped {dups} duplicates" +msgstr "Importati {imported}, ignorati {dups} duplicati" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 +msgid "Import failed" +msgstr "Importazione fallita" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 +msgid "Export failed" +msgstr "Esportazione fallita" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 +msgid "" +"This will delete all webapps and their desktop entries. This cannot be " +"undone." +msgstr "" +"Questo eliminerà tutte le webapp e le loro voci nel desktop. Questa " +"operazione non può essere annullata." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 +msgid "Browser changed" +msgstr "Browser cambiato" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 +msgid "What are WebApps?" +msgstr "Cosa sono le WebApps?" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 +msgid "" +"WebApps are web applications that run in a dedicated browser window, " +"providing a more app-like experience for your favorite websites." +msgstr "" +"Le WebApps sono applicazioni web che funzionano in una finestra del browser " +"dedicata, offrendo un'esperienza più simile a un'app per i tuoi siti " +"preferiti." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 +msgid "Benefits of using WebApps:" +msgstr "Vantaggi dell'uso delle WebApps:" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Focus" +msgstr "Concentrazione" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Work without the distractions of other browser tabs" +msgstr "Lavora senza le distrazioni di altre schede del browser" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Desktop Integration" +msgstr "Integrazione con il desktop" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Quick access from your application menu" +msgstr "Accesso rapido dal menu delle applicazioni" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Isolated Profiles" +msgstr "Profili isolati" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Each webapp can have its own cookies and settings" +msgstr "Ogni webapp può avere i propri cookie e impostazioni" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 +msgid "Back" +msgstr "Indietro" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 +msgid "Forward" +msgstr "Avanti" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 +msgid "Reload" +msgstr "Ricarica" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 +msgid "Fullscreen" +msgstr "Schermo intero" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 +msgid "Enter URL…" +msgstr "Inserisci URL…" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 +msgid "Zoom In" +msgstr "Zoom avanti" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 +msgid "Zoom Out" +msgstr "Zoom indietro" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 +msgid "Reset Zoom" +msgstr "Reimposta zoom" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 +msgid "Developer Tools" +msgstr "Strumenti per sviluppatori" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 +msgid "Menu" +msgstr "Menu" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 +msgid "Open Link in Browser" +msgstr "Apri link nel browser" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 +msgid "Download Complete" +msgstr "Download completato" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 +msgid "Save File" +msgstr "Salva file" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 +#~ msgid "Search templates" +#~ msgstr "Cerca modelli" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 +#, python-brace-format +#~ msgid "Browser: {0}" +#~ msgstr "Browser: {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 +#, python-brace-format +#~ msgid "Edit {0}" +#~ msgstr "Modifica {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 +#, python-brace-format +#~ msgid "Delete {0}" +#~ msgstr "Elimina {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 +#~ msgid "" +#~ "What are WebApps?\n" +#~ "\n" +#~ "WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n" +#~ "\n" +#~ "Benefits of using WebApps:\n" +#~ "\n" +#~ "• Focus: Work without the distractions of other browser tabs\n" +#~ "• Desktop Integration: Quick access from your application menu\n" +#~ "• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" +#~ msgstr "" +#~ "Cosa sono le WebApp?\n" +#~ "\n" +#~ "Le WebApp sono applicazioni web che funzionano in una finestra del browser dedicata, offrendo un'esperienza più simile a quella di un'app per i tuoi siti web preferiti.\n" +#~ "\n" +#~ "Vantaggi dell'utilizzo delle WebApp:\n" +#~ "\n" +#~ "• Focus: Lavora senza le distrazioni di altre schede del browser\n" +#~ "• Integrazione Desktop: Accesso rapido dal menu delle applicazioni\n" +#~ "• Profili Isolati: Facoltativamente, ogni webapp può avere i propri cookie e impostazioni\n" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 +#~ msgid "System Default" +#~ msgstr "Impostazione predefinita del sistema" + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 -msgid "There are no WebApps to export." -msgstr "Non ci sono WebApp da esportare." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 -msgid "The selected file does not exist." -msgstr "Il file selezionato non esiste." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 -msgid "The selected file is not a valid ZIP archive." -msgstr "Il file selezionato non è un archivio ZIP valido." +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 -msgid "Error importing WebApps" -msgstr "Errore durante l'importazione di WebApps" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 +#~ msgid "Default" +#~ msgstr "Predefinito" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 +#~ msgid "Please select a browser." +#~ msgstr "Seleziona un browser." + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 -msgid "Imported {} WebApps successfully ({} duplicates skipped)" -msgstr "Importati {} WebApps con successo ({} duplicati saltati)" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 +#~ msgid "Error" +#~ msgstr "Errore" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 +#~ msgid "Choose from templates" +#~ msgstr "Scegli tra i modelli" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 +#~ msgid "Detect" +#~ msgstr "Rileva" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 +#~ msgid "App Icon" +#~ msgstr "Icona dell'app" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 +#~ msgid "Select icon for the WebApp" +#~ msgstr "Seleziona icona per il WebApp" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 +#~ msgid "Available Icons" +#~ msgstr "Icone disponibili" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 +#~ msgid "Application Mode" +#~ msgstr "Modalità applicazione" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 +#~ msgid "Profile Settings" +#~ msgstr "Impostazioni del profilo" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 +#~ msgid "Configure a separate browser profile for this webapp" +#~ msgstr "Configura un profilo browser separato per questa webapp" + +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 -msgid "Imported {} WebApps successfully" -msgstr "Importato {} WebApps con successo" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 -msgid "No" -msgstr "No" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 -msgid "Yes" -msgstr "Sì" +#~ msgid "Use separate profile" +#~ msgstr "Usa profilo separato" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 +#~ msgid "Detecting website information, please wait" +#~ msgstr "Rilevamento delle informazioni del sito web, attendere prego" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 +#~ msgid "Please enter a URL first." +#~ msgstr "Si prega di inserire prima un URL." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 +#~ msgid "Please enter a name for the WebApp." +#~ msgstr "Si prega di inserire un nome per il WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 +#~ msgid "Please enter a URL for the WebApp." +#~ msgstr "Si prega di inserire un URL per il WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 +#~ msgid "Please select a browser for the WebApp." +#~ msgstr "Seleziona un browser per il WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 +#~ msgid "Main Menu" +#~ msgstr "Menu Principale" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 +#~ msgid "Refresh" +#~ msgstr "Aggiorna" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 +#~ msgid "Show Welcome Screen" +#~ msgstr "Mostra Schermata di Benvenuto" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 +#~ msgid "Add" +#~ msgstr "Aggiungi" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 +#~ msgid "No WebApps Found" +#~ msgstr "Nessuna WebApp trovata" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 +#, python-brace-format +#~ msgid "Browser changed to {0}" +#~ msgstr "Il browser è stato cambiato in {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to delete {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Browser: {2}" +#~ msgstr "" +#~ "Sei sicuro di voler eliminare {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Browser: {2}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 +#~ msgid "REMOVE ALL" +#~ msgstr "RIMUOVI TUTTO" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to remove all your WebApps? This action cannot be undone.\n" +#~ "\n" +#~ "Type \"{0}\" to confirm." +#~ msgstr "" +#~ "Sei sicuro di voler rimuovere tutte le tue WebApp? Questa azione non può essere annullata.\n" +#~ "\n" +#~ "Digita \"{0}\" per confermare." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 +#, python-brace-format +#~ msgid "Icon {0} of {1}" +#~ msgstr "Icona {0} di {1}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#~ msgid "There are no WebApps to export." +#~ msgstr "Non ci sono WebApp da esportare." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 +#~ msgid "The selected file does not exist." +#~ msgstr "Il file selezionato non esiste." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 +#~ msgid "The selected file is not a valid ZIP archive." +#~ msgstr "Il file selezionato non è un archivio ZIP valido." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 +#~ msgid "Error importing WebApps" +#~ msgstr "Errore durante l'importazione di WebApps" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 +#~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" +#~ msgstr "Importati {} WebApps con successo ({} duplicati saltati)" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 +#~ msgid "Imported {} WebApps successfully" +#~ msgstr "Importato {} WebApps con successo" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 +#~ msgid "No" +#~ msgstr "No" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 +#~ msgid "Yes" +#~ msgstr "Sì" diff --git a/biglinux-webapps/locale/ja.json b/biglinux-webapps/locale/ja.json deleted file mode 100644 index 8e8e6ebc..00000000 --- a/biglinux-webapps/locale/ja.json +++ /dev/null @@ -1 +0,0 @@ -{"ja":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["テンプレート"]},"Choose a Template":{"*":["テンプレートを選択してください。"]},"Search templates...":{"*":["テンプレートを検索中..."]},"Search templates":{"*":["テンプレートを検索"]},"Search Results":{"*":["検索結果"]},"No templates found":{"*":["テンプレートが見つかりませんでした。"]},"Browser: {0}":{"*":["ブラウザ: {0}"]},"Edit WebApp":{"*":["ウェブアプリを編集する"]},"Edit {0}":{"*":["{0}を編集"]},"Delete WebApp":{"*":["WebAppを削除する"]},"Delete {0}":{"*":["{0}を削除します"]},"Welcome to WebApps Manager":{"*":["WebAppsマネージャーへようこそ"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Webアプリとは何ですか?\n\nWebアプリは、専用のブラウザウィンドウで実行されるウェブアプリケーションで、お気に入りのウェブサイトに対してよりアプリのような体験を提供します。\n\nWebアプリを使用する利点:\n\n• 集中: 他のブラウザタブの気を散らすことなく作業できます\n• デスクトップ統合: アプリケーションメニューからの迅速なアクセス\n• 隔離されたプロファイル: オプションで、各Webアプリは独自のクッキーと設定を持つことができます\n"]},"Don't show this again":{"*":["これを再表示しない"]},"Let's Start":{"*":["始めましょう"]},"Select Browser":{"*":["ブラウザを選択してください"]},"Cancel":{"*":["キャンセル"]},"Select":{"*":["選択"]},"System Default":{"*":["システムデフォルト"]},"Default":{"*":["デフォルト"]},"Please select a browser.":{"*":["ブラウザを選択してください。"]},"Error":{"*":["エラー"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["WebAppを追加"]},"Choose from templates":{"*":["テンプレートから選択してください"]},"URL":{"*":["URL"]},"Detect":{"*":["検出"]},"Detect name and icon from website":{"*":["ウェブサイトから名前とアイコンを検出する"]},"Name":{"*":["名前"]},"App Icon":{"*":["アプリアイコン"]},"Select icon for the WebApp":{"*":["WebAppのアイコンを選択してください。"]},"Available Icons":{"*":["利用可能なアイコン"]},"Category":{"*":["カテゴリ"]},"Application Mode":{"*":["アプリケーションモード"]},"Opens as a native window without browser interface":{"*":["ブラウザインターフェースなしでネイティブウィンドウとして開きます"]},"Browser":{"*":["ブラウザ"]},"Profile Settings":{"*":["プロフィール設定"]},"Configure a separate browser profile for this webapp":{"*":["このウェブアプリのために別のブラウザプロファイルを設定します。"]},"Use separate profile":{"*":["別のプロファイルを使用する"]},"Allows independent cookies and sessions":{"*":["独立したクッキーとセッションを許可します"]},"Profile Name":{"*":["プロフィール名"]},"Save":{"*":["保存"]},"Loading...":{"*":["読み込み中..."]},"Detecting website information, please wait":{"*":["ウェブサイト情報を検出しています。お待ちください。"]},"Please enter a URL first.":{"*":["最初にURLを入力してください。"]},"Please enter a name for the WebApp.":{"*":["WebAppの名前を入力してください。"]},"Please enter a URL for the WebApp.":{"*":["WebAppのURLを入力してください。"]},"Please select a browser for the WebApp.":{"*":["WebAppのためのブラウザを選択してください。"]},"WebApps Manager":{"*":["Webアプリ管理者"]},"Search WebApps":{"*":["ウェブアプリを検索"]},"Main Menu":{"*":["メインメニュー"]},"Refresh":{"*":["更新"]},"Export WebApps":{"*":["Webアプリをエクスポート"]},"Import WebApps":{"*":["ウェブアプリをインポート"]},"Browse Applications Folder":{"*":["アプリケーションフォルダーをブラウズ"]},"Browse Profiles Folder":{"*":["プロファイルフォルダーを参照"]},"Show Welcome Screen":{"*":["ウェルカムスクリーンを表示"]},"Remove All WebApps":{"*":["すべてのWebアプリを削除"]},"About":{"*":["情報について"]},"Add":{"*":["追加"]},"No WebApps Found":{"*":["ウェブアプリが見つかりませんでした。"]},"Add a new webapp to get started":{"*":["新しいウェブアプリを追加して始めましょう。"]},"WebApp created successfully":{"*":["WebAppが正常に作成されました"]},"WebApp updated successfully":{"*":["WebAppが正常に更新されました"]},"Browser changed to {0}":{"*":["ブラウザが{0}に変更されました。"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["{0}を削除してもよろしいですか?\n\nURL: {1}\nブラウザ: {2}"]},"Also delete configuration folder":{"*":["構成フォルダーも削除してください。"]},"Delete":{"*":["削除"]},"WebApp deleted successfully":{"*":["WebAppが正常に削除されました"]},"REMOVE ALL":{"*":["すべて削除"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["すべてのWebアプリを削除してもよろしいですか?この操作は元に戻せません。\n\n確認するには「{0}」と入力してください。"]},"Remove All":{"*":["すべて削除"]},"All WebApps have been removed":{"*":["すべてのWebアプリが削除されました。"]},"Failed to remove all WebApps":{"*":["すべてのWebアプリを削除できませんでした。"]},"Icon {0} of {1}":{"*":["アイコン {0} の {1}"]},"WebApps exported successfully":{"*":["WebAppsが正常にエクスポートされました"]},"No WebApps":{"*":["ウェブアプリはありません"]},"There are no WebApps to export.":{"*":["エクスポートするWebアプリはありません。"]},"The selected file does not exist.":{"*":["選択したファイルは存在しません。"]},"The selected file is not a valid ZIP archive.":{"*":["選択したファイルは有効なZIPアーカイブではありません。"]},"Error importing WebApps":{"*":["WebAppsのインポート中にエラーが発生しました"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["{} の WebApps を正常にインポートしました ({} の重複はスキップされました)"]},"Imported {} WebApps successfully":{"*":["{} WebAppsを正常にインポートしました。"]},"No":{"*":["いいえ"]},"Yes":{"*":["はい"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/ja.po b/biglinux-webapps/locale/ja.po index 740e4644..093bb931 100644 --- a/biglinux-webapps/locale/ja.po +++ b/biglinux-webapps/locale/ja.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the biglinux-webapps package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" "Project-Id-Version: biglinux-webapps\n" @@ -14,440 +14,745 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "テンプレート" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "テンプレートを選択してください。" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "テンプレートを検索中..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 -msgid "Search templates" -msgstr "テンプレートを検索" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "検索結果" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "テンプレートが見つかりませんでした。" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 -#, python-brace-format -msgid "Browser: {0}" -msgstr "ブラウザ: {0}" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "ウェブアプリを編集する" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 -#, python-brace-format -msgid "Edit {0}" -msgstr "{0}を編集" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "WebAppを削除する" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 -#, python-brace-format -msgid "Delete {0}" -msgstr "{0}を削除します" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:20 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "WebAppsマネージャーへようこそ" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 -msgid "" -"What are WebApps?\n" -"\n" -"WebApps are web applications that run in a dedicated browser window, providing a more app-like " -"experience for your favorite websites.\n" -"\n" -"Benefits of using WebApps:\n" -"\n" -"• Focus: Work without the distractions of other browser tabs\n" -"• Desktop Integration: Quick access from your application menu\n" -"• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" -msgstr "" -"Webアプリとは何ですか?\n" -"\n" -"Webアプリは、専用のブラウザウィンドウで実行されるウェブアプリケーションで、お気に入りのウェブサイトに対してよりアプリのような体験を提供します。\n" -"\n" -"Webアプリを使用する利点:\n" -"\n" -"• 集中: 他のブラウザタブの気を散らすことなく作業できます\n" -"• デスクトップ統合: アプリケーションメニューからの迅速なアクセス\n" -"• 隔離されたプロファイル: オプションで、各Webアプリは独自のクッキーと設定を持つことができます\n" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "これを再表示しない" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "始めましょう" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "ブラウザを選択してください" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:99 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:225 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:291 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "キャンセル" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "選択" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 -msgid "System Default" -msgstr "システムデフォルト" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 -msgid "Default" -msgstr "デフォルト" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 -msgid "Please select a browser." -msgstr "ブラウザを選択してください。" -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 -msgid "Error" -msgstr "エラー" -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "OK" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "WebAppを追加" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 -msgid "Choose from templates" -msgstr "テンプレートから選択してください" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 -msgid "Detect" -msgstr "検出" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "ウェブサイトから名前とアイコンを検出する" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "名前" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 -msgid "App Icon" -msgstr "アプリアイコン" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 -msgid "Select icon for the WebApp" -msgstr "WebAppのアイコンを選択してください。" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 -msgid "Available Icons" -msgstr "利用可能なアイコン" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "カテゴリ" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 -msgid "Application Mode" -msgstr "アプリケーションモード" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "ブラウザインターフェースなしでネイティブウィンドウとして開きます" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 +#. -- Browser row (hidden in app mode) -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "ブラウザ" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 -msgid "Profile Settings" -msgstr "プロフィール設定" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 -msgid "Configure a separate browser profile for this webapp" -msgstr "このウェブアプリのために別のブラウザプロファイルを設定します。" -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -msgid "Use separate profile" -msgstr "別のプロファイルを使用する" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "独立したクッキーとセッションを許可します" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "プロフィール名" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "保存" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "読み込み中..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 -msgid "Detecting website information, please wait" -msgstr "ウェブサイト情報を検出しています。お待ちください。" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 -msgid "Please enter a URL first." -msgstr "最初にURLを入力してください。" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 -msgid "Please enter a name for the WebApp." -msgstr "WebAppの名前を入力してください。" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 -msgid "Please enter a URL for the WebApp." -msgstr "WebAppのURLを入力してください。" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 -msgid "Please select a browser for the WebApp." -msgstr "WebAppのためのブラウザを選択してください。" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "Webアプリ管理者" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "ウェブアプリを検索" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 -msgid "Main Menu" -msgstr "メインメニュー" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 -msgid "Refresh" -msgstr "更新" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Webアプリをエクスポート" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "ウェブアプリをインポート" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "アプリケーションフォルダーをブラウズ" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "プロファイルフォルダーを参照" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 -msgid "Show Welcome Screen" -msgstr "ウェルカムスクリーンを表示" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "すべてのWebアプリを削除" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "情報について" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 -msgid "Add" -msgstr "追加" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 -msgid "No WebApps Found" -msgstr "ウェブアプリが見つかりませんでした。" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "新しいウェブアプリを追加して始めましょう。" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "WebAppが正常に作成されました" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "WebAppが正常に更新されました" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 -#, python-brace-format -msgid "Browser changed to {0}" -msgstr "ブラウザが{0}に変更されました。" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 -#, python-brace-format -msgid "" -"Are you sure you want to delete {0}?\n" -"\n" -"URL: {1}\n" -"Browser: {2}" -msgstr "" -"{0}を削除してもよろしいですか?\n" -"\n" -"URL: {1}\n" -"ブラウザ: {2}" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "構成フォルダーも削除してください。" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "削除" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "WebAppが正常に削除されました" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 -msgid "REMOVE ALL" -msgstr "すべて削除" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 -#, python-brace-format -msgid "" -"Are you sure you want to remove all your WebApps? This action cannot be undone.\n" -"\n" -"Type \"{0}\" to confirm." -msgstr "" -"すべてのWebアプリを削除してもよろしいですか?この操作は元に戻せません。\n" -"\n" -"確認するには「{0}」と入力してください。" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "すべて削除" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "すべてのWebアプリが削除されました。" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "すべてのWebアプリを削除できませんでした。" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 -#, python-brace-format -msgid "Icon {0} of {1}" -msgstr "アイコン {0} の {1}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebAppsが正常にエクスポートされました" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "ウェブアプリはありません" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 +msgid "Change browser" +msgstr "ブラウザを変更" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 +msgid "Edit" +msgstr "編集" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 +msgid "New WebApp" +msgstr "新しい WebApp" + +#. -- Icon row -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 +msgid "Icon" +msgstr "アイコン" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 +msgid "App Mode" +msgstr "アプリモード" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 +msgid "Separate Profile" +msgstr "プロファイルを分ける" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 +msgid "Select Icon" +msgstr "アイコンを選択" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 +msgid "Images" +msgstr "画像" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 +msgid "ZIP files" +msgstr "ZIPファイル" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 +#, rust-format +msgid "Imported {imported}, skipped {dups} duplicates" +msgstr "インポート済み {imported}、重複 {dups} はスキップされました" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 +msgid "Import failed" +msgstr "インポートに失敗しました" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 +msgid "Export failed" +msgstr "エクスポートに失敗しました" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 +msgid "" +"This will delete all webapps and their desktop entries. This cannot be " +"undone." +msgstr "これによりすべてのWebAppとそのデスクトップエントリが削除されます。元に戻すことはできません。" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 +msgid "Browser changed" +msgstr "ブラウザが変更されました" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 +msgid "What are WebApps?" +msgstr "WebAppsとは何ですか?" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 +msgid "" +"WebApps are web applications that run in a dedicated browser window, " +"providing a more app-like experience for your favorite websites." +msgstr "WebAppsは専用のブラウザウィンドウで動作するウェブアプリケーションで、お気に入りのウェブサイトをよりアプリのように利用できます。" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 +msgid "Benefits of using WebApps:" +msgstr "WebAppsを使うメリット:" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Focus" +msgstr "集中" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Work without the distractions of other browser tabs" +msgstr "他のブラウザタブの邪魔を受けずに作業できます" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Desktop Integration" +msgstr "デスクトップ統合" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Quick access from your application menu" +msgstr "アプリケーションメニューからすばやくアクセス" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Isolated Profiles" +msgstr "分離されたプロファイル" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Each webapp can have its own cookies and settings" +msgstr "各WebAppは独自のクッキーと設定を持てます" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 +msgid "Back" +msgstr "戻る" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 +msgid "Forward" +msgstr "進む" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 +msgid "Reload" +msgstr "再読み込み" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 +msgid "Fullscreen" +msgstr "全画面" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 +msgid "Enter URL…" +msgstr "URLを入力…" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 +msgid "Zoom In" +msgstr "拡大" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 +msgid "Zoom Out" +msgstr "縮小" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 +msgid "Reset Zoom" +msgstr "ズームをリセット" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 +msgid "Developer Tools" +msgstr "開発者ツール" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 +msgid "Menu" +msgstr "メニュー" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 +msgid "Open Link in Browser" +msgstr "ブラウザでリンクを開く" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 +msgid "Download Complete" +msgstr "ダウンロード完了" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 +msgid "Save File" +msgstr "ファイルを保存" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 +#~ msgid "Search templates" +#~ msgstr "テンプレートを検索" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 +#, python-brace-format +#~ msgid "Browser: {0}" +#~ msgstr "ブラウザ: {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 +#, python-brace-format +#~ msgid "Edit {0}" +#~ msgstr "{0}を編集" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 +#, python-brace-format +#~ msgid "Delete {0}" +#~ msgstr "{0}を削除します" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 +#~ msgid "" +#~ "What are WebApps?\n" +#~ "\n" +#~ "WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n" +#~ "\n" +#~ "Benefits of using WebApps:\n" +#~ "\n" +#~ "• Focus: Work without the distractions of other browser tabs\n" +#~ "• Desktop Integration: Quick access from your application menu\n" +#~ "• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" +#~ msgstr "" +#~ "Webアプリとは何ですか?\n" +#~ "\n" +#~ "Webアプリは、専用のブラウザウィンドウで実行されるウェブアプリケーションで、お気に入りのウェブサイトに対してよりアプリのような体験を提供します。\n" +#~ "\n" +#~ "Webアプリを使用する利点:\n" +#~ "\n" +#~ "• 集中: 他のブラウザタブの気を散らすことなく作業できます\n" +#~ "• デスクトップ統合: アプリケーションメニューからの迅速なアクセス\n" +#~ "• 隔離されたプロファイル: オプションで、各Webアプリは独自のクッキーと設定を持つことができます\n" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 +#~ msgid "System Default" +#~ msgstr "システムデフォルト" + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 -msgid "There are no WebApps to export." -msgstr "エクスポートするWebアプリはありません。" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 -msgid "The selected file does not exist." -msgstr "選択したファイルは存在しません。" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 -msgid "The selected file is not a valid ZIP archive." -msgstr "選択したファイルは有効なZIPアーカイブではありません。" +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 -msgid "Error importing WebApps" -msgstr "WebAppsのインポート中にエラーが発生しました" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 +#~ msgid "Default" +#~ msgstr "デフォルト" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 +#~ msgid "Please select a browser." +#~ msgstr "ブラウザを選択してください。" + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 -msgid "Imported {} WebApps successfully ({} duplicates skipped)" -msgstr "{} の WebApps を正常にインポートしました ({} の重複はスキップされました)" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 +#~ msgid "Error" +#~ msgstr "エラー" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 +#~ msgid "Choose from templates" +#~ msgstr "テンプレートから選択してください" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 +#~ msgid "Detect" +#~ msgstr "検出" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 +#~ msgid "App Icon" +#~ msgstr "アプリアイコン" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 +#~ msgid "Select icon for the WebApp" +#~ msgstr "WebAppのアイコンを選択してください。" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 +#~ msgid "Available Icons" +#~ msgstr "利用可能なアイコン" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 +#~ msgid "Application Mode" +#~ msgstr "アプリケーションモード" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 +#~ msgid "Profile Settings" +#~ msgstr "プロフィール設定" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 +#~ msgid "Configure a separate browser profile for this webapp" +#~ msgstr "このウェブアプリのために別のブラウザプロファイルを設定します。" + +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 -msgid "Imported {} WebApps successfully" -msgstr "{} WebAppsを正常にインポートしました。" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 -msgid "No" -msgstr "いいえ" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 -msgid "Yes" -msgstr "はい" +#~ msgid "Use separate profile" +#~ msgstr "別のプロファイルを使用する" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 +#~ msgid "Detecting website information, please wait" +#~ msgstr "ウェブサイト情報を検出しています。お待ちください。" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 +#~ msgid "Please enter a URL first." +#~ msgstr "最初にURLを入力してください。" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 +#~ msgid "Please enter a name for the WebApp." +#~ msgstr "WebAppの名前を入力してください。" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 +#~ msgid "Please enter a URL for the WebApp." +#~ msgstr "WebAppのURLを入力してください。" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 +#~ msgid "Please select a browser for the WebApp." +#~ msgstr "WebAppのためのブラウザを選択してください。" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 +#~ msgid "Main Menu" +#~ msgstr "メインメニュー" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 +#~ msgid "Refresh" +#~ msgstr "更新" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 +#~ msgid "Show Welcome Screen" +#~ msgstr "ウェルカムスクリーンを表示" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 +#~ msgid "Add" +#~ msgstr "追加" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 +#~ msgid "No WebApps Found" +#~ msgstr "ウェブアプリが見つかりませんでした。" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 +#, python-brace-format +#~ msgid "Browser changed to {0}" +#~ msgstr "ブラウザが{0}に変更されました。" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to delete {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Browser: {2}" +#~ msgstr "" +#~ "{0}を削除してもよろしいですか?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "ブラウザ: {2}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 +#~ msgid "REMOVE ALL" +#~ msgstr "すべて削除" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to remove all your WebApps? This action cannot be undone.\n" +#~ "\n" +#~ "Type \"{0}\" to confirm." +#~ msgstr "" +#~ "すべてのWebアプリを削除してもよろしいですか?この操作は元に戻せません。\n" +#~ "\n" +#~ "確認するには「{0}」と入力してください。" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 +#, python-brace-format +#~ msgid "Icon {0} of {1}" +#~ msgstr "アイコン {0} の {1}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#~ msgid "There are no WebApps to export." +#~ msgstr "エクスポートするWebアプリはありません。" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 +#~ msgid "The selected file does not exist." +#~ msgstr "選択したファイルは存在しません。" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 +#~ msgid "The selected file is not a valid ZIP archive." +#~ msgstr "選択したファイルは有効なZIPアーカイブではありません。" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 +#~ msgid "Error importing WebApps" +#~ msgstr "WebAppsのインポート中にエラーが発生しました" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 +#~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" +#~ msgstr "{} の WebApps を正常にインポートしました ({} の重複はスキップされました)" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 +#~ msgid "Imported {} WebApps successfully" +#~ msgstr "{} WebAppsを正常にインポートしました。" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 +#~ msgid "No" +#~ msgstr "いいえ" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 +#~ msgid "Yes" +#~ msgstr "はい" diff --git a/biglinux-webapps/locale/ko.json b/biglinux-webapps/locale/ko.json deleted file mode 100644 index e3ef6910..00000000 --- a/biglinux-webapps/locale/ko.json +++ /dev/null @@ -1 +0,0 @@ -{"ko":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["템플릿"]},"Choose a Template":{"*":["템플릿 선택"]},"Search templates...":{"*":["템플릿 검색..."]},"Search templates":{"*":["템플릿 검색"]},"Search Results":{"*":["검색 결과"]},"No templates found":{"*":["템플릿을 찾을 수 없습니다."]},"Browser: {0}":{"*":["브라우저: {0}"]},"Edit WebApp":{"*":["웹앱 편집"]},"Edit {0}":{"*":["{0} 편집"]},"Delete WebApp":{"*":["웹앱 삭제"]},"Delete {0}":{"*":["{0} 삭제"]},"Welcome to WebApps Manager":{"*":["웹앱 관리자에 오신 것을 환영합니다."]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["웹앱이란?\n\n웹앱은 전용 브라우저 창에서 실행되는 웹 애플리케이션으로, 좋아하는 웹사이트에 대해 더 앱 같은 경험을 제공합니다.\n\n웹앱 사용의 이점:\n\n• 집중: 다른 브라우저 탭의 방해 없이 작업\n• 데스크탑 통합: 애플리케이션 메뉴에서 빠른 접근\n• 격리된 프로필: 선택적으로 각 웹앱은 자체 쿠키와 설정을 가질 수 있음\n"]},"Don't show this again":{"*":["다시 표시하지 않기"]},"Let's Start":{"*":["시작하겠습니다."]},"Select Browser":{"*":["브라우저 선택"]},"Cancel":{"*":["취소"]},"Select":{"*":["선택하십시오"]},"System Default":{"*":["시스템 기본값"]},"Default":{"*":["기본값"]},"Please select a browser.":{"*":["브라우저를 선택하세요."]},"Error":{"*":["오류"]},"OK":{"*":["알겠습니다."]},"Add WebApp":{"*":["웹앱 추가"]},"Choose from templates":{"*":["템플릿에서 선택하세요."]},"URL":{"*":["URL"]},"Detect":{"*":["감지하다"]},"Detect name and icon from website":{"*":["웹사이트에서 이름과 아이콘 감지"]},"Name":{"*":["이름"]},"App Icon":{"*":["앱 아이콘"]},"Select icon for the WebApp":{"*":["웹앱 아이콘 선택"]},"Available Icons":{"*":["사용 가능한 아이콘"]},"Category":{"*":["카테고리"]},"Application Mode":{"*":["응용 프로그램 모드"]},"Opens as a native window without browser interface":{"*":["브라우저 인터페이스 없이 네이티브 윈도우로 열림"]},"Browser":{"*":["브라우저"]},"Profile Settings":{"*":["프로필 설정"]},"Configure a separate browser profile for this webapp":{"*":["이 웹앱을 위한 별도의 브라우저 프로필을 구성하세요."]},"Use separate profile":{"*":["별도의 프로필 사용"]},"Allows independent cookies and sessions":{"*":["독립적인 쿠키 및 세션을 허용합니다."]},"Profile Name":{"*":["프로필 이름"]},"Save":{"*":["저장"]},"Loading...":{"*":["로딩 중..."]},"Detecting website information, please wait":{"*":["웹사이트 정보를 감지하는 중입니다. 잠시만 기다려 주십시오."]},"Please enter a URL first.":{"*":["먼저 URL을 입력하세요."]},"Please enter a name for the WebApp.":{"*":["웹앱의 이름을 입력하세요."]},"Please enter a URL for the WebApp.":{"*":["웹앱의 URL을 입력하세요."]},"Please select a browser for the WebApp.":{"*":["웹앱을 위한 브라우저를 선택하세요."]},"WebApps Manager":{"*":["웹앱 관리자"]},"Search WebApps":{"*":["웹앱 검색"]},"Main Menu":{"*":["메인 메뉴"]},"Refresh":{"*":["새로 고침"]},"Export WebApps":{"*":["웹앱 내보내기"]},"Import WebApps":{"*":["웹앱 가져오기"]},"Browse Applications Folder":{"*":["응용 프로그램 폴더 탐색"]},"Browse Profiles Folder":{"*":["프로필 폴더 탐색"]},"Show Welcome Screen":{"*":["환영 화면 표시"]},"Remove All WebApps":{"*":["모든 웹앱 제거"]},"About":{"*":["정보"]},"Add":{"*":["추가"]},"No WebApps Found":{"*":["웹앱을 찾을 수 없습니다."]},"Add a new webapp to get started":{"*":["시작하려면 새 웹앱을 추가하세요."]},"WebApp created successfully":{"*":["웹앱이 성공적으로 생성되었습니다."]},"WebApp updated successfully":{"*":["웹앱이 성공적으로 업데이트되었습니다."]},"Browser changed to {0}":{"*":["브라우저가 {0}로 변경되었습니다."]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["{0}를 삭제하시겠습니까?\n\nURL: {1}\n브라우저: {2}"]},"Also delete configuration folder":{"*":["구성 폴더도 삭제하십시오."]},"Delete":{"*":["삭제"]},"WebApp deleted successfully":{"*":["웹앱이 성공적으로 삭제되었습니다."]},"REMOVE ALL":{"*":["모두 제거"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["모든 웹앱을 제거하시겠습니까? 이 작업은 취소할 수 없습니다.\n\n확인을 위해 \"{0}\"를 입력하세요."]},"Remove All":{"*":["모두 제거"]},"All WebApps have been removed":{"*":["모든 웹앱이 제거되었습니다."]},"Failed to remove all WebApps":{"*":["모든 웹앱을 제거하지 못했습니다."]},"Icon {0} of {1}":{"*":["아이콘 {0}의 {1}"]},"WebApps exported successfully":{"*":["웹앱이 성공적으로 내보내졌습니다."]},"No WebApps":{"*":["웹앱 없음"]},"There are no WebApps to export.":{"*":["내보낼 웹앱이 없습니다."]},"The selected file does not exist.":{"*":["선택한 파일이 존재하지 않습니다."]},"The selected file is not a valid ZIP archive.":{"*":["선택한 파일은 유효한 ZIP 아카이브가 아닙니다."]},"Error importing WebApps":{"*":["웹앱 가져오기 오류"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["{} 웹앱이 성공적으로 가져와졌습니다 ({} 중복 항목 건너뜀)"]},"Imported {} WebApps successfully":{"*":["{} 웹앱이 성공적으로 가져와졌습니다."]},"No":{"*":["No"]},"Yes":{"*":["예"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/ko.po b/biglinux-webapps/locale/ko.po index de025ac4..ae91ed43 100644 --- a/biglinux-webapps/locale/ko.po +++ b/biglinux-webapps/locale/ko.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the biglinux-webapps package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" "Project-Id-Version: biglinux-webapps\n" @@ -14,440 +14,746 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "템플릿" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "템플릿 선택" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "템플릿 검색..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 -msgid "Search templates" -msgstr "템플릿 검색" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "검색 결과" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "템플릿을 찾을 수 없습니다." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 -#, python-brace-format -msgid "Browser: {0}" -msgstr "브라우저: {0}" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "웹앱 편집" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 -#, python-brace-format -msgid "Edit {0}" -msgstr "{0} 편집" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "웹앱 삭제" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 -#, python-brace-format -msgid "Delete {0}" -msgstr "{0} 삭제" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:20 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "웹앱 관리자에 오신 것을 환영합니다." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 -msgid "" -"What are WebApps?\n" -"\n" -"WebApps are web applications that run in a dedicated browser window, providing a more app-like " -"experience for your favorite websites.\n" -"\n" -"Benefits of using WebApps:\n" -"\n" -"• Focus: Work without the distractions of other browser tabs\n" -"• Desktop Integration: Quick access from your application menu\n" -"• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" -msgstr "" -"웹앱이란?\n" -"\n" -"웹앱은 전용 브라우저 창에서 실행되는 웹 애플리케이션으로, 좋아하는 웹사이트에 대해 더 앱 같은 경험을 제공합니다.\n" -"\n" -"웹앱 사용의 이점:\n" -"\n" -"• 집중: 다른 브라우저 탭의 방해 없이 작업\n" -"• 데스크탑 통합: 애플리케이션 메뉴에서 빠른 접근\n" -"• 격리된 프로필: 선택적으로 각 웹앱은 자체 쿠키와 설정을 가질 수 있음\n" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "다시 표시하지 않기" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "시작하겠습니다." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "브라우저 선택" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:99 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:225 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:291 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "취소" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "선택하십시오" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 -msgid "System Default" -msgstr "시스템 기본값" -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 -msgid "Default" -msgstr "기본값" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 -msgid "Please select a browser." -msgstr "브라우저를 선택하세요." -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 -msgid "Error" -msgstr "오류" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "알겠습니다." -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "웹앱 추가" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 -msgid "Choose from templates" -msgstr "템플릿에서 선택하세요." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 -msgid "Detect" -msgstr "감지하다" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "웹사이트에서 이름과 아이콘 감지" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "이름" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 -msgid "App Icon" -msgstr "앱 아이콘" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 -msgid "Select icon for the WebApp" -msgstr "웹앱 아이콘 선택" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 -msgid "Available Icons" -msgstr "사용 가능한 아이콘" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "카테고리" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 -msgid "Application Mode" -msgstr "응용 프로그램 모드" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "브라우저 인터페이스 없이 네이티브 윈도우로 열림" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 +#. -- Browser row (hidden in app mode) -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "브라우저" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 -msgid "Profile Settings" -msgstr "프로필 설정" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 -msgid "Configure a separate browser profile for this webapp" -msgstr "이 웹앱을 위한 별도의 브라우저 프로필을 구성하세요." -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -msgid "Use separate profile" -msgstr "별도의 프로필 사용" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "독립적인 쿠키 및 세션을 허용합니다." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "프로필 이름" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "저장" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "로딩 중..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 -msgid "Detecting website information, please wait" -msgstr "웹사이트 정보를 감지하는 중입니다. 잠시만 기다려 주십시오." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 -msgid "Please enter a URL first." -msgstr "먼저 URL을 입력하세요." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 -msgid "Please enter a name for the WebApp." -msgstr "웹앱의 이름을 입력하세요." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 -msgid "Please enter a URL for the WebApp." -msgstr "웹앱의 URL을 입력하세요." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 -msgid "Please select a browser for the WebApp." -msgstr "웹앱을 위한 브라우저를 선택하세요." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "웹앱 관리자" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "웹앱 검색" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 -msgid "Main Menu" -msgstr "메인 메뉴" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 -msgid "Refresh" -msgstr "새로 고침" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "웹앱 내보내기" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 63 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 63 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "웹앱 가져오기" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "응용 프로그램 폴더 탐색" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 67 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 67 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "프로필 폴더 탐색" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 -msgid "Show Welcome Screen" -msgstr "환영 화면 표시" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 390 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 390 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "모든 웹앱 제거" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 70 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 70 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "정보" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 -msgid "Add" -msgstr "추가" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 -msgid "No WebApps Found" -msgstr "웹앱을 찾을 수 없습니다." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "시작하려면 새 웹앱을 추가하세요." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "웹앱이 성공적으로 생성되었습니다." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "웹앱이 성공적으로 업데이트되었습니다." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 -#, python-brace-format -msgid "Browser changed to {0}" -msgstr "브라우저가 {0}로 변경되었습니다." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 -#, python-brace-format -msgid "" -"Are you sure you want to delete {0}?\n" -"\n" -"URL: {1}\n" -"Browser: {2}" -msgstr "" -"{0}를 삭제하시겠습니까?\n" -"\n" -"URL: {1}\n" -"브라우저: {2}" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "구성 폴더도 삭제하십시오." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "삭제" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "웹앱이 성공적으로 삭제되었습니다." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 -msgid "REMOVE ALL" -msgstr "모두 제거" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 -#, python-brace-format -msgid "" -"Are you sure you want to remove all your WebApps? This action cannot be undone.\n" -"\n" -"Type \"{0}\" to confirm." -msgstr "" -"모든 웹앱을 제거하시겠습니까? 이 작업은 취소할 수 없습니다.\n" -"\n" -"확인을 위해 \"{0}\"를 입력하세요." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "모두 제거" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 444 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 444 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "모든 웹앱이 제거되었습니다." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 446 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 446 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "모든 웹앱을 제거하지 못했습니다." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 -#, python-brace-format -msgid "Icon {0} of {1}" -msgstr "아이콘 {0}의 {1}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "웹앱이 성공적으로 내보내졌습니다." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "웹앱 없음" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 +msgid "Change browser" +msgstr "브라우저 변경" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 +msgid "Edit" +msgstr "편집" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 +msgid "New WebApp" +msgstr "새 WebApp" + +#. -- Icon row -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 +msgid "Icon" +msgstr "아이콘" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 +msgid "App Mode" +msgstr "앱 모드" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 +msgid "Separate Profile" +msgstr "별도 프로필" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 +msgid "Select Icon" +msgstr "아이콘 선택" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 +msgid "Images" +msgstr "이미지" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 +msgid "ZIP files" +msgstr "ZIP 파일" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 +#, rust-format +msgid "Imported {imported}, skipped {dups} duplicates" +msgstr "{imported}개 가져옴, {dups}개 중복 건너뜀" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 +msgid "Import failed" +msgstr "가져오기 실패" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 +msgid "Export failed" +msgstr "내보내기 실패" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 +msgid "" +"This will delete all webapps and their desktop entries. This cannot be " +"undone." +msgstr "이 작업은 모든 웹앱과 해당 데스크탑 항목을 삭제합니다. 되돌릴 수 없습니다." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 +msgid "Browser changed" +msgstr "브라우저가 변경되었습니다" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 +msgid "What are WebApps?" +msgstr "WebApps란 무엇인가요?" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 +msgid "" +"WebApps are web applications that run in a dedicated browser window, " +"providing a more app-like experience for your favorite websites." +msgstr "" +"WebApps는 전용 브라우저 창에서 실행되는 웹 애플리케이션으로, 좋아하는 웹사이트를 더 앱처럼 사용할 수 있는 환경을 제공합니다." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 +msgid "Benefits of using WebApps:" +msgstr "WebApps 사용의 장점:" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Focus" +msgstr "집중" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Work without the distractions of other browser tabs" +msgstr "다른 브라우저 탭의 방해 없이 작업하세요" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Desktop Integration" +msgstr "데스크탑 통합" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Quick access from your application menu" +msgstr "애플리케이션 메뉴에서 빠르게 접근 가능" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Isolated Profiles" +msgstr "분리된 프로필" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Each webapp can have its own cookies and settings" +msgstr "각 WebApp은 자체 쿠키와 설정을 가질 수 있습니다" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 +msgid "Back" +msgstr "뒤로" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 +msgid "Forward" +msgstr "앞으로" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 +msgid "Reload" +msgstr "새로 고침" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 +msgid "Fullscreen" +msgstr "전체 화면" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 +msgid "Enter URL…" +msgstr "URL 입력…" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 +msgid "Zoom In" +msgstr "확대" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 +msgid "Zoom Out" +msgstr "축소" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 +msgid "Reset Zoom" +msgstr "확대/축소 초기화" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 +msgid "Developer Tools" +msgstr "개발자 도구" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 +msgid "Menu" +msgstr "메뉴" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 +msgid "Open Link in Browser" +msgstr "브라우저에서 링크 열기" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 +msgid "Download Complete" +msgstr "다운로드 완료" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 +msgid "Save File" +msgstr "파일 저장" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 +#~ msgid "Search templates" +#~ msgstr "템플릿 검색" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 +#, python-brace-format +#~ msgid "Browser: {0}" +#~ msgstr "브라우저: {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 +#, python-brace-format +#~ msgid "Edit {0}" +#~ msgstr "{0} 편집" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 +#, python-brace-format +#~ msgid "Delete {0}" +#~ msgstr "{0} 삭제" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 +#~ msgid "" +#~ "What are WebApps?\n" +#~ "\n" +#~ "WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n" +#~ "\n" +#~ "Benefits of using WebApps:\n" +#~ "\n" +#~ "• Focus: Work without the distractions of other browser tabs\n" +#~ "• Desktop Integration: Quick access from your application menu\n" +#~ "• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" +#~ msgstr "" +#~ "웹앱이란?\n" +#~ "\n" +#~ "웹앱은 전용 브라우저 창에서 실행되는 웹 애플리케이션으로, 좋아하는 웹사이트에 대해 더 앱 같은 경험을 제공합니다.\n" +#~ "\n" +#~ "웹앱 사용의 이점:\n" +#~ "\n" +#~ "• 집중: 다른 브라우저 탭의 방해 없이 작업\n" +#~ "• 데스크탑 통합: 애플리케이션 메뉴에서 빠른 접근\n" +#~ "• 격리된 프로필: 선택적으로 각 웹앱은 자체 쿠키와 설정을 가질 수 있음\n" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 +#~ msgid "System Default" +#~ msgstr "시스템 기본값" + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 -msgid "There are no WebApps to export." -msgstr "내보낼 웹앱이 없습니다." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 -msgid "The selected file does not exist." -msgstr "선택한 파일이 존재하지 않습니다." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 -msgid "The selected file is not a valid ZIP archive." -msgstr "선택한 파일은 유효한 ZIP 아카이브가 아닙니다." +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 -msgid "Error importing WebApps" -msgstr "웹앱 가져오기 오류" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 +#~ msgid "Default" +#~ msgstr "기본값" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 +#~ msgid "Please select a browser." +#~ msgstr "브라우저를 선택하세요." + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 404 -msgid "Imported {} WebApps successfully ({} duplicates skipped)" -msgstr "{} 웹앱이 성공적으로 가져와졌습니다 ({} 중복 항목 건너뜀)" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 +#~ msgid "Error" +#~ msgstr "오류" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 +#~ msgid "Choose from templates" +#~ msgstr "템플릿에서 선택하세요." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 +#~ msgid "Detect" +#~ msgstr "감지하다" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 +#~ msgid "App Icon" +#~ msgstr "앱 아이콘" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 +#~ msgid "Select icon for the WebApp" +#~ msgstr "웹앱 아이콘 선택" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 +#~ msgid "Available Icons" +#~ msgstr "사용 가능한 아이콘" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 +#~ msgid "Application Mode" +#~ msgstr "응용 프로그램 모드" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 +#~ msgid "Profile Settings" +#~ msgstr "프로필 설정" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 +#~ msgid "Configure a separate browser profile for this webapp" +#~ msgstr "이 웹앱을 위한 별도의 브라우저 프로필을 구성하세요." + +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 -msgid "Imported {} WebApps successfully" -msgstr "{} 웹앱이 성공적으로 가져와졌습니다." +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 -msgid "No" -msgstr "No" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 -msgid "Yes" -msgstr "예" +#~ msgid "Use separate profile" +#~ msgstr "별도의 프로필 사용" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 +#~ msgid "Detecting website information, please wait" +#~ msgstr "웹사이트 정보를 감지하는 중입니다. 잠시만 기다려 주십시오." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 +#~ msgid "Please enter a URL first." +#~ msgstr "먼저 URL을 입력하세요." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 +#~ msgid "Please enter a name for the WebApp." +#~ msgstr "웹앱의 이름을 입력하세요." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 +#~ msgid "Please enter a URL for the WebApp." +#~ msgstr "웹앱의 URL을 입력하세요." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 +#~ msgid "Please select a browser for the WebApp." +#~ msgstr "웹앱을 위한 브라우저를 선택하세요." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 +#~ msgid "Main Menu" +#~ msgstr "메인 메뉴" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 +#~ msgid "Refresh" +#~ msgstr "새로 고침" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 +#~ msgid "Show Welcome Screen" +#~ msgstr "환영 화면 표시" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 +#~ msgid "Add" +#~ msgstr "추가" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 +#~ msgid "No WebApps Found" +#~ msgstr "웹앱을 찾을 수 없습니다." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 +#, python-brace-format +#~ msgid "Browser changed to {0}" +#~ msgstr "브라우저가 {0}로 변경되었습니다." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to delete {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Browser: {2}" +#~ msgstr "" +#~ "{0}를 삭제하시겠습니까?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "브라우저: {2}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 +#~ msgid "REMOVE ALL" +#~ msgstr "모두 제거" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to remove all your WebApps? This action cannot be undone.\n" +#~ "\n" +#~ "Type \"{0}\" to confirm." +#~ msgstr "" +#~ "모든 웹앱을 제거하시겠습니까? 이 작업은 취소할 수 없습니다.\n" +#~ "\n" +#~ "확인을 위해 \"{0}\"를 입력하세요." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 +#, python-brace-format +#~ msgid "Icon {0} of {1}" +#~ msgstr "아이콘 {0}의 {1}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#~ msgid "There are no WebApps to export." +#~ msgstr "내보낼 웹앱이 없습니다." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 +#~ msgid "The selected file does not exist." +#~ msgstr "선택한 파일이 존재하지 않습니다." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 +#~ msgid "The selected file is not a valid ZIP archive." +#~ msgstr "선택한 파일은 유효한 ZIP 아카이브가 아닙니다." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 +#~ msgid "Error importing WebApps" +#~ msgstr "웹앱 가져오기 오류" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 404 +#~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" +#~ msgstr "{} 웹앱이 성공적으로 가져와졌습니다 ({} 중복 항목 건너뜀)" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 +#~ msgid "Imported {} WebApps successfully" +#~ msgstr "{} 웹앱이 성공적으로 가져와졌습니다." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 +#~ msgid "No" +#~ msgstr "No" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 +#~ msgid "Yes" +#~ msgstr "예" diff --git a/biglinux-webapps/locale/nl.json b/biglinux-webapps/locale/nl.json deleted file mode 100644 index 3cab9434..00000000 --- a/biglinux-webapps/locale/nl.json +++ /dev/null @@ -1 +0,0 @@ -{"nl":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Sjablonen"]},"Choose a Template":{"*":["Kies een sjabloon"]},"Search templates...":{"*":["Zoek sjablonen..."]},"Search templates":{"*":["Zoek sjablonen"]},"Search Results":{"*":["Zoekresultaten"]},"No templates found":{"*":["Geen sjablonen gevonden"]},"Browser: {0}":{"*":["Browser: {0}"]},"Edit WebApp":{"*":["Bewerk WebApp"]},"Edit {0}":{"*":["Bewerk {0}"]},"Delete WebApp":{"*":["Verwijder WebApp"]},"Delete {0}":{"*":["Verwijder {0}"]},"Welcome to WebApps Manager":{"*":["Welkom bij WebApps Manager"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Wat zijn WebApps?\n\nWebApps zijn webapplicaties die draaien in een speciaal browservenster, wat een meer app-achtige ervaring biedt voor je favoriete websites.\n\nVoordelen van het gebruik van WebApps:\n\n• Focus: Werken zonder de afleiding van andere browsertabs\n• Bureaubladintegratie: Snelle toegang vanuit je applicatiemenu\n• Geïsoleerde Profielen: Optioneel kan elke webapp zijn eigen cookies en instellingen hebben\n"]},"Don't show this again":{"*":["Toon dit niet opnieuw"]},"Let's Start":{"*":["Laten we beginnen"]},"Select Browser":{"*":["Selecteer Browser"]},"Cancel":{"*":["Annuleren"]},"Select":{"*":["Selecteren"]},"System Default":{"*":["Systeemstandaard"]},"Default":{"*":["Standaard"]},"Please select a browser.":{"*":["Selecteer een browser."]},"Error":{"*":["Fout"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Voeg WebApp toe"]},"Choose from templates":{"*":["Kies uit sjablonen"]},"URL":{"*":["URL"]},"Detect":{"*":["Detecteren"]},"Detect name and icon from website":{"*":["Detecteer naam en pictogram van website"]},"Name":{"*":["Naam"]},"App Icon":{"*":["App-pictogram"]},"Select icon for the WebApp":{"*":["Selecteer pictogram voor de WebApp"]},"Available Icons":{"*":["Beschikbare pictogrammen"]},"Category":{"*":["Categorie"]},"Application Mode":{"*":["Toepassingsmodus"]},"Opens as a native window without browser interface":{"*":["Opent als een native venster zonder browserinterface"]},"Browser":{"*":["Browser"]},"Profile Settings":{"*":["Profielinstellingen"]},"Configure a separate browser profile for this webapp":{"*":["Configureer een apart browserprofiel voor deze webapp."]},"Use separate profile":{"*":["Gebruik apart profiel"]},"Allows independent cookies and sessions":{"*":["Staat onafhankelijke cookies en sessies toe"]},"Profile Name":{"*":["Profielnaam"]},"Save":{"*":["Opslaan"]},"Loading...":{"*":["Laden..."]},"Detecting website information, please wait":{"*":["Website-informatie wordt gedetecteerd, een moment geduld alstublieft."]},"Please enter a URL first.":{"*":["Voer eerst een URL in."]},"Please enter a name for the WebApp.":{"*":["Voer een naam in voor de WebApp."]},"Please enter a URL for the WebApp.":{"*":["Voer een URL in voor de WebApp."]},"Please select a browser for the WebApp.":{"*":["Selecteer een browser voor de WebApp."]},"WebApps Manager":{"*":["WebApps Beheerder"]},"Search WebApps":{"*":["Zoek WebApps"]},"Main Menu":{"*":["Hoofdmenu"]},"Refresh":{"*":["Vernieuwen"]},"Export WebApps":{"*":["Exporteer WebApps"]},"Import WebApps":{"*":["WebApps importeren"]},"Browse Applications Folder":{"*":["Blader naar de map Toepassingen"]},"Browse Profiles Folder":{"*":["Blader naar Profielenmap"]},"Show Welcome Screen":{"*":["Toon Welkomstscherm"]},"Remove All WebApps":{"*":["Verwijder alle webapps"]},"About":{"*":["Over"]},"Add":{"*":["Toevoegen"]},"No WebApps Found":{"*":["Geen WebApps gevonden"]},"Add a new webapp to get started":{"*":["Voeg een nieuwe webapp toe om te beginnen"]},"WebApp created successfully":{"*":["WebApp succesvol aangemaakt"]},"WebApp updated successfully":{"*":["WebApp succesvol bijgewerkt"]},"Browser changed to {0}":{"*":["Browser gewijzigd naar {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Weet u zeker dat u {0} wilt verwijderen?\n\nURL: {1}\nBrowser: {2}"]},"Also delete configuration folder":{"*":["Verwijder ook de configuratiemap."]},"Delete":{"*":["Verwijderen"]},"WebApp deleted successfully":{"*":["WebApp succesvol verwijderd"]},"REMOVE ALL":{"*":["VERWIJDER ALLES"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Weet u zeker dat u al uw WebApps wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt.\n\nTyp \"{0}\" om te bevestigen."]},"Remove All":{"*":["Verwijder alles"]},"All WebApps have been removed":{"*":["Alle WebApps zijn verwijderd."]},"Failed to remove all WebApps":{"*":["Kon niet alle WebApps verwijderen"]},"Icon {0} of {1}":{"*":["Pictogram {0} van {1}"]},"WebApps exported successfully":{"*":["WebApps succesvol geëxporteerd"]},"No WebApps":{"*":["Geen WebApps"]},"There are no WebApps to export.":{"*":["Er zijn geen WebApps om te exporteren."]},"The selected file does not exist.":{"*":["Het geselecteerde bestand bestaat niet."]},"The selected file is not a valid ZIP archive.":{"*":["Het geselecteerde bestand is geen geldig ZIP-archief."]},"Error importing WebApps":{"*":["Fout bij het importeren van WebApps"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["{} WebApps succesvol geïmporteerd ({} duplicaten overgeslagen)"]},"Imported {} WebApps successfully":{"*":["Geïmporteerde {} WebApps succesvol"]},"No":{"*":["Geen"]},"Yes":{"*":["Ja"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/nl.po b/biglinux-webapps/locale/nl.po index af9dfd1c..1e065634 100644 --- a/biglinux-webapps/locale/nl.po +++ b/biglinux-webapps/locale/nl.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the biglinux-webapps package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" "Project-Id-Version: biglinux-webapps\n" @@ -14,441 +14,749 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Sjablonen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Kies een sjabloon" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Zoek sjablonen..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 -msgid "Search templates" -msgstr "Zoek sjablonen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Zoekresultaten" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Geen sjablonen gevonden" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 -#, python-brace-format -msgid "Browser: {0}" -msgstr "Browser: {0}" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Bewerk WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 -#, python-brace-format -msgid "Edit {0}" -msgstr "Bewerk {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Verwijder WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 -#, python-brace-format -msgid "Delete {0}" -msgstr "Verwijder {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:20 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Welkom bij WebApps Manager" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 -msgid "" -"What are WebApps?\n" -"\n" -"WebApps are web applications that run in a dedicated browser window, providing a more app-like " -"experience for your favorite websites.\n" -"\n" -"Benefits of using WebApps:\n" -"\n" -"• Focus: Work without the distractions of other browser tabs\n" -"• Desktop Integration: Quick access from your application menu\n" -"• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" -msgstr "" -"Wat zijn WebApps?\n" -"\n" -"WebApps zijn webapplicaties die draaien in een speciaal browservenster, wat een meer app-achtige " -"ervaring biedt voor je favoriete websites.\n" -"\n" -"Voordelen van het gebruik van WebApps:\n" -"\n" -"• Focus: Werken zonder de afleiding van andere browsertabs\n" -"• Bureaubladintegratie: Snelle toegang vanuit je applicatiemenu\n" -"• Geïsoleerde Profielen: Optioneel kan elke webapp zijn eigen cookies en instellingen hebben\n" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Toon dit niet opnieuw" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Laten we beginnen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Selecteer Browser" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:99 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:225 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:291 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Annuleren" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Selecteren" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 -msgid "System Default" -msgstr "Systeemstandaard" -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 -msgid "Default" -msgstr "Standaard" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 -msgid "Please select a browser." -msgstr "Selecteer een browser." -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 -msgid "Error" -msgstr "Fout" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "OK" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Voeg WebApp toe" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 -msgid "Choose from templates" -msgstr "Kies uit sjablonen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 -msgid "Detect" -msgstr "Detecteren" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Detecteer naam en pictogram van website" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Naam" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 -msgid "App Icon" -msgstr "App-pictogram" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 -msgid "Select icon for the WebApp" -msgstr "Selecteer pictogram voor de WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 -msgid "Available Icons" -msgstr "Beschikbare pictogrammen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Categorie" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 -msgid "Application Mode" -msgstr "Toepassingsmodus" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Opent als een native venster zonder browserinterface" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 +#. -- Browser row (hidden in app mode) -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Browser" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 -msgid "Profile Settings" -msgstr "Profielinstellingen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 -msgid "Configure a separate browser profile for this webapp" -msgstr "Configureer een apart browserprofiel voor deze webapp." -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -msgid "Use separate profile" -msgstr "Gebruik apart profiel" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Staat onafhankelijke cookies en sessies toe" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Profielnaam" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Opslaan" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Laden..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 -msgid "Detecting website information, please wait" -msgstr "Website-informatie wordt gedetecteerd, een moment geduld alstublieft." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 -msgid "Please enter a URL first." -msgstr "Voer eerst een URL in." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 -msgid "Please enter a name for the WebApp." -msgstr "Voer een naam in voor de WebApp." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 -msgid "Please enter a URL for the WebApp." -msgstr "Voer een URL in voor de WebApp." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 -msgid "Please select a browser for the WebApp." -msgstr "Selecteer een browser voor de WebApp." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "WebApps Beheerder" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Zoek WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 -msgid "Main Menu" -msgstr "Hoofdmenu" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 -msgid "Refresh" -msgstr "Vernieuwen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Exporteer WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "WebApps importeren" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Blader naar de map Toepassingen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Blader naar Profielenmap" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 -msgid "Show Welcome Screen" -msgstr "Toon Welkomstscherm" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Verwijder alle webapps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "Over" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 -msgid "Add" -msgstr "Toevoegen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 -msgid "No WebApps Found" -msgstr "Geen WebApps gevonden" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Voeg een nieuwe webapp toe om te beginnen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "WebApp succesvol aangemaakt" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "WebApp succesvol bijgewerkt" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 -#, python-brace-format -msgid "Browser changed to {0}" -msgstr "Browser gewijzigd naar {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 -#, python-brace-format -msgid "" -"Are you sure you want to delete {0}?\n" -"\n" -"URL: {1}\n" -"Browser: {2}" -msgstr "" -"Weet u zeker dat u {0} wilt verwijderen?\n" -"\n" -"URL: {1}\n" -"Browser: {2}" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Verwijder ook de configuratiemap." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Verwijderen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "WebApp succesvol verwijderd" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 -msgid "REMOVE ALL" -msgstr "VERWIJDER ALLES" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 -#, python-brace-format -msgid "" -"Are you sure you want to remove all your WebApps? This action cannot be undone.\n" -"\n" -"Type \"{0}\" to confirm." -msgstr "" -"Weet u zeker dat u al uw WebApps wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt.\n" -"\n" -"Typ \"{0}\" om te bevestigen." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Verwijder alles" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Alle WebApps zijn verwijderd." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Kon niet alle WebApps verwijderen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 -#, python-brace-format -msgid "Icon {0} of {1}" -msgstr "Pictogram {0} van {1}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebApps succesvol geëxporteerd" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Geen WebApps" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 +msgid "Change browser" +msgstr "Browser wijzigen" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 +msgid "Edit" +msgstr "Bewerken" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 +msgid "New WebApp" +msgstr "Nieuwe WebApp" + +#. -- Icon row -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 +msgid "Icon" +msgstr "Pictogram" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 +msgid "App Mode" +msgstr "App-modus" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 +msgid "Separate Profile" +msgstr "Apart profiel" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 +msgid "Select Icon" +msgstr "Pictogram selecteren" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 +msgid "Images" +msgstr "Afbeeldingen" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 +msgid "ZIP files" +msgstr "ZIP-bestanden" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 +#, rust-format +msgid "Imported {imported}, skipped {dups} duplicates" +msgstr "Geïmporteerd {imported}, overgeslagen {dups} duplicaten" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 +msgid "Import failed" +msgstr "Importeren mislukt" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 +msgid "Export failed" +msgstr "Exporteren mislukt" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 +msgid "" +"This will delete all webapps and their desktop entries. This cannot be " +"undone." +msgstr "" +"Dit verwijdert alle webapps en hun bureaubladvermeldingen. Dit kan niet " +"ongedaan worden gemaakt." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 +msgid "Browser changed" +msgstr "Browser gewijzigd" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 +msgid "What are WebApps?" +msgstr "Wat zijn WebApps?" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 +msgid "" +"WebApps are web applications that run in a dedicated browser window, " +"providing a more app-like experience for your favorite websites." +msgstr "" +"WebApps zijn webapplicaties die draaien in een apart browservenster, wat een" +" meer app-achtige ervaring biedt voor je favoriete websites." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 +msgid "Benefits of using WebApps:" +msgstr "Voordelen van het gebruik van WebApps:" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Focus" +msgstr "Focus" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Work without the distractions of other browser tabs" +msgstr "Werk zonder afleiding van andere browsertabbladen" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Desktop Integration" +msgstr "Desktopintegratie" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Quick access from your application menu" +msgstr "Snelle toegang vanuit je applicatiemenu" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Isolated Profiles" +msgstr "Geïsoleerde profielen" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Each webapp can have its own cookies and settings" +msgstr "Elke webapp kan zijn eigen cookies en instellingen hebben" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 +msgid "Back" +msgstr "Terug" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 +msgid "Forward" +msgstr "Vooruit" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 +msgid "Reload" +msgstr "Vernieuwen" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 +msgid "Fullscreen" +msgstr "Volledig scherm" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 +msgid "Enter URL…" +msgstr "Voer URL in…" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 +msgid "Zoom In" +msgstr "Inzoomen" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 +msgid "Zoom Out" +msgstr "Uitzoomen" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 +msgid "Reset Zoom" +msgstr "Zoom resetten" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 +msgid "Developer Tools" +msgstr "Ontwikkelaarstools" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 +msgid "Menu" +msgstr "Menu" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 +msgid "Open Link in Browser" +msgstr "Link openen in browser" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 +msgid "Download Complete" +msgstr "Download voltooid" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 +msgid "Save File" +msgstr "Bestand opslaan" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 +#~ msgid "Search templates" +#~ msgstr "Zoek sjablonen" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 +#, python-brace-format +#~ msgid "Browser: {0}" +#~ msgstr "Browser: {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 +#, python-brace-format +#~ msgid "Edit {0}" +#~ msgstr "Bewerk {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 +#, python-brace-format +#~ msgid "Delete {0}" +#~ msgstr "Verwijder {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 +#~ msgid "" +#~ "What are WebApps?\n" +#~ "\n" +#~ "WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n" +#~ "\n" +#~ "Benefits of using WebApps:\n" +#~ "\n" +#~ "• Focus: Work without the distractions of other browser tabs\n" +#~ "• Desktop Integration: Quick access from your application menu\n" +#~ "• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" +#~ msgstr "" +#~ "Wat zijn WebApps?\n" +#~ "\n" +#~ "WebApps zijn webapplicaties die draaien in een speciaal browservenster, wat een meer app-achtige ervaring biedt voor je favoriete websites.\n" +#~ "\n" +#~ "Voordelen van het gebruik van WebApps:\n" +#~ "\n" +#~ "• Focus: Werken zonder de afleiding van andere browsertabs\n" +#~ "• Bureaubladintegratie: Snelle toegang vanuit je applicatiemenu\n" +#~ "• Geïsoleerde Profielen: Optioneel kan elke webapp zijn eigen cookies en instellingen hebben\n" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 +#~ msgid "System Default" +#~ msgstr "Systeemstandaard" + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 -msgid "There are no WebApps to export." -msgstr "Er zijn geen WebApps om te exporteren." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 -msgid "The selected file does not exist." -msgstr "Het geselecteerde bestand bestaat niet." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 -msgid "The selected file is not a valid ZIP archive." -msgstr "Het geselecteerde bestand is geen geldig ZIP-archief." +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 -msgid "Error importing WebApps" -msgstr "Fout bij het importeren van WebApps" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 +#~ msgid "Default" +#~ msgstr "Standaard" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 +#~ msgid "Please select a browser." +#~ msgstr "Selecteer een browser." + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 -msgid "Imported {} WebApps successfully ({} duplicates skipped)" -msgstr "{} WebApps succesvol geïmporteerd ({} duplicaten overgeslagen)" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 +#~ msgid "Error" +#~ msgstr "Fout" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 +#~ msgid "Choose from templates" +#~ msgstr "Kies uit sjablonen" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 +#~ msgid "Detect" +#~ msgstr "Detecteren" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 +#~ msgid "App Icon" +#~ msgstr "App-pictogram" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 +#~ msgid "Select icon for the WebApp" +#~ msgstr "Selecteer pictogram voor de WebApp" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 +#~ msgid "Available Icons" +#~ msgstr "Beschikbare pictogrammen" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 +#~ msgid "Application Mode" +#~ msgstr "Toepassingsmodus" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 +#~ msgid "Profile Settings" +#~ msgstr "Profielinstellingen" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 +#~ msgid "Configure a separate browser profile for this webapp" +#~ msgstr "Configureer een apart browserprofiel voor deze webapp." + +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 -msgid "Imported {} WebApps successfully" -msgstr "Geïmporteerde {} WebApps succesvol" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 -msgid "No" -msgstr "Geen" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 -msgid "Yes" -msgstr "Ja" +#~ msgid "Use separate profile" +#~ msgstr "Gebruik apart profiel" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 +#~ msgid "Detecting website information, please wait" +#~ msgstr "Website-informatie wordt gedetecteerd, een moment geduld alstublieft." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 +#~ msgid "Please enter a URL first." +#~ msgstr "Voer eerst een URL in." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 +#~ msgid "Please enter a name for the WebApp." +#~ msgstr "Voer een naam in voor de WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 +#~ msgid "Please enter a URL for the WebApp." +#~ msgstr "Voer een URL in voor de WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 +#~ msgid "Please select a browser for the WebApp." +#~ msgstr "Selecteer een browser voor de WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 +#~ msgid "Main Menu" +#~ msgstr "Hoofdmenu" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 +#~ msgid "Refresh" +#~ msgstr "Vernieuwen" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 +#~ msgid "Show Welcome Screen" +#~ msgstr "Toon Welkomstscherm" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 +#~ msgid "Add" +#~ msgstr "Toevoegen" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 +#~ msgid "No WebApps Found" +#~ msgstr "Geen WebApps gevonden" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 +#, python-brace-format +#~ msgid "Browser changed to {0}" +#~ msgstr "Browser gewijzigd naar {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to delete {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Browser: {2}" +#~ msgstr "" +#~ "Weet u zeker dat u {0} wilt verwijderen?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Browser: {2}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 +#~ msgid "REMOVE ALL" +#~ msgstr "VERWIJDER ALLES" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to remove all your WebApps? This action cannot be undone.\n" +#~ "\n" +#~ "Type \"{0}\" to confirm." +#~ msgstr "" +#~ "Weet u zeker dat u al uw WebApps wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt.\n" +#~ "\n" +#~ "Typ \"{0}\" om te bevestigen." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 +#, python-brace-format +#~ msgid "Icon {0} of {1}" +#~ msgstr "Pictogram {0} van {1}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#~ msgid "There are no WebApps to export." +#~ msgstr "Er zijn geen WebApps om te exporteren." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 +#~ msgid "The selected file does not exist." +#~ msgstr "Het geselecteerde bestand bestaat niet." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 +#~ msgid "The selected file is not a valid ZIP archive." +#~ msgstr "Het geselecteerde bestand is geen geldig ZIP-archief." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 +#~ msgid "Error importing WebApps" +#~ msgstr "Fout bij het importeren van WebApps" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 +#~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" +#~ msgstr "{} WebApps succesvol geïmporteerd ({} duplicaten overgeslagen)" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 +#~ msgid "Imported {} WebApps successfully" +#~ msgstr "Geïmporteerde {} WebApps succesvol" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 +#~ msgid "No" +#~ msgstr "Geen" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 +#~ msgid "Yes" +#~ msgstr "Ja" diff --git a/biglinux-webapps/locale/no.json b/biglinux-webapps/locale/no.json deleted file mode 100644 index 4a8a5e78..00000000 --- a/biglinux-webapps/locale/no.json +++ /dev/null @@ -1 +0,0 @@ -{"no":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Malteksler"]},"Choose a Template":{"*":["Velg en mal"]},"Search templates...":{"*":["Søk maler..."]},"Search templates":{"*":["Søkemaler"]},"Search Results":{"*":["Søkeresultater"]},"No templates found":{"*":["Ingen maler funnet"]},"Browser: {0}":{"*":["Nettleser: {0}"]},"Edit WebApp":{"*":["Rediger WebApp"]},"Edit {0}":{"*":["Rediger {0}"]},"Delete WebApp":{"*":["Slett WebApp"]},"Delete {0}":{"*":["Slett {0}"]},"Welcome to WebApps Manager":{"*":["Velkommen til WebApps Manager"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Hva er WebApps?\n\nWebApps er nettapplikasjoner som kjører i et dedikert nettleservindu, og gir en mer app-lignende opplevelse for dine favorittnettsteder.\n\nFordeler med å bruke WebApps:\n\n• Fokus: Arbeid uten distraksjoner fra andre nettleserfaner\n• Desktop-integrasjon: Rask tilgang fra applikasjonsmenyen din\n• Isolerte profiler: Valgfritt kan hver webapp ha sine egne informasjonskapsler og innstillinger\n"]},"Don't show this again":{"*":["Ikke vis dette igjen"]},"Let's Start":{"*":["La oss begynne"]},"Select Browser":{"*":["Velg nettleser"]},"Cancel":{"*":["Avbryt"]},"Select":{"*":["Velg"]},"System Default":{"*":["Systemstandard"]},"Default":{"*":["Standard"]},"Please select a browser.":{"*":["Vennligst velg en nettleser."]},"Error":{"*":["Feil"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Legg til WebApp"]},"Choose from templates":{"*":["Velg fra maler"]},"URL":{"*":["URL"]},"Detect":{"*":["Oppdag"]},"Detect name and icon from website":{"*":["Oppdag navn og ikon fra nettsted."]},"Name":{"*":["Navn"]},"App Icon":{"*":["App-ikon"]},"Select icon for the WebApp":{"*":["Velg ikon for WebApp"]},"Available Icons":{"*":["Tilgjengelige ikoner"]},"Category":{"*":["Kategori"]},"Application Mode":{"*":["Applikasjonsmodus"]},"Opens as a native window without browser interface":{"*":["Åpnes som et native vindu uten nettlesergrensesnitt"]},"Browser":{"*":["Nettleser"]},"Profile Settings":{"*":["Profilinnstillinger"]},"Configure a separate browser profile for this webapp":{"*":["Konfigurer en egen nettleserprofil for denne nettappen"]},"Use separate profile":{"*":["Bruk separat profil"]},"Allows independent cookies and sessions":{"*":["Tillater uavhengige informasjonskapsler og økter"]},"Profile Name":{"*":["Profilnavn"]},"Save":{"*":["Lagre"]},"Loading...":{"*":["Laster..."]},"Detecting website information, please wait":{"*":["Oppdager nettstedinformasjon, vennligst vent"]},"Please enter a URL first.":{"*":["Vennligst skriv inn en URL først."]},"Please enter a name for the WebApp.":{"*":["Vennligst skriv inn et navn for WebAppen."]},"Please enter a URL for the WebApp.":{"*":["Vennligst skriv inn en URL for WebAppen."]},"Please select a browser for the WebApp.":{"*":["Vennligst velg en nettleser for WebApp."]},"WebApps Manager":{"*":["WebApps Behandler"]},"Search WebApps":{"*":["Søk WebApps"]},"Main Menu":{"*":["Hovedmeny"]},"Refresh":{"*":["Oppdater"]},"Export WebApps":{"*":["Eksporter Webapper"]},"Import WebApps":{"*":["Importer WebApps"]},"Browse Applications Folder":{"*":["Bla gjennom applikasjonsmappen"]},"Browse Profiles Folder":{"*":["Bla gjennom profiler-mappen"]},"Show Welcome Screen":{"*":["Vis visningsskjerm"]},"Remove All WebApps":{"*":["Fjern alle nettapper"]},"About":{"*":["Om"]},"Add":{"*":["Legg til"]},"No WebApps Found":{"*":["Ingen WebApps funnet"]},"Add a new webapp to get started":{"*":["Legg til en ny nettapp for å komme i gang"]},"WebApp created successfully":{"*":["WebApp opprettet vellykket"]},"WebApp updated successfully":{"*":["WebApp oppdatert med suksess"]},"Browser changed to {0}":{"*":["Nettleseren ble endret til {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Er du sikker på at du vil slette {0}?\n\nURL: {1}\nNettleser: {2}"]},"Also delete configuration folder":{"*":["Slett også konfigurasjonsmappen"]},"Delete":{"*":["Slett"]},"WebApp deleted successfully":{"*":["WebApp slettet med suksess"]},"REMOVE ALL":{"*":["FJERN ALT"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Er du sikker på at du vil fjerne alle WebAppene dine? Denne handlingen kan ikke angres.\n\nSkriv \"{0}\" for å bekrefte."]},"Remove All":{"*":["Fjern alt"]},"All WebApps have been removed":{"*":["Alle Webapper har blitt fjernet."]},"Failed to remove all WebApps":{"*":["Kunne ikke fjerne alle WebApps"]},"Icon {0} of {1}":{"*":["Ikon {0} av {1}"]},"WebApps exported successfully":{"*":["WebApps eksportert med suksess"]},"No WebApps":{"*":["Ingen WebApps"]},"There are no WebApps to export.":{"*":["Det finnes ingen WebApps å eksportere."]},"The selected file does not exist.":{"*":["Den valgte filen finnes ikke."]},"The selected file is not a valid ZIP archive.":{"*":["Den valgte filen er ikke et gyldig ZIP-arkiv."]},"Error importing WebApps":{"*":["Feil ved import av WebApps"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["Importerte {} WebApps vellykket ({} duplikater hoppet over)"]},"Imported {} WebApps successfully":{"*":["Importerte {} WebApps med suksess"]},"No":{"*":["Nei"]},"Yes":{"*":["Ja"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/no.po b/biglinux-webapps/locale/no.po index ccd2fbc0..9632da06 100644 --- a/biglinux-webapps/locale/no.po +++ b/biglinux-webapps/locale/no.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the biglinux-webapps package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" "Project-Id-Version: biglinux-webapps\n" @@ -14,442 +14,749 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Malteksler" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Velg en mal" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Søk maler..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 -msgid "Search templates" -msgstr "Søkemaler" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Søkeresultater" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Ingen maler funnet" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 -#, python-brace-format -msgid "Browser: {0}" -msgstr "Nettleser: {0}" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Rediger WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 -#, python-brace-format -msgid "Edit {0}" -msgstr "Rediger {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Slett WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 -#, python-brace-format -msgid "Delete {0}" -msgstr "Slett {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:20 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Velkommen til WebApps Manager" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 -msgid "" -"What are WebApps?\n" -"\n" -"WebApps are web applications that run in a dedicated browser window, providing a more app-like " -"experience for your favorite websites.\n" -"\n" -"Benefits of using WebApps:\n" -"\n" -"• Focus: Work without the distractions of other browser tabs\n" -"• Desktop Integration: Quick access from your application menu\n" -"• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" -msgstr "" -"Hva er WebApps?\n" -"\n" -"WebApps er nettapplikasjoner som kjører i et dedikert nettleservindu, og gir en mer app-lignende " -"opplevelse for dine favorittnettsteder.\n" -"\n" -"Fordeler med å bruke WebApps:\n" -"\n" -"• Fokus: Arbeid uten distraksjoner fra andre nettleserfaner\n" -"• Desktop-integrasjon: Rask tilgang fra applikasjonsmenyen din\n" -"• Isolerte profiler: Valgfritt kan hver webapp ha sine egne informasjonskapsler og " -"innstillinger\n" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Ikke vis dette igjen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "La oss begynne" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Velg nettleser" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:99 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:225 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:291 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Avbryt" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Velg" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 -msgid "System Default" -msgstr "Systemstandard" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 -msgid "Default" -msgstr "Standard" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 -msgid "Please select a browser." -msgstr "Vennligst velg en nettleser." -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 -msgid "Error" -msgstr "Feil" -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "OK" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Legg til WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 -msgid "Choose from templates" -msgstr "Velg fra maler" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 -msgid "Detect" -msgstr "Oppdag" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Oppdag navn og ikon fra nettsted." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Navn" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 -msgid "App Icon" -msgstr "App-ikon" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 -msgid "Select icon for the WebApp" -msgstr "Velg ikon for WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 -msgid "Available Icons" -msgstr "Tilgjengelige ikoner" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Kategori" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 -msgid "Application Mode" -msgstr "Applikasjonsmodus" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Åpnes som et native vindu uten nettlesergrensesnitt" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 +#. -- Browser row (hidden in app mode) -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Nettleser" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 -msgid "Profile Settings" -msgstr "Profilinnstillinger" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 -msgid "Configure a separate browser profile for this webapp" -msgstr "Konfigurer en egen nettleserprofil for denne nettappen" -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -msgid "Use separate profile" -msgstr "Bruk separat profil" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Tillater uavhengige informasjonskapsler og økter" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Profilnavn" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Lagre" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Laster..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 -msgid "Detecting website information, please wait" -msgstr "Oppdager nettstedinformasjon, vennligst vent" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 -msgid "Please enter a URL first." -msgstr "Vennligst skriv inn en URL først." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 -msgid "Please enter a name for the WebApp." -msgstr "Vennligst skriv inn et navn for WebAppen." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 -msgid "Please enter a URL for the WebApp." -msgstr "Vennligst skriv inn en URL for WebAppen." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 -msgid "Please select a browser for the WebApp." -msgstr "Vennligst velg en nettleser for WebApp." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "WebApps Behandler" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Søk WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 -msgid "Main Menu" -msgstr "Hovedmeny" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 -msgid "Refresh" -msgstr "Oppdater" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Eksporter Webapper" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Importer WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Bla gjennom applikasjonsmappen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Bla gjennom profiler-mappen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 -msgid "Show Welcome Screen" -msgstr "Vis visningsskjerm" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Fjern alle nettapper" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "Om" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 -msgid "Add" -msgstr "Legg til" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 -msgid "No WebApps Found" -msgstr "Ingen WebApps funnet" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Legg til en ny nettapp for å komme i gang" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "WebApp opprettet vellykket" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "WebApp oppdatert med suksess" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 -#, python-brace-format -msgid "Browser changed to {0}" -msgstr "Nettleseren ble endret til {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 -#, python-brace-format -msgid "" -"Are you sure you want to delete {0}?\n" -"\n" -"URL: {1}\n" -"Browser: {2}" -msgstr "" -"Er du sikker på at du vil slette {0}?\n" -"\n" -"URL: {1}\n" -"Nettleser: {2}" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Slett også konfigurasjonsmappen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Slett" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "WebApp slettet med suksess" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 -msgid "REMOVE ALL" -msgstr "FJERN ALT" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 -#, python-brace-format -msgid "" -"Are you sure you want to remove all your WebApps? This action cannot be undone.\n" -"\n" -"Type \"{0}\" to confirm." -msgstr "" -"Er du sikker på at du vil fjerne alle WebAppene dine? Denne handlingen kan ikke angres.\n" -"\n" -"Skriv \"{0}\" for å bekrefte." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Fjern alt" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Alle Webapper har blitt fjernet." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Kunne ikke fjerne alle WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 -#, python-brace-format -msgid "Icon {0} of {1}" -msgstr "Ikon {0} av {1}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebApps eksportert med suksess" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Ingen WebApps" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 +msgid "Change browser" +msgstr "Bytt nettleser" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 +msgid "Edit" +msgstr "Rediger" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 +msgid "New WebApp" +msgstr "Ny WebApp" + +#. -- Icon row -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 +msgid "Icon" +msgstr "Ikon" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 +msgid "App Mode" +msgstr "App-modus" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 +msgid "Separate Profile" +msgstr "Separat profil" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 +msgid "Select Icon" +msgstr "Velg ikon" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 +msgid "Images" +msgstr "Bilder" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 +msgid "ZIP files" +msgstr "ZIP-filer" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 +#, rust-format +msgid "Imported {imported}, skipped {dups} duplicates" +msgstr "Importert {imported}, hoppet over {dups} duplikater" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 +msgid "Import failed" +msgstr "Import mislyktes" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 +msgid "Export failed" +msgstr "Eksport mislyktes" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 +msgid "" +"This will delete all webapps and their desktop entries. This cannot be " +"undone." +msgstr "" +"Dette vil slette alle webapper og deres skrivebordsoppføringer. Dette kan " +"ikke angres." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 +msgid "Browser changed" +msgstr "Nettleser endret" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 +msgid "What are WebApps?" +msgstr "Hva er WebApps?" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 +msgid "" +"WebApps are web applications that run in a dedicated browser window, " +"providing a more app-like experience for your favorite websites." +msgstr "" +"WebApps er nettapplikasjoner som kjører i et dedikert nettleservindu, og gir" +" en mer app-lignende opplevelse for dine favorittnettsteder." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 +msgid "Benefits of using WebApps:" +msgstr "Fordeler med å bruke WebApps:" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Focus" +msgstr "Fokus" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Work without the distractions of other browser tabs" +msgstr "Arbeid uten forstyrrelser fra andre nettleserfaner" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Desktop Integration" +msgstr "Integrasjon på skrivebordet" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Quick access from your application menu" +msgstr "Rask tilgang fra applikasjonsmenyen din" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Isolated Profiles" +msgstr "Isolerte profiler" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Each webapp can have its own cookies and settings" +msgstr "Hver webapp kan ha sine egne informasjonskapsler og innstillinger" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 +msgid "Back" +msgstr "Tilbake" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 +msgid "Forward" +msgstr "Fremover" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 +msgid "Reload" +msgstr "Last inn på nytt" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 +msgid "Fullscreen" +msgstr "Fullskjerm" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 +msgid "Enter URL…" +msgstr "Skriv inn URL…" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 +msgid "Zoom In" +msgstr "Zoom inn" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 +msgid "Zoom Out" +msgstr "Zoom ut" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 +msgid "Reset Zoom" +msgstr "Tilbakestill zoom" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 +msgid "Developer Tools" +msgstr "Utviklerverktøy" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 +msgid "Menu" +msgstr "Meny" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 +msgid "Open Link in Browser" +msgstr "Åpne lenke i nettleser" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 +msgid "Download Complete" +msgstr "Nedlasting fullført" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 +msgid "Save File" +msgstr "Lagre fil" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 +#~ msgid "Search templates" +#~ msgstr "Søkemaler" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 +#, python-brace-format +#~ msgid "Browser: {0}" +#~ msgstr "Nettleser: {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 +#, python-brace-format +#~ msgid "Edit {0}" +#~ msgstr "Rediger {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 +#, python-brace-format +#~ msgid "Delete {0}" +#~ msgstr "Slett {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 +#~ msgid "" +#~ "What are WebApps?\n" +#~ "\n" +#~ "WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n" +#~ "\n" +#~ "Benefits of using WebApps:\n" +#~ "\n" +#~ "• Focus: Work without the distractions of other browser tabs\n" +#~ "• Desktop Integration: Quick access from your application menu\n" +#~ "• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" +#~ msgstr "" +#~ "Hva er WebApps?\n" +#~ "\n" +#~ "WebApps er nettapplikasjoner som kjører i et dedikert nettleservindu, og gir en mer app-lignende opplevelse for dine favorittnettsteder.\n" +#~ "\n" +#~ "Fordeler med å bruke WebApps:\n" +#~ "\n" +#~ "• Fokus: Arbeid uten distraksjoner fra andre nettleserfaner\n" +#~ "• Desktop-integrasjon: Rask tilgang fra applikasjonsmenyen din\n" +#~ "• Isolerte profiler: Valgfritt kan hver webapp ha sine egne informasjonskapsler og innstillinger\n" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 +#~ msgid "System Default" +#~ msgstr "Systemstandard" + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 -msgid "There are no WebApps to export." -msgstr "Det finnes ingen WebApps å eksportere." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 -msgid "The selected file does not exist." -msgstr "Den valgte filen finnes ikke." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 -msgid "The selected file is not a valid ZIP archive." -msgstr "Den valgte filen er ikke et gyldig ZIP-arkiv." +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 -msgid "Error importing WebApps" -msgstr "Feil ved import av WebApps" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 +#~ msgid "Default" +#~ msgstr "Standard" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 +#~ msgid "Please select a browser." +#~ msgstr "Vennligst velg en nettleser." + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 -msgid "Imported {} WebApps successfully ({} duplicates skipped)" -msgstr "Importerte {} WebApps vellykket ({} duplikater hoppet over)" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 +#~ msgid "Error" +#~ msgstr "Feil" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 +#~ msgid "Choose from templates" +#~ msgstr "Velg fra maler" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 +#~ msgid "Detect" +#~ msgstr "Oppdag" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 +#~ msgid "App Icon" +#~ msgstr "App-ikon" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 +#~ msgid "Select icon for the WebApp" +#~ msgstr "Velg ikon for WebApp" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 +#~ msgid "Available Icons" +#~ msgstr "Tilgjengelige ikoner" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 +#~ msgid "Application Mode" +#~ msgstr "Applikasjonsmodus" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 +#~ msgid "Profile Settings" +#~ msgstr "Profilinnstillinger" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 +#~ msgid "Configure a separate browser profile for this webapp" +#~ msgstr "Konfigurer en egen nettleserprofil for denne nettappen" + +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 -msgid "Imported {} WebApps successfully" -msgstr "Importerte {} WebApps med suksess" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 -msgid "No" -msgstr "Nei" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 -msgid "Yes" -msgstr "Ja" +#~ msgid "Use separate profile" +#~ msgstr "Bruk separat profil" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 +#~ msgid "Detecting website information, please wait" +#~ msgstr "Oppdager nettstedinformasjon, vennligst vent" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 +#~ msgid "Please enter a URL first." +#~ msgstr "Vennligst skriv inn en URL først." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 +#~ msgid "Please enter a name for the WebApp." +#~ msgstr "Vennligst skriv inn et navn for WebAppen." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 +#~ msgid "Please enter a URL for the WebApp." +#~ msgstr "Vennligst skriv inn en URL for WebAppen." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 +#~ msgid "Please select a browser for the WebApp." +#~ msgstr "Vennligst velg en nettleser for WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 +#~ msgid "Main Menu" +#~ msgstr "Hovedmeny" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 +#~ msgid "Refresh" +#~ msgstr "Oppdater" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 +#~ msgid "Show Welcome Screen" +#~ msgstr "Vis visningsskjerm" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 +#~ msgid "Add" +#~ msgstr "Legg til" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 +#~ msgid "No WebApps Found" +#~ msgstr "Ingen WebApps funnet" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 +#, python-brace-format +#~ msgid "Browser changed to {0}" +#~ msgstr "Nettleseren ble endret til {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to delete {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Browser: {2}" +#~ msgstr "" +#~ "Er du sikker på at du vil slette {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Nettleser: {2}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 +#~ msgid "REMOVE ALL" +#~ msgstr "FJERN ALT" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to remove all your WebApps? This action cannot be undone.\n" +#~ "\n" +#~ "Type \"{0}\" to confirm." +#~ msgstr "" +#~ "Er du sikker på at du vil fjerne alle WebAppene dine? Denne handlingen kan ikke angres.\n" +#~ "\n" +#~ "Skriv \"{0}\" for å bekrefte." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 +#, python-brace-format +#~ msgid "Icon {0} of {1}" +#~ msgstr "Ikon {0} av {1}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#~ msgid "There are no WebApps to export." +#~ msgstr "Det finnes ingen WebApps å eksportere." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 +#~ msgid "The selected file does not exist." +#~ msgstr "Den valgte filen finnes ikke." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 +#~ msgid "The selected file is not a valid ZIP archive." +#~ msgstr "Den valgte filen er ikke et gyldig ZIP-arkiv." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 +#~ msgid "Error importing WebApps" +#~ msgstr "Feil ved import av WebApps" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 +#~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" +#~ msgstr "Importerte {} WebApps vellykket ({} duplikater hoppet over)" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 +#~ msgid "Imported {} WebApps successfully" +#~ msgstr "Importerte {} WebApps med suksess" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 +#~ msgid "No" +#~ msgstr "Nei" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 +#~ msgid "Yes" +#~ msgstr "Ja" diff --git a/biglinux-webapps/locale/pl.json b/biglinux-webapps/locale/pl.json deleted file mode 100644 index 9d3a897e..00000000 --- a/biglinux-webapps/locale/pl.json +++ /dev/null @@ -1 +0,0 @@ -{"pl":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Szablony"]},"Choose a Template":{"*":["Wybierz szablon"]},"Search templates...":{"*":["Szukaj szablonów..."]},"Search templates":{"*":["Wyszukaj szablony"]},"Search Results":{"*":["Wyniki wyszukiwania"]},"No templates found":{"*":["Nie znaleziono szablonów."]},"Browser: {0}":{"*":["Przeglądarka: {0}"]},"Edit WebApp":{"*":["Edytuj aplikację internetową"]},"Edit {0}":{"*":["Edytuj {0}"]},"Delete WebApp":{"*":["Usuń aplikację internetową"]},"Delete {0}":{"*":["Usuń {0}"]},"Welcome to WebApps Manager":{"*":["Witamy w Menedżerze Aplikacji Webowych"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Czym są WebAppsy?\n\nWebAppsy to aplikacje internetowe, które działają w dedykowanym oknie przeglądarki, zapewniając bardziej aplikacyjne doświadczenie dla ulubionych stron internetowych.\n\nZalety korzystania z WebAppów:\n\n• Skupienie: Pracuj bez rozpraszania przez inne karty przeglądarki\n• Integracja z pulpitem: Szybki dostęp z menu aplikacji\n• Izolowane profile: Opcjonalnie, każda webapp może mieć własne pliki cookie i ustawienia\n"]},"Don't show this again":{"*":["Nie pokazuj tego ponownie"]},"Let's Start":{"*":["Zacznijmy"]},"Select Browser":{"*":["Wybierz przeglądarkę"]},"Cancel":{"*":["Anuluj"]},"Select":{"*":["Wybierz"]},"System Default":{"*":["Domyślne ustawienia systemu"]},"Default":{"*":["Domyślny"]},"Please select a browser.":{"*":["Proszę wybrać przeglądarkę."]},"Error":{"*":["Błąd"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Dodaj WebApp"]},"Choose from templates":{"*":["Wybierz z szablonów"]},"URL":{"*":["URL"]},"Detect":{"*":["Wykryj"]},"Detect name and icon from website":{"*":["Wykryj nazwę i ikonę ze strony internetowej."]},"Name":{"*":["Nazwa"]},"App Icon":{"*":["Ikona aplikacji"]},"Select icon for the WebApp":{"*":["Wybierz ikonę dla aplikacji internetowej"]},"Available Icons":{"*":["Dostępne ikony"]},"Category":{"*":["Kategoria"]},"Application Mode":{"*":["Tryb aplikacji"]},"Opens as a native window without browser interface":{"*":["Otwiera się jako natywne okno bez interfejsu przeglądarki."]},"Browser":{"*":["Przeglądarka"]},"Profile Settings":{"*":["Ustawienia profilu"]},"Configure a separate browser profile for this webapp":{"*":["Skonfiguruj osobny profil przeglądarki dla tej aplikacji internetowej."]},"Use separate profile":{"*":["Użyj oddzielnego profilu"]},"Allows independent cookies and sessions":{"*":["Zezwala na niezależne pliki cookie i sesje"]},"Profile Name":{"*":["Nazwa profilu"]},"Save":{"*":["Zapisz"]},"Loading...":{"*":["Ładowanie..."]},"Detecting website information, please wait":{"*":["Wykrywanie informacji o stronie internetowej, proszę czekać"]},"Please enter a URL first.":{"*":["Proszę najpierw wprowadzić adres URL."]},"Please enter a name for the WebApp.":{"*":["Proszę wpisać nazwę dla aplikacji internetowej."]},"Please enter a URL for the WebApp.":{"*":["Proszę wprowadzić adres URL dla aplikacji internetowej."]},"Please select a browser for the WebApp.":{"*":["Proszę wybrać przeglądarkę dla aplikacji internetowej."]},"WebApps Manager":{"*":["Menadżer Aplikacji Webowych"]},"Search WebApps":{"*":["Szukaj aplikacji internetowych"]},"Main Menu":{"*":["Główne menu"]},"Refresh":{"*":["Odśwież"]},"Export WebApps":{"*":["Eksportuj Aplikacje Webowe"]},"Import WebApps":{"*":["Importuj aplikacje internetowe"]},"Browse Applications Folder":{"*":["Przeglądaj folder aplikacji"]},"Browse Profiles Folder":{"*":["Przeglądaj folder profili"]},"Show Welcome Screen":{"*":["Pokaż ekran powitalny"]},"Remove All WebApps":{"*":["Usuń wszystkie aplikacje internetowe"]},"About":{"*":["O programie"]},"Add":{"*":["Dodaj"]},"No WebApps Found":{"*":["Nie znaleziono aplikacji internetowych"]},"Add a new webapp to get started":{"*":["Dodaj nową aplikację internetową, aby rozpocząć."]},"WebApp created successfully":{"*":["Aplikacja internetowa została pomyślnie utworzona."]},"WebApp updated successfully":{"*":["WebApp zaktualizowany pomyślnie"]},"Browser changed to {0}":{"*":["Przeglądarka zmieniona na {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Czy na pewno chcesz usunąć {0}?\n\nURL: {1}\nPrzeglądarka: {2}"]},"Also delete configuration folder":{"*":["Również usuń folder konfiguracyjny."]},"Delete":{"*":["Usuń"]},"WebApp deleted successfully":{"*":["WebApp została pomyślnie usunięta."]},"REMOVE ALL":{"*":["USUŃ WSZYSTKO"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Czy na pewno chcesz usunąć wszystkie swoje aplikacje internetowe? Tej akcji nie można cofnąć.\n\nWpisz \"{0}\", aby potwierdzić."]},"Remove All":{"*":["Usuń wszystko"]},"All WebApps have been removed":{"*":["Wszystkie aplikacje internetowe zostały usunięte."]},"Failed to remove all WebApps":{"*":["Nie udało się usunąć wszystkich aplikacji internetowych."]},"Icon {0} of {1}":{"*":["Ikona {0} z {1}"]},"WebApps exported successfully":{"*":["WebApps zostały pomyślnie wyeksportowane."]},"No WebApps":{"*":["Brak aplikacji internetowych"]},"There are no WebApps to export.":{"*":["Nie ma aplikacji internetowych do wyeksportowania."]},"The selected file does not exist.":{"*":["Wybrany plik nie istnieje."]},"The selected file is not a valid ZIP archive.":{"*":["Wybrany plik nie jest prawidłowym archiwum ZIP."]},"Error importing WebApps":{"*":["Błąd importowania aplikacji internetowych"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["Zaimportowano {} aplikacji internetowych pomyślnie ({} duplikatów pominięto)"]},"Imported {} WebApps successfully":{"*":["Zaimportowano {} aplikacje internetowe pomyślnie."]},"No":{"*":["Nie"]},"Yes":{"*":["Tak"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/pl.po b/biglinux-webapps/locale/pl.po index d9d0ca56..11a42341 100644 --- a/biglinux-webapps/locale/pl.po +++ b/biglinux-webapps/locale/pl.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the biglinux-webapps package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" "Project-Id-Version: biglinux-webapps\n" @@ -14,441 +14,752 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Szablony" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Wybierz szablon" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Szukaj szablonów..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 -msgid "Search templates" -msgstr "Wyszukaj szablony" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Wyniki wyszukiwania" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Nie znaleziono szablonów." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 -#, python-brace-format -msgid "Browser: {0}" -msgstr "Przeglądarka: {0}" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Edytuj aplikację internetową" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 -#, python-brace-format -msgid "Edit {0}" -msgstr "Edytuj {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Usuń aplikację internetową" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 -#, python-brace-format -msgid "Delete {0}" -msgstr "Usuń {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:20 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Witamy w Menedżerze Aplikacji Webowych" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 -msgid "" -"What are WebApps?\n" -"\n" -"WebApps are web applications that run in a dedicated browser window, providing a more app-like " -"experience for your favorite websites.\n" -"\n" -"Benefits of using WebApps:\n" -"\n" -"• Focus: Work without the distractions of other browser tabs\n" -"• Desktop Integration: Quick access from your application menu\n" -"• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" -msgstr "" -"Czym są WebAppsy?\n" -"\n" -"WebAppsy to aplikacje internetowe, które działają w dedykowanym oknie przeglądarki, zapewniając " -"bardziej aplikacyjne doświadczenie dla ulubionych stron internetowych.\n" -"\n" -"Zalety korzystania z WebAppów:\n" -"\n" -"• Skupienie: Pracuj bez rozpraszania przez inne karty przeglądarki\n" -"• Integracja z pulpitem: Szybki dostęp z menu aplikacji\n" -"• Izolowane profile: Opcjonalnie, każda webapp może mieć własne pliki cookie i ustawienia\n" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Nie pokazuj tego ponownie" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Zacznijmy" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Wybierz przeglądarkę" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:99 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:225 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:291 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Anuluj" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Wybierz" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 -msgid "System Default" -msgstr "Domyślne ustawienia systemu" -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 -msgid "Default" -msgstr "Domyślny" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 -msgid "Please select a browser." -msgstr "Proszę wybrać przeglądarkę." -# # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 -msgid "Error" -msgstr "Błąd" -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "OK" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Dodaj WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 -msgid "Choose from templates" -msgstr "Wybierz z szablonów" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 -msgid "Detect" -msgstr "Wykryj" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Wykryj nazwę i ikonę ze strony internetowej." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Nazwa" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 -msgid "App Icon" -msgstr "Ikona aplikacji" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 -msgid "Select icon for the WebApp" -msgstr "Wybierz ikonę dla aplikacji internetowej" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 -msgid "Available Icons" -msgstr "Dostępne ikony" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Kategoria" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 -msgid "Application Mode" -msgstr "Tryb aplikacji" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Otwiera się jako natywne okno bez interfejsu przeglądarki." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 +#. -- Browser row (hidden in app mode) -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Przeglądarka" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 -msgid "Profile Settings" -msgstr "Ustawienia profilu" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 -msgid "Configure a separate browser profile for this webapp" -msgstr "Skonfiguruj osobny profil przeglądarki dla tej aplikacji internetowej." -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -msgid "Use separate profile" -msgstr "Użyj oddzielnego profilu" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Zezwala na niezależne pliki cookie i sesje" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Nazwa profilu" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Zapisz" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Ładowanie..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 -msgid "Detecting website information, please wait" -msgstr "Wykrywanie informacji o stronie internetowej, proszę czekać" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 -msgid "Please enter a URL first." -msgstr "Proszę najpierw wprowadzić adres URL." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 -msgid "Please enter a name for the WebApp." -msgstr "Proszę wpisać nazwę dla aplikacji internetowej." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 -msgid "Please enter a URL for the WebApp." -msgstr "Proszę wprowadzić adres URL dla aplikacji internetowej." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 -msgid "Please select a browser for the WebApp." -msgstr "Proszę wybrać przeglądarkę dla aplikacji internetowej." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "Menadżer Aplikacji Webowych" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Szukaj aplikacji internetowych" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 -msgid "Main Menu" -msgstr "Główne menu" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 -msgid "Refresh" -msgstr "Odśwież" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Eksportuj Aplikacje Webowe" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Importuj aplikacje internetowe" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Przeglądaj folder aplikacji" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Przeglądaj folder profili" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 -msgid "Show Welcome Screen" -msgstr "Pokaż ekran powitalny" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Usuń wszystkie aplikacje internetowe" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "O programie" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 -msgid "Add" -msgstr "Dodaj" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 -msgid "No WebApps Found" -msgstr "Nie znaleziono aplikacji internetowych" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Dodaj nową aplikację internetową, aby rozpocząć." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "Aplikacja internetowa została pomyślnie utworzona." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "WebApp zaktualizowany pomyślnie" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 -#, python-brace-format -msgid "Browser changed to {0}" -msgstr "Przeglądarka zmieniona na {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 -#, python-brace-format -msgid "" -"Are you sure you want to delete {0}?\n" -"\n" -"URL: {1}\n" -"Browser: {2}" -msgstr "" -"Czy na pewno chcesz usunąć {0}?\n" -"\n" -"URL: {1}\n" -"Przeglądarka: {2}" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Również usuń folder konfiguracyjny." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Usuń" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "WebApp została pomyślnie usunięta." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 -msgid "REMOVE ALL" -msgstr "USUŃ WSZYSTKO" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 -#, python-brace-format -msgid "" -"Are you sure you want to remove all your WebApps? This action cannot be undone.\n" -"\n" -"Type \"{0}\" to confirm." -msgstr "" -"Czy na pewno chcesz usunąć wszystkie swoje aplikacje internetowe? Tej akcji nie można cofnąć.\n" -"\n" -"Wpisz \"{0}\", aby potwierdzić." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Usuń wszystko" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Wszystkie aplikacje internetowe zostały usunięte." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Nie udało się usunąć wszystkich aplikacji internetowych." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 -#, python-brace-format -msgid "Icon {0} of {1}" -msgstr "Ikona {0} z {1}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebApps zostały pomyślnie wyeksportowane." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Brak aplikacji internetowych" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 +msgid "Change browser" +msgstr "Zmień przeglądarkę" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 +msgid "Edit" +msgstr "Edytuj" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 +msgid "New WebApp" +msgstr "Nowa WebApp" + +#. -- Icon row -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 +msgid "Icon" +msgstr "Ikona" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 +msgid "App Mode" +msgstr "Tryb aplikacji" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 +msgid "Separate Profile" +msgstr "Oddzielny profil" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 +msgid "Select Icon" +msgstr "Wybierz ikonę" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 +msgid "Images" +msgstr "Obrazy" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 +msgid "ZIP files" +msgstr "Pliki ZIP" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 +#, rust-format +msgid "Imported {imported}, skipped {dups} duplicates" +msgstr "Zaimportowano {imported}, pominięto {dups} duplikaty" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 +msgid "Import failed" +msgstr "Import nie powiódł się" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 +msgid "Export failed" +msgstr "Eksport nie powiódł się" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 +msgid "" +"This will delete all webapps and their desktop entries. This cannot be " +"undone." +msgstr "" +"To usunie wszystkie webappsy i ich wpisy na pulpicie. Operacji nie można " +"cofnąć." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 +msgid "Browser changed" +msgstr "Przeglądarka zmieniona" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 +msgid "What are WebApps?" +msgstr "Czym są WebApps?" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 +msgid "" +"WebApps are web applications that run in a dedicated browser window, " +"providing a more app-like experience for your favorite websites." +msgstr "" +"WebApps to aplikacje internetowe działające w dedykowanym oknie " +"przeglądarki, zapewniające bardziej aplikacyjne doświadczenie dla Twoich " +"ulubionych stron internetowych." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 +msgid "Benefits of using WebApps:" +msgstr "Korzyści z korzystania z WebApps:" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Focus" +msgstr "Skupienie" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Work without the distractions of other browser tabs" +msgstr "Pracuj bez rozpraszania przez inne karty przeglądarki" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Desktop Integration" +msgstr "Integracja z pulpitem" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Quick access from your application menu" +msgstr "Szybki dostęp z menu aplikacji" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Isolated Profiles" +msgstr "Izolowane profile" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Each webapp can have its own cookies and settings" +msgstr "Każdy webapp może mieć własne ciasteczka i ustawienia" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 +msgid "Back" +msgstr "Wstecz" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 +msgid "Forward" +msgstr "Dalej" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 +msgid "Reload" +msgstr "Odśwież" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 +msgid "Fullscreen" +msgstr "Pełny ekran" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 +msgid "Enter URL…" +msgstr "Wprowadź URL…" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 +msgid "Zoom In" +msgstr "Powiększ" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 +msgid "Zoom Out" +msgstr "Pomniejsz" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 +msgid "Reset Zoom" +msgstr "Resetuj powiększenie" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 +msgid "Developer Tools" +msgstr "Narzędzia deweloperskie" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 +msgid "Menu" +msgstr "Menu" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 +msgid "Open Link in Browser" +msgstr "Otwórz link w przeglądarce" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 +msgid "Download Complete" +msgstr "Pobieranie zakończone" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 +msgid "Save File" +msgstr "Zapisz plik" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 +#~ msgid "Search templates" +#~ msgstr "Wyszukaj szablony" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 +#, python-brace-format +#~ msgid "Browser: {0}" +#~ msgstr "Przeglądarka: {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 +#, python-brace-format +#~ msgid "Edit {0}" +#~ msgstr "Edytuj {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 +#, python-brace-format +#~ msgid "Delete {0}" +#~ msgstr "Usuń {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 +#~ msgid "" +#~ "What are WebApps?\n" +#~ "\n" +#~ "WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n" +#~ "\n" +#~ "Benefits of using WebApps:\n" +#~ "\n" +#~ "• Focus: Work without the distractions of other browser tabs\n" +#~ "• Desktop Integration: Quick access from your application menu\n" +#~ "• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" +#~ msgstr "" +#~ "Czym są WebAppsy?\n" +#~ "\n" +#~ "WebAppsy to aplikacje internetowe, które działają w dedykowanym oknie przeglądarki, zapewniając bardziej aplikacyjne doświadczenie dla ulubionych stron internetowych.\n" +#~ "\n" +#~ "Zalety korzystania z WebAppów:\n" +#~ "\n" +#~ "• Skupienie: Pracuj bez rozpraszania przez inne karty przeglądarki\n" +#~ "• Integracja z pulpitem: Szybki dostęp z menu aplikacji\n" +#~ "• Izolowane profile: Opcjonalnie, każda webapp może mieć własne pliki cookie i ustawienia\n" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 +#~ msgid "System Default" +#~ msgstr "Domyślne ustawienia systemu" + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 -msgid "There are no WebApps to export." -msgstr "Nie ma aplikacji internetowych do wyeksportowania." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 -msgid "The selected file does not exist." -msgstr "Wybrany plik nie istnieje." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 -msgid "The selected file is not a valid ZIP archive." -msgstr "Wybrany plik nie jest prawidłowym archiwum ZIP." +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 -msgid "Error importing WebApps" -msgstr "Błąd importowania aplikacji internetowych" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 +#~ msgid "Default" +#~ msgstr "Domyślny" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 +#~ msgid "Please select a browser." +#~ msgstr "Proszę wybrać przeglądarkę." + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 -msgid "Imported {} WebApps successfully ({} duplicates skipped)" -msgstr "Zaimportowano {} aplikacji internetowych pomyślnie ({} duplikatów pominięto)" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 +#~ msgid "Error" +#~ msgstr "Błąd" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 +#~ msgid "Choose from templates" +#~ msgstr "Wybierz z szablonów" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 +#~ msgid "Detect" +#~ msgstr "Wykryj" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 +#~ msgid "App Icon" +#~ msgstr "Ikona aplikacji" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 +#~ msgid "Select icon for the WebApp" +#~ msgstr "Wybierz ikonę dla aplikacji internetowej" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 +#~ msgid "Available Icons" +#~ msgstr "Dostępne ikony" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 +#~ msgid "Application Mode" +#~ msgstr "Tryb aplikacji" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 +#~ msgid "Profile Settings" +#~ msgstr "Ustawienia profilu" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 +#~ msgid "Configure a separate browser profile for this webapp" +#~ msgstr "" +#~ "Skonfiguruj osobny profil przeglądarki dla tej aplikacji internetowej." + +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 -msgid "Imported {} WebApps successfully" -msgstr "Zaimportowano {} aplikacje internetowe pomyślnie." +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 -msgid "No" -msgstr "Nie" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 -msgid "Yes" -msgstr "Tak" +#~ msgid "Use separate profile" +#~ msgstr "Użyj oddzielnego profilu" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 +#~ msgid "Detecting website information, please wait" +#~ msgstr "Wykrywanie informacji o stronie internetowej, proszę czekać" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 +#~ msgid "Please enter a URL first." +#~ msgstr "Proszę najpierw wprowadzić adres URL." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 +#~ msgid "Please enter a name for the WebApp." +#~ msgstr "Proszę wpisać nazwę dla aplikacji internetowej." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 +#~ msgid "Please enter a URL for the WebApp." +#~ msgstr "Proszę wprowadzić adres URL dla aplikacji internetowej." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 +#~ msgid "Please select a browser for the WebApp." +#~ msgstr "Proszę wybrać przeglądarkę dla aplikacji internetowej." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 +#~ msgid "Main Menu" +#~ msgstr "Główne menu" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 +#~ msgid "Refresh" +#~ msgstr "Odśwież" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 +#~ msgid "Show Welcome Screen" +#~ msgstr "Pokaż ekran powitalny" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 +#~ msgid "Add" +#~ msgstr "Dodaj" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 +#~ msgid "No WebApps Found" +#~ msgstr "Nie znaleziono aplikacji internetowych" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 +#, python-brace-format +#~ msgid "Browser changed to {0}" +#~ msgstr "Przeglądarka zmieniona na {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to delete {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Browser: {2}" +#~ msgstr "" +#~ "Czy na pewno chcesz usunąć {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Przeglądarka: {2}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 +#~ msgid "REMOVE ALL" +#~ msgstr "USUŃ WSZYSTKO" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to remove all your WebApps? This action cannot be undone.\n" +#~ "\n" +#~ "Type \"{0}\" to confirm." +#~ msgstr "" +#~ "Czy na pewno chcesz usunąć wszystkie swoje aplikacje internetowe? Tej akcji nie można cofnąć.\n" +#~ "\n" +#~ "Wpisz \"{0}\", aby potwierdzić." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 +#, python-brace-format +#~ msgid "Icon {0} of {1}" +#~ msgstr "Ikona {0} z {1}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#~ msgid "There are no WebApps to export." +#~ msgstr "Nie ma aplikacji internetowych do wyeksportowania." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 +#~ msgid "The selected file does not exist." +#~ msgstr "Wybrany plik nie istnieje." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 +#~ msgid "The selected file is not a valid ZIP archive." +#~ msgstr "Wybrany plik nie jest prawidłowym archiwum ZIP." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 +#~ msgid "Error importing WebApps" +#~ msgstr "Błąd importowania aplikacji internetowych" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 +#~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" +#~ msgstr "" +#~ "Zaimportowano {} aplikacji internetowych pomyślnie ({} duplikatów pominięto)" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 +#~ msgid "Imported {} WebApps successfully" +#~ msgstr "Zaimportowano {} aplikacje internetowe pomyślnie." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 +#~ msgid "No" +#~ msgstr "Nie" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 +#~ msgid "Yes" +#~ msgstr "Tak" diff --git a/biglinux-webapps/locale/pt-BR.po b/biglinux-webapps/locale/pt-BR.po new file mode 100644 index 00000000..b1d375d5 --- /dev/null +++ b/biglinux-webapps/locale/pt-BR.po @@ -0,0 +1,356 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: biglinux-webapps\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2026-04-15 15:05\n" +"PO-Revision-Date: 2026-04-15 15:05\n" +"Last-Translator: Translation Automator \n" +"Language-Team: Portuguese (Brazil) \n" +"Language: pt-BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 +msgid "Change browser" +msgstr "Alterar navegador" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 +msgid "Edit" +msgstr "Editar" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 +msgid "Delete" +msgstr "Excluir" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 +msgid "Select Browser" +msgstr "Selecionar navegador" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:99 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:225 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:291 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 +msgid "Cancel" +msgstr "Cancelar" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 +msgid "OK" +msgstr "OK" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 +msgid "Choose a Template" +msgstr "Escolher um modelo" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 +msgid "Search templates..." +msgstr "Buscar modelos..." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 +msgid "No templates found" +msgstr "Nenhum modelo encontrado" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 +msgid "Search Results" +msgstr "Resultados da pesquisa" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 +msgid "New WebApp" +msgstr "Novo WebApp" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 +msgid "Edit WebApp" +msgstr "Editar WebApp" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 +msgid "Templates" +msgstr "Modelos" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 +msgid "Loading..." +msgstr "Carregando..." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 +msgid "URL" +msgstr "URL" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 +msgid "Detect name and icon from website" +msgstr "Detectar nome e ícone do site" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 +msgid "Name" +msgstr "Nome" + +#. -- Icon row -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 +msgid "Icon" +msgstr "Ícone" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 +msgid "Select" +msgstr "Selecionar" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 +msgid "Category" +msgstr "Categoria" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 +msgid "App Mode" +msgstr "Modo do App" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 +msgid "Opens as a native window without browser interface" +msgstr "Abre como uma janela nativa sem interface do navegador" + +#. -- Browser row (hidden in app mode) -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 +msgid "Browser" +msgstr "Navegador" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 +msgid "Separate Profile" +msgstr "Perfil separado" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 +msgid "Allows independent cookies and sessions" +msgstr "Permite cookies e sessões independentes" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 +msgid "Profile Name" +msgstr "Nome do Perfil" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 +msgid "Save" +msgstr "Salvar" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 +msgid "Select Icon" +msgstr "Selecionar Ícone" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 +msgid "Images" +msgstr "Imagens" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 +msgid "WebApps Manager" +msgstr "Gerenciador de WebApps" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 +msgid "Search WebApps" +msgstr "Buscar WebApps" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 +msgid "Add WebApp" +msgstr "Adicionar WebApp" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 +msgid "Import WebApps" +msgstr "Importar WebApps" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 +msgid "Export WebApps" +msgstr "Exportar WebApps" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 +msgid "Browse Applications Folder" +msgstr "Navegar na Pasta de Aplicativos" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 +msgid "Browse Profiles Folder" +msgstr "Navegar na Pasta de Perfis" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 +msgid "Remove All WebApps" +msgstr "Remover Todos os WebApps" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 +msgid "About" +msgstr "Sobre" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 +msgid "WebApp created successfully" +msgstr "WebApp criado com sucesso" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 +msgid "ZIP files" +msgstr "Arquivos ZIP" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 +#, rust-format +msgid "Imported {imported}, skipped {dups} duplicates" +msgstr "Importados {imported}, ignorados {dups} duplicados" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 +msgid "Import failed" +msgstr "Falha na importação" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 +msgid "No WebApps" +msgstr "Nenhum WebApp" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 +msgid "WebApps exported successfully" +msgstr "WebApps exportados com sucesso" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 +msgid "Export failed" +msgstr "Falha na exportação" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 +msgid "" +"This will delete all webapps and their desktop entries. This cannot be " +"undone." +msgstr "" +"Isso irá excluir todos os webapps e suas entradas na área de trabalho. Esta " +"ação não pode ser desfeita." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 +msgid "Remove All" +msgstr "Remover Todos" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 +msgid "Failed to remove all WebApps" +msgstr "Falha ao remover todos os WebApps" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 +msgid "All WebApps have been removed" +msgstr "Todos os WebApps foram removidos" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 +msgid "Add a new webapp to get started" +msgstr "Adicione um novo webapp para começar" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 +msgid "WebApp updated successfully" +msgstr "WebApp atualizado com sucesso" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 +msgid "Browser changed" +msgstr "Navegador alterado" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 +msgid "Delete WebApp" +msgstr "Excluir WebApp" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 +msgid "Also delete configuration folder" +msgstr "Também excluir a pasta de configuração" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 +msgid "WebApp deleted successfully" +msgstr "WebApp excluído com sucesso" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:20 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 +msgid "Welcome to WebApps Manager" +msgstr "Bem-vindo ao Gerenciador de WebApps" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 +msgid "What are WebApps?" +msgstr "O que são WebApps?" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 +msgid "" +"WebApps are web applications that run in a dedicated browser window, " +"providing a more app-like experience for your favorite websites." +msgstr "" +"WebApps são aplicações web que rodam em uma janela dedicada do navegador, " +"proporcionando uma experiência mais parecida com um aplicativo para seus " +"sites favoritos." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 +msgid "Benefits of using WebApps:" +msgstr "Benefícios de usar WebApps:" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Focus" +msgstr "Foco" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Work without the distractions of other browser tabs" +msgstr "Trabalhe sem as distrações de outras abas do navegador" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Desktop Integration" +msgstr "Integração com a Área de Trabalho" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Quick access from your application menu" +msgstr "Acesso rápido pelo menu de aplicativos" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Isolated Profiles" +msgstr "Perfis Isolados" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Each webapp can have its own cookies and settings" +msgstr "Cada webapp pode ter seus próprios cookies e configurações" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 +msgid "Don't show this again" +msgstr "Não mostrar isso novamente" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 +msgid "Let's Start" +msgstr "Vamos Começar" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 +msgid "Back" +msgstr "Voltar" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 +msgid "Forward" +msgstr "Avançar" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 +msgid "Reload" +msgstr "Recarregar" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 +msgid "Fullscreen" +msgstr "Tela Cheia" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 +msgid "Enter URL…" +msgstr "Digite a URL…" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 +msgid "Zoom In" +msgstr "Aumentar Zoom" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 +msgid "Zoom Out" +msgstr "Diminuir Zoom" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 +msgid "Reset Zoom" +msgstr "Redefinir Zoom" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 +msgid "Developer Tools" +msgstr "Ferramentas de Desenvolvedor" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 +msgid "Menu" +msgstr "Menu" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 +msgid "Open Link in Browser" +msgstr "Abrir Link no Navegador" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 +msgid "Download Complete" +msgstr "Download Concluído" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 +msgid "Save File" +msgstr "Salvar Arquivo" diff --git a/biglinux-webapps/locale/pt.json b/biglinux-webapps/locale/pt.json deleted file mode 100644 index 2d8c02c0..00000000 --- a/biglinux-webapps/locale/pt.json +++ /dev/null @@ -1 +0,0 @@ -{"pt":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Modelos"]},"Choose a Template":{"*":["Escolha um Modelo"]},"Search templates...":{"*":["Pesquisar modelos..."]},"Search templates":{"*":["Pesquisar modelos"]},"Search Results":{"*":["Resultados da Pesquisa"]},"No templates found":{"*":["Nenhum modelo encontrado"]},"Browser: {0}":{"*":["Navegador: {0}"]},"Edit WebApp":{"*":["Editar WebApp"]},"Edit {0}":{"*":["Editar {0}"]},"Delete WebApp":{"*":["Excluir WebApp"]},"Delete {0}":{"*":["Excluir {0}"]},"Welcome to WebApps Manager":{"*":["Bem-vindo ao Gerenciador de WebApps"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["O que são WebApps?\n\nWebApps são aplicações web que rodam em uma janela de navegador dedicada, proporcionando uma experiência mais semelhante a um aplicativo para seus sites favoritos.\n\nBenefícios de usar WebApps:\n\n• Foco: Trabalhe sem as distrações de outras abas do navegador\n• Integração com a Área de Trabalho: Acesso rápido a partir do menu de aplicativos\n• Perfis Isolados: Opcionalmente, cada webapp pode ter seus próprios cookies e configurações\n"]},"Don't show this again":{"*":["Não mostrar isso novamente"]},"Let's Start":{"*":["Vamos começar"]},"Select Browser":{"*":["Selecionar Navegador"]},"Cancel":{"*":["Cancelar"]},"Select":{"*":["Selecionar"]},"System Default":{"*":["Padrão do Sistema"]},"Default":{"*":["Padrão"]},"Please select a browser.":{"*":["Por favor, selecione um navegador."]},"Error":{"*":["Erro"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Adicionar WebApp"]},"Choose from templates":{"*":["Escolha entre modelos"]},"URL":{"*":["URL"]},"Detect":{"*":["Detectar"]},"Detect name and icon from website":{"*":["Detectar nome e ícone do site"]},"Name":{"*":["Nome"]},"App Icon":{"*":["Ícone do Aplicativo"]},"Select icon for the WebApp":{"*":["Selecione o ícone para o WebApp"]},"Available Icons":{"*":["Ícones Disponíveis"]},"Category":{"*":["Categoria"]},"Application Mode":{"*":["Modo de Aplicativo"]},"Opens as a native window without browser interface":{"*":["Abre como uma janela nativa sem interface de navegador."]},"Browser":{"*":["Navegador"]},"Profile Settings":{"*":["Configurações de Perfil"]},"Configure a separate browser profile for this webapp":{"*":["Configure um perfil de navegador separado para este aplicativo web."]},"Use separate profile":{"*":["Use perfil separado"]},"Allows independent cookies and sessions":{"*":["Permite cookies e sessões independentes"]},"Profile Name":{"*":["Nome do Perfil"]},"Save":{"*":["Salvar"]},"Loading...":{"*":["Carregando..."]},"Detecting website information, please wait":{"*":["Detectando informações do site, por favor aguarde"]},"Please enter a URL first.":{"*":["Por favor, insira uma URL primeiro."]},"Please enter a name for the WebApp.":{"*":["Por favor, insira um nome para o WebApp."]},"Please enter a URL for the WebApp.":{"*":["Por favor, insira uma URL para o WebApp."]},"Please select a browser for the WebApp.":{"*":["Por favor, selecione um navegador para o WebApp."]},"WebApps Manager":{"*":["Gerenciador de WebApps"]},"Search WebApps":{"*":["Pesquisar WebApps"]},"Main Menu":{"*":["Menu Principal"]},"Refresh":{"*":["Atualizar"]},"Export WebApps":{"*":["Exportar WebApps"]},"Import WebApps":{"*":["Importar WebApps"]},"Browse Applications Folder":{"*":["Navegar na Pasta de Aplicativos"]},"Browse Profiles Folder":{"*":["Navegar na Pasta de Perfis"]},"Show Welcome Screen":{"*":["Mostrar Tela de Boas-Vindas"]},"Remove All WebApps":{"*":["Remover Todos os WebApps"]},"About":{"*":["Sobre"]},"Add":{"*":["Adicionar"]},"No WebApps Found":{"*":["Nenhum WebApp encontrado"]},"Add a new webapp to get started":{"*":["Adicione um novo aplicativo web para começar."]},"WebApp created successfully":{"*":["WebApp criado com sucesso"]},"WebApp updated successfully":{"*":["WebApp atualizado com sucesso"]},"Browser changed to {0}":{"*":["Navegador alterado para {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Você tem certeza de que deseja excluir {0}?\n\nURL: {1}\nNavegador: {2}"]},"Also delete configuration folder":{"*":["Também exclua a pasta de configuração."]},"Delete":{"*":["Excluir"]},"WebApp deleted successfully":{"*":["WebApp excluído com sucesso"]},"REMOVE ALL":{"*":["REMOVER TUDO"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Você tem certeza de que deseja remover todos os seus WebApps? Esta ação não pode ser desfeita.\n\nDigite \"{0}\" para confirmar."]},"Remove All":{"*":["Remover Tudo"]},"All WebApps have been removed":{"*":["Todos os WebApps foram removidos."]},"Failed to remove all WebApps":{"*":["Falha ao remover todos os WebApps"]},"Icon {0} of {1}":{"*":["Ícone {0} de {1}"]},"WebApps exported successfully":{"*":["WebApps exportados com sucesso"]},"No WebApps":{"*":["Sem WebApps"]},"There are no WebApps to export.":{"*":["Não há WebApps para exportar."]},"The selected file does not exist.":{"*":["O arquivo selecionado não existe."]},"The selected file is not a valid ZIP archive.":{"*":["O arquivo selecionado não é um arquivo ZIP válido."]},"Error importing WebApps":{"*":["Erro ao importar WebApps"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["WebApps importados com sucesso ({} duplicatas ignoradas)"]},"Imported {} WebApps successfully":{"*":["WebApps {} importados com sucesso"]},"No":{"*":["Não"]},"Yes":{"*":["Sim"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/pt.po b/biglinux-webapps/locale/pt.po index 2f1fde57..b2b381bc 100644 --- a/biglinux-webapps/locale/pt.po +++ b/biglinux-webapps/locale/pt.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the biglinux-webapps package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" "Project-Id-Version: biglinux-webapps\n" @@ -14,441 +14,750 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Modelos" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Escolha um Modelo" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Pesquisar modelos..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 -msgid "Search templates" -msgstr "Pesquisar modelos" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Resultados da Pesquisa" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Nenhum modelo encontrado" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 -#, python-brace-format -msgid "Browser: {0}" -msgstr "Navegador: {0}" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Editar WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 -#, python-brace-format -msgid "Edit {0}" -msgstr "Editar {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Excluir WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 -#, python-brace-format -msgid "Delete {0}" -msgstr "Excluir {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:20 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Bem-vindo ao Gerenciador de WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 -msgid "" -"What are WebApps?\n" -"\n" -"WebApps are web applications that run in a dedicated browser window, providing a more app-like " -"experience for your favorite websites.\n" -"\n" -"Benefits of using WebApps:\n" -"\n" -"• Focus: Work without the distractions of other browser tabs\n" -"• Desktop Integration: Quick access from your application menu\n" -"• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" -msgstr "" -"O que são WebApps?\n" -"\n" -"WebApps são aplicações web que rodam em uma janela de navegador dedicada, proporcionando uma " -"experiência mais semelhante a um aplicativo para seus sites favoritos.\n" -"\n" -"Benefícios de usar WebApps:\n" -"\n" -"• Foco: Trabalhe sem as distrações de outras abas do navegador\n" -"• Integração com a Área de Trabalho: Acesso rápido a partir do menu de aplicativos\n" -"• Perfis Isolados: Opcionalmente, cada webapp pode ter seus próprios cookies e configurações\n" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Não mostrar isso novamente" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Vamos começar" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Selecionar Navegador" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:99 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:225 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:291 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Cancelar" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Selecionar" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 -msgid "System Default" -msgstr "Padrão do Sistema" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 -msgid "Default" -msgstr "Padrão" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 -msgid "Please select a browser." -msgstr "Por favor, selecione um navegador." -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 -msgid "Error" -msgstr "Erro" -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "OK" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Adicionar WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 -msgid "Choose from templates" -msgstr "Escolha entre modelos" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 -msgid "Detect" -msgstr "Detectar" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Detectar nome e ícone do site" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Nome" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 -msgid "App Icon" -msgstr "Ícone do Aplicativo" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 -msgid "Select icon for the WebApp" -msgstr "Selecione o ícone para o WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 -msgid "Available Icons" -msgstr "Ícones Disponíveis" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Categoria" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 -msgid "Application Mode" -msgstr "Modo de Aplicativo" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Abre como uma janela nativa sem interface de navegador." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 +#. -- Browser row (hidden in app mode) -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Navegador" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 -msgid "Profile Settings" -msgstr "Configurações de Perfil" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 -msgid "Configure a separate browser profile for this webapp" -msgstr "Configure um perfil de navegador separado para este aplicativo web." -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -msgid "Use separate profile" -msgstr "Use perfil separado" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Permite cookies e sessões independentes" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Nome do Perfil" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Salvar" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Carregando..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 -msgid "Detecting website information, please wait" -msgstr "Detectando informações do site, por favor aguarde" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 -msgid "Please enter a URL first." -msgstr "Por favor, insira uma URL primeiro." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 -msgid "Please enter a name for the WebApp." -msgstr "Por favor, insira um nome para o WebApp." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 -msgid "Please enter a URL for the WebApp." -msgstr "Por favor, insira uma URL para o WebApp." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 -msgid "Please select a browser for the WebApp." -msgstr "Por favor, selecione um navegador para o WebApp." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "Gerenciador de WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Pesquisar WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 -msgid "Main Menu" -msgstr "Menu Principal" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 -msgid "Refresh" -msgstr "Atualizar" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Exportar WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Importar WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Navegar na Pasta de Aplicativos" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Navegar na Pasta de Perfis" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 -msgid "Show Welcome Screen" -msgstr "Mostrar Tela de Boas-Vindas" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Remover Todos os WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "Sobre" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 -msgid "Add" -msgstr "Adicionar" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 -msgid "No WebApps Found" -msgstr "Nenhum WebApp encontrado" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Adicione um novo aplicativo web para começar." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "WebApp criado com sucesso" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "WebApp atualizado com sucesso" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 -#, python-brace-format -msgid "Browser changed to {0}" -msgstr "Navegador alterado para {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 -#, python-brace-format -msgid "" -"Are you sure you want to delete {0}?\n" -"\n" -"URL: {1}\n" -"Browser: {2}" -msgstr "" -"Você tem certeza de que deseja excluir {0}?\n" -"\n" -"URL: {1}\n" -"Navegador: {2}" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Também exclua a pasta de configuração." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Excluir" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "WebApp excluído com sucesso" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 -msgid "REMOVE ALL" -msgstr "REMOVER TUDO" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 -#, python-brace-format -msgid "" -"Are you sure you want to remove all your WebApps? This action cannot be undone.\n" -"\n" -"Type \"{0}\" to confirm." -msgstr "" -"Você tem certeza de que deseja remover todos os seus WebApps? Esta ação não pode ser desfeita.\n" -"\n" -"Digite \"{0}\" para confirmar." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Remover Tudo" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Todos os WebApps foram removidos." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Falha ao remover todos os WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 -#, python-brace-format -msgid "Icon {0} of {1}" -msgstr "Ícone {0} de {1}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebApps exportados com sucesso" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Sem WebApps" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 +msgid "Change browser" +msgstr "Alterar navegador" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 +msgid "Edit" +msgstr "Editar" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 +msgid "New WebApp" +msgstr "Novo WebApp" + +#. -- Icon row -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 +msgid "Icon" +msgstr "Ícone" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 +msgid "App Mode" +msgstr "Modo do App" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 +msgid "Separate Profile" +msgstr "Perfil separado" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 +msgid "Select Icon" +msgstr "Selecionar ícone" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 +msgid "Images" +msgstr "Imagens" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 +msgid "ZIP files" +msgstr "Arquivos ZIP" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 +#, rust-format +msgid "Imported {imported}, skipped {dups} duplicates" +msgstr "Importados {imported}, duplicatas {dups} ignoradas" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 +msgid "Import failed" +msgstr "Falha na importação" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 +msgid "Export failed" +msgstr "Falha na exportação" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 +msgid "" +"This will delete all webapps and their desktop entries. This cannot be " +"undone." +msgstr "" +"Isso irá deletar todos os webapps e suas entradas na área de trabalho. Esta " +"ação não pode ser desfeita." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 +msgid "Browser changed" +msgstr "Navegador alterado" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 +msgid "What are WebApps?" +msgstr "O que são WebApps?" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 +msgid "" +"WebApps are web applications that run in a dedicated browser window, " +"providing a more app-like experience for your favorite websites." +msgstr "" +"WebApps são aplicações web que rodam em uma janela de navegador dedicada, " +"proporcionando uma experiência mais parecida com um aplicativo para seus " +"sites favoritos." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 +msgid "Benefits of using WebApps:" +msgstr "Benefícios de usar WebApps:" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Focus" +msgstr "Foco" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Work without the distractions of other browser tabs" +msgstr "Trabalhe sem as distrações de outras abas do navegador" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Desktop Integration" +msgstr "Integração com a Área de Trabalho" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Quick access from your application menu" +msgstr "Acesso rápido pelo menu de aplicativos" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Isolated Profiles" +msgstr "Perfis Isolados" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Each webapp can have its own cookies and settings" +msgstr "Cada webapp pode ter seus próprios cookies e configurações" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 +msgid "Back" +msgstr "Voltar" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 +msgid "Forward" +msgstr "Avançar" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 +msgid "Reload" +msgstr "Recarregar" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 +msgid "Fullscreen" +msgstr "Tela cheia" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 +msgid "Enter URL…" +msgstr "Digite o URL…" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 +msgid "Zoom In" +msgstr "Aumentar Zoom" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 +msgid "Zoom Out" +msgstr "Diminuir Zoom" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 +msgid "Reset Zoom" +msgstr "Redefinir Zoom" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 +msgid "Developer Tools" +msgstr "Ferramentas do Desenvolvedor" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 +msgid "Menu" +msgstr "Menu" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 +msgid "Open Link in Browser" +msgstr "Abrir Link no Navegador" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 +msgid "Download Complete" +msgstr "Download Concluído" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 +msgid "Save File" +msgstr "Salvar Arquivo" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 +#~ msgid "Search templates" +#~ msgstr "Pesquisar modelos" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 +#, python-brace-format +#~ msgid "Browser: {0}" +#~ msgstr "Navegador: {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 +#, python-brace-format +#~ msgid "Edit {0}" +#~ msgstr "Editar {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 +#, python-brace-format +#~ msgid "Delete {0}" +#~ msgstr "Excluir {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 +#~ msgid "" +#~ "What are WebApps?\n" +#~ "\n" +#~ "WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n" +#~ "\n" +#~ "Benefits of using WebApps:\n" +#~ "\n" +#~ "• Focus: Work without the distractions of other browser tabs\n" +#~ "• Desktop Integration: Quick access from your application menu\n" +#~ "• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" +#~ msgstr "" +#~ "O que são WebApps?\n" +#~ "\n" +#~ "WebApps são aplicações web que rodam em uma janela de navegador dedicada, proporcionando uma experiência mais semelhante a um aplicativo para seus sites favoritos.\n" +#~ "\n" +#~ "Benefícios de usar WebApps:\n" +#~ "\n" +#~ "• Foco: Trabalhe sem as distrações de outras abas do navegador\n" +#~ "• Integração com a Área de Trabalho: Acesso rápido a partir do menu de aplicativos\n" +#~ "• Perfis Isolados: Opcionalmente, cada webapp pode ter seus próprios cookies e configurações\n" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 +#~ msgid "System Default" +#~ msgstr "Padrão do Sistema" + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 -msgid "There are no WebApps to export." -msgstr "Não há WebApps para exportar." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 -msgid "The selected file does not exist." -msgstr "O arquivo selecionado não existe." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 -msgid "The selected file is not a valid ZIP archive." -msgstr "O arquivo selecionado não é um arquivo ZIP válido." +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 -msgid "Error importing WebApps" -msgstr "Erro ao importar WebApps" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 +#~ msgid "Default" +#~ msgstr "Padrão" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 +#~ msgid "Please select a browser." +#~ msgstr "Por favor, selecione um navegador." + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 -msgid "Imported {} WebApps successfully ({} duplicates skipped)" -msgstr "WebApps importados com sucesso ({} duplicatas ignoradas)" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 +#~ msgid "Error" +#~ msgstr "Erro" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 +#~ msgid "Choose from templates" +#~ msgstr "Escolha entre modelos" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 +#~ msgid "Detect" +#~ msgstr "Detectar" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 +#~ msgid "App Icon" +#~ msgstr "Ícone do Aplicativo" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 +#~ msgid "Select icon for the WebApp" +#~ msgstr "Selecione o ícone para o WebApp" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 +#~ msgid "Available Icons" +#~ msgstr "Ícones Disponíveis" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 +#~ msgid "Application Mode" +#~ msgstr "Modo de Aplicativo" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 +#~ msgid "Profile Settings" +#~ msgstr "Configurações de Perfil" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 +#~ msgid "Configure a separate browser profile for this webapp" +#~ msgstr "Configure um perfil de navegador separado para este aplicativo web." + +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 -msgid "Imported {} WebApps successfully" -msgstr "WebApps {} importados com sucesso" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 -msgid "No" -msgstr "Não" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 -msgid "Yes" -msgstr "Sim" +#~ msgid "Use separate profile" +#~ msgstr "Use perfil separado" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 +#~ msgid "Detecting website information, please wait" +#~ msgstr "Detectando informações do site, por favor aguarde" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 +#~ msgid "Please enter a URL first." +#~ msgstr "Por favor, insira uma URL primeiro." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 +#~ msgid "Please enter a name for the WebApp." +#~ msgstr "Por favor, insira um nome para o WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 +#~ msgid "Please enter a URL for the WebApp." +#~ msgstr "Por favor, insira uma URL para o WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 +#~ msgid "Please select a browser for the WebApp." +#~ msgstr "Por favor, selecione um navegador para o WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 +#~ msgid "Main Menu" +#~ msgstr "Menu Principal" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 +#~ msgid "Refresh" +#~ msgstr "Atualizar" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 +#~ msgid "Show Welcome Screen" +#~ msgstr "Mostrar Tela de Boas-Vindas" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 +#~ msgid "Add" +#~ msgstr "Adicionar" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 +#~ msgid "No WebApps Found" +#~ msgstr "Nenhum WebApp encontrado" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 +#, python-brace-format +#~ msgid "Browser changed to {0}" +#~ msgstr "Navegador alterado para {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to delete {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Browser: {2}" +#~ msgstr "" +#~ "Você tem certeza de que deseja excluir {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Navegador: {2}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 +#~ msgid "REMOVE ALL" +#~ msgstr "REMOVER TUDO" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to remove all your WebApps? This action cannot be undone.\n" +#~ "\n" +#~ "Type \"{0}\" to confirm." +#~ msgstr "" +#~ "Você tem certeza de que deseja remover todos os seus WebApps? Esta ação não pode ser desfeita.\n" +#~ "\n" +#~ "Digite \"{0}\" para confirmar." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 +#, python-brace-format +#~ msgid "Icon {0} of {1}" +#~ msgstr "Ícone {0} de {1}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#~ msgid "There are no WebApps to export." +#~ msgstr "Não há WebApps para exportar." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 +#~ msgid "The selected file does not exist." +#~ msgstr "O arquivo selecionado não existe." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 +#~ msgid "The selected file is not a valid ZIP archive." +#~ msgstr "O arquivo selecionado não é um arquivo ZIP válido." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 +#~ msgid "Error importing WebApps" +#~ msgstr "Erro ao importar WebApps" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 +#~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" +#~ msgstr "WebApps importados com sucesso ({} duplicatas ignoradas)" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 +#~ msgid "Imported {} WebApps successfully" +#~ msgstr "WebApps {} importados com sucesso" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 +#~ msgid "No" +#~ msgstr "Não" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 +#~ msgid "Yes" +#~ msgstr "Sim" diff --git a/biglinux-webapps/locale/ro.json b/biglinux-webapps/locale/ro.json deleted file mode 100644 index 64a3e142..00000000 --- a/biglinux-webapps/locale/ro.json +++ /dev/null @@ -1 +0,0 @@ -{"ro":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Șabloane"]},"Choose a Template":{"*":["Alegeți un șablon"]},"Search templates...":{"*":["Caută șabloane..."]},"Search templates":{"*":["Caută șabloane"]},"Search Results":{"*":["Rezultatele căutării"]},"No templates found":{"*":["Nu au fost găsite șabloane."]},"Browser: {0}":{"*":["Browser: {0}"]},"Edit WebApp":{"*":["Editare WebApp"]},"Edit {0}":{"*":["Editează {0}"]},"Delete WebApp":{"*":["Șterge aplicația web"]},"Delete {0}":{"*":["Șterge {0}"]},"Welcome to WebApps Manager":{"*":["Bine ați venit la Managerul de WebApps"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Ce sunt WebApps?\n\nWebApps sunt aplicații web care rulează într-o fereastră de browser dedicată, oferind o experiență mai asemănătoare cu cea a aplicațiilor pentru site-urile tale preferate.\n\nBeneficiile utilizării WebApps:\n\n• Concentrare: Lucrează fără distragerile altor tab-uri de browser\n• Integrare pe desktop: Acces rapid din meniul aplicației tale\n• Profiluri izolate: Opțional, fiecare webapp poate avea propriile sale cookie-uri și setări\n"]},"Don't show this again":{"*":["Nu mai arăta asta."]},"Let's Start":{"*":["Să începem"]},"Select Browser":{"*":["Selectați browserul"]},"Cancel":{"*":["Anulează"]},"Select":{"*":["Selectați"]},"System Default":{"*":["Implicit sistem"]},"Default":{"*":["Implicit"]},"Please select a browser.":{"*":["Vă rugăm să selectați un browser."]},"Error":{"*":["Eroare"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Adaugă WebApp"]},"Choose from templates":{"*":["Alege din șabloane"]},"URL":{"*":["URL"]},"Detect":{"*":["Detecta"]},"Detect name and icon from website":{"*":["Detectați numele și pictograma de pe site."]},"Name":{"*":["Nume"]},"App Icon":{"*":["Pictograma aplicație"]},"Select icon for the WebApp":{"*":["Selectați pictograma pentru WebApp"]},"Available Icons":{"*":["Iconi disponibile"]},"Category":{"*":["Categorie"]},"Application Mode":{"*":["Mod de aplicație"]},"Opens as a native window without browser interface":{"*":["Se deschide ca o fereastră nativă fără interfață de browser."]},"Browser":{"*":["Browser"]},"Profile Settings":{"*":["Setări profil"]},"Configure a separate browser profile for this webapp":{"*":["Configurează un profil de browser separat pentru această aplicație web."]},"Use separate profile":{"*":["Utilizați un profil separat"]},"Allows independent cookies and sessions":{"*":["Permite cookie-uri și sesiuni independente"]},"Profile Name":{"*":["Nume profil"]},"Save":{"*":["Salvează"]},"Loading...":{"*":["Se încarcă..."]},"Detecting website information, please wait":{"*":["Detectarea informațiilor site-ului, vă rugăm să așteptați"]},"Please enter a URL first.":{"*":["Vă rugăm să introduceți mai întâi un URL."]},"Please enter a name for the WebApp.":{"*":["Vă rugăm să introduceți un nume pentru WebApp."]},"Please enter a URL for the WebApp.":{"*":["Vă rugăm să introduceți un URL pentru WebApp."]},"Please select a browser for the WebApp.":{"*":["Vă rugăm să selectați un browser pentru WebApp."]},"WebApps Manager":{"*":["Manager aplicații web"]},"Search WebApps":{"*":["Caută WebApps"]},"Main Menu":{"*":["Meniu Principal"]},"Refresh":{"*":["Actualizează"]},"Export WebApps":{"*":["Exportați aplicațiile web"]},"Import WebApps":{"*":["Importați aplicații web"]},"Browse Applications Folder":{"*":["Răsfoiește folderul Aplicații"]},"Browse Profiles Folder":{"*":["Răsfoiește folderul Profiluri"]},"Show Welcome Screen":{"*":["Afișează Ecranul de Bun Venit"]},"Remove All WebApps":{"*":["Elimină toate aplicațiile web"]},"About":{"*":["Despre"]},"Add":{"*":["Adaugă"]},"No WebApps Found":{"*":["Nu au fost găsite aplicații web."]},"Add a new webapp to get started":{"*":["Adăugați o nouă aplicație web pentru a începe."]},"WebApp created successfully":{"*":["WebApp creat cu succes"]},"WebApp updated successfully":{"*":["WebApp actualizat cu succes"]},"Browser changed to {0}":{"*":["Browserul a fost schimbat în {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Ești sigur că vrei să ștergi {0}?\n\nURL: {1}\nBrowser: {2}"]},"Also delete configuration folder":{"*":["Dezinstalează și folderul de configurare."]},"Delete":{"*":["Șterge"]},"WebApp deleted successfully":{"*":["WebApp șters cu succes"]},"REMOVE ALL":{"*":["ELIMINARE TOTUL"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Ești sigur că vrei să ștergi toate aplicațiile tale web? Această acțiune nu poate fi anulată.\n\nScrie \"{0}\" pentru a confirma."]},"Remove All":{"*":["Elimină tot"]},"All WebApps have been removed":{"*":["Toate aplicațiile web au fost eliminate."]},"Failed to remove all WebApps":{"*":["Nu s-au putut elimina toate aplicațiile web."]},"Icon {0} of {1}":{"*":["Icon {0} din {1}"]},"WebApps exported successfully":{"*":["WebApps exportate cu succes"]},"No WebApps":{"*":["Fără aplicații web"]},"There are no WebApps to export.":{"*":["Nu există WebApps de exportat."]},"The selected file does not exist.":{"*":["Fișierul selectat nu există."]},"The selected file is not a valid ZIP archive.":{"*":["Fișierul selectat nu este un arhivă ZIP validă."]},"Error importing WebApps":{"*":["Eroare la importarea WebApps"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["WebApps importate cu succes ({} duplicate omise)"]},"Imported {} WebApps successfully":{"*":["WebApps {} importate cu succes"]},"No":{"*":["Nu"]},"Yes":{"*":["Da"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/ro.po b/biglinux-webapps/locale/ro.po index df905465..6b992ca5 100644 --- a/biglinux-webapps/locale/ro.po +++ b/biglinux-webapps/locale/ro.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the biglinux-webapps package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" "Project-Id-Version: biglinux-webapps\n" @@ -14,441 +14,751 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Șabloane" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Alegeți un șablon" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Caută șabloane..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 -msgid "Search templates" -msgstr "Caută șabloane" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Rezultatele căutării" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Nu au fost găsite șabloane." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 -#, python-brace-format -msgid "Browser: {0}" -msgstr "Browser: {0}" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Editare WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 -#, python-brace-format -msgid "Edit {0}" -msgstr "Editează {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Șterge aplicația web" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 -#, python-brace-format -msgid "Delete {0}" -msgstr "Șterge {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:20 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Bine ați venit la Managerul de WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 -msgid "" -"What are WebApps?\n" -"\n" -"WebApps are web applications that run in a dedicated browser window, providing a more app-like " -"experience for your favorite websites.\n" -"\n" -"Benefits of using WebApps:\n" -"\n" -"• Focus: Work without the distractions of other browser tabs\n" -"• Desktop Integration: Quick access from your application menu\n" -"• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" -msgstr "" -"Ce sunt WebApps?\n" -"\n" -"WebApps sunt aplicații web care rulează într-o fereastră de browser dedicată, oferind o experiență " -"mai asemănătoare cu cea a aplicațiilor pentru site-urile tale preferate.\n" -"\n" -"Beneficiile utilizării WebApps:\n" -"\n" -"• Concentrare: Lucrează fără distragerile altor tab-uri de browser\n" -"• Integrare pe desktop: Acces rapid din meniul aplicației tale\n" -"• Profiluri izolate: Opțional, fiecare webapp poate avea propriile sale cookie-uri și setări\n" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Nu mai arăta asta." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Să începem" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Selectați browserul" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:99 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:225 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:291 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Anulează" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Selectați" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 -msgid "System Default" -msgstr "Implicit sistem" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 -msgid "Default" -msgstr "Implicit" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 -msgid "Please select a browser." -msgstr "Vă rugăm să selectați un browser." -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 -msgid "Error" -msgstr "Eroare" -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "OK" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Adaugă WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 -msgid "Choose from templates" -msgstr "Alege din șabloane" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 -msgid "Detect" -msgstr "Detecta" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Detectați numele și pictograma de pe site." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Nume" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 -msgid "App Icon" -msgstr "Pictograma aplicație" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 -msgid "Select icon for the WebApp" -msgstr "Selectați pictograma pentru WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 -msgid "Available Icons" -msgstr "Iconi disponibile" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Categorie" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 -msgid "Application Mode" -msgstr "Mod de aplicație" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Se deschide ca o fereastră nativă fără interfață de browser." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 +#. -- Browser row (hidden in app mode) -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Browser" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 -msgid "Profile Settings" -msgstr "Setări profil" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 -msgid "Configure a separate browser profile for this webapp" -msgstr "Configurează un profil de browser separat pentru această aplicație web." -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -msgid "Use separate profile" -msgstr "Utilizați un profil separat" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Permite cookie-uri și sesiuni independente" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Nume profil" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Salvează" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Se încarcă..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 -msgid "Detecting website information, please wait" -msgstr "Detectarea informațiilor site-ului, vă rugăm să așteptați" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 -msgid "Please enter a URL first." -msgstr "Vă rugăm să introduceți mai întâi un URL." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 -msgid "Please enter a name for the WebApp." -msgstr "Vă rugăm să introduceți un nume pentru WebApp." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 -msgid "Please enter a URL for the WebApp." -msgstr "Vă rugăm să introduceți un URL pentru WebApp." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 -msgid "Please select a browser for the WebApp." -msgstr "Vă rugăm să selectați un browser pentru WebApp." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "Manager aplicații web" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Caută WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 -msgid "Main Menu" -msgstr "Meniu Principal" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 -msgid "Refresh" -msgstr "Actualizează" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Exportați aplicațiile web" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Importați aplicații web" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Răsfoiește folderul Aplicații" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Răsfoiește folderul Profiluri" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 -msgid "Show Welcome Screen" -msgstr "Afișează Ecranul de Bun Venit" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Elimină toate aplicațiile web" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "Despre" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 -msgid "Add" -msgstr "Adaugă" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 -msgid "No WebApps Found" -msgstr "Nu au fost găsite aplicații web." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Adăugați o nouă aplicație web pentru a începe." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "WebApp creat cu succes" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "WebApp actualizat cu succes" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 -#, python-brace-format -msgid "Browser changed to {0}" -msgstr "Browserul a fost schimbat în {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 -#, python-brace-format -msgid "" -"Are you sure you want to delete {0}?\n" -"\n" -"URL: {1}\n" -"Browser: {2}" -msgstr "" -"Ești sigur că vrei să ștergi {0}?\n" -"\n" -"URL: {1}\n" -"Browser: {2}" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Dezinstalează și folderul de configurare." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Șterge" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "WebApp șters cu succes" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 -msgid "REMOVE ALL" -msgstr "ELIMINARE TOTUL" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 -#, python-brace-format -msgid "" -"Are you sure you want to remove all your WebApps? This action cannot be undone.\n" -"\n" -"Type \"{0}\" to confirm." -msgstr "" -"Ești sigur că vrei să ștergi toate aplicațiile tale web? Această acțiune nu poate fi anulată.\n" -"\n" -"Scrie \"{0}\" pentru a confirma." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Elimină tot" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Toate aplicațiile web au fost eliminate." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Nu s-au putut elimina toate aplicațiile web." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 -#, python-brace-format -msgid "Icon {0} of {1}" -msgstr "Icon {0} din {1}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebApps exportate cu succes" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Fără aplicații web" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 +msgid "Change browser" +msgstr "Schimbă browser" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 +msgid "Edit" +msgstr "Editează" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 +msgid "New WebApp" +msgstr "WebApp nou" + +#. -- Icon row -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 +msgid "Icon" +msgstr "Pictogramă" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 +msgid "App Mode" +msgstr "Modul aplicație" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 +msgid "Separate Profile" +msgstr "Profil separat" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 +msgid "Select Icon" +msgstr "Selectează pictogramă" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 +msgid "Images" +msgstr "Imagini" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 +msgid "ZIP files" +msgstr "Fișiere ZIP" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 +#, rust-format +msgid "Imported {imported}, skipped {dups} duplicates" +msgstr "Importate {imported}, sărite {dups} duplicate" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 +msgid "Import failed" +msgstr "Importul a eșuat" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 +msgid "Export failed" +msgstr "Exportul a eșuat" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 +msgid "" +"This will delete all webapps and their desktop entries. This cannot be " +"undone." +msgstr "" +"Aceasta va șterge toate webapps-urile și intrările lor de pe desktop. " +"Această acțiune nu poate fi anulată." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 +msgid "Browser changed" +msgstr "Browserul a fost schimbat" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 +msgid "What are WebApps?" +msgstr "Ce sunt WebApps?" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 +msgid "" +"WebApps are web applications that run in a dedicated browser window, " +"providing a more app-like experience for your favorite websites." +msgstr "" +"WebApps sunt aplicații web care rulează într-o fereastră de browser " +"dedicată, oferind o experiență mai asemănătoare unei aplicații pentru site-" +"urile tale preferate." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 +msgid "Benefits of using WebApps:" +msgstr "Beneficiile utilizării WebApps:" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Focus" +msgstr "Concentrare" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Work without the distractions of other browser tabs" +msgstr "Lucrează fără distragerile altor file de browser" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Desktop Integration" +msgstr "Integrare pe desktop" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Quick access from your application menu" +msgstr "Acces rapid din meniul aplicațiilor" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Isolated Profiles" +msgstr "Profiluri izolate" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Each webapp can have its own cookies and settings" +msgstr "Fiecare webapp poate avea propriile cookie-uri și setări" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 +msgid "Back" +msgstr "Înapoi" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 +msgid "Forward" +msgstr "Înainte" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 +msgid "Reload" +msgstr "Reîncarcă" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 +msgid "Fullscreen" +msgstr "Ecran complet" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 +msgid "Enter URL…" +msgstr "Introdu URL…" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 +msgid "Zoom In" +msgstr "Mărește" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 +msgid "Zoom Out" +msgstr "Micșorează" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 +msgid "Reset Zoom" +msgstr "Resetează zoom-ul" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 +msgid "Developer Tools" +msgstr "Instrumente pentru dezvoltatori" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 +msgid "Menu" +msgstr "Meniu" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 +msgid "Open Link in Browser" +msgstr "Deschide linkul în browser" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 +msgid "Download Complete" +msgstr "Descărcare completă" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 +msgid "Save File" +msgstr "Salvează fișierul" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 +#~ msgid "Search templates" +#~ msgstr "Caută șabloane" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 +#, python-brace-format +#~ msgid "Browser: {0}" +#~ msgstr "Browser: {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 +#, python-brace-format +#~ msgid "Edit {0}" +#~ msgstr "Editează {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 +#, python-brace-format +#~ msgid "Delete {0}" +#~ msgstr "Șterge {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 +#~ msgid "" +#~ "What are WebApps?\n" +#~ "\n" +#~ "WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n" +#~ "\n" +#~ "Benefits of using WebApps:\n" +#~ "\n" +#~ "• Focus: Work without the distractions of other browser tabs\n" +#~ "• Desktop Integration: Quick access from your application menu\n" +#~ "• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" +#~ msgstr "" +#~ "Ce sunt WebApps?\n" +#~ "\n" +#~ "WebApps sunt aplicații web care rulează într-o fereastră de browser dedicată, oferind o experiență mai asemănătoare cu cea a aplicațiilor pentru site-urile tale preferate.\n" +#~ "\n" +#~ "Beneficiile utilizării WebApps:\n" +#~ "\n" +#~ "• Concentrare: Lucrează fără distragerile altor tab-uri de browser\n" +#~ "• Integrare pe desktop: Acces rapid din meniul aplicației tale\n" +#~ "• Profiluri izolate: Opțional, fiecare webapp poate avea propriile sale cookie-uri și setări\n" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 +#~ msgid "System Default" +#~ msgstr "Implicit sistem" + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 -msgid "There are no WebApps to export." -msgstr "Nu există WebApps de exportat." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 -msgid "The selected file does not exist." -msgstr "Fișierul selectat nu există." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 -msgid "The selected file is not a valid ZIP archive." -msgstr "Fișierul selectat nu este un arhivă ZIP validă." +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 -msgid "Error importing WebApps" -msgstr "Eroare la importarea WebApps" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 +#~ msgid "Default" +#~ msgstr "Implicit" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 +#~ msgid "Please select a browser." +#~ msgstr "Vă rugăm să selectați un browser." + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 -msgid "Imported {} WebApps successfully ({} duplicates skipped)" -msgstr "WebApps importate cu succes ({} duplicate omise)" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 +#~ msgid "Error" +#~ msgstr "Eroare" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 +#~ msgid "Choose from templates" +#~ msgstr "Alege din șabloane" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 +#~ msgid "Detect" +#~ msgstr "Detecta" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 +#~ msgid "App Icon" +#~ msgstr "Pictograma aplicație" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 +#~ msgid "Select icon for the WebApp" +#~ msgstr "Selectați pictograma pentru WebApp" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 +#~ msgid "Available Icons" +#~ msgstr "Iconi disponibile" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 +#~ msgid "Application Mode" +#~ msgstr "Mod de aplicație" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 +#~ msgid "Profile Settings" +#~ msgstr "Setări profil" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 +#~ msgid "Configure a separate browser profile for this webapp" +#~ msgstr "" +#~ "Configurează un profil de browser separat pentru această aplicație web." + +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 -msgid "Imported {} WebApps successfully" -msgstr "WebApps {} importate cu succes" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 -msgid "No" -msgstr "Nu" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 -msgid "Yes" -msgstr "Da" +#~ msgid "Use separate profile" +#~ msgstr "Utilizați un profil separat" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 +#~ msgid "Detecting website information, please wait" +#~ msgstr "Detectarea informațiilor site-ului, vă rugăm să așteptați" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 +#~ msgid "Please enter a URL first." +#~ msgstr "Vă rugăm să introduceți mai întâi un URL." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 +#~ msgid "Please enter a name for the WebApp." +#~ msgstr "Vă rugăm să introduceți un nume pentru WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 +#~ msgid "Please enter a URL for the WebApp." +#~ msgstr "Vă rugăm să introduceți un URL pentru WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 +#~ msgid "Please select a browser for the WebApp." +#~ msgstr "Vă rugăm să selectați un browser pentru WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 +#~ msgid "Main Menu" +#~ msgstr "Meniu Principal" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 +#~ msgid "Refresh" +#~ msgstr "Actualizează" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 +#~ msgid "Show Welcome Screen" +#~ msgstr "Afișează Ecranul de Bun Venit" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 +#~ msgid "Add" +#~ msgstr "Adaugă" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 +#~ msgid "No WebApps Found" +#~ msgstr "Nu au fost găsite aplicații web." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 +#, python-brace-format +#~ msgid "Browser changed to {0}" +#~ msgstr "Browserul a fost schimbat în {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to delete {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Browser: {2}" +#~ msgstr "" +#~ "Ești sigur că vrei să ștergi {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Browser: {2}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 +#~ msgid "REMOVE ALL" +#~ msgstr "ELIMINARE TOTUL" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to remove all your WebApps? This action cannot be undone.\n" +#~ "\n" +#~ "Type \"{0}\" to confirm." +#~ msgstr "" +#~ "Ești sigur că vrei să ștergi toate aplicațiile tale web? Această acțiune nu poate fi anulată.\n" +#~ "\n" +#~ "Scrie \"{0}\" pentru a confirma." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 +#, python-brace-format +#~ msgid "Icon {0} of {1}" +#~ msgstr "Icon {0} din {1}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#~ msgid "There are no WebApps to export." +#~ msgstr "Nu există WebApps de exportat." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 +#~ msgid "The selected file does not exist." +#~ msgstr "Fișierul selectat nu există." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 +#~ msgid "The selected file is not a valid ZIP archive." +#~ msgstr "Fișierul selectat nu este un arhivă ZIP validă." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 +#~ msgid "Error importing WebApps" +#~ msgstr "Eroare la importarea WebApps" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 +#~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" +#~ msgstr "WebApps importate cu succes ({} duplicate omise)" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 +#~ msgid "Imported {} WebApps successfully" +#~ msgstr "WebApps {} importate cu succes" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 +#~ msgid "No" +#~ msgstr "Nu" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 +#~ msgid "Yes" +#~ msgstr "Da" diff --git a/biglinux-webapps/locale/ru.json b/biglinux-webapps/locale/ru.json deleted file mode 100644 index d4eff20c..00000000 --- a/biglinux-webapps/locale/ru.json +++ /dev/null @@ -1 +0,0 @@ -{"ru":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Шаблоны"]},"Choose a Template":{"*":["Выберите шаблон"]},"Search templates...":{"*":["Поиск шаблонов..."]},"Search templates":{"*":["Поиск шаблонов"]},"Search Results":{"*":["Результаты поиска"]},"No templates found":{"*":["Шаблоны не найдены"]},"Browser: {0}":{"*":["Браузер: {0}"]},"Edit WebApp":{"*":["Редактировать веб-приложение"]},"Edit {0}":{"*":["Редактировать {0}"]},"Delete WebApp":{"*":["Удалить WebApp"]},"Delete {0}":{"*":["Удалить {0}"]},"Welcome to WebApps Manager":{"*":["Добро пожаловать в WebApps Manager"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Что такое веб-приложения?\n\nВеб-приложения — это веб-приложения, которые работают в отдельном окне браузера, обеспечивая более похожий на приложение опыт для ваших любимых веб-сайтов.\n\nПреимущества использования веб-приложений:\n\n• Фокус: Работайте без отвлекающих факторов других вкладок браузера\n• Интеграция с рабочим столом: Быстрый доступ из меню приложений\n• Изолированные профили: При желании, каждое веб-приложение может иметь свои собственные куки и настройки\n"]},"Don't show this again":{"*":["Больше не показывать это снова"]},"Let's Start":{"*":["Давайте начнем"]},"Select Browser":{"*":["Выберите браузер"]},"Cancel":{"*":["Отмена"]},"Select":{"*":["Выбрать"]},"System Default":{"*":["Системный по умолчанию"]},"Default":{"*":["По умолчанию"]},"Please select a browser.":{"*":["Пожалуйста, выберите браузер."]},"Error":{"*":["Ошибка"]},"OK":{"*":["ОК"]},"Add WebApp":{"*":["Добавить веб-приложение"]},"Choose from templates":{"*":["Выберите из шаблонов"]},"URL":{"*":["URL"]},"Detect":{"*":["Обнаружить"]},"Detect name and icon from website":{"*":["Обнаружить имя и значок с веб-сайта"]},"Name":{"*":["Имя"]},"App Icon":{"*":["Иконка приложения"]},"Select icon for the WebApp":{"*":["Выберите значок для веб-приложения"]},"Available Icons":{"*":["Доступные значки"]},"Category":{"*":["Категория"]},"Application Mode":{"*":["Режим приложения"]},"Opens as a native window without browser interface":{"*":["Открывается как родное окно без интерфейса браузера"]},"Browser":{"*":["Браузер"]},"Profile Settings":{"*":["Настройки профиля"]},"Configure a separate browser profile for this webapp":{"*":["Настройте отдельный профиль браузера для этого веб-приложения."]},"Use separate profile":{"*":["Использовать отдельный профиль"]},"Allows independent cookies and sessions":{"*":["Разрешает независимые куки и сессии"]},"Profile Name":{"*":["Имя профиля"]},"Save":{"*":["Сохранить"]},"Loading...":{"*":["Загрузка..."]},"Detecting website information, please wait":{"*":["Обнаружение информации о сайте, пожалуйста, подождите"]},"Please enter a URL first.":{"*":["Пожалуйста, сначала введите URL."]},"Please enter a name for the WebApp.":{"*":["Пожалуйста, введите имя для WebApp."]},"Please enter a URL for the WebApp.":{"*":["Пожалуйста, введите URL для WebApp."]},"Please select a browser for the WebApp.":{"*":["Пожалуйста, выберите браузер для WebApp."]},"WebApps Manager":{"*":["Менеджер веб-приложений"]},"Search WebApps":{"*":["Поиск веб-приложений"]},"Main Menu":{"*":["Главное меню"]},"Refresh":{"*":["Обновить"]},"Export WebApps":{"*":["Экспорт веб-приложений"]},"Import WebApps":{"*":["Импортировать веб-приложения"]},"Browse Applications Folder":{"*":["Просмотреть папку приложений"]},"Browse Profiles Folder":{"*":["Просмотреть папку профилей"]},"Show Welcome Screen":{"*":["Показать экран приветствия"]},"Remove All WebApps":{"*":["Удалить все веб-приложения"]},"About":{"*":["О программе"]},"Add":{"*":["Добавить"]},"No WebApps Found":{"*":["Веб-приложения не найдены"]},"Add a new webapp to get started":{"*":["Добавьте новое веб-приложение, чтобы начать."]},"WebApp created successfully":{"*":["Веб-приложение успешно создано"]},"WebApp updated successfully":{"*":["Веб-приложение успешно обновлено"]},"Browser changed to {0}":{"*":["Браузер изменен на {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Вы уверены, что хотите удалить {0}?\n\nURL: {1}\nБраузер: {2}"]},"Also delete configuration folder":{"*":["Также удалите папку конфигурации"]},"Delete":{"*":["Удалить"]},"WebApp deleted successfully":{"*":["Веб-приложение успешно удалено"]},"REMOVE ALL":{"*":["УДАЛИТЬ ВСЕ"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Вы уверены, что хотите удалить все свои веб-приложения? Это действие нельзя отменить.\n\nВведите \"{0}\", чтобы подтвердить."]},"Remove All":{"*":["Удалить все"]},"All WebApps have been removed":{"*":["Все веб-приложения были удалены."]},"Failed to remove all WebApps":{"*":["Не удалось удалить все веб-приложения."]},"Icon {0} of {1}":{"*":["Иконка {0} из {1}"]},"WebApps exported successfully":{"*":["WebApps успешно экспортированы"]},"No WebApps":{"*":["Нет веб-приложений"]},"There are no WebApps to export.":{"*":["Нет доступных WebApps для экспорта."]},"The selected file does not exist.":{"*":["Выбранный файл не существует."]},"The selected file is not a valid ZIP archive.":{"*":["Выбранный файл не является действительным ZIP-архивом."]},"Error importing WebApps":{"*":["Ошибка импорта WebApps"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["Импортировано {} WebApps успешно (пропущено {} дубликатов)"]},"Imported {} WebApps successfully":{"*":["Успешно импортированы {} WebApps"]},"No":{"*":["Нет"]},"Yes":{"*":["Да"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/ru.po b/biglinux-webapps/locale/ru.po index ccfe5a5d..082d6c36 100644 --- a/biglinux-webapps/locale/ru.po +++ b/biglinux-webapps/locale/ru.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the biglinux-webapps package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" "Project-Id-Version: biglinux-webapps\n" @@ -14,442 +14,749 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Шаблоны" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Выберите шаблон" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Поиск шаблонов..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 -msgid "Search templates" -msgstr "Поиск шаблонов" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Результаты поиска" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Шаблоны не найдены" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 -#, python-brace-format -msgid "Browser: {0}" -msgstr "Браузер: {0}" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Редактировать веб-приложение" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 -#, python-brace-format -msgid "Edit {0}" -msgstr "Редактировать {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Удалить WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 -#, python-brace-format -msgid "Delete {0}" -msgstr "Удалить {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:20 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Добро пожаловать в WebApps Manager" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 -msgid "" -"What are WebApps?\n" -"\n" -"WebApps are web applications that run in a dedicated browser window, providing a more app-like " -"experience for your favorite websites.\n" -"\n" -"Benefits of using WebApps:\n" -"\n" -"• Focus: Work without the distractions of other browser tabs\n" -"• Desktop Integration: Quick access from your application menu\n" -"• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" -msgstr "" -"Что такое веб-приложения?\n" -"\n" -"Веб-приложения — это веб-приложения, которые работают в отдельном окне браузера, обеспечивая более " -"похожий на приложение опыт для ваших любимых веб-сайтов.\n" -"\n" -"Преимущества использования веб-приложений:\n" -"\n" -"• Фокус: Работайте без отвлекающих факторов других вкладок браузера\n" -"• Интеграция с рабочим столом: Быстрый доступ из меню приложений\n" -"• Изолированные профили: При желании, каждое веб-приложение может иметь свои собственные " -"куки и настройки\n" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Больше не показывать это снова" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Давайте начнем" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Выберите браузер" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:99 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:225 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:291 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Отмена" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Выбрать" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 -msgid "System Default" -msgstr "Системный по умолчанию" -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 -msgid "Default" -msgstr "По умолчанию" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 -msgid "Please select a browser." -msgstr "Пожалуйста, выберите браузер." -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 -msgid "Error" -msgstr "Ошибка" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "ОК" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Добавить веб-приложение" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 -msgid "Choose from templates" -msgstr "Выберите из шаблонов" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 -msgid "Detect" -msgstr "Обнаружить" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Обнаружить имя и значок с веб-сайта" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Имя" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 -msgid "App Icon" -msgstr "Иконка приложения" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 -msgid "Select icon for the WebApp" -msgstr "Выберите значок для веб-приложения" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 -msgid "Available Icons" -msgstr "Доступные значки" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Категория" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 -msgid "Application Mode" -msgstr "Режим приложения" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Открывается как родное окно без интерфейса браузера" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 +#. -- Browser row (hidden in app mode) -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Браузер" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 -msgid "Profile Settings" -msgstr "Настройки профиля" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 -msgid "Configure a separate browser profile for this webapp" -msgstr "Настройте отдельный профиль браузера для этого веб-приложения." -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -msgid "Use separate profile" -msgstr "Использовать отдельный профиль" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Разрешает независимые куки и сессии" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Имя профиля" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Сохранить" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Загрузка..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 -msgid "Detecting website information, please wait" -msgstr "Обнаружение информации о сайте, пожалуйста, подождите" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 -msgid "Please enter a URL first." -msgstr "Пожалуйста, сначала введите URL." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 -msgid "Please enter a name for the WebApp." -msgstr "Пожалуйста, введите имя для WebApp." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 -msgid "Please enter a URL for the WebApp." -msgstr "Пожалуйста, введите URL для WebApp." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 -msgid "Please select a browser for the WebApp." -msgstr "Пожалуйста, выберите браузер для WebApp." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "Менеджер веб-приложений" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Поиск веб-приложений" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 -msgid "Main Menu" -msgstr "Главное меню" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 -msgid "Refresh" -msgstr "Обновить" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Экспорт веб-приложений" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Импортировать веб-приложения" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Просмотреть папку приложений" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Просмотреть папку профилей" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 -msgid "Show Welcome Screen" -msgstr "Показать экран приветствия" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Удалить все веб-приложения" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "О программе" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 -msgid "Add" -msgstr "Добавить" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 -msgid "No WebApps Found" -msgstr "Веб-приложения не найдены" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Добавьте новое веб-приложение, чтобы начать." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "Веб-приложение успешно создано" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "Веб-приложение успешно обновлено" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 -#, python-brace-format -msgid "Browser changed to {0}" -msgstr "Браузер изменен на {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 -#, python-brace-format -msgid "" -"Are you sure you want to delete {0}?\n" -"\n" -"URL: {1}\n" -"Browser: {2}" -msgstr "" -"Вы уверены, что хотите удалить {0}?\n" -"\n" -"URL: {1}\n" -"Браузер: {2}" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Также удалите папку конфигурации" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Удалить" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "Веб-приложение успешно удалено" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 -msgid "REMOVE ALL" -msgstr "УДАЛИТЬ ВСЕ" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 -#, python-brace-format -msgid "" -"Are you sure you want to remove all your WebApps? This action cannot be undone.\n" -"\n" -"Type \"{0}\" to confirm." -msgstr "" -"Вы уверены, что хотите удалить все свои веб-приложения? Это действие нельзя отменить.\n" -"\n" -"Введите \"{0}\", чтобы подтвердить." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Удалить все" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Все веб-приложения были удалены." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Не удалось удалить все веб-приложения." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 -#, python-brace-format -msgid "Icon {0} of {1}" -msgstr "Иконка {0} из {1}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebApps успешно экспортированы" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Нет веб-приложений" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 +msgid "Change browser" +msgstr "Изменить браузер" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 +msgid "Edit" +msgstr "Редактировать" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 +msgid "New WebApp" +msgstr "Новое WebApp" + +#. -- Icon row -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 +msgid "Icon" +msgstr "Значок" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 +msgid "App Mode" +msgstr "Режим приложения" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 +msgid "Separate Profile" +msgstr "Отдельный профиль" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 +msgid "Select Icon" +msgstr "Выбрать значок" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 +msgid "Images" +msgstr "Изображения" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 +msgid "ZIP files" +msgstr "ZIP-файлы" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 +#, rust-format +msgid "Imported {imported}, skipped {dups} duplicates" +msgstr "Импортировано {imported}, пропущено {dups} дубликатов" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 +msgid "Import failed" +msgstr "Ошибка импорта" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 +msgid "Export failed" +msgstr "Ошибка экспорта" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 +msgid "" +"This will delete all webapps and their desktop entries. This cannot be " +"undone." +msgstr "" +"Это удалит все webapps и их записи на рабочем столе. Это действие нельзя " +"отменить." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 +msgid "Browser changed" +msgstr "Браузер изменён" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 +msgid "What are WebApps?" +msgstr "Что такое WebApps?" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 +msgid "" +"WebApps are web applications that run in a dedicated browser window, " +"providing a more app-like experience for your favorite websites." +msgstr "" +"WebApps — это веб-приложения, которые работают в отдельном окне браузера, " +"обеспечивая более похожий на приложение опыт для ваших любимых сайтов." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 +msgid "Benefits of using WebApps:" +msgstr "Преимущества использования WebApps:" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Focus" +msgstr "Фокус" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Work without the distractions of other browser tabs" +msgstr "Работа без отвлечений от других вкладок браузера" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Desktop Integration" +msgstr "Интеграция с рабочим столом" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Quick access from your application menu" +msgstr "Быстрый доступ из меню приложений" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Isolated Profiles" +msgstr "Изолированные профили" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Each webapp can have its own cookies and settings" +msgstr "Каждый WebApp может иметь свои собственные куки и настройки" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 +msgid "Back" +msgstr "Назад" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 +msgid "Forward" +msgstr "Вперед" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 +msgid "Reload" +msgstr "Перезагрузить" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 +msgid "Fullscreen" +msgstr "Полноэкранный режим" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 +msgid "Enter URL…" +msgstr "Введите URL…" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 +msgid "Zoom In" +msgstr "Увеличить" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 +msgid "Zoom Out" +msgstr "Уменьшить" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 +msgid "Reset Zoom" +msgstr "Сбросить масштаб" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 +msgid "Developer Tools" +msgstr "Инструменты разработчика" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 +msgid "Menu" +msgstr "Меню" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 +msgid "Open Link in Browser" +msgstr "Открыть ссылку в браузере" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 +msgid "Download Complete" +msgstr "Загрузка завершена" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 +msgid "Save File" +msgstr "Сохранить файл" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 +#~ msgid "Search templates" +#~ msgstr "Поиск шаблонов" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 +#, python-brace-format +#~ msgid "Browser: {0}" +#~ msgstr "Браузер: {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 +#, python-brace-format +#~ msgid "Edit {0}" +#~ msgstr "Редактировать {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 +#, python-brace-format +#~ msgid "Delete {0}" +#~ msgstr "Удалить {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 +#~ msgid "" +#~ "What are WebApps?\n" +#~ "\n" +#~ "WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n" +#~ "\n" +#~ "Benefits of using WebApps:\n" +#~ "\n" +#~ "• Focus: Work without the distractions of other browser tabs\n" +#~ "• Desktop Integration: Quick access from your application menu\n" +#~ "• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" +#~ msgstr "" +#~ "Что такое веб-приложения?\n" +#~ "\n" +#~ "Веб-приложения — это веб-приложения, которые работают в отдельном окне браузера, обеспечивая более похожий на приложение опыт для ваших любимых веб-сайтов.\n" +#~ "\n" +#~ "Преимущества использования веб-приложений:\n" +#~ "\n" +#~ "• Фокус: Работайте без отвлекающих факторов других вкладок браузера\n" +#~ "• Интеграция с рабочим столом: Быстрый доступ из меню приложений\n" +#~ "• Изолированные профили: При желании, каждое веб-приложение может иметь свои собственные куки и настройки\n" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 +#~ msgid "System Default" +#~ msgstr "Системный по умолчанию" + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 -msgid "There are no WebApps to export." -msgstr "Нет доступных WebApps для экспорта." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 -msgid "The selected file does not exist." -msgstr "Выбранный файл не существует." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 -msgid "The selected file is not a valid ZIP archive." -msgstr "Выбранный файл не является действительным ZIP-архивом." +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 -msgid "Error importing WebApps" -msgstr "Ошибка импорта WebApps" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 +#~ msgid "Default" +#~ msgstr "По умолчанию" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 +#~ msgid "Please select a browser." +#~ msgstr "Пожалуйста, выберите браузер." + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 -msgid "Imported {} WebApps successfully ({} duplicates skipped)" -msgstr "Импортировано {} WebApps успешно (пропущено {} дубликатов)" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 +#~ msgid "Error" +#~ msgstr "Ошибка" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 +#~ msgid "Choose from templates" +#~ msgstr "Выберите из шаблонов" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 +#~ msgid "Detect" +#~ msgstr "Обнаружить" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 +#~ msgid "App Icon" +#~ msgstr "Иконка приложения" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 +#~ msgid "Select icon for the WebApp" +#~ msgstr "Выберите значок для веб-приложения" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 +#~ msgid "Available Icons" +#~ msgstr "Доступные значки" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 +#~ msgid "Application Mode" +#~ msgstr "Режим приложения" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 +#~ msgid "Profile Settings" +#~ msgstr "Настройки профиля" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 +#~ msgid "Configure a separate browser profile for this webapp" +#~ msgstr "Настройте отдельный профиль браузера для этого веб-приложения." + +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 -msgid "Imported {} WebApps successfully" -msgstr "Успешно импортированы {} WebApps" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 -msgid "No" -msgstr "Нет" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 -msgid "Yes" -msgstr "Да" +#~ msgid "Use separate profile" +#~ msgstr "Использовать отдельный профиль" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 +#~ msgid "Detecting website information, please wait" +#~ msgstr "Обнаружение информации о сайте, пожалуйста, подождите" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 +#~ msgid "Please enter a URL first." +#~ msgstr "Пожалуйста, сначала введите URL." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 +#~ msgid "Please enter a name for the WebApp." +#~ msgstr "Пожалуйста, введите имя для WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 +#~ msgid "Please enter a URL for the WebApp." +#~ msgstr "Пожалуйста, введите URL для WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 +#~ msgid "Please select a browser for the WebApp." +#~ msgstr "Пожалуйста, выберите браузер для WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 +#~ msgid "Main Menu" +#~ msgstr "Главное меню" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 +#~ msgid "Refresh" +#~ msgstr "Обновить" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 +#~ msgid "Show Welcome Screen" +#~ msgstr "Показать экран приветствия" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 +#~ msgid "Add" +#~ msgstr "Добавить" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 +#~ msgid "No WebApps Found" +#~ msgstr "Веб-приложения не найдены" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 +#, python-brace-format +#~ msgid "Browser changed to {0}" +#~ msgstr "Браузер изменен на {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to delete {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Browser: {2}" +#~ msgstr "" +#~ "Вы уверены, что хотите удалить {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Браузер: {2}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 +#~ msgid "REMOVE ALL" +#~ msgstr "УДАЛИТЬ ВСЕ" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to remove all your WebApps? This action cannot be undone.\n" +#~ "\n" +#~ "Type \"{0}\" to confirm." +#~ msgstr "" +#~ "Вы уверены, что хотите удалить все свои веб-приложения? Это действие нельзя отменить.\n" +#~ "\n" +#~ "Введите \"{0}\", чтобы подтвердить." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 +#, python-brace-format +#~ msgid "Icon {0} of {1}" +#~ msgstr "Иконка {0} из {1}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#~ msgid "There are no WebApps to export." +#~ msgstr "Нет доступных WebApps для экспорта." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 +#~ msgid "The selected file does not exist." +#~ msgstr "Выбранный файл не существует." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 +#~ msgid "The selected file is not a valid ZIP archive." +#~ msgstr "Выбранный файл не является действительным ZIP-архивом." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 +#~ msgid "Error importing WebApps" +#~ msgstr "Ошибка импорта WebApps" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 +#~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" +#~ msgstr "Импортировано {} WebApps успешно (пропущено {} дубликатов)" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 +#~ msgid "Imported {} WebApps successfully" +#~ msgstr "Успешно импортированы {} WebApps" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 +#~ msgid "No" +#~ msgstr "Нет" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 +#~ msgid "Yes" +#~ msgstr "Да" diff --git a/biglinux-webapps/locale/sk.json b/biglinux-webapps/locale/sk.json deleted file mode 100644 index f2fc1754..00000000 --- a/biglinux-webapps/locale/sk.json +++ /dev/null @@ -1 +0,0 @@ -{"sk":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Šablóny"]},"Choose a Template":{"*":["Vyberte šablónu"]},"Search templates...":{"*":["Hľadať šablóny..."]},"Search templates":{"*":["Hľadať šablóny"]},"Search Results":{"*":["Výsledky vyhľadávania"]},"No templates found":{"*":["Žiadne šablóny nenájdené"]},"Browser: {0}":{"*":["Prehliadač: {0}"]},"Edit WebApp":{"*":["Upraviť WebApp"]},"Edit {0}":{"*":["Upraviť {0}"]},"Delete WebApp":{"*":["Odstrániť WebApp"]},"Delete {0}":{"*":["Odstrániť {0}"]},"Welcome to WebApps Manager":{"*":["Vitajte v správcovi webových aplikácií"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Čo sú WebApps?\n\nWebApps sú webové aplikácie, ktoré bežia v samostatnom okne prehliadača, čím poskytujú viac aplikáciám podobný zážitok pre vaše obľúbené webové stránky.\n\nVýhody používania WebApps:\n\n• Fokus: Pracujte bez rozptýlenia od iných kariet prehliadača\n• Integrácia s desktopom: Rýchly prístup z ponuky aplikácií\n• Izolované profily: Voliteľne, každá webová aplikácia môže mať svoje vlastné cookies a nastavenia\n"]},"Don't show this again":{"*":["Nesúhlasím s týmto znovu zobraziť."]},"Let's Start":{"*":["Začnime"]},"Select Browser":{"*":["Vyberte prehliadač"]},"Cancel":{"*":["Zrušiť"]},"Select":{"*":["Vybrať"]},"System Default":{"*":["Predvolené nastavenie systému"]},"Default":{"*":["Predvolené"]},"Please select a browser.":{"*":["Vyberte prehliadač."]},"Error":{"*":["Chyba"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Pridať WebApp"]},"Choose from templates":{"*":["Vyberte z šablón"]},"URL":{"*":["URL"]},"Detect":{"*":["Detekovať"]},"Detect name and icon from website":{"*":["Detekovať názov a ikonu z webovej stránky"]},"Name":{"*":["Názov"]},"App Icon":{"*":["Ikona aplikácie"]},"Select icon for the WebApp":{"*":["Vyberte ikonu pre WebApp"]},"Available Icons":{"*":["Dostupné ikony"]},"Category":{"*":["Kategória"]},"Application Mode":{"*":["Režim aplikácie"]},"Opens as a native window without browser interface":{"*":["Otvára sa ako natívne okno bez rozhrania prehliadača."]},"Browser":{"*":["Prehliadač"]},"Profile Settings":{"*":["Nastavenia profilu"]},"Configure a separate browser profile for this webapp":{"*":["Nakonfigurujte samostatný profil prehliadača pre túto webovú aplikáciu."]},"Use separate profile":{"*":["Použite samostatný profil"]},"Allows independent cookies and sessions":{"*":["Umožňuje nezávislé cookies a relácie"]},"Profile Name":{"*":["Názov profilu"]},"Save":{"*":["Uložiť"]},"Loading...":{"*":["Načítanie..."]},"Detecting website information, please wait":{"*":["Zisťovanie informácií o webovej stránke, prosím čakajte"]},"Please enter a URL first.":{"*":["Najprv zadajte URL."]},"Please enter a name for the WebApp.":{"*":["Zadajte názov pre WebApp."]},"Please enter a URL for the WebApp.":{"*":["Zadajte URL adresu pre WebApp."]},"Please select a browser for the WebApp.":{"*":["Vyberte pre WebApp prehliadač."]},"WebApps Manager":{"*":["Správca webových aplikácií"]},"Search WebApps":{"*":["Hľadať WebApps"]},"Main Menu":{"*":["Hlavné menu"]},"Refresh":{"*":["Obnoviť"]},"Export WebApps":{"*":["Exportovať webové aplikácie"]},"Import WebApps":{"*":["Importovať webové aplikácie"]},"Browse Applications Folder":{"*":["Prehľadávať priečinok aplikácií"]},"Browse Profiles Folder":{"*":["Prehľadávať priečinok profilov"]},"Show Welcome Screen":{"*":["Zobraziť uvítaciu obrazovku"]},"Remove All WebApps":{"*":["Odstrániť všetky webové aplikácie"]},"About":{"*":["O aplikácii"]},"Add":{"*":["Pridať"]},"No WebApps Found":{"*":["Nenašli sa žiadne webové aplikácie"]},"Add a new webapp to get started":{"*":["Pridajte novú webovú aplikáciu, aby ste mohli začať."]},"WebApp created successfully":{"*":["Webová aplikácia bola úspešne vytvorená."]},"WebApp updated successfully":{"*":["Webová aplikácia bola úspešne aktualizovaná."]},"Browser changed to {0}":{"*":["Prehliadač bol zmenený na {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Ste naozaj istí, že chcete odstrániť {0}?\n\nURL: {1}\nPrehliadač: {2}"]},"Also delete configuration folder":{"*":["Taktiež odstráňte konfiguračný priečinok."]},"Delete":{"*":["Vymazať"]},"WebApp deleted successfully":{"*":["Webová aplikácia bola úspešne odstránená."]},"REMOVE ALL":{"*":["ODSTRÁNIŤ VŠETKO"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Ste naozaj istí, že chcete odstrániť všetky svoje WebApps? Túto akciu nie je možné zrušiť.\n\nNapíšte \"{0}\" na potvrdenie."]},"Remove All":{"*":["Odstrániť všetko"]},"All WebApps have been removed":{"*":["Všetky webové aplikácie boli odstránené."]},"Failed to remove all WebApps":{"*":["Nepodarilo sa odstrániť všetky WebApps."]},"Icon {0} of {1}":{"*":["Ikona {0} z {1}"]},"WebApps exported successfully":{"*":["WebApps boli úspešne exportované"]},"No WebApps":{"*":["Žiadne webové aplikácie"]},"There are no WebApps to export.":{"*":["Nie sú žiadne webové aplikácie na export."]},"The selected file does not exist.":{"*":["Vybraný súbor neexistuje."]},"The selected file is not a valid ZIP archive.":{"*":["Vybraný súbor nie je platný ZIP archív."]},"Error importing WebApps":{"*":["Chyba pri importe WebApps"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["Úspešne importované {} WebApps ({} duplikáty preskočené)"]},"Imported {} WebApps successfully":{"*":["Úspešne importované {} WebApps"]},"No":{"*":["Nie"]},"Yes":{"*":["Áno"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/sk.po b/biglinux-webapps/locale/sk.po index 7f958b5b..db0a6d14 100644 --- a/biglinux-webapps/locale/sk.po +++ b/biglinux-webapps/locale/sk.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the biglinux-webapps package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" "Project-Id-Version: biglinux-webapps\n" @@ -14,442 +14,750 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Šablóny" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Vyberte šablónu" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Hľadať šablóny..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 -msgid "Search templates" -msgstr "Hľadať šablóny" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Výsledky vyhľadávania" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Žiadne šablóny nenájdené" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 -#, python-brace-format -msgid "Browser: {0}" -msgstr "Prehliadač: {0}" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Upraviť WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 -#, python-brace-format -msgid "Edit {0}" -msgstr "Upraviť {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Odstrániť WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 -#, python-brace-format -msgid "Delete {0}" -msgstr "Odstrániť {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:20 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Vitajte v správcovi webových aplikácií" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 -msgid "" -"What are WebApps?\n" -"\n" -"WebApps are web applications that run in a dedicated browser window, providing a more app-like " -"experience for your favorite websites.\n" -"\n" -"Benefits of using WebApps:\n" -"\n" -"• Focus: Work without the distractions of other browser tabs\n" -"• Desktop Integration: Quick access from your application menu\n" -"• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" -msgstr "" -"Čo sú WebApps?\n" -"\n" -"WebApps sú webové aplikácie, ktoré bežia v samostatnom okne prehliadača, čím poskytujú viac " -"aplikáciám podobný zážitok pre vaše obľúbené webové stránky.\n" -"\n" -"Výhody používania WebApps:\n" -"\n" -"• Fokus: Pracujte bez rozptýlenia od iných kariet prehliadača\n" -"• Integrácia s desktopom: Rýchly prístup z ponuky aplikácií\n" -"• Izolované profily: Voliteľne, každá webová aplikácia môže mať svoje vlastné cookies a " -"nastavenia\n" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Nesúhlasím s týmto znovu zobraziť." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Začnime" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Vyberte prehliadač" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:99 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:225 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:291 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Zrušiť" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Vybrať" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 -msgid "System Default" -msgstr "Predvolené nastavenie systému" -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 -msgid "Default" -msgstr "Predvolené" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 -msgid "Please select a browser." -msgstr "Vyberte prehliadač." -# # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 -msgid "Error" -msgstr "Chyba" -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "OK" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Pridať WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 -msgid "Choose from templates" -msgstr "Vyberte z šablón" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 -msgid "Detect" -msgstr "Detekovať" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Detekovať názov a ikonu z webovej stránky" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Názov" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 -msgid "App Icon" -msgstr "Ikona aplikácie" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 -msgid "Select icon for the WebApp" -msgstr "Vyberte ikonu pre WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 -msgid "Available Icons" -msgstr "Dostupné ikony" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Kategória" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 -msgid "Application Mode" -msgstr "Režim aplikácie" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Otvára sa ako natívne okno bez rozhrania prehliadača." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 +#. -- Browser row (hidden in app mode) -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Prehliadač" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 -msgid "Profile Settings" -msgstr "Nastavenia profilu" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 -msgid "Configure a separate browser profile for this webapp" -msgstr "Nakonfigurujte samostatný profil prehliadača pre túto webovú aplikáciu." -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -msgid "Use separate profile" -msgstr "Použite samostatný profil" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Umožňuje nezávislé cookies a relácie" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Názov profilu" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Uložiť" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Načítanie..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 -msgid "Detecting website information, please wait" -msgstr "Zisťovanie informácií o webovej stránke, prosím čakajte" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 -msgid "Please enter a URL first." -msgstr "Najprv zadajte URL." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 -msgid "Please enter a name for the WebApp." -msgstr "Zadajte názov pre WebApp." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 -msgid "Please enter a URL for the WebApp." -msgstr "Zadajte URL adresu pre WebApp." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 -msgid "Please select a browser for the WebApp." -msgstr "Vyberte pre WebApp prehliadač." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "Správca webových aplikácií" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Hľadať WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 -msgid "Main Menu" -msgstr "Hlavné menu" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 -msgid "Refresh" -msgstr "Obnoviť" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Exportovať webové aplikácie" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Importovať webové aplikácie" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Prehľadávať priečinok aplikácií" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Prehľadávať priečinok profilov" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 -msgid "Show Welcome Screen" -msgstr "Zobraziť uvítaciu obrazovku" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Odstrániť všetky webové aplikácie" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "O aplikácii" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 -msgid "Add" -msgstr "Pridať" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 -msgid "No WebApps Found" -msgstr "Nenašli sa žiadne webové aplikácie" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Pridajte novú webovú aplikáciu, aby ste mohli začať." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "Webová aplikácia bola úspešne vytvorená." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "Webová aplikácia bola úspešne aktualizovaná." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 -#, python-brace-format -msgid "Browser changed to {0}" -msgstr "Prehliadač bol zmenený na {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 -#, python-brace-format -msgid "" -"Are you sure you want to delete {0}?\n" -"\n" -"URL: {1}\n" -"Browser: {2}" -msgstr "" -"Ste naozaj istí, že chcete odstrániť {0}?\n" -"\n" -"URL: {1}\n" -"Prehliadač: {2}" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Taktiež odstráňte konfiguračný priečinok." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Vymazať" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "Webová aplikácia bola úspešne odstránená." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 -msgid "REMOVE ALL" -msgstr "ODSTRÁNIŤ VŠETKO" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 -#, python-brace-format -msgid "" -"Are you sure you want to remove all your WebApps? This action cannot be undone.\n" -"\n" -"Type \"{0}\" to confirm." -msgstr "" -"Ste naozaj istí, že chcete odstrániť všetky svoje WebApps? Túto akciu nie je možné zrušiť.\n" -"\n" -"Napíšte \"{0}\" na potvrdenie." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Odstrániť všetko" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Všetky webové aplikácie boli odstránené." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Nepodarilo sa odstrániť všetky WebApps." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 -#, python-brace-format -msgid "Icon {0} of {1}" -msgstr "Ikona {0} z {1}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebApps boli úspešne exportované" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Žiadne webové aplikácie" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 +msgid "Change browser" +msgstr "Zmeniť prehliadač" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 +msgid "Edit" +msgstr "Upraviť" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 +msgid "New WebApp" +msgstr "Nová WebApp" + +#. -- Icon row -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 +msgid "Icon" +msgstr "Ikona" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 +msgid "App Mode" +msgstr "Režim aplikácie" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 +msgid "Separate Profile" +msgstr "Samostatný profil" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 +msgid "Select Icon" +msgstr "Vybrať ikonu" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 +msgid "Images" +msgstr "Obrázky" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 +msgid "ZIP files" +msgstr "ZIP súbory" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 +#, rust-format +msgid "Imported {imported}, skipped {dups} duplicates" +msgstr "Importované {imported}, preskočené {dups} duplikáty" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 +msgid "Import failed" +msgstr "Import zlyhal" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 +msgid "Export failed" +msgstr "Export zlyhal" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 +msgid "" +"This will delete all webapps and their desktop entries. This cannot be " +"undone." +msgstr "" +"Týmto sa vymažú všetky webové aplikácie a ich záznamy na ploche. Toto sa " +"nedá vrátiť späť." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 +msgid "Browser changed" +msgstr "Prehliadač zmenený" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 +msgid "What are WebApps?" +msgstr "Čo sú WebApps?" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 +msgid "" +"WebApps are web applications that run in a dedicated browser window, " +"providing a more app-like experience for your favorite websites." +msgstr "" +"WebApps sú webové aplikácie, ktoré bežia v samostatnom okne prehliadača a " +"poskytujú viac aplikácii podobný zážitok pre vaše obľúbené webové stránky." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 +msgid "Benefits of using WebApps:" +msgstr "Výhody používania WebApps:" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Focus" +msgstr "Sústreďte sa" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Work without the distractions of other browser tabs" +msgstr "Pracujte bez rozptýlení z iných kariet prehliadača" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Desktop Integration" +msgstr "Integrácia na pracovnú plochu" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Quick access from your application menu" +msgstr "Rýchly prístup z vášho aplikačného menu" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Isolated Profiles" +msgstr "Izolované profily" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Each webapp can have its own cookies and settings" +msgstr "Každý webapp môže mať vlastné cookies a nastavenia" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 +msgid "Back" +msgstr "Späť" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 +msgid "Forward" +msgstr "Vpred" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 +msgid "Reload" +msgstr "Obnoviť" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 +msgid "Fullscreen" +msgstr "Celá obrazovka" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 +msgid "Enter URL…" +msgstr "Zadajte URL…" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 +msgid "Zoom In" +msgstr "Priblížiť" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 +msgid "Zoom Out" +msgstr "Oddialiť" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 +msgid "Reset Zoom" +msgstr "Obnoviť zväčšenie" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 +msgid "Developer Tools" +msgstr "Nástroje pre vývojárov" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 +msgid "Menu" +msgstr "Menu" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 +msgid "Open Link in Browser" +msgstr "Otvoriť odkaz v prehliadači" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 +msgid "Download Complete" +msgstr "Sťahovanie dokončené" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 +msgid "Save File" +msgstr "Uložiť súbor" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 +#~ msgid "Search templates" +#~ msgstr "Hľadať šablóny" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 +#, python-brace-format +#~ msgid "Browser: {0}" +#~ msgstr "Prehliadač: {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 +#, python-brace-format +#~ msgid "Edit {0}" +#~ msgstr "Upraviť {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 +#, python-brace-format +#~ msgid "Delete {0}" +#~ msgstr "Odstrániť {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 +#~ msgid "" +#~ "What are WebApps?\n" +#~ "\n" +#~ "WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n" +#~ "\n" +#~ "Benefits of using WebApps:\n" +#~ "\n" +#~ "• Focus: Work without the distractions of other browser tabs\n" +#~ "• Desktop Integration: Quick access from your application menu\n" +#~ "• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" +#~ msgstr "" +#~ "Čo sú WebApps?\n" +#~ "\n" +#~ "WebApps sú webové aplikácie, ktoré bežia v samostatnom okne prehliadača, čím poskytujú viac aplikáciám podobný zážitok pre vaše obľúbené webové stránky.\n" +#~ "\n" +#~ "Výhody používania WebApps:\n" +#~ "\n" +#~ "• Fokus: Pracujte bez rozptýlenia od iných kariet prehliadača\n" +#~ "• Integrácia s desktopom: Rýchly prístup z ponuky aplikácií\n" +#~ "• Izolované profily: Voliteľne, každá webová aplikácia môže mať svoje vlastné cookies a nastavenia\n" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 +#~ msgid "System Default" +#~ msgstr "Predvolené nastavenie systému" + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 -msgid "There are no WebApps to export." -msgstr "Nie sú žiadne webové aplikácie na export." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 -msgid "The selected file does not exist." -msgstr "Vybraný súbor neexistuje." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 -msgid "The selected file is not a valid ZIP archive." -msgstr "Vybraný súbor nie je platný ZIP archív." +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 -msgid "Error importing WebApps" -msgstr "Chyba pri importe WebApps" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 +#~ msgid "Default" +#~ msgstr "Predvolené" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 +#~ msgid "Please select a browser." +#~ msgstr "Vyberte prehliadač." + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 -msgid "Imported {} WebApps successfully ({} duplicates skipped)" -msgstr "Úspešne importované {} WebApps ({} duplikáty preskočené)" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 +#~ msgid "Error" +#~ msgstr "Chyba" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 +#~ msgid "Choose from templates" +#~ msgstr "Vyberte z šablón" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 +#~ msgid "Detect" +#~ msgstr "Detekovať" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 +#~ msgid "App Icon" +#~ msgstr "Ikona aplikácie" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 +#~ msgid "Select icon for the WebApp" +#~ msgstr "Vyberte ikonu pre WebApp" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 +#~ msgid "Available Icons" +#~ msgstr "Dostupné ikony" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 +#~ msgid "Application Mode" +#~ msgstr "Režim aplikácie" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 +#~ msgid "Profile Settings" +#~ msgstr "Nastavenia profilu" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 +#~ msgid "Configure a separate browser profile for this webapp" +#~ msgstr "" +#~ "Nakonfigurujte samostatný profil prehliadača pre túto webovú aplikáciu." + +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 -msgid "Imported {} WebApps successfully" -msgstr "Úspešne importované {} WebApps" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 -msgid "No" -msgstr "Nie" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 -msgid "Yes" -msgstr "Áno" +#~ msgid "Use separate profile" +#~ msgstr "Použite samostatný profil" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 +#~ msgid "Detecting website information, please wait" +#~ msgstr "Zisťovanie informácií o webovej stránke, prosím čakajte" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 +#~ msgid "Please enter a URL first." +#~ msgstr "Najprv zadajte URL." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 +#~ msgid "Please enter a name for the WebApp." +#~ msgstr "Zadajte názov pre WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 +#~ msgid "Please enter a URL for the WebApp." +#~ msgstr "Zadajte URL adresu pre WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 +#~ msgid "Please select a browser for the WebApp." +#~ msgstr "Vyberte pre WebApp prehliadač." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 +#~ msgid "Main Menu" +#~ msgstr "Hlavné menu" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 +#~ msgid "Refresh" +#~ msgstr "Obnoviť" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 +#~ msgid "Show Welcome Screen" +#~ msgstr "Zobraziť uvítaciu obrazovku" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 +#~ msgid "Add" +#~ msgstr "Pridať" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 +#~ msgid "No WebApps Found" +#~ msgstr "Nenašli sa žiadne webové aplikácie" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 +#, python-brace-format +#~ msgid "Browser changed to {0}" +#~ msgstr "Prehliadač bol zmenený na {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to delete {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Browser: {2}" +#~ msgstr "" +#~ "Ste naozaj istí, že chcete odstrániť {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Prehliadač: {2}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 +#~ msgid "REMOVE ALL" +#~ msgstr "ODSTRÁNIŤ VŠETKO" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to remove all your WebApps? This action cannot be undone.\n" +#~ "\n" +#~ "Type \"{0}\" to confirm." +#~ msgstr "" +#~ "Ste naozaj istí, že chcete odstrániť všetky svoje WebApps? Túto akciu nie je možné zrušiť.\n" +#~ "\n" +#~ "Napíšte \"{0}\" na potvrdenie." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 +#, python-brace-format +#~ msgid "Icon {0} of {1}" +#~ msgstr "Ikona {0} z {1}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#~ msgid "There are no WebApps to export." +#~ msgstr "Nie sú žiadne webové aplikácie na export." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 +#~ msgid "The selected file does not exist." +#~ msgstr "Vybraný súbor neexistuje." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 +#~ msgid "The selected file is not a valid ZIP archive." +#~ msgstr "Vybraný súbor nie je platný ZIP archív." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 +#~ msgid "Error importing WebApps" +#~ msgstr "Chyba pri importe WebApps" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 +#~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" +#~ msgstr "Úspešne importované {} WebApps ({} duplikáty preskočené)" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 +#~ msgid "Imported {} WebApps successfully" +#~ msgstr "Úspešne importované {} WebApps" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 +#~ msgid "No" +#~ msgstr "Nie" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 +#~ msgid "Yes" +#~ msgstr "Áno" diff --git a/biglinux-webapps/locale/sv.json b/biglinux-webapps/locale/sv.json deleted file mode 100644 index e8a42763..00000000 --- a/biglinux-webapps/locale/sv.json +++ /dev/null @@ -1 +0,0 @@ -{"sv":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Mallar"]},"Choose a Template":{"*":["Välj en mall"]},"Search templates...":{"*":["Sök mallar..."]},"Search templates":{"*":["Sök mallar"]},"Search Results":{"*":["Sökresultat"]},"No templates found":{"*":["Inga mallar hittades"]},"Browser: {0}":{"*":["Webbläsare: {0}"]},"Edit WebApp":{"*":["Redigera WebApp"]},"Edit {0}":{"*":["Redigera {0}"]},"Delete WebApp":{"*":["Ta bort WebApp"]},"Delete {0}":{"*":["Ta bort {0}"]},"Welcome to WebApps Manager":{"*":["Välkommen till WebApps Manager"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Vad är WebApps?\n\nWebApps är webbapplikationer som körs i ett dedikerat webbläsarfönster, vilket ger en mer app-liknande upplevelse för dina favoritwebbplatser.\n\nFördelar med att använda WebApps:\n\n• Fokus: Arbeta utan distraktioner från andra webbläsartabbar\n• Skrivbordsintegration: Snabb åtkomst från din applikationsmeny\n• Isolerade profiler: Valfritt kan varje webapp ha sina egna cookies och inställningar\n"]},"Don't show this again":{"*":["Visa inte detta igen"]},"Let's Start":{"*":["Låt oss börja"]},"Select Browser":{"*":["Välj webbläsare"]},"Cancel":{"*":["Avbryt"]},"Select":{"*":["Välj"]},"System Default":{"*":["Systemstandard"]},"Default":{"*":["Standard"]},"Please select a browser.":{"*":["Vänligen välj en webbläsare."]},"Error":{"*":["Fel"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Lägg till WebApp"]},"Choose from templates":{"*":["Välj från mallar"]},"URL":{"*":["URL"]},"Detect":{"*":["Upptäck"]},"Detect name and icon from website":{"*":["Detektera namn och ikon från webbplats."]},"Name":{"*":["Namn"]},"App Icon":{"*":["App-ikon"]},"Select icon for the WebApp":{"*":["Välj ikon för WebApp"]},"Available Icons":{"*":["Tillgängliga ikoner"]},"Category":{"*":["Kategori"]},"Application Mode":{"*":["Applikationsläge"]},"Opens as a native window without browser interface":{"*":["Öppnas som ett inbyggt fönster utan webbläsargränssnitt"]},"Browser":{"*":["Webbläsare"]},"Profile Settings":{"*":["Profilinställningar"]},"Configure a separate browser profile for this webapp":{"*":["Konfigurera en separat webbläsarprofil för denna webbapp"]},"Use separate profile":{"*":["Använd separat profil"]},"Allows independent cookies and sessions":{"*":["Tillåter oberoende cookies och sessioner"]},"Profile Name":{"*":["Profilnamn"]},"Save":{"*":["Spara"]},"Loading...":{"*":["Laddar..."]},"Detecting website information, please wait":{"*":["Upptäckter webbplatsinformation, vänligen vänta"]},"Please enter a URL first.":{"*":["Vänligen ange en URL först."]},"Please enter a name for the WebApp.":{"*":["Vänligen ange ett namn för WebAppen."]},"Please enter a URL for the WebApp.":{"*":["Vänligen ange en URL för WebAppen."]},"Please select a browser for the WebApp.":{"*":["Vänligen välj en webbläsare för WebApp."]},"WebApps Manager":{"*":["WebApps Hanterare"]},"Search WebApps":{"*":["Sök WebApps"]},"Main Menu":{"*":["Huvudmeny"]},"Refresh":{"*":["Uppdatera"]},"Export WebApps":{"*":["Exportera WebApps"]},"Import WebApps":{"*":["Importera WebApps"]},"Browse Applications Folder":{"*":["Bläddra i mappen Program"]},"Browse Profiles Folder":{"*":["Bläddra i profiler-mappen"]},"Show Welcome Screen":{"*":["Visa välkomstskärm"]},"Remove All WebApps":{"*":["Ta bort alla webbappar"]},"About":{"*":["Om"]},"Add":{"*":["Lägg till"]},"No WebApps Found":{"*":["Inga WebApps hittades"]},"Add a new webapp to get started":{"*":["Lägg till en ny webbapp för att komma igång"]},"WebApp created successfully":{"*":["WebApp skapad framgångsrikt"]},"WebApp updated successfully":{"*":["WebApp uppdaterad framgångsrikt"]},"Browser changed to {0}":{"*":["Webbläsare ändrad till {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Är du säker på att du vill ta bort {0}?\n\nURL: {1}\nWebbläsare: {2}"]},"Also delete configuration folder":{"*":["Ta bort konfigurationsmappen också."]},"Delete":{"*":["Ta bort"]},"WebApp deleted successfully":{"*":["WebApp raderades framgångsrikt"]},"REMOVE ALL":{"*":["TA BORT ALLT"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Är du säker på att du vill ta bort alla dina WebApps? Denna åtgärd kan inte ångras.\n\nSkriv \"{0}\" för att bekräfta."]},"Remove All":{"*":["Ta bort allt"]},"All WebApps have been removed":{"*":["Alla WebApps har tagits bort."]},"Failed to remove all WebApps":{"*":["Misslyckades med att ta bort alla WebApps"]},"Icon {0} of {1}":{"*":["Ikon {0} av {1}"]},"WebApps exported successfully":{"*":["WebApps exporterades framgångsrikt"]},"No WebApps":{"*":["Inga WebApps"]},"There are no WebApps to export.":{"*":["Det finns inga WebApps att exportera."]},"The selected file does not exist.":{"*":["Den valda filen finns inte."]},"The selected file is not a valid ZIP archive.":{"*":["Den valda filen är inte ett giltigt ZIP-arkiv."]},"Error importing WebApps":{"*":["Fel vid import av WebApps"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["Importerade {} WebApps framgångsrikt ({} dubbletter hoppades över)"]},"Imported {} WebApps successfully":{"*":["Importerade {} WebApps framgångsrikt"]},"No":{"*":["Nej"]},"Yes":{"*":["Ja"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/sv.po b/biglinux-webapps/locale/sv.po index 29a574a8..faaf85f7 100644 --- a/biglinux-webapps/locale/sv.po +++ b/biglinux-webapps/locale/sv.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the biglinux-webapps package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" "Project-Id-Version: biglinux-webapps\n" @@ -14,441 +14,749 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Mallar" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Välj en mall" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Sök mallar..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 -msgid "Search templates" -msgstr "Sök mallar" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Sökresultat" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Inga mallar hittades" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 -#, python-brace-format -msgid "Browser: {0}" -msgstr "Webbläsare: {0}" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Redigera WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 -#, python-brace-format -msgid "Edit {0}" -msgstr "Redigera {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Ta bort WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 -#, python-brace-format -msgid "Delete {0}" -msgstr "Ta bort {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:20 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Välkommen till WebApps Manager" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 -msgid "" -"What are WebApps?\n" -"\n" -"WebApps are web applications that run in a dedicated browser window, providing a more app-like " -"experience for your favorite websites.\n" -"\n" -"Benefits of using WebApps:\n" -"\n" -"• Focus: Work without the distractions of other browser tabs\n" -"• Desktop Integration: Quick access from your application menu\n" -"• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" -msgstr "" -"Vad är WebApps?\n" -"\n" -"WebApps är webbapplikationer som körs i ett dedikerat webbläsarfönster, vilket ger en mer " -"app-liknande upplevelse för dina favoritwebbplatser.\n" -"\n" -"Fördelar med att använda WebApps:\n" -"\n" -"• Fokus: Arbeta utan distraktioner från andra webbläsartabbar\n" -"• Skrivbordsintegration: Snabb åtkomst från din applikationsmeny\n" -"• Isolerade profiler: Valfritt kan varje webapp ha sina egna cookies och inställningar\n" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Visa inte detta igen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Låt oss börja" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Välj webbläsare" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:99 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:225 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:291 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Avbryt" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Välj" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 -msgid "System Default" -msgstr "Systemstandard" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 -msgid "Default" -msgstr "Standard" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 -msgid "Please select a browser." -msgstr "Vänligen välj en webbläsare." -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 -msgid "Error" -msgstr "Fel" -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "OK" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Lägg till WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 -msgid "Choose from templates" -msgstr "Välj från mallar" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 -msgid "Detect" -msgstr "Upptäck" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Detektera namn och ikon från webbplats." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Namn" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 -msgid "App Icon" -msgstr "App-ikon" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 -msgid "Select icon for the WebApp" -msgstr "Välj ikon för WebApp" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 -msgid "Available Icons" -msgstr "Tillgängliga ikoner" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Kategori" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 -msgid "Application Mode" -msgstr "Applikationsläge" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Öppnas som ett inbyggt fönster utan webbläsargränssnitt" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 +#. -- Browser row (hidden in app mode) -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Webbläsare" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 -msgid "Profile Settings" -msgstr "Profilinställningar" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 -msgid "Configure a separate browser profile for this webapp" -msgstr "Konfigurera en separat webbläsarprofil för denna webbapp" -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -msgid "Use separate profile" -msgstr "Använd separat profil" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Tillåter oberoende cookies och sessioner" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Profilnamn" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Spara" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Laddar..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 -msgid "Detecting website information, please wait" -msgstr "Upptäckter webbplatsinformation, vänligen vänta" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 -msgid "Please enter a URL first." -msgstr "Vänligen ange en URL först." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 -msgid "Please enter a name for the WebApp." -msgstr "Vänligen ange ett namn för WebAppen." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 -msgid "Please enter a URL for the WebApp." -msgstr "Vänligen ange en URL för WebAppen." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 -msgid "Please select a browser for the WebApp." -msgstr "Vänligen välj en webbläsare för WebApp." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "WebApps Hanterare" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Sök WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 -msgid "Main Menu" -msgstr "Huvudmeny" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 -msgid "Refresh" -msgstr "Uppdatera" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Exportera WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Importera WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Bläddra i mappen Program" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Bläddra i profiler-mappen" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 -msgid "Show Welcome Screen" -msgstr "Visa välkomstskärm" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Ta bort alla webbappar" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "Om" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 -msgid "Add" -msgstr "Lägg till" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 -msgid "No WebApps Found" -msgstr "Inga WebApps hittades" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Lägg till en ny webbapp för att komma igång" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "WebApp skapad framgångsrikt" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "WebApp uppdaterad framgångsrikt" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 -#, python-brace-format -msgid "Browser changed to {0}" -msgstr "Webbläsare ändrad till {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 -#, python-brace-format -msgid "" -"Are you sure you want to delete {0}?\n" -"\n" -"URL: {1}\n" -"Browser: {2}" -msgstr "" -"Är du säker på att du vill ta bort {0}?\n" -"\n" -"URL: {1}\n" -"Webbläsare: {2}" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Ta bort konfigurationsmappen också." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Ta bort" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "WebApp raderades framgångsrikt" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 -msgid "REMOVE ALL" -msgstr "TA BORT ALLT" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 -#, python-brace-format -msgid "" -"Are you sure you want to remove all your WebApps? This action cannot be undone.\n" -"\n" -"Type \"{0}\" to confirm." -msgstr "" -"Är du säker på att du vill ta bort alla dina WebApps? Denna åtgärd kan inte ångras.\n" -"\n" -"Skriv \"{0}\" för att bekräfta." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Ta bort allt" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Alla WebApps har tagits bort." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Misslyckades med att ta bort alla WebApps" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 -#, python-brace-format -msgid "Icon {0} of {1}" -msgstr "Ikon {0} av {1}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebApps exporterades framgångsrikt" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Inga WebApps" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 +msgid "Change browser" +msgstr "Byt webbläsare" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 +msgid "Edit" +msgstr "Redigera" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 +msgid "New WebApp" +msgstr "Ny WebApp" + +#. -- Icon row -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 +msgid "Icon" +msgstr "Ikon" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 +msgid "App Mode" +msgstr "App-läge" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 +msgid "Separate Profile" +msgstr "Separat profil" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 +msgid "Select Icon" +msgstr "Välj ikon" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 +msgid "Images" +msgstr "Bilder" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 +msgid "ZIP files" +msgstr "ZIP-filer" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 +#, rust-format +msgid "Imported {imported}, skipped {dups} duplicates" +msgstr "Importerade {imported}, hoppade över {dups} dubbletter" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 +msgid "Import failed" +msgstr "Import misslyckades" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 +msgid "Export failed" +msgstr "Export misslyckades" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 +msgid "" +"This will delete all webapps and their desktop entries. This cannot be " +"undone." +msgstr "" +"Detta kommer att ta bort alla webappar och deras skrivbordsgenvägar. Detta " +"kan inte ångras." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 +msgid "Browser changed" +msgstr "Webbläsare ändrad" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 +msgid "What are WebApps?" +msgstr "Vad är WebApps?" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 +msgid "" +"WebApps are web applications that run in a dedicated browser window, " +"providing a more app-like experience for your favorite websites." +msgstr "" +"WebApps är webbapplikationer som körs i ett dedikerat webbläsarfönster och " +"ger en mer app-liknande upplevelse för dina favoritwebbplatser." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 +msgid "Benefits of using WebApps:" +msgstr "Fördelar med att använda WebApps:" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Focus" +msgstr "Fokus" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Work without the distractions of other browser tabs" +msgstr "Arbeta utan distraktioner från andra webbläsarflikar" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Desktop Integration" +msgstr "Skrivbordsintegration" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Quick access from your application menu" +msgstr "Snabb åtkomst från din applikationsmeny" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Isolated Profiles" +msgstr "Isolerade profiler" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Each webapp can have its own cookies and settings" +msgstr "Varje webapp kan ha sina egna cookies och inställningar" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 +msgid "Back" +msgstr "Tillbaka" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 +msgid "Forward" +msgstr "Framåt" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 +msgid "Reload" +msgstr "Ladda om" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 +msgid "Fullscreen" +msgstr "Fullskärm" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 +msgid "Enter URL…" +msgstr "Ange URL…" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 +msgid "Zoom In" +msgstr "Zooma in" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 +msgid "Zoom Out" +msgstr "Zooma ut" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 +msgid "Reset Zoom" +msgstr "Återställ zoom" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 +msgid "Developer Tools" +msgstr "Utvecklarverktyg" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 +msgid "Menu" +msgstr "Meny" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 +msgid "Open Link in Browser" +msgstr "Öppna länk i webbläsare" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 +msgid "Download Complete" +msgstr "Nedladdning klar" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 +msgid "Save File" +msgstr "Spara fil" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 +#~ msgid "Search templates" +#~ msgstr "Sök mallar" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 +#, python-brace-format +#~ msgid "Browser: {0}" +#~ msgstr "Webbläsare: {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 +#, python-brace-format +#~ msgid "Edit {0}" +#~ msgstr "Redigera {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 +#, python-brace-format +#~ msgid "Delete {0}" +#~ msgstr "Ta bort {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 +#~ msgid "" +#~ "What are WebApps?\n" +#~ "\n" +#~ "WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n" +#~ "\n" +#~ "Benefits of using WebApps:\n" +#~ "\n" +#~ "• Focus: Work without the distractions of other browser tabs\n" +#~ "• Desktop Integration: Quick access from your application menu\n" +#~ "• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" +#~ msgstr "" +#~ "Vad är WebApps?\n" +#~ "\n" +#~ "WebApps är webbapplikationer som körs i ett dedikerat webbläsarfönster, vilket ger en mer app-liknande upplevelse för dina favoritwebbplatser.\n" +#~ "\n" +#~ "Fördelar med att använda WebApps:\n" +#~ "\n" +#~ "• Fokus: Arbeta utan distraktioner från andra webbläsartabbar\n" +#~ "• Skrivbordsintegration: Snabb åtkomst från din applikationsmeny\n" +#~ "• Isolerade profiler: Valfritt kan varje webapp ha sina egna cookies och inställningar\n" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 +#~ msgid "System Default" +#~ msgstr "Systemstandard" + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 -msgid "There are no WebApps to export." -msgstr "Det finns inga WebApps att exportera." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 -msgid "The selected file does not exist." -msgstr "Den valda filen finns inte." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 -msgid "The selected file is not a valid ZIP archive." -msgstr "Den valda filen är inte ett giltigt ZIP-arkiv." +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 -msgid "Error importing WebApps" -msgstr "Fel vid import av WebApps" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 +#~ msgid "Default" +#~ msgstr "Standard" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 +#~ msgid "Please select a browser." +#~ msgstr "Vänligen välj en webbläsare." + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 -msgid "Imported {} WebApps successfully ({} duplicates skipped)" -msgstr "Importerade {} WebApps framgångsrikt ({} dubbletter hoppades över)" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 +#~ msgid "Error" +#~ msgstr "Fel" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 +#~ msgid "Choose from templates" +#~ msgstr "Välj från mallar" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 +#~ msgid "Detect" +#~ msgstr "Upptäck" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 +#~ msgid "App Icon" +#~ msgstr "App-ikon" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 +#~ msgid "Select icon for the WebApp" +#~ msgstr "Välj ikon för WebApp" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 +#~ msgid "Available Icons" +#~ msgstr "Tillgängliga ikoner" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 +#~ msgid "Application Mode" +#~ msgstr "Applikationsläge" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 +#~ msgid "Profile Settings" +#~ msgstr "Profilinställningar" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 +#~ msgid "Configure a separate browser profile for this webapp" +#~ msgstr "Konfigurera en separat webbläsarprofil för denna webbapp" + +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 -msgid "Imported {} WebApps successfully" -msgstr "Importerade {} WebApps framgångsrikt" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 -msgid "No" -msgstr "Nej" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 -msgid "Yes" -msgstr "Ja" +#~ msgid "Use separate profile" +#~ msgstr "Använd separat profil" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 +#~ msgid "Detecting website information, please wait" +#~ msgstr "Upptäckter webbplatsinformation, vänligen vänta" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 +#~ msgid "Please enter a URL first." +#~ msgstr "Vänligen ange en URL först." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 +#~ msgid "Please enter a name for the WebApp." +#~ msgstr "Vänligen ange ett namn för WebAppen." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 +#~ msgid "Please enter a URL for the WebApp." +#~ msgstr "Vänligen ange en URL för WebAppen." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 +#~ msgid "Please select a browser for the WebApp." +#~ msgstr "Vänligen välj en webbläsare för WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 +#~ msgid "Main Menu" +#~ msgstr "Huvudmeny" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 +#~ msgid "Refresh" +#~ msgstr "Uppdatera" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 +#~ msgid "Show Welcome Screen" +#~ msgstr "Visa välkomstskärm" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 +#~ msgid "Add" +#~ msgstr "Lägg till" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 +#~ msgid "No WebApps Found" +#~ msgstr "Inga WebApps hittades" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 +#, python-brace-format +#~ msgid "Browser changed to {0}" +#~ msgstr "Webbläsare ändrad till {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to delete {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Browser: {2}" +#~ msgstr "" +#~ "Är du säker på att du vill ta bort {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Webbläsare: {2}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 +#~ msgid "REMOVE ALL" +#~ msgstr "TA BORT ALLT" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to remove all your WebApps? This action cannot be undone.\n" +#~ "\n" +#~ "Type \"{0}\" to confirm." +#~ msgstr "" +#~ "Är du säker på att du vill ta bort alla dina WebApps? Denna åtgärd kan inte ångras.\n" +#~ "\n" +#~ "Skriv \"{0}\" för att bekräfta." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 +#, python-brace-format +#~ msgid "Icon {0} of {1}" +#~ msgstr "Ikon {0} av {1}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#~ msgid "There are no WebApps to export." +#~ msgstr "Det finns inga WebApps att exportera." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 +#~ msgid "The selected file does not exist." +#~ msgstr "Den valda filen finns inte." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 +#~ msgid "The selected file is not a valid ZIP archive." +#~ msgstr "Den valda filen är inte ett giltigt ZIP-arkiv." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 +#~ msgid "Error importing WebApps" +#~ msgstr "Fel vid import av WebApps" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 +#~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" +#~ msgstr "Importerade {} WebApps framgångsrikt ({} dubbletter hoppades över)" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 +#~ msgid "Imported {} WebApps successfully" +#~ msgstr "Importerade {} WebApps framgångsrikt" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 +#~ msgid "No" +#~ msgstr "Nej" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 +#~ msgid "Yes" +#~ msgstr "Ja" diff --git a/biglinux-webapps/locale/tr.json b/biglinux-webapps/locale/tr.json deleted file mode 100644 index dab125f0..00000000 --- a/biglinux-webapps/locale/tr.json +++ /dev/null @@ -1 +0,0 @@ -{"tr":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Şablonlar"]},"Choose a Template":{"*":["Bir Şablon Seçin"]},"Search templates...":{"*":["Şablonları ara..."]},"Search templates":{"*":["Şablonları ara"]},"Search Results":{"*":["Arama Sonuçları"]},"No templates found":{"*":["Şablon bulunamadı"]},"Browser: {0}":{"*":["Tarayıcı: {0}"]},"Edit WebApp":{"*":["Web Uygulamasını Düzenle"]},"Edit {0}":{"*":["{0} düzenle"]},"Delete WebApp":{"*":["WebApp'i Sil"]},"Delete {0}":{"*":["{0} sil."]},"Welcome to WebApps Manager":{"*":["Web Uygulamaları Yöneticisi'ne Hoş Geldiniz"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Web Uygulamaları nedir?\n\nWeb Uygulamaları, özel bir tarayıcı penceresinde çalışan web uygulamalarıdır ve favori web siteleriniz için daha uygulama benzeri bir deneyim sunar.\n\nWeb Uygulamaları kullanmanın avantajları:\n\n• Odaklanma: Diğer tarayıcı sekmelerinin dikkat dağıtıcı etkisi olmadan çalışma\n• masaüstü entegrasyonu: Uygulama menünüzden hızlı erişim\n• İzolasyonlu Profiller: İsteğe bağlı olarak, her web uygulaması kendi çerezlerine ve ayarlarına sahip olabilir\n"]},"Don't show this again":{"*":["Bunu bir daha gösterme."]},"Let's Start":{"*":["Başlayalım"]},"Select Browser":{"*":["Tarayıcıyı Seçin"]},"Cancel":{"*":["İptal et"]},"Select":{"*":["Seçin"]},"System Default":{"*":["Sistem Varsayılanı"]},"Default":{"*":["Varsayılan"]},"Please select a browser.":{"*":["Lütfen bir tarayıcı seçin."]},"Error":{"*":["Hata"]},"OK":{"*":["Tamam"]},"Add WebApp":{"*":["Web Uygulaması Ekle"]},"Choose from templates":{"*":["Şablonlardan seçin"]},"URL":{"*":["URL"]},"Detect":{"*":["Algıla"]},"Detect name and icon from website":{"*":["Web sitesinden isim ve simgeyi tespit et"]},"Name":{"*":["İsim"]},"App Icon":{"*":["Uygulama İkonu"]},"Select icon for the WebApp":{"*":["WebApp için simge seçin"]},"Available Icons":{"*":["Mevcut Simge"]},"Category":{"*":["Kategori"]},"Application Mode":{"*":["Uygulama Modu"]},"Opens as a native window without browser interface":{"*":["Tarayıcı arayüzü olmadan yerel bir pencere olarak açılır."]},"Browser":{"*":["Tarayıcı"]},"Profile Settings":{"*":["Profil Ayarları"]},"Configure a separate browser profile for this webapp":{"*":["Bu web uygulaması için ayrı bir tarayıcı profili yapılandırın."]},"Use separate profile":{"*":["Ayrı profil kullanın"]},"Allows independent cookies and sessions":{"*":["Bağımsız çerezler ve oturumlar sağlar."]},"Profile Name":{"*":["Profil Adı"]},"Save":{"*":["Kaydet"]},"Loading...":{"*":["Yükleniyor..."]},"Detecting website information, please wait":{"*":["Web sitesi bilgileri tespit ediliyor, lütfen bekleyin."]},"Please enter a URL first.":{"*":["Lütfen önce bir URL girin."]},"Please enter a name for the WebApp.":{"*":["Lütfen WebApp için bir isim girin."]},"Please enter a URL for the WebApp.":{"*":["Lütfen WebApp için bir URL girin."]},"Please select a browser for the WebApp.":{"*":["Lütfen WebApp için bir tarayıcı seçin."]},"WebApps Manager":{"*":["Web Uygulamaları Yöneticisi"]},"Search WebApps":{"*":["Web Uygulamaları Ara"]},"Main Menu":{"*":["Ana Menü"]},"Refresh":{"*":["Yenile"]},"Export WebApps":{"*":["Web Uygulamalarını Dışa Aktar"]},"Import WebApps":{"*":["Web Uygulamaları İçe Aktar"]},"Browse Applications Folder":{"*":["Uygulamalar Klasörünü Gözat"]},"Browse Profiles Folder":{"*":["Profiller Klasörünü Gözat"]},"Show Welcome Screen":{"*":["Hoş Geldiniz Ekranını Göster"]},"Remove All WebApps":{"*":["Tüm Web Uygulamalarını Kaldır"]},"About":{"*":["Hakkında"]},"Add":{"*":["Ekle"]},"No WebApps Found":{"*":["Web Uygulamaları Bulunamadı"]},"Add a new webapp to get started":{"*":["Başlamak için yeni bir web uygulaması ekleyin."]},"WebApp created successfully":{"*":["Web Uygulaması başarıyla oluşturuldu."]},"WebApp updated successfully":{"*":["WebApp başarıyla güncellendi."]},"Browser changed to {0}":{"*":["Tarayıcı {0} olarak değiştirildi."]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["{0}'ı silmek istediğinizden emin misiniz?\n\nURL: {1}\nTarayıcı: {2}"]},"Also delete configuration folder":{"*":["Ayrıca yapılandırma klasörünü silin."]},"Delete":{"*":["Sil"]},"WebApp deleted successfully":{"*":["WebApp başarıyla silindi."]},"REMOVE ALL":{"*":["TÜMÜNÜ KALDIR"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Tüm Web Uygulamalarınızı kaldırmak istediğinizden emin misiniz? Bu işlem geri alınamaz.\n\nOnaylamak için \"{0}\" yazın."]},"Remove All":{"*":["Tümünü Kaldır"]},"All WebApps have been removed":{"*":["Tüm Web Uygulamaları kaldırıldı."]},"Failed to remove all WebApps":{"*":["Tüm Web Uygulamaları kaldırma işlemi başarısız oldu."]},"Icon {0} of {1}":{"*":["{1} için {0} simgesi"]},"WebApps exported successfully":{"*":["Web Uygulamaları başarıyla dışa aktarıldı."]},"No WebApps":{"*":["Web Uygulamaları Yok"]},"There are no WebApps to export.":{"*":["Dışa aktarılacak Web Uygulamaları yok."]},"The selected file does not exist.":{"*":["Seçilen dosya mevcut değil."]},"The selected file is not a valid ZIP archive.":{"*":["Seçilen dosya geçerli bir ZIP arşivi değil."]},"Error importing WebApps":{"*":["Web Uygulamaları içe aktarım hatası"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["{} WebApps başarıyla içe aktarıldı ({} kopyalar atlandı)"]},"Imported {} WebApps successfully":{"*":["{} WebApps başarıyla içe aktarıldı."]},"No":{"*":["Hayır"]},"Yes":{"*":["Evet"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/tr.po b/biglinux-webapps/locale/tr.po index bd251f0e..e38525a8 100644 --- a/biglinux-webapps/locale/tr.po +++ b/biglinux-webapps/locale/tr.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the biglinux-webapps package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" "Project-Id-Version: biglinux-webapps\n" @@ -14,442 +14,749 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Şablonlar" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Bir Şablon Seçin" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Şablonları ara..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 -msgid "Search templates" -msgstr "Şablonları ara" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Arama Sonuçları" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Şablon bulunamadı" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 -#, python-brace-format -msgid "Browser: {0}" -msgstr "Tarayıcı: {0}" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Web Uygulamasını Düzenle" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 -#, python-brace-format -msgid "Edit {0}" -msgstr "{0} düzenle" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "WebApp'i Sil" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 -#, python-brace-format -msgid "Delete {0}" -msgstr "{0} sil." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:20 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Web Uygulamaları Yöneticisi'ne Hoş Geldiniz" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 -msgid "" -"What are WebApps?\n" -"\n" -"WebApps are web applications that run in a dedicated browser window, providing a more app-like " -"experience for your favorite websites.\n" -"\n" -"Benefits of using WebApps:\n" -"\n" -"• Focus: Work without the distractions of other browser tabs\n" -"• Desktop Integration: Quick access from your application menu\n" -"• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" -msgstr "" -"Web Uygulamaları nedir?\n" -"\n" -"Web Uygulamaları, özel bir tarayıcı penceresinde çalışan web uygulamalarıdır ve favori web " -"siteleriniz için daha uygulama benzeri bir deneyim sunar.\n" -"\n" -"Web Uygulamaları kullanmanın avantajları:\n" -"\n" -"• Odaklanma: Diğer tarayıcı sekmelerinin dikkat dağıtıcı etkisi olmadan çalışma\n" -"• masaüstü entegrasyonu: Uygulama menünüzden hızlı erişim\n" -"• İzolasyonlu Profiller: İsteğe bağlı olarak, her web uygulaması kendi çerezlerine ve " -"ayarlarına sahip olabilir\n" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Bunu bir daha gösterme." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Başlayalım" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Tarayıcıyı Seçin" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:99 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:225 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:291 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "İptal et" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Seçin" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 -msgid "System Default" -msgstr "Sistem Varsayılanı" -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 -msgid "Default" -msgstr "Varsayılan" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 -msgid "Please select a browser." -msgstr "Lütfen bir tarayıcı seçin." -# # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 -msgid "Error" -msgstr "Hata" -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "Tamam" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Web Uygulaması Ekle" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 -msgid "Choose from templates" -msgstr "Şablonlardan seçin" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 -msgid "Detect" -msgstr "Algıla" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Web sitesinden isim ve simgeyi tespit et" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "İsim" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 -msgid "App Icon" -msgstr "Uygulama İkonu" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 -msgid "Select icon for the WebApp" -msgstr "WebApp için simge seçin" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 -msgid "Available Icons" -msgstr "Mevcut Simge" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Kategori" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 -msgid "Application Mode" -msgstr "Uygulama Modu" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Tarayıcı arayüzü olmadan yerel bir pencere olarak açılır." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 +#. -- Browser row (hidden in app mode) -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Tarayıcı" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 -msgid "Profile Settings" -msgstr "Profil Ayarları" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 -msgid "Configure a separate browser profile for this webapp" -msgstr "Bu web uygulaması için ayrı bir tarayıcı profili yapılandırın." -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -msgid "Use separate profile" -msgstr "Ayrı profil kullanın" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Bağımsız çerezler ve oturumlar sağlar." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Profil Adı" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Kaydet" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Yükleniyor..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 -msgid "Detecting website information, please wait" -msgstr "Web sitesi bilgileri tespit ediliyor, lütfen bekleyin." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 -msgid "Please enter a URL first." -msgstr "Lütfen önce bir URL girin." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 -msgid "Please enter a name for the WebApp." -msgstr "Lütfen WebApp için bir isim girin." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 -msgid "Please enter a URL for the WebApp." -msgstr "Lütfen WebApp için bir URL girin." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 -msgid "Please select a browser for the WebApp." -msgstr "Lütfen WebApp için bir tarayıcı seçin." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "Web Uygulamaları Yöneticisi" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Web Uygulamaları Ara" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 -msgid "Main Menu" -msgstr "Ana Menü" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 -msgid "Refresh" -msgstr "Yenile" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Web Uygulamalarını Dışa Aktar" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Web Uygulamaları İçe Aktar" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Uygulamalar Klasörünü Gözat" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Profiller Klasörünü Gözat" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 -msgid "Show Welcome Screen" -msgstr "Hoş Geldiniz Ekranını Göster" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Tüm Web Uygulamalarını Kaldır" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "Hakkında" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 -msgid "Add" -msgstr "Ekle" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 -msgid "No WebApps Found" -msgstr "Web Uygulamaları Bulunamadı" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Başlamak için yeni bir web uygulaması ekleyin." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "Web Uygulaması başarıyla oluşturuldu." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "WebApp başarıyla güncellendi." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 -#, python-brace-format -msgid "Browser changed to {0}" -msgstr "Tarayıcı {0} olarak değiştirildi." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 -#, python-brace-format -msgid "" -"Are you sure you want to delete {0}?\n" -"\n" -"URL: {1}\n" -"Browser: {2}" -msgstr "" -"{0}'ı silmek istediğinizden emin misiniz?\n" -"\n" -"URL: {1}\n" -"Tarayıcı: {2}" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Ayrıca yapılandırma klasörünü silin." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Sil" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "WebApp başarıyla silindi." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 -msgid "REMOVE ALL" -msgstr "TÜMÜNÜ KALDIR" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 -#, python-brace-format -msgid "" -"Are you sure you want to remove all your WebApps? This action cannot be undone.\n" -"\n" -"Type \"{0}\" to confirm." -msgstr "" -"Tüm Web Uygulamalarınızı kaldırmak istediğinizden emin misiniz? Bu işlem geri alınamaz.\n" -"\n" -"Onaylamak için \"{0}\" yazın." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Tümünü Kaldır" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Tüm Web Uygulamaları kaldırıldı." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Tüm Web Uygulamaları kaldırma işlemi başarısız oldu." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 -#, python-brace-format -msgid "Icon {0} of {1}" -msgstr "{1} için {0} simgesi" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "Web Uygulamaları başarıyla dışa aktarıldı." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Web Uygulamaları Yok" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 +msgid "Change browser" +msgstr "Tarayıcıyı değiştir" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 +msgid "Edit" +msgstr "Düzenle" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 +msgid "New WebApp" +msgstr "Yeni WebApp" + +#. -- Icon row -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 +msgid "Icon" +msgstr "Simge" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 +msgid "App Mode" +msgstr "Uygulama Modu" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 +msgid "Separate Profile" +msgstr "Ayrı Profil" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 +msgid "Select Icon" +msgstr "Simge Seç" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 +msgid "Images" +msgstr "Resimler" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 +msgid "ZIP files" +msgstr "ZIP dosyaları" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 +#, rust-format +msgid "Imported {imported}, skipped {dups} duplicates" +msgstr "İçe aktarılan {imported}, atlanan {dups} çoğaltmalar" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 +msgid "Import failed" +msgstr "İçe aktarma başarısız oldu" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 +msgid "Export failed" +msgstr "Dışa aktarma başarısız oldu" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 +msgid "" +"This will delete all webapps and their desktop entries. This cannot be " +"undone." +msgstr "" +"Bu işlem tüm webapp'leri ve masaüstü girdilerini silecektir. Bu işlem geri " +"alınamaz." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 +msgid "Browser changed" +msgstr "Tarayıcı değiştirildi" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 +msgid "What are WebApps?" +msgstr "WebApp'ler nedir?" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 +msgid "" +"WebApps are web applications that run in a dedicated browser window, " +"providing a more app-like experience for your favorite websites." +msgstr "" +"WebApps, favori web siteleriniz için daha uygulama benzeri bir deneyim " +"sunan, özel bir tarayıcı penceresinde çalışan web uygulamalarıdır." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 +msgid "Benefits of using WebApps:" +msgstr "WebApps kullanmanın faydaları:" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Focus" +msgstr "Odaklanma" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Work without the distractions of other browser tabs" +msgstr "Diğer tarayıcı sekmelerinin dikkat dağıtıcı etkisi olmadan çalışın" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Desktop Integration" +msgstr "Masaüstü Entegrasyonu" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Quick access from your application menu" +msgstr "Uygulama menünüzden hızlı erişim" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Isolated Profiles" +msgstr "İzole Profiller" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Each webapp can have its own cookies and settings" +msgstr "Her webapp kendi çerezlerine ve ayarlarına sahip olabilir" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 +msgid "Back" +msgstr "Geri" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 +msgid "Forward" +msgstr "İleri" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 +msgid "Reload" +msgstr "Yenile" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 +msgid "Fullscreen" +msgstr "Tam ekran" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 +msgid "Enter URL…" +msgstr "URL girin…" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 +msgid "Zoom In" +msgstr "Yakınlaştır" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 +msgid "Zoom Out" +msgstr "Uzaklaştır" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 +msgid "Reset Zoom" +msgstr "Yakınlaştırmayı Sıfırla" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 +msgid "Developer Tools" +msgstr "Geliştirici Araçları" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 +msgid "Menu" +msgstr "Menü" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 +msgid "Open Link in Browser" +msgstr "Bağlantıyı Tarayıcıda Aç" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 +msgid "Download Complete" +msgstr "İndirme Tamamlandı" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 +msgid "Save File" +msgstr "Dosyayı Kaydet" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 +#~ msgid "Search templates" +#~ msgstr "Şablonları ara" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 +#, python-brace-format +#~ msgid "Browser: {0}" +#~ msgstr "Tarayıcı: {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 +#, python-brace-format +#~ msgid "Edit {0}" +#~ msgstr "{0} düzenle" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 +#, python-brace-format +#~ msgid "Delete {0}" +#~ msgstr "{0} sil." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 +#~ msgid "" +#~ "What are WebApps?\n" +#~ "\n" +#~ "WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n" +#~ "\n" +#~ "Benefits of using WebApps:\n" +#~ "\n" +#~ "• Focus: Work without the distractions of other browser tabs\n" +#~ "• Desktop Integration: Quick access from your application menu\n" +#~ "• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" +#~ msgstr "" +#~ "Web Uygulamaları nedir?\n" +#~ "\n" +#~ "Web Uygulamaları, özel bir tarayıcı penceresinde çalışan web uygulamalarıdır ve favori web siteleriniz için daha uygulama benzeri bir deneyim sunar.\n" +#~ "\n" +#~ "Web Uygulamaları kullanmanın avantajları:\n" +#~ "\n" +#~ "• Odaklanma: Diğer tarayıcı sekmelerinin dikkat dağıtıcı etkisi olmadan çalışma\n" +#~ "• masaüstü entegrasyonu: Uygulama menünüzden hızlı erişim\n" +#~ "• İzolasyonlu Profiller: İsteğe bağlı olarak, her web uygulaması kendi çerezlerine ve ayarlarına sahip olabilir\n" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 +#~ msgid "System Default" +#~ msgstr "Sistem Varsayılanı" + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 -msgid "There are no WebApps to export." -msgstr "Dışa aktarılacak Web Uygulamaları yok." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 -msgid "The selected file does not exist." -msgstr "Seçilen dosya mevcut değil." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 -msgid "The selected file is not a valid ZIP archive." -msgstr "Seçilen dosya geçerli bir ZIP arşivi değil." +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 -msgid "Error importing WebApps" -msgstr "Web Uygulamaları içe aktarım hatası" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 +#~ msgid "Default" +#~ msgstr "Varsayılan" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 +#~ msgid "Please select a browser." +#~ msgstr "Lütfen bir tarayıcı seçin." + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 -msgid "Imported {} WebApps successfully ({} duplicates skipped)" -msgstr "{} WebApps başarıyla içe aktarıldı ({} kopyalar atlandı)" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 +#~ msgid "Error" +#~ msgstr "Hata" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 +#~ msgid "Choose from templates" +#~ msgstr "Şablonlardan seçin" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 +#~ msgid "Detect" +#~ msgstr "Algıla" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 +#~ msgid "App Icon" +#~ msgstr "Uygulama İkonu" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 +#~ msgid "Select icon for the WebApp" +#~ msgstr "WebApp için simge seçin" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 +#~ msgid "Available Icons" +#~ msgstr "Mevcut Simge" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 +#~ msgid "Application Mode" +#~ msgstr "Uygulama Modu" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 +#~ msgid "Profile Settings" +#~ msgstr "Profil Ayarları" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 +#~ msgid "Configure a separate browser profile for this webapp" +#~ msgstr "Bu web uygulaması için ayrı bir tarayıcı profili yapılandırın." + +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 -msgid "Imported {} WebApps successfully" -msgstr "{} WebApps başarıyla içe aktarıldı." +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 -msgid "No" -msgstr "Hayır" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 -msgid "Yes" -msgstr "Evet" +#~ msgid "Use separate profile" +#~ msgstr "Ayrı profil kullanın" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 +#~ msgid "Detecting website information, please wait" +#~ msgstr "Web sitesi bilgileri tespit ediliyor, lütfen bekleyin." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 +#~ msgid "Please enter a URL first." +#~ msgstr "Lütfen önce bir URL girin." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 +#~ msgid "Please enter a name for the WebApp." +#~ msgstr "Lütfen WebApp için bir isim girin." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 +#~ msgid "Please enter a URL for the WebApp." +#~ msgstr "Lütfen WebApp için bir URL girin." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 +#~ msgid "Please select a browser for the WebApp." +#~ msgstr "Lütfen WebApp için bir tarayıcı seçin." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 +#~ msgid "Main Menu" +#~ msgstr "Ana Menü" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 +#~ msgid "Refresh" +#~ msgstr "Yenile" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 +#~ msgid "Show Welcome Screen" +#~ msgstr "Hoş Geldiniz Ekranını Göster" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 +#~ msgid "Add" +#~ msgstr "Ekle" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 +#~ msgid "No WebApps Found" +#~ msgstr "Web Uygulamaları Bulunamadı" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 +#, python-brace-format +#~ msgid "Browser changed to {0}" +#~ msgstr "Tarayıcı {0} olarak değiştirildi." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to delete {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Browser: {2}" +#~ msgstr "" +#~ "{0}'ı silmek istediğinizden emin misiniz?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Tarayıcı: {2}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 +#~ msgid "REMOVE ALL" +#~ msgstr "TÜMÜNÜ KALDIR" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to remove all your WebApps? This action cannot be undone.\n" +#~ "\n" +#~ "Type \"{0}\" to confirm." +#~ msgstr "" +#~ "Tüm Web Uygulamalarınızı kaldırmak istediğinizden emin misiniz? Bu işlem geri alınamaz.\n" +#~ "\n" +#~ "Onaylamak için \"{0}\" yazın." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 +#, python-brace-format +#~ msgid "Icon {0} of {1}" +#~ msgstr "{1} için {0} simgesi" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#~ msgid "There are no WebApps to export." +#~ msgstr "Dışa aktarılacak Web Uygulamaları yok." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 +#~ msgid "The selected file does not exist." +#~ msgstr "Seçilen dosya mevcut değil." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 +#~ msgid "The selected file is not a valid ZIP archive." +#~ msgstr "Seçilen dosya geçerli bir ZIP arşivi değil." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 +#~ msgid "Error importing WebApps" +#~ msgstr "Web Uygulamaları içe aktarım hatası" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 +#~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" +#~ msgstr "{} WebApps başarıyla içe aktarıldı ({} kopyalar atlandı)" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 +#~ msgid "Imported {} WebApps successfully" +#~ msgstr "{} WebApps başarıyla içe aktarıldı." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 +#~ msgid "No" +#~ msgstr "Hayır" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 +#~ msgid "Yes" +#~ msgstr "Evet" diff --git a/biglinux-webapps/locale/uk.json b/biglinux-webapps/locale/uk.json deleted file mode 100644 index dc909a37..00000000 --- a/biglinux-webapps/locale/uk.json +++ /dev/null @@ -1 +0,0 @@ -{"uk":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Шаблони"]},"Choose a Template":{"*":["Виберіть шаблон"]},"Search templates...":{"*":["Шукати шаблони..."]},"Search templates":{"*":["Шаблони пошуку"]},"Search Results":{"*":["Результати пошуку"]},"No templates found":{"*":["Шаблони не знайдено"]},"Browser: {0}":{"*":["Браузер: {0}"]},"Edit WebApp":{"*":["Редагувати веб-додаток"]},"Edit {0}":{"*":["Редагувати {0}"]},"Delete WebApp":{"*":["Видалити веб-додаток"]},"Delete {0}":{"*":["Видалити {0}"]},"Welcome to WebApps Manager":{"*":["Ласкаво просимо до Менеджера веб-додатків"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Що таке WebApps?\n\nWebApps — це веб-додатки, які працюють у спеціальному вікні браузера, забезпечуючи більш схожий на додаток досвід для ваших улюблених веб-сайтів.\n\nПереваги використання WebApps:\n\n• Зосередженість: Працюйте без відволікань від інших вкладок браузера\n• Інтеграція з робочим столом: Швидкий доступ з меню додатків\n• Ізольовані профілі: За бажанням, кожен веб-додаток може мати свої власні куки та налаштування\n"]},"Don't show this again":{"*":["Не показувати це знову"]},"Let's Start":{"*":["Давайте почнемо"]},"Select Browser":{"*":["Виберіть браузер"]},"Cancel":{"*":["Скасувати"]},"Select":{"*":["Вибрати"]},"System Default":{"*":["Системне значення за замовчуванням"]},"Default":{"*":["За замовчуванням"]},"Please select a browser.":{"*":["Будь ласка, виберіть браузер."]},"Error":{"*":["Помилка"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Додати веб-додаток"]},"Choose from templates":{"*":["Виберіть з шаблонів"]},"URL":{"*":["URL"]},"Detect":{"*":["Виявити"]},"Detect name and icon from website":{"*":["Визначити назву та значок з вебсайту"]},"Name":{"*":["Ім'я"]},"App Icon":{"*":["Іконка програми"]},"Select icon for the WebApp":{"*":["Виберіть значок для веб-додатку"]},"Available Icons":{"*":["Доступні значки"]},"Category":{"*":["Категорія"]},"Application Mode":{"*":["Режим застосунку"]},"Opens as a native window without browser interface":{"*":["Відкривається як рідне вікно без інтерфейсу браузера"]},"Browser":{"*":["Браузер"]},"Profile Settings":{"*":["Налаштування профілю"]},"Configure a separate browser profile for this webapp":{"*":["Налаштуйте окремий профіль браузера для цього вебдодатку."]},"Use separate profile":{"*":["Використовуйте окремий профіль"]},"Allows independent cookies and sessions":{"*":["Дозволяє незалежні куки та сесії"]},"Profile Name":{"*":["Ім'я профілю"]},"Save":{"*":["Зберегти"]},"Loading...":{"*":["Завантаження..."]},"Detecting website information, please wait":{"*":["Виявлення інформації про вебсайт, будь ласка, зачекайте"]},"Please enter a URL first.":{"*":["Будь ласка, спочатку введіть URL."]},"Please enter a name for the WebApp.":{"*":["Будь ласка, введіть назву для WebApp."]},"Please enter a URL for the WebApp.":{"*":["Будь ласка, введіть URL для WebApp."]},"Please select a browser for the WebApp.":{"*":["Будь ласка, виберіть браузер для WebApp."]},"WebApps Manager":{"*":["Менеджер веб-додатків"]},"Search WebApps":{"*":["Пошук веб-додатків"]},"Main Menu":{"*":["Головне меню"]},"Refresh":{"*":["Оновити"]},"Export WebApps":{"*":["Експортувати веб-додатки"]},"Import WebApps":{"*":["Імпорт веб-додатків"]},"Browse Applications Folder":{"*":["Переглянути папку програм"]},"Browse Profiles Folder":{"*":["Перегляд папки профілів"]},"Show Welcome Screen":{"*":["Показати екран вітання"]},"Remove All WebApps":{"*":["Видалити всі веб-додатки"]},"About":{"*":["Про програму"]},"Add":{"*":["Додати"]},"No WebApps Found":{"*":["Не знайдено веб-додатків"]},"Add a new webapp to get started":{"*":["Додайте новий веб-додаток, щоб почати."]},"WebApp created successfully":{"*":["Веб-додаток успішно створено"]},"WebApp updated successfully":{"*":["Веб-додаток успішно оновлено"]},"Browser changed to {0}":{"*":["Браузер змінено на {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Ви впевнені, що хочете видалити {0}?\n\nURL: {1}\nБраузер: {2}"]},"Also delete configuration folder":{"*":["Також видаліть папку конфігурації."]},"Delete":{"*":["Видалити"]},"WebApp deleted successfully":{"*":["WebApp успішно видалено"]},"REMOVE ALL":{"*":["ВИДАЛИТИ ВСЕ"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Ви впевнені, що хочете видалити всі свої веб-додатки? Цю дію не можна скасувати.\n\nВведіть \"{0}\", щоб підтвердити."]},"Remove All":{"*":["Видалити все"]},"All WebApps have been removed":{"*":["Усі веб-додатки були видалені."]},"Failed to remove all WebApps":{"*":["Не вдалося видалити всі веб-додатки."]},"Icon {0} of {1}":{"*":["Іконка {0} з {1}"]},"WebApps exported successfully":{"*":["WebApps успішно експортовано"]},"No WebApps":{"*":["Немає веб-додатків"]},"There are no WebApps to export.":{"*":["Немає веб-додатків для експорту."]},"The selected file does not exist.":{"*":["Вибраний файл не існує."]},"The selected file is not a valid ZIP archive.":{"*":["Вибраний файл не є дійсним ZIP-архівом."]},"Error importing WebApps":{"*":["Помилка імпорту WebApps"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["Імпортовано {} WebApps успішно (пропущено {} дублікатів)"]},"Imported {} WebApps successfully":{"*":["Імпортовано {} WebApps успішно"]},"No":{"*":["Ні"]},"Yes":{"*":["Так."]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/uk.po b/biglinux-webapps/locale/uk.po index 441890f2..5d985d63 100644 --- a/biglinux-webapps/locale/uk.po +++ b/biglinux-webapps/locale/uk.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the biglinux-webapps package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" "Project-Id-Version: biglinux-webapps\n" @@ -14,442 +14,749 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Шаблони" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Виберіть шаблон" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Шукати шаблони..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 -msgid "Search templates" -msgstr "Шаблони пошуку" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Результати пошуку" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Шаблони не знайдено" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 -#, python-brace-format -msgid "Browser: {0}" -msgstr "Браузер: {0}" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Редагувати веб-додаток" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 -#, python-brace-format -msgid "Edit {0}" -msgstr "Редагувати {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Видалити веб-додаток" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 -#, python-brace-format -msgid "Delete {0}" -msgstr "Видалити {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:20 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Ласкаво просимо до Менеджера веб-додатків" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 -msgid "" -"What are WebApps?\n" -"\n" -"WebApps are web applications that run in a dedicated browser window, providing a more app-like " -"experience for your favorite websites.\n" -"\n" -"Benefits of using WebApps:\n" -"\n" -"• Focus: Work without the distractions of other browser tabs\n" -"• Desktop Integration: Quick access from your application menu\n" -"• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" -msgstr "" -"Що таке WebApps?\n" -"\n" -"WebApps — це веб-додатки, які працюють у спеціальному вікні браузера, забезпечуючи більш схожий на " -"додаток досвід для ваших улюблених веб-сайтів.\n" -"\n" -"Переваги використання WebApps:\n" -"\n" -"• Зосередженість: Працюйте без відволікань від інших вкладок браузера\n" -"• Інтеграція з робочим столом: Швидкий доступ з меню додатків\n" -"• Ізольовані профілі: За бажанням, кожен веб-додаток може мати свої власні куки та " -"налаштування\n" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Не показувати це знову" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Давайте почнемо" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Виберіть браузер" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:99 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:225 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:291 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Скасувати" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Вибрати" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 -msgid "System Default" -msgstr "Системне значення за замовчуванням" -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 -msgid "Default" -msgstr "За замовчуванням" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 -msgid "Please select a browser." -msgstr "Будь ласка, виберіть браузер." -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 -msgid "Error" -msgstr "Помилка" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "OK" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Додати веб-додаток" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 -msgid "Choose from templates" -msgstr "Виберіть з шаблонів" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 -msgid "Detect" -msgstr "Виявити" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Визначити назву та значок з вебсайту" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Ім'я" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 -msgid "App Icon" -msgstr "Іконка програми" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 -msgid "Select icon for the WebApp" -msgstr "Виберіть значок для веб-додатку" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 -msgid "Available Icons" -msgstr "Доступні значки" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Категорія" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 -msgid "Application Mode" -msgstr "Режим застосунку" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Відкривається як рідне вікно без інтерфейсу браузера" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 +#. -- Browser row (hidden in app mode) -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Браузер" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 -msgid "Profile Settings" -msgstr "Налаштування профілю" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 -msgid "Configure a separate browser profile for this webapp" -msgstr "Налаштуйте окремий профіль браузера для цього вебдодатку." -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -msgid "Use separate profile" -msgstr "Використовуйте окремий профіль" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Дозволяє незалежні куки та сесії" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Ім'я профілю" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Зберегти" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Завантаження..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 -msgid "Detecting website information, please wait" -msgstr "Виявлення інформації про вебсайт, будь ласка, зачекайте" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 -msgid "Please enter a URL first." -msgstr "Будь ласка, спочатку введіть URL." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 -msgid "Please enter a name for the WebApp." -msgstr "Будь ласка, введіть назву для WebApp." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 -msgid "Please enter a URL for the WebApp." -msgstr "Будь ласка, введіть URL для WebApp." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 -msgid "Please select a browser for the WebApp." -msgstr "Будь ласка, виберіть браузер для WebApp." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "Менеджер веб-додатків" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Пошук веб-додатків" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 -msgid "Main Menu" -msgstr "Головне меню" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 -msgid "Refresh" -msgstr "Оновити" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Експортувати веб-додатки" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Імпорт веб-додатків" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Переглянути папку програм" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Перегляд папки профілів" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 -msgid "Show Welcome Screen" -msgstr "Показати екран вітання" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Видалити всі веб-додатки" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "Про програму" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 -msgid "Add" -msgstr "Додати" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 -msgid "No WebApps Found" -msgstr "Не знайдено веб-додатків" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Додайте новий веб-додаток, щоб почати." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "Веб-додаток успішно створено" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "Веб-додаток успішно оновлено" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 -#, python-brace-format -msgid "Browser changed to {0}" -msgstr "Браузер змінено на {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 -#, python-brace-format -msgid "" -"Are you sure you want to delete {0}?\n" -"\n" -"URL: {1}\n" -"Browser: {2}" -msgstr "" -"Ви впевнені, що хочете видалити {0}?\n" -"\n" -"URL: {1}\n" -"Браузер: {2}" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Також видаліть папку конфігурації." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Видалити" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "WebApp успішно видалено" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 -msgid "REMOVE ALL" -msgstr "ВИДАЛИТИ ВСЕ" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 -#, python-brace-format -msgid "" -"Are you sure you want to remove all your WebApps? This action cannot be undone.\n" -"\n" -"Type \"{0}\" to confirm." -msgstr "" -"Ви впевнені, що хочете видалити всі свої веб-додатки? Цю дію не можна скасувати.\n" -"\n" -"Введіть \"{0}\", щоб підтвердити." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Видалити все" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Усі веб-додатки були видалені." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Не вдалося видалити всі веб-додатки." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 -#, python-brace-format -msgid "Icon {0} of {1}" -msgstr "Іконка {0} з {1}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebApps успішно експортовано" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Немає веб-додатків" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 +msgid "Change browser" +msgstr "Змінити браузер" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 +msgid "Edit" +msgstr "Редагувати" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 +msgid "New WebApp" +msgstr "Новий WebApp" + +#. -- Icon row -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 +msgid "Icon" +msgstr "Іконка" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 +msgid "App Mode" +msgstr "Режим додатку" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 +msgid "Separate Profile" +msgstr "Окремий профіль" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 +msgid "Select Icon" +msgstr "Вибрати іконку" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 +msgid "Images" +msgstr "Зображення" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 +msgid "ZIP files" +msgstr "ZIP-файли" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 +#, rust-format +msgid "Imported {imported}, skipped {dups} duplicates" +msgstr "Імпортовано {imported}, пропущено {dups} дублікатів" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 +msgid "Import failed" +msgstr "Не вдалося імпортувати" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 +msgid "Export failed" +msgstr "Не вдалося експортувати" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 +msgid "" +"This will delete all webapps and their desktop entries. This cannot be " +"undone." +msgstr "" +"Це видалить усі webapps та їхні записи на робочому столі. Цю дію неможливо " +"скасувати." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 +msgid "Browser changed" +msgstr "Браузер змінено" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 +msgid "What are WebApps?" +msgstr "Що таке WebApps?" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 +msgid "" +"WebApps are web applications that run in a dedicated browser window, " +"providing a more app-like experience for your favorite websites." +msgstr "" +"WebApps — це веб-додатки, які працюють у спеціальному вікні браузера, " +"забезпечуючи більш додаткоподібний досвід для ваших улюблених сайтів." + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 +msgid "Benefits of using WebApps:" +msgstr "Переваги використання WebApps:" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Focus" +msgstr "Фокус" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Work without the distractions of other browser tabs" +msgstr "Працюйте без відволікань від інших вкладок браузера" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Desktop Integration" +msgstr "Інтеграція з робочим столом" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Quick access from your application menu" +msgstr "Швидкий доступ із меню додатків" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Isolated Profiles" +msgstr "Ізольовані профілі" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Each webapp can have its own cookies and settings" +msgstr "Кожен webapp може мати власні куки та налаштування" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 +msgid "Back" +msgstr "Назад" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 +msgid "Forward" +msgstr "Вперед" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 +msgid "Reload" +msgstr "Оновити" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 +msgid "Fullscreen" +msgstr "Повноекранний режим" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 +msgid "Enter URL…" +msgstr "Введіть URL…" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 +msgid "Zoom In" +msgstr "Збільшити масштаб" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 +msgid "Zoom Out" +msgstr "Зменшити масштаб" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 +msgid "Reset Zoom" +msgstr "Скинути масштаб" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 +msgid "Developer Tools" +msgstr "Інструменти розробника" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 +msgid "Menu" +msgstr "Меню" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 +msgid "Open Link in Browser" +msgstr "Відкрити посилання в браузері" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 +msgid "Download Complete" +msgstr "Завантаження завершено" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 +msgid "Save File" +msgstr "Зберегти файл" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 +#~ msgid "Search templates" +#~ msgstr "Шаблони пошуку" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 +#, python-brace-format +#~ msgid "Browser: {0}" +#~ msgstr "Браузер: {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 +#, python-brace-format +#~ msgid "Edit {0}" +#~ msgstr "Редагувати {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 +#, python-brace-format +#~ msgid "Delete {0}" +#~ msgstr "Видалити {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 +#~ msgid "" +#~ "What are WebApps?\n" +#~ "\n" +#~ "WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n" +#~ "\n" +#~ "Benefits of using WebApps:\n" +#~ "\n" +#~ "• Focus: Work without the distractions of other browser tabs\n" +#~ "• Desktop Integration: Quick access from your application menu\n" +#~ "• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" +#~ msgstr "" +#~ "Що таке WebApps?\n" +#~ "\n" +#~ "WebApps — це веб-додатки, які працюють у спеціальному вікні браузера, забезпечуючи більш схожий на додаток досвід для ваших улюблених веб-сайтів.\n" +#~ "\n" +#~ "Переваги використання WebApps:\n" +#~ "\n" +#~ "• Зосередженість: Працюйте без відволікань від інших вкладок браузера\n" +#~ "• Інтеграція з робочим столом: Швидкий доступ з меню додатків\n" +#~ "• Ізольовані профілі: За бажанням, кожен веб-додаток може мати свої власні куки та налаштування\n" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 +#~ msgid "System Default" +#~ msgstr "Системне значення за замовчуванням" + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 -msgid "There are no WebApps to export." -msgstr "Немає веб-додатків для експорту." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 -msgid "The selected file does not exist." -msgstr "Вибраний файл не існує." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 -msgid "The selected file is not a valid ZIP archive." -msgstr "Вибраний файл не є дійсним ZIP-архівом." +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 -msgid "Error importing WebApps" -msgstr "Помилка імпорту WebApps" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 +#~ msgid "Default" +#~ msgstr "За замовчуванням" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 +#~ msgid "Please select a browser." +#~ msgstr "Будь ласка, виберіть браузер." + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 -msgid "Imported {} WebApps successfully ({} duplicates skipped)" -msgstr "Імпортовано {} WebApps успішно (пропущено {} дублікатів)" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 +#~ msgid "Error" +#~ msgstr "Помилка" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 +#~ msgid "Choose from templates" +#~ msgstr "Виберіть з шаблонів" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 +#~ msgid "Detect" +#~ msgstr "Виявити" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 +#~ msgid "App Icon" +#~ msgstr "Іконка програми" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 +#~ msgid "Select icon for the WebApp" +#~ msgstr "Виберіть значок для веб-додатку" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 +#~ msgid "Available Icons" +#~ msgstr "Доступні значки" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 +#~ msgid "Application Mode" +#~ msgstr "Режим застосунку" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 +#~ msgid "Profile Settings" +#~ msgstr "Налаштування профілю" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 +#~ msgid "Configure a separate browser profile for this webapp" +#~ msgstr "Налаштуйте окремий профіль браузера для цього вебдодатку." + +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 -msgid "Imported {} WebApps successfully" -msgstr "Імпортовано {} WebApps успішно" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 -msgid "No" -msgstr "Ні" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 -msgid "Yes" -msgstr "Так." +#~ msgid "Use separate profile" +#~ msgstr "Використовуйте окремий профіль" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 +#~ msgid "Detecting website information, please wait" +#~ msgstr "Виявлення інформації про вебсайт, будь ласка, зачекайте" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 +#~ msgid "Please enter a URL first." +#~ msgstr "Будь ласка, спочатку введіть URL." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 +#~ msgid "Please enter a name for the WebApp." +#~ msgstr "Будь ласка, введіть назву для WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 +#~ msgid "Please enter a URL for the WebApp." +#~ msgstr "Будь ласка, введіть URL для WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 +#~ msgid "Please select a browser for the WebApp." +#~ msgstr "Будь ласка, виберіть браузер для WebApp." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 +#~ msgid "Main Menu" +#~ msgstr "Головне меню" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 +#~ msgid "Refresh" +#~ msgstr "Оновити" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 +#~ msgid "Show Welcome Screen" +#~ msgstr "Показати екран вітання" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 +#~ msgid "Add" +#~ msgstr "Додати" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 +#~ msgid "No WebApps Found" +#~ msgstr "Не знайдено веб-додатків" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 +#, python-brace-format +#~ msgid "Browser changed to {0}" +#~ msgstr "Браузер змінено на {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to delete {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Browser: {2}" +#~ msgstr "" +#~ "Ви впевнені, що хочете видалити {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Браузер: {2}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 +#~ msgid "REMOVE ALL" +#~ msgstr "ВИДАЛИТИ ВСЕ" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to remove all your WebApps? This action cannot be undone.\n" +#~ "\n" +#~ "Type \"{0}\" to confirm." +#~ msgstr "" +#~ "Ви впевнені, що хочете видалити всі свої веб-додатки? Цю дію не можна скасувати.\n" +#~ "\n" +#~ "Введіть \"{0}\", щоб підтвердити." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 +#, python-brace-format +#~ msgid "Icon {0} of {1}" +#~ msgstr "Іконка {0} з {1}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#~ msgid "There are no WebApps to export." +#~ msgstr "Немає веб-додатків для експорту." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 +#~ msgid "The selected file does not exist." +#~ msgstr "Вибраний файл не існує." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 +#~ msgid "The selected file is not a valid ZIP archive." +#~ msgstr "Вибраний файл не є дійсним ZIP-архівом." + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 +#~ msgid "Error importing WebApps" +#~ msgstr "Помилка імпорту WebApps" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 +#~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" +#~ msgstr "Імпортовано {} WebApps успішно (пропущено {} дублікатів)" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 +#~ msgid "Imported {} WebApps successfully" +#~ msgstr "Імпортовано {} WebApps успішно" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 +#~ msgid "No" +#~ msgstr "Ні" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 +#~ msgid "Yes" +#~ msgstr "Так." diff --git a/biglinux-webapps/locale/zh.json b/biglinux-webapps/locale/zh.json deleted file mode 100644 index 7a5971da..00000000 --- a/biglinux-webapps/locale/zh.json +++ /dev/null @@ -1 +0,0 @@ -{"zh":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["模板"]},"Choose a Template":{"*":["选择模板"]},"Search templates...":{"*":["搜索模板..."]},"Search templates":{"*":["搜索模板"]},"Search Results":{"*":["搜索结果"]},"No templates found":{"*":["未找到模板"]},"Browser: {0}":{"*":["浏览器: {0}"]},"Edit WebApp":{"*":["编辑Web应用程序"]},"Edit {0}":{"*":["编辑 {0}"]},"Delete WebApp":{"*":["删除Web应用程序"]},"Delete {0}":{"*":["删除 {0}"]},"Welcome to WebApps Manager":{"*":["欢迎使用 WebApps 管理器"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["什么是WebApps?\n\nWebApps是运行在专用浏览器窗口中的网络应用程序,为您最喜欢的网站提供更像应用程序的体验。\n\n使用WebApps的好处:\n\n• 专注:在没有其他浏览器标签干扰的情况下工作\n• 桌面集成:可以从应用程序菜单快速访问\n• 隔离的配置文件:可选地,每个WebApp可以拥有自己的Cookie和设置\n"]},"Don't show this again":{"*":["不要再显示此信息"]},"Let's Start":{"*":["让我们开始"]},"Select Browser":{"*":["选择浏览器"]},"Cancel":{"*":["取消"]},"Select":{"*":["选择"]},"System Default":{"*":["系统默认"]},"Default":{"*":["默认"]},"Please select a browser.":{"*":["请选择一个浏览器。"]},"Error":{"*":["错误"]},"OK":{"*":["确定"]},"Add WebApp":{"*":["添加Web应用程序"]},"Choose from templates":{"*":["从模板中选择"]},"URL":{"*":["网址"]},"Detect":{"*":["检测"]},"Detect name and icon from website":{"*":["从网站检测名称和图标"]},"Name":{"*":["名称"]},"App Icon":{"*":["应用程序图标"]},"Select icon for the WebApp":{"*":["为WebApp选择图标"]},"Available Icons":{"*":["可用图标"]},"Category":{"*":["类别"]},"Application Mode":{"*":["应用模式"]},"Opens as a native window without browser interface":{"*":["以原生窗口打开,无浏览器界面"]},"Browser":{"*":["浏览器"]},"Profile Settings":{"*":["个人资料设置"]},"Configure a separate browser profile for this webapp":{"*":["为此网络应用配置一个单独的浏览器配置文件"]},"Use separate profile":{"*":["使用单独的配置文件"]},"Allows independent cookies and sessions":{"*":["允许独立的 cookies 和会话"]},"Profile Name":{"*":["个人资料名称"]},"Save":{"*":["保存"]},"Loading...":{"*":["加载中..."]},"Detecting website information, please wait":{"*":["正在检测网站信息,请稍候"]},"Please enter a URL first.":{"*":["请先输入一个网址。"]},"Please enter a name for the WebApp.":{"*":["请输入WebApp的名称。"]},"Please enter a URL for the WebApp.":{"*":["请输入WebApp的URL。"]},"Please select a browser for the WebApp.":{"*":["请选择一个浏览器用于WebApp。"]},"WebApps Manager":{"*":["WebApps 管理器"]},"Search WebApps":{"*":["搜索网络应用程序"]},"Main Menu":{"*":["主菜单"]},"Refresh":{"*":["刷新"]},"Export WebApps":{"*":["导出Web应用程序"]},"Import WebApps":{"*":["导入Web应用程序"]},"Browse Applications Folder":{"*":["浏览应用程序文件夹"]},"Browse Profiles Folder":{"*":["浏览配置文件文件夹"]},"Show Welcome Screen":{"*":["显示欢迎屏幕"]},"Remove All WebApps":{"*":["删除所有Web应用程序"]},"About":{"*":["关于"]},"Add":{"*":["添加"]},"No WebApps Found":{"*":["未找到Web应用程序"]},"Add a new webapp to get started":{"*":["添加一个新的网站应用程序以开始使用"]},"WebApp created successfully":{"*":["WebApp 创建成功"]},"WebApp updated successfully":{"*":["WebApp 更新成功"]},"Browser changed to {0}":{"*":["浏览器已更改为 {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["您确定要删除 {0} 吗?\n\n网址: {1} \n浏览器: {2}"]},"Also delete configuration folder":{"*":["还删除配置文件夹"]},"Delete":{"*":["删除"]},"WebApp deleted successfully":{"*":["WebApp 删除成功"]},"REMOVE ALL":{"*":["删除所有"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["您确定要删除所有的 Web 应用吗?此操作无法撤销。\n\n输入“{0}”以确认。"]},"Remove All":{"*":["全部删除"]},"All WebApps have been removed":{"*":["所有Web应用程序已被移除"]},"Failed to remove all WebApps":{"*":["无法删除所有Web应用程序"]},"Icon {0} of {1}":{"*":["图标 {0} 的 {1}"]},"WebApps exported successfully":{"*":["WebApps 导出成功"]},"No WebApps":{"*":["没有Web应用程序"]},"There are no WebApps to export.":{"*":["没有可导出的Web应用程序。"]},"The selected file does not exist.":{"*":["所选文件不存在。"]},"The selected file is not a valid ZIP archive.":{"*":["所选文件不是有效的 ZIP 压缩文件。"]},"Error importing WebApps":{"*":["导入WebApps时出错"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["成功导入 {} 个 WebApps(跳过 {} 个重复项)"]},"Imported {} WebApps successfully":{"*":["成功导入 {} WebApps"]},"No":{"*":["不"]},"Yes":{"*":["是"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/zh.po b/biglinux-webapps/locale/zh.po index 211e453a..5389bbc5 100644 --- a/biglinux-webapps/locale/zh.po +++ b/biglinux-webapps/locale/zh.po @@ -2,7 +2,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the biglinux-webapps package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" "Project-Id-Version: biglinux-webapps\n" @@ -14,440 +14,745 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "模板" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "选择模板" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "搜索模板..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 -msgid "Search templates" -msgstr "搜索模板" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "搜索结果" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "未找到模板" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 -#, python-brace-format -msgid "Browser: {0}" -msgstr "浏览器: {0}" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 104 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "编辑Web应用程序" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 -#, python-brace-format -msgid "Edit {0}" -msgstr "编辑 {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "删除Web应用程序" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 -#, python-brace-format -msgid "Delete {0}" -msgstr "删除 {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 94 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:20 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "欢迎使用 WebApps 管理器" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 -msgid "" -"What are WebApps?\n" -"\n" -"WebApps are web applications that run in a dedicated browser window, providing a more app-like " -"experience for your favorite websites.\n" -"\n" -"Benefits of using WebApps:\n" -"\n" -"• Focus: Work without the distractions of other browser tabs\n" -"• Desktop Integration: Quick access from your application menu\n" -"• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" -msgstr "" -"什么是WebApps?\n" -"\n" -"WebApps是运行在专用浏览器窗口中的网络应用程序,为您最喜欢的网站提供更像应用程序的体验。\n" -"\n" -"使用WebApps的好处:\n" -"\n" -"• 专注:在没有其他浏览器标签干扰的情况下工作\n" -"• 桌面集成:可以从应用程序菜单快速访问\n" -"• 隔离的配置文件:可选地,每个WebApp可以拥有自己的Cookie和设置\n" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "不要再显示此信息" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "让我们开始" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "选择浏览器" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:99 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:225 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:291 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "取消" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 90 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 179 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 240 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:141 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "选择" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 -msgid "System Default" -msgstr "系统默认" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 -msgid "Default" -msgstr "默认" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 -msgid "Please select a browser." -msgstr "请选择一个浏览器。" -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 -msgid "Error" -msgstr "错误" -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 357 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 173 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 638 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "确定" -# + # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 46 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 101 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 109 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "添加Web应用程序" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 -msgid "Choose from templates" -msgstr "从模板中选择" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "网址" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 -msgid "Detect" -msgstr "检测" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "从网站检测名称和图标" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 480 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "名称" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 -msgid "App Icon" -msgstr "应用程序图标" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 -msgid "Select icon for the WebApp" -msgstr "为WebApp选择图标" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 -msgid "Available Icons" -msgstr "可用图标" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "类别" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 -msgid "Application Mode" -msgstr "应用模式" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "以原生窗口打开,无浏览器界面" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 +#. -- Browser row (hidden in app mode) -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "浏览器" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 -msgid "Profile Settings" -msgstr "个人资料设置" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 -msgid "Configure a separate browser profile for this webapp" -msgstr "为此网络应用配置一个单独的浏览器配置文件" -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# -# -msgid "Use separate profile" -msgstr "使用单独的配置文件" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "允许独立的 cookies 和会话" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "个人资料名称" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "保存" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "加载中..." -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 -msgid "Detecting website information, please wait" -msgstr "正在检测网站信息,请稍候" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 -msgid "Please enter a URL first." -msgstr "请先输入一个网址。" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 -msgid "Please enter a name for the WebApp." -msgstr "请输入WebApp的名称。" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 -msgid "Please enter a URL for the WebApp." -msgstr "请输入WebApp的URL。" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 -msgid "Please select a browser for the WebApp." -msgstr "请选择一个浏览器用于WebApp。" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "WebApps 管理器" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "搜索网络应用程序" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 -msgid "Main Menu" -msgstr "主菜单" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 -msgid "Refresh" -msgstr "刷新" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "导出Web应用程序" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "导入Web应用程序" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "浏览应用程序文件夹" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "浏览配置文件文件夹" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 -msgid "Show Welcome Screen" -msgstr "显示欢迎屏幕" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 389 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "删除所有Web应用程序" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "关于" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 -msgid "Add" -msgstr "添加" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 -msgid "No WebApps Found" -msgstr "未找到Web应用程序" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "添加一个新的网站应用程序以开始使用" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "WebApp 创建成功" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "WebApp 更新成功" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 -#, python-brace-format -msgid "Browser changed to {0}" -msgstr "浏览器已更改为 {0}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 -#, python-brace-format -msgid "" -"Are you sure you want to delete {0}?\n" -"\n" -"URL: {1}\n" -"Browser: {2}" -msgstr "" -"您确定要删除 {0} 吗?\n" -"\n" -"网址: {1} \n" -"浏览器: {2}" -# + # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "还删除配置文件夹" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "删除" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "WebApp 删除成功" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 -msgid "REMOVE ALL" -msgstr "删除所有" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 -#, python-brace-format -msgid "" -"Are you sure you want to remove all your WebApps? This action cannot be undone.\n" -"\n" -"Type \"{0}\" to confirm." -msgstr "" -"您确定要删除所有的 Web 应用吗?此操作无法撤销。\n" -"\n" -"输入“{0}”以确认。" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "全部删除" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "所有Web应用程序已被移除" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "无法删除所有Web应用程序" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 -#, python-brace-format -msgid "Icon {0} of {1}" -msgstr "图标 {0} 的 {1}" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebApps 导出成功" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "没有Web应用程序" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 +msgid "Change browser" +msgstr "更改浏览器" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 +msgid "Edit" +msgstr "编辑" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 +msgid "New WebApp" +msgstr "新建 WebApp" + +#. -- Icon row -- +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 +msgid "Icon" +msgstr "图标" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 +msgid "App Mode" +msgstr "应用模式" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 +msgid "Separate Profile" +msgstr "独立配置文件" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 +msgid "Select Icon" +msgstr "选择图标" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 +msgid "Images" +msgstr "图片" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 +msgid "ZIP files" +msgstr "ZIP 文件" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 +#, rust-format +msgid "Imported {imported}, skipped {dups} duplicates" +msgstr "已导入 {imported},跳过 {dups} 个重复项" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 +msgid "Import failed" +msgstr "导入失败" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 +msgid "Export failed" +msgstr "导出失败" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 +msgid "" +"This will delete all webapps and their desktop entries. This cannot be " +"undone." +msgstr "这将删除所有 webapps 及其桌面条目。此操作不可撤销。" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 +msgid "Browser changed" +msgstr "浏览器已更改" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 +msgid "What are WebApps?" +msgstr "什么是 WebApps?" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 +msgid "" +"WebApps are web applications that run in a dedicated browser window, " +"providing a more app-like experience for your favorite websites." +msgstr "WebApps 是在专用浏览器窗口中运行的网络应用,为您喜爱的网站提供更像应用程序的体验。" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 +msgid "Benefits of using WebApps:" +msgstr "使用 WebApps 的好处:" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Focus" +msgstr "专注" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 +msgid "Work without the distractions of other browser tabs" +msgstr "无需分心于其他浏览器标签页" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Desktop Integration" +msgstr "桌面集成" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 +msgid "Quick access from your application menu" +msgstr "可从应用菜单快速访问" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Isolated Profiles" +msgstr "独立配置文件" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 +msgid "Each webapp can have its own cookies and settings" +msgstr "每个 WebApp 都可以拥有自己的 Cookie 和设置" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 +msgid "Back" +msgstr "后退" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 +msgid "Forward" +msgstr "前进" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 +msgid "Reload" +msgstr "重新加载" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 +msgid "Fullscreen" +msgstr "全屏" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 +msgid "Enter URL…" +msgstr "输入 URL…" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 +msgid "Zoom In" +msgstr "放大" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 +msgid "Zoom Out" +msgstr "缩小" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 +msgid "Reset Zoom" +msgstr "重置缩放" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 +msgid "Developer Tools" +msgstr "开发者工具" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 +msgid "Menu" +msgstr "菜单" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 +msgid "Open Link in Browser" +msgstr "在浏览器中打开链接" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 +msgid "Download Complete" +msgstr "下载完成" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 +msgid "Save File" +msgstr "保存文件" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 +#~ msgid "Search templates" +#~ msgstr "搜索模板" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 +#, python-brace-format +#~ msgid "Browser: {0}" +#~ msgstr "浏览器: {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 +#, python-brace-format +#~ msgid "Edit {0}" +#~ msgstr "编辑 {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 +#, python-brace-format +#~ msgid "Delete {0}" +#~ msgstr "删除 {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 +#~ msgid "" +#~ "What are WebApps?\n" +#~ "\n" +#~ "WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n" +#~ "\n" +#~ "Benefits of using WebApps:\n" +#~ "\n" +#~ "• Focus: Work without the distractions of other browser tabs\n" +#~ "• Desktop Integration: Quick access from your application menu\n" +#~ "• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" +#~ msgstr "" +#~ "什么是WebApps?\n" +#~ "\n" +#~ "WebApps是运行在专用浏览器窗口中的网络应用程序,为您最喜欢的网站提供更像应用程序的体验。\n" +#~ "\n" +#~ "使用WebApps的好处:\n" +#~ "\n" +#~ "• 专注:在没有其他浏览器标签干扰的情况下工作\n" +#~ "• 桌面集成:可以从应用程序菜单快速访问\n" +#~ "• 隔离的配置文件:可选地,每个WebApp可以拥有自己的Cookie和设置\n" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 +#~ msgid "System Default" +#~ msgstr "系统默认" + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 -msgid "There are no WebApps to export." -msgstr "没有可导出的Web应用程序。" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 -msgid "The selected file does not exist." -msgstr "所选文件不存在。" -# -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 -msgid "The selected file is not a valid ZIP archive." -msgstr "所选文件不是有效的 ZIP 压缩文件。" +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 -msgid "Error importing WebApps" -msgstr "导入WebApps时出错" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 136 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 440 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 441 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 590 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 +#~ msgid "Default" +#~ msgstr "默认" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 +#~ msgid "Please select a browser." +#~ msgstr "请选择一个浏览器。" + +# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 -msgid "Imported {} WebApps successfully ({} duplicates skipped)" -msgstr "成功导入 {} 个 WebApps(跳过 {} 个重复项)" +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 172 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 +#~ msgid "Error" +#~ msgstr "错误" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 +#~ msgid "Choose from templates" +#~ msgstr "从模板中选择" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 +#~ msgid "Detect" +#~ msgstr "检测" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 +#~ msgid "App Icon" +#~ msgstr "应用程序图标" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 +#~ msgid "Select icon for the WebApp" +#~ msgstr "为WebApp选择图标" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 +#~ msgid "Available Icons" +#~ msgstr "可用图标" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 +#~ msgid "Application Mode" +#~ msgstr "应用模式" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 +#~ msgid "Profile Settings" +#~ msgstr "个人资料设置" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 +#~ msgid "Configure a separate browser profile for this webapp" +#~ msgstr "为此网络应用配置一个单独的浏览器配置文件" + +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 -msgid "Imported {} WebApps successfully" -msgstr "成功导入 {} WebApps" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 -msgid "No" -msgstr "不" +# #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # -# File: biglinux-webapps/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 -msgid "Yes" -msgstr "是" +#~ msgid "Use separate profile" +#~ msgstr "使用单独的配置文件" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 +#~ msgid "Detecting website information, please wait" +#~ msgstr "正在检测网站信息,请稍候" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 +#~ msgid "Please enter a URL first." +#~ msgstr "请先输入一个网址。" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 +#~ msgid "Please enter a name for the WebApp." +#~ msgstr "请输入WebApp的名称。" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 +#~ msgid "Please enter a URL for the WebApp." +#~ msgstr "请输入WebApp的URL。" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 +#~ msgid "Please select a browser for the WebApp." +#~ msgstr "请选择一个浏览器用于WebApp。" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 +#~ msgid "Main Menu" +#~ msgstr "主菜单" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 +#~ msgid "Refresh" +#~ msgstr "刷新" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 +#~ msgid "Show Welcome Screen" +#~ msgstr "显示欢迎屏幕" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 +#~ msgid "Add" +#~ msgstr "添加" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 +#~ msgid "No WebApps Found" +#~ msgstr "未找到Web应用程序" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 +#, python-brace-format +#~ msgid "Browser changed to {0}" +#~ msgstr "浏览器已更改为 {0}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to delete {0}?\n" +#~ "\n" +#~ "URL: {1}\n" +#~ "Browser: {2}" +#~ msgstr "" +#~ "您确定要删除 {0} 吗?\n" +#~ "\n" +#~ "网址: {1} \n" +#~ "浏览器: {2}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 +#~ msgid "REMOVE ALL" +#~ msgstr "删除所有" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 +#, python-brace-format +#~ msgid "" +#~ "Are you sure you want to remove all your WebApps? This action cannot be undone.\n" +#~ "\n" +#~ "Type \"{0}\" to confirm." +#~ msgstr "" +#~ "您确定要删除所有的 Web 应用吗?此操作无法撤销。\n" +#~ "\n" +#~ "输入“{0}”以确认。" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 +#, python-brace-format +#~ msgid "Icon {0} of {1}" +#~ msgstr "图标 {0} 的 {1}" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 +#~ msgid "There are no WebApps to export." +#~ msgstr "没有可导出的Web应用程序。" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 +#~ msgid "The selected file does not exist." +#~ msgstr "所选文件不存在。" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 +#~ msgid "The selected file is not a valid ZIP archive." +#~ msgstr "所选文件不是有效的 ZIP 压缩文件。" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 +#~ msgid "Error importing WebApps" +#~ msgstr "导入WebApps时出错" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 +#~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" +#~ msgstr "成功导入 {} 个 WebApps(跳过 {} 个重复项)" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 +#~ msgid "Imported {} WebApps successfully" +#~ msgstr "成功导入 {} WebApps" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 +#~ msgid "No" +#~ msgstr "不" + +# File: biglinux-webapps/biglinux- +# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 +#~ msgid "Yes" +#~ msgstr "是" diff --git a/biglinux-webapps/usr/bin/big-webapps b/biglinux-webapps/usr/bin/big-webapps deleted file mode 100755 index 1e6e2fa4..00000000 --- a/biglinux-webapps/usr/bin/big-webapps +++ /dev/null @@ -1,348 +0,0 @@ -#!/usr/bin/env bash - -display_help() { - echo "This script manages WebApps by creating or removing .desktop files for specified browsers and URLs." - echo "" - echo "Usage:" - echo " $0 {create|remove|remove-with-folder} " - echo "" - echo "Commands:" - echo " create - Creates a new WebApp .desktop file" - echo " remove-with-folder - Removes an existing WebApp .desktop file" - echo " remove - Removes an existing WebApp .desktop file" - echo " json - Show all WebApps in JSON format" - echo " json file - Change file to filename to show in JSON format" - echo "" - echo "Arguments for create, the order is important:" - echo " - The browser to use (e.g., google-chrome-stable, brave-browser)" - echo " - The display name of the WebApp" - echo " - The URL of the WebApp" - echo " - The icon for the WebApp" - echo " - The category for the WebApp" - echo " - The profile directory to use" - echo "" - echo "Examples:" - echo " Create a WebApp:" - echo " $0 create brave \"BigLinux\" \"https://www.biglinux.com.br\" \"big-logo\" \"Webapps\" \"Default\"" - echo "" - echo " Remove an existing WebApp:" - echo " $0 remove brave-www.biglinux.com.br__-Default.desktop" -} - -# Check for minimum arguments -if [ "$#" -lt 1 ]; then - display_help - exit -fi - -# Check if the folder exists and create it if it doesn't -if [[ ! -d ~/.local/share/applications ]]; then - mkdir -p ~/.local/share/applications -fi - -# Change to the applications folder, if it fails, exit -cd ~/.local/share/applications || { echo "Failed to change directory to ~/.local/share/applications"; exit 1; } - -# Main command -command="$1" -shift - -if [[ $command == "json" ]]; then - one_file="$1" - -# Remove -elif [ "$command" == "remove" ]; then - if [ "$#" = "0" ]; then - display_help - exit 1 - fi - - filename="$1" - browser="$2" - profile="$3" - - if [ -f "$filename" ]; then - rm "$filename" - - echo "WebApp successfully removed!" - exit 0 - else - echo "WebApp not found!" - exit 1 - fi - -# Remove -elif [ "$command" = "remove-with-folder" ]; then - if [ "$#" = "0" ]; then - display_help - exit 1 - fi - - filename="$1" - browser="$2" - profile="$3" - - if [ -f "$filename" ]; then - rm "$filename" - # Verify if $browser variable not null and $profile variable not null and folder $HOME/.bigwebapps/$browser/$profile exists - if [[ -n "$browser" ]] && [[ -n "$profile" ]] && [[ -d "$HOME/.bigwebapps/$browser/$profile" ]]; then - rm -rf "$HOME/.bigwebapps/$browser/$profile" - else - if [[ "$browser" == "firefox" || "$browser" == "librewolf" || "$browser" == "flatpak-firefox" || "$browser" == "flatpak-librewolf" ]]; then - # Firefox and Librewolf always remove the profile folder - filename=${filename//.desktop} - if [[ -d "$HOME/.bigwebapps/$browser/$filename" ]]; then - rm -rf "$HOME/.bigwebapps/$browser/$filename" - fi - fi - fi - - echo "WebApp successfully removed!" - exit 0 - else - echo "WebApp not found!" - exit 1 - fi - -else - # Set global variables - browser="$1" - name="$2" - url="$3" - icon="$4" - # If icon has a path, copy to proper icon theme dir and use absolute path - if [[ $icon =~ \/ ]]; then - mkdir -p ~/.local/share/icons/hicolor/scalable/apps - icon_basename="${icon##*/}" - cp "$icon" ~/.local/share/icons/hicolor/scalable/apps/ - icon="$HOME/.local/share/icons/hicolor/scalable/apps/$icon_basename" - fi - category="$5" - profile="$6" -fi - - -# Adjust the browser name for the filename and class -if [[ "$browser" == "__viewer__" ]]; then - short_browser="viewer" -else - case "$browser" in - *[Cc]hrom*) short_browser="chrome" ;; - *[Bb]rave*) short_browser="brave" ;; - *[Ee]dge*) short_browser="msedge" ;; - *[Vv]ivaldi*) short_browser="vivaldi" ;; - *) short_browser="$browser" ;; - esac -fi - -# Adjust the class by replacing "/" with "__" and removing https -class=$(sed 's|https://||;s|http://||g;s|/|__|g' <<< "$url") - -# Define the filename in Wayland compatible format -filename="$short_browser-$(sed 's|https://||;s|http://||;s|?.*||g;s|/|__|g' <<< "$url")-Default.desktop" - -# Keep first occurrence of __ and replace all others with _ -filename=$(sed 's/__/\n/g;s/\n/__/;s/\n/_/g' <<< "$filename") - -if ! grep -q '__' <<< "$filename"; then - filename=$(sed "s/-Default/__-Default/g" <<< "$filename") -fi - -# Verify if the WebApp already exists -if [[ -e ~/.local/share/applications/$filename ]]; then - - # If the WebApp already exists, add BigWebApp1 or first available number - i=1 - filename_orig=$filename - while [[ -e ~/.local/share/applications/$filename ]]; do - i=$((i + 1)) - filename="${filename_orig/.desktop/}-BigWebApp$i.desktop" - done - -fi - -# Create -if [ "$command" = "create" ]; then - if [ "$#" -ne 6 ]; then - display_help - exit 1 - fi - - # optional metadata via env vars (backward compatible) - : "${WEBAPP_MIME_TYPES:=}" - : "${WEBAPP_COMMENT:=}" - : "${WEBAPP_GENERIC_NAME:=}" - : "${WEBAPP_KEYWORDS:=}" - : "${WEBAPP_TEMPLATE_ID:=}" - : "${WEBAPP_URL_SCHEMES:=}" - - # merge url_schemes into mime_types as x-scheme-handler/* - if [[ -n "$WEBAPP_URL_SCHEMES" ]]; then - IFS=';' read -ra schemes <<< "$WEBAPP_URL_SCHEMES" - for scheme in "${schemes[@]}"; do - [[ -z "$scheme" ]] && continue - WEBAPP_MIME_TYPES+="x-scheme-handler/$scheme;" - done - fi - - # build optional .desktop fields - extra_fields="" - [[ -n "$WEBAPP_MIME_TYPES" ]] && extra_fields+="MimeType=$WEBAPP_MIME_TYPES -" - [[ -n "$WEBAPP_COMMENT" ]] && extra_fields+="Comment=$WEBAPP_COMMENT -" - [[ -n "$WEBAPP_GENERIC_NAME" ]] && extra_fields+="GenericName=$WEBAPP_GENERIC_NAME -" - [[ -n "$WEBAPP_KEYWORDS" ]] && extra_fields+="Keywords=$WEBAPP_KEYWORDS -" - [[ -n "$WEBAPP_TEMPLATE_ID" ]] && extra_fields+="X-BigWebApp-Template=$WEBAPP_TEMPLATE_ID -" - - if [[ "$browser" == "__viewer__" ]]; then - # App mode — Qt6 viewer without browser chrome - app_id=$(sed 's|https://||;s|http://||;s|/|_|g;s|[^a-zA-Z0-9_-]||g' <<< "$url") - # support file args (%f) when mime types registered - exec_line="big-webapps-viewer --url=\"$url\" --name=\"$name\" --icon=\"${icon}\" --app-id=\"$app_id\"" - [[ -n "$WEBAPP_MIME_TYPES" ]] && exec_line+=" %f" - read -d $'' ShowText < "$filename" - -echo "WebApp $name successfully created as $filename" - -# Verify -elif [ "$command" = "verify" ]; then - if [ "$#" -ne 6 ]; then - display_help - exit 1 - fi - - if [ -f "$filename_orig" ]; then - echo "true" - exit 1 - else - echo "false" - exit 0 - fi - -# List -elif [ "$command" = "json" ]; then - - declare -i num=0 - - # Print the JSON array start - echo "[" - # Set IFS to newline to handle spaces in filenames - IFS=$'\n' - # Get if not passed the files, show all files with big-webapps-exec - if [[ -z $one_file ]]; then - files=$(grep -Rl 'big-webapps-exec\|big-webapps-viewer') - else - files=$one_file - fi - - # Loop through all files - for file in $files; do - - # Clean info before verify next file - unset browser name url icon categories profile - - # Read any file and get the name, url, icon and categories - while IFS= read -r line; do - case $line in - "Name="*) - name=${line#*Name=} - ;; - "Exec="*) - if [[ "$line" == *"big-webapps-viewer"* ]]; then - # App mode — Qt6 viewer - url=${line//*--url=\"} - url=${url//\"*} - browser="__viewer__" - profile="Default" - else - # Browser mode - url=${line//*--app=} - url=${url//\"} - browser=${line//*filename=\"} - browser=${browser#*\" } - browser=${browser// *} - profile=${line//*--profile-directory=} - profile=${profile// *} - fi - ;; - "Icon="*) - icon=${line#*Icon=} - ;; - "Categories="*) - categories=${line#*Categories=} - ;; - esac - done <<<"$(grep -ve 'Name=Software Render' -ve 'Exec=SoftwareRender ' "$file" | grep -m4 -e '^Name=' -e '^Exec=' -e '^Icon=' -e '^Categories=')" - - # Print the JSON separator - if [[ $num -gt 0 ]]; then - printf ',\n' - fi - - # Determine app_mode from browser - if [[ "$browser" == "__viewer__" ]]; then - app_mode="app" - else - app_mode="browser" - fi - - # JSON-escape values: handle backslash, double-quote, control chars - _json_escape() { printf '%s' "$1" | sed 's/\\/\\\\/g;s/"/\\"/g;s/\t/\\t/g'; } - - # Print the JSON object - printf ' {\n' - printf ' "browser": "%s",\n' "$(_json_escape "$browser")" - printf ' "app_file": "%s",\n' "$(_json_escape "$file")" - printf ' "app_name": "%s",\n' "$(_json_escape "$name")" - printf ' "app_url": "%s",\n' "$(_json_escape "$url")" - printf ' "app_icon": "%s",\n' "$(_json_escape "$icon")" - printf ' "app_profile": "%s",\n' "$(_json_escape "$profile")" - printf ' "app_categories": "%s",\n' "$(_json_escape "$categories")" - printf ' "app_mode": "%s"\n' "$app_mode" - printf ' }' - num+=1 - done - # Print the JSON array end - echo "]" - -else - echo "Invalid command: $command" - display_help - exit 1 -fi diff --git a/biglinux-webapps/usr/bin/big-webapps-gui b/biglinux-webapps/usr/bin/big-webapps-gui deleted file mode 100755 index 78741168..00000000 --- a/biglinux-webapps/usr/bin/big-webapps-gui +++ /dev/null @@ -1,7 +0,0 @@ -#!/usr/bin/env bash - -mkdir -p ~/.local/share/icons - -cd /usr/share/biglinux/webapps/ - -exec python main.py diff --git a/biglinux-webapps/usr/bin/big-webapps-viewer b/biglinux-webapps/usr/bin/big-webapps-viewer deleted file mode 100755 index 768a4d5e..00000000 --- a/biglinux-webapps/usr/bin/big-webapps-viewer +++ /dev/null @@ -1,923 +0,0 @@ -#!/usr/bin/env python3 -"""BigLinux WebApp Viewer — Qt6/PySide6 + Chromium WebEngine. -CSD headerbar replicating GTK4/Adwaita style. Fullscreen auto-hide overlay. -""" - -APP_VERSION = "3.5.1" - -import argparse -import json -import os -import re -import signal -import sys -from functools import lru_cache -from pathlib import Path - -# optional MPRIS integration for media webapps -try: - # resolve import path relative to the script - _mpris_dir = Path(__file__).resolve().parent.parent / "share/biglinux/webapps" - sys.path.insert(0, str(_mpris_dir)) - from webapps.utils.mpris import ( - MPRIS_AVAILABLE, - MprisService, - MEDIA_SESSION_JS, - start_glib_loop, - ) - - sys.path.pop(0) -except ImportError: - MPRIS_AVAILABLE = False - MEDIA_SESSION_JS = "" - -from PySide6.QtCore import QRectF, QSize, QTimer, Qt, QUrl -from PySide6.QtGui import ( - QAction, - QColor, - QCursor, - QIcon, - QKeySequence, - QPainter, - QPainterPath, - QPalette, - QPixmap, - QRegion, -) -from PySide6.QtSvg import QSvgRenderer -from PySide6.QtWebEngineCore import ( - QWebEngineDownloadRequest, - QWebEnginePage, - QWebEngineProfile, - QWebEngineScript, - QWebEngineSettings, -) -from PySide6.QtWebEngineWidgets import QWebEngineView -from PySide6.QtWidgets import ( - QApplication, - QFileDialog, - QHBoxLayout, - QLabel, - QMainWindow, - QSizeGrip, - QToolButton, - QVBoxLayout, - QWidget, -) - -DATA_BASE = Path.home() / ".local" / "share" / "biglinux-webapps" -CONFIG_BASE = Path.home() / ".config" / "biglinux-webapps" -HOVER_ZONE = 60 -RESIZE_MARGIN = 8 # px from edge to trigger border resize - - -def _is_dark_theme() -> bool: - """Check if system theme is dark based on window background luminance.""" - bg = QApplication.palette().color(QPalette.ColorRole.Window) - lum = 0.299 * bg.redF() + 0.587 * bg.greenF() + 0.114 * bg.blueF() - return lum < 0.5 - - -def _get_theme_colors() -> dict[str, str]: - """Derive headerbar colors from system palette.""" - pal = QApplication.palette() - bg = pal.color(QPalette.ColorRole.Window) - fg = pal.color(QPalette.ColorRole.WindowText) - - dark = _is_dark_theme() - - # KDE/Kvantum sometimes returns wrong fg for palette — enforce contrast - fg_lum = 0.299 * fg.redF() + 0.587 * fg.greenF() + 0.114 * fg.blueF() - if dark and fg_lum < 0.5: - fg = QColor("#ffffff") - elif not dark and fg_lum > 0.5: - fg = QColor("#2e3436") - - # headerbar bg: slightly adjusted from window bg - h, s, l, _ = bg.getHslF() - if dark: - hdr_bg = QColor.fromHslF(h, s, max(0.0, l - 0.03)) - hdr_border = QColor.fromHslF(h, s, max(0.0, l - 0.08)) - else: - hdr_bg = QColor.fromHslF(h, s, max(0.0, l - 0.05)) - hdr_border = QColor.fromHslF(h, s, max(0.0, l - 0.12)) - - r, g, b = fg.red(), fg.green(), fg.blue() - result = { - "bg": hdr_bg.name(), - "border": hdr_border.name(), - "fg": fg.name(), - "hover": f"rgba({r},{g},{b},0.12)", - "press": f"rgba({r},{g},{b},0.18)", - "disabled": f"rgba({r},{g},{b},0.3)", - "wctrl_bg": f"rgba({r},{g},{b},0.10)", - "wctrl_hover": f"rgba({r},{g},{b},0.20)", - "wctrl_press": f"rgba({r},{g},{b},0.28)", - } - return result - - -# Symbolic icon name mapping -_ICON_NAMES: dict[str, str] = { - "go-previous": "go-previous-symbolic", - "go-next": "go-next-symbolic", - "view-refresh": "view-refresh-symbolic", - "view-fullscreen": "view-fullscreen-symbolic", - "minimize": "window-minimize-symbolic", - "maximize": "window-maximize-symbolic", - "restore": "window-restore-symbolic", - "close": "window-close-symbolic", -} - - -@lru_cache(maxsize=32) -def _find_icon_svg(svg_name: str) -> Path | None: - """Search icon themes for SVG: active → base (strip -dark/-light) → fallback → Adwaita.""" - themes: list[str] = [] - for tn in (QIcon.themeName(), QIcon.fallbackThemeName()): - if tn and tn not in themes: - themes.append(tn) - # also check base theme (strip -dark / -light suffix) - base = re.sub(r"-(dark|light)$", "", tn) - if base != tn and base not in themes: - themes.append(base) - if "Adwaita" not in themes: - themes.append("Adwaita") - - target = svg_name if svg_name.endswith(".svg") else f"{svg_name}.svg" - for theme in themes: - for base in QIcon.themeSearchPaths(): - if base.startswith(":"): - continue - theme_dir = Path(base) / theme - if not theme_dir.is_dir(): - continue - for hit in theme_dir.rglob(target): - return hit - return None - - -def _make_adw_icon(name: str, size: int = 16, fg_hex: str = "#ffffff") -> QIcon: - """Load symbolic SVG from system icon theme, recolored to fg_hex.""" - svg_name = _ICON_NAMES.get(name, f"{name}-symbolic") - svg_path = _find_icon_svg(svg_name) - - px = QPixmap(size, size) - px.fill(Qt.transparent) - - if svg_path and svg_path.exists(): - svg_text = svg_path.read_text() - # Recolor: Adwaita fill="#2e3436", currentColor-based themes, inline fill - svg_text = re.sub(r'fill=["\']#[0-9A-Fa-f]{6}["\']', f'fill="{fg_hex}"', svg_text) - svg_text = re.sub(r"fill:#[0-9A-Fa-f]{6}", f"fill:{fg_hex}", svg_text) - svg_text = svg_text.replace("currentColor", fg_hex) - svg_text = re.sub(r"color:#[0-9A-Fa-f]{6}", f"color:{fg_hex}", svg_text) - renderer = QSvgRenderer(svg_text.encode()) - p = QPainter(px) - renderer.render(p) - p.end() - else: - return QIcon.fromTheme(name) - - return QIcon(px) - - -CORNER_RADIUS = 14 - - -class HeaderBar(QWidget): - """CSD headerbar: ← → ⟳ | title | ⛶ − □/⊞ ✕""" - - def __init__(self, parent: QWidget) -> None: - super().__init__(parent) - self.setFixedHeight(46) - self.setObjectName("HeaderBar") - self._apply_theme() - - lay = QHBoxLayout(self) - lay.setContentsMargins(8, 0, 8, 0) - lay.setSpacing(2) - - # nav left - tc = _get_theme_colors() - fg = tc["fg"] - self.back_btn = self._btn("go-previous", fg) - self.fwd_btn = self._btn("go-next", fg) - self.reload_btn = self._btn("view-refresh", fg) - self.back_btn.setEnabled(False) - self.fwd_btn.setEnabled(False) - lay.addWidget(self.back_btn) - lay.addWidget(self.fwd_btn) - lay.addSpacing(4) - lay.addWidget(self.reload_btn) - - # title center - lay.addStretch() - self.title_label = QLabel() - self.title_label.setObjectName("titleLabel") - lay.addWidget(self.title_label) - lay.addStretch() - - # window controls right — circular Adwaita style - self.fullscreen_btn = self._btn("view-fullscreen", fg) - self.min_btn = self._wctrl("minimize", "minBtn", fg) - self.max_btn = self._wctrl("maximize", "maxBtn", fg) - self.close_btn = self._wctrl("close", "closeBtn", fg) - lay.addWidget(self.fullscreen_btn) - lay.addSpacing(10) - lay.addWidget(self.min_btn) - lay.addSpacing(12) - lay.addWidget(self.max_btn) - lay.addSpacing(12) - lay.addWidget(self.close_btn) - - def _apply_theme(self) -> None: - """Set stylesheet from system palette.""" - tc = _get_theme_colors() - self.setStyleSheet(f""" - #HeaderBar {{ - background: {tc['bg']}; - border-bottom: 1px solid {tc['border']}; - border-top-left-radius: {CORNER_RADIUS}px; - border-top-right-radius: {CORNER_RADIUS}px; - }} - #HeaderBar QToolButton {{ - border: none; - border-radius: 6px; - padding: 4px; - color: {tc['fg']}; - background: transparent; - }} - #HeaderBar QToolButton:hover {{ - background: {tc['hover']}; - }} - #HeaderBar QToolButton:pressed {{ - background: {tc['press']}; - }} - #HeaderBar QToolButton:disabled {{ - color: {tc['disabled']}; - }} - #HeaderBar #minBtn, - #HeaderBar #maxBtn, - #HeaderBar #closeBtn {{ - border-radius: 12px; - min-width: 24px; - max-width: 24px; - min-height: 24px; - max-height: 24px; - padding: 0px; - background: {tc['wctrl_bg']}; - }} - #HeaderBar #minBtn:hover, - #HeaderBar #maxBtn:hover, - #HeaderBar #closeBtn:hover {{ - background: {tc['wctrl_hover']}; - }} - #HeaderBar #minBtn:pressed, - #HeaderBar #maxBtn:pressed, - #HeaderBar #closeBtn:pressed {{ - background: {tc['wctrl_press']}; - }} - #HeaderBar #titleLabel {{ - color: {tc['fg']}; - font-weight: 600; - font-size: 13px; - }} - """) - - @staticmethod - def _btn(icon_name: str, fg_hex: str) -> QToolButton: - btn = QToolButton() - btn.setIcon(_make_adw_icon(icon_name, size=20, fg_hex=fg_hex)) - btn.setIconSize(QSize(20, 20)) - btn.setFixedSize(34, 34) - btn.setAutoRaise(True) - return btn - - @staticmethod - def _wctrl(kind: str, obj_name: str, fg_hex: str = "#ffffff") -> QToolButton: - """Window control button — circular with system theme icon.""" - btn = QToolButton() - btn.setIcon(_make_adw_icon(kind, size=20, fg_hex=fg_hex)) - btn.setIconSize(QSize(20, 20)) - btn.setObjectName(obj_name) - btn.setFixedSize(24, 24) - btn.setAutoRaise(True) - return btn - - def mousePressEvent(self, event) -> None: - if event.button() == Qt.LeftButton: - wh = self.window().windowHandle() - if wh: - wh.startSystemMove() - - def mouseDoubleClickEvent(self, event) -> None: - if event.button() == Qt.LeftButton: - w = self.window() - if w.isMaximized(): - w.showNormal() - else: - w.showMaximized() - - -class _ResizeHandle(QWidget): - """Transparent edge widget that initiates system resize on drag.""" - - def __init__(self, edges: Qt.Edges, cursor_shape, parent=None): - super().__init__(parent) - self.edges = edges - self.setCursor(cursor_shape) - self.setMouseTracking(True) - self.setAttribute(Qt.WidgetAttribute.WA_TransparentForMouseEvents, False) - self.setStyleSheet("background: transparent;") - self.raise_() - - def mousePressEvent(self, event) -> None: - if event.button() == Qt.LeftButton: - wh = self.window().windowHandle() - if wh: - wh.startSystemResize(self.edges) - - -class NavOverlay(QWidget): - """Fullscreen-only auto-hide nav: ← → ⟳ ⊞""" - - def __init__(self, parent: QWidget) -> None: - super().__init__(parent) - self.setVisible(False) - self.setObjectName("NavOverlay") - # fullscreen overlay always uses dark style for contrast - self.setStyleSheet(""" - #NavOverlay { - background: rgba(30,30,30,0.85); - border-radius: 8px; - border: 1px solid rgba(255,255,255,0.1); - } - #NavOverlay QToolButton { - border: none; - border-radius: 4px; - padding: 4px; - color: #ffffff; - } - #NavOverlay QToolButton:hover { - background: rgba(255,255,255,0.12); - } - """) - lay = QHBoxLayout(self) - lay.setContentsMargins(6, 4, 6, 4) - lay.setSpacing(4) - - # NavOverlay always uses white icons on dark backdrop - self.back_btn = self._btn("go-previous") - self.fwd_btn = self._btn("go-next") - self.reload_btn = self._btn("view-refresh") - self.exit_fs_btn = self._btn("view-fullscreen") - self.back_btn.setEnabled(False) - self.fwd_btn.setEnabled(False) - - lay.addWidget(self.back_btn) - lay.addWidget(self.fwd_btn) - lay.addWidget(self.reload_btn) - lay.addWidget(self.exit_fs_btn) - self.adjustSize() - - @staticmethod - def _btn(icon_name: str) -> QToolButton: - btn = QToolButton() - btn.setIcon(_make_adw_icon(icon_name, size=20, fg_hex="#ffffff")) - btn.setIconSize(QSize(20, 20)) - btn.setFixedSize(30, 30) - btn.setAutoRaise(True) - return btn - - -class FileAwarePage(QWebEnginePage): - """WebEngine page that auto-selects a pending file on the first file dialog.""" - - def __init__(self, profile, parent=None): - super().__init__(profile, parent) - self._pending_file: Path | None = None - - def chooseFiles(self, mode, old_files, accepted_mime): - """Intercept file chooser → inject pending file if available.""" - if self._pending_file and self._pending_file.is_file(): - f = str(self._pending_file) - self._pending_file = None # one-shot - return [f] - return super().chooseFiles(mode, old_files, accepted_mime) - - def featurePermissionRequested(self, url, feature): - """Auto-grant notification, camera, microphone permissions for webapp.""" - grant_features = { - QWebEnginePage.Feature.Notifications, - QWebEnginePage.Feature.MediaAudioCapture, - QWebEnginePage.Feature.MediaVideoCapture, - QWebEnginePage.Feature.MediaAudioVideoCapture, - QWebEnginePage.Feature.DesktopVideoCapture, - QWebEnginePage.Feature.DesktopAudioVideoCapture, - } - if feature in grant_features: - self.setFeaturePermission( - url, - feature, - QWebEnginePage.PermissionPolicy.PermissionGrantedByUser, - ) - else: - super().featurePermissionRequested(url, feature) - - -class WebAppWindow(QMainWindow): - """CSD window + Chromium WebEngine. Adwaita-style headerbar.""" - - def __init__(self, url: str, title: str, icon: str, app_id: str) -> None: - super().__init__() - self.app_id = app_id - self._pending_file: Path | None = None - self.config_path = CONFIG_BASE / f"{app_id}.json" - self.setWindowFlags(Qt.FramelessWindowHint | Qt.Window) - self.setAttribute(Qt.WidgetAttribute.WA_TranslucentBackground, True) - - self._setup_profile(app_id) - self._setup_ui(url, title, icon) - self._setup_shortcuts() - self._load_geometry() - self._enforce_screen_limits() - - # fullscreen hover detection - self._hover_timer = QTimer(self) - self._hover_timer.timeout.connect(self._check_hover) - self._hover_timer.start(150) - - def _setup_profile(self, app_id: str) -> None: - storage = str(DATA_BASE / app_id) - Path(storage).mkdir(parents=True, exist_ok=True) - self.profile = QWebEngineProfile(app_id, self) - self.profile.setPersistentStoragePath(storage) - self.profile.setCachePath(str(DATA_BASE / app_id / "cache")) - self.profile.setPersistentCookiesPolicy( - QWebEngineProfile.PersistentCookiesPolicy.ForcePersistentCookies - ) - self.profile.downloadRequested.connect(self._on_download) - # bridge web Notifications → native desktop notifications - self.profile.setNotificationPresenter(self._present_notification) - - def _setup_ui(self, url: str, title: str, icon: str) -> None: - if icon: - self.setWindowIcon( - QIcon(icon) if os.path.isfile(icon) else QIcon.fromTheme(icon) - ) - - tc = _get_theme_colors() - central = QWidget() - central.setObjectName("central") - central.setStyleSheet( - f"#central {{ background: {tc['bg']}; border-radius: {CORNER_RADIUS}px; }}" - ) - vbox = QVBoxLayout(central) - vbox.setContentsMargins(0, 0, 0, 0) - vbox.setSpacing(0) - - # CSD headerbar - self.header = HeaderBar(self) - self.header.title_label.setText(title) - vbox.addWidget(self.header) - - # webview with file-aware page for %f file handling - self._page = FileAwarePage(self.profile, self) - self.webview = QWebEngineView(self) - self.webview.setPage(self._page) - s = self.profile.settings() - for attr in ( - QWebEngineSettings.WebAttribute.JavascriptEnabled, - QWebEngineSettings.WebAttribute.LocalStorageEnabled, - QWebEngineSettings.WebAttribute.ScrollAnimatorEnabled, - QWebEngineSettings.WebAttribute.PluginsEnabled, - QWebEngineSettings.WebAttribute.JavascriptCanAccessClipboard, - ): - s.setAttribute(attr, True) - s.setAttribute( - QWebEngineSettings.WebAttribute.PlaybackRequiresUserGesture, False - ) - s.setAttribute( - QWebEngineSettings.WebAttribute.FullScreenSupportEnabled, True - ) - # disable non-essential features → reduce RAM - for off_attr in ( - QWebEngineSettings.WebAttribute.AutoLoadIconsForPage, - QWebEngineSettings.WebAttribute.TouchIconsEnabled, - ): - s.setAttribute(off_attr, False) - - # inject JS to neutralize window resize/move from web content - _no_resize_js = QWebEngineScript() - _no_resize_js.setName("no-resize") - _no_resize_js.setSourceCode( - "window.resizeTo=function(){};" - "window.resizeBy=function(){};" - "window.moveTo=function(){};" - "window.moveBy=function(){};" - ) - _no_resize_js.setInjectionPoint( - QWebEngineScript.InjectionPoint.DocumentCreation - ) - _no_resize_js.setWorldId(QWebEngineScript.ScriptWorldId.MainWorld) - _no_resize_js.setRunsOnSubFrames(True) - self.webview.page().scripts().insert(_no_resize_js) - - self.webview.setUrl(QUrl(url)) - vbox.addWidget(self.webview) - - self.setCentralWidget(central) - self.setWindowTitle(title) - - # fullscreen nav overlay — parented to webview, hidden by default - self.nav = NavOverlay(self.webview) - self.nav.move(8, 8) - - # headerbar connections - self.header.back_btn.clicked.connect(self.webview.back) - self.header.fwd_btn.clicked.connect(self.webview.forward) - self.header.reload_btn.clicked.connect(self.webview.reload) - self.header.fullscreen_btn.clicked.connect(self._toggle_fullscreen) - self.header.min_btn.clicked.connect(self.showMinimized) - self.header.max_btn.clicked.connect(self._toggle_maximize) - self.header.close_btn.clicked.connect(self.close) - - # fullscreen overlay connections - self.nav.back_btn.clicked.connect(self.webview.back) - self.nav.fwd_btn.clicked.connect(self.webview.forward) - self.nav.reload_btn.clicked.connect(self.webview.reload) - self.nav.exit_fs_btn.clicked.connect(self._toggle_fullscreen) - - # webview signals - self.webview.titleChanged.connect(self._on_title) - self.webview.urlChanged.connect(self._on_nav) - self.webview.page().fullScreenRequested.connect(self._on_fullscreen_req) - self.webview.page().newWindowRequested.connect(self._on_new_window) - self.webview.loadStarted.connect(self._on_load_started) - self.webview.loadFinished.connect(self._on_load_finished) - - # optional MPRIS integration for media keys - self._mpris = None - if MPRIS_AVAILABLE and MEDIA_SESSION_JS: - self._setup_mpris(title) - - # resize grip — bottom-right - self._grip = QSizeGrip(self) - self._grip.setFixedSize(16, 16) - - # edge resize handles (left/right/bottom/corners) - self._setup_resize_handles() - - def _setup_shortcuts(self) -> None: - for key, slot in ( - (QKeySequence("F5"), lambda: self.webview.reload()), - (QKeySequence("Ctrl+R"), lambda: self.webview.reload()), - (QKeySequence("Ctrl+Q"), self.close), - (QKeySequence("Alt+Left"), lambda: self.webview.back()), - (QKeySequence("Alt+Right"), lambda: self.webview.forward()), - (QKeySequence("F11"), self._toggle_fullscreen), - (QKeySequence("Escape"), self._exit_fullscreen), - ): - a = QAction(self) - a.setShortcut(key) - a.triggered.connect(slot) - self.addAction(a) - - def _setup_mpris(self, title: str) -> None: - """Set up MPRIS2 D-Bus service + JS media session bridge.""" - try: - self._mpris = MprisService(self.app_id, title) - start_glib_loop() - - # media key D-Bus commands → JS in webview - def _js_cmd(cmd: str): - self.webview.page().runJavaScript( - f"navigator.mediaSession && navigator.mediaSession.{cmd}" - ) - - self._mpris.set_callbacks( - play=lambda: _js_cmd("playbackState='playing'"), - pause=lambda: _js_cmd("playbackState='paused'"), - ) - - # inject media session polling JS after each page load - media_js = QWebEngineScript() - media_js.setName("mpris-bridge") - media_js.setSourceCode(MEDIA_SESSION_JS) - media_js.setInjectionPoint(QWebEngineScript.InjectionPoint.DocumentReady) - media_js.setWorldId(QWebEngineScript.ScriptWorldId.MainWorld) - media_js.setRunsOnSubFrames(False) - self.webview.page().scripts().insert(media_js) - except Exception: - self._mpris = None - - def _check_hover(self) -> None: - """Show fullscreen overlay when cursor near top of webview.""" - if not self.isFullScreen(): - self.nav.setVisible(False) - return - pos = QCursor.pos() - local = self.webview.mapFromGlobal(pos) - in_zone = 0 <= local.x() <= self.webview.width() and 0 <= local.y() <= HOVER_ZONE - nav_local = self.nav.mapFromGlobal(pos) - over_nav = self.nav.rect().contains(nav_local) - self.nav.setVisible(in_zone or over_nav) - if self.nav.isVisible(): - self.nav.raise_() - - def _enforce_screen_limits(self) -> None: - """Set maximum window size to screen bounds → block external resize.""" - screen = QApplication.primaryScreen() - if screen: - sg = screen.availableGeometry() - self.setMaximumSize(sg.width(), sg.height()) - - def _toggle_fullscreen(self) -> None: - if self.isFullScreen(): - self._exit_fullscreen() - else: - # lift max-size limit so fullscreen can use entire display - self.setMaximumSize(16777215, 16777215) - self.header.setVisible(False) - self._grip.setVisible(False) - self.showFullScreen() - self._apply_mask() - - def _exit_fullscreen(self) -> None: - if not self.isFullScreen(): - return - self.header.setVisible(True) - self._grip.setVisible(True) - self.showNormal() - self._enforce_screen_limits() - self._apply_mask() - - def _toggle_maximize(self) -> None: - fg = _get_theme_colors()["fg"] - if self.isMaximized(): - self.showNormal() - self.header.max_btn.setIcon(_make_adw_icon("maximize", size=20, fg_hex=fg)) - else: - self.showMaximized() - self.header.max_btn.setIcon(_make_adw_icon("restore", size=20, fg_hex=fg)) - self._apply_mask() - - def _on_title(self, title: str) -> None: - if title: - self.setWindowTitle(title) - self.header.title_label.setText(title) - - def _on_nav(self) -> None: - can_back = self.webview.history().canGoBack() - can_fwd = self.webview.history().canGoForward() - self.header.back_btn.setEnabled(can_back) - self.header.fwd_btn.setEnabled(can_fwd) - self.nav.back_btn.setEnabled(can_back) - self.nav.fwd_btn.setEnabled(can_fwd) - - def _on_fullscreen_req(self, request) -> None: - """Handle JS fullscreen requests (e.g. video players).""" - request.accept() - if request.toggleOn(): - self._toggle_fullscreen() - else: - self._exit_fullscreen() - - def _on_new_window(self, request) -> None: - """Handle JS popups — open in same page instead of spawning new ones.""" - request.openIn(self._page) - - def _on_load_started(self) -> None: - """Lock window size during navigation → prevent Wayland compositor - from resizing frameless windows on cross-origin navigations.""" - if not self.isMaximized() and not self.isFullScreen(): - self._pre_nav_size = self.size() - self.setFixedSize(self._pre_nav_size) - - def _on_load_finished(self, ok: bool) -> None: - """Unlock window size + transfer pending file.""" - # restore resizability + trigger page reflow after size lock - if hasattr(self, "_pre_nav_size"): - self.setMinimumSize(0, 0) - self._enforce_screen_limits() - del self._pre_nav_size - # force page layout recalculation after unlock - self.webview.page().runJavaScript( - "window.dispatchEvent(new Event('resize'));" - ) - if ok and self._pending_file and self._pending_file.is_file(): - self._page._pending_file = self._pending_file - self._pending_file = None - # show info bar so user knows a file is ready for upload - self._show_file_info_bar(self._page._pending_file) - - def _show_file_info_bar(self, filepath: Path) -> None: - """Show a non-intrusive bar indicating a file is queued for upload.""" - # inject a dismissible banner at top of page via JS - name = filepath.name.replace("'", "\\'") - js = f""" - (function() {{ - if (document.getElementById('bigwebapp-file-bar')) return; - var bar = document.createElement('div'); - bar.id = 'bigwebapp-file-bar'; - bar.style.cssText = 'position:fixed;top:0;left:0;right:0;z-index:999999;' - + 'background:#1a73e8;color:#fff;padding:8px 16px;font:14px sans-serif;' - + 'display:flex;align-items:center;justify-content:space-between;'; - bar.innerHTML = '📄 {name} — click any upload/import button to use this file' - + ''; - document.body.prepend(bar); - }})(); - """ - self.webview.page().runJavaScript(js) - - def _on_download(self, download: QWebEngineDownloadRequest) -> None: - """Handle file downloads — use xdg-desktop-portal via QFileDialog.""" - suggested = download.downloadFileName() - dest, _ = QFileDialog.getSaveFileName( - self, "Save File", str(Path.home() / "Downloads" / suggested) - ) - if dest: - download.setDownloadDirectory(str(Path(dest).parent)) - download.setDownloadFileName(Path(dest).name) - download.accept() - - def _present_notification(self, notification) -> None: - """Bridge QWebEngineNotification → native desktop notification.""" - import subprocess as _sp - - title = notification.title() or self.windowTitle() - body = notification.message() or "" - icon = notification.icon() - icon_arg = "dialog-information" - - # save notification icon to temp file if available - if icon and not icon.isNull(): - tmp = Path("/tmp") / f"bigwebapp-notify-{self.app_id}.png" - icon.save(str(tmp)) - icon_arg = str(tmp) - - try: - _sp.Popen( - ["notify-send", "-a", self.windowTitle(), "-i", icon_arg, title, body], - stdout=_sp.DEVNULL, - stderr=_sp.DEVNULL, - ) - except FileNotFoundError: - pass # notify-send not installed → degrade silently - - notification.show() - - # --- geometry --- - - def _setup_resize_handles(self) -> None: - """Create transparent edge widgets for resize (left/right/bottom/corners).""" - m = RESIZE_MARGIN - self._resize_handles = [] - - specs = [ - # (edges, cursor, x, y, w, h) — geometry set in resizeEvent - (Qt.LeftEdge, Qt.SizeHorCursor), - (Qt.RightEdge, Qt.SizeHorCursor), - (Qt.BottomEdge, Qt.SizeVerCursor), - (Qt.LeftEdge | Qt.BottomEdge, Qt.SizeBDiagCursor), - (Qt.RightEdge | Qt.BottomEdge, Qt.SizeFDiagCursor), - ] - for edges, cursor_shape in specs: - h = _ResizeHandle(edges, cursor_shape, self) - self._resize_handles.append(h) - - def _position_resize_handles(self) -> None: - m = RESIZE_MARGIN - w, h = self.width(), self.height() - hdr_h = self.header.height() if self.header.isVisible() else 0 - for handle in self._resize_handles: - e = handle.edges - if e == Qt.LeftEdge: - handle.setGeometry(0, hdr_h, m, h - hdr_h - m) - elif e == Qt.RightEdge: - handle.setGeometry(w - m, hdr_h, m, h - hdr_h - m) - elif e == Qt.BottomEdge: - handle.setGeometry(m, h - m, w - 2 * m, m) - elif e == (Qt.LeftEdge | Qt.BottomEdge): - handle.setGeometry(0, h - m, m, m) - elif e == (Qt.RightEdge | Qt.BottomEdge): - handle.setGeometry(w - m, h - m, m, m) - vis = not (self.isMaximized() or self.isFullScreen()) - handle.setVisible(vis) - - def resizeEvent(self, event) -> None: - super().resizeEvent(event) - self._grip.move( - self.width() - self._grip.width(), - self.height() - self._grip.height(), - ) - self._position_resize_handles() - self._apply_mask() - - def _apply_mask(self) -> None: - """Round window corners except when maximized/fullscreen.""" - if self.isMaximized() or self.isFullScreen(): - self.clearMask() - return - path = QPainterPath() - path.addRoundedRect( - QRectF(self.rect()), CORNER_RADIUS, CORNER_RADIUS - ) - self.setMask(QRegion(path.toFillPolygon().toPolygon())) - - def _load_geometry(self) -> None: - screen = QApplication.primaryScreen() - sg = screen.availableGeometry() if screen else None - - try: - d = json.loads(self.config_path.read_text()) - w = d.get("width", 1024) - h = d.get("height", 720) - # clamp to 90% of screen → prevent saved full-screen widths - if sg: - w = min(w, int(sg.width() * 0.9)) - h = min(h, int(sg.height() * 0.9)) - self.resize(w, h) - if d.get("maximized"): - self.showMaximized() - elif sg: - x = sg.x() + (sg.width() - w) // 2 - y = sg.y() + (sg.height() - h) // 2 - self.move(x, y) - except (FileNotFoundError, json.JSONDecodeError, OSError): - self.resize(1024, 720) - if sg: - x = sg.x() + (sg.width() - 1024) // 2 - y = sg.y() + (sg.height() - 720) // 2 - self.move(x, y) - - def _save_geometry(self) -> None: - if self.isFullScreen(): - return - CONFIG_BASE.mkdir(parents=True, exist_ok=True) - try: - self.config_path.write_text( - json.dumps( - { - "width": self.width(), - "height": self.height(), - "maximized": self.isMaximized(), - } - ) - ) - except OSError: - pass - - def closeEvent(self, event) -> None: - self._save_geometry() - event.accept() - - -def main() -> int: - parser = argparse.ArgumentParser(description="BigLinux WebApp Viewer") - parser.add_argument("--url", required=True) - parser.add_argument("--name", default="WebApp") - parser.add_argument("--icon", default="") - parser.add_argument("--app-id", required=True) - parser.add_argument("files", nargs="*", help="Files to open via upload") - args = parser.parse_args() - - url = args.url - if not url.startswith(("http://", "https://", "file://")): - url = "https://" + url - - # strip non-essential Chromium features → reduce RAM w/o breaking sites - os.environ["QTWEBENGINE_CHROMIUM_FLAGS"] = " ".join([ - "--disable-sync", - "--disable-translate", - "--disable-background-networking", - "--renderer-process-limit=1", - ]) - - app = QApplication(sys.argv[:1]) - # restore default SIGINT behavior → Ctrl+C terminates cleanly - signal.signal(signal.SIGINT, signal.SIG_DFL) - # Fusion style → reliable CSS/palette rendering regardless of kvantum/breeze - # Inherit system palette so light/dark adapts correctly - sys_palette = app.palette() - app.setStyle("Fusion") - app.setPalette(sys_palette) - app.setApplicationName(args.name) - app.setDesktopFileName(f"br.com.biglinux.webapp.{args.app_id}") - - win = WebAppWindow(url, args.name, args.icon, args.app_id) - - # stash pending file for upload after page loads - if args.files: - win._pending_file = Path(args.files[0]).resolve() - - win.show() - return app.exec() - - -if __name__ == "__main__": - sys.exit(main()) - diff --git a/biglinux-webapps/usr/share/applications/br.com.biglinux.webapps.desktop b/biglinux-webapps/usr/share/applications/br.com.biglinux.webapps.desktop old mode 100755 new mode 100644 index 06a1c11a..13801fc2 --- a/biglinux-webapps/usr/share/applications/br.com.biglinux.webapps.desktop +++ b/biglinux-webapps/usr/share/applications/br.com.biglinux.webapps.desktop @@ -31,12 +31,6 @@ Name[zh]=添加和删除 Web 应用 Icon=big-webapps Exec=big-webapps-gui StartupWMClass=big-webapps-gui -Categories=Webapps; +Categories=GTK;Utility; Terminal=false StartupNotify=true - -Actions=SoftwareRender; - -[Desktop Action SoftwareRender] -Name=Software Render -Exec=SoftwareRender big-webapps-gui diff --git a/biglinux-webapps/usr/share/biglinux/webapps/check_browser.sh b/biglinux-webapps/usr/share/biglinux/webapps/check_browser.sh deleted file mode 100755 index 763e09a2..00000000 --- a/biglinux-webapps/usr/share/biglinux/webapps/check_browser.sh +++ /dev/null @@ -1,164 +0,0 @@ -#!/usr/bin/env bash - -# Function to check if a browser is installed -check_browser() { - local browser_path=$1 - if [ -e "$browser_path" ]; then - return 0 # true - else - return 1 # false - fi -} - -# Declare an associative array to map browser names to their paths -declare -A browsers -browsers=( - ["firefox"]="/usr/lib/firefox/firefox" - ["brave"]="/usr/lib/brave-browser/brave /opt/brave-bin/brave" - ["brave-beta"]="/usr/bin/brave-beta" - ["brave-nightly"]="/usr/bin/brave-nightly" - ["librewolf"]="/usr/lib/librewolf/librewolf" - ["chromium"]="/usr/lib/chromium/chromium" - ["google-chrome-stable"]="/opt/google/chrome/google-chrome" - ["google-chrome-beta"]="/opt/google/chrome-beta/google-chrome" - ["google-chrome-unstable"]="/opt/google/chrome-unstable/google-chrome" - ["microsoft-edge-stable"]="/opt/microsoft/msedge/microsoft-edge" - ["vivaldi-stable"]="/opt/vivaldi/vivaldi" - ["vivaldi-beta"]="/opt/vivaldi-beta/vivaldi" - ["vivaldi-snapshot"]="/opt/vivaldi-snapshot/vivaldi" - ["flatpak-brave"]="$HOME/.local/share/flatpak/app/com.brave.Browser /var/lib/flatpak/exports/bin/com.brave.Browser" - ["flatpak-chrome"]="$HOME/.local/share/flatpak/app/com.google.Chrome /var/lib/flatpak/exports/bin/com.google.Chrome" - ["flatpak-chrome-unstable"]="$HOME/.local/share/flatpak/app/com.google.ChromeDev /var/lib/flatpak/exports/bin/com.google.ChromeDev" - ["flatpak-chromium"]="$HOME/.local/share/flatpak/app/org.chromium.Chromium /var/lib/flatpak/exports/bin/org.chromium.Chromium" - ["flatpak-edge"]="$HOME/.local/share/flatpak/app/com.microsoft.Edge /var/lib/flatpak/exports/bin/com.microsoft.Edge" - ["flatpak-ungoogled-chromium"]="$HOME/.local/share/flatpak/app/com.github.Eloston.UngoogledChromium /var/lib/flatpak/exports/bin/com.github.Eloston.UngoogledChromium" - ["flatpak-firefox"]="$HOME/.local/share/flatpak/app/org.mozilla.firefox /var/lib/flatpak/exports/bin/org.mozilla.firefox" - ["flatpak-librewolf"]="$HOME/.local/share/flatpak/app/io.gitlab.librewolf-community /var/lib/flatpak/exports/bin/io.gitlab.librewolf-community" -) - -# Array to maintain the order of browser names -browser_order=( - "brave" - "brave-beta" - "brave-nightly" - "firefox" - "chromium" - "google-chrome-stable" - "google-chrome-beta" - "google-chrome-unstable" - "microsoft-edge-stable" - "vivaldi-stable" - "librewolf" - "vivaldi-beta" - "vivaldi-snapshot" - "flatpak-brave" - "flatpak-chrome" - "flatpak-chrome-unstable" - "flatpak-chromium" - "flatpak-edge" - "flatpak-ungoogled-chromium" - "flatpak-firefox" - "flatpak-librewolf" -) - -# Function to show the default browser -show_default_browser() { - for browser in "${browser_order[@]}"; do - IFS=' ' read -r -a paths <<< "${browsers[$browser]}" - for path in "${paths[@]}"; do - if check_browser "$path"; then - if [ "$1" == "--json" ]; then - echo "{\"default_browser\": \"$browser\"}" - else - echo "$browser" - fi - return - fi - done - done -} - -# Function to list all installed browsers -list_installed_browsers() { - local json_output="[" - local first=true - for browser in "${browser_order[@]}"; do - IFS=' ' read -r -a paths <<< "${browsers[$browser]}" - for path in "${paths[@]}"; do - if check_browser "$path"; then - if [ "$1" == "--json" ]; then - if [ "$first" = true ]; then - json_output="$json_output{\"browser\": \"$browser\"}" - first=false - else - json_output="$json_output, {\"browser\": \"$browser\"}" - fi - else - echo "$browser" - fi - break - fi - done - done - if [ "$1" == "--json" ]; then - json_output="$json_output]" - echo "$json_output" - fi -} - -# Function to list all compatible browsers -list_compatible_browsers() { - local json_output="[" - local first=true - for browser in "${browser_order[@]}"; do - if [ "$1" == "--json" ]; then - if [ "$first" = true ]; then - json_output="$json_output{\"browser\": \"$browser\"}" - first=false - else - json_output="$json_output, {\"browser\": \"$browser\"}" - fi - else - echo "$browser" - fi - done - if [ "$1" == "--json" ]; then - json_output="$json_output]" - echo "$json_output" - fi -} - -# Function to display help message -show_help() { - echo "Usage: $0 [--default] [--list] [--list-json] [--list-all] [--list-all-json] [--help]" - echo "" - echo "Options:" - echo " --default Show the default browser." - echo " --list List all installed browsers." - echo " --list-json List all installed browsers in JSON format." - echo " --list-all List all compatible browsers." - echo " --list-all-json List all compatible browsers in JSON format." - echo " --help Display this help message." -} - -# Main script logic to handle arguments -case "$1" in - --default) - show_default_browser - ;; - --list) - list_installed_browsers - ;; - --list-json) - list_installed_browsers "--json" - ;; - --list-all) - list_compatible_browsers - ;; - --list-all-json) - list_compatible_browsers "--json" - ;; - --help|*) - show_help - ;; -esac diff --git a/biglinux-webapps/usr/share/biglinux/webapps/get_app_icon_url.py b/biglinux-webapps/usr/share/biglinux/webapps/get_app_icon_url.py deleted file mode 100755 index dad9115f..00000000 --- a/biglinux-webapps/usr/share/biglinux/webapps/get_app_icon_url.py +++ /dev/null @@ -1,74 +0,0 @@ -import gi -import sys -import os -import json - -gi.require_version("Gtk", "4.0") -gi.require_version("Gdk", "4.0") -from gi.repository import Gtk, Gdk - - -def get_icon_path(icon_name, icon_theme): - """ - Attempts to find the icon path based on the icon name, suitable for SVG, PNG, and other formats. - If the icon is not found, it tries to progressively remove parts of the name separated by '-'. - """ - if icon_name.startswith("/"): - return icon_name # Returns the absolute path if specified - - # Check user-local icons first (big-webapps copies custom icons here) - local_icon_dir = os.path.expanduser("~/.local/share/icons/") - local_icon_path = local_icon_dir + icon_name - if os.path.exists(local_icon_path): - return local_icon_path - # big-webapps strips extension on create → try common extensions - for ext in (".svg", ".png", ".webp", ".xpm", ".ico"): - path_with_ext = local_icon_path + ext - if os.path.exists(path_with_ext): - return path_with_ext - - # Fall back to icon theme lookup (GTK4 API) - parts = icon_name.split("-") - for end in range(len(parts), 0, -1): - modified_icon_name = "-".join(parts[:end]) - for size in [64, 48, 128, 32, 256, 512, 24, 22, 16]: - paintable = icon_theme.lookup_icon( - modified_icon_name, - None, - size, - 1, - Gtk.TextDirection.NONE, - Gtk.IconLookupFlags(0), - ) - if paintable: - gfile = paintable.get_file() - if gfile: - path = gfile.get_path() - if path: - return path - - return "Icon not found" - - -def get_app_info_from_json(json_file): - with open(json_file, "r") as file: - apps_data = json.load(file) - - # GTK4 requires init + display for icon theme - Gtk.init() - display = Gdk.Display.get_default() - icon_theme = Gtk.IconTheme.get_for_display(display) - for app in apps_data: - icon_name = app.get("app_icon", "") - icon_path = get_icon_path(icon_name, icon_theme) - app["app_icon_url"] = icon_path - - return json.dumps(apps_data, indent=4, ensure_ascii=False) - - -if __name__ == "__main__": - if len(sys.argv) > 1: - json_file = sys.argv[1] - print(get_app_info_from_json(json_file)) - else: - print("Please provide the JSON file path as an argument.") diff --git a/biglinux-webapps/usr/share/biglinux/webapps/get_json.sh b/biglinux-webapps/usr/share/biglinux/webapps/get_json.sh deleted file mode 100755 index 755b058b..00000000 --- a/biglinux-webapps/usr/share/biglinux/webapps/get_json.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash - -# Only call cache fail or not using cache -python get_app_icon_url.py <(big-webapps json) diff --git a/biglinux-webapps/usr/share/biglinux/webapps/icons/flatpak-ungoogled-chromium.svg b/biglinux-webapps/usr/share/biglinux/webapps/icons/flatpak-ungoogled-chromium.svg deleted file mode 120000 index e5ce49e5..00000000 --- a/biglinux-webapps/usr/share/biglinux/webapps/icons/flatpak-ungoogled-chromium.svg +++ /dev/null @@ -1 +0,0 @@ -flatpak-chromium.svg \ No newline at end of file diff --git a/biglinux-webapps/usr/share/biglinux/webapps/icons/flatpak-ungoogled-chromium.svg b/biglinux-webapps/usr/share/biglinux/webapps/icons/flatpak-ungoogled-chromium.svg new file mode 100644 index 00000000..ee2dc41a --- /dev/null +++ b/biglinux-webapps/usr/share/biglinux/webapps/icons/flatpak-ungoogled-chromium.svg @@ -0,0 +1,11 @@ + + + + + + + + + +flatpak + diff --git a/biglinux-webapps/usr/share/biglinux/webapps/icons/ungoogled-chromium.svg b/biglinux-webapps/usr/share/biglinux/webapps/icons/ungoogled-chromium.svg deleted file mode 120000 index e97fd967..00000000 --- a/biglinux-webapps/usr/share/biglinux/webapps/icons/ungoogled-chromium.svg +++ /dev/null @@ -1 +0,0 @@ -chromium.svg \ No newline at end of file diff --git a/biglinux-webapps/usr/share/biglinux/webapps/icons/ungoogled-chromium.svg b/biglinux-webapps/usr/share/biglinux/webapps/icons/ungoogled-chromium.svg new file mode 100644 index 00000000..6f9bdaf7 --- /dev/null +++ b/biglinux-webapps/usr/share/biglinux/webapps/icons/ungoogled-chromium.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/biglinux-webapps/usr/share/biglinux/webapps/main.py b/biglinux-webapps/usr/share/biglinux/webapps/main.py deleted file mode 100644 index fe99f06c..00000000 --- a/biglinux-webapps/usr/share/biglinux/webapps/main.py +++ /dev/null @@ -1,36 +0,0 @@ -#!/usr/bin/env python3.13 -""" -BigLinux WebApps Manager -A GTK4 application for managing web applications in BigLinux. -""" - -import sys -import gi - -gi.require_version("Gtk", "4.0") -gi.require_version("Adw", "1") - -from gi.repository import GLib - -# Import from our utility to ensure proper initialization -from webapps.application import WebAppsApplication - - -def main() -> int: - """Main function to start the application.""" - app = WebAppsApplication() - - # Set program name for window manager class - GLib.set_prgname("big-webapps-gui") - - try: - # For GTK4 applications - app.set_icon_name("big-webapps") - except (AttributeError, TypeError): - pass - - return app.run(sys.argv) - - -if __name__ == "__main__": - sys.exit(main()) diff --git a/biglinux-webapps/usr/share/biglinux/webapps/select_icon.sh b/biglinux-webapps/usr/share/biglinux/webapps/select_icon.sh deleted file mode 100755 index 805c0b8c..00000000 --- a/biglinux-webapps/usr/share/biglinux/webapps/select_icon.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/bash - -# The output of this script is the path of the icon selected by the user - -# Persist last-used directory -LAST_DIR_FILE="$HOME/.config/biglinux-webapps/last_icon_dir" -last_dir="" -if [[ -f "$LAST_DIR_FILE" ]]; then - last_dir=$(<"$LAST_DIR_FILE") -fi - -# Use type to check if a command exists -if type kdialog >/dev/null 2>&1; then - icon=$(kdialog --geticon Applications 2> /dev/null) -elif type zenity >/dev/null 2>&1; then - icon=$(zenity --file-selection ${last_dir:+--filename="$last_dir/"} --file-filter="image|*.[Jj][Pp][Gg] *.[Jj][Pp][Ee][Gg] *.[Pp][Nn][Gg] *.[Ss][Vv][Gg] *.[Ss][Vv][Gg][Zz] *.[Ww][Ee][Bb][Pp]") -elif type yad >/dev/null 2>&1; then - icon=$(cd "${last_dir:-$HOME}"; yad --file --add-preview --large-preview --file-filter="image|*.[Jj][Pp][Gg] *.[Jj][Pp][Ee][Gg] *.[Pp][Nn][Gg] *.[Ss][Vv][Gg] *.[Ss][Vv][Gg][Zz] *.[Ww][Ee][Bb][Pp]") -fi - -# Save chosen directory for next time -if [[ $icon =~ / ]]; then - mkdir -p "$(dirname "$LAST_DIR_FILE")" - dirname "$icon" > "$LAST_DIR_FILE" -fi - -# If icon don't have a path, get the icon with path -if [[ $icon =~ / ]]; then - echo "$icon" -elif [[ -n "$icon" ]]; then - for sz in 128 64 48 32; do - icon_address=$(geticons -s "$sz" "$icon" 2>/dev/null) - if [[ -n "$icon_address" ]]; then - echo "$icon_address" - exit - fi - done - geticons "$icon" 2>/dev/null -fi diff --git a/biglinux-webapps/usr/share/biglinux/webapps/update_old_desktop_files.sh b/biglinux-webapps/usr/share/biglinux/webapps/update_old_desktop_files.sh deleted file mode 100755 index bdeb5da0..00000000 --- a/biglinux-webapps/usr/share/biglinux/webapps/update_old_desktop_files.sh +++ /dev/null @@ -1,60 +0,0 @@ -#!/usr/bin/env bash - -# Change directory to the local user's applications directory -cd ~/.local/share/applications - -# Get the default browser -defaultBrowser=$(xdg-settings get default-web-browser 2>/dev/null | sed 's/\.desktop$//' || echo "brave-browser") - -# Iterate over all webapps -for file in *webapp-biglinux*; do - - if [[ "$file" = '*webapp-biglinux*' ]]; then - exit - fi - - # Clean info before verify next file - unset browser name url icon categories profile - - # Read any file and get the name, url, icon and categories - while IFS= read -r line; do - case $line in - "Name="*) - name=${line#*Name=} - ;; - "Exec="*) - browser=${line%% *} - browser=${browser#Exec=} - if [[ "$browser" =~ biglinux-webapp ]]; then - browser=$defaultBrowser - - # In older versions of biglinux-webapp, Firefox and browsers based in Firefox use script in ~/.local/bin - elif [[ "$browser" =~ \.local/bin ]]; then - oldScript=$browser - browser=$(grep -m1 '\--new-instance' "$oldScript" | grep -o '^[^ ]*') - url=$(grep -m1 '\--new-instance' "$oldScript" | grep -o 'http[^" ]*') - profile='Default' - fi - - # Extract the URL and profile directory if they are not already set - url=${url:-${line#*--app=}} - profile=${profile:-${line#*--profile-directory=}} - profile=${profile% *} - ;; - "Icon="*) - icon=${line#*Icon=} - icon=$(echo $icon | sed "s|$HOME/.local/share/icons/||g;s|~/.local/share/icons/||g") - ;; - "Categories="*) - categories=${line#*Categories=} - ;; - esac - done <<<$(grep -m4 -e '^Name=' -e '^Exec=' -e '^Icon=' -e '^Categories=' $file) - - # Create a new desktop file compatible with wayland - big-webapps create "$browser" "$name" "$url" "$icon" "$categories" "$profile" - - # Remove the old desktop file - rm $file - -done diff --git a/biglinux-webapps/usr/share/biglinux/webapps/webapps/__init__.py b/biglinux-webapps/usr/share/biglinux/webapps/webapps/__init__.py deleted file mode 100644 index 211418ac..00000000 --- a/biglinux-webapps/usr/share/biglinux/webapps/webapps/__init__.py +++ /dev/null @@ -1,5 +0,0 @@ -""" -WebApps package initialization -""" - -APP_VERSION = "3.1.0" diff --git a/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py b/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py deleted file mode 100644 index 7fd6c787..00000000 --- a/biglinux-webapps/usr/share/biglinux/webapps/webapps/application.py +++ /dev/null @@ -1,269 +0,0 @@ -""" -Application module containing the main WebAppsApplication class -""" - -import gi -import os -import subprocess -from collections.abc import Callable - -from webapps import APP_VERSION -from webapps.utils.translation import _ - -gi.require_version("Gtk", "4.0") -gi.require_version("Adw", "1") -from gi.repository import Gtk, Adw, Gio, Gdk, GLib # noqa: E402 - -from webapps.ui.main_window import MainWindow # noqa: E402 -from webapps.utils.webapp_service import WebAppService # noqa: E402 - -import logging - -logger = logging.getLogger(__name__) - - -class WebAppsApplication(Adw.Application): - """Main application class for WebApps Manager""" - - def __init__(self) -> None: - """Initialize the application""" - super().__init__( - application_id="br.com.biglinux.webapps", - flags=Gio.ApplicationFlags.FLAGS_NONE, - ) - - # Set up application - self.create_action("quit", self.quit, ["q"]) - self.create_action("about", self.on_about_action) - self.create_action("refresh", self.on_refresh_action, ["r"]) - self.create_action("export", self.on_export_action, ["e"]) - self.create_action("import", self.on_import_action, ["i"]) - - # centralized business logic - self.service = WebAppService() - - # convenience aliases for UI code that reads collections - self.webapp_collection = self.service.webapp_collection - self.browser_collection = self.service.browser_collection - self.command_executor = self.service.command_executor - - # Add the remove-all action - remove_all_action = Gio.SimpleAction.new("remove-all", None) - remove_all_action.connect("activate", self.on_remove_all) - self.add_action(remove_all_action) - - def do_activate(self) -> None: - """Called when the application is activated""" - self.service.load_data() - - # Create and show the main window - win = MainWindow(application=self) - win.present() - - # Add folder browsing actions - browse_apps_action = Gio.SimpleAction.new("browse-apps", None) - browse_apps_action.connect("activate", self.on_browse_apps_activated) - self.add_action(browse_apps_action) - - browse_profiles_action = Gio.SimpleAction.new("browse-profiles", None) - browse_profiles_action.connect("activate", self.on_browse_profiles_activated) - self.add_action(browse_profiles_action) - - def on_browse_apps_activated( - self, _action: Gio.SimpleAction, _parameter: GLib.Variant | None - ) -> None: - """Open applications folder in the default file manager""" - applications_path = os.path.expanduser("~/.local/share/applications") - self._open_folder(applications_path) - - def on_browse_profiles_activated( - self, _action: Gio.SimpleAction, _parameter: GLib.Variant | None - ) -> None: - """Open profiles folder in the default file manager""" - profiles_path = os.path.expanduser("~/.bigwebapps") - self._open_folder(profiles_path) - - def _open_folder(self, folder_path: str) -> None: - """Open a folder in the default file manager, creating it if needed.""" - os.makedirs(folder_path, exist_ok=True) - try: - Gtk.show_uri(None, f"file://{folder_path}", Gdk.CURRENT_TIME) - except Exception: - subprocess.Popen(["xdg-open", folder_path]) - - def create_action( - self, name: str, callback: Callable, shortcuts: list[str] | None = None - ) -> None: - """Create a new application action with optional keyboard shortcuts""" - action = Gio.SimpleAction.new(name, None) - action.connect("activate", callback) - self.add_action(action) - - if shortcuts: - self.set_accels_for_action(f"app.{name}", shortcuts) - - def on_about_action( - self, _widget: Gio.SimpleAction, _param: GLib.Variant | None - ) -> None: - """Show the about dialog""" - about = Adw.AboutDialog( - application_name="WebApps Manager", - application_icon="big-webapps", - developer_name="BigLinux Team", - version=APP_VERSION, - developers=["BigLinux Team"], - copyright="© 2023 BigLinux Team", - license_type=Gtk.License.GPL_3_0, - website="https://www.biglinux.com.br", - issue_url="https://github.com/biglinux/biglinux-webapps/issues", - ) - about.present(self.props.active_window) - - def on_refresh_action( - self, _widget: Gio.SimpleAction, _param: GLib.Variant | None - ) -> None: - """Refresh the data""" - self.service.load_data() - - # Notify the main window to update UI - active_window = self.props.active_window - if active_window and hasattr(active_window, "refresh_ui"): - active_window.refresh_ui() - - def on_export_action( - self, _widget: Gio.SimpleAction, _param: GLib.Variant | None - ) -> None: - """Export webapps to a file""" - # Use direct strings to avoid translation issues with file chooser - dialog = Gtk.FileChooserNative.new( - "Export WebApps", - self.props.active_window, - Gtk.FileChooserAction.SAVE, - "Export", - "Cancel", - ) - dialog.set_current_name("biglinux-webapps-export.zip") - - # Add file filter for zip files - filter_zip = Gtk.FileFilter() - filter_zip.set_name("ZIP archives") - filter_zip.add_pattern("*.zip") - dialog.add_filter(filter_zip) - - # Handle response - dialog.connect("response", self._handle_export_response) - dialog.show() - - def _handle_export_response( - self, dialog: Gtk.FileChooserNative, response: int - ) -> None: - """Handle export file chooser response""" - if response != Gtk.ResponseType.ACCEPT: - return - file_path = dialog.get_file().get_path() - ok, msg = self.service.export_webapps(file_path) - if ok: - self._show_notification(_("WebApps exported successfully")) - elif msg == "no_webapps": - self._show_error_dialog( - _("No WebApps"), _("There are no WebApps to export.") - ) - else: - self._show_error_dialog("Export Failed", f"Failed to export WebApps: {msg}") - - def on_import_action( - self, _widget: Gio.SimpleAction, _param: GLib.Variant | None - ) -> None: - """Import webapps from a file""" - # Use direct strings to avoid translation issues with file chooser - dialog = Gtk.FileChooserNative.new( - "Import WebApps", - self.props.active_window, - Gtk.FileChooserAction.OPEN, - "Import", - "Cancel", - ) - - # Add file filter for zip files - filter_zip = Gtk.FileFilter() - filter_zip.set_name("ZIP archives") - filter_zip.add_pattern("*.zip") - dialog.add_filter(filter_zip) - - # Handle response - dialog.connect("response", self._handle_import_response) - dialog.show() - - def _handle_import_response( - self, dialog: Gtk.FileChooserNative, response: int - ) -> None: - """Handle import file chooser response""" - if response != Gtk.ResponseType.ACCEPT: - return - file_path = dialog.get_file().get_path() - imported, duplicates, err = self.service.import_webapps(file_path) - - if err: - msg_map = { - "file_not_found": _("The selected file does not exist."), - "invalid_zip": _("The selected file is not a valid ZIP archive."), - "missing_webapps_json": "Invalid export file: missing webapps.json", - } - self._show_error_dialog( - _("Error importing WebApps"), - msg_map.get(err, err), - ) - return - - active_window = self.props.active_window - if active_window and hasattr(active_window, "refresh_ui"): - active_window.refresh_ui() - - if duplicates > 0: - self._show_notification( - _("Imported {} WebApps successfully ({} duplicates skipped)").format( - imported, duplicates - ) - ) - else: - self._show_notification( - _("Imported {} WebApps successfully").format(imported) - ) - - def _show_notification(self, message: str) -> None: - """Show a notification message""" - active_window = self.props.active_window - if active_window and hasattr(active_window, "show_toast"): - active_window.show_toast(message) - - def _show_error_dialog(self, title: str, message: str) -> None: - """Show an error dialog""" - dialog = Adw.MessageDialog.new(self.props.active_window, title, message) - dialog.add_response("ok", _("OK")) - dialog.present() - - def _show_confirmation_dialog( - self, title: str, message: str, callback: Callable[[bool], None] - ) -> None: - """Show a confirmation dialog with Yes/No buttons""" - dialog = Adw.MessageDialog.new(self.props.active_window, title, message) - dialog.add_response("no", _("No")) - dialog.add_response("yes", _("Yes")) - dialog.set_default_response("no") - dialog.set_response_appearance("yes", Adw.ResponseAppearance.SUGGESTED) - - dialog.connect("response", lambda _d, response: callback(response == "yes")) - dialog.present() - - def quit(self, _widget: Gio.SimpleAction, _param: GLib.Variant | None) -> None: - """Quit the application""" - self.quit() - - def on_remove_all( - self, _action: Gio.SimpleAction, _param: GLib.Variant | None - ) -> None: - """Remove all webapps after confirmation""" - # Access the active window instead of using self.win - active_window = self.props.active_window - if active_window and hasattr(active_window, "on_remove_all_clicked"): - active_window.on_remove_all_clicked() diff --git a/biglinux-webapps/usr/share/biglinux/webapps/webapps/models/__init__.py b/biglinux-webapps/usr/share/biglinux/webapps/webapps/models/__init__.py deleted file mode 100644 index 7d9ae0ac..00000000 --- a/biglinux-webapps/usr/share/biglinux/webapps/webapps/models/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -""" -WebApps Models package initialization -""" diff --git a/biglinux-webapps/usr/share/biglinux/webapps/webapps/models/browser_model.py b/biglinux-webapps/usr/share/biglinux/webapps/webapps/models/browser_model.py deleted file mode 100644 index 65ba83de..00000000 --- a/biglinux-webapps/usr/share/biglinux/webapps/webapps/models/browser_model.py +++ /dev/null @@ -1,121 +0,0 @@ -""" -Browser model module containing the Browser and BrowserCollection classes -""" - -from gi.repository import GObject -from webapps.utils.browser_icon_utils import get_browser_icon_name -from webapps.utils.browser_registry import get_display_name - - -class Browser(GObject.GObject): - """Class representing a browser""" - - __gtype_name__ = "Browser" - - def __init__(self, browser_data: dict | None = None) -> None: - super().__init__() - - # Default values - self.browser_id = "" - self.is_default = False - - # Load data if provided - if browser_data: - self.load_from_dict(browser_data) - - def load_from_dict(self, browser_data: dict) -> None: - """ - Load data from a dictionary - - Parameters: - browser_data (dict): Dictionary containing browser data - """ - self.browser_id = browser_data.get("browser", "") - self.is_default = browser_data.get("is_default", False) - - def get_friendly_name(self) -> str: - """ - Get a user-friendly name for the browser - - Returns: - str: User-friendly browser name - """ - return get_display_name(self.browser_id) - - def get_browser_icon_name(self) -> str: - """Get the icon filename for this browser.""" - return get_browser_icon_name(self.browser_id) - - def is_firefox_based(self) -> bool: - """ - Check if the browser is Firefox-based - - Returns: - bool: True if the browser is Firefox-based, False otherwise - """ - return ( - "firefox" in self.browser_id.lower() - or "librewolf" in self.browser_id.lower() - ) - - -class BrowserCollection: - """Collection of Browser objects""" - - def __init__(self) -> None: - """Initialize an empty Browser collection""" - self.browsers = [] - self.default_browser_id = None - - def load_from_json(self, json_data: list[dict] | None) -> None: - """Load browsers from JSON data.""" - self.browsers = [] - if json_data: - for browser_data in json_data: - browser = Browser(browser_data) - self.browsers.append(browser) - - def get_all(self) -> list["Browser"]: - """Return all browsers.""" - return self.browsers - - def set_default(self, browser_id: str) -> None: - """ - Set the default browser - - Parameters: - browser_id (str): ID of the default browser - """ - self.default_browser_id = browser_id - - for browser in self.browsers: - browser.is_default = browser.browser_id == browser_id - - def get_default(self) -> "Browser | None": - """ - Get the default browser - - Returns: - Browser or None: Default Browser object if found, None otherwise - """ - for browser in self.browsers: - if browser.is_default or browser.browser_id == self.default_browser_id: - return browser - - # If no default is set but we have browsers, return the first one - return self.browsers[0] if self.browsers else None - - def get_by_id(self, browser_id: str) -> "Browser | None": - """ - Get a browser by its ID - - Parameters: - browser_id (str): Browser ID to search for - - Returns: - Browser or None: Browser object if found, None otherwise - """ - for browser in self.browsers: - if browser.browser_id == browser_id: - return browser - return None diff --git a/biglinux-webapps/usr/share/biglinux/webapps/webapps/models/webapp_model.py b/biglinux-webapps/usr/share/biglinux/webapps/webapps/models/webapp_model.py deleted file mode 100644 index ff29ef81..00000000 --- a/biglinux-webapps/usr/share/biglinux/webapps/webapps/models/webapp_model.py +++ /dev/null @@ -1,221 +0,0 @@ -""" -WebApp model module containing the WebApp and WebAppCollection classes -""" - -from gi.repository import GObject -from urllib.parse import urlparse - - -class WebApp(GObject.GObject): - """Class representing a web application""" - - __gtype_name__ = "WebApp" - - def __init__(self, app_data: dict | None = None) -> None: - """ - Initialize a WebApp instance - - Parameters: - app_data (dict): Dictionary containing webapp data - """ - super().__init__() - - # Default values - self.browser = "" - self.app_file = "" - self.app_name = "" - self.app_url = "" - self.app_icon = "" - self.app_profile = "Default" - self.app_categories = "Webapps" - self.app_icon_url = "" - self.app_mode = "browser" # "browser" or "app" - - # template metadata (optional, for desktop integration) - self.template_id = "" - self.mime_types = "" - self.comment = "" - self.generic_name = "" - self.keywords = "" - self.url_schemes = "" - - # Load data if provided - if app_data: - self.load_from_dict(app_data) - - def load_from_dict(self, app_data: dict) -> None: - """Load webapp data from a dictionary.""" - self.browser = app_data.get("browser", "") - self.app_file = app_data.get("app_file", "") - self.app_name = app_data.get("app_name", "") - self.app_url = app_data.get("app_url", "") - self.app_icon = app_data.get("app_icon", "") - self.app_profile = app_data.get("app_profile", "Default") - self.app_categories = app_data.get("app_categories", "Webapps") - self.app_icon_url = app_data.get("app_icon_url", "") or self.app_icon - self.app_mode = app_data.get("app_mode", "browser") - - def get_main_category(self) -> str: - """ - Get the main category of the webapp - - Returns: - str: Main category - """ - if not self.app_categories: - return "Webapps" - - categories = self.app_categories.split(";") - return categories[0] if categories else "Webapps" - - def set_main_category(self, category: str) -> None: - """ - Set the main category of the webapp - - Parameters: - category (str): New main category - """ - if not category: - return - - categories = self.app_categories.split(";") if self.app_categories else [] - if categories and categories[0] == category: - return - - # Filter out the new category if it already exists in other positions - other_categories = [c for c in categories[1:] if c and c != category] - self.app_categories = ";".join([category] + other_categories) - - def derive_profile_name(self) -> str: - """ - Derive a profile name from the URL - - Returns: - str: Derived profile name - """ - try: - url_obj = urlparse(self.app_url) - hostname = url_obj.netloc - # Remove dots from the hostname to create a profile name - return hostname.replace(".", "") - except Exception: - # If URL parsing fails, attempt manual extraction - import re - - match = re.search(r"^(?:https?://)?([^/]+)", self.app_url) - if match and match.group(1): - return match.group(1).replace(".", "") - return "Default" - - def apply_template(self, template) -> None: - """ - Apply a WebAppTemplate to pre-fill fields. - - Parameters: - template: WebAppTemplate instance - """ - self.template_id = template.template_id - self.app_name = template.name - self.app_url = template.url - self.app_icon = template.icon - self.app_icon_url = template.icon - self.app_categories = template.category - - if template.mime_types: - self.mime_types = ";".join(template.mime_types) + ";" - if template.comment: - self.comment = template.comment - if template.generic_name: - self.generic_name = template.generic_name - if template.keywords: - self.keywords = ";".join(template.keywords) + ";" - if template.url_schemes: - self.url_schemes = ";".join(template.url_schemes) + ";" - if template.profile: - self.app_profile = template.profile - - -class WebAppCollection: - """Collection of WebApp objects with filtering and categorization capabilities""" - - def __init__(self) -> None: - """Initialize an empty WebApp collection""" - self.webapps = [] - - def load_from_json(self, json_data: list[dict] | None) -> None: - """Load webapps from JSON data.""" - self.webapps = [] - if json_data: - for app_data in json_data: - webapp = WebApp(app_data) - self.webapps.append(webapp) - - def get_all(self) -> list["WebApp"]: - """Return all webapps.""" - return self.webapps - - def filter_by_text(self, filter_text: str) -> list["WebApp"]: - """ - Filter webapps by text - - Parameters: - filter_text (str): Text to filter by - - Returns: - list: Filtered list of WebApp objects - """ - if not filter_text: - return self.webapps - - filter_text = filter_text.lower() - - return [ - app - for app in self.webapps - if ( - filter_text in app.app_name.lower() - or filter_text in app.app_url.lower() - or filter_text in app.app_file.lower() - ) - ] - - def get_categorized( - self, filter_text: str | None = None - ) -> dict[str, list["WebApp"]]: - """ - Get webapps categorized by their categories - - Parameters: - filter_text (str, optional): Text to filter by - - Returns: - dict: Dictionary of category -> list of WebApp objects - """ - apps = self.filter_by_text(filter_text) if filter_text else self.webapps - categorized = {} - - for app in apps: - categories = app.app_categories.split(";") - for category in categories: - if not category: - continue - - if category not in categorized: - categorized[category] = [] - - categorized[category].append(app) - - return categorized - - def add(self, webapp: "WebApp") -> None: - """Add a webapp to the collection.""" - self.webapps.append(webapp) - - def remove(self, webapp: "WebApp") -> None: - """ - Remove a webapp from the collection. - - Parameters: - webapp (WebApp): WebApp object to remove - """ - self.webapps = [app for app in self.webapps if app.app_file != webapp.app_file] diff --git a/biglinux-webapps/usr/share/biglinux/webapps/webapps/templates/__init__.py b/biglinux-webapps/usr/share/biglinux/webapps/webapps/templates/__init__.py deleted file mode 100644 index 14e14218..00000000 --- a/biglinux-webapps/usr/share/biglinux/webapps/webapps/templates/__init__.py +++ /dev/null @@ -1,5 +0,0 @@ -"""WebApp Templates — curated presets for popular web services.""" - -from webapps.templates.registry import TemplateRegistry, WebAppTemplate - -__all__ = ["TemplateRegistry", "WebAppTemplate"] diff --git a/biglinux-webapps/usr/share/biglinux/webapps/webapps/templates/communication.py b/biglinux-webapps/usr/share/biglinux/webapps/webapps/templates/communication.py deleted file mode 100644 index 11adac80..00000000 --- a/biglinux-webapps/usr/share/biglinux/webapps/webapps/templates/communication.py +++ /dev/null @@ -1,84 +0,0 @@ -"""Communication webapp templates.""" - -from webapps.templates.registry import WebAppTemplate - -COMMUNICATION_TEMPLATES = [ - WebAppTemplate( - template_id="whatsapp", - name="WhatsApp", - url="https://web.whatsapp.com", - icon="whatsapp", - category="Network", - comment="Messaging and calls from WhatsApp", - generic_name="Instant Messaging", - keywords=("whatsapp", "chat", "messaging", "calls"), - features=("notifications", "camera", "microphone"), - ), - WebAppTemplate( - template_id="telegram", - name="Telegram", - url="https://web.telegram.org", - icon="telegram", - category="Network", - comment="Fast and secure messaging from Telegram", - generic_name="Instant Messaging", - keywords=("telegram", "chat", "messaging", "channels"), - features=("notifications",), - url_schemes=("tg",), - ), - WebAppTemplate( - template_id="discord", - name="Discord", - url="https://discord.com/app", - icon="discord", - category="Network", - comment="Voice, video and text communication", - generic_name="Instant Messaging", - keywords=("discord", "chat", "voice", "gaming", "community"), - features=("notifications", "camera", "microphone"), - ), - WebAppTemplate( - template_id="slack", - name="Slack", - url="https://app.slack.com", - icon="slack", - category="Network", - comment="Team communication and collaboration", - generic_name="Instant Messaging", - keywords=("slack", "chat", "team", "work", "collaboration"), - features=("notifications", "camera", "microphone"), - ), - WebAppTemplate( - template_id="messenger", - name="Messenger", - url="https://www.messenger.com", - icon="messenger", - category="Network", - comment="Messaging from Facebook Messenger", - generic_name="Instant Messaging", - keywords=("messenger", "facebook", "chat", "messaging"), - features=("notifications", "camera", "microphone"), - ), - WebAppTemplate( - template_id="skype", - name="Skype", - url="https://web.skype.com", - icon="skype", - category="Network", - comment="Video calls and messaging from Skype", - generic_name="Video Conferencing", - keywords=("skype", "video", "calls", "chat", "microsoft"), - features=("notifications", "camera", "microphone"), - ), - WebAppTemplate( - template_id="signal", - name="Signal", - url="https://signal.org/", - icon="signal", - category="Network", - comment="Private messaging from Signal", - generic_name="Instant Messaging", - keywords=("signal", "privacy", "messaging", "encrypted"), - features=("notifications",), - ), -] diff --git a/biglinux-webapps/usr/share/biglinux/webapps/webapps/templates/google.py b/biglinux-webapps/usr/share/biglinux/webapps/webapps/templates/google.py deleted file mode 100644 index 6c84cdd4..00000000 --- a/biglinux-webapps/usr/share/biglinux/webapps/webapps/templates/google.py +++ /dev/null @@ -1,139 +0,0 @@ -"""Google Workspace webapp templates.""" - -from webapps.templates.registry import WebAppTemplate - -GOOGLE_TEMPLATES = [ - WebAppTemplate( - template_id="google-docs", - name="Google Docs", - url="https://docs.google.com", - icon="google-docs", - category="Office", - comment="Create and edit documents online", - generic_name="Word Processor", - keywords=("google", "docs", "document", "text"), - mime_types=( - "application/vnd.openxmlformats-officedocument.wordprocessingml.document", - "application/msword", - "application/rtf", - "text/plain", - ), - file_handler="upload", - profile="google", - ), - WebAppTemplate( - template_id="google-sheets", - name="Google Sheets", - url="https://sheets.google.com", - icon="google-sheets", - category="Office", - comment="Create and edit spreadsheets online", - generic_name="Spreadsheet", - keywords=("google", "sheets", "spreadsheet", "csv", "excel"), - mime_types=( - "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", - "application/vnd.ms-excel", - "text/csv", - ), - file_handler="upload", - profile="google", - ), - WebAppTemplate( - template_id="google-slides", - name="Google Slides", - url="https://slides.google.com", - icon="google-slides", - category="Office", - comment="Create and edit presentations online", - generic_name="Presentation", - keywords=("google", "slides", "presentation", "powerpoint"), - mime_types=( - "application/vnd.openxmlformats-officedocument.presentationml.presentation", - "application/vnd.ms-powerpoint", - ), - file_handler="upload", - profile="google", - ), - WebAppTemplate( - template_id="google-drive", - name="Google Drive", - url="https://drive.google.com", - icon="google-drive", - category="Network", - comment="Cloud storage from Google Drive", - generic_name="Cloud Storage", - keywords=("google", "drive", "cloud", "storage", "files"), - profile="google", - ), - WebAppTemplate( - template_id="google-gmail", - name="Gmail", - url="https://mail.google.com", - icon="gmail", - category="Network", - comment="Email from Google", - generic_name="Email Client", - keywords=("gmail", "email", "mail", "google"), - features=("notifications",), - url_schemes=("mailto",), - profile="google", - ), - WebAppTemplate( - template_id="google-calendar", - name="Google Calendar", - url="https://calendar.google.com", - icon="google-calendar", - category="Office", - comment="Calendar and scheduling from Google", - generic_name="Calendar", - keywords=("google", "calendar", "schedule", "events"), - features=("notifications",), - profile="google", - ), - WebAppTemplate( - template_id="google-meet", - name="Google Meet", - url="https://meet.google.com", - icon="google-meet", - category="Network", - comment="Video conferencing from Google", - generic_name="Video Conferencing", - keywords=("google", "meet", "video", "conferencing"), - features=("notifications", "camera", "microphone"), - profile="google", - ), - WebAppTemplate( - template_id="google-photos", - name="Google Photos", - url="https://photos.google.com", - icon="google-photos", - category="Graphics", - comment="Photo storage and editing from Google", - generic_name="Photo Manager", - keywords=("google", "photos", "gallery", "images"), - profile="google", - ), - WebAppTemplate( - template_id="google-keep", - name="Google Keep", - url="https://keep.google.com", - icon="google-keep", - category="Office", - comment="Notes and lists from Google", - generic_name="Note Taking", - keywords=("google", "keep", "notes", "lists", "todo"), - profile="google", - ), - WebAppTemplate( - template_id="youtube", - name="YouTube", - url="https://www.youtube.com", - icon="youtube", - category="AudioVideo", - comment="Watch and share videos", - generic_name="Video Player", - keywords=("youtube", "video", "streaming", "google"), - features=("notifications",), - profile="google", - ), -] diff --git a/biglinux-webapps/usr/share/biglinux/webapps/webapps/templates/media.py b/biglinux-webapps/usr/share/biglinux/webapps/webapps/templates/media.py deleted file mode 100644 index 4bdf6981..00000000 --- a/biglinux-webapps/usr/share/biglinux/webapps/webapps/templates/media.py +++ /dev/null @@ -1,93 +0,0 @@ -"""Media & entertainment webapp templates.""" - -from webapps.templates.registry import WebAppTemplate - -MEDIA_TEMPLATES = [ - WebAppTemplate( - template_id="spotify", - name="Spotify", - url="https://open.spotify.com", - icon="spotify", - category="AudioVideo", - comment="Music streaming from Spotify", - generic_name="Music Player", - keywords=("spotify", "music", "streaming", "audio", "playlist"), - features=("notifications", "media-keys"), - url_schemes=("spotify",), - ), - WebAppTemplate( - template_id="youtube-music", - name="YouTube Music", - url="https://music.youtube.com", - icon="youtube-music", - category="AudioVideo", - comment="Music streaming from YouTube Music", - generic_name="Music Player", - keywords=("youtube", "music", "streaming", "google"), - features=("notifications", "media-keys"), - profile="google", - ), - WebAppTemplate( - template_id="netflix", - name="Netflix", - url="https://www.netflix.com", - icon="netflix", - category="AudioVideo", - comment="Watch movies and TV shows on Netflix", - generic_name="Video Player", - keywords=("netflix", "streaming", "movies", "series"), - ), - WebAppTemplate( - template_id="prime-video", - name="Amazon Prime Video", - url="https://www.primevideo.com", - icon="prime-video", - category="AudioVideo", - comment="Watch movies and TV shows on Prime Video", - generic_name="Video Player", - keywords=("amazon", "prime", "video", "streaming", "movies"), - ), - WebAppTemplate( - template_id="disney-plus", - name="Disney+", - url="https://www.disneyplus.com", - icon="disney-plus", - category="AudioVideo", - comment="Watch Disney, Marvel, Star Wars and more", - generic_name="Video Player", - keywords=("disney", "streaming", "movies", "marvel", "star wars"), - ), - WebAppTemplate( - template_id="tidal", - name="Tidal", - url="https://listen.tidal.com", - icon="tidal", - category="AudioVideo", - comment="HiFi music streaming from Tidal", - generic_name="Music Player", - keywords=("tidal", "music", "hifi", "streaming", "lossless"), - features=("media-keys",), - ), - WebAppTemplate( - template_id="deezer", - name="Deezer", - url="https://www.deezer.com", - icon="deezer", - category="AudioVideo", - comment="Music streaming from Deezer", - generic_name="Music Player", - keywords=("deezer", "music", "streaming"), - features=("media-keys",), - ), - WebAppTemplate( - template_id="twitch", - name="Twitch", - url="https://www.twitch.tv", - icon="twitch", - category="AudioVideo", - comment="Live streaming platform", - generic_name="Streaming", - keywords=("twitch", "streaming", "gaming", "live"), - features=("notifications",), - ), -] diff --git a/biglinux-webapps/usr/share/biglinux/webapps/webapps/templates/office365.py b/biglinux-webapps/usr/share/biglinux/webapps/webapps/templates/office365.py deleted file mode 100644 index 43440b7b..00000000 --- a/biglinux-webapps/usr/share/biglinux/webapps/webapps/templates/office365.py +++ /dev/null @@ -1,115 +0,0 @@ -"""Microsoft Office 365 webapp templates.""" - -from webapps.templates.registry import WebAppTemplate - -OFFICE365_TEMPLATES = [ - WebAppTemplate( - template_id="office365-word", - name="Microsoft Word", - url="https://www.office.com/launch/word", - icon="ms-word", - category="Office", - comment="Edit documents online with Microsoft Word", - generic_name="Word Processor", - keywords=("word", "document", "office", "docx", "microsoft"), - mime_types=( - "application/vnd.openxmlformats-officedocument.wordprocessingml.document", - "application/msword", - "application/rtf", - "text/rtf", - ), - file_handler="upload", - profile="office365", - ), - WebAppTemplate( - template_id="office365-excel", - name="Microsoft Excel", - url="https://www.office.com/launch/excel", - icon="ms-excel", - category="Office", - comment="Edit spreadsheets online with Microsoft Excel", - generic_name="Spreadsheet", - keywords=("excel", "spreadsheet", "office", "xlsx", "csv", "microsoft"), - mime_types=( - "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", - "application/vnd.ms-excel", - "text/csv", - "application/csv", - ), - file_handler="upload", - profile="office365", - ), - WebAppTemplate( - template_id="office365-powerpoint", - name="Microsoft PowerPoint", - url="https://www.office.com/launch/powerpoint", - icon="ms-powerpoint", - category="Office", - comment="Create presentations online with Microsoft PowerPoint", - generic_name="Presentation", - keywords=("powerpoint", "presentation", "office", "pptx", "slides", "microsoft"), - mime_types=( - "application/vnd.openxmlformats-officedocument.presentationml.presentation", - "application/vnd.ms-powerpoint", - ), - file_handler="upload", - profile="office365", - ), - WebAppTemplate( - template_id="office365-onenote", - name="Microsoft OneNote", - url="https://www.onenote.com/notebooks", - icon="ms-onenote", - category="Office", - comment="Take notes online with Microsoft OneNote", - generic_name="Note Taking", - keywords=("onenote", "notes", "office", "microsoft"), - profile="office365", - ), - WebAppTemplate( - template_id="office365-outlook", - name="Microsoft Outlook", - url="https://outlook.live.com/mail/", - icon="ms-outlook", - category="Office", - comment="Email and calendar from Microsoft Outlook", - generic_name="Email Client", - keywords=("outlook", "email", "mail", "calendar", "microsoft"), - features=("notifications",), - profile="office365", - ), - WebAppTemplate( - template_id="office365-teams", - name="Microsoft Teams", - url="https://teams.microsoft.com", - icon="ms-teams", - category="Network", - comment="Chat and video conferencing with Microsoft Teams", - generic_name="Instant Messaging", - keywords=("teams", "chat", "video", "conferencing", "microsoft"), - features=("notifications", "camera", "microphone"), - profile="office365", - ), - WebAppTemplate( - template_id="office365-onedrive", - name="Microsoft OneDrive", - url="https://onedrive.live.com", - icon="onedrive", - category="Network", - comment="Cloud storage from Microsoft OneDrive", - generic_name="Cloud Storage", - keywords=("onedrive", "cloud", "storage", "files", "microsoft"), - profile="office365", - ), - WebAppTemplate( - template_id="office365-home", - name="Microsoft 365", - url="https://www.office.com", - icon="ms-office", - category="Office", - comment="Microsoft 365 home — access all Office apps", - generic_name="Office Suite", - keywords=("office", "365", "microsoft", "word", "excel", "powerpoint"), - profile="office365", - ), -] diff --git a/biglinux-webapps/usr/share/biglinux/webapps/webapps/templates/productivity.py b/biglinux-webapps/usr/share/biglinux/webapps/webapps/templates/productivity.py deleted file mode 100644 index 6045004c..00000000 --- a/biglinux-webapps/usr/share/biglinux/webapps/webapps/templates/productivity.py +++ /dev/null @@ -1,134 +0,0 @@ -"""Productivity webapp templates.""" - -from webapps.templates.registry import WebAppTemplate - -PRODUCTIVITY_TEMPLATES = [ - WebAppTemplate( - template_id="notion", - name="Notion", - url="https://www.notion.so", - icon="notion", - category="Office", - comment="All-in-one workspace for notes, docs, and projects", - generic_name="Project Management", - keywords=("notion", "notes", "docs", "wiki", "project", "management"), - features=("notifications",), - ), - WebAppTemplate( - template_id="todoist", - name="Todoist", - url="https://todoist.com/app", - icon="todoist", - category="Office", - comment="Task management and to-do lists", - generic_name="Task Manager", - keywords=("todoist", "tasks", "todo", "productivity"), - features=("notifications",), - ), - WebAppTemplate( - template_id="trello", - name="Trello", - url="https://trello.com", - icon="trello", - category="Office", - comment="Visual project management with boards and cards", - generic_name="Project Management", - keywords=("trello", "kanban", "boards", "project", "management"), - features=("notifications",), - ), - WebAppTemplate( - template_id="figma", - name="Figma", - url="https://www.figma.com", - icon="figma", - category="Graphics", - comment="Collaborative design tool", - generic_name="Design Tool", - keywords=("figma", "design", "ui", "ux", "prototype", "vector"), - ), - WebAppTemplate( - template_id="canva", - name="Canva", - url="https://www.canva.com", - icon="canva", - category="Graphics", - comment="Online graphic design tool", - generic_name="Design Tool", - keywords=("canva", "design", "graphics", "templates", "poster"), - ), - WebAppTemplate( - template_id="github", - name="GitHub", - url="https://github.com", - icon="github", - category="Development", - comment="Code hosting and collaboration platform", - generic_name="Code Hosting", - keywords=("github", "git", "code", "repository", "development"), - features=("notifications",), - ), - WebAppTemplate( - template_id="gitlab", - name="GitLab", - url="https://gitlab.com", - icon="gitlab", - category="Development", - comment="DevOps platform for software development", - generic_name="DevOps Platform", - keywords=("gitlab", "git", "devops", "ci", "cd", "development"), - features=("notifications",), - ), - WebAppTemplate( - template_id="chatgpt", - name="ChatGPT", - url="https://chatgpt.com", - icon="chatgpt", - category="Utility", - comment="AI assistant from OpenAI", - generic_name="AI Assistant", - keywords=("chatgpt", "ai", "openai", "assistant", "gpt"), - ), - WebAppTemplate( - template_id="claude", - name="Claude", - url="https://claude.ai", - icon="claude", - category="Utility", - comment="AI assistant from Anthropic", - generic_name="AI Assistant", - keywords=("claude", "ai", "anthropic", "assistant"), - ), - WebAppTemplate( - template_id="linkedin", - name="LinkedIn", - url="https://www.linkedin.com", - icon="linkedin", - category="Network", - comment="Professional networking platform", - generic_name="Social Network", - keywords=("linkedin", "professional", "networking", "jobs"), - features=("notifications",), - ), - WebAppTemplate( - template_id="twitter", - name="X (Twitter)", - url="https://x.com", - icon="twitter", - category="Network", - comment="Social media and news platform", - generic_name="Social Network", - keywords=("twitter", "x", "social", "news", "microblog"), - features=("notifications",), - ), - WebAppTemplate( - template_id="reddit", - name="Reddit", - url="https://www.reddit.com", - icon="reddit", - category="Network", - comment="Community discussion and content sharing", - generic_name="Social Network", - keywords=("reddit", "community", "forum", "discussion"), - features=("notifications",), - ), -] diff --git a/biglinux-webapps/usr/share/biglinux/webapps/webapps/templates/registry.py b/biglinux-webapps/usr/share/biglinux/webapps/webapps/templates/registry.py deleted file mode 100644 index 7664cfda..00000000 --- a/biglinux-webapps/usr/share/biglinux/webapps/webapps/templates/registry.py +++ /dev/null @@ -1,116 +0,0 @@ -"""Template registry — discovery, validation, lookup for webapp presets.""" - -from __future__ import annotations - -import logging -from dataclasses import dataclass, field - -logger = logging.getLogger(__name__) - - -@dataclass(frozen=True, slots=True) -class WebAppTemplate: - """Immutable preset for a known web service.""" - - template_id: str - name: str - url: str - icon: str - category: str - mime_types: tuple[str, ...] = () - url_schemes: tuple[str, ...] = () - features: tuple[str, ...] = () - profile: str = "" - comment: str = "" - generic_name: str = "" - keywords: tuple[str, ...] = () - file_handler: str = "" # "upload" | "url" | "" - - -@dataclass -class TemplateRegistry: - """Central store for all webapp templates with lookup helpers.""" - - _templates: dict[str, WebAppTemplate] = field(default_factory=dict) - _by_category: dict[str, list[WebAppTemplate]] = field(default_factory=dict) - - def register(self, tpl: WebAppTemplate) -> None: - """Add template to registry.""" - self._templates[tpl.template_id] = tpl - self._by_category.setdefault(tpl.category, []).append(tpl) - - def register_many(self, templates: list[WebAppTemplate]) -> None: - for t in templates: - self.register(t) - - def get(self, template_id: str) -> WebAppTemplate | None: - return self._templates.get(template_id) - - def get_all(self) -> list[WebAppTemplate]: - return list(self._templates.values()) - - def get_by_category(self, category: str) -> list[WebAppTemplate]: - return list(self._by_category.get(category, [])) - - def get_categories(self) -> list[str]: - return sorted(self._by_category.keys()) - - def match_url(self, url: str) -> WebAppTemplate | None: - """Find template matching a URL (best-effort domain match).""" - url_lower = url.lower() - for tpl in self._templates.values(): - # extract domain from template URL for matching - tpl_domain = _extract_domain(tpl.url) - if tpl_domain and tpl_domain in url_lower: - return tpl - return None - - def search(self, query: str) -> list[WebAppTemplate]: - """Search templates by name, category, or keywords.""" - q = query.lower() - results = [] - for tpl in self._templates.values(): - if ( - q in tpl.name.lower() - or q in tpl.category.lower() - or any(q in kw.lower() for kw in tpl.keywords) - ): - results.append(tpl) - return results - - -def _extract_domain(url: str) -> str: - """Extract base domain from URL for matching.""" - from urllib.parse import urlparse - - try: - parsed = urlparse(url) - host = parsed.hostname or "" - # strip www. - if host.startswith("www."): - host = host[4:] - return host - except Exception: - return "" - - -def build_default_registry() -> TemplateRegistry: - """Build registry with all bundled templates.""" - from webapps.templates.office365 import OFFICE365_TEMPLATES - from webapps.templates.google import GOOGLE_TEMPLATES - from webapps.templates.communication import COMMUNICATION_TEMPLATES - from webapps.templates.media import MEDIA_TEMPLATES - from webapps.templates.productivity import PRODUCTIVITY_TEMPLATES - - registry = TemplateRegistry() - for group in ( - OFFICE365_TEMPLATES, - GOOGLE_TEMPLATES, - COMMUNICATION_TEMPLATES, - MEDIA_TEMPLATES, - PRODUCTIVITY_TEMPLATES, - ): - registry.register_many(group) - - logger.debug("Template registry loaded: %d templates", len(registry._templates)) - return registry diff --git a/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/__init__.py b/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/__init__.py deleted file mode 100644 index 238fb867..00000000 --- a/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -""" -UI package initialization -""" diff --git a/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py b/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py deleted file mode 100644 index fde72103..00000000 --- a/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py +++ /dev/null @@ -1,253 +0,0 @@ -""" -BrowserDialog module containing the dialog for selecting a browser -""" - -import gi - -gi.require_version("Gtk", "4.0") -gi.require_version("Adw", "1") -from gi.repository import Gtk, Adw, GObject, Gdk - -# Import shared browser icon utilities -from webapps.utils.browser_icon_utils import set_image_from_browser_icon -from webapps.utils.translation import _ -from webapps.models.webapp_model import WebApp -from webapps.models.browser_model import Browser, BrowserCollection - -import logging - -logger = logging.getLogger(__name__) - - -class BrowserDialog(Adw.Window): - """Dialog for selecting a browser for a webapp""" - - # Define custom signals - __gsignals__ = {"response": (GObject.SignalFlags.RUN_FIRST, None, (int,))} - - def __init__( - self, parent: Gtk.Window, webapp: WebApp, browser_collection: BrowserCollection - ) -> None: - """Initialize the BrowserDialog""" - super().__init__( - transient_for=parent, - modal=True, - destroy_with_parent=True, - width_request=400, - height_request=500, - ) - - self.webapp = webapp - self.browser_collection = browser_collection - self.selected_browser = None - - # Get the command executor from parent if available - # This is needed to detect the system default browser - if hasattr(parent, "command_executor"): - self.command_executor = parent.command_executor - else: - self.command_executor = None - - # Create UI - self.setup_ui() - - def setup_ui(self) -> None: - """Set up the UI components.""" - content = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=12) - content.set_margin_top(2) - content.set_margin_bottom(12) - content.set_margin_start(12) - content.set_margin_end(12) - - # Add key event controller to handle ESC key to close dialog - key_controller = Gtk.EventControllerKey.new() - key_controller.connect("key-pressed", self.on_key_pressed) - self.add_controller(key_controller) - - # Header - header = Adw.HeaderBar() - header.set_title_widget(Gtk.Label(label=_("Select Browser"))) - header.add_css_class("flat") - content.append(header) - - # Create a list box for browser options - list_box = Gtk.ListBox() - list_box.set_selection_mode(Gtk.SelectionMode.SINGLE) - list_box.add_css_class("boxed-list") - list_box.connect("row-selected", self.on_browser_selected) - - # Get all browsers - browsers = self.browser_collection.get_all() - - # Try to get system default browser ID if command executor is available - self.system_default_browser_id = None - if self.command_executor and hasattr( - self.command_executor, "get_system_default_browser" - ): - self.system_default_browser_id = ( - self.command_executor.get_system_default_browser() - ) - logger.debug( - "System default browser detected: %s", self.system_default_browser_id - ) - - # Add browser options to the list box - for browser in browsers: - row = self._create_browser_row(browser) - list_box.append(row) - - # Select browser in the list - prioritize: - # 1. Current browser from webapp (if set) - # 2. System default browser (if detected and no current browser) - if browser.browser_id == self.webapp.browser: - list_box.select_row(row) - self.selected_browser = browser - logger.debug("Selected existing browser: %s", browser.browser_id) - elif ( - not self.webapp.browser - and not self.selected_browser - and self.system_default_browser_id - and browser.browser_id == self.system_default_browser_id - ): - list_box.select_row(row) - self.selected_browser = browser - logger.debug("Selected system default browser: %s", browser.browser_id) - - # Add the list box to a scrolled window - scrolled = Gtk.ScrolledWindow() - scrolled.set_policy(Gtk.PolicyType.NEVER, Gtk.PolicyType.AUTOMATIC) - scrolled.set_min_content_height(400) - scrolled.set_child(list_box) - - content.append(scrolled) - - # Add buttons - button_box = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL) - button_box.set_halign(Gtk.Align.END) - button_box.set_spacing(8) - button_box.set_margin_top(12) - - cancel_button = Gtk.Button(label=_("Cancel")) - cancel_button.connect("clicked", self.on_cancel_clicked) - - select_button = Gtk.Button(label=_("Select")) - select_button.add_css_class("suggested-action") - select_button.connect("clicked", self.on_select_clicked) - - button_box.append(cancel_button) - button_box.append(select_button) - content.append(button_box) - - # Use set_content() instead of set_child() for Adw.Window - self.set_content(content) - - def _create_browser_row(self, browser: Browser) -> Gtk.ListBoxRow: - """ - Create a row for a browser - - Parameters: - browser (Browser): Browser object - - Returns: - Gtk.ListBoxRow: Row for the browser - """ - row = Gtk.ListBoxRow() - - # Store the browser in the row - row.browser = browser - - # Create a box for the row content - box = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=12) - box.set_margin_top(8) - box.set_margin_bottom(8) - box.set_margin_start(8) - box.set_margin_end(8) - - # Browser icon - icon = Gtk.Image() - set_image_from_browser_icon(icon, browser, pixel_size=32) - box.append(icon) - - # Browser name - label = Gtk.Label(label=browser.get_friendly_name()) - label.set_halign(Gtk.Align.START) - label.set_hexpand(True) - box.append(label) - - # Default indicator - only show System Default, or Default if no system default is detected - is_system_default = ( - hasattr(self, "system_default_browser_id") - and self.system_default_browser_id == browser.browser_id - ) - - if is_system_default: - default_label = Gtk.Label(label=_("System Default")) - default_label.add_css_class("caption") - default_label.add_css_class("dim-label") - box.append(default_label) - elif browser.is_default and not self.system_default_browser_id: - # Only show this if no system default was detected - default_label = Gtk.Label(label=_("Default")) - default_label.add_css_class("caption") - default_label.add_css_class("dim-label") - box.append(default_label) - - row.set_child(box) - - return row - - def on_browser_selected( - self, list_box: Gtk.ListBox, row: Gtk.ListBoxRow | None - ) -> None: - """Handle browser selection""" - if row: - self.selected_browser = row.browser - - def on_cancel_clicked(self, button: Gtk.Button) -> None: - """Handle cancel button click""" - self.close() - # Emit our custom response signal - self.emit("response", Gtk.ResponseType.CANCEL) - - def on_select_clicked(self, button: Gtk.Button) -> None: - """Handle select button click""" - if self.selected_browser: - self.close() - # Emit our custom response signal - self.emit("response", Gtk.ResponseType.OK) - else: - self.show_error_dialog(_("Please select a browser.")) - - def show_error_dialog(self, message: str) -> None: - """ - Show an error dialog - - Parameters: - message (str): Error message to display - """ - dialog = Adw.MessageDialog(transient_for=self, heading=_("Error"), body=message) - dialog.add_response("ok", _("OK")) - dialog.present() - - def get_selected_browser(self) -> Browser | None: - """ - Get the selected browser - - Returns: - Browser: Selected browser - """ - return self.selected_browser - - def on_key_pressed( - self, - _controller: Gtk.EventControllerKey, - keyval: int, - _keycode: int, - _state: Gdk.ModifierType, - ) -> bool: - """Handle key press events""" - if keyval == Gdk.KEY_Escape: - self.close() - self.emit("response", Gtk.ResponseType.CANCEL) - return True - return False diff --git a/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py b/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py deleted file mode 100644 index 2e676cd0..00000000 --- a/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py +++ /dev/null @@ -1,109 +0,0 @@ -""" -FaviconPicker — FlowBox widget for selecting website favicons. -Emits ``icon-selected(path)`` when user picks an icon. -""" - -import gi -import logging - -gi.require_version("Gtk", "4.0") -from gi.repository import Gtk, GObject, GdkPixbuf - -from webapps.utils.translation import _ - -logger = logging.getLogger(__name__) - - -class FaviconPicker(Gtk.Box): - """FlowBox-based favicon selector. - - Signals: - icon-selected(str): emitted with absolute path of chosen icon. - """ - - __gsignals__ = { - "icon-selected": (GObject.SignalFlags.RUN_FIRST, None, (str,)), - } - - _CSS = b""" - .favicon-selected { - border: 2px solid @accent_color; - border-radius: 6px; - padding: 2px; - } - """ - - _css_registered = False - - def __init__(self) -> None: - super().__init__(orientation=Gtk.Orientation.VERTICAL) - - self._selected_child: Gtk.FlowBoxChild | None = None - self.connect("map", self._on_map) - - self._flowbox = Gtk.FlowBox() - self._flowbox.set_selection_mode(Gtk.SelectionMode.SINGLE) - self._flowbox.set_max_children_per_line(5) - self._flowbox.set_homogeneous(True) - self._flowbox.set_margin_top(8) - self._flowbox.set_margin_bottom(8) - self._flowbox.connect("child-activated", self._on_child_activated) - self.append(self._flowbox) - - # -- public API ---------------------------------------------------------- - - def load_icons(self, icon_paths: list[str]) -> None: - """Replace current icons with *icon_paths* and show the picker.""" - self._clear() - for idx, path in enumerate(icon_paths, 1): - container = Gtk.Box(orientation=Gtk.Orientation.VERTICAL) - container.favicon_url = path - container.update_property( - [Gtk.AccessibleProperty.LABEL], - [_("Icon {0} of {1}").format(idx, len(icon_paths))], - ) - - image = Gtk.Image() - image.set_pixel_size(48) - - try: - pixbuf = GdkPixbuf.Pixbuf.new_from_file_at_size(path, 48, 48) - image.set_from_pixbuf(pixbuf) - except Exception as e: - logger.error("Error loading favicon %s: %s", path, e) - image.set_from_icon_name("image-missing") - - container.append(image) - self._flowbox.append(container) - - # -- private ------------------------------------------------------------- - - def _clear(self) -> None: - self._selected_child = None - while self._flowbox.get_first_child(): - self._flowbox.remove(self._flowbox.get_first_child()) - - def _on_map(self, _widget: Gtk.Widget) -> None: - """Register selection CSS once the widget is mapped to a display.""" - if FaviconPicker._css_registered: - return - provider = Gtk.CssProvider() - provider.load_from_data(self._CSS) - Gtk.StyleContext.add_provider_for_display( - self.get_display(), provider, Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION - ) - FaviconPicker._css_registered = True - - def _on_child_activated( - self, _flowbox: Gtk.FlowBox, child: Gtk.FlowBoxChild - ) -> None: - # remove previous highlight - if self._selected_child is not None: - self._selected_child.remove_css_class("favicon-selected") - child.add_css_class("favicon-selected") - self._selected_child = child - - container = child.get_child() - path = getattr(container, "favicon_url", None) - if path: - self.emit("icon-selected", path) diff --git a/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py b/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py deleted file mode 100644 index 7bedf0aa..00000000 --- a/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py +++ /dev/null @@ -1,442 +0,0 @@ -""" -MainWindow module containing the main application window -""" - -import gi -import time -import uuid - -from typing import Any - -gi.require_version("Gtk", "4.0") -gi.require_version("Adw", "1") -from gi.repository import Gtk, Adw, Gio, GObject - -from webapps.ui.webapp_row import WebAppRow -from webapps.ui.webapp_dialog import WebAppDialog -from webapps.ui.browser_dialog import BrowserDialog -from webapps.ui.welcome_dialog import WelcomeDialog -from webapps.models.webapp_model import WebApp -from webapps.utils.translation import _ - -import logging - -logger = logging.getLogger(__name__) - - -class MainWindow(Adw.ApplicationWindow): - """Main application window for WebApps Manager""" - - def __init__(self, **kwargs: Any) -> None: - """Initialize the main window""" - super().__init__( - title=_("WebApps Manager"), default_width=800, default_height=650, **kwargs - ) - - self.app = kwargs.get("application") - self.filter_text = "" - self.current_webapp = None - self.setup_ui() - - # Create action to show welcome dialog - show_welcome_action = Gio.SimpleAction.new("show-welcome", None) - show_welcome_action.connect( - "activate", lambda *_args: self.show_welcome_dialog() - ) - self.app.add_action(show_welcome_action) - - # Show welcome dialog if it should be shown - if WelcomeDialog.should_show_welcome(): - self.show_welcome_dialog() - - def show_welcome_dialog(self) -> None: - """Show the welcome dialog""" - welcome = WelcomeDialog(self) - welcome.present() - - def setup_ui(self) -> None: - """Set up the UI components.""" - main_box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL) - - # Header bar - header = Adw.HeaderBar() - - # Search button on the left - search_button = Gtk.ToggleButton(icon_name="system-search-symbolic") - search_button.connect("toggled", self.on_search_toggled) - search_button.set_tooltip_text(_("Search WebApps")) - search_button.update_property( - [Gtk.AccessibleProperty.LABEL], - [_("Search WebApps")], - ) - header.pack_start(search_button) - - # Add menu first so it appears to the right of the Add button - menu_button = Gtk.MenuButton() - menu_button.set_icon_name("open-menu-symbolic") - menu_button.update_property( - [Gtk.AccessibleProperty.LABEL], - [_("Main Menu")], - ) - - # Create menu model with items - menu = Gio.Menu() - # Use translation function for menu items - menu.append(_("Refresh"), "app.refresh") - menu.append(_("Export WebApps"), "app.export") - menu.append(_("Import WebApps"), "app.import") - - # Add new menu items for browsing folders - menu.append(_("Browse Applications Folder"), "app.browse-apps") - menu.append(_("Browse Profiles Folder"), "app.browse-profiles") - - # Add a separator before help-related items - menu_section = Gio.Menu() - menu_section.append(_("Show Welcome Screen"), "app.show-welcome") - menu_section.append(_("Remove All WebApps"), "app.remove-all") - menu_section.append(_("About"), "app.about") - menu.append_section(None, menu_section) - - # Set the menu - menu_button.set_menu_model(menu) - header.pack_end(menu_button) - - # Add new webapp button on the right with text instead of icon - add_button = Gtk.Button(label=_("Add")) - add_button.connect("clicked", self.on_add_clicked) - add_button.add_css_class("suggested-action") - header.pack_end(add_button) - - main_box.append(header) - - # Search bar - self.search_bar = Gtk.SearchBar() - self.search_bar.set_key_capture_widget(self) - - search_entry = Gtk.SearchEntry() - search_entry.set_hexpand(True) - search_entry.update_property( - [Gtk.AccessibleProperty.LABEL], - [_("Search WebApps")], - ) - search_entry.connect("search-changed", self.on_search_changed) - self.search_bar.set_child(search_entry) - - main_box.append(self.search_bar) - - # Create scrolled window for content - scrolled = Gtk.ScrolledWindow() - scrolled.set_hexpand(True) - scrolled.set_vexpand(True) - - # Create box for categorized webapps - self.content_box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=12) - self.content_box.set_margin_start(40) - self.content_box.set_margin_end(40) - self.content_box.set_margin_top(12) - self.content_box.set_margin_bottom(12) - - # Add an empty state for when there are no webapps - self.empty_state = Adw.StatusPage() - self.empty_state.set_icon_name("big-webapps") - self.empty_state.set_title(_("No WebApps Found")) - self.empty_state.set_description(_("Add a new webapp to get started")) - self.empty_state.set_focusable(True) - - # Add button in empty state - empty_add_button = Gtk.Button(label=_("Add WebApp")) - empty_add_button.add_css_class("suggested-action") - empty_add_button.connect("clicked", self.on_add_clicked) - self.empty_state.set_child(empty_add_button) - - # Start with empty state - self.content_box.append(self.empty_state) - - scrolled.set_child(self.content_box) - main_box.append(scrolled) - - # Add a toast overlay for notifications - self.toast_overlay = Adw.ToastOverlay() - self.toast_overlay.set_child(main_box) - - # Set the content - self.set_content(self.toast_overlay) - - # Load webapps - self.refresh_ui() - - def on_search_toggled(self, button: Gtk.ToggleButton) -> None: - """Handle search button toggle""" - self.search_bar.set_search_mode(button.get_active()) - - def on_search_changed(self, entry: Gtk.SearchEntry) -> None: - """Handle search text changes""" - self.filter_text = entry.get_text() - self.refresh_ui() - - def on_add_clicked(self, button: Gtk.Button) -> None: - """Handle add button click""" - # Create a new webapp with default values - default_browser = self.app.browser_collection.get_default() - browser_id = default_browser.browser_id if default_browser else "" - - new_webapp = WebApp({ - "browser": browser_id, - "app_file": f"{int(time.time())}-{uuid.uuid4().hex[:8]}", - "app_name": "", - "app_url": "", - "app_icon": "", - "app_profile": "Browser", - "app_categories": "Webapps", - "app_icon_url": "/usr/share/icons/hicolor/scalable/apps/webapp-generic.svg", - }) - - dialog = WebAppDialog( - self, - new_webapp, - self.app.browser_collection, - self.app.command_executor, - is_new=True, - ) - dialog.connect("response", self.on_webapp_dialog_response) - dialog.present() - - def on_webapp_clicked(self, row: WebAppRow, webapp: WebApp) -> None: - """Handle webapp row click""" - self.current_webapp = webapp - dialog = WebAppDialog( - self, - webapp, - self.app.browser_collection, - self.app.command_executor, - is_new=False, - ) - dialog.connect("response", self.on_webapp_dialog_response) - dialog.present() - - def _find_webapp_after_reload( - self, url: str, name: str, app_file: str = "" - ) -> WebApp | None: - """Find webapp after data reload — prefers app_file (stable ID).""" - return self.app.service.find_webapp(url, name, app_file=app_file) - - def on_webapp_dialog_response(self, dialog: WebAppDialog, response: int) -> None: - """Handle webapp dialog response — save already executed by dialog.""" - if response == Gtk.ResponseType.OK: - webapp = dialog.get_webapp() - - # reload collections (command already ran in dialog thread) - self.app.service.load_data() - - found = self._find_webapp_after_reload( - webapp.app_url, webapp.app_name, app_file=webapp.app_file - ) - if found: - self.current_webapp = found - elif dialog.is_new: - self.app.webapp_collection.add(webapp) - - msg = ( - _("WebApp created successfully") - if dialog.is_new - else _("WebApp updated successfully") - ) - self.show_toast(msg) - self.refresh_ui() - - def on_browser_selected(self, row: WebAppRow, webapp: WebApp) -> None: - """Handle browser selection button click""" - self.current_webapp = webapp - - dialog = BrowserDialog( - self, - webapp, - self.app.browser_collection, - ) - dialog.connect("response", self.on_browser_dialog_response) - dialog.present() - - def on_browser_dialog_response(self, dialog: BrowserDialog, response: int) -> None: - """Handle browser dialog response""" - if response == Gtk.ResponseType.OK: - browser = dialog.get_selected_browser() - original_url = self.current_webapp.app_url - original_name = self.current_webapp.app_name - original_file = self.current_webapp.app_file - self.current_webapp.browser = browser.browser_id - - success = self.app.service.update_webapp(self.current_webapp) - if success: - found = self._find_webapp_after_reload( - original_url, original_name, app_file=original_file - ) - if found: - self.current_webapp = found - - self.show_toast( - _("Browser changed to {0}").format(browser.get_friendly_name()) - ) - self.refresh_ui() - - def on_delete_clicked(self, row: WebAppRow, webapp: WebApp) -> None: - """Handle delete button click""" - # Make sure we use the webapp from the row (most up-to-date) - # rather than potentially stale current_webapp - self.current_webapp = webapp - logger.debug("Delete clicked on webapp file: %s", webapp.app_file) - - # Create a delete confirmation dialog - dialog = Adw.MessageDialog( - transient_for=self, - body=_( - "Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}" - ).format(webapp.app_name, webapp.app_url, webapp.browser), - ) - - # Add checkbox for deleting the profile folder too - check_button = None - - # Only show delete folder option if profile is not Browser and no other webapp uses it - show_delete_folder = webapp.app_profile != "Browser" and not any( - w.app_profile == webapp.app_profile and w.browser == webapp.browser - for w in self.app.webapp_collection.get_all() - if w.app_file != webapp.app_file - ) - - if show_delete_folder: - content_area = Gtk.Box(orientation=Gtk.Orientation.VERTICAL) - content_area.set_margin_top(12) - check_button = Gtk.CheckButton(label=_("Also delete configuration folder")) - content_area.append(check_button) - - dialog.set_extra_child(content_area) - - # Add buttons - dialog.add_response("cancel", _("Cancel")) - dialog.add_response("delete", _("Delete")) - dialog.set_response_appearance("delete", Adw.ResponseAppearance.DESTRUCTIVE) - dialog.set_default_response("cancel") - - dialog.connect("response", self.on_delete_dialog_response, check_button) - dialog.present() - - def on_delete_dialog_response( - self, - dialog: Adw.MessageDialog, - response: str, - check_button: Gtk.CheckButton | None, - ) -> None: - """Handle delete dialog response""" - if response == "delete": - delete_folder = check_button.get_active() if check_button else False - success = self.app.service.delete_webapp(self.current_webapp, delete_folder) - if success: - self.show_toast( - _("WebApp deleted successfully"), Adw.ToastPriority.HIGH - ) - self.refresh_ui() - - def on_remove_all_clicked(self) -> None: - """Handle remove all webapps action with text confirmation""" - confirm_phrase = _("REMOVE ALL") - dialog = Adw.MessageDialog( - transient_for=self, - heading=_("Remove All WebApps"), - body=_( - "Are you sure you want to remove all your WebApps? " - "This action cannot be undone.\n\n" - 'Type "{0}" to confirm.' - ).format(confirm_phrase), - ) - - dialog.add_response("cancel", _("Cancel")) - dialog.add_response("confirm", _("Remove All")) - dialog.set_response_appearance("confirm", Adw.ResponseAppearance.DESTRUCTIVE) - dialog.set_default_response("cancel") - dialog.set_response_enabled("confirm", False) - - entry = Gtk.Entry() - entry.set_placeholder_text(confirm_phrase) - entry.connect( - "changed", - lambda e: dialog.set_response_enabled( - "confirm", e.get_text().strip() == confirm_phrase - ), - ) - dialog.set_extra_child(entry) - dialog.connect("response", self._on_remove_all_confirmed) - dialog.present() - - def _on_remove_all_confirmed( - self, dialog: Adw.MessageDialog, response: str - ) -> None: - """Execute remove-all after confirmed.""" - if response != "confirm": - return - - success = self.app.service.delete_all_webapps() - if success: - self.show_toast(_("All WebApps have been removed"), Adw.ToastPriority.HIGH) - else: - self.show_toast(_("Failed to remove all WebApps"), Adw.ToastPriority.HIGH) - self.refresh_ui() - - def show_toast( - self, message: str, priority: Adw.ToastPriority = Adw.ToastPriority.NORMAL - ) -> None: - """Show a toast notification. Use HIGH priority for errors/destructive actions.""" - toast = Adw.Toast.new(message) - toast.set_timeout(3) - toast.set_priority(priority) - self.toast_overlay.add_toast(toast) - - def refresh_ui(self) -> None: - """Refresh the UI with current webapps""" - # Clear the content box - while self.content_box.get_first_child(): - self.content_box.remove(self.content_box.get_first_child()) - - # Get categorized webapps - categorized = self.app.webapp_collection.get_categorized(self.filter_text) - - if not categorized: - # Show empty state if no webapps - self.content_box.append(self.empty_state) - self.empty_state.grab_focus() - return - - # Sort categories alphabetically - categories = sorted(categorized.keys()) - - # Add webapps by category - for category in categories: - # heading for Orca "h" key navigation - header = GObject.new( - Gtk.Label, - accessible_role=Gtk.AccessibleRole.HEADING, - label=f"{category}", - use_markup=True, - ) - header.set_halign(Gtk.Align.START) - header.set_margin_top(12) - header.set_margin_bottom(6) - header.set_focusable(True) - self.content_box.append(header) - - # Create a list box for the category - list_box = Gtk.ListBox() - list_box.set_selection_mode(Gtk.SelectionMode.NONE) - list_box.add_css_class("boxed-list") - - # Sort webapps alphabetically by name - webapps = sorted(categorized[category], key=lambda app: app.app_name) - - # Add webapps to the list box - for webapp in webapps: - row = WebAppRow(webapp, self.app.browser_collection) - row.connect("edit-clicked", self.on_webapp_clicked) - row.connect("browser-clicked", self.on_browser_selected) - row.connect("delete-clicked", self.on_delete_clicked) - list_box.append(row) - - self.content_box.append(list_box) diff --git a/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py b/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py deleted file mode 100644 index daeb1d90..00000000 --- a/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py +++ /dev/null @@ -1,177 +0,0 @@ -""" -Template gallery dialog — browse and apply curated webapp templates. -""" - -import gi - -gi.require_version("Gtk", "4.0") -gi.require_version("Adw", "1") -from gi.repository import Gtk, Adw, GObject - -from webapps.templates.registry import WebAppTemplate, build_default_registry -from webapps.utils.translation import _ - -import logging - -logger = logging.getLogger(__name__) - - -class TemplateGallery(Adw.Window): - """Grid gallery of curated webapp templates.""" - - __gsignals__ = { - "template-selected": ( - GObject.SignalFlags.RUN_FIRST, - None, - (str,), # template_id - ), - } - - def __init__(self, parent: Gtk.Window) -> None: - super().__init__( - title=_("Templates"), - transient_for=parent, - modal=True, - destroy_with_parent=True, - default_width=650, - default_height=500, - ) - - self.registry = build_default_registry() - self._build_ui() - - # ── UI ────────────────────────────────────────────────────────── - - def _build_ui(self) -> None: - content = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=0) - - # header - header = Adw.HeaderBar() - header.set_title_widget(Gtk.Label(label=_("Choose a Template"))) - header.add_css_class("flat") - content.append(header) - - # search bar - self.search_entry = Gtk.SearchEntry() - self.search_entry.set_placeholder_text(_("Search templates...")) - self.search_entry.set_margin_start(12) - self.search_entry.set_margin_end(12) - self.search_entry.set_margin_top(6) - self.search_entry.set_margin_bottom(6) - self.search_entry.update_property( - [Gtk.AccessibleProperty.LABEL], - [_("Search templates")], - ) - self.search_entry.connect("search-changed", self._on_search_changed) - content.append(self.search_entry) - - # scrolled area - scrolled = Gtk.ScrolledWindow() - scrolled.set_policy(Gtk.PolicyType.NEVER, Gtk.PolicyType.AUTOMATIC) - scrolled.set_vexpand(True) - - self.main_box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=0) - scrolled.set_child(self.main_box) - content.append(scrolled) - - self._populate_all() - self.set_content(content) - - def _populate_all(self) -> None: - """Populate gallery with all templates grouped by category.""" - self._clear_main_box() - categories = self.registry.get_categories() - for cat in sorted(categories): - templates = self.registry.get_by_category(cat) - if templates: - self._add_category_section(cat, templates) - - def _populate_search(self, query: str) -> None: - """Populate gallery with search results.""" - self._clear_main_box() - results = self.registry.search(query) - if results: - self._add_category_section(_("Search Results"), results) - else: - label = Gtk.Label(label=_("No templates found")) - label.set_margin_top(24) - label.add_css_class("dim-label") - self.main_box.append(label) - - def _add_category_section( - self, title: str, templates: list[WebAppTemplate] - ) -> None: - """Add a category header + FlowBox of template cards.""" - # category heading - heading = Gtk.Label(label=title, xalign=0) - heading.add_css_class("heading") - heading.set_margin_start(16) - heading.set_margin_top(12) - heading.set_margin_bottom(4) - self.main_box.append(heading) - - flow = Gtk.FlowBox() - flow.set_selection_mode(Gtk.SelectionMode.NONE) - flow.set_homogeneous(True) - flow.set_max_children_per_line(5) - flow.set_min_children_per_line(2) - flow.set_margin_start(12) - flow.set_margin_end(12) - flow.set_margin_bottom(8) - flow.set_row_spacing(8) - flow.set_column_spacing(8) - - for tmpl in templates: - card = self._make_card(tmpl) - flow.append(card) - - self.main_box.append(flow) - - def _make_card(self, tmpl: WebAppTemplate) -> Gtk.Button: - """Build a clickable card for a template.""" - box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=4) - box.set_margin_top(8) - box.set_margin_bottom(8) - box.set_margin_start(4) - box.set_margin_end(4) - box.set_halign(Gtk.Align.CENTER) - - icon = Gtk.Image.new_from_icon_name(tmpl.icon or "application-x-executable") - icon.set_pixel_size(48) - box.append(icon) - - label = Gtk.Label(label=tmpl.name) - label.set_ellipsize(3) # PANGO_ELLIPSIZE_END - label.set_max_width_chars(14) - label.add_css_class("caption") - box.append(label) - - btn = Gtk.Button() - btn.set_child(box) - btn.add_css_class("flat") - btn.set_tooltip_text(tmpl.comment or tmpl.name) - btn.connect("clicked", self._on_card_clicked, tmpl.template_id) - - btn.update_property( - [Gtk.AccessibleProperty.LABEL], - [tmpl.name], - ) - - return btn - - def _clear_main_box(self) -> None: - while child := self.main_box.get_first_child(): - self.main_box.remove(child) - - # ── Signals ───────────────────────────────────────────────────── - - def _on_search_changed(self, entry: Gtk.SearchEntry) -> None: - query = entry.get_text().strip() - if query: - self._populate_search(query) - else: - self._populate_all() - - def _on_card_clicked(self, _btn: Gtk.Button, template_id: str) -> None: - self.emit("template-selected", template_id) - self.close() diff --git a/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py b/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py deleted file mode 100644 index 5c2ef52d..00000000 --- a/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py +++ /dev/null @@ -1,807 +0,0 @@ -""" -WebAppDialog module containing the dialog for creating and editing webapps -""" - -import gi -import threading -import time -import uuid - -gi.require_version("Gtk", "4.0") -gi.require_version("Adw", "1") -from gi.repository import Gtk, Adw, GObject, GdkPixbuf, Gdk, GLib - -# Import BrowserDialog -from webapps.ui.browser_dialog import BrowserDialog -from webapps.ui.favicon_picker import FaviconPicker - -# Import our new WebsiteInfoFetcher -from webapps.utils.url_utils import WebsiteInfoFetcher - -# Import the browser icon utilities -from webapps.utils.browser_icon_utils import set_image_from_browser_icon - -# Import the centralized translation function -from webapps.utils.translation import _ -from webapps.models.webapp_model import WebApp -from webapps.models.browser_model import BrowserCollection -from webapps.utils.command_executor import CommandExecutor -from webapps.ui.template_gallery import TemplateGallery -from webapps.templates.registry import build_default_registry - -import logging - -logger = logging.getLogger(__name__) - - -class WebAppDialog(Adw.Window): - """Dialog for creating and editing webapps""" - - # Define custom signals - __gsignals__ = {"response": (GObject.SignalFlags.RUN_FIRST, None, (int,))} - - def __init__( - self, - parent: Gtk.Window, - webapp: WebApp, - browser_collection: BrowserCollection, - command_executor: CommandExecutor, - is_new: bool = False, - ) -> None: - """ - Initialize the WebAppDialog - - Parameters: - parent (Gtk.Window): Parent window - webapp (WebApp): WebApp object to edit or create - browser_collection (BrowserCollection): BrowserCollection object - command_executor (CommandExecutor): CommandExecutor object - is_new (bool): Whether this is a new webapp or an existing one - """ - super().__init__( - title=_("Add WebApp") if is_new else _("Edit WebApp"), - transient_for=parent, - modal=True, - destroy_with_parent=True, - default_width=700, # Increased width - default_height=650, # Increased height - ) - - # Use a safer approach to sizing the dialog - set fixed size directly - # without trying to determine parent size which appears to be causing errors - self.set_default_size(700, 650) - - self.webapp = webapp - self.browser_collection = browser_collection - self.command_executor = command_executor - self.is_new = is_new - - # Clone the webapp to avoid modifying the original - self.webapp = self._clone_webapp(webapp) - - # Detect system default browser + assign for new webapps - self.system_default_browser_id = None - if self.command_executor: - self.system_default_browser_id = ( - self.command_executor.get_system_default_browser() - ) - logger.debug( - "System default browser detected: %s", self.system_default_browser_id - ) - - if self.is_new: - self._assign_default_browser() - - # Create UI - self.setup_ui() - - def _assign_default_browser(self) -> None: - """Assign browser for a new webapp: system default → app default → noop.""" - if self.system_default_browser_id: - system_browser = self.browser_collection.get_by_id( - self.system_default_browser_id - ) - if system_browser: - self.webapp.browser = self.system_default_browser_id - return - # fallback to app default if no browser set - if not self.webapp.browser: - default_browser = self.browser_collection.get_default() - if default_browser: - self.webapp.browser = default_browser.browser_id - - def _clone_webapp(self, webapp: WebApp) -> WebApp: - """ - Create a copy of a webapp - - Parameters: - webapp (WebApp): WebApp object to clone - - Returns: - WebApp: A new WebApp object with the same properties - """ - from webapps.models.webapp_model import WebApp - - # Convert to dict and create a new instance - webapp_dict = { - "browser": webapp.browser, - "app_file": webapp.app_file, - "app_name": webapp.app_name, - "app_url": webapp.app_url, - "app_icon": webapp.app_icon, - "app_profile": webapp.app_profile, - "app_categories": webapp.app_categories, - "app_icon_url": webapp.app_icon_url, - "app_mode": webapp.app_mode, - } - - return WebApp(webapp_dict) - - def setup_ui(self) -> None: - """Set up the UI components.""" - content = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=0) - - # Add key event controller to handle ESC key to close dialog - key_controller = Gtk.EventControllerKey.new() - key_controller.connect("key-pressed", self.on_key_pressed) - self.add_controller(key_controller) - - # Define the window title based on whether we're adding or editing - title = self.is_new and _("Add WebApp") or _("Edit WebApp") - - # Header with title - reduce padding in the header bar - header = Adw.HeaderBar() - header.set_title_widget(Gtk.Label(label=title)) - header.add_css_class("flat") - header.set_show_end_title_buttons(True) - - # template gallery button (new webapps only) - if self.is_new: - template_btn = Gtk.Button() - tpl_box = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=6) - tpl_icon = Gtk.Image.new_from_icon_name("view-grid-symbolic") - tpl_label = Gtk.Label(label=_("Templates")) - tpl_box.append(tpl_icon) - tpl_box.append(tpl_label) - template_btn.set_child(tpl_box) - template_btn.set_tooltip_text(_("Choose from templates")) - template_btn.connect("clicked", self._on_template_btn_clicked) - header.pack_start(template_btn) - - # Apply custom CSS to reduce header padding - css_provider = Gtk.CssProvider() - css_provider.load_from_data(b""" - headerbar { - min-height: 38px; - padding: 2px 6px; - } - """) - style_context = header.get_style_context() - Gtk.StyleContext.add_provider( - style_context, css_provider, Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION - ) - - content.append(header) - - # Scrollable form area - central_box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=0) - central_box.set_vexpand(True) - central_box.set_valign(Gtk.Align.CENTER) - - scrolled = Gtk.ScrolledWindow() - scrolled.set_policy(Gtk.PolicyType.NEVER, Gtk.PolicyType.AUTOMATIC) - scrolled.set_propagate_natural_height(True) - scrolled.set_min_content_height(300) - - clamp = Adw.Clamp() - clamp.set_maximum_size(600) - clamp.set_tightening_threshold(400) - - form_box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=12) - form_box.set_margin_top(0) - form_box.set_margin_bottom(12) - form_box.set_margin_start(24) - form_box.set_margin_end(24) - - form_box.append(self._build_form_group()) - form_box.append(self._build_buttons()) - - clamp.set_child(form_box) - scrolled.set_child(clamp) - central_box.append(scrolled) - content.append(central_box) - - self.set_content(self._build_loading_overlay(content)) - - # focus: URL for new webapps (need to type URL first); - # name for editing (URL already filled, name is more actionable) - target = self.url_row if self.is_new else self.name_row - self.connect("map", lambda *_: target.grab_focus()) - - def _build_form_group(self) -> Adw.PreferencesGroup: - """Build all form rows: URL, Name, Icon, Category, Mode, Browser, Profile.""" - group = Adw.PreferencesGroup() - - # URL entry with detect button + real-time validation - self.url_row = Adw.EntryRow() - self.url_row.set_title(_("URL")) - self.url_row.set_text(self.webapp.app_url) - - self.url_valid_icon = Gtk.Image() - self.url_valid_icon.set_pixel_size(16) - self.url_valid_icon.set_visible(False) - self.url_row.add_suffix(self.url_valid_icon) - - detect_button = Gtk.Button(label=_("Detect")) - detect_button.set_tooltip_text(_("Detect name and icon from website")) - detect_button.set_valign(Gtk.Align.CENTER) - detect_button.connect("clicked", self.on_detect_clicked) - self.url_row.add_suffix(detect_button) - self.url_row.connect("changed", self.on_url_changed) - group.add(self.url_row) - - # Name entry - self.name_row = Adw.EntryRow() - self.name_row.set_title(_("Name")) - self.name_row.set_text(self.webapp.app_name) - self.name_row.connect("changed", self.on_name_changed) - group.add(self.name_row) - - # Icon selection - icon_row = Adw.ActionRow(title=_("App Icon")) - self.icon_image = Gtk.Image() - self.icon_image.set_pixel_size(48) - self.set_icon_from_path(self.webapp.app_icon_url) - icon_row.add_prefix(self.icon_image) - - select_icon_button = Gtk.Button(label=_("Select")) - select_icon_button.set_tooltip_text(_("Select icon for the WebApp")) - select_icon_button.set_valign(Gtk.Align.CENTER) - select_icon_button.connect("clicked", self.on_select_icon_clicked) - icon_row.add_suffix(select_icon_button) - group.add(icon_row) - - # Row for favicon picker (shown after website detection) - self.icon_selection_row = Adw.ActionRow(title=_("Available Icons")) - self.icon_selection_row.set_visible(False) - group.add(self.icon_selection_row) - - # Category - self._build_category_row(group) - - # App mode + Browser + Profile - self._build_mode_browser_profile(group) - - return group - - def _build_category_row(self, group: Adw.PreferencesGroup) -> None: - """Add category dropdown to *group*.""" - main_category = self.webapp.get_main_category() - self.category_dropdown = Gtk.DropDown() - category_model = Gtk.StringList() - - self.system_categories = [ - "Webapps", - "Network", - "Office", - "Development", - "Graphics", - "AudioVideo", - "Game", - "Utility", - "System", - ] - for category in self.system_categories: - category_model.append(_(category)) - - self.category_dropdown.set_model(category_model) - self.category_dropdown.set_valign(Gtk.Align.CENTER) - self.category_dropdown.update_property( - [Gtk.AccessibleProperty.LABEL], - [_("Category")], - ) - - for i, category in enumerate(self.system_categories): - if category == main_category: - self.category_dropdown.set_selected(i) - break - - self.category_dropdown.connect("notify::selected", self.on_category_changed) - category_row = Adw.ActionRow(title=_("Category")) - category_row.add_suffix(self.category_dropdown) - group.add(category_row) - - def _build_mode_browser_profile(self, group: Adw.PreferencesGroup) -> None: - """Add app-mode switch, browser selector & profile rows to *group*.""" - # App mode toggle - self.app_mode_row = Adw.ActionRow(title=_("Application Mode")) - self.app_mode_row.set_subtitle( - _("Opens as a native window without browser interface") - ) - self.app_mode_switch = Gtk.Switch() - self.app_mode_switch.set_valign(Gtk.Align.CENTER) - self.app_mode_switch.set_active(self.webapp.app_mode == "app") - self.app_mode_switch.update_property( - [Gtk.AccessibleProperty.LABEL], - [_("Application Mode")], - ) - self.app_mode_switch.connect("notify::active", self.on_app_mode_switch_changed) - self.app_mode_row.add_suffix(self.app_mode_switch) - group.add(self.app_mode_row) - - # Browser selection - self.browser_row = Adw.ActionRow(title=_("Browser")) - browser_box = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=8) - self.browser_icon = Gtk.Image() - self.browser_icon.set_pixel_size(24) - self.set_browser_icon(self.webapp.browser) - browser_box.append(self.browser_icon) - self.browser_label = Gtk.Label() - self.set_browser_label(self.webapp.browser) - browser_box.append(self.browser_label) - self.browser_row.add_prefix(browser_box) - - select_browser_button = Gtk.Button(label=_("Select")) - select_browser_button.connect("clicked", self.on_select_browser_clicked) - select_browser_button.set_valign(Gtk.Align.CENTER) - self.browser_row.add_suffix(select_browser_button) - group.add(self.browser_row) - - # Profile settings — progressive disclosure via expander - browser = self.browser_collection.get_by_id(self.webapp.browser) - is_firefox = browser and browser.is_firefox_based() - - self.profile_expander = Adw.ExpanderRow(title=_("Profile Settings")) - self.profile_expander.set_subtitle( - _("Configure a separate browser profile for this webapp") - ) - - profile_switch_row = Adw.ActionRow(title=_("Use separate profile")) - profile_switch_row.set_subtitle(_("Allows independent cookies and sessions")) - self.profile_switch = Gtk.Switch() - self.profile_switch.set_valign(Gtk.Align.CENTER) - self.profile_switch.update_property( - [Gtk.AccessibleProperty.LABEL], - [_("Use separate profile")], - ) - if self.is_new: - self.profile_switch.set_active(False) - else: - self.profile_switch.set_active(self.webapp.app_profile != "Browser") - self.profile_switch.connect("notify::active", self.on_profile_switch_changed) - profile_switch_row.add_suffix(self.profile_switch) - self.profile_expander.add_row(profile_switch_row) - - self.profile_entry_row = Adw.EntryRow() - self.profile_entry_row.set_title(_("Profile Name")) - self.profile_entry_row.set_text(self.webapp.app_profile) - self.profile_entry_row.connect("changed", self.on_profile_entry_changed) - self.profile_entry_row.set_visible(self.profile_switch.get_active()) - self.profile_expander.add_row(self.profile_entry_row) - - if not is_firefox: - group.add(self.profile_expander) - - # hide browser/profile in app mode - if self.webapp.app_mode == "app": - self.browser_row.set_visible(False) - self.profile_expander.set_visible(False) - - def _build_buttons(self) -> Gtk.Box: - """Build Cancel / Save button bar.""" - box = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=8) - box.set_margin_top(12) - box.set_margin_bottom(6) - box.set_halign(Gtk.Align.END) - box.set_valign(Gtk.Align.CENTER) - - cancel_button = Gtk.Button(label=_("Cancel")) - cancel_button.set_valign(Gtk.Align.CENTER) - cancel_button.connect("clicked", self.on_cancel_clicked) - - save_button = Gtk.Button(label=_("Save")) - save_button.set_valign(Gtk.Align.CENTER) - save_button.add_css_class("suggested-action") - save_button.connect("clicked", self.on_save_clicked) - - box.append(cancel_button) - box.append(save_button) - return box - - def _build_loading_overlay(self, content: Gtk.Widget) -> Gtk.Overlay: - """Wrap *content* in an overlay with a loading spinner.""" - overlay = Gtk.Overlay() - overlay.set_child(content) - - self.loading_box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=8) - self.loading_box.set_valign(Gtk.Align.CENTER) - self.loading_box.set_halign(Gtk.Align.CENTER) - - spinner = Gtk.Spinner() - spinner.set_size_request(32, 32) - spinner.start() - self.loading_box.append(spinner) - - loading_label = Gtk.Label(label=_("Loading...")) - loading_label.set_halign(Gtk.Align.CENTER) - loading_label.update_property( - [Gtk.AccessibleProperty.LABEL], - [_("Detecting website information, please wait")], - ) - self.loading_box.append(loading_label) - - # semi-transparent backdrop - loading_box_wrapper = Gtk.Box() - loading_box_wrapper.set_hexpand(True) - loading_box_wrapper.set_vexpand(True) - css_provider = Gtk.CssProvider() - css_provider.load_from_data(b""" - box { background: rgba(0, 0, 0, 0.5); } - label { color: white; } - """) - - self.loading_box.set_hexpand(True) - self.loading_box.set_vexpand(True) - loading_box_wrapper.append(self.loading_box) - - style_context = loading_box_wrapper.get_style_context() - Gtk.StyleContext.add_provider( - style_context, css_provider, Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION - ) - - self.loading_overlay = loading_box_wrapper - self.loading_overlay.set_visible(False) - overlay.add_overlay(self.loading_overlay) - return overlay - - # ── Template integration ──────────────────────────────────────── - - def _on_template_btn_clicked(self, _btn: Gtk.Button) -> None: - gallery = TemplateGallery(self) - gallery.connect("template-selected", self._on_template_selected) - gallery.present() - - def _on_template_selected(self, _gallery, template_id: str) -> None: - registry = build_default_registry() - tmpl = registry.get(template_id) - if not tmpl: - return - - self.webapp.apply_template(tmpl) - # sync UI fields - self.url_row.set_text(tmpl.url) - self.name_row.set_text(tmpl.name) - self.set_icon_from_path(tmpl.icon or "webapp-generic") - self.webapp.app_icon_url = tmpl.icon or "" - - # sync category dropdown - for i, cat in enumerate(self.system_categories): - if cat == tmpl.category: - self.category_dropdown.set_selected(i) - break - - # set app mode based on profile presence - if tmpl.profile: - self.app_mode_switch.set_active(True) - - self._validate_url(tmpl.url) - - # ── Key handlers ──────────────────────────────────────────────── - - def on_key_pressed( - self, - _controller: Gtk.EventControllerKey, - keyval: int, - _keycode: int, - _state: Gdk.ModifierType, - ) -> bool: - """Handle key press events""" - if keyval == Gdk.KEY_Escape: - self.close() - self.emit("response", Gtk.ResponseType.CANCEL) - return True - return False - - def set_icon_from_path(self, icon_path: str) -> None: - - try: - if icon_path.startswith("/"): - # Try to load from file - pixbuf = GdkPixbuf.Pixbuf.new_from_file_at_size(icon_path, 48, 48) - self.icon_image.set_from_pixbuf(pixbuf) - else: - # Try to load as icon name - self.icon_image.set_from_icon_name(icon_path) - except Exception as e: - logger.error("Error loading icon %s: %s", icon_path, e) - self.icon_image.set_from_icon_name("webapp-generic") - - def set_browser_icon(self, browser_id: str) -> None: - """Set the browser icon for the given browser ID.""" - set_image_from_browser_icon(self.browser_icon, browser_id, pixel_size=24) - - def set_browser_label(self, browser_id: str) -> None: - """ - Set the browser label text - - Parameters: - browser_id (str): Browser identifier - """ - browser = self.browser_collection.get_by_id(browser_id) - if browser: - label_text = browser.get_friendly_name() - self.browser_label.set_text(label_text) - else: - self.browser_label.set_text(browser_id) - - def on_url_changed(self, entry: Adw.EntryRow) -> None: - """Handle URL entry changes with real-time validation.""" - url = entry.get_text() - self.webapp.app_url = url - self._validate_url(url) - - def _validate_url(self, url: str) -> None: - """Update URL row visual feedback based on format validity.""" - from urllib.parse import urlparse - - self.url_row.remove_css_class("error") - self.url_row.remove_css_class("success") - - if not url: - self.url_valid_icon.set_visible(False) - return - - parsed = urlparse(url) - valid = parsed.scheme in ("http", "https") and bool(parsed.netloc) - - if valid: - self.url_row.add_css_class("success") - self.url_valid_icon.set_from_icon_name("emblem-ok-symbolic") - else: - self.url_row.add_css_class("error") - self.url_valid_icon.set_from_icon_name("dialog-warning-symbolic") - self.url_valid_icon.set_visible(True) - - def on_name_changed(self, entry: Adw.EntryRow) -> None: - """Handle name entry changes""" - self.webapp.app_name = entry.get_text() - - def on_category_changed( - self, dropdown: Gtk.DropDown, _param: GObject.ParamSpec - ) -> None: - """Handle category dropdown changes""" - selected = dropdown.get_selected() - - # Debug selected index and available categories - logger.debug("Selected category index: %s", selected) - logger.debug("System categories: %s", self.system_categories) - - # Use the system categories list to get the untranslated category name - if hasattr(self, "system_categories") and 0 <= selected < len( - self.system_categories - ): - # Get the original untranslated system category name - system_category = self.system_categories[selected] - - # Make sure we're using the exact correct system category name - # Force Development to exactly match the desktop entry standard - if system_category.lower() == "development": - system_category = "Development" - - self.webapp.set_main_category(system_category) - logger.debug("Category set to: %s (system name)", system_category) - else: - # Fallback to the display name if something goes wrong - model = dropdown.get_model() - display_category = model.get_string(selected) - self.webapp.set_main_category(display_category) - logger.warning("Fallback: using display category: %s", display_category) - - def on_app_mode_switch_changed( - self, switch: Gtk.Switch, _param: GObject.ParamSpec - ) -> None: - """Toggle between browser mode and application mode.""" - is_app = switch.get_active() - self.webapp.app_mode = "app" if is_app else "browser" - self.browser_row.set_visible(not is_app) - self.profile_expander.set_visible(not is_app) - - def on_profile_switch_changed( - self, switch: Gtk.Switch, _param: GObject.ParamSpec - ) -> None: - """Handle profile switch changes""" - active = switch.get_active() - self.profile_entry_row.set_visible(active) - - if not active: - # Set to "Browser" when switch is off - self.webapp.app_profile = "Browser" - self.profile_entry_row.set_text("Browser") - else: - # Set to "Default" when switch is on and profile was "Browser" - if self.webapp.app_profile == "Browser": - self.webapp.app_profile = "Default" - self.profile_entry_row.set_text("Default") - - def on_profile_entry_changed(self, entry: Adw.EntryRow) -> None: - """Handle profile entry changes""" - if self.profile_switch.get_active(): - self.webapp.app_profile = entry.get_text() - - def on_detect_clicked(self, button: Gtk.Button) -> None: - """Handle detect button click""" - url = self.webapp.app_url - - if not url: - self.show_error_dialog(_("Please enter a URL first.")) - return - - # Show loading overlay - self.loading_overlay.set_visible(True) - - # Create a WebsiteInfoFetcher and fetch info - fetcher = WebsiteInfoFetcher() - fetcher.fetch_info(url, self.on_website_info_fetched) - - def on_website_info_fetched(self, title: str, icon_paths: list[str]) -> None: - """ - Handle fetched website information - - Parameters: - title (str): Website title - icon_paths (list): List of paths to downloaded icons - """ - # Debug output to verify we're getting a title - logger.debug("Website title detected: %s", title) - - # Update name if title was found - if title: - self.webapp.app_name = title - self.name_row.set_text(title) - - # Derive profile name from URL - profile_name = self.webapp.derive_profile_name() - if self.profile_switch.get_active(): - self.webapp.app_profile = profile_name - self.profile_entry_row.set_text(profile_name) - - if len(icon_paths) > 0: - # Create FaviconPicker if it doesn't exist - if not hasattr(self, "favicon_picker"): - self.favicon_picker = FaviconPicker() - self.favicon_picker.connect("icon-selected", self._on_icon_selected) - self.icon_selection_row.set_child(self.favicon_picker) - - self.favicon_picker.load_icons(icon_paths) - - # Show the icon selection row - self.icon_selection_row.set_visible(True) - else: - # Hide the icon selection row if no icons - self.icon_selection_row.set_visible(False) - - # Hide the loading overlay - self.loading_overlay.set_visible(False) - - # move focus to name entry → screen reader announces result - self.name_row.grab_focus() - - def _on_icon_selected(self, _picker: FaviconPicker, icon_path: str) -> None: - """Handle icon selection from FaviconPicker.""" - self.webapp.app_icon_url = icon_path - self.set_icon_from_path(icon_path) - - def on_select_icon_clicked(self, button: Gtk.Button) -> None: - """Handle select icon button click""" - icon_path = self.command_executor.select_icon() - - if icon_path: - self.webapp.app_icon_url = icon_path - self.set_icon_from_path(icon_path) - - def on_select_browser_clicked(self, button: Gtk.Button) -> None: - """Handle browser selection button click.""" - dialog = BrowserDialog( - self, # Use self (WebAppDialog) as the parent - self.webapp, - self.browser_collection, - ) - # Connect to response signal - dialog.connect("response", self.on_browser_dialog_response) - # Show the dialog - dialog.present() - - def on_browser_dialog_response(self, dialog: BrowserDialog, response: int) -> None: - """Handle browser dialog response.""" - if response == Gtk.ResponseType.OK: - browser = dialog.get_selected_browser() - if browser: - # Store original properties before update (for debugging) - original_browser = self.webapp.browser - - # Update only the local webapp browser property (don't save to disk yet) - self.webapp.browser = browser.browser_id - - # Update the UI to show the new browser immediately - self.set_browser_icon(browser.browser_id) - self.set_browser_label(browser.browser_id) - - # Handle profile settings for Firefox-based browsers - if browser.is_firefox_based(): - self.profile_expander.set_visible(False) - self.webapp.app_profile = "Default" - else: - self.profile_expander.set_visible(True) - - # Don't update the webapp file yet - this will be done in on_save_clicked - logger.debug( - "Browser selected: %s → %s (will be saved when clicking Save)", - original_browser, - self.webapp.browser, - ) - - def on_cancel_clicked(self, button: Gtk.Button) -> None: - """Handle cancel button click.""" - self.close() - self.emit("response", Gtk.ResponseType.CANCEL) - - def on_save_clicked(self, button: Gtk.Button) -> None: - """Handle save button click""" - # Validate required fields - if not self.webapp.app_name: - self.show_error_dialog(_("Please enter a name for the WebApp.")) - return - - if not self.webapp.app_url: - self.show_error_dialog(_("Please enter a URL for the WebApp.")) - return - - if not self.webapp.browser and self.webapp.app_mode != "app": - self.show_error_dialog(_("Please select a browser for the WebApp.")) - return - - # Generate a new app_file for new webapps - if self.is_new: - timestamp = int(time.time()) - random_suffix = uuid.uuid4().hex[:8] - self.webapp.app_file = f"{timestamp}-{random_suffix}" - - # show saving indicator - self.loading_overlay.set_visible(True) - - def _do_save() -> None: - if self.is_new: - ok = self.command_executor.create_webapp(self.webapp) - else: - ok = self.command_executor.update_webapp(self.webapp) - GLib.idle_add(self._on_save_finished, ok) - - threading.Thread(target=_do_save, daemon=True).start() - - def _on_save_finished(self, success: bool) -> None: - """Called on main thread after save completes.""" - self.loading_overlay.set_visible(False) - self.close() - self.emit( - "response", Gtk.ResponseType.OK if success else Gtk.ResponseType.CANCEL - ) - - def show_error_dialog(self, message: str) -> None: - """ - Show an error dialog - - Parameters: - message (str): Error message to display - """ - dialog = Adw.MessageDialog(transient_for=self, heading=_("Error"), body=message) - dialog.add_response("ok", _("OK")) - dialog.present() - - def get_webapp(self) -> WebApp: - """ - Get the edited webapp - - Returns: - WebApp: The edited WebApp object - """ - return self.webapp diff --git a/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py b/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py deleted file mode 100644 index 9d367757..00000000 --- a/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py +++ /dev/null @@ -1,175 +0,0 @@ -""" -WebAppRow module containing the row widget for displaying a webapp in a list -""" - -import os -import gi - - -gi.require_version("Gtk", "4.0") -gi.require_version("Adw", "1") -from gi.repository import Gtk, GObject, GdkPixbuf, Pango - -from webapps.utils.browser_icon_utils import set_image_from_browser_icon -from webapps.utils.translation import _ -from webapps.models.webapp_model import WebApp -from webapps.models.browser_model import BrowserCollection - -import logging - -logger = logging.getLogger(__name__) - - -class WebAppRow(Gtk.ListBoxRow): - """Row widget for displaying a webapp in a list""" - - __gsignals__ = { - "edit-clicked": (GObject.SignalFlags.RUN_FIRST, None, (GObject.TYPE_PYOBJECT,)), - "browser-clicked": ( - GObject.SignalFlags.RUN_FIRST, - None, - (GObject.TYPE_PYOBJECT,), - ), - "delete-clicked": ( - GObject.SignalFlags.RUN_FIRST, - None, - (GObject.TYPE_PYOBJECT,), - ), - } - - def __init__(self, webapp: WebApp, browser_collection: BrowserCollection) -> None: - """Initialize the WebAppRow""" - super().__init__() - self.webapp = webapp - self.browser_collection = browser_collection - self.setup_ui() - - def setup_ui(self) -> None: - """Set up the UI components.""" - box = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=12) - box.set_margin_top(8) - box.set_margin_bottom(8) - box.set_margin_start(8) - box.set_margin_end(8) - - # App icon - self.icon = Gtk.Image() - self.icon.set_pixel_size(48) - self.set_icon_from_path(self.webapp.app_icon_url) - box.append(self.icon) - - # App info - info_box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=2) - info_box.set_hexpand(True) - - # App name - name_label = Gtk.Label(label=self.webapp.app_name) - name_label.set_halign(Gtk.Align.START) - name_label.set_wrap(True) - name_label.set_wrap_mode(Gtk.WrapMode.WORD_CHAR) - name_label.set_ellipsize(Pango.EllipsizeMode.END) - name_label.set_max_width_chars(25) # Limit max width - name_label.add_css_class("heading") - info_box.append(name_label) - - # App URL - url_label = Gtk.Label(label=self.webapp.app_url) - url_label.set_halign(Gtk.Align.START) - url_label.set_wrap(True) - url_label.set_wrap_mode(Gtk.WrapMode.WORD_CHAR) - url_label.set_ellipsize(Pango.EllipsizeMode.END) - url_label.set_max_width_chars(30) # Limit max width - url_label.add_css_class("caption") - url_label.add_css_class("dim-label") - info_box.append(url_label) - box.append(info_box) - - # Actions box - make it more compact and styled as a pill - actions_box = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=0) - actions_box.set_halign(Gtk.Align.END) - actions_box.add_css_class("linked") - - # Browser button - browser = self.browser_collection.get_by_id(self.webapp.browser) - browser_button = Gtk.Button() - browser_name = browser.get_friendly_name() if browser else self.webapp.browser - browser_button.set_tooltip_text(_("Browser: {0}").format(browser_name)) - browser_button.update_property( - [Gtk.AccessibleProperty.LABEL], - [_("Browser: {0}").format(browser_name)], - ) - browser_icon = Gtk.Image() - # Pass browser ID string since that's what we need - set_image_from_browser_icon(browser_icon, self.webapp.browser, pixel_size=27) - browser_button.set_child(browser_icon) - browser_button.connect("clicked", self.on_browser_clicked) - actions_box.append(browser_button) - - # Edit button - edit_button = Gtk.Button() - edit_button.set_tooltip_text(_("Edit WebApp")) - edit_button.update_property( - [Gtk.AccessibleProperty.LABEL], - [_("Edit {0}").format(self.webapp.app_name)], - ) - edit_icon = Gtk.Image() - edit_icon.set_from_icon_name("document-edit-symbolic") - edit_icon.set_pixel_size(20) - edit_button.set_child(edit_icon) - edit_button.connect("clicked", self.on_edit_clicked) - actions_box.append(edit_button) - - # Delete button — trash icon = shape indicator; destructive-action = color indicator - delete_button = Gtk.Button() - delete_button.set_tooltip_text(_("Delete WebApp")) - delete_button.update_property( - [Gtk.AccessibleProperty.LABEL], - [_("Delete {0}").format(self.webapp.app_name)], - ) - delete_icon = Gtk.Image() - delete_icon.set_from_icon_name("user-trash-symbolic") - delete_icon.set_pixel_size(20) - delete_button.set_child(delete_icon) - delete_button.connect("clicked", self.on_delete_clicked) - delete_button.add_css_class("destructive-action") - - actions_box.append(delete_button) - - box.append(actions_box) - - self.set_child(box) - - def set_icon_from_path(self, icon_path: str) -> None: - """ - Set the icon from a file path or icon name - - Parameters: - icon_path (str): Path to the icon file or icon name - """ - if not icon_path or icon_path == os.path.expanduser("~/.local/share/icons/"): - self.icon.set_from_icon_name("webapp-generic") - return - - try: - if icon_path.startswith("/"): - # Try to load from file path - pixbuf = GdkPixbuf.Pixbuf.new_from_file_at_size(icon_path, 48, 48) - self.icon.set_from_pixbuf(pixbuf) - else: - # Try to load as icon name - self.icon.set_from_icon_name(icon_path) - except Exception as e: - logger.error("Error loading icon %s: %s", icon_path, e) - self.icon.set_from_icon_name("webapp-generic") - - def on_edit_clicked(self, button: Gtk.Button) -> None: - """Handle edit button click""" - self.emit("edit-clicked", self.webapp) - - def on_browser_clicked(self, button: Gtk.Button) -> None: - """Handle browser button click""" - self.emit("browser-clicked", self.webapp) - - def on_delete_clicked(self, button: Gtk.Button) -> None: - """Handle delete button click""" - self.emit("delete-clicked", self.webapp) diff --git a/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py b/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py deleted file mode 100644 index fb5d3da0..00000000 --- a/biglinux-webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py +++ /dev/null @@ -1,229 +0,0 @@ -""" -Welcome dialog shown on application startup -""" - -import os -import gi -import json - -gi.require_version("Gtk", "4.0") -gi.require_version("Adw", "1") -from gi.repository import Gtk, Adw, Gdk - -from webapps.utils.translation import _ - -import logging - -logger = logging.getLogger(__name__) - - -class WelcomeDialog(Adw.Window): - """Welcome dialog explaining what webapps are and their benefits""" - - def __init__(self, parent_window: Adw.ApplicationWindow) -> None: - """Initialize the welcome dialog""" - super().__init__( - title=_("Welcome to WebApps Manager"), - transient_for=parent_window, - modal=True, - destroy_with_parent=True, - width_request=640, - height_request=400, - ) - - self.parent_window = parent_window - self.config_file = os.path.expanduser( - "~/.config/biglinux-webapps/welcome_shown.json" - ) - - # Set up key event controller for ESC key - key_controller = Gtk.EventControllerKey() - key_controller.connect("key-pressed", self.on_key_pressed) - self.add_controller(key_controller) - - self.setup_ui() - - def on_key_pressed( - self, - _controller: Gtk.EventControllerKey, - keyval: int, - _keycode: int, - _state: Gdk.ModifierType, - ) -> bool: - """Handle key press events""" - # Check if ESC key was pressed - if keyval == Gdk.KEY_Escape: - self.destroy() - return True - return False - - def setup_ui(self) -> None: - """Set up the UI components.""" - main_box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL) - - # Add a headerbar for window movement with custom styling - headerbar = Adw.HeaderBar() - headerbar.set_show_title(False) # No title for cleaner look - headerbar.add_css_class("flat") # Make it less prominent - - # Apply custom CSS to reduce header padding (widget-scoped, not global) - css_provider = Gtk.CssProvider() - css_provider.load_from_data(b""" - headerbar { - min-height: 38px; - padding: 2px 6px; - } - """) - headerbar.get_style_context().add_provider( - css_provider, - Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION, - ) - - main_box.append(headerbar) - - # Content container - content_box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=12) - content_box.set_margin_top(12) # Reduced from 24 to match browser_dialog style - content_box.set_margin_bottom(24) - content_box.set_margin_start(24) - content_box.set_margin_end(24) - - # Header with icon - header_box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=12) - header_box.set_halign(Gtk.Align.CENTER) - - app_icon = Gtk.Image.new_from_icon_name("big-webapps") - app_icon.set_pixel_size(64) - header_box.append(app_icon) - - title = Gtk.Label() - title.set_markup( - "" - + _("Welcome to WebApps Manager") - + "" - ) - header_box.append(title) - - content_box.append(header_box) - - # Explanation text - explanation = Gtk.Label() - explanation.set_wrap(True) - explanation.set_max_width_chars(60) - explanation.set_margin_top(12) - explanation.set_margin_bottom(12) - explanation.set_markup( - _( - "What are WebApps?\n\n" - "WebApps are web applications that run in a dedicated browser window, " - "providing a more app-like experience for your favorite websites.\n\n" - "Benefits of using WebApps:\n\n" - "• Focus: Work without the distractions of other browser tabs\n" - "• Desktop Integration: Quick access from your application menu\n" - "• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" - ) - ) - explanation.set_halign(Gtk.Align.START) - content_box.append(explanation) - - # Separator before switch - separator = Gtk.Separator(orientation=Gtk.Orientation.HORIZONTAL) - separator.set_margin_top(12) - content_box.append(separator) - - # Don't show again switch - switch_box = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=12) - switch_box.set_margin_top(12) - - self.show_switch = Gtk.Switch() - self.show_switch.set_valign(Gtk.Align.CENTER) - - switch_label = Gtk.Label(label=_("Don't show this again")) - switch_label.set_xalign(0) - switch_label.set_hexpand(True) - - switch_box.append(switch_label) - switch_box.append(self.show_switch) - - # switch ON = "don't show" = suppress; inverted from stored preference - self.show_switch.set_active(not self.get_show_preference()) - - content_box.append(switch_box) - - # Close button - button_box = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL) - button_box.set_halign(Gtk.Align.CENTER) - button_box.set_margin_top(24) - - close_button = Gtk.Button(label=_("Let's Start")) - close_button.add_css_class("suggested-action") - close_button.connect("clicked", self.on_close) - - button_box.append(close_button) - content_box.append(button_box) - - # Add content box to main box - main_box.append(content_box) - - # Set the content - self.set_content(main_box) - - def on_close(self, button: Gtk.Button) -> None: - """Handle close button click""" - # switch ON = "don't show" → save show=False - self.save_preference(show=not self.show_switch.get_active()) - self.destroy() - - def get_show_preference(self) -> bool: - """Get the current preference for showing the dialog at startup""" - # If the file doesn't exist, default is to show the dialog - if not os.path.exists(self.config_file): - return True - - # Read the file and check the preference - try: - with open(self.config_file, "r") as f: - preferences = json.load(f) - # Return whether we should show the dialog (direct from saved setting) - return preferences.get("show_welcome", True) - except Exception: - # If there's an error reading the file, default to showing the dialog - return True - - def save_preference(self, show: bool = True) -> None: - """ - Save the preference for showing the welcome dialog - - Parameters: - show (bool): If True, show the dialog; if False, don't show it - """ - # Make sure the directory exists - os.makedirs(os.path.dirname(self.config_file), exist_ok=True) - - # Save preference directly - preferences = {"show_welcome": show} - try: - with open(self.config_file, "w") as f: - json.dump(preferences, f) - except Exception as e: - logger.error("Error saving welcome dialog preference: %s", e) - - @staticmethod - def should_show_welcome() -> bool: - """Check if the welcome dialog should be shown""" - config_file = os.path.expanduser( - "~/.config/biglinux-webapps/welcome_shown.json" - ) - - # If the file doesn't exist, we should show the dialog - if not os.path.exists(config_file): - return True - - # Read the file and check the preference - try: - with open(config_file, "r") as f: - preferences = json.load(f) - return preferences.get("show_welcome", True) - except Exception: - # If there's any error reading the file, show the dialog - return True diff --git a/biglinux-webapps/usr/share/biglinux/webapps/webapps/utils/__init__.py b/biglinux-webapps/usr/share/biglinux/webapps/webapps/utils/__init__.py deleted file mode 100644 index 229d6f41..00000000 --- a/biglinux-webapps/usr/share/biglinux/webapps/webapps/utils/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -""" -WebApps Utils package initialization -""" diff --git a/biglinux-webapps/usr/share/biglinux/webapps/webapps/utils/browser_icon_utils.py b/biglinux-webapps/usr/share/biglinux/webapps/webapps/utils/browser_icon_utils.py deleted file mode 100644 index b70a7173..00000000 --- a/biglinux-webapps/usr/share/biglinux/webapps/webapps/utils/browser_icon_utils.py +++ /dev/null @@ -1,135 +0,0 @@ -""" -Utility functions for handling browser icons -""" - -from __future__ import annotations - -import logging -import os -from pathlib import Path - -from gi.repository import Gdk, GLib, Gtk - -logger = logging.getLogger(__name__) - -# absolute path → icons dir relative to package root -BROWSER_ICONS_PATH = str(Path(__file__).resolve().parent.parent.parent / "icons") - -_ICON_SIZES = (64, 48, 128, 32, 256, 512, 24, 22, 16) -_LOCAL_ICON_DIR = os.path.expanduser("~/.local/share/icons/") -_LOCAL_ICON_EXTS = (".svg", ".png", ".webp", ".xpm", ".ico") - - -def get_browser_icon_name(browser_id: str) -> str: - """ - Get the icon name for a browser - - Parameters: - browser_id (str): Browser identifier - - Returns: - str: Icon filename for the browser - """ - # Handle browser objects that might have been passed - if hasattr(browser_id, "browser_id"): - browser_id = browser_id.browser_id - - # Simply append .svg to the browser_id to get the icon filename - return f"{browser_id}.svg" if browser_id else "default-webapps.png" - - -def set_image_from_browser_icon( - image: Gtk.Image, browser_id: str, pixel_size: int = 48 -) -> None: - """ - Set a Gtk.Image from a browser icon - - Parameters: - image (Gtk.Image): Image widget to set - browser_id (str): Browser identifier or Browser object - pixel_size (int): Size of the icon in pixels - """ - image.set_pixel_size(pixel_size) - - # Handle browser objects that might have been passed - if hasattr(browser_id, "browser_id"): - browser_id = browser_id.browser_id - - # Get the icon filename - icon_filename = get_browser_icon_name(browser_id) - - # Get icon path using the correct path - icon_path = os.path.join(BROWSER_ICONS_PATH, icon_filename) - - # Try to load icon - if os.path.exists(icon_path): - try: - image.set_from_file(icon_path) - except GLib.Error: - image.set_from_icon_name("browser-symbolic") - else: - image.set_from_icon_name("browser-symbolic") - - -def resolve_app_icon_path(icon_name: str, icon_theme: Gtk.IconTheme) -> str: - """Resolve webapp icon name → filesystem path. - - Checks local user icons, then falls back to GTK icon theme - with progressive name shortening (e.g. ``foo-bar`` → ``foo``). - - Returns: - Resolved path string, or ``"Icon not found"`` on failure. - """ - if not icon_name: - return "Icon not found" - - if icon_name.startswith("/"): - return icon_name - - # user-local icons (big-webapps copies custom icons here) - local_path = _LOCAL_ICON_DIR + icon_name - if os.path.exists(local_path): - return local_path - # big-webapps strips extension on create → try common extensions - for ext in _LOCAL_ICON_EXTS: - path_with_ext = local_path + ext - if os.path.exists(path_with_ext): - return path_with_ext - - # GTK4 icon theme lookup with progressive name shortening - parts = icon_name.split("-") - for end in range(len(parts), 0, -1): - candidate = "-".join(parts[:end]) - for size in _ICON_SIZES: - paintable = icon_theme.lookup_icon( - candidate, - None, - size, - 1, - Gtk.TextDirection.NONE, - Gtk.IconLookupFlags(0), - ) - if paintable: - gfile = paintable.get_file() - if gfile: - path = gfile.get_path() - if path: - return path - - return "Icon not found" - - -def enrich_webapps_with_icons(apps_data: list[dict]) -> list[dict]: - """Add ``app_icon_url`` to each webapp dict using the running GTK display. - - Must be called after ``Gtk.init()`` / from a running GTK application. - """ - display = Gdk.Display.get_default() - if display is None: - logger.warning("No display available — cannot resolve icon paths") - return apps_data - icon_theme = Gtk.IconTheme.get_for_display(display) - for app in apps_data: - icon_name = app.get("app_icon", "") - app["app_icon_url"] = resolve_app_icon_path(icon_name, icon_theme) - return apps_data diff --git a/biglinux-webapps/usr/share/biglinux/webapps/webapps/utils/browser_registry.py b/biglinux-webapps/usr/share/biglinux/webapps/webapps/utils/browser_registry.py deleted file mode 100644 index 07b68efc..00000000 --- a/biglinux-webapps/usr/share/biglinux/webapps/webapps/utils/browser_registry.py +++ /dev/null @@ -1,73 +0,0 @@ -""" -Central browser registry — single source of truth for browser ID mappings. - -Shell scripts (check_browser.sh, big-webapps-exec) maintain their own -layer-specific data (file paths, flatpak exec commands) since they need -different fields and cannot import Python modules. -""" - -# browser ID → user-facing display name -BROWSER_DISPLAY_NAMES: dict[str, str] = { - "brave": "Brave", - "brave-beta": "Brave Beta", - "brave-nightly": "Brave Nightly", - "chromium": "Chromium", - "firefox": "Firefox", - "google-chrome-beta": "Chrome Beta", - "google-chrome-stable": "Chrome", - "google-chrome-unstable": "Chrome Unstable", - "librewolf": "Librewolf", - "microsoft-edge-stable": "Edge", - "vivaldi-beta": "Vivaldi Beta", - "vivaldi-snapshot": "Vivaldi Snapshot", - "vivaldi-stable": "Vivaldi", - "flatpak-brave": "Brave (Flatpak)", - "flatpak-chrome": "Chrome (Flatpak)", - "flatpak-chrome-unstable": "Chrome Unstable (Flatpak)", - "flatpak-chromium": "Chromium (Flatpak)", - "flatpak-edge": "Edge (Flatpak)", - "flatpak-firefox": "Firefox (Flatpak)", - "flatpak-librewolf": "Librewolf (Flatpak)", - "flatpak-ungoogled-chromium": "Chromium (Flatpak)", -} - -# desktop file pattern (regex) → browser ID, ordered most-specific first -DESKTOP_PATTERN_MAP: list[tuple[str, str]] = [ - ("brave-beta", "brave-beta"), - ("brave-nightly", "brave-nightly"), - ("brave", "brave"), - ("firefox", "firefox"), - ("chromium", "chromium"), - ("chrome.*beta", "google-chrome-beta"), - ("chrome.*unstable", "google-chrome-unstable"), - ("chrome", "google-chrome-stable"), - ("edge", "microsoft-edge-stable"), - ("vivaldi.*beta", "vivaldi-beta"), - ("vivaldi.*snapshot", "vivaldi-snapshot"), - ("vivaldi", "vivaldi-stable"), - ("librewolf", "librewolf"), - ("org.mozilla.firefox", "flatpak-firefox"), - ("org.chromium.chromium", "flatpak-chromium"), - ("com.google.chromedev", "flatpak-chrome-unstable"), - ("com.google.chrome", "flatpak-chrome"), - ("com.brave.browser", "flatpak-brave"), - ("com.microsoft.edge", "flatpak-edge"), - ("com.github.eloston.ungoogledchromium", "flatpak-ungoogled-chromium"), - ("io.gitlab.librewolf", "flatpak-librewolf"), -] - - -def get_display_name(browser_id: str) -> str: - """Return user-friendly name for a browser ID, fallback to raw ID.""" - return BROWSER_DISPLAY_NAMES.get(browser_id, browser_id) - - -def match_desktop_to_browser(desktop_name: str) -> str | None: - """Match a desktop file name to a browser ID using pattern map.""" - import re - - lower = desktop_name.lower() - for pattern, browser_id in DESKTOP_PATTERN_MAP: - if re.search(pattern, lower): - return browser_id - return None diff --git a/biglinux-webapps/usr/share/biglinux/webapps/webapps/utils/command_executor.py b/biglinux-webapps/usr/share/biglinux/webapps/webapps/utils/command_executor.py deleted file mode 100644 index 0e5b9f70..00000000 --- a/biglinux-webapps/usr/share/biglinux/webapps/webapps/utils/command_executor.py +++ /dev/null @@ -1,239 +0,0 @@ -""" -Command executor module for running shell commands -""" - -import logging -import json -import re -import shutil -import subprocess -from pathlib import Path - -from webapps.utils.browser_registry import match_desktop_to_browser - -logger = logging.getLogger(__name__) - - -class CommandExecutor: - """Class for executing shell commands and parsing their output""" - - def __init__(self): - """Initialize the CommandExecutor""" - # scripts (get_json.sh, check_browser.sh) live one level above the Python package - self.base_dir = Path(__file__).resolve().parent.parent.parent - - def execute_command( - self, - argv: list[str], - input_data: str | None = None, - extra_env: dict[str, str] | None = None, - ) -> str: - """ - Execute a command as an argument list (no shell). - - Parameters: - argv: Command and arguments as a list - input_data: Optional stdin data - extra_env: Additional environment variables merged with os.environ - - Returns: - Command stdout - """ - import os - - env = None - if extra_env: - env = {**os.environ, **extra_env} - - try: - result = subprocess.run( - argv, - cwd=self.base_dir, - capture_output=True, - text=True, - input=input_data, - env=env, - ) - if result.returncode != 0: - logger.error("Command failed: %s\n%s", argv, result.stderr) - return "" - return result.stdout - except Exception as e: - logger.error("Error executing command %s: %s", argv, e) - return "" - - def execute_json_command( - self, argv: list[str], input_data: str | None = None - ) -> list | dict: - """ - Execute a command and parse its output as JSON. - - Parameters: - argv: Command and arguments as a list - input_data: Optional stdin data - - Returns: - Parsed JSON data - """ - output = self.execute_command(argv, input_data) - - if not output: - return [] - - try: - return json.loads(output) - except json.JSONDecodeError as e: - logger.error("Error parsing JSON: %s\nOutput: %s", e, output) - return [] - - def create_webapp(self, webapp) -> bool: - """ - Create a new webapp. - - Parameters: - webapp: WebApp object to create - - Returns: - True if successful - """ - browser = "__viewer__" if webapp.app_mode == "app" else webapp.browser - argv = [ - "big-webapps", - "create", - browser, - webapp.app_name, - webapp.app_url, - webapp.app_icon_url, - webapp.app_categories, - webapp.app_profile, - ] - - # pass template metadata as env vars (big-webapps reads them) - extra_env: dict[str, str] = {} - if hasattr(webapp, "mime_types") and webapp.mime_types: - extra_env["WEBAPP_MIME_TYPES"] = webapp.mime_types - if hasattr(webapp, "comment") and webapp.comment: - extra_env["WEBAPP_COMMENT"] = webapp.comment - if hasattr(webapp, "generic_name") and webapp.generic_name: - extra_env["WEBAPP_GENERIC_NAME"] = webapp.generic_name - if hasattr(webapp, "keywords") and webapp.keywords: - extra_env["WEBAPP_KEYWORDS"] = webapp.keywords - if hasattr(webapp, "template_id") and webapp.template_id: - extra_env["WEBAPP_TEMPLATE_ID"] = webapp.template_id - if hasattr(webapp, "url_schemes") and webapp.url_schemes: - extra_env["WEBAPP_URL_SCHEMES"] = webapp.url_schemes - - logger.debug("create_webapp argv: %s", argv) - logger.debug( - "create_webapp icon_url=%r icon=%r", webapp.app_icon_url, webapp.app_icon - ) - output = self.execute_command(argv, extra_env=extra_env or None) - return output != "" - - def update_webapp(self, webapp) -> bool: - """ - Update an existing webapp (remove then create). - - Parameters: - webapp: WebApp object to update - - Returns: - True if successful - """ - self.execute_command(["big-webapps", "remove", webapp.app_file]) - return self.create_webapp(webapp) - - def remove_webapp(self, webapp, delete_folder: bool = False) -> bool: - """ - Remove a webapp. - - Parameters: - webapp: WebApp object to remove - delete_folder: Whether to delete the configuration folder - - Returns: - True if successful - """ - if delete_folder: - argv = [ - "big-webapps", - "remove-with-folder", - webapp.app_file, - webapp.browser, - webapp.app_profile, - ] - else: - argv = [ - "big-webapps", - "remove", - webapp.app_file, - webapp.browser, - webapp.app_profile, - ] - output = self.execute_command(argv) - # cleanup viewer config/data if this was an app-mode webapp - if webapp.app_mode == "app": - self._cleanup_viewer_data(webapp.app_url) - return output != "" - - def _cleanup_viewer_data(self, url: str) -> None: - """Remove viewer config and persistent data for a given URL.""" - app_id = re.sub(r"https?://", "", url) - app_id = app_id.replace("/", "_") - app_id = re.sub(r"[^a-zA-Z0-9_-]", "", app_id) - if not app_id: - return - home = Path.home() - config_json = home / ".config" / "biglinux-webapps" / f"{app_id}.json" - data_dir = home / ".local" / "share" / "biglinux-webapps" / app_id - if config_json.exists(): - config_json.unlink() - logger.debug("Removed viewer config: %s", config_json) - if data_dir.exists(): - shutil.rmtree(data_dir, ignore_errors=True) - logger.debug("Removed viewer data: %s", data_dir) - - def select_icon(self) -> str: - """ - Open the icon selector dialog. - - Returns: - Path to the selected icon - """ - result = self.execute_command(["./select_icon.sh"]).strip() - return result - - def get_system_default_browser(self) -> str | None: - """ - Detect the system's default browser. - - Returns: - Browser ID or None if detection failed - """ - try: - # xdg-settings first - result = self.execute_command([ - "xdg-settings", - "get", - "default-web-browser", - ]) - if result.strip(): - match = match_desktop_to_browser(result.strip()) - if match: - return match - - # xdg-mime fallback - result = self.execute_command([ - "xdg-mime", - "query", - "default", - "x-scheme-handler/http", - ]) - if result.strip(): - match = match_desktop_to_browser(result.strip()) - if match: - return match - except Exception as e: - logger.error("Error detecting system default browser: %s", e) - - return None diff --git a/biglinux-webapps/usr/share/biglinux/webapps/webapps/utils/mpris.py b/biglinux-webapps/usr/share/biglinux/webapps/webapps/utils/mpris.py deleted file mode 100644 index f90d0164..00000000 --- a/biglinux-webapps/usr/share/biglinux/webapps/webapps/utils/mpris.py +++ /dev/null @@ -1,239 +0,0 @@ -"""Optional MPRIS2 D-Bus integration for media webapps. - -Bridges web Media Session API → MPRIS2 D-Bus interface so -desktop media keys (play/pause/next/prev) work with webapps -like Spotify, YouTube Music, Tidal, etc. - -Requires: dbus-python (python3-dbus). Degrades gracefully if missing. -""" - -import threading - -# flag for conditional import -MPRIS_AVAILABLE = False - -try: - import dbus - import dbus.service - import dbus.mainloop.glib - from gi.repository import GLib - - MPRIS_AVAILABLE = True -except ImportError: - pass - - -# JS injected into web pages to poll Media Session state -MEDIA_SESSION_JS = """ -(function() { - if (window._bigwebapp_mpris) return; - window._bigwebapp_mpris = true; - - var channel = null; - if (typeof QWebChannel !== 'undefined') { - new QWebChannel(qt.webChannelTransport, function(ch) { - channel = ch.objects.mpris; - }); - } - - function send(data) { - if (channel && channel.updateState) { - channel.updateState(JSON.stringify(data)); - } - } - - // poll navigator.mediaSession - setInterval(function() { - var ms = navigator.mediaSession; - if (!ms) return; - var meta = ms.metadata; - send({ - state: ms.playbackState || 'none', - title: meta ? meta.title : '', - artist: meta ? meta.artist : '', - album: meta ? meta.album : '', - artwork: (meta && meta.artwork && meta.artwork.length) - ? meta.artwork[meta.artwork.length - 1].src : '' - }); - }, 1500); -})(); -""" - -if MPRIS_AVAILABLE: - - MPRIS_IFACE = "org.mpris.MediaPlayer2" - PLAYER_IFACE = "org.mpris.MediaPlayer2.Player" - - class MprisService(dbus.service.Object): - """Minimal MPRIS2 D-Bus service for a webapp.""" - - def __init__(self, app_id: str, app_name: str): - dbus.mainloop.glib.DBusGMainLoop(set_as_default=True) - bus = dbus.SessionBus() - bus_name = dbus.service.BusName( - f"org.mpris.MediaPlayer2.bigwebapp.{app_id}", bus - ) - super().__init__(bus_name, "/org/mpris/MediaPlayer2") - - self.app_name = app_name - self.app_id = app_id - self._state = "Stopped" - self._metadata: dict = {} - self._play_cb = None - self._pause_cb = None - self._next_cb = None - self._prev_cb = None - - def set_callbacks(self, play=None, pause=None, next_=None, prev=None): - self._play_cb = play - self._pause_cb = pause - self._next_cb = next_ - self._prev_cb = prev - - def update_from_web(self, state_json: str): - """Called from QWebChannel with JSON media state.""" - import json - - try: - data = json.loads(state_json) - except (json.JSONDecodeError, TypeError): - return - - web_state = data.get("state", "none") - new_state = { - "playing": "Playing", - "paused": "Paused", - }.get(web_state, "Stopped") - - changed = new_state != self._state - self._state = new_state - - meta = {} - title = data.get("title", "") - if title: - meta["xesam:title"] = title - artist = data.get("artist", "") - if artist: - meta["xesam:artist"] = dbus.Array([artist], signature="s") - album = data.get("album", "") - if album: - meta["xesam:album"] = album - artwork = data.get("artwork", "") - if artwork: - meta["mpris:artUrl"] = artwork - - if meta != self._metadata or changed: - self._metadata = meta - self.PropertiesChanged( - PLAYER_IFACE, - { - "PlaybackStatus": self._state, - "Metadata": dbus.Dictionary(self._metadata, signature="sv"), - }, - [], - ) - - # --- org.mpris.MediaPlayer2 --- - - @dbus.service.method(MPRIS_IFACE) - def Raise(self): - pass - - @dbus.service.method(MPRIS_IFACE) - def Quit(self): - pass - - # --- org.mpris.MediaPlayer2.Player --- - - @dbus.service.method(PLAYER_IFACE) - def Play(self): - if self._play_cb: - self._play_cb() - - @dbus.service.method(PLAYER_IFACE) - def Pause(self): - if self._pause_cb: - self._pause_cb() - - @dbus.service.method(PLAYER_IFACE) - def PlayPause(self): - if self._state == "Playing": - self.Pause() - else: - self.Play() - - @dbus.service.method(PLAYER_IFACE) - def Next(self): - if self._next_cb: - self._next_cb() - - @dbus.service.method(PLAYER_IFACE) - def Previous(self): - if self._prev_cb: - self._prev_cb() - - @dbus.service.method(PLAYER_IFACE) - def Stop(self): - self.Pause() - - # --- Properties --- - - @dbus.service.method( - dbus.PROPERTIES_IFACE, in_signature="ss", out_signature="v" - ) - def Get(self, interface, prop): - return self.GetAll(interface).get(prop) - - @dbus.service.method( - dbus.PROPERTIES_IFACE, in_signature="s", out_signature="a{sv}" - ) - def GetAll(self, interface): - if interface == MPRIS_IFACE: - return { - "CanQuit": False, - "CanRaise": False, - "HasTrackList": False, - "Identity": self.app_name, - "DesktopEntry": f"br.com.biglinux.webapp.{self.app_id}", - "SupportedUriSchemes": dbus.Array([], signature="s"), - "SupportedMimeTypes": dbus.Array([], signature="s"), - } - if interface == PLAYER_IFACE: - return { - "PlaybackStatus": self._state, - "Metadata": dbus.Dictionary(self._metadata, signature="sv"), - "CanGoNext": True, - "CanGoPrevious": True, - "CanPlay": True, - "CanPause": True, - "CanControl": True, - } - return {} - - @dbus.service.signal(dbus.PROPERTIES_IFACE, signature="sa{sv}as") - def PropertiesChanged(self, interface, changed, invalidated): - pass - - def start_glib_loop(): - """Run GLib main loop in background thread for D-Bus signals.""" - loop = GLib.MainLoop() - t = threading.Thread(target=loop.run, daemon=True) - t.start() - return loop - -else: - # stubs when dbus not available - class MprisService: - def __init__(self, *a, **kw): - pass - - def set_callbacks(self, **kw): - pass - - def update_from_web(self, s): - pass - - MEDIA_SESSION_JS = "" - - def start_glib_loop(): - return None diff --git a/biglinux-webapps/usr/share/biglinux/webapps/webapps/utils/translation.py b/biglinux-webapps/usr/share/biglinux/webapps/webapps/utils/translation.py deleted file mode 100644 index 051e4a0a..00000000 --- a/biglinux-webapps/usr/share/biglinux/webapps/webapps/utils/translation.py +++ /dev/null @@ -1,8 +0,0 @@ -""" -Translation utility module to ensure consistent translations throughout the application -""" - -import gettext - -gettext.textdomain("biglinux-webapps") -_ = gettext.gettext diff --git a/biglinux-webapps/usr/share/biglinux/webapps/webapps/utils/url_utils.py b/biglinux-webapps/usr/share/biglinux/webapps/webapps/utils/url_utils.py deleted file mode 100644 index 71077598..00000000 --- a/biglinux-webapps/usr/share/biglinux/webapps/webapps/utils/url_utils.py +++ /dev/null @@ -1,246 +0,0 @@ -""" -URL utilities for fetching website information -""" - -import gi -import requests -import threading -import re -import tempfile -import os -import io -from urllib.parse import urlparse, urljoin -from html.parser import HTMLParser -from PIL import Image # Add Pillow import -from collections.abc import Callable - -gi.require_version("Gtk", "4.0") -from gi.repository import GLib - -import logging - -logger = logging.getLogger(__name__) - - -class WebsiteMetadataParser(HTMLParser): - """Parser for extracting title and icons from HTML""" - - def __init__(self) -> None: - super().__init__() - self.title: str | None = None - self.icons: list[str] = [] - self.og_title: str | None = None - self.twitter_title: str | None = None - self.og_image: str | None = None - self.twitter_image: str | None = None - self._in_title: bool = False - - def handle_starttag(self, tag: str, attrs: list[tuple[str, str | None]]) -> None: - attrs_dict = dict(attrs) - - if tag == "title": - self._in_title = True - - elif tag == "meta": - # Handle Open Graph and Twitter metadata - property_attr = attrs_dict.get("property", "") - name_attr = attrs_dict.get("name", "") - content = attrs_dict.get("content") - - if content: - if property_attr == "og:title": - self.og_title = content - elif name_attr == "twitter:title": - self.twitter_title = content - elif property_attr == "og:image": - self.og_image = content - elif name_attr == "twitter:image": - self.twitter_image = content - - elif tag == "link": - rel = attrs_dict.get("rel", "").lower() - href = attrs_dict.get("href") - - if href: - # Match common icon rel types - if any( - x in rel - for x in ["icon", "shortcut icon", "apple-touch-icon", "mask-icon"] - ): - self.icons.append(href) - - def handle_endtag(self, tag: str) -> None: - if tag == "title": - self._in_title = False - - def handle_data(self, data: str) -> None: - if self._in_title: - if self.title is None: - self.title = data - else: - self.title += data - - def get_best_title(self) -> str | None: - if self.title: - return self.title.strip() - if self.og_title: - return self.og_title.strip() - if self.twitter_title: - return self.twitter_title.strip() - return None - - def get_all_icons(self) -> list[str]: - all_icons = self.icons.copy() - if self.og_image: - all_icons.append(self.og_image) - if self.twitter_image: - all_icons.append(self.twitter_image) - return all_icons - - -class WebsiteInfoFetcher: - """Class for fetching website information like title and favicons""" - - def __init__(self) -> None: - """Initialize the fetcher""" - self.user_agent = "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36" - - def fetch_info(self, url: str, callback: Callable[[str, list[str]], None]) -> None: - """ - Fetch website information (title and icons) in a background thread - - Parameters: - url (str): Website URL - callback (callable): Callback function to call with the results - """ - if not url.startswith(("http://", "https://")): - url = "https://" + url - - thread = threading.Thread(target=self._fetch_info_thread, args=(url, callback)) - thread.daemon = True - thread.start() - - def _resolve_title(self, parser: WebsiteMetadataParser, url: str) -> str: - """Pick best title from parsed metadata, fallback to domain.""" - title = parser.get_best_title() - if title: - return re.sub(r"\s+", " ", title) - domain = urlparse(url).netloc.replace("www.", "") - return domain.capitalize() - - def _collect_icon_urls( - self, raw_icons: list[str], url: str, session: requests.Session - ) -> list[str]: - """Normalize raw icon hrefs → absolute URLs, append favicon.ico if found.""" - icons: list[str] = [] - for href in raw_icons: - if href: - if not href.startswith(("http://", "https://")): - href = urljoin(url, href) - if href not in icons: - icons.append(href) - - parsed = urlparse(url) - favicon_url = f"{parsed.scheme}://{parsed.netloc}/favicon.ico" - if favicon_url not in icons: - try: - head = session.head(favicon_url, timeout=5) - if head.status_code == 200: - icons.insert(0, favicon_url) - except Exception: - pass - return icons - - def _fetch_info_thread( - self, url: str, callback: Callable[[str, list[str]], None] - ) -> None: - """ - Fetch website information in a background thread - - Parameters: - url (str): Website URL - callback (callable): Callback function to call with the results - """ - try: - session = requests.Session() - session.headers.update({"User-Agent": self.user_agent}) - - response = session.get(url, timeout=10) - response.raise_for_status() - - parser = WebsiteMetadataParser() - parser.feed(response.text) - - title = self._resolve_title(parser, url) - icons = self._collect_icon_urls(parser.get_all_icons(), url, session) - - icon_paths = [] - for icon_url in icons: - try: - icon_path = self._download_icon(icon_url, session) - if icon_path: - icon_paths.append(icon_path) - except Exception as e: - logger.error("Error downloading icon %s: %s", icon_url, e) - - GLib.idle_add(callback, title, icon_paths) - - except Exception as e: - logger.error("Error fetching website info: %s", e) - GLib.idle_add(callback, "", []) - - def _download_icon(self, icon_url: str, session: requests.Session) -> str | None: - """ - Download an icon to a temporary file and convert non-PNG/SVG to PNG - - Parameters: - icon_url (str): Icon URL - session (requests.Session): Requests session - - Returns: - str: Path to the downloaded icon file, or None if download failed - """ - try: - response = session.get(icon_url, timeout=10) - response.raise_for_status() - - # Check content type to determine if conversion is needed - content_type = response.headers.get("Content-Type", "").lower() - - # If it's already PNG or SVG, save directly - if "image/png" in content_type or "image/svg+xml" in content_type: - fd, path = tempfile.mkstemp( - prefix="webapp_icon_", - suffix=".png" if "image/png" in content_type else ".svg", - ) - with os.fdopen(fd, "wb") as f: - f.write(response.content) - return path - - # For other formats, convert to PNG for better compatibility - try: - # Create a temporary file with the original content - img = Image.open(io.BytesIO(response.content)) - - # Convert to RGB if needed (handles RGBA, CMYK, etc.) - if img.mode != "RGB": - img = img.convert("RGB") - - # Create a temporary file for the PNG - fd, path = tempfile.mkstemp(prefix="webapp_icon_", suffix=".png") - - # Save as PNG - img.save(os.fdopen(fd, "wb"), format="PNG") - return path - - except Exception as e: - logger.error("Error converting image: %s", e) - # Fallback: save original format if conversion fails - fd, path = tempfile.mkstemp(prefix="webapp_icon_", suffix=".png") - with os.fdopen(fd, "wb") as f: - f.write(response.content) - return path - - except Exception as e: - logger.error("Error downloading icon %s: %s", icon_url, e) - return None diff --git a/biglinux-webapps/usr/share/biglinux/webapps/webapps/utils/webapp_service.py b/biglinux-webapps/usr/share/biglinux/webapps/webapps/utils/webapp_service.py deleted file mode 100644 index 988e2551..00000000 --- a/biglinux-webapps/usr/share/biglinux/webapps/webapps/utils/webapp_service.py +++ /dev/null @@ -1,261 +0,0 @@ -""" -Business logic layer between UI and shell commands. -All webapp CRUD, export/import, and data loading lives here. -""" - -import json -import logging -import os -import shutil -import tempfile -import time -import zipfile - -from webapps.models.webapp_model import WebApp, WebAppCollection -from webapps.models.browser_model import BrowserCollection -from webapps.utils.browser_icon_utils import enrich_webapps_with_icons -from webapps.utils.command_executor import CommandExecutor - -logger = logging.getLogger(__name__) - - -class WebAppService: - """Centralized business logic for webapp operations.""" - - def __init__(self) -> None: - self.command_executor = CommandExecutor() - self.webapp_collection = WebAppCollection() - self.browser_collection = BrowserCollection() - - # ── data loading ───────────────────────────────────────────── - - def load_data(self) -> None: - """Reload webapp + browser data from system.""" - webapps_data = self.command_executor.execute_json_command([ - "big-webapps", - "json", - ]) - enrich_webapps_with_icons(webapps_data) - self.webapp_collection.load_from_json(webapps_data) - - browsers_data = self.command_executor.execute_json_command([ - "./check_browser.sh", - "--list-json", - ]) - self.browser_collection.load_from_json(browsers_data) - - default_browser = self.command_executor.execute_command([ - "./check_browser.sh", - "--default", - ]).strip() - self.browser_collection.set_default(default_browser) - - # ── CRUD ───────────────────────────────────────────────────── - - def create_webapp(self, webapp: WebApp) -> bool: - """Create webapp on disk and reload collection.""" - ok = self.command_executor.create_webapp(webapp) - if ok: - self.load_data() - return ok - - def update_webapp(self, webapp: WebApp) -> bool: - """Update webapp on disk and reload collection.""" - ok = self.command_executor.update_webapp(webapp) - if ok: - self.load_data() - return ok - - def delete_webapp(self, webapp: WebApp, delete_folder: bool = False) -> bool: - """Delete a single webapp and remove from collection.""" - ok = self.command_executor.remove_webapp(webapp, delete_folder) - if ok: - self.webapp_collection.remove(webapp) - return ok - - def delete_all_webapps(self) -> bool: - """Delete every webapp. Returns True if all succeeded.""" - webapps = self.webapp_collection.get_all() - ok = all( - self.command_executor.remove_webapp(wa, False) for wa in webapps - ) - if ok: - self.load_data() - return ok - - # ── lookup ─────────────────────────────────────────────────── - - def find_webapp( - self, url: str, name: str, app_file: str = "" - ) -> WebApp | None: - """Find webapp by app_file (stable ID), then URL+name, fallback URL only.""" - if app_file: - for wa in self.webapp_collection.get_all(): - if wa.app_file == app_file: - return wa - for wa in self.webapp_collection.get_all(): - if wa.app_url == url and wa.app_name == name: - return wa - for wa in self.webapp_collection.get_all(): - if wa.app_url == url: - return wa - return None - - def get_system_default_browser(self) -> str | None: - """Detect system default browser ID.""" - return self.command_executor.get_system_default_browser() - - # ── export ─────────────────────────────────────────────────── - - def export_webapps(self, file_path: str) -> tuple[bool, str]: - """Export all webapps to a ZIP file. - - Returns: - (success, message) - """ - webapps = self.webapp_collection.get_all() - if not webapps: - return False, "no_webapps" - - try: - with tempfile.TemporaryDirectory() as temp_dir: - icons_dir = os.path.join(temp_dir, "icons") - themes_dir = os.path.join(temp_dir, "themes") - os.makedirs(icons_dir, exist_ok=True) - os.makedirs(themes_dir, exist_ok=True) - - webapps_data = [ - self._serialize_webapp_for_export(wa, icons_dir, themes_dir) - for wa in webapps - ] - - with open(os.path.join(temp_dir, "webapps.json"), "w") as f: - json.dump(webapps_data, f, indent=2) - - with zipfile.ZipFile(file_path, "w", zipfile.ZIP_DEFLATED) as zipf: - for root, _dirs, files in os.walk(temp_dir): - for fname in files: - full = os.path.join(root, fname) - zipf.write(full, os.path.relpath(full, temp_dir)) - - return True, "ok" - except Exception as e: - logger.error("Export failed: %s", e) - return False, str(e) - - def _serialize_webapp_for_export( - self, webapp: WebApp, icons_dir: str, themes_dir: str - ) -> dict: - """Serialize one webapp for ZIP export, copying icons/themes.""" - data: dict = { - "browser": webapp.browser, - "app_name": webapp.app_name, - "app_url": webapp.app_url, - "app_icon": webapp.app_icon, - "app_profile": webapp.app_profile, - "app_categories": webapp.app_categories, - } - - home = os.path.expanduser("~") - if webapp.app_icon_url and webapp.app_icon_url.startswith(home): - icon_filename = os.path.basename(webapp.app_icon_url) - try: - shutil.copy2(webapp.app_icon_url, os.path.join(icons_dir, icon_filename)) - data["app_icon_url"] = f"icons/{icon_filename}" - except (IOError, PermissionError) as e: - logger.error("Failed to copy icon %s: %s", webapp.app_icon_url, e) - data["app_icon_url"] = "" - else: - data["app_icon_url"] = webapp.app_icon_url - - if webapp.app_icon and not webapp.app_icon.startswith(("/", "~")): - theme_file = os.path.expanduser( - f"~/.local/share/icons/{webapp.app_icon}.theme" - ) - if os.path.exists(theme_file): - try: - shutil.copy2( - theme_file, - os.path.join(themes_dir, f"{webapp.app_icon}.theme"), - ) - except (IOError, PermissionError) as e: - logger.error("Failed to copy theme %s: %s", theme_file, e) - - return data - - # ── import ─────────────────────────────────────────────────── - - def import_webapps(self, file_path: str) -> tuple[int, int, str]: - """Import webapps from a ZIP file. - - Returns: - (imported_count, duplicate_count, error_message) - error_message is empty on success. - """ - if not os.path.exists(file_path): - return 0, 0, "file_not_found" - - if not zipfile.is_zipfile(file_path): - return 0, 0, "invalid_zip" - - try: - with tempfile.TemporaryDirectory() as temp_dir: - with zipfile.ZipFile(file_path, "r") as zipf: - # path traversal protection - for member in zipf.namelist(): - real = os.path.realpath(os.path.join(temp_dir, member)) - if not real.startswith(os.path.realpath(temp_dir) + os.sep): - return 0, 0, f"unsafe_path:{member}" - zipf.extractall(temp_dir) - - webapps_file = os.path.join(temp_dir, "webapps.json") - if not os.path.exists(webapps_file): - return 0, 0, "missing_webapps_json" - - with open(webapps_file, "r") as f: - webapps_data = json.load(f) - - local_icons_dir = os.path.expanduser("~/.local/share/icons") - os.makedirs(local_icons_dir, exist_ok=True) - - existing_keys = { - (wa.app_name, wa.app_url) - for wa in self.webapp_collection.get_all() - } - - imported = 0 - duplicates = 0 - for wd in webapps_data: - key = (wd.get("app_name", ""), wd.get("app_url", "")) - if key in existing_keys: - duplicates += 1 - continue - self._import_single_webapp(wd, temp_dir, local_icons_dir, imported) - imported += 1 - - self.load_data() - return imported, duplicates, "" - - except Exception as e: - logger.error("Import failed: %s", e) - return 0, 0, str(e) - - def _import_single_webapp( - self, webapp_dict: dict, temp_dir: str, local_icons_dir: str, seq: int - ) -> None: - """Import one webapp dict, copying its icon.""" - if webapp_dict.get("app_icon_url", "").startswith("icons/"): - icon_filename = os.path.basename(webapp_dict["app_icon_url"]) - export_icon = os.path.join(temp_dir, webapp_dict["app_icon_url"]) - local_icon = os.path.join(local_icons_dir, icon_filename) - try: - if os.path.exists(export_icon): - shutil.copy2(export_icon, local_icon) - webapp_dict["app_icon_url"] = local_icon - except (IOError, PermissionError) as e: - logger.error("Failed to copy icon %s: %s", export_icon, e) - webapp_dict["app_icon_url"] = "" - - webapp_dict["app_file"] = f"{int(time.time()) + seq}-import" - webapp = WebApp(webapp_dict) - self.command_executor.create_webapp(webapp) diff --git a/biglinux-webapps/usr/share/locale/pt_BR/LC_MESSAGES/biglinux-webapps.mo b/biglinux-webapps/usr/share/locale/pt_BR/LC_MESSAGES/biglinux-webapps.mo new file mode 100644 index 0000000000000000000000000000000000000000..8d92c307f62b54404a5ab1e8383c026e36ab23ff GIT binary patch literal 5509 zcmZ{mTZ|<|8OKXS!9hexzMwd6r@fE%wbv`vg9qNoAIIFK za36dJJOnR>vrxuahZn%(Q2Koi9)yoVvFB-cE_@cg1^xlbcm4up-2Xy}!+CG6{k{TX zf*OP3{}CwTOhK{dRw(@!q4fVa9EBN_?|%u(_fA3S|6?fqe;N6!c>mXtzkz#r{zphE z)ZgJd;lJP^cs_%O-IH)XT!doBCgi6+!JqX1OuYUwl<%E{457XQ#oi|(pM(;}XP}Jp zV!Zz{6uV!AZ-XOTNdJrA0=yKy0T%Egcs%m+k&i>k$5Zgr@Hr@YX=A+T;Xzo%2VTYX zDJbJV4<+6&K~kY!f!Dqc9YE3H)fg}KjKfReZBWB|;brg1VJLce1ky!43i+wW`4j#A0*bDmg_6I2Lb2;rNJ`Y%7$xKEfnv{vkVoob zDE$vX(aWt+#=jqmy$?hA?iZnq`_0HxP~!Ey`26SaJzPHpMTalIcf%LqHBf>j<6R3y zhqF-Z%At&Z0!sgfpuG1e6nnoLub+T24?G#KpMwmoUV<{tf1v389D*nJ_d@aGN+|vw zg&DjBiVlAOFN8mW691>6=gK(-v8t$qO(j#79fst)&?j?7Hn^Pp>=cChubVl*v0b1BLB6e?m=F_jSAafalUV zK4kQ&?e#NWQqz_F5l#H2ZP+MWU(e+XQ~Sglh3ynNH$D0jh7_0ens+^kaY(D71~zkj z>-DO0Sy0n1-%rff-KH+qQ-aquY0llvJaZ<|Qw|dtRLz*qdXuP*$?J?%f!fSZi+oWK zx1eT{w5a|XgJ&?*>pPZ@{rYSQV|)l>xVxX=g*5PKP?E z1#rTZUQ=d`cy&*#T}BKh0a8_(lG|}Qw0qeG>hf;qdTND2tp4;YnNlm(cyz%FWmbgd zvi5v@kGkxOb(?w~ z)|J7e;F%Ccb=42m=8nKwP2gQ_M-@_3wXGTjRVfZ-6|yx{b)tDze~UTg4A07b@>>0Z zo;NvS^l=<4^rX?YcV;0_b*9k1%q9B<(-WCo5L=uLV%`tvzITIEl*U^<$4KO|m8Bb2 z+vAjTYME0ImDg3G*UZ3q>bIA`Cuu0W>BziVO`VRLe&|AB+Ckktx1_7tQHhY4wQ4T1D4^VX5JhV)Y29hP%-iF- zop!S{FORnf7@mfaWh-X4=0i74T9airv{v1?9$8v!E!#mVom$fbZd@N4J9JHJ?CRFR z!}{Ri@v*}r$4n?%tKQ^+GIoAkH|MenOq7M|$!&du;q+$Qi0_S>^d|b|-I64>R;}rc z>m^JmyCwCYFPrq{zBIdB-_S2wlgl?}>8SJF?H=R0x<4{MH$SuO*1^%Skts*b=9qM% zkGX|CUR=pEpXS%g0^upO8}C@1Z5`QuPfS{~zBQ9~oG4&iA8Dt>h+1)NZ&^pv4xShv z^V8fw=RKXfforC1DJ!Pxp4~cWyjpdMBUhoxs%Xdb>IpaHky^68CkkqoRa-5pTR&ud z+p+30Kdzcyd+S?0blAyC%FpON5f?3Quee($x4!BW>nw}0lQmS`=`!ZedcoZ~g$F@8 zlws&c7-udW*e*A6qnDZ?C*lk?z{E2>$LzJVd6YOGU*e2agt^irE-t`)JubniVV@w+ zNSRrU z&rCuRjcQ$scqzH6F=+%v!ImYpo;PE8CE}*l;y(}Ck9*#}f%Mu2@AxE+j|ECZj5(Fx6E9iA}U6jXCqy)me#vu!V{ z?LmDrs-pIn$jGFI;+a|SRrYGQpW^>;HW~^pE+mv*C@C`89GHX?B)j!ktX6JS)jFzY zWCp7>rE@92zSL2mj@VtSSxV!y{X>cwRq?Z|N)l8phT0CP$}>GQMQO71zSFzjVm+#n z5#@8kz||uL9mJkGops4pyNY{DtG!E@!;#Al5!G7?@_`A%kXHK%>a3pJX?v}K>}ECd z!fUv?sKuSi(dhM2wOS`fvVbK_lhvjpMu0G}E%w|dgFM^etBUdrnmve`D63gE>UcWs JvCC*w{Xgi(%) PathBuf { + dirs::config_dir() + .unwrap_or_else(|| PathBuf::from("~/.config")) + .join("biglinux-webapps") +} + +/// Data dir: ~/.local/share/biglinux-webapps/ +pub fn data_dir() -> PathBuf { + dirs::data_dir() + .unwrap_or_else(|| PathBuf::from("~/.local/share")) + .join("biglinux-webapps") +} + +/// Cache dir: ~/.cache/biglinux-webapps/ +pub fn cache_dir() -> PathBuf { + dirs::cache_dir() + .unwrap_or_else(|| PathBuf::from("~/.cache")) + .join("biglinux-webapps") +} + +/// Desktop files dir: ~/.local/share/applications/ +pub fn applications_dir() -> PathBuf { + dirs::data_dir() + .unwrap_or_else(|| PathBuf::from("~/.local/share")) + .join("applications") +} + +/// System icons base: /usr/share/biglinux/webapps/icons/ +pub fn system_icons_dir() -> PathBuf { + PathBuf::from("/usr/share/biglinux/webapps/icons") +} + +/// Browser profile storage: ~/.local/share/biglinux-webapps/profiles/ +pub fn profiles_dir() -> PathBuf { + data_dir().join("profiles") +} diff --git a/crates/webapps-core/src/desktop.rs b/crates/webapps-core/src/desktop.rs new file mode 100644 index 00000000..677fa93e --- /dev/null +++ b/crates/webapps-core/src/desktop.rs @@ -0,0 +1,141 @@ +use crate::config; +use crate::models::{AppMode, WebApp}; +use anyhow::Result; +use std::fs; +use std::path::PathBuf; + +/// Generate .desktop file content for a webapp +pub fn generate_desktop_entry(webapp: &WebApp) -> String { + let app_id = desktop_file_id(&webapp.app_url); + let wm_class = derive_wm_class(&webapp.app_url, &webapp.app_mode); + let has_mime = !webapp.mime_types.is_empty(); + let file_arg = if has_mime { " %f" } else { "" }; + + // sanitize fields for shell/desktop safety — strip quotes and control chars + let safe_url = sanitize_desktop_field(&webapp.app_url); + let safe_name = sanitize_desktop_field(&webapp.app_name); + let safe_icon = sanitize_desktop_field(&webapp.app_icon); + let safe_file = sanitize_desktop_field(&webapp.app_file); + let safe_browser = sanitize_desktop_field(&webapp.browser); + let safe_profile = sanitize_desktop_field(&webapp.app_profile); + + let exec = match webapp.app_mode { + AppMode::App => format!( + "big-webapps-viewer --url=\"{safe_url}\" --name=\"{safe_name}\" --icon=\"{safe_icon}\" --app-id=\"{app_id}\"{file_arg}", + ), + AppMode::Browser => { + let class = derive_class_from_url(&webapp.app_url); + format!( + "big-webapps-exec filename=\"{safe_file}\" {safe_browser} --class=\"{class}\" --profile-directory={safe_profile} --app=\"{safe_url}\"{file_arg}", + ) + } + }; + + let mut lines = vec![ + "[Desktop Entry]".to_string(), + "Version=1.0".to_string(), + "Terminal=false".to_string(), + "Type=Application".to_string(), + format!("Name={}", webapp.app_name), + format!("Exec={}", exec), + format!("Icon={}", webapp.app_icon), + format!("StartupWMClass={}", wm_class), + format!("Categories={}", webapp.app_categories), + ]; + + if !webapp.mime_types.is_empty() { + lines.push(format!("MimeType={}", webapp.mime_types)); + } + if !webapp.comment.is_empty() { + lines.push(format!("Comment={}", webapp.comment)); + } + if !webapp.generic_name.is_empty() { + lines.push(format!("GenericName={}", webapp.generic_name)); + } + if !webapp.keywords.is_empty() { + lines.push(format!("Keywords={}", webapp.keywords)); + } + + lines.push("StartupNotify=false".to_string()); + + // SoftwareRender action — fallback for GPU issues + lines.push(String::new()); + lines.push("Actions=SoftwareRender;".to_string()); + lines.push(String::new()); + lines.push("[Desktop Action SoftwareRender]".to_string()); + lines.push("Name=Software Render".to_string()); + lines.push(format!("Exec=SoftwareRender {exec}")); + + lines.join("\n") + "\n" +} + +/// Derive WM class from URL + mode (matches original big-webapps script) +fn derive_wm_class(url: &str, mode: &AppMode) -> String { + match mode { + AppMode::App => { + let app_id = url + .replace("https://", "") + .replace("http://", "") + .replace('/', "_") + .chars() + .filter(|c| c.is_alphanumeric() || *c == '_' || *c == '-') + .collect::(); + format!("br.com.biglinux.webapp.{app_id}") + } + AppMode::Browser => derive_class_from_url(url), + } +} + +/// URL → class: strip scheme, replace / with __ +fn derive_class_from_url(url: &str) -> String { + url.replace("https://", "") + .replace("http://", "") + .replace('/', "__") +} + +/// Derive desktop file ID from URL (hostname with dots removed) +pub fn desktop_file_id(url: &str) -> String { + url::Url::parse(url) + .ok() + .and_then(|u| u.host_str().map(|h| h.replace('.', ""))) + .unwrap_or_else(|| "webapp".into()) +} + +/// Path for a webapp's .desktop file +pub fn desktop_file_path(webapp: &WebApp) -> PathBuf { + let filename = if webapp.app_file.is_empty() { + format!("biglinux-webapp-{}.desktop", desktop_file_id(&webapp.app_url)) + } else { + webapp.app_file.clone() + }; + config::applications_dir().join(filename) +} + +/// Write .desktop file to disk +pub fn install_desktop_entry(webapp: &WebApp) -> Result<()> { + let path = desktop_file_path(webapp); + if let Some(parent) = path.parent() { + fs::create_dir_all(parent)?; + } + let content = generate_desktop_entry(webapp); + fs::write(&path, content)?; + log::info!("Installed desktop entry: {}", path.display()); + Ok(()) +} + +/// Remove .desktop file +pub fn remove_desktop_entry(webapp: &WebApp) -> Result<()> { + let path = desktop_file_path(webapp); + if path.exists() { + fs::remove_file(&path)?; + log::info!("Removed desktop entry: {}", path.display()); + } + Ok(()) +} + +/// Strip chars that could break desktop file Exec or shell parsing +fn sanitize_desktop_field(s: &str) -> String { + s.chars() + .filter(|c| *c != '"' && *c != '\'' && *c != '`' && *c != '\\' && *c != '\n' && *c != '\r' && *c != '$') + .collect() +} diff --git a/crates/webapps-core/src/i18n.rs b/crates/webapps-core/src/i18n.rs new file mode 100644 index 00000000..778e98c9 --- /dev/null +++ b/crates/webapps-core/src/i18n.rs @@ -0,0 +1,11 @@ +use gettextrs::{bindtextdomain, setlocale, textdomain, LocaleCategory}; + +const GETTEXT_DOMAIN: &str = "biglinux-webapps"; +const LOCALE_DIR: &str = "/usr/share/locale"; + +/// Init gettext i18n — call once at startup before any UI +pub fn init() { + setlocale(LocaleCategory::LcAll, ""); + bindtextdomain(GETTEXT_DOMAIN, LOCALE_DIR).ok(); + textdomain(GETTEXT_DOMAIN).ok(); +} diff --git a/crates/webapps-core/src/lib.rs b/crates/webapps-core/src/lib.rs new file mode 100644 index 00000000..bc21a296 --- /dev/null +++ b/crates/webapps-core/src/lib.rs @@ -0,0 +1,5 @@ +pub mod config; +pub mod desktop; +pub mod i18n; +pub mod models; +pub mod templates; diff --git a/crates/webapps-core/src/models/browser.rs b/crates/webapps-core/src/models/browser.rs new file mode 100644 index 00000000..ee45d485 --- /dev/null +++ b/crates/webapps-core/src/models/browser.rs @@ -0,0 +1,126 @@ +use serde::{Deserialize, Serialize}; + +/// Browser engine family +#[derive(Debug, Clone, Copy, PartialEq, Eq)] +pub enum BrowserKind { + Chromium, + Firefox, + Viewer, +} + +/// Installed browser entry +#[derive(Debug, Clone, Serialize, Deserialize)] +pub struct Browser { + #[serde(default, alias = "browser")] + pub browser_id: String, + #[serde(default)] + pub is_default: bool, +} + +impl Browser { + pub fn display_name(&self) -> &str { + display_name_for(&self.browser_id) + } + + pub fn icon_name(&self) -> String { + icon_name_for(&self.browser_id) + } + + pub fn kind(&self) -> BrowserKind { + let id = self.browser_id.to_lowercase(); + if id.contains("firefox") || id.contains("librewolf") { + BrowserKind::Firefox + } else if id == "__viewer__" { + BrowserKind::Viewer + } else { + BrowserKind::Chromium + } + } +} + +/// Collection of installed browsers +#[derive(Debug, Clone, Default)] +pub struct BrowserCollection { + pub browsers: Vec, + pub default_id: Option, +} + +impl BrowserCollection { + pub fn load_from_json(json_data: &[serde_json::Value]) -> Self { + let browsers: Vec = json_data + .iter() + .filter_map(|v| serde_json::from_value(v.clone()).ok()) + .collect(); + let default_id = browsers + .iter() + .find(|b| b.is_default) + .map(|b| b.browser_id.clone()); + Self { + browsers, + default_id, + } + } + + pub fn set_default(&mut self, browser_id: &str) { + self.default_id = Some(browser_id.to_string()); + for b in &mut self.browsers { + b.is_default = b.browser_id == browser_id; + } + } + + pub fn default_browser(&self) -> Option<&Browser> { + self.browsers + .iter() + .find(|b| b.is_default) + .or_else(|| self.browsers.first()) + } + + pub fn get_by_id(&self, id: &str) -> Option<&Browser> { + self.browsers.iter().find(|b| b.browser_id == id) + } +} + +// -- display name mapping -- + +fn display_name_for(id: &str) -> &str { + match id { + "google-chrome-stable" => "Google Chrome", + "google-chrome-beta" => "Google Chrome Beta", + "google-chrome-unstable" => "Google Chrome Dev", + "chromium" => "Chromium", + "chromium-dev" => "Chromium Dev", + "microsoft-edge-stable" => "Microsoft Edge", + "microsoft-edge-beta" => "Microsoft Edge Beta", + "microsoft-edge-dev" => "Microsoft Edge Dev", + "brave-browser" | "brave" => "Brave", + "brave-browser-beta" => "Brave Beta", + "brave-browser-nightly" => "Brave Nightly", + "vivaldi-stable" | "vivaldi" => "Vivaldi", + "vivaldi-beta" => "Vivaldi Beta", + "vivaldi-snapshot" => "Vivaldi Snapshot", + "firefox" => "Firefox", + "firefox-developer-edition" => "Firefox Developer", + "firefox-nightly" => "Firefox Nightly", + "librewolf" => "LibreWolf", + "ungoogled-chromium" => "Ungoogled Chromium", + "__viewer__" => "Built-in Viewer", + other => other, + } +} + +fn icon_name_for(id: &str) -> String { + // strip flatpak prefix if present + let base = id + .strip_prefix("com.google.") + .or_else(|| id.strip_prefix("org.chromium.")) + .or_else(|| id.strip_prefix("org.mozilla.")) + .unwrap_or(id); + + // handle flatpak-style IDs → map to icon filename + let icon = match base { + "Chrome" | "google-chrome-stable" => "google-chrome-stable", + "Chromium" | "chromium" => "chromium", + _ => base, + }; + icon.to_string() +} diff --git a/crates/webapps-core/src/models/mod.rs b/crates/webapps-core/src/models/mod.rs new file mode 100644 index 00000000..eb998c84 --- /dev/null +++ b/crates/webapps-core/src/models/mod.rs @@ -0,0 +1,5 @@ +mod browser; +mod webapp; + +pub use browser::{Browser, BrowserCollection, BrowserKind}; +pub use webapp::{AppMode, WebApp, WebAppCollection}; diff --git a/crates/webapps-core/src/models/webapp.rs b/crates/webapps-core/src/models/webapp.rs new file mode 100644 index 00000000..be4c6c6c --- /dev/null +++ b/crates/webapps-core/src/models/webapp.rs @@ -0,0 +1,206 @@ +use serde::{Deserialize, Serialize}; +use std::collections::HashMap; + +/// Launch mode for webapp +#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize, Default)] +#[serde(rename_all = "lowercase")] +pub enum AppMode { + /// Open in system browser + #[default] + Browser, + /// Open in built-in viewer (CSD webview) + App, +} + +impl AppMode { + pub fn as_str(&self) -> &'static str { + match self { + Self::Browser => "browser", + Self::App => "app", + } + } +} + +/// Single web application entry +#[derive(Debug, Clone, Serialize, Deserialize)] +pub struct WebApp { + #[serde(default)] + pub browser: String, + #[serde(default)] + pub app_file: String, + #[serde(default)] + pub app_name: String, + #[serde(default)] + pub app_url: String, + #[serde(default)] + pub app_icon: String, + #[serde(default = "default_profile")] + pub app_profile: String, + #[serde(default = "default_categories")] + pub app_categories: String, + #[serde(default)] + pub app_icon_url: String, + #[serde(default)] + pub app_mode: AppMode, + + // template metadata + #[serde(default)] + pub template_id: String, + #[serde(default)] + pub mime_types: String, + #[serde(default)] + pub comment: String, + #[serde(default)] + pub generic_name: String, + #[serde(default)] + pub keywords: String, + #[serde(default)] + pub url_schemes: String, +} + +fn default_profile() -> String { + "Default".into() +} + +fn default_categories() -> String { + "Webapps".into() +} + +impl Default for WebApp { + fn default() -> Self { + Self { + browser: String::new(), + app_file: String::new(), + app_name: String::new(), + app_url: String::new(), + app_icon: String::new(), + app_profile: default_profile(), + app_categories: default_categories(), + app_icon_url: String::new(), + app_mode: AppMode::default(), + template_id: String::new(), + mime_types: String::new(), + comment: String::new(), + generic_name: String::new(), + keywords: String::new(), + url_schemes: String::new(), + } + } +} + +impl WebApp { + pub fn main_category(&self) -> &str { + self.app_categories + .split(';') + .next() + .filter(|s| !s.is_empty()) + .unwrap_or("Webapps") + } + + pub fn set_main_category(&mut self, category: &str) { + if category.is_empty() { + return; + } + let others: Vec<&str> = self + .app_categories + .split(';') + .skip(1) + .filter(|c| !c.is_empty() && *c != category) + .collect(); + if others.is_empty() { + self.app_categories = category.to_string(); + } else { + self.app_categories = format!("{};{}", category, others.join(";")); + } + } + + /// Derive profile name from URL hostname (dots removed) + pub fn derive_profile_name(&self) -> String { + url::Url::parse(&self.app_url) + .ok() + .and_then(|u| u.host_str().map(|h| h.replace('.', ""))) + .unwrap_or_else(|| "Default".into()) + } + + /// Apply template preset to pre-fill fields + pub fn apply_template(&mut self, tpl: &crate::templates::WebAppTemplate) { + self.template_id = tpl.template_id.clone(); + self.app_name = tpl.name.clone(); + self.app_url = tpl.url.clone(); + self.app_icon = tpl.icon.clone(); + self.app_icon_url = tpl.icon.clone(); + self.app_categories = tpl.category.clone(); + + if !tpl.mime_types.is_empty() { + self.mime_types = format!("{};", tpl.mime_types.join(";")); + } + if !tpl.comment.is_empty() { + self.comment = tpl.comment.clone(); + } + if !tpl.generic_name.is_empty() { + self.generic_name = tpl.generic_name.clone(); + } + if !tpl.keywords.is_empty() { + self.keywords = format!("{};", tpl.keywords.join(";")); + } + if !tpl.url_schemes.is_empty() { + self.url_schemes = format!("{};", tpl.url_schemes.join(";")); + } + if !tpl.profile.is_empty() { + self.app_profile = tpl.profile.clone(); + } + } + + /// Check if text matches name, URL, or file + pub fn matches(&self, query: &str) -> bool { + let q = query.to_lowercase(); + self.app_name.to_lowercase().contains(&q) + || self.app_url.to_lowercase().contains(&q) + || self.app_file.to_lowercase().contains(&q) + } +} + +/// Collection of WebApp with filtering +#[derive(Debug, Clone, Default)] +pub struct WebAppCollection { + pub webapps: Vec, +} + +impl WebAppCollection { + pub fn load_from_json(json_data: &[serde_json::Value]) -> Self { + let webapps = json_data + .iter() + .filter_map(|v| serde_json::from_value(v.clone()).ok()) + .collect(); + Self { webapps } + } + + pub fn filter_by_text(&self, query: &str) -> Vec<&WebApp> { + if query.is_empty() { + return self.webapps.iter().collect(); + } + self.webapps.iter().filter(|app| app.matches(query)).collect() + } + + pub fn categorized(&self, query: Option<&str>) -> HashMap> { + let apps: Vec<&WebApp> = match query { + Some(q) if !q.is_empty() => self.filter_by_text(q), + _ => self.webapps.iter().collect(), + }; + let mut map: HashMap> = HashMap::new(); + for app in apps { + for cat in app.app_categories.split(';').filter(|c| !c.is_empty()) { + map.entry(cat.to_string()).or_default().push(app); + } + } + map + } + + pub fn add(&mut self, webapp: WebApp) { + self.webapps.push(webapp); + } + + pub fn remove_by_file(&mut self, app_file: &str) { + self.webapps.retain(|app| app.app_file != app_file); + } +} diff --git a/crates/webapps-core/src/templates/communication.rs b/crates/webapps-core/src/templates/communication.rs new file mode 100644 index 00000000..0353276b --- /dev/null +++ b/crates/webapps-core/src/templates/communication.rs @@ -0,0 +1,95 @@ +use super::registry::WebAppTemplate; + +macro_rules! svec { + ($($s:literal),* $(,)?) => { vec![$($s.to_string()),*] }; +} + +pub fn templates() -> Vec { + vec![ + WebAppTemplate { + template_id: "whatsapp".into(), + name: "WhatsApp".into(), + url: "https://web.whatsapp.com".into(), + icon: "whatsapp".into(), + category: "Network".into(), + comment: "Messaging and calls from WhatsApp".into(), + generic_name: "Instant Messaging".into(), + keywords: svec!["whatsapp", "chat", "messaging", "calls"], + features: svec!["notifications", "camera", "microphone"], + ..Default::default() + }, + WebAppTemplate { + template_id: "telegram".into(), + name: "Telegram".into(), + url: "https://web.telegram.org".into(), + icon: "telegram".into(), + category: "Network".into(), + comment: "Fast and secure messaging from Telegram".into(), + generic_name: "Instant Messaging".into(), + keywords: svec!["telegram", "chat", "messaging", "channels"], + features: svec!["notifications"], + url_schemes: svec!["tg"], + ..Default::default() + }, + WebAppTemplate { + template_id: "discord".into(), + name: "Discord".into(), + url: "https://discord.com/app".into(), + icon: "discord".into(), + category: "Network".into(), + comment: "Voice, video and text communication".into(), + generic_name: "Instant Messaging".into(), + keywords: svec!["discord", "chat", "voice", "gaming", "community"], + features: svec!["notifications", "camera", "microphone"], + ..Default::default() + }, + WebAppTemplate { + template_id: "slack".into(), + name: "Slack".into(), + url: "https://app.slack.com".into(), + icon: "slack".into(), + category: "Network".into(), + comment: "Team communication and collaboration".into(), + generic_name: "Instant Messaging".into(), + keywords: svec!["slack", "chat", "team", "work", "collaboration"], + features: svec!["notifications", "camera", "microphone"], + ..Default::default() + }, + WebAppTemplate { + template_id: "messenger".into(), + name: "Messenger".into(), + url: "https://www.messenger.com".into(), + icon: "messenger".into(), + category: "Network".into(), + comment: "Messaging from Facebook Messenger".into(), + generic_name: "Instant Messaging".into(), + keywords: svec!["messenger", "facebook", "chat", "messaging"], + features: svec!["notifications", "camera", "microphone"], + ..Default::default() + }, + WebAppTemplate { + template_id: "skype".into(), + name: "Skype".into(), + url: "https://web.skype.com".into(), + icon: "skype".into(), + category: "Network".into(), + comment: "Video calls and messaging from Skype".into(), + generic_name: "Video Conferencing".into(), + keywords: svec!["skype", "video", "calls", "chat", "microsoft"], + features: svec!["notifications", "camera", "microphone"], + ..Default::default() + }, + WebAppTemplate { + template_id: "signal".into(), + name: "Signal".into(), + url: "https://signal.org/".into(), + icon: "signal".into(), + category: "Network".into(), + comment: "Private messaging from Signal".into(), + generic_name: "Instant Messaging".into(), + keywords: svec!["signal", "privacy", "messaging", "encrypted"], + features: svec!["notifications"], + ..Default::default() + }, + ] +} diff --git a/crates/webapps-core/src/templates/google.rs b/crates/webapps-core/src/templates/google.rs new file mode 100644 index 00000000..83e122a4 --- /dev/null +++ b/crates/webapps-core/src/templates/google.rs @@ -0,0 +1,152 @@ +use super::registry::{FileHandler, WebAppTemplate}; + +macro_rules! svec { + ($($s:literal),* $(,)?) => { + vec![$($s.to_string()),*] + }; +} + +pub fn templates() -> Vec { + vec![ + WebAppTemplate { + template_id: "google-docs".into(), + name: "Google Docs".into(), + url: "https://docs.google.com".into(), + icon: "google-docs".into(), + category: "Office".into(), + comment: "Create and edit documents online".into(), + generic_name: "Word Processor".into(), + keywords: svec!["google", "docs", "document", "text"], + mime_types: svec![ + "application/vnd.openxmlformats-officedocument.wordprocessingml.document", + "application/msword", "application/rtf", "text/plain" + ], + file_handler: FileHandler::Upload, + profile: "google".into(), + ..Default::default() + }, + WebAppTemplate { + template_id: "google-sheets".into(), + name: "Google Sheets".into(), + url: "https://sheets.google.com".into(), + icon: "google-sheets".into(), + category: "Office".into(), + comment: "Create and edit spreadsheets online".into(), + generic_name: "Spreadsheet".into(), + keywords: svec!["google", "sheets", "spreadsheet", "csv", "excel"], + mime_types: svec![ + "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", + "application/vnd.ms-excel", "text/csv" + ], + file_handler: FileHandler::Upload, + profile: "google".into(), + ..Default::default() + }, + WebAppTemplate { + template_id: "google-slides".into(), + name: "Google Slides".into(), + url: "https://slides.google.com".into(), + icon: "google-slides".into(), + category: "Office".into(), + comment: "Create and edit presentations online".into(), + generic_name: "Presentation".into(), + keywords: svec!["google", "slides", "presentation", "powerpoint"], + mime_types: svec![ + "application/vnd.openxmlformats-officedocument.presentationml.presentation", + "application/vnd.ms-powerpoint" + ], + file_handler: FileHandler::Upload, + profile: "google".into(), + ..Default::default() + }, + WebAppTemplate { + template_id: "google-drive".into(), + name: "Google Drive".into(), + url: "https://drive.google.com".into(), + icon: "google-drive".into(), + category: "Network".into(), + comment: "Cloud storage from Google Drive".into(), + generic_name: "Cloud Storage".into(), + keywords: svec!["google", "drive", "cloud", "storage", "files"], + profile: "google".into(), + ..Default::default() + }, + WebAppTemplate { + template_id: "google-gmail".into(), + name: "Gmail".into(), + url: "https://mail.google.com".into(), + icon: "gmail".into(), + category: "Network".into(), + comment: "Email from Google".into(), + generic_name: "Email Client".into(), + keywords: svec!["gmail", "email", "mail", "google"], + features: svec!["notifications"], + url_schemes: svec!["mailto"], + profile: "google".into(), + ..Default::default() + }, + WebAppTemplate { + template_id: "google-calendar".into(), + name: "Google Calendar".into(), + url: "https://calendar.google.com".into(), + icon: "google-calendar".into(), + category: "Office".into(), + comment: "Calendar and scheduling from Google".into(), + generic_name: "Calendar".into(), + keywords: svec!["google", "calendar", "schedule", "events"], + features: svec!["notifications"], + profile: "google".into(), + ..Default::default() + }, + WebAppTemplate { + template_id: "google-meet".into(), + name: "Google Meet".into(), + url: "https://meet.google.com".into(), + icon: "google-meet".into(), + category: "Network".into(), + comment: "Video conferencing from Google".into(), + generic_name: "Video Conferencing".into(), + keywords: svec!["google", "meet", "video", "conferencing"], + features: svec!["notifications", "camera", "microphone"], + profile: "google".into(), + ..Default::default() + }, + WebAppTemplate { + template_id: "google-photos".into(), + name: "Google Photos".into(), + url: "https://photos.google.com".into(), + icon: "google-photos".into(), + category: "Graphics".into(), + comment: "Photo storage and editing from Google".into(), + generic_name: "Photo Manager".into(), + keywords: svec!["google", "photos", "gallery", "images"], + profile: "google".into(), + ..Default::default() + }, + WebAppTemplate { + template_id: "google-keep".into(), + name: "Google Keep".into(), + url: "https://keep.google.com".into(), + icon: "google-keep".into(), + category: "Office".into(), + comment: "Notes and lists from Google".into(), + generic_name: "Note Taking".into(), + keywords: svec!["google", "keep", "notes", "lists", "todo"], + profile: "google".into(), + ..Default::default() + }, + WebAppTemplate { + template_id: "youtube".into(), + name: "YouTube".into(), + url: "https://www.youtube.com".into(), + icon: "youtube".into(), + category: "AudioVideo".into(), + comment: "Watch and share videos".into(), + generic_name: "Video Player".into(), + keywords: svec!["youtube", "video", "streaming", "google"], + features: svec!["notifications"], + profile: "google".into(), + ..Default::default() + }, + ] +} diff --git a/crates/webapps-core/src/templates/media.rs b/crates/webapps-core/src/templates/media.rs new file mode 100644 index 00000000..c7abb869 --- /dev/null +++ b/crates/webapps-core/src/templates/media.rs @@ -0,0 +1,105 @@ +use super::registry::WebAppTemplate; + +macro_rules! svec { + ($($s:literal),* $(,)?) => { vec![$($s.to_string()),*] }; +} + +pub fn templates() -> Vec { + vec![ + WebAppTemplate { + template_id: "spotify".into(), + name: "Spotify".into(), + url: "https://open.spotify.com".into(), + icon: "spotify".into(), + category: "AudioVideo".into(), + comment: "Music streaming from Spotify".into(), + generic_name: "Music Player".into(), + keywords: svec!["spotify", "music", "streaming", "audio", "playlist"], + features: svec!["notifications", "media-keys"], + url_schemes: svec!["spotify"], + ..Default::default() + }, + WebAppTemplate { + template_id: "youtube-music".into(), + name: "YouTube Music".into(), + url: "https://music.youtube.com".into(), + icon: "youtube-music".into(), + category: "AudioVideo".into(), + comment: "Music streaming from YouTube Music".into(), + generic_name: "Music Player".into(), + keywords: svec!["youtube", "music", "streaming", "google"], + features: svec!["notifications", "media-keys"], + profile: "google".into(), + ..Default::default() + }, + WebAppTemplate { + template_id: "netflix".into(), + name: "Netflix".into(), + url: "https://www.netflix.com".into(), + icon: "netflix".into(), + category: "AudioVideo".into(), + comment: "Watch movies and TV shows on Netflix".into(), + generic_name: "Video Player".into(), + keywords: svec!["netflix", "streaming", "movies", "series"], + ..Default::default() + }, + WebAppTemplate { + template_id: "prime-video".into(), + name: "Amazon Prime Video".into(), + url: "https://www.primevideo.com".into(), + icon: "prime-video".into(), + category: "AudioVideo".into(), + comment: "Watch movies and TV shows on Prime Video".into(), + generic_name: "Video Player".into(), + keywords: svec!["amazon", "prime", "video", "streaming", "movies"], + ..Default::default() + }, + WebAppTemplate { + template_id: "disney-plus".into(), + name: "Disney+".into(), + url: "https://www.disneyplus.com".into(), + icon: "disney-plus".into(), + category: "AudioVideo".into(), + comment: "Watch Disney, Marvel, Star Wars and more".into(), + generic_name: "Video Player".into(), + keywords: svec!["disney", "streaming", "movies", "marvel", "star wars"], + ..Default::default() + }, + WebAppTemplate { + template_id: "tidal".into(), + name: "Tidal".into(), + url: "https://listen.tidal.com".into(), + icon: "tidal".into(), + category: "AudioVideo".into(), + comment: "HiFi music streaming from Tidal".into(), + generic_name: "Music Player".into(), + keywords: svec!["tidal", "music", "hifi", "streaming", "lossless"], + features: svec!["media-keys"], + ..Default::default() + }, + WebAppTemplate { + template_id: "deezer".into(), + name: "Deezer".into(), + url: "https://www.deezer.com".into(), + icon: "deezer".into(), + category: "AudioVideo".into(), + comment: "Music streaming from Deezer".into(), + generic_name: "Music Player".into(), + keywords: svec!["deezer", "music", "streaming"], + features: svec!["media-keys"], + ..Default::default() + }, + WebAppTemplate { + template_id: "twitch".into(), + name: "Twitch".into(), + url: "https://www.twitch.tv".into(), + icon: "twitch".into(), + category: "AudioVideo".into(), + comment: "Live streaming platform".into(), + generic_name: "Streaming".into(), + keywords: svec!["twitch", "streaming", "gaming", "live"], + features: svec!["notifications"], + ..Default::default() + }, + ] +} diff --git a/crates/webapps-core/src/templates/mod.rs b/crates/webapps-core/src/templates/mod.rs new file mode 100644 index 00000000..c1398973 --- /dev/null +++ b/crates/webapps-core/src/templates/mod.rs @@ -0,0 +1,8 @@ +mod registry; +mod office365; +mod google; +mod communication; +mod media; +mod productivity; + +pub use registry::{WebAppTemplate, TemplateRegistry, FileHandler, build_default_registry}; diff --git a/crates/webapps-core/src/templates/office365.rs b/crates/webapps-core/src/templates/office365.rs new file mode 100644 index 00000000..a20cc209 --- /dev/null +++ b/crates/webapps-core/src/templates/office365.rs @@ -0,0 +1,127 @@ +use super::registry::{FileHandler, WebAppTemplate}; + +pub fn templates() -> Vec { + vec![ + WebAppTemplate { + template_id: "office365-word".into(), + name: "Microsoft Word".into(), + url: "https://www.office.com/launch/word".into(), + icon: "ms-word".into(), + category: "Office".into(), + comment: "Edit documents online with Microsoft Word".into(), + generic_name: "Word Processor".into(), + keywords: vec!["word", "document", "office", "docx", "microsoft"] + .into_iter().map(Into::into).collect(), + mime_types: vec![ + "application/vnd.openxmlformats-officedocument.wordprocessingml.document", + "application/msword", "application/rtf", "text/rtf", + ].into_iter().map(Into::into).collect(), + file_handler: FileHandler::Upload, + profile: "office365".into(), + ..Default::default() + }, + WebAppTemplate { + template_id: "office365-excel".into(), + name: "Microsoft Excel".into(), + url: "https://www.office.com/launch/excel".into(), + icon: "ms-excel".into(), + category: "Office".into(), + comment: "Edit spreadsheets online with Microsoft Excel".into(), + generic_name: "Spreadsheet".into(), + keywords: vec!["excel", "spreadsheet", "office", "xlsx", "csv", "microsoft"] + .into_iter().map(Into::into).collect(), + mime_types: vec![ + "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", + "application/vnd.ms-excel", "text/csv", "application/csv", + ].into_iter().map(Into::into).collect(), + file_handler: FileHandler::Upload, + profile: "office365".into(), + ..Default::default() + }, + WebAppTemplate { + template_id: "office365-powerpoint".into(), + name: "Microsoft PowerPoint".into(), + url: "https://www.office.com/launch/powerpoint".into(), + icon: "ms-powerpoint".into(), + category: "Office".into(), + comment: "Create presentations online with Microsoft PowerPoint".into(), + generic_name: "Presentation".into(), + keywords: vec!["powerpoint", "presentation", "office", "pptx", "slides", "microsoft"] + .into_iter().map(Into::into).collect(), + mime_types: vec![ + "application/vnd.openxmlformats-officedocument.presentationml.presentation", + "application/vnd.ms-powerpoint", + ].into_iter().map(Into::into).collect(), + file_handler: FileHandler::Upload, + profile: "office365".into(), + ..Default::default() + }, + WebAppTemplate { + template_id: "office365-onenote".into(), + name: "Microsoft OneNote".into(), + url: "https://www.onenote.com/notebooks".into(), + icon: "ms-onenote".into(), + category: "Office".into(), + comment: "Take notes online with Microsoft OneNote".into(), + generic_name: "Note Taking".into(), + keywords: vec!["onenote", "notes", "office", "microsoft"] + .into_iter().map(Into::into).collect(), + profile: "office365".into(), + ..Default::default() + }, + WebAppTemplate { + template_id: "office365-outlook".into(), + name: "Microsoft Outlook".into(), + url: "https://outlook.live.com/mail/".into(), + icon: "ms-outlook".into(), + category: "Office".into(), + comment: "Email and calendar from Microsoft Outlook".into(), + generic_name: "Email Client".into(), + keywords: vec!["outlook", "email", "mail", "calendar", "microsoft"] + .into_iter().map(Into::into).collect(), + features: vec!["notifications".into()], + profile: "office365".into(), + ..Default::default() + }, + WebAppTemplate { + template_id: "office365-teams".into(), + name: "Microsoft Teams".into(), + url: "https://teams.microsoft.com".into(), + icon: "ms-teams".into(), + category: "Network".into(), + comment: "Chat and video conferencing with Microsoft Teams".into(), + generic_name: "Instant Messaging".into(), + keywords: vec!["teams", "chat", "video", "conferencing", "microsoft"] + .into_iter().map(Into::into).collect(), + features: vec!["notifications".into(), "camera".into(), "microphone".into()], + profile: "office365".into(), + ..Default::default() + }, + WebAppTemplate { + template_id: "office365-onedrive".into(), + name: "Microsoft OneDrive".into(), + url: "https://onedrive.live.com".into(), + icon: "onedrive".into(), + category: "Network".into(), + comment: "Cloud storage from Microsoft OneDrive".into(), + generic_name: "Cloud Storage".into(), + keywords: vec!["onedrive", "cloud", "storage", "files", "microsoft"] + .into_iter().map(Into::into).collect(), + profile: "office365".into(), + ..Default::default() + }, + WebAppTemplate { + template_id: "office365-home".into(), + name: "Microsoft 365".into(), + url: "https://www.office.com".into(), + icon: "ms-office".into(), + category: "Office".into(), + comment: "Microsoft 365 home — access all Office apps".into(), + generic_name: "Office Suite".into(), + keywords: vec!["office", "365", "microsoft", "word", "excel", "powerpoint"] + .into_iter().map(Into::into).collect(), + profile: "office365".into(), + ..Default::default() + }, + ] +} diff --git a/crates/webapps-core/src/templates/productivity.rs b/crates/webapps-core/src/templates/productivity.rs new file mode 100644 index 00000000..d2abdf9e --- /dev/null +++ b/crates/webapps-core/src/templates/productivity.rs @@ -0,0 +1,150 @@ +use super::registry::WebAppTemplate; + +macro_rules! svec { + ($($s:literal),* $(,)?) => { vec![$($s.to_string()),*] }; +} + +pub fn templates() -> Vec { + vec![ + WebAppTemplate { + template_id: "notion".into(), + name: "Notion".into(), + url: "https://www.notion.so".into(), + icon: "notion".into(), + category: "Office".into(), + comment: "All-in-one workspace for notes, docs, and projects".into(), + generic_name: "Project Management".into(), + keywords: svec!["notion", "notes", "docs", "wiki", "project", "management"], + features: svec!["notifications"], + ..Default::default() + }, + WebAppTemplate { + template_id: "todoist".into(), + name: "Todoist".into(), + url: "https://todoist.com/app".into(), + icon: "todoist".into(), + category: "Office".into(), + comment: "Task management and to-do lists".into(), + generic_name: "Task Manager".into(), + keywords: svec!["todoist", "tasks", "todo", "productivity"], + features: svec!["notifications"], + ..Default::default() + }, + WebAppTemplate { + template_id: "trello".into(), + name: "Trello".into(), + url: "https://trello.com".into(), + icon: "trello".into(), + category: "Office".into(), + comment: "Visual project management with boards and cards".into(), + generic_name: "Project Management".into(), + keywords: svec!["trello", "kanban", "boards", "project", "management"], + features: svec!["notifications"], + ..Default::default() + }, + WebAppTemplate { + template_id: "figma".into(), + name: "Figma".into(), + url: "https://www.figma.com".into(), + icon: "figma".into(), + category: "Graphics".into(), + comment: "Collaborative design tool".into(), + generic_name: "Design Tool".into(), + keywords: svec!["figma", "design", "ui", "ux", "prototype", "vector"], + ..Default::default() + }, + WebAppTemplate { + template_id: "canva".into(), + name: "Canva".into(), + url: "https://www.canva.com".into(), + icon: "canva".into(), + category: "Graphics".into(), + comment: "Online graphic design tool".into(), + generic_name: "Design Tool".into(), + keywords: svec!["canva", "design", "graphics", "templates", "poster"], + ..Default::default() + }, + WebAppTemplate { + template_id: "github".into(), + name: "GitHub".into(), + url: "https://github.com".into(), + icon: "github".into(), + category: "Development".into(), + comment: "Code hosting and collaboration platform".into(), + generic_name: "Code Hosting".into(), + keywords: svec!["github", "git", "code", "repository", "development"], + features: svec!["notifications"], + ..Default::default() + }, + WebAppTemplate { + template_id: "gitlab".into(), + name: "GitLab".into(), + url: "https://gitlab.com".into(), + icon: "gitlab".into(), + category: "Development".into(), + comment: "DevOps platform for software development".into(), + generic_name: "DevOps Platform".into(), + keywords: svec!["gitlab", "git", "devops", "ci", "cd", "development"], + features: svec!["notifications"], + ..Default::default() + }, + WebAppTemplate { + template_id: "chatgpt".into(), + name: "ChatGPT".into(), + url: "https://chatgpt.com".into(), + icon: "chatgpt".into(), + category: "Utility".into(), + comment: "AI assistant from OpenAI".into(), + generic_name: "AI Assistant".into(), + keywords: svec!["chatgpt", "ai", "openai", "assistant", "gpt"], + ..Default::default() + }, + WebAppTemplate { + template_id: "claude".into(), + name: "Claude".into(), + url: "https://claude.ai".into(), + icon: "claude".into(), + category: "Utility".into(), + comment: "AI assistant from Anthropic".into(), + generic_name: "AI Assistant".into(), + keywords: svec!["claude", "ai", "anthropic", "assistant"], + ..Default::default() + }, + WebAppTemplate { + template_id: "linkedin".into(), + name: "LinkedIn".into(), + url: "https://www.linkedin.com".into(), + icon: "linkedin".into(), + category: "Network".into(), + comment: "Professional networking platform".into(), + generic_name: "Social Network".into(), + keywords: svec!["linkedin", "professional", "networking", "jobs"], + features: svec!["notifications"], + ..Default::default() + }, + WebAppTemplate { + template_id: "twitter".into(), + name: "X (Twitter)".into(), + url: "https://x.com".into(), + icon: "twitter".into(), + category: "Network".into(), + comment: "Social media and news platform".into(), + generic_name: "Social Network".into(), + keywords: svec!["twitter", "x", "social", "news", "microblog"], + features: svec!["notifications"], + ..Default::default() + }, + WebAppTemplate { + template_id: "reddit".into(), + name: "Reddit".into(), + url: "https://www.reddit.com".into(), + icon: "reddit".into(), + category: "Network".into(), + comment: "Community discussion and content sharing".into(), + generic_name: "Social Network".into(), + keywords: svec!["reddit", "community", "forum", "discussion"], + features: svec!["notifications"], + ..Default::default() + }, + ] +} diff --git a/crates/webapps-core/src/templates/registry.rs b/crates/webapps-core/src/templates/registry.rs new file mode 100644 index 00000000..88290114 --- /dev/null +++ b/crates/webapps-core/src/templates/registry.rs @@ -0,0 +1,139 @@ +use std::collections::HashMap; + +/// File-handling strategy for webapp template +#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)] +pub enum FileHandler { + #[default] + None, + Upload, + Url, +} + +/// Immutable preset for a known web service +#[derive(Debug, Clone)] +pub struct WebAppTemplate { + pub template_id: String, + pub name: String, + pub url: String, + pub icon: String, + pub category: String, + pub mime_types: Vec, + pub url_schemes: Vec, + pub features: Vec, + pub profile: String, + pub comment: String, + pub generic_name: String, + pub keywords: Vec, + pub file_handler: FileHandler, +} + +impl Default for WebAppTemplate { + fn default() -> Self { + Self { + template_id: String::new(), + name: String::new(), + url: String::new(), + icon: String::new(), + category: String::new(), + mime_types: Vec::new(), + url_schemes: Vec::new(), + features: Vec::new(), + profile: String::new(), + comment: String::new(), + generic_name: String::new(), + keywords: Vec::new(), + file_handler: FileHandler::None, + } + } +} + +impl WebAppTemplate { + /// Domain extracted from URL for matching + pub fn domain(&self) -> Option { + url::Url::parse(&self.url) + .ok() + .and_then(|u| u.host_str().map(|h| { + let h = h.strip_prefix("www.").unwrap_or(h); + h.to_lowercase() + })) + } +} + +/// Central store for webapp templates with lookup helpers +#[derive(Debug, Clone, Default)] +pub struct TemplateRegistry { + templates: HashMap, + by_category: HashMap>, +} + +impl TemplateRegistry { + pub fn register(&mut self, tpl: WebAppTemplate) { + let id = tpl.template_id.clone(); + let cat = tpl.category.clone(); + self.templates.insert(id.clone(), tpl); + self.by_category.entry(cat).or_default().push(id); + } + + pub fn register_many(&mut self, templates: Vec) { + for t in templates { + self.register(t); + } + } + + pub fn get(&self, id: &str) -> Option<&WebAppTemplate> { + self.templates.get(id) + } + + pub fn get_all(&self) -> Vec<&WebAppTemplate> { + self.templates.values().collect() + } + + pub fn get_by_category(&self, category: &str) -> Vec<&WebAppTemplate> { + self.by_category + .get(category) + .map(|ids| { + ids.iter() + .filter_map(|id| self.templates.get(id)) + .collect() + }) + .unwrap_or_default() + } + + pub fn categories(&self) -> Vec { + let mut cats: Vec = self.by_category.keys().cloned().collect(); + cats.sort(); + cats + } + + pub fn match_url(&self, url: &str) -> Option<&WebAppTemplate> { + let url_lower = url.to_lowercase(); + self.templates.values().find(|tpl| { + tpl.domain() + .map(|d| url_lower.contains(&d)) + .unwrap_or(false) + }) + } + + pub fn search(&self, query: &str) -> Vec<&WebAppTemplate> { + let q = query.to_lowercase(); + self.templates + .values() + .filter(|tpl| { + tpl.name.to_lowercase().contains(&q) + || tpl.category.to_lowercase().contains(&q) + || tpl.keywords.iter().any(|k| k.to_lowercase().contains(&q)) + }) + .collect() + } +} + +/// Build registry with all bundled templates +pub fn build_default_registry() -> TemplateRegistry { + let mut reg = TemplateRegistry::default(); + reg.register_many(super::office365::templates()); + reg.register_many(super::google::templates()); + reg.register_many(super::communication::templates()); + reg.register_many(super::media::templates()); + reg.register_many(super::productivity::templates()); + reg +} diff --git a/crates/webapps-manager/Cargo.toml b/crates/webapps-manager/Cargo.toml new file mode 100644 index 00000000..d652d576 --- /dev/null +++ b/crates/webapps-manager/Cargo.toml @@ -0,0 +1,30 @@ +[package] +name = "webapps-manager" +version.workspace = true +edition.workspace = true +license.workspace = true + +[[bin]] +name = "big-webapps-gui" +path = "src/main.rs" + +[dependencies] +webapps-core = { path = "../webapps-core" } +gtk4.workspace = true +libadwaita.workspace = true +glib.workspace = true +gio.workspace = true +gdk4.workspace = true +serde.workspace = true +serde_json.workspace = true +log.workspace = true +env_logger.workspace = true +anyhow.workspace = true +dirs.workspace = true +reqwest.workspace = true +scraper.workspace = true +image.workspace = true +url = "2" +zip = { version = "2", default-features = false, features = ["deflate"] } +open = "5" +gettextrs.workspace = true diff --git a/crates/webapps-manager/src/browser_dialog.rs b/crates/webapps-manager/src/browser_dialog.rs new file mode 100644 index 00000000..1eb9f581 --- /dev/null +++ b/crates/webapps-manager/src/browser_dialog.rs @@ -0,0 +1,138 @@ +use gtk4 as gtk; +use libadwaita as adw; + +use adw::prelude::*; +use gettextrs::gettext; +use gtk::glib; +use std::cell::RefCell; +use std::rc::Rc; +use webapps_core::models::BrowserCollection; + +/// Show browser selection dialog. Returns selected browser_id via callback. +pub fn show( + parent: &impl IsA, + browsers: &BrowserCollection, + current_id: &str, + on_selected: impl Fn(String) + 'static, +) { + let win = adw::Window::builder() + .title(&gettext("Select Browser")) + .default_width(400) + .default_height(450) + .modal(true) + .transient_for(parent) + .build(); + + let selected: Rc> = Rc::new(RefCell::new(current_id.to_string())); + + let content = gtk::Box::new(gtk::Orientation::Vertical, 0); + + // headerbar + let header = adw::HeaderBar::new(); + header.set_show_end_title_buttons(true); + content.append(&header); + + // scrollable list + let scroll = gtk::ScrolledWindow::new(); + scroll.set_vexpand(true); + scroll.set_hscrollbar_policy(gtk::PolicyType::Never); + + let listbox = gtk::ListBox::new(); + listbox.set_selection_mode(gtk::SelectionMode::None); + listbox.add_css_class("boxed-list"); + listbox.set_margin_top(12); + listbox.set_margin_bottom(12); + listbox.set_margin_start(12); + listbox.set_margin_end(12); + + let check_group: Rc>> = Rc::new(RefCell::new(Vec::new())); + + for browser in &browsers.browsers { + let row = adw::ActionRow::builder() + .title(browser.display_name()) + .activatable(true) + .build(); + + // browser icon + let icon = gtk::Image::from_icon_name(&browser.icon_name()); + icon.set_pixel_size(32); + row.add_prefix(&icon); + + // radio check button + let check = gtk::CheckButton::new(); + if browser.browser_id == current_id { + check.set_active(true); + } + + // link to first in group for radio behavior + { + let group = check_group.borrow(); + if let Some(first) = group.first() { + check.set_group(Some(first)); + } + } + check_group.borrow_mut().push(check.clone()); + + let sel = selected.clone(); + let bid = browser.browser_id.clone(); + check.connect_toggled(move |btn| { + if btn.is_active() { + *sel.borrow_mut() = bid.clone(); + } + }); + + row.add_suffix(&check); + row.set_activatable_widget(Some(&check)); + listbox.append(&row); + } + + scroll.set_child(Some(&listbox)); + content.append(&scroll); + + // buttons + let btn_box = gtk::Box::new(gtk::Orientation::Horizontal, 8); + btn_box.set_halign(gtk::Align::End); + btn_box.set_margin_top(8); + btn_box.set_margin_bottom(12); + btn_box.set_margin_end(12); + + let cancel_btn = gtk::Button::with_label(&gettext("Cancel")); + let ok_btn = gtk::Button::with_label(&gettext("OK")); + ok_btn.add_css_class("suggested-action"); + + { + let w = win.clone(); + cancel_btn.connect_clicked(move |_| w.close()); + } + { + let w = win.clone(); + let sel = selected.clone(); + ok_btn.connect_clicked(move |_| { + let id = sel.borrow().clone(); + on_selected(id); + w.close(); + }); + } + + btn_box.append(&cancel_btn); + btn_box.append(&ok_btn); + content.append(&btn_box); + + // ESC to close + let esc = gtk::EventControllerKey::new(); + { + let w = win.clone(); + esc.connect_key_pressed(move |_, key, _, _| { + if key == gtk::gdk::Key::Escape { + w.close(); + glib::Propagation::Stop + } else { + glib::Propagation::Proceed + } + }); + } + win.add_controller(esc); + + win.set_content(Some(&content)); + win.present(); +} diff --git a/crates/webapps-manager/src/favicon.rs b/crates/webapps-manager/src/favicon.rs new file mode 100644 index 00000000..3c963077 --- /dev/null +++ b/crates/webapps-manager/src/favicon.rs @@ -0,0 +1,169 @@ +use anyhow::Result; +use scraper::{Html, Selector}; +use std::path::PathBuf; +use webapps_core::config; + +/// Website metadata from HTML fetch +pub struct SiteInfo { + pub title: String, + pub icon_paths: Vec, +} + +/// Fetch title + icons from URL (blocking — call from thread) +pub fn fetch_site_info(url: &str) -> Result { + let client = reqwest::blocking::Client::builder() + .user_agent("Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 Chrome/120.0.0.0") + .timeout(std::time::Duration::from_secs(10)) + .build()?; + + let resp = client.get(url).send()?; + let html_text = resp.text()?; + let doc = Html::parse_document(&html_text); + + let title = extract_title(&doc).unwrap_or_default(); + let icon_urls = extract_icon_urls(&doc, url); + + // download icons to cache + let cache = config::cache_dir().join("favicons"); + std::fs::create_dir_all(&cache)?; + + let mut icon_paths = Vec::new(); + for (i, icon_url) in icon_urls.iter().enumerate() { + match download_icon(&client, icon_url, &cache, i) { + Ok(path) => icon_paths.push(path), + Err(e) => log::warn!("Download icon {icon_url}: {e}"), + } + } + + // try /favicon.ico fallback + if icon_paths.is_empty() { + if let Ok(base) = url::Url::parse(url) { + let favicon_url = format!("{}://{}/favicon.ico", base.scheme(), base.host_str().unwrap_or("")); + if let Ok(path) = download_icon(&client, &favicon_url, &cache, 99) { + icon_paths.push(path); + } + } + } + + Ok(SiteInfo { title, icon_paths }) +} + +fn extract_title(doc: &Html) -> Option { + let sel = Selector::parse("title").ok()?; + doc.select(&sel) + .next() + .map(|el| el.text().collect::().trim().to_string()) + .filter(|t| !t.is_empty()) +} + +fn extract_icon_urls(doc: &Html, base_url: &str) -> Vec { + let mut urls = Vec::new(); + let base = url::Url::parse(base_url).ok(); + + // + if let Ok(sel) = Selector::parse("link[rel]") { + for el in doc.select(&sel) { + let rel = el.value().attr("rel").unwrap_or("").to_lowercase(); + if rel.contains("icon") { + if let Some(href) = el.value().attr("href") { + if let Some(abs) = resolve_url(href, &base) { + urls.push(abs); + } + } + } + } + } + + // + if let Ok(sel) = Selector::parse("meta[property='og:image']") { + for el in doc.select(&sel) { + if let Some(content) = el.value().attr("content") { + if let Some(abs) = resolve_url(content, &base) { + urls.push(abs); + } + } + } + } + + urls +} + +fn resolve_url(href: &str, base: &Option) -> Option { + if href.starts_with("http://") || href.starts_with("https://") { + return Some(href.to_string()); + } + base.as_ref()?.join(href).ok().map(|u| u.to_string()) +} + +/// Max download size per icon: 5 MB +const MAX_ICON_BYTES: usize = 5 * 1024 * 1024; + +fn download_icon( + client: &reqwest::blocking::Client, + url: &str, + cache_dir: &std::path::Path, + index: usize, +) -> Result { + let resp = client + .get(url) + .timeout(std::time::Duration::from_secs(5)) + .send()?; + + if !resp.status().is_success() { + anyhow::bail!("HTTP {}", resp.status()); + } + + // check content-length before downloading + if let Some(cl) = resp.content_length() { + if cl as usize > MAX_ICON_BYTES { + anyhow::bail!("Icon too large: {cl} bytes"); + } + } + + let bytes = resp.bytes()?; + if bytes.is_empty() { + anyhow::bail!("Empty response"); + } + if bytes.len() > MAX_ICON_BYTES { + anyhow::bail!("Icon too large: {} bytes", bytes.len()); + } + + // determine extension from content or URL + let ext = guess_extension(url, &bytes); + let filename = format!("icon_{index}.{ext}"); + let path = cache_dir.join(&filename); + + // convert ICO → PNG if needed + if ext == "ico" { + if let Ok(img) = image::load_from_memory(&bytes) { + let png_path = cache_dir.join(format!("icon_{index}.png")); + if img.save(&png_path).is_ok() { + return Ok(png_path); + } + } + } + + std::fs::write(&path, &bytes)?; + Ok(path) +} + +fn guess_extension(url: &str, bytes: &[u8]) -> &'static str { + // check magic bytes + if bytes.starts_with(b"\x89PNG") { + return "png"; + } + if bytes.starts_with(b" PathBuf { + config::data_dir().join("webapps.json") +} + +// -- webapp CRUD -- + +pub fn load_webapps() -> WebAppCollection { + let path = webapps_json_path(); + if !path.exists() { + return WebAppCollection::default(); + } + match fs::read_to_string(&path) { + Ok(data) => match serde_json::from_str::>(&data) { + Ok(vals) => WebAppCollection::load_from_json(&vals), + Err(e) => { + log::error!("Parse webapps.json: {e}"); + WebAppCollection::default() + } + }, + Err(e) => { + log::error!("Read webapps.json: {e}"); + WebAppCollection::default() + } + } +} + +pub fn save_webapps(collection: &WebAppCollection) -> Result<()> { + let dir = config::data_dir(); + fs::create_dir_all(&dir)?; + let json = serde_json::to_string_pretty(&collection.webapps)?; + fs::write(webapps_json_path(), json)?; + Ok(()) +} + +pub fn create_webapp(webapp: &WebApp) -> Result<()> { + let mut col = load_webapps(); + col.add(webapp.clone()); + save_webapps(&col)?; + desktop::install_desktop_entry(webapp)?; + Ok(()) +} + +pub fn update_webapp(webapp: &WebApp) -> Result<()> { + let mut col = load_webapps(); + col.remove_by_file(&webapp.app_file); + col.add(webapp.clone()); + save_webapps(&col)?; + desktop::install_desktop_entry(webapp)?; + Ok(()) +} + +pub fn delete_webapp(webapp: &WebApp, delete_profile: bool) -> Result<()> { + let mut col = load_webapps(); + col.remove_by_file(&webapp.app_file); + save_webapps(&col)?; + desktop::remove_desktop_entry(webapp)?; + + if delete_profile { + cleanup_profile(webapp); + } + // cleanup viewer data if app mode + if webapp.app_mode == webapps_core::models::AppMode::App { + cleanup_viewer_data(&webapp.app_url); + } + Ok(()) +} + +pub fn delete_all_webapps() -> Result<()> { + let col = load_webapps(); + for app in &col.webapps { + let _ = desktop::remove_desktop_entry(app); + if app.app_mode == webapps_core::models::AppMode::App { + cleanup_viewer_data(&app.app_url); + } + } + save_webapps(&WebAppCollection::default())?; + Ok(()) +} + +fn cleanup_viewer_data(url: &str) { + let app_id = desktop::desktop_file_id(url); + // geometry config + let geom = config::config_dir().join(format!("{app_id}.json")); + let _ = fs::remove_file(geom); + // session data + let data = config::data_dir().join(&app_id); + let _ = fs::remove_dir_all(data); + // cache + let cache = config::cache_dir().join(&app_id); + let _ = fs::remove_dir_all(cache); +} + +fn cleanup_profile(webapp: &WebApp) { + let profile_dir = config::profiles_dir() + .join(&webapp.browser) + .join(&webapp.app_profile); + if profile_dir.exists() { + let _ = fs::remove_dir_all(&profile_dir); + log::info!("Removed profile: {}", profile_dir.display()); + } +} + +/// Check if any other webapp shares same browser+profile +pub fn profile_shared(webapp: &WebApp) -> bool { + let col = load_webapps(); + col.webapps.iter().any(|a| { + a.app_file != webapp.app_file + && a.browser == webapp.browser + && a.app_profile == webapp.app_profile + }) +} + +// -- browser detection -- + +pub fn detect_browsers() -> BrowserCollection { + let known_browsers = [ + ("firefox", "/usr/bin/firefox"), + ("firefox-developer-edition", "/usr/bin/firefox-developer-edition"), + ("librewolf", "/usr/bin/librewolf"), + ("google-chrome-stable", "/usr/bin/google-chrome-stable"), + ("google-chrome-beta", "/usr/bin/google-chrome-beta"), + ("google-chrome-unstable", "/usr/bin/google-chrome-unstable"), + ("chromium", "/usr/bin/chromium"), + ("brave-browser", "/usr/bin/brave-browser-stable"), + ("brave-browser-beta", "/usr/bin/brave-browser-beta"), + ("brave-browser-nightly", "/usr/bin/brave-browser-nightly"), + ("microsoft-edge-stable", "/usr/bin/microsoft-edge-stable"), + ("microsoft-edge-beta", "/usr/bin/microsoft-edge-beta"), + ("vivaldi-stable", "/usr/bin/vivaldi-stable"), + ("vivaldi-beta", "/usr/bin/vivaldi-beta"), + ("vivaldi-snapshot", "/usr/bin/vivaldi-snapshot"), + ("ungoogled-chromium", "/usr/bin/ungoogled-chromium"), + ]; + + let mut browsers: Vec = Vec::new(); + + for (id, path) in &known_browsers { + if Path::new(path).exists() { + browsers.push(Browser { + browser_id: id.to_string(), + is_default: false, + }); + } + } + + // detect flatpak browsers + if let Ok(output) = std::process::Command::new("flatpak") + .args(["list", "--app", "--columns=application"]) + .output() + { + let stdout = String::from_utf8_lossy(&output.stdout); + let flatpak_map = [ + ("org.mozilla.firefox", "flatpak-firefox"), + ("com.google.Chrome", "flatpak-google-chrome-stable"), + ("org.chromium.Chromium", "flatpak-chromium"), + ("com.brave.Browser", "flatpak-brave-browser"), + ("com.microsoft.Edge", "flatpak-microsoft-edge-stable"), + ("com.vivaldi.Vivaldi", "flatpak-vivaldi-stable"), + ("io.gitlab.librewolf-community", "flatpak-librewolf"), + ]; + for (flatpak_id, browser_id) in &flatpak_map { + if stdout.lines().any(|l| l.trim() == *flatpak_id) { + browsers.push(Browser { + browser_id: browser_id.to_string(), + is_default: false, + }); + } + } + } + + // detect system default + let default_id = detect_default_browser(); + + let mut col = BrowserCollection { + browsers, + default_id: None, + }; + if let Some(id) = default_id { + col.set_default(&id); + } + col +} + +fn detect_default_browser() -> Option { + let output = std::process::Command::new("xdg-settings") + .args(["get", "default-web-browser"]) + .output() + .ok()?; + let desktop_name = String::from_utf8_lossy(&output.stdout).trim().to_string(); + if desktop_name.is_empty() { + return None; + } + match_desktop_to_browser(&desktop_name) +} + +fn match_desktop_to_browser(desktop: &str) -> Option { + let d = desktop.to_lowercase(); + let mappings = [ + ("firefox", "firefox"), + ("firefox-developer", "firefox-developer-edition"), + ("librewolf", "librewolf"), + ("google-chrome-stable", "google-chrome-stable"), + ("google-chrome-beta", "google-chrome-beta"), + ("google-chrome-unstable", "google-chrome-unstable"), + ("chromium", "chromium"), + ("brave-browser-stable", "brave-browser"), + ("brave-browser-beta", "brave-browser-beta"), + ("brave-browser-nightly", "brave-browser-nightly"), + ("microsoft-edge-stable", "microsoft-edge-stable"), + ("microsoft-edge-beta", "microsoft-edge-beta"), + ("vivaldi-stable", "vivaldi-stable"), + ("vivaldi-beta", "vivaldi-beta"), + ("vivaldi-snapshot", "vivaldi-snapshot"), + ]; + for (pattern, id) in &mappings { + if d.contains(pattern) { + return Some(id.to_string()); + } + } + None +} + +// -- export / import -- + +pub fn export_webapps(zip_path: &Path) -> Result { + let col = load_webapps(); + if col.webapps.is_empty() { + return Ok("no_webapps".into()); + } + + let file = fs::File::create(zip_path).context("Create zip file")?; + let mut zip = zip::ZipWriter::new(file); + let options = zip::write::SimpleFileOptions::default() + .compression_method(zip::CompressionMethod::Deflated); + + // write manifest + let manifest = serde_json::to_string_pretty(&col.webapps)?; + zip.start_file("webapps.json", options)?; + zip.write_all(manifest.as_bytes())?; + + // copy icons + for app in &col.webapps { + if app.app_icon_url.is_empty() { + continue; + } + let icon_path = Path::new(&app.app_icon_url); + if icon_path.is_file() { + let fname = icon_path + .file_name() + .map(|n| n.to_string_lossy().to_string()) + .unwrap_or_default(); + if !fname.is_empty() { + zip.start_file(format!("icons/{fname}"), options)?; + let mut f = fs::File::open(icon_path)?; + let mut buf = Vec::new(); + f.read_to_end(&mut buf)?; + zip.write_all(&buf)?; + } + } + } + + zip.finish()?; + Ok("ok".into()) +} + +pub fn import_webapps(zip_path: &Path) -> Result<(usize, usize)> { + let file = fs::File::open(zip_path).context("Open zip file")?; + let mut archive = zip::ZipArchive::new(file)?; + + // read manifest + let manifest = { + let mut entry = archive.by_name("webapps.json")?; + let mut buf = String::new(); + entry.read_to_string(&mut buf)?; + buf + }; + let imported_apps: Vec = serde_json::from_str(&manifest)?; + + // extract icons + let icons_dir = config::data_dir().join("icons"); + fs::create_dir_all(&icons_dir)?; + let icons_canonical = icons_dir.canonicalize()?; + for i in 0..archive.len() { + let mut entry = archive.by_index(i)?; + let name = entry.name().to_string(); + if name.starts_with("icons/") { + let fname = name.strip_prefix("icons/").unwrap_or(&name); + // strict filename: must be non-empty, no path separators, no .. + if fname.is_empty() + || fname.contains('/') + || fname.contains('\\') + || fname.contains("..") + { + continue; + } + let dest = icons_dir.join(fname); + // verify dest stays within icons_dir + if let Ok(canonical) = dest.parent().map(|p| p.canonicalize()).transpose() { + if canonical.as_deref() != Some(icons_canonical.as_path()) { + continue; + } + } + let mut out = fs::File::create(&dest)?; + std::io::copy(&mut entry, &mut out)?; + } + } + + // import webapps, skip duplicates + let existing = load_webapps(); + let mut imported = 0usize; + let mut duplicates = 0usize; + + for app in imported_apps { + let is_dup = existing.webapps.iter().any(|e| { + e.app_name == app.app_name && e.app_url == app.app_url + }); + if is_dup { + duplicates += 1; + continue; + } + // generate new app_file + let mut new_app = app; + new_app.app_file = generate_app_file(&new_app.browser, &new_app.app_url); + if let Err(e) = create_webapp(&new_app) { + log::error!("Import webapp {}: {e}", new_app.app_name); + } else { + imported += 1; + } + } + + Ok((imported, duplicates)) +} + +/// Migrate existing .desktop files from legacy big-webapps into webapps.json. +/// Scans ~/.local/share/applications/ for files matching pattern: +/// `{browser}-*.desktop` with `Exec=big-webapps-exec` or `Exec=big-webapps-viewer`. +/// Returns count of migrated apps. +pub fn migrate_legacy_desktops() -> usize { + let json_path = webapps_json_path(); + if json_path.exists() { + // already has data — skip migration + return 0; + } + + let apps_dir = config::applications_dir(); + let entries = match fs::read_dir(&apps_dir) { + Ok(e) => e, + Err(_) => return 0, + }; + + let mut webapps: Vec = Vec::new(); + + for entry in entries.flatten() { + let fname = entry.file_name().to_string_lossy().to_string(); + if !fname.ends_with(".desktop") { + continue; + } + + let content = match fs::read_to_string(entry.path()) { + Ok(c) => c, + Err(_) => continue, + }; + + // only import big-webapps desktop files + if !content.contains("big-webapps-exec") && !content.contains("big-webapps-viewer") { + continue; + } + + if let Some(app) = parse_legacy_desktop(&fname, &content) { + webapps.push(app); + } + } + + let count = webapps.len(); + if count > 0 { + let col = WebAppCollection { webapps }; + if let Err(e) = save_webapps(&col) { + log::error!("Save migrated webapps: {e}"); + return 0; + } + log::info!("Migrated {count} legacy webapps"); + } + + count +} + +/// Parse a legacy .desktop file into WebApp struct +fn parse_legacy_desktop(filename: &str, content: &str) -> Option { + let mut app = WebApp::default(); + app.app_file = filename.to_string(); + + for line in content.lines() { + let line = line.trim(); + // stop at Desktop Action sections — only parse [Desktop Entry] + if line.starts_with("[Desktop Action") || (line.starts_with('[') && line != "[Desktop Entry]" && !line.starts_with("#")) { + if !app.app_name.is_empty() { + break; + } + continue; + } + if let Some(val) = line.strip_prefix("Name=") { + app.app_name = val.to_string(); + } else if let Some(val) = line.strip_prefix("Icon=") { + app.app_icon = val.to_string(); + } else if let Some(val) = line.strip_prefix("Categories=") { + app.app_categories = val.to_string(); + } else if let Some(val) = line.strip_prefix("MimeType=") { + app.mime_types = val.to_string(); + } else if let Some(val) = line.strip_prefix("Comment=") { + app.comment = val.to_string(); + } else if let Some(val) = line.strip_prefix("Exec=") { + parse_exec_line(val, &mut app); + } + } + + // minimal validation + if app.app_name.is_empty() || app.app_url.is_empty() { + return None; + } + + Some(app) +} + +/// Extract browser, url, profile, mode from Exec= line +fn parse_exec_line(exec: &str, app: &mut WebApp) { + if exec.starts_with("big-webapps-viewer") { + app.app_mode = webapps_core::models::AppMode::App; + app.browser = "__viewer__".to_string(); + + // --url="..." --name="..." --icon="..." --app-id="..." + for part in shell_split(exec) { + if let Some(val) = part.strip_prefix("--url=") { + app.app_url = val.trim_matches('"').to_string(); + } else if let Some(val) = part.strip_prefix("--icon=") { + let icon = val.trim_matches('"'); + if !icon.is_empty() { + app.app_icon = icon.to_string(); + } + } + } + } else if exec.starts_with("big-webapps-exec") { + app.app_mode = webapps_core::models::AppMode::Browser; + + let parts = shell_split(exec); + // format: big-webapps-exec filename="..." browser --class="..." --profile-directory=X --app="URL" + for (i, part) in parts.iter().enumerate() { + if let Some(val) = part.strip_prefix("filename=") { + app.app_file = val.trim_matches('"').to_string(); + } else if let Some(val) = part.strip_prefix("--app=") { + app.app_url = val.trim_matches('"').to_string(); + } else if let Some(val) = part.strip_prefix("--profile-directory=") { + app.app_profile = val.trim_matches('"').to_string(); + } else if i == 2 && !part.starts_with('-') && !part.contains('=') { + // browser name is the 3rd token (index 2) + app.browser = part.to_string(); + } + } + } +} + +/// Simple tokenizer that respects quotes in Exec lines +fn shell_split(s: &str) -> Vec { + let mut tokens = Vec::new(); + let mut current = String::new(); + let mut in_quote = false; + let mut quote_char = ' '; + + for ch in s.chars() { + match ch { + '"' | '\'' if !in_quote => { + in_quote = true; + quote_char = ch; + } + c if c == quote_char && in_quote => { + in_quote = false; + } + ' ' if !in_quote => { + if !current.is_empty() { + tokens.push(std::mem::take(&mut current)); + } + } + _ => current.push(ch), + } + } + if !current.is_empty() { + tokens.push(current); + } + tokens +} + +pub fn generate_app_file(browser: &str, url: &str) -> String { + // short browser name — matches original big-webapps script + let short = if browser == "__viewer__" { + "viewer" + } else { + let b = browser.to_lowercase(); + if b.contains("chrom") { + "chrome" + } else if b.contains("brave") { + "brave" + } else if b.contains("edge") { + "msedge" + } else if b.contains("vivaldi") { + "vivaldi" + } else { + browser + } + }; + + // url → path component: strip scheme, strip query, / → __ + let cleaned = url + .replace("https://", "") + .replace("http://", ""); + let cleaned = cleaned.split('?').next().unwrap_or(&cleaned); + let cleaned = cleaned.replace('/', "__"); + + // keep first __ occurrence, replace subsequent with _ + let mut filename = format!("{short}-{cleaned}-Default.desktop"); + if !filename.contains("__") { + filename = filename.replace("-Default", "__-Default"); + } + + // dedup: check existing files + let apps_dir = webapps_core::config::applications_dir(); + if apps_dir.join(&filename).exists() { + let base = filename.clone(); + let mut i = 2; + loop { + filename = base.replace(".desktop", &format!("-BigWebApp{i}.desktop")); + if !apps_dir.join(&filename).exists() { + break; + } + i += 1; + } + } + + filename +} + +// -- icon resolution -- + +/// Resolve icon to display path. Checks: absolute path → user icons → hicolor → system → theme name +pub fn resolve_icon_path(icon: &str) -> String { + if icon.is_empty() { + return "webapp-manager-generic".into(); + } + // absolute path + let p = Path::new(icon); + if p.is_absolute() && p.exists() { + return icon.to_string(); + } + // user-local icons (flat) + let local_icons = dirs::data_dir() + .unwrap_or_else(|| PathBuf::from("/tmp")) + .join("icons"); + for ext in &["png", "svg", "xpm"] { + let candidate = local_icons.join(format!("{icon}.{ext}")); + if candidate.exists() { + return candidate.to_string_lossy().to_string(); + } + } + // user-local hicolor + let hicolor_user = local_icons.join("hicolor/scalable/apps"); + for ext in &["svg", "png"] { + let candidate = hicolor_user.join(format!("{icon}.{ext}")); + if candidate.exists() { + return candidate.to_string_lossy().to_string(); + } + } + // system hicolor + let hicolor_sys = PathBuf::from("/usr/share/icons/hicolor/scalable/apps"); + for ext in &["svg", "png"] { + let candidate = hicolor_sys.join(format!("{icon}.{ext}")); + if candidate.exists() { + return candidate.to_string_lossy().to_string(); + } + } + // system icons dir (biglinux-specific) + let sys = config::system_icons_dir(); + for ext in &["svg", "png"] { + let candidate = sys.join(format!("{icon}.{ext}")); + if candidate.exists() { + return candidate.to_string_lossy().to_string(); + } + } + // fallback: return as icon-name for GTK theme lookup + icon.to_string() +} + +/// Check if welcome dialog should show (first run) +pub fn should_show_welcome() -> bool { + let flag = config::config_dir().join("welcome_shown.json"); + !flag.exists() +} + +pub fn mark_welcome_shown() { + let dir = config::config_dir(); + let _ = fs::create_dir_all(&dir); + let _ = fs::write(dir.join("welcome_shown.json"), "true"); +} diff --git a/crates/webapps-manager/src/template_gallery.rs b/crates/webapps-manager/src/template_gallery.rs new file mode 100644 index 00000000..023c84b9 --- /dev/null +++ b/crates/webapps-manager/src/template_gallery.rs @@ -0,0 +1,179 @@ +use gtk4 as gtk; +use libadwaita as adw; + +use adw::prelude::*; +use gettextrs::gettext; +use gtk::glib; +use std::cell::RefCell; +use std::rc::Rc; +use webapps_core::templates::{build_default_registry, TemplateRegistry, WebAppTemplate}; + +/// Show template gallery. Returns selected template_id via callback. +pub fn show(parent: &impl IsA, on_selected: impl Fn(String) + 'static) { + let registry = build_default_registry(); + let selected_id: Rc>> = Rc::new(RefCell::new(None)); + + let win = adw::Window::builder() + .title(&gettext("Choose a Template")) + .default_width(600) + .default_height(500) + .modal(true) + .transient_for(parent) + .build(); + + let content = gtk::Box::new(gtk::Orientation::Vertical, 0); + + // headerbar with search + let header = adw::HeaderBar::new(); + let search_entry = gtk::SearchEntry::new(); + search_entry.set_placeholder_text(Some(&gettext("Search templates..."))); + search_entry.set_hexpand(true); + header.set_title_widget(Some(&search_entry)); + content.append(&header); + + // scrollable content + let scroll = gtk::ScrolledWindow::new(); + scroll.set_vexpand(true); + scroll.set_hscrollbar_policy(gtk::PolicyType::Never); + + let main_box = gtk::Box::new(gtk::Orientation::Vertical, 16); + main_box.set_margin_top(12); + main_box.set_margin_bottom(12); + main_box.set_margin_start(12); + main_box.set_margin_end(12); + + scroll.set_child(Some(&main_box)); + content.append(&scroll); + + // initial populate + populate_all(&main_box, ®istry, &selected_id, &win); + + // search handler + { + let mb = main_box.clone(); + let reg = registry; + let sel = selected_id.clone(); + let w = win.clone(); + search_entry.connect_search_changed(move |entry| { + let query = entry.text().to_string(); + clear_box(&mb); + if query.is_empty() { + populate_all(&mb, ®, &sel, &w); + } else { + populate_search(&mb, ®, &query, &sel, &w); + } + }); + } + + // on close: fire callback if template was selected + { + let sel = selected_id.clone(); + win.connect_destroy(move |_| { + if let Some(id) = sel.borrow_mut().take() { + on_selected(id); + } + }); + } + + // ESC to close + let esc = gtk::EventControllerKey::new(); + { + let w = win.clone(); + esc.connect_key_pressed(move |_, key, _, _| { + if key == gtk::gdk::Key::Escape { + w.close(); + glib::Propagation::Stop + } else { + glib::Propagation::Proceed + } + }); + } + win.add_controller(esc); + + win.set_content(Some(&content)); + win.present(); +} + +fn populate_all( + container: >k::Box, + registry: &TemplateRegistry, + selected: &Rc>>, + win: &adw::Window, +) { + let mut categories = registry.categories(); + categories.sort(); + for cat in &categories { + let templates = registry.get_by_category(cat); + if templates.is_empty() { + continue; + } + add_category_section(container, cat, &templates, selected, win); + } +} + +fn populate_search( + container: >k::Box, + registry: &TemplateRegistry, + query: &str, + selected: &Rc>>, + win: &adw::Window, +) { + let results = registry.search(query); + if results.is_empty() { + let label = gtk::Label::new(Some(&gettext("No templates found"))); + label.add_css_class("dim-label"); + label.set_margin_top(24); + container.append(&label); + return; + } + add_category_section(container, &gettext("Search Results"), &results, selected, win); +} + +fn add_category_section( + container: >k::Box, + category: &str, + templates: &[&WebAppTemplate], + selected: &Rc>>, + win: &adw::Window, +) { + // category header + let header = gtk::Label::new(Some(category)); + header.set_halign(gtk::Align::Start); + header.add_css_class("title-4"); + header.set_margin_top(8); + container.append(&header); + + // use a ListBox with ActionRows instead of FlowBox for simplicity + let listbox = gtk::ListBox::new(); + listbox.add_css_class("boxed-list"); + listbox.set_selection_mode(gtk::SelectionMode::None); + + for tpl in templates { + let row = adw::ActionRow::builder() + .title(&tpl.name) + .subtitle(&tpl.url) + .activatable(true) + .build(); + let icon = gtk::Image::from_icon_name(&tpl.icon); + icon.set_pixel_size(32); + row.add_prefix(&icon); + + let sel = selected.clone(); + let tid = tpl.template_id.clone(); + let w = win.clone(); + row.connect_activated(move |_| { + *sel.borrow_mut() = Some(tid.clone()); + w.close(); + }); + + listbox.append(&row); + } + + container.append(&listbox); +} + +fn clear_box(bx: >k::Box) { + while let Some(child) = bx.first_child() { + bx.remove(&child); + } +} diff --git a/crates/webapps-manager/src/webapp_dialog.rs b/crates/webapps-manager/src/webapp_dialog.rs new file mode 100644 index 00000000..0e69aa63 --- /dev/null +++ b/crates/webapps-manager/src/webapp_dialog.rs @@ -0,0 +1,517 @@ +use gtk4 as gtk; +use libadwaita as adw; + +use adw::prelude::*; +use gettextrs::gettext; +use gtk::gio; +use gtk::glib; +use std::cell::RefCell; +use std::rc::Rc; +use webapps_core::models::{AppMode, BrowserCollection, WebApp}; +use webapps_core::templates::build_default_registry; + +use crate::{browser_dialog, favicon, service, template_gallery}; + +const CATEGORIES: &[&str] = &[ + "Webapps", + "Network", + "Office", + "Development", + "Graphics", + "AudioVideo", + "Game", + "Utility", + "System", + "Education", + "Science", +]; + +#[allow(dead_code)] +pub struct DialogResult { + pub saved: bool, + pub webapp: WebApp, +} + +/// Show the create/edit webapp dialog +pub fn show( + parent: &impl IsA, + webapp: WebApp, + browsers: Rc>, + is_new: bool, + on_done: impl Fn(DialogResult) + 'static, +) { + let webapp_cell = Rc::new(RefCell::new(webapp)); + + let dialog_title = if is_new { gettext("New WebApp") } else { gettext("Edit WebApp") }; + let win = adw::Window::builder() + .title(&dialog_title) + .default_width(680) + .default_height(600) + .modal(true) + .transient_for(parent) + .build(); + + let outer = gtk::Box::new(gtk::Orientation::Vertical, 0); + + // headerbar + let header = adw::HeaderBar::new(); + if is_new { + let tmpl_btn = gtk::Button::from_icon_name("view-grid-symbolic"); + tmpl_btn.set_tooltip_text(Some(&gettext("Templates"))); + let wc = webapp_cell.clone(); + let w = win.clone(); + tmpl_btn.connect_clicked(move |_| { + let wc2 = wc.clone(); + template_gallery::show(&w, move |template_id| { + let reg = build_default_registry(); + if let Some(tpl) = reg.get(&template_id) { + wc2.borrow_mut().apply_template(tpl); + } + // UI sync happens via rebuilding; simplified approach + }); + }); + header.pack_start(&tmpl_btn); + } + outer.append(&header); + + // overlay for loading spinner + let overlay = gtk::Overlay::new(); + + let spinner_box = gtk::Box::new(gtk::Orientation::Vertical, 8); + spinner_box.set_halign(gtk::Align::Center); + spinner_box.set_valign(gtk::Align::Center); + let spinner = gtk::Spinner::new(); + spinner.set_spinning(true); + spinner.set_width_request(32); + spinner.set_height_request(32); + spinner_box.append(&spinner); + let spin_label = gtk::Label::new(Some(&gettext("Loading..."))); + spinner_box.append(&spin_label); + spinner_box.set_visible(false); + overlay.add_overlay(&spinner_box); + + // scrollable form + let scroll = gtk::ScrolledWindow::new(); + scroll.set_vexpand(true); + scroll.set_hscrollbar_policy(gtk::PolicyType::Never); + + let clamp = adw::Clamp::new(); + clamp.set_maximum_size(600); + + let form = gtk::Box::new(gtk::Orientation::Vertical, 0); + form.set_margin_top(16); + form.set_margin_bottom(16); + form.set_margin_start(16); + form.set_margin_end(16); + + let group = adw::PreferencesGroup::new(); + + // -- URL row -- + let url_row = adw::EntryRow::builder() + .title(&gettext("URL")) + .text(&webapp_cell.borrow().app_url) + .build(); + let detect_btn = gtk::Button::from_icon_name("emblem-web-symbolic"); + detect_btn.set_tooltip_text(Some(&gettext("Detect name and icon from website"))); + detect_btn.set_valign(gtk::Align::Center); + url_row.add_suffix(&detect_btn); + group.add(&url_row); + + // -- Name row -- + let name_row = adw::EntryRow::builder() + .title(&gettext("Name")) + .text(&webapp_cell.borrow().app_name) + .build(); + group.add(&name_row); + + // -- Icon row -- + let icon_row = adw::ActionRow::builder().title(&gettext("Icon")).build(); + let icon_preview = gtk::Image::new(); + icon_preview.set_pixel_size(32); + { + let icon_path = service::resolve_icon_path(&webapp_cell.borrow().app_icon); + let p = std::path::Path::new(&icon_path); + if p.is_absolute() && p.exists() { + icon_preview.set_from_file(Some(p)); + } else { + icon_preview.set_icon_name(Some(&icon_path)); + } + } + icon_row.add_prefix(&icon_preview); + let icon_btn = gtk::Button::with_label(&gettext("Select")); + icon_btn.set_valign(gtk::Align::Center); + icon_row.add_suffix(&icon_btn); + group.add(&icon_row); + + // -- Favicon picker area (initially hidden) -- + let favicon_flow = gtk::FlowBox::new(); + favicon_flow.set_max_children_per_line(6); + favicon_flow.set_min_children_per_line(3); + favicon_flow.set_homogeneous(true); + favicon_flow.set_selection_mode(gtk::SelectionMode::Single); + favicon_flow.set_visible(false); + + // -- Category dropdown -- + let cat_model = gtk::StringList::new(CATEGORIES); + let cat_dropdown = gtk::DropDown::new(Some(cat_model), gtk::Expression::NONE); + let current_cat = webapp_cell.borrow().main_category().to_string(); + if let Some(pos) = CATEGORIES.iter().position(|c| *c == current_cat) { + cat_dropdown.set_selected(pos as u32); + } + let cat_row = adw::ActionRow::builder().title(&gettext("Category")).build(); + cat_dropdown.set_valign(gtk::Align::Center); + cat_row.add_suffix(&cat_dropdown); + group.add(&cat_row); + + // -- App mode switch -- + let mode_switch = gtk::Switch::new(); + mode_switch.set_valign(gtk::Align::Center); + mode_switch.set_active(webapp_cell.borrow().app_mode == AppMode::App); + let mode_row = adw::ActionRow::builder() + .title(&gettext("App Mode")) + .subtitle(&gettext("Opens as a native window without browser interface")) + .build(); + mode_row.add_suffix(&mode_switch); + mode_row.set_activatable_widget(Some(&mode_switch)); + group.add(&mode_row); + + // -- Browser row (hidden in app mode) -- + let browser_row = adw::ActionRow::builder().title(&gettext("Browser")).build(); + { + let br = browsers.borrow(); + let bid = &webapp_cell.borrow().browser; + let name = br + .get_by_id(bid) + .map(|b| b.display_name().to_string()) + .unwrap_or_else(|| bid.clone()); + browser_row.set_subtitle(&name); + } + let browser_btn = gtk::Button::with_label(&gettext("Select")); + browser_btn.set_valign(gtk::Align::Center); + browser_row.add_suffix(&browser_btn); + browser_row.set_visible(webapp_cell.borrow().app_mode != AppMode::App); + group.add(&browser_row); + + // -- Profile row (hidden in app mode or firefox) -- + let profile_switch = gtk::Switch::new(); + profile_switch.set_valign(gtk::Align::Center); + let has_custom_profile = webapp_cell.borrow().app_profile != "Default" + && webapp_cell.borrow().app_profile != "Browser"; + profile_switch.set_active(has_custom_profile); + let profile_row = adw::ExpanderRow::builder() + .title(&gettext("Separate Profile")) + .subtitle(&gettext("Allows independent cookies and sessions")) + .show_enable_switch(true) + .enable_expansion(has_custom_profile) + .build(); + let profile_entry = adw::EntryRow::builder() + .title(&gettext("Profile Name")) + .text(&webapp_cell.borrow().app_profile) + .build(); + profile_row.add_row(&profile_entry); + profile_row.set_visible(webapp_cell.borrow().app_mode != AppMode::App); + group.add(&profile_row); + + form.append(&group); + + // favicon picker below group + form.append(&favicon_flow); + + // -- buttons -- + let btn_box = gtk::Box::new(gtk::Orientation::Horizontal, 8); + btn_box.set_halign(gtk::Align::End); + btn_box.set_margin_top(16); + + let cancel_btn = gtk::Button::with_label(&gettext("Cancel")); + let save_label = gettext("Save"); + let save_btn = gtk::Button::with_label(&save_label); + save_btn.add_css_class("suggested-action"); + btn_box.append(&cancel_btn); + btn_box.append(&save_btn); + form.append(&btn_box); + + clamp.set_child(Some(&form)); + scroll.set_child(Some(&clamp)); + overlay.set_child(Some(&scroll)); + outer.append(&overlay); + win.set_content(Some(&outer)); + + // -- wire up signals -- + + // URL changed + { + let wc = webapp_cell.clone(); + url_row.connect_changed(move |row| { + wc.borrow_mut().app_url = row.text().to_string(); + }); + } + + // Name changed + { + let wc = webapp_cell.clone(); + name_row.connect_changed(move |row| { + wc.borrow_mut().app_name = row.text().to_string(); + }); + } + + // Category changed + { + let wc = webapp_cell.clone(); + cat_dropdown.connect_selected_notify(move |dd| { + let idx = dd.selected() as usize; + if idx < CATEGORIES.len() { + wc.borrow_mut().set_main_category(CATEGORIES[idx]); + } + }); + } + + // Mode switch + { + let wc = webapp_cell.clone(); + let br = browser_row.clone(); + let pr = profile_row.clone(); + mode_switch.connect_state_set(move |_, active| { + wc.borrow_mut().app_mode = if active { AppMode::App } else { AppMode::Browser }; + br.set_visible(!active); + pr.set_visible(!active); + glib::Propagation::Proceed + }); + } + + // Browser select + { + let wc = webapp_cell.clone(); + let br = browsers.clone(); + let brow = browser_row.clone(); + let w = win.clone(); + browser_btn.connect_clicked(move |_| { + let current = wc.borrow().browser.clone(); + let wcx = wc.clone(); + let browx = brow.clone(); + let brx = br.clone(); + let browsers_snapshot = brx.borrow().clone(); + browser_dialog::show(&w, &browsers_snapshot, ¤t, move |id| { + wcx.borrow_mut().browser = id.clone(); + let name = brx + .borrow() + .get_by_id(&id) + .map(|b| b.display_name().to_string()) + .unwrap_or(id); + browx.set_subtitle(&name); + }); + }); + } + + // Profile expansion + { + let wc = webapp_cell.clone(); + let pe = profile_entry.clone(); + profile_row.connect_enable_expansion_notify(move |row| { + if row.enables_expansion() { + let name = wc.borrow().derive_profile_name(); + wc.borrow_mut().app_profile = name.clone(); + pe.set_text(&name); + } else { + wc.borrow_mut().app_profile = "Default".into(); + } + }); + } + + // Profile name entry + { + let wc = webapp_cell.clone(); + profile_entry.connect_changed(move |row| { + let text = row.text().to_string(); + if !text.is_empty() { + wc.borrow_mut().app_profile = text; + } + }); + } + + // Detect (fetch favicon + title) + { + let wc = webapp_cell.clone(); + let nr = name_row.clone(); + let ff = favicon_flow.clone(); + let ip = icon_preview.clone(); + let sb = spinner_box.clone(); + detect_btn.connect_clicked(move |_| { + let url = wc.borrow().app_url.clone(); + if url.is_empty() { + return; + } + sb.set_visible(true); + + let (tx, rx) = std::sync::mpsc::channel::(); + + std::thread::spawn(move || { + let info = match favicon::fetch_site_info(&url) { + Ok(info) => info, + Err(e) => { + log::error!("Fetch site info: {e}"); + favicon::SiteInfo { + title: String::new(), + icon_paths: Vec::new(), + } + } + }; + let _ = tx.send(info); + }); + + // poll result from main thread + let wcr = wc.clone(); + let nrr = nr.clone(); + let ffr = ff.clone(); + let ipr = ip.clone(); + let sbr = sb.clone(); + glib::timeout_add_local(std::time::Duration::from_millis(100), move || { + match rx.try_recv() { + Ok(info) => { + sbr.set_visible(false); + if !info.title.is_empty() && nrr.text().is_empty() { + nrr.set_text(&info.title); + wcr.borrow_mut().app_name = info.title.clone(); + } + if !info.icon_paths.is_empty() { + while let Some(c) = ffr.first_child() { + ffr.remove(&c); + } + for path in &info.icon_paths { + let img = gtk::Image::new(); + img.set_pixel_size(48); + img.set_from_file(Some(path)); + ffr.append(&img); + } + ffr.set_visible(true); + + if let Some(first) = info.icon_paths.first() { + let path_str = first.to_string_lossy().to_string(); + ipr.set_from_file(Some(first)); + wcr.borrow_mut().app_icon = path_str.clone(); + wcr.borrow_mut().app_icon_url = path_str; + } + } + glib::ControlFlow::Break + } + Err(std::sync::mpsc::TryRecvError::Empty) => glib::ControlFlow::Continue, + Err(_) => { + sbr.set_visible(false); + glib::ControlFlow::Break + } + } + }); + + // favicon picker selection + let wcc = wc.clone(); + let ipc = ip.clone(); + ff.connect_child_activated(move |_, child| { + if let Some(img) = child.child().and_then(|c| c.downcast::().ok()) { + if let Some(file) = img.file() { + let path = file.to_string(); + ipc.set_from_file(Some(&*path)); + wcc.borrow_mut().app_icon = path.clone(); + wcc.borrow_mut().app_icon_url = path; + } + } + }); + }); + } + + // Icon file chooser + { + let wc = webapp_cell.clone(); + let ip = icon_preview.clone(); + let w = win.clone(); + icon_btn.connect_clicked(move |_| { + let dialog = gtk::FileDialog::new(); + dialog.set_title(&gettext("Select Icon")); + let filter = gtk::FileFilter::new(); + filter.add_mime_type("image/png"); + filter.add_mime_type("image/svg+xml"); + filter.add_mime_type("image/x-icon"); + filter.set_name(Some(&gettext("Images"))); + let filters = gio::ListStore::new::(); + filters.append(&filter); + dialog.set_filters(Some(&filters)); + + let wcx = wc.clone(); + let ipx = ip.clone(); + dialog.open(Some(&w), gio::Cancellable::NONE, move |result: Result| { + if let Ok(file) = result { + if let Some(path) = file.path() { + let ps = path.to_string_lossy().to_string(); + ipx.set_from_file(Some(&path)); + wcx.borrow_mut().app_icon = ps.clone(); + wcx.borrow_mut().app_icon_url = ps; + } + } + }); + }); + } + + // Cancel + { + let w = win.clone(); + cancel_btn.connect_clicked(move |_| w.close()); + } + + // Save + { + let wc = webapp_cell.clone(); + let w = win.clone(); + save_btn.connect_clicked(move |_| { + let app = wc.borrow().clone(); + + // validate + if app.app_name.trim().is_empty() || app.app_url.trim().is_empty() { + return; + } + + // validate URL format + let url_str = app.app_url.trim(); + let test_url = if !url_str.starts_with("http://") && !url_str.starts_with("https://") && !url_str.starts_with("file://") { + format!("https://{url_str}") + } else { + url_str.to_string() + }; + if url::Url::parse(&test_url).is_err() { + return; + } + + let ok = if is_new { + service::create_webapp(&app).is_ok() + } else { + service::update_webapp(&app).is_ok() + }; + w.close(); + on_done(DialogResult { + saved: ok, + webapp: app, + }); + }); + } + + // ESC + let esc = gtk::EventControllerKey::new(); + { + let w = win.clone(); + esc.connect_key_pressed(move |_, key, _, _| { + if key == gtk::gdk::Key::Escape { + w.close(); + glib::Propagation::Stop + } else { + glib::Propagation::Proceed + } + }); + } + win.add_controller(esc); + + win.present(); + + // focus URL if new, name if edit + if is_new { + url_row.grab_focus(); + } else { + name_row.grab_focus(); + } +} diff --git a/crates/webapps-manager/src/webapp_row.rs b/crates/webapps-manager/src/webapp_row.rs new file mode 100644 index 00000000..fb072ea5 --- /dev/null +++ b/crates/webapps-manager/src/webapp_row.rs @@ -0,0 +1,116 @@ +use gtk4 as gtk; +use gtk4::gdk as gdk4; +use libadwaita as adw; + +use adw::prelude::*; +use gettextrs::gettext; +use webapps_core::models::WebApp; + +use crate::service; + +/// Callbacks from webapp row actions +pub struct RowCallbacks { + pub on_edit: Box, + pub on_browser: Box, + pub on_delete: Box, +} + +/// Build a row widget for a webapp in the list +pub fn build_row(webapp: &WebApp, callbacks: &std::rc::Rc) -> gtk::ListBoxRow { + let hbox = gtk::Box::new(gtk::Orientation::Horizontal, 12); + hbox.set_margin_top(8); + hbox.set_margin_bottom(8); + hbox.set_margin_start(12); + hbox.set_margin_end(12); + + // icon + let icon = gtk::Image::new(); + icon.set_pixel_size(64); + let icon_path = service::resolve_icon_path(&webapp.app_icon); + let p = std::path::Path::new(&icon_path); + if p.is_absolute() && p.exists() { + // load from file — use paintable for SVGs to get crisp rendering + if icon_path.ends_with(".svg") { + if let Ok(tex) = gdk4::Texture::from_filename(p) { + icon.set_paintable(Some(&tex)); + } else { + icon.set_from_file(Some(p)); + } + } else { + icon.set_from_file(Some(p)); + } + } else { + icon.set_icon_name(Some(&icon_path)); + } + hbox.append(&icon); + + // info column + let info = gtk::Box::new(gtk::Orientation::Vertical, 2); + info.set_hexpand(true); + info.set_valign(gtk::Align::Center); + + let name_label = gtk::Label::new(Some(&webapp.app_name)); + name_label.set_halign(gtk::Align::Start); + name_label.set_ellipsize(gtk::pango::EllipsizeMode::End); + name_label.add_css_class("heading"); + info.append(&name_label); + + let url_label = gtk::Label::new(Some(&webapp.app_url)); + url_label.set_halign(gtk::Align::Start); + url_label.set_ellipsize(gtk::pango::EllipsizeMode::End); + url_label.add_css_class("dim-label"); + url_label.add_css_class("caption"); + info.append(&url_label); + + hbox.append(&info); + + // action buttons — linked group + let actions = gtk::Box::new(gtk::Orientation::Horizontal, 0); + actions.add_css_class("linked"); + actions.set_valign(gtk::Align::Center); + + // browser indicator button + let browser_icon_name = webapps_core::models::Browser { + browser_id: webapp.browser.clone(), + is_default: false, + }.icon_name(); + let browser_btn = gtk::Button::from_icon_name(&browser_icon_name); + browser_btn.set_tooltip_text(Some(&gettext("Change browser"))); + browser_btn.add_css_class("flat"); + { + let cb = callbacks.clone(); + let app = webapp.clone(); + browser_btn.connect_clicked(move |_| (cb.on_browser)(&app)); + } + actions.append(&browser_btn); + + // edit button + let edit_btn = gtk::Button::from_icon_name("document-edit-symbolic"); + edit_btn.set_tooltip_text(Some(&gettext("Edit"))); + edit_btn.add_css_class("flat"); + { + let cb = callbacks.clone(); + let app = webapp.clone(); + edit_btn.connect_clicked(move |_| (cb.on_edit)(&app)); + } + actions.append(&edit_btn); + + // delete button + let del_btn = gtk::Button::from_icon_name("user-trash-symbolic"); + del_btn.set_tooltip_text(Some(&gettext("Delete"))); + del_btn.add_css_class("flat"); + del_btn.add_css_class("error"); + { + let cb = callbacks.clone(); + let app = webapp.clone(); + del_btn.connect_clicked(move |_| (cb.on_delete)(&app)); + } + actions.append(&del_btn); + + hbox.append(&actions); + + let row = gtk::ListBoxRow::new(); + row.set_child(Some(&hbox)); + row.set_activatable(true); + row +} diff --git a/crates/webapps-manager/src/welcome_dialog.rs b/crates/webapps-manager/src/welcome_dialog.rs new file mode 100644 index 00000000..7a304daf --- /dev/null +++ b/crates/webapps-manager/src/welcome_dialog.rs @@ -0,0 +1,151 @@ +use gtk4 as gtk; +use libadwaita as adw; + +use adw::prelude::*; +use gettextrs::gettext; + +use crate::service; + +/// Show welcome dialog if first run. Returns immediately. +pub fn show_if_needed(parent: &adw::ApplicationWindow) { + if !service::should_show_welcome() { + return; + } + let dialog = build_dialog(parent); + dialog.present(); +} + +fn build_dialog(parent: &adw::ApplicationWindow) -> adw::Window { + let dialog = adw::Window::builder() + .title(&gettext("Welcome to WebApps Manager")) + .transient_for(parent) + .modal(true) + .destroy_with_parent(true) + .width_request(640) + .height_request(400) + .build(); + + // ESC → close + let key_ctrl = gtk::EventControllerKey::new(); + key_ctrl.connect_key_pressed({ + let dialog_weak = dialog.downgrade(); + move |_, key, _, _| { + if key == gdk4::Key::Escape { + if let Some(d) = dialog_weak.upgrade() { + d.destroy(); + } + return glib::Propagation::Stop; + } + glib::Propagation::Proceed + } + }); + dialog.add_controller(key_ctrl); + + let main_box = gtk::Box::new(gtk::Orientation::Vertical, 0); + + // flat headerbar + let headerbar = adw::HeaderBar::builder() + .show_title(false) + .build(); + headerbar.add_css_class("flat"); + main_box.append(&headerbar); + + // content + let content = gtk::Box::builder() + .orientation(gtk::Orientation::Vertical) + .spacing(12) + .margin_top(12) + .margin_bottom(24) + .margin_start(24) + .margin_end(24) + .build(); + + // icon + title + let icon = gtk::Image::from_icon_name("big-webapps"); + icon.set_pixel_size(64); + icon.set_halign(gtk::Align::Center); + content.append(&icon); + + let title = gtk::Label::builder() + .label(&format!("{}", gettext("Welcome to WebApps Manager"))) + .use_markup(true) + .halign(gtk::Align::Center) + .build(); + content.append(&title); + + // explanation + let explanation = gtk::Label::builder() + .label(&format!( + "{}\n\n{}\n\n{}\n\n\ + \u{2022} {}: {}\n\ + \u{2022} {}: {}\n\ + \u{2022} {}: {}", + gettext("What are WebApps?"), + gettext("WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites."), + gettext("Benefits of using WebApps:"), + gettext("Focus"), gettext("Work without the distractions of other browser tabs"), + gettext("Desktop Integration"), gettext("Quick access from your application menu"), + gettext("Isolated Profiles"), gettext("Each webapp can have its own cookies and settings"), + )) + .use_markup(true) + .wrap(true) + .max_width_chars(60) + .halign(gtk::Align::Start) + .margin_top(12) + .margin_bottom(12) + .build(); + content.append(&explanation); + + // separator + let sep = gtk::Separator::new(gtk::Orientation::Horizontal); + sep.set_margin_top(12); + content.append(&sep); + + // "don't show again" switch + let switch_box = gtk::Box::builder() + .orientation(gtk::Orientation::Horizontal) + .spacing(12) + .margin_top(12) + .build(); + + let switch_label = gtk::Label::builder() + .label(&gettext("Don't show this again")) + .xalign(0.0) + .hexpand(true) + .build(); + let show_switch = gtk::Switch::builder() + .valign(gtk::Align::Center) + .active(false) + .build(); + + switch_box.append(&switch_label); + switch_box.append(&show_switch); + content.append(&switch_box); + + // "Let's Start" button + let btn = gtk::Button::builder() + .label(&gettext("Let's Start")) + .halign(gtk::Align::Center) + .margin_top(24) + .build(); + btn.add_css_class("suggested-action"); + btn.connect_clicked({ + let dialog_weak = dialog.downgrade(); + let sw = show_switch.clone(); + move |_| { + // switch ON = "don't show" → mark shown + if sw.is_active() { + service::mark_welcome_shown(); + } + if let Some(d) = dialog_weak.upgrade() { + d.destroy(); + } + } + }); + content.append(&btn); + + main_box.append(&content); + dialog.set_content(Some(&main_box)); + + dialog +} diff --git a/crates/webapps-manager/src/window.rs b/crates/webapps-manager/src/window.rs new file mode 100644 index 00000000..98ab975a --- /dev/null +++ b/crates/webapps-manager/src/window.rs @@ -0,0 +1,568 @@ +use gtk4 as gtk; +use libadwaita as adw; + +use adw::prelude::*; +use gettextrs::gettext; +use gtk::gio; +use gtk::glib; +use std::cell::RefCell; +use std::rc::Rc; +use webapps_core::config; +use webapps_core::models::{BrowserCollection, WebApp, WebAppCollection}; + +use crate::{browser_dialog, service, webapp_dialog, webapp_row}; + +struct AppState { + webapps: WebAppCollection, + browsers: BrowserCollection, + filter_text: String, +} + +pub fn build(app: &adw::Application) { + // migrate legacy .desktop files on first run + let migrated = service::migrate_legacy_desktops(); + if migrated > 0 { + log::info!("Migrated {migrated} legacy webapps from .desktop files"); + } + + let state = Rc::new(RefCell::new(AppState { + webapps: service::load_webapps(), + browsers: service::detect_browsers(), + filter_text: String::new(), + })); + let browsers = Rc::new(RefCell::new(state.borrow().browsers.clone())); + + let win = adw::ApplicationWindow::builder() + .application(app) + .title(&gettext("WebApps Manager")) + .default_width(800) + .default_height(650) + .build(); + + // toast overlay + let toast_overlay = adw::ToastOverlay::new(); + + let main_box = gtk::Box::new(gtk::Orientation::Vertical, 0); + + // -- headerbar -- + let header = adw::HeaderBar::new(); + + // search toggle + let search_btn = gtk::ToggleButton::new(); + search_btn.set_icon_name("system-search-symbolic"); + search_btn.set_tooltip_text(Some(&gettext("Search WebApps"))); + header.pack_start(&search_btn); + + // add button + let add_btn = gtk::Button::from_icon_name("list-add-symbolic"); + add_btn.set_tooltip_text(Some(&gettext("Add WebApp"))); + header.pack_start(&add_btn); + + // menu + let menu = gio::Menu::new(); + menu.append(Some(&gettext("Import WebApps")), Some("win.import")); + menu.append(Some(&gettext("Export WebApps")), Some("win.export")); + menu.append(Some(&gettext("Browse Applications Folder")), Some("win.browse-apps")); + menu.append(Some(&gettext("Browse Profiles Folder")), Some("win.browse-profiles")); + + let danger = gio::Menu::new(); + danger.append(Some(&gettext("Remove All WebApps")), Some("win.remove-all")); + menu.append_section(None, &danger); + + let about_section = gio::Menu::new(); + about_section.append(Some(&gettext("About")), Some("win.about")); + menu.append_section(None, &about_section); + + let menu_btn = gtk::MenuButton::new(); + menu_btn.set_icon_name("open-menu-symbolic"); + menu_btn.set_menu_model(Some(&menu)); + header.pack_end(&menu_btn); + + main_box.append(&header); + + // -- search bar -- + let search_bar = gtk::SearchBar::new(); + let search_entry = gtk::SearchEntry::new(); + search_entry.set_hexpand(true); + search_bar.set_child(Some(&search_entry)); + search_bar.connect_entry(&search_entry); + search_btn.bind_property("active", &search_bar, "search-mode-enabled") + .bidirectional() + .build(); + main_box.append(&search_bar); + + // -- content area -- + let scroll = gtk::ScrolledWindow::new(); + scroll.set_vexpand(true); + scroll.set_hscrollbar_policy(gtk::PolicyType::Never); + + let content_box = gtk::Box::new(gtk::Orientation::Vertical, 0); + content_box.set_margin_start(12); + content_box.set_margin_end(12); + content_box.set_margin_top(8); + content_box.set_margin_bottom(8); + scroll.set_child(Some(&content_box)); + + main_box.append(&scroll); + + toast_overlay.set_child(Some(&main_box)); + win.set_content(Some(&toast_overlay)); + + // -- populate -- + let content_ref = Rc::new(content_box); + let toast_ref = Rc::new(toast_overlay); + let win_rc = Rc::new(win); + + populate_list( + &content_ref, + &state, + &browsers, + &win_rc, + &toast_ref, + ); + + // -- search handler -- + { + let st = state.clone(); + let cr = content_ref.clone(); + let br = browsers.clone(); + let wr = win_rc.clone(); + let tr = toast_ref.clone(); + search_entry.connect_search_changed(move |entry| { + st.borrow_mut().filter_text = entry.text().to_string(); + populate_list(&cr, &st, &br, &wr, &tr); + }); + } + + // -- add button -- + { + let st = state.clone(); + let br = browsers.clone(); + let cr = content_ref.clone(); + let wr = win_rc.clone(); + let tr = toast_ref.clone(); + add_btn.connect_clicked(move |_| { + let mut new_app = WebApp::default(); + new_app.app_file = service::generate_app_file(&new_app.browser, &new_app.app_url); + if let Some(def) = br.borrow().default_browser() { + new_app.browser = def.browser_id.clone(); + } + let stx = st.clone(); + let brx = br.clone(); + let crx = cr.clone(); + let wrx = wr.clone(); + let trx = tr.clone(); + webapp_dialog::show(&*wr, new_app, br.clone(), true, move |result| { + if result.saved { + refresh_state(&stx); + populate_list(&crx, &stx, &brx, &wrx, &trx); + show_toast(&trx, &gettext("WebApp created successfully")); + } + }); + }); + } + + // -- GActions -- + + // About + let about_action = gio::SimpleAction::new("about", None); + { + let w = win_rc.clone(); + about_action.connect_activate(move |_, _| { + let about = adw::AboutDialog::builder() + .application_name(&gettext("WebApps Manager")) + .application_icon("big-webapps") + .developer_name("BigLinux") + .version(config::APP_VERSION) + .license_type(gtk::License::Gpl30) + .website("https://github.com/biglinux/biglinux-webapps") + .build(); + about.present(Some(&*w)); + }); + } + win_rc.add_action(&about_action); + + // Import + let import_action = gio::SimpleAction::new("import", None); + { + let w = win_rc.clone(); + let st = state.clone(); + let cr = content_ref.clone(); + let br = browsers.clone(); + let tr = toast_ref.clone(); + import_action.connect_activate(move |_, _| { + let dialog = gtk::FileDialog::new(); + dialog.set_title(&gettext("Import WebApps")); + let filter = gtk::FileFilter::new(); + filter.add_pattern("*.zip"); + filter.set_name(Some(&gettext("ZIP files"))); + let filters = gio::ListStore::new::(); + filters.append(&filter); + dialog.set_filters(Some(&filters)); + + let stx = st.clone(); + let crx = cr.clone(); + let brx = br.clone(); + let wrx = w.clone(); + let trx = tr.clone(); + dialog.open(Some(&*w), gio::Cancellable::NONE, move |result: Result| { + if let Ok(file) = result { + if let Some(path) = file.path() { + match service::import_webapps(&path) { + Ok((imported, dups)) => { + refresh_state(&stx); + populate_list(&crx, &stx, &brx, &wrx, &trx); + let msg = gettext("Imported {imported}, skipped {dups} duplicates").replace("{imported}", &imported.to_string()).replace("{dups}", &dups.to_string()); + show_toast(&trx, &msg); + } + Err(e) => { + show_toast(&trx, &format!("{}: {e}", gettext("Import failed"))); + } + } + } + } + }); + }); + } + win_rc.add_action(&import_action); + + // Export + let export_action = gio::SimpleAction::new("export", None); + { + let w = win_rc.clone(); + let tr = toast_ref.clone(); + export_action.connect_activate(move |_, _| { + let dialog = gtk::FileDialog::new(); + dialog.set_title(&gettext("Export WebApps")); + dialog.set_initial_name(Some("webapps-export.zip")); + + let trx = tr.clone(); + dialog.save(Some(&*w), gio::Cancellable::NONE, move |result| { + if let Ok(file) = result { + if let Some(path) = file.path() { + match service::export_webapps(&path) { + Ok(status) => { + let msg = if status == "no_webapps" { + gettext("No WebApps") + } else { + gettext("WebApps exported successfully") + }; + show_toast(&trx, &msg); + } + Err(e) => show_toast(&trx, &format!("{}: {e}", gettext("Export failed"))), + } + } + } + }); + }); + } + win_rc.add_action(&export_action); + + // Browse apps folder + let browse_apps_action = gio::SimpleAction::new("browse-apps", None); + browse_apps_action.connect_activate(|_, _| { + let path = config::applications_dir(); + let _ = open::that(path); + }); + win_rc.add_action(&browse_apps_action); + + // Browse profiles + let browse_profiles_action = gio::SimpleAction::new("browse-profiles", None); + browse_profiles_action.connect_activate(|_, _| { + let path = config::profiles_dir(); + let _ = std::fs::create_dir_all(&path); + let _ = open::that(path); + }); + win_rc.add_action(&browse_profiles_action); + + // Remove all + let remove_all_action = gio::SimpleAction::new("remove-all", None); + { + let st = state.clone(); + let cr = content_ref.clone(); + let br = browsers.clone(); + let w = win_rc.clone(); + let tr = toast_ref.clone(); + remove_all_action.connect_activate(move |_, _| { + let dialog = adw::AlertDialog::builder() + .heading(&gettext("Remove All WebApps")) + .body(&gettext("This will delete all webapps and their desktop entries. This cannot be undone.")) + .build(); + dialog.add_response("cancel", &gettext("Cancel")); + dialog.add_response("delete", &gettext("Remove All")); + dialog.set_response_appearance("delete", adw::ResponseAppearance::Destructive); + + let stx = st.clone(); + let crx = cr.clone(); + let brx = br.clone(); + let wrx = w.clone(); + let trx = tr.clone(); + dialog.connect_response(None, move |_, response| { + if response == "delete" { + if let Err(e) = service::delete_all_webapps() { + show_toast(&trx, &format!("{}: {e}", gettext("Failed to remove all WebApps"))); + } else { + refresh_state(&stx); + populate_list(&crx, &stx, &brx, &wrx, &trx); + show_toast(&trx, &gettext("All WebApps have been removed")); + } + } + }); + dialog.present(Some(&*w)); + }); + } + win_rc.add_action(&remove_all_action); + + // -- keyboard shortcuts -- + let shortcuts = gtk::ShortcutController::new(); + shortcuts.set_scope(gtk::ShortcutScope::Managed); + + // Ctrl+N → new + { + let ab = add_btn; + shortcuts.add_shortcut(gtk::Shortcut::new( + gtk::ShortcutTrigger::parse_string("n"), + Some(gtk::CallbackAction::new(move |_, _| { + ab.emit_clicked(); + glib::Propagation::Stop + })), + )); + } + + // Ctrl+F → search + { + let sb = search_btn; + shortcuts.add_shortcut(gtk::Shortcut::new( + gtk::ShortcutTrigger::parse_string("f"), + Some(gtk::CallbackAction::new(move |_, _| { + sb.set_active(!sb.is_active()); + glib::Propagation::Stop + })), + )); + } + + // Ctrl+Q → quit + { + let a = app.clone(); + shortcuts.add_shortcut(gtk::Shortcut::new( + gtk::ShortcutTrigger::parse_string("q"), + Some(gtk::CallbackAction::new(move |_, _| { + a.quit(); + glib::Propagation::Stop + })), + )); + } + + win_rc.add_controller(shortcuts); + + win_rc.present(); + + // -- welcome dialog (first run) -- + crate::welcome_dialog::show_if_needed(&win_rc); +} + +fn refresh_state(state: &Rc>) { + let mut s = state.borrow_mut(); + s.webapps = service::load_webapps(); +} + +fn populate_list( + content: &Rc, + state: &Rc>, + browsers: &Rc>, + win: &Rc, + toast: &Rc, +) { + // clear + while let Some(child) = content.first_child() { + content.remove(&child); + } + + let s = state.borrow(); + let filter = if s.filter_text.is_empty() { + None + } else { + Some(s.filter_text.as_str()) + }; + let categorized = s.webapps.categorized(filter); + + if categorized.is_empty() { + // empty state + let status = adw::StatusPage::builder() + .icon_name("big-webapps") + .title(&gettext("No WebApps")) + .description(&gettext("Add a new webapp to get started")) + .build(); + content.append(&status); + return; + } + + let mut cats: Vec<&String> = categorized.keys().collect(); + cats.sort(); + + for cat in cats { + let apps = &categorized[cat]; + if apps.is_empty() { + continue; + } + + // category header + let header = gtk::Label::new(Some(cat)); + header.set_halign(gtk::Align::Start); + header.add_css_class("title-4"); + header.set_margin_top(12); + header.set_margin_bottom(4); + content.append(&header); + + // listbox + let listbox = gtk::ListBox::new(); + listbox.add_css_class("boxed-list"); + listbox.set_selection_mode(gtk::SelectionMode::None); + + let mut sorted_apps: Vec<&&WebApp> = apps.iter().collect(); + sorted_apps.sort_by(|a, b| a.app_name.to_lowercase().cmp(&b.app_name.to_lowercase())); + + for app in sorted_apps { + let st = state.clone(); + let br = browsers.clone(); + let _cr_ref = Rc::new(content.as_ref().clone()); + let st2 = state.clone(); + let br2 = browsers.clone(); + let wr = win.clone(); + let tr = toast.clone(); + let wr2 = win.clone(); + let tr2 = toast.clone(); + let wr3 = win.clone(); + let tr3 = toast.clone(); + + let callbacks = Rc::new(webapp_row::RowCallbacks { + on_edit: { + let st = st.clone(); + let br = br.clone(); + let cr = Rc::new(content.as_ref().clone()); + let wr = wr.clone(); + let tr = tr.clone(); + Box::new(move |app: &WebApp| { + let stx = st.clone(); + let brx = br.clone(); + let crx = cr.clone(); + let wrx = wr.clone(); + let trx = tr.clone(); + let cr2 = Rc::new(crx.as_ref().clone()); + webapp_dialog::show( + &*wr, + app.clone(), + br.clone(), + false, + move |result| { + if result.saved { + refresh_state(&stx); + populate_list(&cr2, &stx, &brx, &wrx, &trx); + show_toast(&trx, &gettext("WebApp updated successfully")); + } + }, + ); + }) + }, + on_browser: { + let st = st2.clone(); + let br = br2.clone(); + let cr = Rc::new(content.as_ref().clone()); + let wr = wr2.clone(); + let tr = tr2.clone(); + Box::new(move |app: &WebApp| { + let app_cell = Rc::new(RefCell::new(app.clone())); + let stx = st.clone(); + let brx = br.clone(); + let crx = cr.clone(); + let wrx = wr.clone(); + let trx = tr.clone(); + let cr2 = Rc::new(crx.as_ref().clone()); + browser_dialog::show( + &*wr, + &br.borrow(), + &app.browser, + move |new_id| { + app_cell.borrow_mut().browser = new_id; + let updated = app_cell.borrow().clone(); + if let Err(e) = service::update_webapp(&updated) { + show_toast(&trx, &format!("Failed: {e}")); + } else { + refresh_state(&stx); + populate_list(&cr2, &stx, &brx, &wrx, &trx); + show_toast(&trx, &gettext("Browser changed")); + } + }, + ); + }) + }, + on_delete: { + let st = state.clone(); + let br = browsers.clone(); + let cr = Rc::new(content.as_ref().clone()); + let wr = wr3.clone(); + let tr = tr3.clone(); + Box::new(move |app: &WebApp| { + let dialog = adw::AlertDialog::builder() + .heading(&gettext("Delete WebApp")) + .body(format!("{}\n{}", app.app_name, app.app_url)) + .build(); + dialog.add_response("cancel", &gettext("Cancel")); + dialog.add_response("delete", &gettext("Delete")); + dialog.set_response_appearance( + "delete", + adw::ResponseAppearance::Destructive, + ); + + let shared = !service::profile_shared(app); + let has_profile = app.app_profile != "Default" + && app.app_profile != "Browser"; + + // add checkbox for profile deletion if applicable + let del_profile = Rc::new(RefCell::new(false)); + if has_profile && shared { + let check = gtk::CheckButton::with_label(&gettext("Also delete configuration folder")); + let dp = del_profile.clone(); + check.connect_toggled(move |c| { + *dp.borrow_mut() = c.is_active(); + }); + dialog.set_extra_child(Some(&check)); + } + + let app_c = app.clone(); + let stx = st.clone(); + let brx = br.clone(); + let crx = cr.clone(); + let wrx = wr.clone(); + let trx = tr.clone(); + let cr2 = Rc::new(crx.as_ref().clone()); + dialog.connect_response(None, move |_, response| { + if response == "delete" { + let dp = *del_profile.borrow(); + if let Err(e) = service::delete_webapp(&app_c, dp) { + show_toast(&trx, &format!("Failed: {e}")); + } else { + refresh_state(&stx); + populate_list(&cr2, &stx, &brx, &wrx, &trx); + show_toast(&trx, &gettext("WebApp deleted successfully")); + } + } + }); + dialog.present(Some(&*wr)); + }) + }, + }); + + let row = webapp_row::build_row(app, &callbacks); + listbox.append(&row); + } + + content.append(&listbox); + } +} + +fn show_toast(overlay: &Rc, message: &str) { + let toast = adw::Toast::new(message); + toast.set_timeout(3); + overlay.add_toast(toast); +} diff --git a/crates/webapps-viewer/Cargo.toml b/crates/webapps-viewer/Cargo.toml new file mode 100644 index 00000000..31b10cb4 --- /dev/null +++ b/crates/webapps-viewer/Cargo.toml @@ -0,0 +1,26 @@ +[package] +name = "webapps-viewer" +version.workspace = true +edition.workspace = true +license.workspace = true + +[[bin]] +name = "big-webapps-viewer" +path = "src/main.rs" + +[dependencies] +webapps-core = { path = "../webapps-core" } +gtk4.workspace = true +libadwaita.workspace = true +webkit6.workspace = true +glib.workspace = true +gio.workspace = true +gdk4.workspace = true +serde.workspace = true +serde_json.workspace = true +log.workspace = true +env_logger.workspace = true +anyhow.workspace = true +dirs.workspace = true +clap.workspace = true +gettextrs.workspace = true diff --git a/crates/webapps-viewer/src/main.rs b/crates/webapps-viewer/src/main.rs new file mode 100644 index 00000000..c6cb83c4 --- /dev/null +++ b/crates/webapps-viewer/src/main.rs @@ -0,0 +1,56 @@ +mod window; + +use clap::Parser; +use libadwaita as adw; + +use adw::prelude::*; + +#[derive(Parser, Debug)] +#[command(name = "big-webapps-viewer", about = "BigLinux WebApp Viewer")] +struct Cli { + /// URL to load + #[arg(long)] + url: String, + + /// Window title + #[arg(long, default_value = "WebApp")] + name: String, + + /// Icon name or path + #[arg(long, default_value = "")] + icon: String, + + /// Unique application ID for profile isolation + #[arg(long)] + app_id: String, + + /// Files to open via upload + files: Vec, +} + +fn main() -> glib::ExitCode { + env_logger::init(); + webapps_core::i18n::init(); + let cli = Cli::parse(); + + let mut url = cli.url.clone(); + if !url.starts_with("http://") && !url.starts_with("https://") && !url.starts_with("file://") { + url = format!("https://{url}"); + } + + let app = adw::Application::builder() + .application_id(&format!("br.com.biglinux.webapp.{}", cli.app_id)) + .build(); + + let name = cli.name.clone(); + let icon = cli.icon.clone(); + let app_id = cli.app_id.clone(); + + app.connect_activate(move |app| { + let win = window::build(app, &url, &name, &icon, &app_id); + win.present(); + }); + + // run with empty args — clap already consumed CLI args, prevent GLib re-parsing + app.run_with_args::<&str>(&[]) +} diff --git a/crates/webapps-viewer/src/window.rs b/crates/webapps-viewer/src/window.rs new file mode 100644 index 00000000..1e1b85c7 --- /dev/null +++ b/crates/webapps-viewer/src/window.rs @@ -0,0 +1,645 @@ +use std::cell::Cell; +use std::path::PathBuf; +use std::rc::Rc; + +use glib::clone; +use gtk4 as gtk; +use gtk::prelude::*; +use gdk4; +use gettextrs::gettext; +use libadwaita as adw; +#[allow(unused_imports)] +use adw::prelude::*; +use webkit6 as webkit; +use webkit6::prelude::*; + +use webapps_core::config; + +/// Build and wire up the viewer window +pub fn build( + app: &adw::Application, + url: &str, + name: &str, + icon: &str, + app_id: &str, +) -> adw::ApplicationWindow { + // --- profile isolation via NetworkSession --- + let data_dir = config::data_dir().join(app_id); + let cache_dir = config::cache_dir().join(app_id); + std::fs::create_dir_all(&data_dir).ok(); + std::fs::create_dir_all(&cache_dir).ok(); + + let session = webkit::NetworkSession::new( + Some(data_dir.to_str().unwrap_or_default()), + Some(cache_dir.to_str().unwrap_or_default()), + ); + + // --- webview --- + let webview = webkit::WebView::builder() + .network_session(&session) + .build(); + + configure_settings(&webview); + inject_resize_block(&webview); + webview.load_uri(url); + webview.set_vexpand(true); + webview.set_hexpand(true); + + // --- headerbar --- + let title_widget = adw::WindowTitle::new(name, url); + + let back_btn = gtk::Button::from_icon_name("go-previous-symbolic"); + back_btn.set_sensitive(false); + back_btn.set_tooltip_text(Some(&gettext("Back"))); + + let fwd_btn = gtk::Button::from_icon_name("go-next-symbolic"); + fwd_btn.set_sensitive(false); + fwd_btn.set_tooltip_text(Some(&gettext("Forward"))); + + let reload_btn = gtk::Button::from_icon_name("view-refresh-symbolic"); + reload_btn.set_tooltip_text(Some(&gettext("Reload"))); + + let fullscreen_btn = gtk::Button::from_icon_name("view-fullscreen-symbolic"); + fullscreen_btn.set_tooltip_text(Some(&gettext("Fullscreen"))); + + let menu_btn = build_menu_button(); + + let header = adw::HeaderBar::builder() + .title_widget(&title_widget) + .build(); + header.pack_start(&back_btn); + header.pack_start(&fwd_btn); + header.pack_start(&reload_btn); + header.pack_end(&menu_btn); + header.pack_end(&fullscreen_btn); + + // --- URL bar (hidden by default, toggled via Ctrl+L) --- + let url_entry = gtk::Entry::builder() + .placeholder_text(&gettext("Enter URL…")) + .hexpand(true) + .build(); + url_entry.set_text(url); + + let url_bar = gtk::Revealer::builder() + .transition_type(gtk::RevealerTransitionType::SlideDown) + .reveal_child(false) + .child(&url_entry) + .build(); + + // Enter → navigate + hide bar + url_entry.connect_activate(clone!( + #[weak] webview, + #[weak] url_bar, + move |entry| { + let mut text = entry.text().to_string(); + if !text.is_empty() { + if !text.starts_with("http://") && !text.starts_with("https://") && !text.starts_with("file://") { + text = format!("https://{text}"); + } + webview.load_uri(&text); + } + url_bar.set_reveal_child(false); + } + )); + + // Escape while focused → hide bar + let key_ctrl = gtk::EventControllerKey::new(); + key_ctrl.connect_key_pressed(clone!( + #[weak] url_bar, + #[upgrade_or] glib::Propagation::Proceed, + move |_, key, _, _| { + if key == gdk4::Key::Escape { + url_bar.set_reveal_child(false); + return glib::Propagation::Stop; + } + glib::Propagation::Proceed + } + )); + url_entry.add_controller(key_ctrl); + + // --- ToolbarView: revealable header in fullscreen --- + let toolbar = adw::ToolbarView::new(); + toolbar.add_top_bar(&header); + toolbar.add_top_bar(&url_bar); + toolbar.set_content(Some(&webview)); + toolbar.set_reveal_top_bars(true); + + // --- window --- + let window = adw::ApplicationWindow::builder() + .application(app) + .title(name) + .default_width(1024) + .default_height(720) + .content(&toolbar) + .build(); + + // set window icon + if !icon.is_empty() { + // GTK4: set default icon name for the window + gtk::Window::set_default_icon_name(icon); + } + + let config_path = config::config_dir().join(format!("{app_id}.json")); + + // load saved geometry + load_geometry(&window, &config_path); + + // --- wire navigation --- + back_btn.connect_clicked(clone!( + #[weak] webview, + move |_| { webview.go_back(); } + )); + fwd_btn.connect_clicked(clone!( + #[weak] webview, + move |_| { webview.go_forward(); } + )); + reload_btn.connect_clicked(clone!( + #[weak] webview, + move |_| { webview.reload(); } + )); + + // --- title changed --- + webview.connect_title_notify(clone!( + #[weak] title_widget, + #[weak] window, + move |wv| { + if let Some(title) = wv.title() { + let t = title.to_string(); + if !t.is_empty() { + title_widget.set_title(&t); + window.set_title(Some(&t)); + } + } + } + )); + + // --- URI changed → update subtitle + nav buttons --- + webview.connect_uri_notify(clone!( + #[weak] title_widget, + #[weak] back_btn, + #[weak] fwd_btn, + move |wv| { + if let Some(uri) = wv.uri() { + title_widget.set_subtitle(&uri); + } + back_btn.set_sensitive(wv.can_go_back()); + fwd_btn.set_sensitive(wv.can_go_forward()); + } + )); + + // --- load changed → update nav state --- + webview.connect_load_changed(clone!( + #[weak] back_btn, + #[weak] fwd_btn, + move |wv, _event| { + back_btn.set_sensitive(wv.can_go_back()); + fwd_btn.set_sensitive(wv.can_go_forward()); + } + )); + + // --- fullscreen --- + let is_fullscreen = Rc::new(Cell::new(false)); + + webview.connect_enter_fullscreen(clone!( + #[weak] window, + #[weak] toolbar, + #[strong] is_fullscreen, + #[upgrade_or] false, + move |_| { + is_fullscreen.set(true); + toolbar.set_reveal_top_bars(false); + window.fullscreen(); + true + } + )); + + webview.connect_leave_fullscreen(clone!( + #[weak] window, + #[weak] toolbar, + #[strong] is_fullscreen, + #[upgrade_or] false, + move |_| { + is_fullscreen.set(false); + toolbar.set_reveal_top_bars(true); + window.unfullscreen(); + true + } + )); + + fullscreen_btn.connect_clicked(clone!( + #[weak] window, + #[weak] toolbar, + #[strong] is_fullscreen, + move |_| { + if is_fullscreen.get() { + is_fullscreen.set(false); + toolbar.set_reveal_top_bars(true); + window.unfullscreen(); + } else { + is_fullscreen.set(true); + toolbar.set_reveal_top_bars(false); + window.fullscreen(); + } + } + )); + + // --- downloads --- + session.connect_download_started(clone!( + #[weak] window, + move |_session, download| { + handle_download(&window, download); + } + )); + + // --- notifications --- + webview.connect_show_notification(clone!( + #[weak] window, + #[upgrade_or] false, + move |_wv, notification| { + show_notification(&window, notification); + true + } + )); + + // --- permission requests --- + webview.connect_permission_request(|_wv, request| { + // auto-grant camera, microphone, notifications + request.allow(); + true + }); + + // --- new window requests → open in same view --- + webview.connect_create(|wv, action| { + if let Some(request) = action.request() { + if let Some(uri) = request.uri() { + wv.load_uri(&uri); + } + } + None + }); + + // --- context menu --- + setup_context_menu(&webview); + + // --- keyboard shortcuts --- + setup_shortcuts(&window, &webview, &toolbar, &is_fullscreen, &url_bar, &url_entry); + + // --- save geometry on close --- + window.connect_close_request(clone!( + #[strong] config_path, + move |win| { + save_geometry(win, &config_path); + glib::Propagation::Proceed + } + )); + + // --- fullscreen headerbar reveal on mouse hover --- + setup_fullscreen_reveal(&toolbar, &is_fullscreen); + + window +} + +/// Configure WebView settings for webapp usage +fn configure_settings(webview: &webkit::WebView) { + if let Some(s) = WebViewExt::settings(webview) { + s.set_enable_javascript(true); + s.set_javascript_can_access_clipboard(true); + s.set_enable_developer_extras(true); + s.set_media_playback_requires_user_gesture(false); + s.set_enable_media_stream(true); + s.set_enable_mediasource(true); + s.set_enable_encrypted_media(true); + s.set_enable_smooth_scrolling(true); + s.set_enable_back_forward_navigation_gestures(true); + } +} + +/// Inject JS to block web content from resizing/moving the window +fn inject_resize_block(webview: &webkit::WebView) { + let ucm = webview.user_content_manager().unwrap(); + let script = webkit::UserScript::new( + concat!( + "window.resizeTo=function(){};", + "window.resizeBy=function(){};", + "window.moveTo=function(){};", + "window.moveBy=function(){};", + ), + webkit::UserContentInjectedFrames::AllFrames, + webkit::UserScriptInjectionTime::Start, + &[], + &[], + ); + ucm.add_script(&script); +} + +/// Build hamburger menu +fn build_menu_button() -> gtk::MenuButton { + let menu = gio::Menu::new(); + menu.append(Some(&gettext("Zoom In")), Some("win.zoom-in")); + menu.append(Some(&gettext("Zoom Out")), Some("win.zoom-out")); + menu.append(Some(&gettext("Reset Zoom")), Some("win.zoom-reset")); + menu.append(Some(&gettext("Developer Tools")), Some("win.devtools")); + + let btn = gtk::MenuButton::builder() + .icon_name("open-menu-symbolic") + .menu_model(&menu) + .tooltip_text(&gettext("Menu")) + .build(); + btn +} + +/// Custom context menu — add "Open in Browser" action for links +fn setup_context_menu(webview: &webkit::WebView) { + webview.connect_context_menu(|wv, menu, hit| { + // add "Open in Browser" for links + if let Some(uri) = hit.link_uri() { + let uri_str = uri.to_string(); + // add separator + custom item + menu.append(&webkit::ContextMenuItem::new_separator()); + + let action = gio::SimpleAction::new("open-link-browser", None); + let u = uri_str.clone(); + action.connect_activate(move |_, _| { + let _ = gio::AppInfo::launch_default_for_uri(&u, gio::AppLaunchContext::NONE); + }); + wv.insert_action_group("ctx", Some(&{ + let group = gio::SimpleActionGroup::new(); + group.add_action(&action); + group + })); + let item = webkit::ContextMenuItem::from_gaction( + &action, &gettext("Open Link in Browser"), None, + ); + menu.append(&item); + } + + false + }); +} + +/// Handle download: prompt user for save location +fn handle_download(window: &adw::ApplicationWindow, download: &webkit::Download) { + let suggested = download + .response() + .and_then(|r| r.suggested_filename()) + .map(|g| g.to_string()) + .unwrap_or_else(|| "download".into()); + + // notify on completion + download.connect_finished(clone!( + #[weak] window, + move |dl| { + let dest = dl.destination().map(|g| g.to_string()).unwrap_or_default(); + let fname = std::path::Path::new(&dest) + .file_name() + .map(|n| n.to_string_lossy().to_string()) + .unwrap_or_else(|| "File".into()); + let notif = gio::Notification::new(&gettext("Download Complete")); + notif.set_body(Some(&fname)); + if let Some(app) = window.application() { + app.send_notification(None, ¬if); + } + } + )); + + let dialog = gtk::FileDialog::builder() + .title(&gettext("Save File")) + .initial_name(&suggested) + .build(); + + dialog.save( + Some(window), + gio::Cancellable::NONE, + clone!( + #[strong] download, + move |result: Result| { + if let Ok(file) = result { + if let Some(path) = file.path() { + let uri = format!("file://{}", path.display()); + download.set_destination(&uri); + } + } else { + download.cancel(); + } + } + ), + ); +} + +/// Bridge webkit notification → system notification +fn show_notification(window: &adw::ApplicationWindow, notification: &webkit::Notification) { + let title = notification.title().map(|g| g.to_string()).unwrap_or_default(); + let body = notification.body().map(|g| g.to_string()).unwrap_or_default(); + + let notif = gio::Notification::new(&title); + notif.set_body(Some(&body)); + + if let Some(app) = window.application() { + app.send_notification(None, ¬if); + } +} + +/// Setup keyboard shortcuts via GActions +fn setup_shortcuts( + window: &adw::ApplicationWindow, + webview: &webkit::WebView, + toolbar: &adw::ToolbarView, + is_fullscreen: &Rc>, + url_bar: >k::Revealer, + url_entry: >k::Entry, +) { + let app = window.application().unwrap(); + + // F11 → fullscreen toggle + let action_fs = gio::SimpleAction::new("toggle-fullscreen", None); + action_fs.connect_activate(clone!( + #[weak] window, + #[weak] toolbar, + #[strong] is_fullscreen, + move |_, _| { + if is_fullscreen.get() { + is_fullscreen.set(false); + toolbar.set_reveal_top_bars(true); + window.unfullscreen(); + } else { + is_fullscreen.set(true); + toolbar.set_reveal_top_bars(false); + window.fullscreen(); + } + } + )); + window.add_action(&action_fs); + app.set_accels_for_action("win.toggle-fullscreen", &["F11"]); + + // Escape → exit fullscreen + let action_esc = gio::SimpleAction::new("exit-fullscreen", None); + action_esc.connect_activate(clone!( + #[weak] window, + #[weak] toolbar, + #[strong] is_fullscreen, + move |_, _| { + if is_fullscreen.get() { + is_fullscreen.set(false); + toolbar.set_reveal_top_bars(true); + window.unfullscreen(); + } + } + )); + window.add_action(&action_esc); + app.set_accels_for_action("win.exit-fullscreen", &["Escape"]); + + // Ctrl+R / F5 → reload + let action_reload = gio::SimpleAction::new("reload", None); + action_reload.connect_activate(clone!( + #[weak] webview, + move |_, _| { webview.reload(); } + )); + window.add_action(&action_reload); + app.set_accels_for_action("win.reload", &["r", "F5"]); + + // Alt+Left → back + let action_back = gio::SimpleAction::new("go-back", None); + action_back.connect_activate(clone!( + #[weak] webview, + move |_, _| { webview.go_back(); } + )); + window.add_action(&action_back); + app.set_accels_for_action("win.go-back", &["Left"]); + + // Alt+Right → forward + let action_fwd = gio::SimpleAction::new("go-forward", None); + action_fwd.connect_activate(clone!( + #[weak] webview, + move |_, _| { webview.go_forward(); } + )); + window.add_action(&action_fwd); + app.set_accels_for_action("win.go-forward", &["Right"]); + + // Ctrl+W → close + let action_close = gio::SimpleAction::new("close-window", None); + action_close.connect_activate(clone!( + #[weak] window, + move |_, _| { window.close(); } + )); + window.add_action(&action_close); + app.set_accels_for_action("win.close-window", &["w"]); + + // Zoom in/out/reset + let action_zin = gio::SimpleAction::new("zoom-in", None); + action_zin.connect_activate(clone!( + #[weak] webview, + move |_, _| { + let level = webview.zoom_level(); + webview.set_zoom_level(level + 0.1); + } + )); + window.add_action(&action_zin); + app.set_accels_for_action("win.zoom-in", &["plus", "equal"]); + + let action_zout = gio::SimpleAction::new("zoom-out", None); + action_zout.connect_activate(clone!( + #[weak] webview, + move |_, _| { + let level = webview.zoom_level(); + webview.set_zoom_level((level - 0.1).max(0.3)); + } + )); + window.add_action(&action_zout); + app.set_accels_for_action("win.zoom-out", &["minus"]); + + let action_zreset = gio::SimpleAction::new("zoom-reset", None); + action_zreset.connect_activate(clone!( + #[weak] webview, + move |_, _| { webview.set_zoom_level(1.0); } + )); + window.add_action(&action_zreset); + app.set_accels_for_action("win.zoom-reset", &["0"]); + + // Ctrl+Shift+I → devtools + let action_dev = gio::SimpleAction::new("devtools", None); + action_dev.connect_activate(clone!( + #[weak] webview, + move |_, _| { + if let Some(inspector) = webview.inspector() { + inspector.show(); + } + } + )); + window.add_action(&action_dev); + app.set_accels_for_action("win.devtools", &["i"]); + + // Ctrl+L → focus URL bar + let action_url = gio::SimpleAction::new("focus-url", None); + action_url.connect_activate(clone!( + #[weak] url_bar, + #[weak] url_entry, + #[weak] webview, + move |_, _| { + url_bar.set_reveal_child(true); + if let Some(uri) = webview.uri() { + url_entry.set_text(&uri); + } + url_entry.grab_focus(); + url_entry.select_region(0, -1); + } + )); + window.add_action(&action_url); + app.set_accels_for_action("win.focus-url", &["l"]); +} + +/// Reveal headerbar when mouse near top edge in fullscreen +fn setup_fullscreen_reveal(toolbar: &adw::ToolbarView, is_fullscreen: &Rc>) { + // ToolbarView with Adw handles reveal via its own policy + // set top-bar-style to raised for visual separation + toolbar.set_top_bar_style(adw::ToolbarStyle::Raised); + + // use motion controller to reveal header on hover in fullscreen + let motion = gtk::EventControllerMotion::new(); + motion.connect_motion(clone!( + #[weak] toolbar, + #[strong] is_fullscreen, + move |_, _x, y| { + if is_fullscreen.get() { + // reveal when mouse within 50px of top edge + toolbar.set_reveal_top_bars(y < 50.0); + } + } + )); + toolbar.add_controller(motion); +} + +/// Load window geometry from JSON config +fn load_geometry(window: &adw::ApplicationWindow, config_path: &PathBuf) { + if let Ok(data) = std::fs::read_to_string(config_path) { + if let Ok(geo) = serde_json::from_str::(&data) { + let w = geo.get("width").and_then(|v| v.as_i64()).unwrap_or(1024) as i32; + let h = geo.get("height").and_then(|v| v.as_i64()).unwrap_or(720) as i32; + window.set_default_size(w, h); + + if geo.get("maximized").and_then(|v| v.as_bool()).unwrap_or(false) { + window.maximize(); + } + } + } +} + +/// Save window geometry to JSON config +fn save_geometry(window: &adw::ApplicationWindow, config_path: &PathBuf) { + if window.is_fullscreen() { + return; + } + + let (w, h) = window.default_size(); + let geo = serde_json::json!({ + "width": if w > 0 { w } else { 1024 }, + "height": if h > 0 { h } else { 720 }, + "maximized": window.is_maximized(), + }); + + if let Some(parent) = config_path.parent() { + std::fs::create_dir_all(parent).ok(); + } + if let Err(e) = std::fs::write(config_path, geo.to_string()) { + log::error!("Failed to save geometry: {e}"); + } +} diff --git a/pkgbuild/PKGBUILD b/pkgbuild/PKGBUILD index f788b311..a287fe36 100644 --- a/pkgbuild/PKGBUILD +++ b/pkgbuild/PKGBUILD @@ -3,35 +3,50 @@ pkgname=biglinux-webapps pkgver=$(date +%y.%m.%d) pkgrel=$(date +%H%M) -arch=('any') +arch=('x86_64') license=('GPL') url="https://github.com/biglinux/$pkgname" source=("git+${url}.git") pkgdesc="Installs and removes BigLinux WebApps" -depends=('python-requests' 'gettext' 'python-pillow' 'python-gobject') +depends=('gtk4' 'libadwaita' 'webkitgtk-6.0' 'openssl' 'gettext') +makedepends=('rust' 'cargo') md5sums=(SKIP) if [ -e "${pkgname}.install" ]; then - install=${pkgname}.install + install=${pkgname}.install fi +build() { + # Verify default folder + if [ -d "${srcdir}/${pkgname}/${pkgname}" ]; then + InternalDir="${srcdir}/${pkgname}/${pkgname}" + else + InternalDir="${srcdir}/${pkgname}" + fi + + # Build Rust binaries + cd "${srcdir}/${pkgname}" + cargo build --release --workspace +} + package() { - # Verify default folder - if [ -d "${srcdir}/${pkgname}/${pkgname}" ]; then - InternalDir="${srcdir}/${pkgname}/${pkgname}" - else - InternalDir="${srcdir}/${pkgname}" - fi + # Verify default folder + if [ -d "${srcdir}/${pkgname}/${pkgname}" ]; then + InternalDir="${srcdir}/${pkgname}/${pkgname}" + else + InternalDir="${srcdir}/${pkgname}" + fi - # Copy files - if [ -d "${InternalDir}/usr" ]; then - cp -r "${InternalDir}/usr" "${pkgdir}/" - fi + # Copy package tree (icons, profiles, skel, .desktop, systemd, menus) + if [ -d "${InternalDir}/usr" ]; then + cp -r "${InternalDir}/usr" "${pkgdir}/" + fi - if [ -d "${InternalDir}/etc" ]; then - cp -r "${InternalDir}/etc" "${pkgdir}/" - fi + if [ -d "${InternalDir}/etc" ]; then + cp -r "${InternalDir}/etc" "${pkgdir}/" + fi - if [ -d "${InternalDir}/opt" ]; then - cp -r "${InternalDir}/opt" "${pkgdir}/" - fi -} + # Install Rust binaries + install -Dm755 "${srcdir}/${pkgname}/target/release/big-webapps-gui" \ + "${pkgdir}/usr/bin/big-webapps-gui" + install -Dm755 "${srcdir}/${pkgname}/target/release/big-webapps-viewer" \ + "${pkgdir}/usr/bin/big-webapps-viewer" diff --git a/ruff.toml b/ruff.toml deleted file mode 100644 index ac0a1348..00000000 --- a/ruff.toml +++ /dev/null @@ -1,7 +0,0 @@ -[lint] -select = ["E", "F", "W"] -ignore = ["E501"] - -[lint.per-file-ignores] -# gi.require_version() must precede gi.repository imports -"**/webapps/**/*.py" = ["E402"] diff --git a/usr/share/locale/bg/LC_MESSAGES/biglinux-webapps.mo b/usr/share/locale/bg/LC_MESSAGES/biglinux-webapps.mo new file mode 100644 index 0000000000000000000000000000000000000000..a14a4367fb38aab96914161ebdaadba3e86c23bf GIT binary patch literal 7041 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 literal 0 HcmV?d00001 diff --git a/usr/share/locale/cs/LC_MESSAGES/biglinux-webapps.mo b/usr/share/locale/cs/LC_MESSAGES/biglinux-webapps.mo new file mode 100644 index 0000000000000000000000000000000000000000..f84e625295e3a167542cbc0e6aa0498ecd48faee GIT binary patch literal 5626 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 literal 0 HcmV?d00001 diff --git a/usr/share/locale/da/LC_MESSAGES/biglinux-webapps.mo b/usr/share/locale/da/LC_MESSAGES/biglinux-webapps.mo new file mode 100644 index 0000000000000000000000000000000000000000..cdf87c7133e23602922cf3c8a9a05390011ab0da GIT binary patch literal 5231 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 M7w-NSUjASBKg6{xZ~y=R literal 0 HcmV?d00001 diff --git a/usr/share/locale/es/LC_MESSAGES/biglinux-webapps.mo b/usr/share/locale/es/LC_MESSAGES/biglinux-webapps.mo new file mode 100644 index 0000000000000000000000000000000000000000..0ccab7524a46c9aa4672c70dc765b3d1f6bb9906 GIT binary patch literal 5590 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 literal 0 HcmV?d00001 diff --git a/usr/share/locale/et/LC_MESSAGES/biglinux-webapps.mo b/usr/share/locale/et/LC_MESSAGES/biglinux-webapps.mo new file mode 100644 index 0000000000000000000000000000000000000000..1c72b482243bd39627d705c18e954457476cd3c1 GIT binary patch literal 5348 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 literal 0 HcmV?d00001 diff --git a/usr/share/locale/he/LC_MESSAGES/biglinux-webapps.mo b/usr/share/locale/he/LC_MESSAGES/biglinux-webapps.mo new file mode 100644 index 0000000000000000000000000000000000000000..b0332694802b226d05936e2d5a2f14740298297c GIT binary patch literal 6246 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 literal 0 HcmV?d00001 diff --git a/usr/share/locale/hr/LC_MESSAGES/biglinux-webapps.mo b/usr/share/locale/hr/LC_MESSAGES/biglinux-webapps.mo new file mode 100644 index 0000000000000000000000000000000000000000..56a4d89943f59eb9a3faa3f7ab54208d1cd03a2c GIT binary patch literal 5437 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 literal 0 HcmV?d00001 diff --git a/usr/share/locale/hu/LC_MESSAGES/biglinux-webapps.mo b/usr/share/locale/hu/LC_MESSAGES/biglinux-webapps.mo new file mode 100644 index 0000000000000000000000000000000000000000..ee9707f55830787afb39c23189c3cc345647a892 GIT binary patch literal 5688 zcmaKve~ctW6~{|J&_x76QADIv;1qU;160n11Lp2_k9B_>ce@7!m8536X11q$y2tLG z*_$yKRE*I?lTAbuCF&BR+2AFbOO{B^KeXLMjgDC7PIiXSd` zWijt-AttEZQ0Bh}$~gO>*mEb8_YXmN|9)73A(Zcb5z6*<{VFoXU$4Y*-%D7D^{XYhoy809pJv|IXw~s-w>wEAG@JCSM^E{k{ zFGA^e4IdZ3?uGLFFuWNyAX8Cag7W>xp!E9zd^3Csz8?M)if%8#N#c(gD0VGE{?rOT z64yp~KY;Rn0_FX6D1P09V&~IP=J_`$Iz0=KNM2tAWt>Z)%=dCA@wo{l6sG9K*t2S%sRwGG zjcmiuQXMyRH}#|D(1dBVFX4k$(?9gf@A7a5Nx0CYCMAuhM)Wr7v zCaT*IWVRV6eYM}+*ERQngv&VQLq@OIb|<8hI^gUtG4$U7n+93j(Q^^Q6mz0SX6u=b zOq=&{gU^(8BZ=GM&xk%eD9_%$_itP>~M(7VIS zhQWWHnspFC6yerpM+<5;u6I*@lQomjwHt)RIwrScFoHBfQSq@)ZSxUbmAzp!s!Sma)=UqTuOaeAR-@cBOh*gsK*B6Z5T9Dr(V2UA2Vo z)e@>MWxf=TCdp}5hBQTf-N;ji=G7tes~7wzK+L*OQsQnB4E_ja=A-^Kq)w35{A`s( z8j6K?aB9QUttze4&Va*RzaD5)uagIb0Qzw^(WKc>yt*yc9zhJo1Cmvmlp8x8*?q*O zP|@x^R2#)O&T1SVN4BDnqAG0F zD9D94?K+n=P*s2UtoRl+7*M;^bMwa zQd|&QSq;j#PwGw*_k2+rz1lG&5zDF253IJwNN3+tQxH|6U7#DL7boQVFz?gK$O^iX zd3@ot`GobDszJ_`;oC7^EELxl)EW>YJPiBfVjPNwzj(S-%QR9&3Wx6Uk9=N9g$9yoAhW_kHGx<<_|0hwB{ zrai3}s!IotRu9r|Vd0L@uf$1nrw=19&MnUD*mFZ=_r(5~WQ+J*zhkFK<7E#>HNf;W=l$olr~pX0K(N zPI@K`OxQMqe1r8b9zf%9Zdf>5PayqweP?=uWhZ&ho7!lpfkgdet4E?qm6eQxMuJZx~%G-zjVyjxg9>AC1O21+dxUlUY2- zOx81MG2d)5rFqh?nV(2}b4qX5)%pK!u@ie(TE+jVsf7qbt&~$%q{(>fMy^oRlrM$8 ztJ%$@a2QKP&kmRy);M?jI5d;9L1;q)iT>GSm@vstglg8d*k25??R8(nAm19~TLEJb zrOc$BwgcXMqLmm~qw+06O$2MUVOw@UMT;!3AfG^!ICWLE9s zQq(yvTNC*rg?vjyk(L^Yoq$gS-E^R4P)}mjiVa&l5Asb4WYj18b2wMc%XRQltBTFQ z(5hmS@KUQr_j~4){X^idnr2^aj%^?U+}dqpPrw`yB{^raOlrB4tC}ZETlq=RJ6q3T zz{YTY9E literal 0 HcmV?d00001 diff --git a/usr/share/locale/is/LC_MESSAGES/biglinux-webapps.mo b/usr/share/locale/is/LC_MESSAGES/biglinux-webapps.mo new file mode 100644 index 0000000000000000000000000000000000000000..d94bd9194042f33e36dd2583efb353b176917bd1 GIT binary patch literal 5465 zcmai$ZHygN8OINThzk`(6cxdv0@c#J6!4`kFJ-sg?Jn$YOLtocM&sN&XYS74dAT_= zvoA3qkP!5PMv3?Vh_Qw&lDKh`#v0M`Wza-pOf;mc2@nyDCYWF#!~~7{d(O<wpv?Okyc&K7iao!D=fX{R9()1Hd;Sh(-Ty%G!?w3q z``!UDLG6OF|J_j5*$c&{}{^rr)vJ9?*Dbo-@^-d z{wGK%)IZ>b@HKc1JfB6x?lHI>9)M!UGUTW3;w1CGQr|xU<$aGqmQde^V(;;qKZD}O zr=hI#*Sh~DD0crFz7q~{Bl9nYv+#0wCd}c*aHZxqYi>Y^$FJah@EIt2X=A+T;cn>s z1Fz+N9m@L8L-F^EkWi>sr2h7)vsNX@cfi;$ms znUl;v6X%M5E{3xHWX;b)@pA%Ye=AV*aW|B8?}Oss2cXRR9+YuEf#SCk?t+_8{B;h4 zu7Vdq@!NjLR@EF7U38$V_a!LyJ_u#p!*%~-@O|8$sCg2~xR;=ed$r~nyqrt54T}95 zeh%)a@4pOpaQ^_j9G-w5gD*f#Rp;T{uft1W3;qC#ea}Hz_ceGm+=j8@?>$iVeKQol zAA-ox#aQlT%@Nvmn&|6|4qmN3eaeHqTu;z$riqPGXXMyJyM-q2{S-~=*~e+u(3->9 z#*O$y{40Bt;}aF!S?cO6O>{1?9Hljf?C}7NZK{vZWN+d}ImG{R+(?_EiHCU`4N>VO(;r$w$teP7>Z+N1rxyYzHomi4k} zd;Px7Q{6SW&T`M@##f_JR1eMcg12OJ+n7XK6Q@hn({wr0Vd9&<;gsaMlcv4UWZFx7 zotZ2P(*o|!W2D|`bLd;ot_#qi3!3y(`lfKEKItM z2_tIE@p?5inQqR|WQ%qn{HSTp5nm~2Dq>6}h z)N*o~=kpxDWoq0Hb9ZVC9>-9t4x8+iE7R}&5*h$`IL+tPxX zNIONw*)DsQp+yvB9g8&76q{93vDY;jc-`{#ZM}STXMFv|&toT5855g__0pY8F-3GM`Nco8&UDLz*GK zBJtIMThsyctEa=HhnRJxB%3gsB9Z8OnC?q)L2Pw3sN=p<_iefqiqaSr zr>sOQhoi7(v{@mYLqknLR93q{2i{U@$@eDjv(~^0hLd@`;k5lkos_CU&eh@DGG8nd z+v^8=)NQHl4U~w_wI61=^*T~lUFl5ew1X|=UOQ8FOdZs&Iw}zoRjc9wJ_;yz5m5|J z`NKzymAXBm+hI2flVW8Uhq2Ra=#UY!hi9^G=nsz--E4S19nnM6UX~BfTQAAT(bSIU ziNn*=dUkYXTwgyvGdeYW)9Ai^hsNjTZe(cEEeOc)yz$}@Jv}H9t|n8p0~SOrj0hGz82J&i&LfQtACS6tDgWF^I7sqPOg;vdrztqfX;)j+wKwPciAyoZtx{Xm;=$M%|}jdY<}b9k2W7a`P0pNPX2K75j7bh zLr=a(N4zM;9zNSaqGrnzys0X4YFs3sjqHA4BRkyc4fu|P2|4yv9eLf5Z#MB=h?t?v z^;&k)mk~b`%LY(`@8gbcRCK$cCT*%=PG@m>j8CZ8F)%$-lNLjn!MQ8t%Mvu(q{>od zyJRK05?~(dFSy;Qi8{fnK;@_1pB6Zo=fp%*%MBk%=eat92uK|{6GHkZ6d?-Hl14JV zJT7#-VyDx`k*3-darMCU4l=KZo!ccH>!dt2L0v|v(f?B zuTvr(cLC`&CC`b>6KAwpL@F$=#b!YiB3?H?D%X3&x0Y0>gH=nVW=MIIy5wiPt*UD_ zK{4f%6e7<$H&uHfMI>o+QMuHUH`{vDOJl}jXtS3&w>OWPhjg^;tbVcw#U)ZINsrtX nLB!vvs>q7mEc*+hu~^t`FG(IO6BMC)#IZx!y@3n^j#gz literal 0 HcmV?d00001 diff --git a/usr/share/locale/it/LC_MESSAGES/biglinux-webapps.mo b/usr/share/locale/it/LC_MESSAGES/biglinux-webapps.mo new file mode 100644 index 0000000000000000000000000000000000000000..cbdd8419cb5aa996512d3f68e7b22da893005811 GIT binary patch literal 5423 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 literal 0 HcmV?d00001 diff --git a/usr/share/locale/nl/LC_MESSAGES/biglinux-webapps.mo b/usr/share/locale/nl/LC_MESSAGES/biglinux-webapps.mo new file mode 100644 index 0000000000000000000000000000000000000000..7817b07f0e36b5367871c0d6d0e40d3a7f703555 GIT binary patch literal 5365 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 JtS3eI_CN73k2L@Q literal 0 HcmV?d00001 diff --git a/usr/share/locale/no/LC_MESSAGES/biglinux-webapps.mo b/usr/share/locale/no/LC_MESSAGES/biglinux-webapps.mo new file mode 100644 index 0000000000000000000000000000000000000000..a0994d0cbbbb30d259247c22e00638c5a3b4c952 GIT binary patch literal 5280 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 literal 0 HcmV?d00001 diff --git a/usr/share/locale/pl/LC_MESSAGES/biglinux-webapps.mo b/usr/share/locale/pl/LC_MESSAGES/biglinux-webapps.mo new file mode 100644 index 0000000000000000000000000000000000000000..6bc10999550a63bc000562c641566c153d49211c GIT binary patch literal 5680 zcmZ{nZHygN8OM)WP>P5a@ePop0#)oTrGVDub=&TiwY%N6yQO4}B?9s@5hiK)K8$;`?H2aD1Lka z$~dn!_x}OK?*GE~!>wFM|Eu6Zcs+a<%-~hN_?-xII&|Fl(;Rx55q4(c|V0>PYFd&4@3UccQ{EtJPBn!PeFP9Je-8Dz>mNy zaN0-V4k&t`gi_eNgO5 zp^WnslzQ+>DC55baj|+8UJu`b;-6~}nb>&?ld%eGAHX zXQ24$EEHY*1}?$hLDAujbiNf%Liw%-HGCAxe4d17;IE+QB*!SppC3T+&vWo|@J~?Y zv5k)luWon)M26~9G?|C=nWD)UV$b;wOjDm9d$5<^v$QYL#7418j=O0GXrx+YgVeLn z(00+<<7R${zpEI*Pd5*4Z79IRDmO)!qLFD@dk_Y-NMrg{9*B=+esYLj<+zJBM-xA5 z+D@9p`UVME#1HYO9HRdlX`+`yw0*Q0nj8|Ni)edjqE9*IY4_43{*rr@ z-rxjnKkar}dr0ow)?C~I?`(dHHg?b!XxBCO?tzDCqDwX1ae1bueP185o#}qR`e}4* z3tiZb>GyT!^qS3dnwccCzM77r=G9cMo8wk@tc`VId+vDs)D@`?V&C>Hr#RD|b75dp zZDL=iHcbN;r;L(1?c2y^mKWmHU@cEf#v{GzBHtzoQ}lxKt=eO}Q0=j?T@A8SyH%a1 zLA=(QFs1e+e9&s%j{>h6BGt3?7|o+YiCYaKEZB5AX?iBwTQ~6=dGC_=57&3&iHz-!vqFZGsatQ1Lc{x zj!5OGB7U3avkbqbYQ_(;>eL!MgQ1B&dSw1D5B*5ZoannGYrWfEt{VL3tJw-7h&tTb zoYR7ubzYuwP70IoY92+Ymmm!_$7I!9&#c)LY#P3~Y=*C|tgpWkRIge8!5umcgMMG` z`FTHmP;;)rEMuikqTuT`zG~iP+f%(HLRIs)iTO@WPO1eP=jtH7R|ipbBlCl9G)aDD zO-NJZm&d+ZJfIfQubvO$5HagoNlA5+VDLvUvjFuMNSz=RLAFjJwPK+UPF*#gRgHDJ zGT?9?c%e3)M;_Dy7`Qyqq**Io-4kn%AO_ocE2BYcLcXbuPCEGX1*|zRhZ5pI%Srl3Xh@r`7 z(M4T7>a@?+ZIJM=&J2n|LP40+RXJ4 zO5?4bVu_5|r1SZWHQN^}+IRdd`WEy@?UMKVT!rSH(d5)?<&NbmX zXTDe{wl@#%R>xctj+BVcwI8HeVmzsk%tvPb{Qsfj_Y)UrQ&J-IU%sZ_;dHIWcic zj=E$@&mNth*9WH;X7n913)6G+_e}5GcVuR1=`LQ4*Kz_fv20CmO3zOp+<$a>Kkv=Y z-xCFsE?GPG4kItjEzF#==jO?sTlYGWE#`BBzMUeKPh>YypM&^zsq6_ka_7#L07Te*;0ZUyT z2OFm|l48Y{g^8r>=s2*YiR|!fY_)tdXbQa!WPR;gb>!Kn3tk$Yl>vqiH%qDx+jZ6( zbmPIKT22Nc`r7IMt5~E;b-*R%VEDKf=#n1%#+EoRTs1nILKvl8i#AS)BkJXPY?$*r z#Cb?880(jWX7iOU@okL6jGB(~DDSERq#Mg{VAKkam_>i|)g;_Ft&R;kflW%CmZlT2 z!W@;U*5{EmZwrNL)?}|M)9L3?pH%EIQkV?7c(yF0gAQ;MKT6A+D?eg7o z!?RX1*NsPXF+6Ef!s`X(5m5;ZcI8B(5HA_l??Hx-YFu!-$8daM{NXP~t9zJAwqoCO z6ZWclxPpyD{Yb=x-9_;1)Bf2$G#O)?-!VB>^5y4`mPsL z3B>KO{X=LnK3BR(dNAF3f2dZBSH?lNH&DZ`85VVk*Vz7n{8I9cv> zmCwqU8JB1pzttioFDI+LMOHlfG}@(e#aW z)~fBM`FP(j5OHE=GoxHBm4goD!Ka>VobID}*<75nSuOg*$NAXsY?C)lK;7oc3)Lz1 zBotQyCVJU89j0X!=M~cr(h_e9sscrZ#ZsnBd8S7h0ThpP#mLFG-qRINg=EI4&jPF&l&_0XTa^b|c)b|c)fnjxp z9rIRIGg@m$>)^R*q9I#XDzT1r@mP?V9yL@me_PF;x_urG>@5d9ow7_fgWt{iV?4ww t`6R1zV$hl_bTU&(F{TjmpMQMXXwJ*)~zt8`<-#hmX3b{{PLvJn#Sj literal 0 HcmV?d00001 diff --git a/usr/share/locale/pt/LC_MESSAGES/biglinux-webapps.mo b/usr/share/locale/pt/LC_MESSAGES/biglinux-webapps.mo new file mode 100644 index 0000000000000000000000000000000000000000..86393c42e5fbb26df56862bbbd5382075626137c GIT binary patch literal 5476 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 E2V@$+Qvd(} literal 0 HcmV?d00001 diff --git a/usr/share/locale/pt_BR/LC_MESSAGES/biglinux-webapps.mo b/usr/share/locale/pt_BR/LC_MESSAGES/biglinux-webapps.mo new file mode 100644 index 0000000000000000000000000000000000000000..8d92c307f62b54404a5ab1e8383c026e36ab23ff GIT binary patch literal 5509 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 F{}-O}pLzfQ literal 0 HcmV?d00001 diff --git a/usr/share/locale/tr/LC_MESSAGES/biglinux-webapps.mo b/usr/share/locale/tr/LC_MESSAGES/biglinux-webapps.mo new file mode 100644 index 0000000000000000000000000000000000000000..5c9cfb11d718b63636bdf75e6ecb148d9b2304ac GIT binary patch literal 5670 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 bQuGVG`spQzP`}W5*Dua!KUp_C%k%#N!qcO3 literal 0 HcmV?d00001 diff --git a/usr/share/locale/zh/LC_MESSAGES/biglinux-webapps.mo b/usr/share/locale/zh/LC_MESSAGES/biglinux-webapps.mo new file mode 100644 index 0000000000000000000000000000000000000000..ea1cb3cf093adab157621d0ec580d39debbcf997 GIT binary patch literal 5216 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 V|CJ51U~ox}PvY7*CTIKDe*u&E4psmF literal 0 HcmV?d00001 From f689c863da17bd11f221994d3f8bc60bdab9014b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 15 Apr 2026 18:21:51 +0000 Subject: [PATCH 02/15] translate 26-04-15_18:21 --- biglinux-webapps/locale/bg.json | 1 + biglinux-webapps/locale/bg.po | 121 --- biglinux-webapps/locale/biglinux-webapps.pot | 356 --------- biglinux-webapps/locale/cs.json | 1 + biglinux-webapps/locale/cs.po | 121 --- biglinux-webapps/locale/da.json | 1 + biglinux-webapps/locale/da.po | 121 --- biglinux-webapps/locale/de.json | 1 + biglinux-webapps/locale/de.po | 121 --- biglinux-webapps/locale/el.json | 1 + biglinux-webapps/locale/el.po | 121 --- biglinux-webapps/locale/en.json | 1 + biglinux-webapps/locale/en.po | 749 ------------------ biglinux-webapps/locale/es.json | 1 + biglinux-webapps/locale/es.po | 121 --- biglinux-webapps/locale/et.json | 1 + biglinux-webapps/locale/et.po | 121 --- biglinux-webapps/locale/fi.json | 1 + biglinux-webapps/locale/fi.po | 121 --- biglinux-webapps/locale/fr.json | 1 + biglinux-webapps/locale/fr.po | 121 --- biglinux-webapps/locale/he.json | 1 + biglinux-webapps/locale/he.po | 121 --- biglinux-webapps/locale/hr.json | 1 + biglinux-webapps/locale/hr.po | 121 --- biglinux-webapps/locale/hu.json | 1 + biglinux-webapps/locale/hu.po | 121 --- biglinux-webapps/locale/is.json | 1 + biglinux-webapps/locale/is.po | 121 --- biglinux-webapps/locale/it.json | 1 + biglinux-webapps/locale/it.po | 121 --- biglinux-webapps/locale/ja.json | 1 + biglinux-webapps/locale/ja.po | 121 --- biglinux-webapps/locale/ko.json | 1 + biglinux-webapps/locale/ko.po | 121 --- biglinux-webapps/locale/nl.json | 1 + biglinux-webapps/locale/nl.po | 121 --- biglinux-webapps/locale/no.json | 1 + biglinux-webapps/locale/no.po | 121 --- biglinux-webapps/locale/pl.json | 1 + biglinux-webapps/locale/pl.po | 121 --- biglinux-webapps/locale/pt-BR.po | 2 - biglinux-webapps/locale/pt.json | 1 + biglinux-webapps/locale/pt.po | 121 --- biglinux-webapps/locale/ro.json | 1 + biglinux-webapps/locale/ro.po | 121 --- biglinux-webapps/locale/ru.json | 1 + biglinux-webapps/locale/ru.po | 121 --- biglinux-webapps/locale/sk.json | 1 + biglinux-webapps/locale/sk.po | 121 --- biglinux-webapps/locale/sv.json | 1 + biglinux-webapps/locale/sv.po | 121 --- biglinux-webapps/locale/tr.json | 1 + biglinux-webapps/locale/tr.po | 121 --- biglinux-webapps/locale/uk.json | 1 + biglinux-webapps/locale/uk.po | 121 --- biglinux-webapps/locale/zh.json | 1 + biglinux-webapps/locale/zh.po | 121 --- .../bg/LC_MESSAGES/biglinux-webapps.json | 2 +- .../locale/bg/LC_MESSAGES/biglinux-webapps.mo | Bin 9020 -> 7041 bytes .../cs/LC_MESSAGES/biglinux-webapps.json | 2 +- .../locale/cs/LC_MESSAGES/biglinux-webapps.mo | Bin 7061 -> 5626 bytes .../da/LC_MESSAGES/biglinux-webapps.json | 2 +- .../locale/da/LC_MESSAGES/biglinux-webapps.mo | Bin 6674 -> 5231 bytes .../de/LC_MESSAGES/biglinux-webapps.json | 2 +- .../locale/de/LC_MESSAGES/biglinux-webapps.mo | Bin 7021 -> 5416 bytes .../el/LC_MESSAGES/biglinux-webapps.json | 2 +- .../locale/el/LC_MESSAGES/biglinux-webapps.mo | Bin 9424 -> 7292 bytes .../es/LC_MESSAGES/biglinux-webapps.json | 2 +- .../locale/es/LC_MESSAGES/biglinux-webapps.mo | Bin 7133 -> 5590 bytes .../et/LC_MESSAGES/biglinux-webapps.json | 2 +- .../locale/et/LC_MESSAGES/biglinux-webapps.mo | Bin 6801 -> 5348 bytes .../fi/LC_MESSAGES/biglinux-webapps.json | 2 +- .../locale/fi/LC_MESSAGES/biglinux-webapps.mo | Bin 6877 -> 5372 bytes .../fr/LC_MESSAGES/biglinux-webapps.json | 2 +- .../locale/fr/LC_MESSAGES/biglinux-webapps.mo | Bin 7407 -> 5747 bytes .../he/LC_MESSAGES/biglinux-webapps.json | 2 +- .../locale/he/LC_MESSAGES/biglinux-webapps.mo | Bin 8009 -> 6246 bytes .../hr/LC_MESSAGES/biglinux-webapps.json | 2 +- .../locale/hr/LC_MESSAGES/biglinux-webapps.mo | Bin 6912 -> 5437 bytes .../hu/LC_MESSAGES/biglinux-webapps.json | 2 +- .../locale/hu/LC_MESSAGES/biglinux-webapps.mo | Bin 7264 -> 5688 bytes .../is/LC_MESSAGES/biglinux-webapps.json | 2 +- .../locale/is/LC_MESSAGES/biglinux-webapps.mo | Bin 7039 -> 5465 bytes .../it/LC_MESSAGES/biglinux-webapps.json | 2 +- .../locale/it/LC_MESSAGES/biglinux-webapps.mo | Bin 6938 -> 5423 bytes .../ja/LC_MESSAGES/biglinux-webapps.json | 2 +- .../locale/ja/LC_MESSAGES/biglinux-webapps.mo | Bin 8136 -> 6223 bytes .../ko/LC_MESSAGES/biglinux-webapps.json | 2 +- .../locale/ko/LC_MESSAGES/biglinux-webapps.mo | Bin 7257 -> 5693 bytes .../nl/LC_MESSAGES/biglinux-webapps.json | 2 +- .../locale/nl/LC_MESSAGES/biglinux-webapps.mo | Bin 6853 -> 5365 bytes .../no/LC_MESSAGES/biglinux-webapps.json | 2 +- .../locale/no/LC_MESSAGES/biglinux-webapps.mo | Bin 6719 -> 5280 bytes .../pl/LC_MESSAGES/biglinux-webapps.json | 2 +- .../locale/pl/LC_MESSAGES/biglinux-webapps.mo | Bin 7323 -> 5680 bytes .../pt/LC_MESSAGES/biglinux-webapps.json | 2 +- .../locale/pt/LC_MESSAGES/biglinux-webapps.mo | Bin 6995 -> 5476 bytes .../ro/LC_MESSAGES/biglinux-webapps.json | 2 +- .../locale/ro/LC_MESSAGES/biglinux-webapps.mo | Bin 7140 -> 5592 bytes .../ru/LC_MESSAGES/biglinux-webapps.json | 2 +- .../locale/ru/LC_MESSAGES/biglinux-webapps.mo | Bin 8989 -> 6931 bytes .../sk/LC_MESSAGES/biglinux-webapps.json | 2 +- .../locale/sk/LC_MESSAGES/biglinux-webapps.mo | Bin 7218 -> 5723 bytes .../sv/LC_MESSAGES/biglinux-webapps.json | 2 +- .../locale/sv/LC_MESSAGES/biglinux-webapps.mo | Bin 6833 -> 5339 bytes .../tr/LC_MESSAGES/biglinux-webapps.json | 2 +- .../locale/tr/LC_MESSAGES/biglinux-webapps.mo | Bin 7208 -> 5670 bytes .../uk/LC_MESSAGES/biglinux-webapps.json | 2 +- .../locale/uk/LC_MESSAGES/biglinux-webapps.mo | Bin 8760 -> 6862 bytes .../zh/LC_MESSAGES/biglinux-webapps.json | 2 +- .../locale/zh/LC_MESSAGES/biglinux-webapps.mo | Bin 6650 -> 5216 bytes 112 files changed, 55 insertions(+), 4401 deletions(-) create mode 100644 biglinux-webapps/locale/bg.json delete mode 100644 biglinux-webapps/locale/biglinux-webapps.pot create mode 100644 biglinux-webapps/locale/cs.json create mode 100644 biglinux-webapps/locale/da.json create mode 100644 biglinux-webapps/locale/de.json create mode 100644 biglinux-webapps/locale/el.json create mode 100644 biglinux-webapps/locale/en.json create mode 100644 biglinux-webapps/locale/es.json create mode 100644 biglinux-webapps/locale/et.json create mode 100644 biglinux-webapps/locale/fi.json create mode 100644 biglinux-webapps/locale/fr.json create mode 100644 biglinux-webapps/locale/he.json create mode 100644 biglinux-webapps/locale/hr.json create mode 100644 biglinux-webapps/locale/hu.json create mode 100644 biglinux-webapps/locale/is.json create mode 100644 biglinux-webapps/locale/it.json create mode 100644 biglinux-webapps/locale/ja.json create mode 100644 biglinux-webapps/locale/ko.json create mode 100644 biglinux-webapps/locale/nl.json create mode 100644 biglinux-webapps/locale/no.json create mode 100644 biglinux-webapps/locale/pl.json create mode 100644 biglinux-webapps/locale/pt.json create mode 100644 biglinux-webapps/locale/ro.json create mode 100644 biglinux-webapps/locale/ru.json create mode 100644 biglinux-webapps/locale/sk.json create mode 100644 biglinux-webapps/locale/sv.json create mode 100644 biglinux-webapps/locale/tr.json create mode 100644 biglinux-webapps/locale/uk.json create mode 100644 biglinux-webapps/locale/zh.json diff --git a/biglinux-webapps/locale/bg.json b/biglinux-webapps/locale/bg.json new file mode 100644 index 00000000..2fca57ee --- /dev/null +++ b/biglinux-webapps/locale/bg.json @@ -0,0 +1 @@ +{"bg":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Шаблони"]},"Choose a Template":{"*":["Изберете шаблон"]},"Search templates...":{"*":["Търсене на шаблони..."]},"Search Results":{"*":["Резултати от търсенето"]},"No templates found":{"*":["Не са намерени шаблони."]},"Edit WebApp":{"*":["Редактиране на уеб приложение"]},"Delete WebApp":{"*":["Изтрий WebApp"]},"Welcome to WebApps Manager":{"*":["Добре дошли в WebApps Manager"]},"Don't show this again":{"*":["Не показвай това отново"]},"Let's Start":{"*":["Нека започнем"]},"Select Browser":{"*":["Изберете браузър"]},"Cancel":{"*":["Отмени"]},"Select":{"*":["Изберете"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Добави WebApp"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Открийте име и икона от уебсайт"]},"Name":{"*":["Име"]},"Category":{"*":["Категория"]},"Opens as a native window without browser interface":{"*":["Отваря се като роден прозорец без интерфейс на браузъра."]},"Browser":{"*":["Браузър"]},"Allows independent cookies and sessions":{"*":["Позволява независими бисквитки и сесии"]},"Profile Name":{"*":["Име на профил"]},"Save":{"*":["Запази"]},"Loading...":{"*":["Зареждане..."]},"WebApps Manager":{"*":["Мениджър на уеб приложения"]},"Search WebApps":{"*":["Търсене на уеб приложения"]},"Export WebApps":{"*":["Експортиране на уеб приложения"]},"Import WebApps":{"*":["Импорт на уеб приложения"]},"Browse Applications Folder":{"*":["Преглед на папката с приложения"]},"Browse Profiles Folder":{"*":["Преглед на папка с профили"]},"Remove All WebApps":{"*":["Премахнете всички уеб приложения"]},"About":{"*":["За програмата"]},"Add a new webapp to get started":{"*":["Добавете нов уеб приложение, за да започнете."]},"WebApp created successfully":{"*":["WebApp създаден успешно"]},"WebApp updated successfully":{"*":["Web приложението беше актуализирано успешно."]},"Also delete configuration folder":{"*":["Също така изтрийте папката с конфигурацията."]},"Delete":{"*":["Изтрий"]},"WebApp deleted successfully":{"*":["Web приложението беше успешно изтрито."]},"Remove All":{"*":["Премахни всичко"]},"All WebApps have been removed":{"*":["Всички уеб приложения са премахнати."]},"Failed to remove all WebApps":{"*":["Неуспешно премахване на всички уеб приложения."]},"WebApps exported successfully":{"*":["Web приложенията бяха експортирани успешно."]},"No WebApps":{"*":["Няма уеб приложения"]},"Change browser":{"*":["Смени браузъра"]},"Edit":{"*":["Редактирай"]},"New WebApp":{"*":["Нов WebApp"]},"Icon":{"*":["Икона"]},"App Mode":{"*":["Режим на приложението"]},"Separate Profile":{"*":["Отделен профил"]},"Select Icon":{"*":["Избери икона"]},"Images":{"*":["Изображения"]},"ZIP files":{"*":["ZIP файлове"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Импортирани {imported}, пропуснати {dups} дубликати"]},"Import failed":{"*":["Импортът не бе успешен"]},"Export failed":{"*":["Експортът не бе успешен"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Това ще изтрие всички webapps и техните десктоп записи. Това не може да бъде отменено."]},"Browser changed":{"*":["Браузърът е сменен"]},"What are WebApps?":{"*":["Какво са WebApps?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps са уеб приложения, които се изпълняват в отделен прозорец на браузъра, предоставяйки по-приложенски опит за любимите ви уебсайтове."]},"Benefits of using WebApps:":{"*":["Предимства на използването на WebApps:"]},"Focus":{"*":["Фокус"]},"Work without the distractions of other browser tabs":{"*":["Работа без разсейване от други раздели на браузъра"]},"Desktop Integration":{"*":["Интеграция с работния плот"]},"Quick access from your application menu":{"*":["Бърз достъп от менюто на приложенията ви"]},"Isolated Profiles":{"*":["Изолирани профили"]},"Each webapp can have its own cookies and settings":{"*":["Всеки webapp може да има свои собствени бисквитки и настройки"]},"Back":{"*":["Назад"]},"Forward":{"*":["Напред"]},"Reload":{"*":["Презареди"]},"Fullscreen":{"*":["Цял екран"]},"Enter URL…":{"*":["Въведете URL…"]},"Zoom In":{"*":["Увеличи"]},"Zoom Out":{"*":["Намали"]},"Reset Zoom":{"*":["Нулиране на мащаба"]},"Developer Tools":{"*":["Инструменти за разработчици"]},"Menu":{"*":["Меню"]},"Open Link in Browser":{"*":["Отвори връзката в браузъра"]},"Download Complete":{"*":["Изтеглянето е завършено"]},"Save File":{"*":["Запази файла"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/bg.po b/biglinux-webapps/locale/bg.po index f11ef8ef..b3cebb55 100644 --- a/biglinux-webapps/locale/bg.po +++ b/biglinux-webapps/locale/bg.po @@ -14,7 +14,6 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -24,31 +23,26 @@ msgstr "" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Шаблони" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Изберете шаблон" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Търсене на шаблони..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Резултати от търсенето" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Не са намерени шаблони." - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -60,13 +54,11 @@ msgstr "Не са намерени шаблони." #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Редактиране на уеб приложение" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Изтрий WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 # File: biglinux-webapps/biglinux- @@ -75,25 +67,21 @@ msgstr "Изтрий WebApp" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Добре дошли в WebApps Manager" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Не показвай това отново" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Нека започнем" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Изберете браузър" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -106,7 +94,6 @@ msgstr "Изберете браузър" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Отмени" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -119,7 +106,6 @@ msgstr "Отмени" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Изберете" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -133,7 +119,6 @@ msgstr "Изберете" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "OK" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -145,19 +130,16 @@ msgstr "OK" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Добави WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Открийте име и икона от уебсайт" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 # File: biglinux-webapps/biglinux- @@ -165,38 +147,32 @@ msgstr "Открийте име и икона от уебсайт" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Име" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Категория" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Отваря се като роден прозорец без интерфейс на браузъра." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 #. -- Browser row (hidden in app mode) -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Браузър" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Позволява независими бисквитки и сесии" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Име на профил" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -206,52 +182,44 @@ msgstr "Име на профил" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Запази" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Зареждане..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "Мениджър на уеб приложения" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Търсене на уеб приложения" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Експортиране на уеб приложения" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Импорт на уеб приложения" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Преглед на папката с приложения" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Преглед на папка с профили" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 # File: biglinux-webapps/biglinux- @@ -260,31 +228,26 @@ msgstr "Преглед на папка с профили" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Премахнете всички уеб приложения" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "За програмата" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Добавете нов уеб приложение, за да започнете." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "WebApp създаден успешно" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "Web приложението беше актуализирано успешно." - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -294,101 +257,81 @@ msgstr "Web приложението беше актуализирано усп #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Също така изтрийте папката с конфигурацията." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Изтрий" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "Web приложението беше успешно изтрито." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Премахни всичко" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Всички уеб приложения са премахнати." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Неуспешно премахване на всички уеб приложения." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "Web приложенията бяха експортирани успешно." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Няма уеб приложения" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 msgid "Change browser" msgstr "Смени браузъра" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 msgid "Edit" msgstr "Редактирай" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "New WebApp" msgstr "Нов WebApp" - #. -- Icon row -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 msgid "Icon" msgstr "Икона" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 msgid "App Mode" msgstr "Режим на приложението" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 msgid "Separate Profile" msgstr "Отделен профил" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 msgid "Select Icon" msgstr "Избери икона" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 msgid "Images" msgstr "Изображения" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 msgid "ZIP files" msgstr "ZIP файлове" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 #, rust-format msgid "Imported {imported}, skipped {dups} duplicates" msgstr "Импортирани {imported}, пропуснати {dups} дубликати" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 msgid "Import failed" msgstr "Импортът не бе успешен" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 msgid "Export failed" msgstr "Експортът не бе успешен" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 msgid "" "This will delete all webapps and their desktop entries. This cannot be " @@ -396,15 +339,12 @@ msgid "" msgstr "" "Това ще изтрие всички webapps и техните десктоп записи. Това не може да бъде" " отменено." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 msgid "Browser changed" msgstr "Браузърът е сменен" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 msgid "What are WebApps?" msgstr "Какво са WebApps?" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 msgid "" "WebApps are web applications that run in a dedicated browser window, " @@ -412,110 +352,85 @@ msgid "" msgstr "" "WebApps са уеб приложения, които се изпълняват в отделен прозорец на " "браузъра, предоставяйки по-приложенски опит за любимите ви уебсайтове." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 msgid "Benefits of using WebApps:" msgstr "Предимства на използването на WebApps:" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Focus" msgstr "Фокус" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Work without the distractions of other browser tabs" msgstr "Работа без разсейване от други раздели на браузъра" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Desktop Integration" msgstr "Интеграция с работния плот" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Quick access from your application menu" msgstr "Бърз достъп от менюто на приложенията ви" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Isolated Profiles" msgstr "Изолирани профили" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Each webapp can have its own cookies and settings" msgstr "Всеки webapp може да има свои собствени бисквитки и настройки" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 msgid "Back" msgstr "Назад" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 msgid "Forward" msgstr "Напред" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 msgid "Reload" msgstr "Презареди" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 msgid "Fullscreen" msgstr "Цял екран" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 msgid "Enter URL…" msgstr "Въведете URL…" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 msgid "Zoom In" msgstr "Увеличи" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 msgid "Zoom Out" msgstr "Намали" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 msgid "Reset Zoom" msgstr "Нулиране на мащаба" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 msgid "Developer Tools" msgstr "Инструменти за разработчици" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 msgid "Menu" msgstr "Меню" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 msgid "Open Link in Browser" msgstr "Отвори връзката в браузъра" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 msgid "Download Complete" msgstr "Изтеглянето е завършено" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 msgid "Save File" msgstr "Запази файла" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 #~ msgid "Search templates" #~ msgstr "Търсене на шаблони" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 #, python-brace-format #~ msgid "Browser: {0}" #~ msgstr "Браузър: {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 #, python-brace-format #~ msgid "Edit {0}" #~ msgstr "Редактиране на {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 #, python-brace-format #~ msgid "Delete {0}" #~ msgstr "Изтрий {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 #~ msgid "" @@ -538,12 +453,10 @@ msgstr "Запази файла" #~ "• Фокус: Работете без разсейвания от други раздели на браузъра\n" #~ "• Интеграция с работния плот: Бърз достъп от менюто на приложението\n" #~ "• Изолирани профили: По желание, всяко уеб приложение може да има свои собствени бисквитки и настройки\n" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 #~ msgid "System Default" #~ msgstr "Системен по подразбиране" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -562,12 +475,10 @@ msgstr "Запази файла" # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 #~ msgid "Default" #~ msgstr "По подразбиране" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 #~ msgid "Please select a browser." #~ msgstr "Моля, изберете браузър." - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -576,49 +487,40 @@ msgstr "Запази файла" # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 #~ msgid "Error" #~ msgstr "Грешка" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 #~ msgid "Choose from templates" #~ msgstr "Изберете от шаблони" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 #~ msgid "Detect" #~ msgstr "Открийте" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 #~ msgid "App Icon" #~ msgstr "Икона на приложението" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 #~ msgid "Select icon for the WebApp" #~ msgstr "Изберете икона за уеб приложението" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 #~ msgid "Available Icons" #~ msgstr "Налични икони" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 #~ msgid "Application Mode" #~ msgstr "Режим на приложение" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 #~ msgid "Profile Settings" #~ msgstr "Настройки на профила" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 #~ msgid "Configure a separate browser profile for this webapp" #~ msgstr "Конфигурирайте отделен браузър профил за това уеб приложение." - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -627,63 +529,51 @@ msgstr "Запази файла" # #~ msgid "Use separate profile" #~ msgstr "Използвайте отделен профил" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 #~ msgid "Detecting website information, please wait" #~ msgstr "Откриване на информация за уебсайта, моля изчакайте" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 #~ msgid "Please enter a URL first." #~ msgstr "Моля, въведете URL адрес първо." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 #~ msgid "Please enter a name for the WebApp." #~ msgstr "Моля, въведете име за уеб приложението." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 #~ msgid "Please enter a URL for the WebApp." #~ msgstr "Моля, въведете URL адрес за WebApp." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 #~ msgid "Please select a browser for the WebApp." #~ msgstr "Моля, изберете браузър за WebApp." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 #~ msgid "Main Menu" #~ msgstr "Главно меню" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 #~ msgid "Refresh" #~ msgstr "Обнови" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 #~ msgid "Show Welcome Screen" #~ msgstr "Покажи екран за приветствие" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 #~ msgid "Add" #~ msgstr "Добави" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 #~ msgid "No WebApps Found" #~ msgstr "Не са намерени уеб приложения." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 #, python-brace-format #~ msgid "Browser changed to {0}" #~ msgstr "Браузърът беше променен на {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 #, python-brace-format @@ -697,12 +587,10 @@ msgstr "Запази файла" #~ "\n" #~ "URL: {1}\n" #~ "Браузър: {2}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 #~ msgid "REMOVE ALL" #~ msgstr "Премахнете всичко" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 #, python-brace-format @@ -714,48 +602,39 @@ msgstr "Запази файла" #~ "Сигурни ли сте, че искате да премахнете всички ваши WebApps? Това действие не може да бъде отменено.\n" #~ "\n" #~ "Напишете \"{0}\", за да потвърдите." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 #, python-brace-format #~ msgid "Icon {0} of {1}" #~ msgstr "Икона {0} от {1}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #~ msgid "There are no WebApps to export." #~ msgstr "Няма налични WebApps за експортиране." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 #~ msgid "The selected file does not exist." #~ msgstr "Избраният файл не съществува." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 #~ msgid "The selected file is not a valid ZIP archive." #~ msgstr "Избраният файл не е валиден ZIP архив." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 #~ msgid "Error importing WebApps" #~ msgstr "Грешка при импортиране на WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 #~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" #~ msgstr "Импортирни {} WebApps успешно ({} дубликати пропуснати)" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 #~ msgid "Imported {} WebApps successfully" #~ msgstr "Успешно импортирани {} WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 #~ msgid "No" #~ msgstr "Не" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 #~ msgid "Yes" diff --git a/biglinux-webapps/locale/biglinux-webapps.pot b/biglinux-webapps/locale/biglinux-webapps.pot deleted file mode 100644 index ccda5701..00000000 --- a/biglinux-webapps/locale/biglinux-webapps.pot +++ /dev/null @@ -1,356 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the biglinux-webapps package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: biglinux-webapps\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-04-15 14:00-0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 -msgid "Change browser" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 -msgid "Edit" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 -msgid "Delete" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 -msgid "Select Browser" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:99 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:225 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:291 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 -msgid "Cancel" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 -msgid "OK" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 -msgid "Choose a Template" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 -msgid "Search templates..." -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 -msgid "No templates found" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 -msgid "Search Results" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 -msgid "New WebApp" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 -msgid "Edit WebApp" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 -msgid "Templates" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 -msgid "Loading..." -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 -msgid "URL" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 -msgid "Detect name and icon from website" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 -msgid "Name" -msgstr "" - -#. -- Icon row -- -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 -msgid "Icon" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:141 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 -msgid "Select" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 -msgid "Category" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 -msgid "App Mode" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 -msgid "Opens as a native window without browser interface" -msgstr "" - -#. -- Browser row (hidden in app mode) -- -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 -msgid "Browser" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 -msgid "Separate Profile" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 -msgid "Allows independent cookies and sessions" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 -msgid "Profile Name" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 -msgid "Save" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 -msgid "Select Icon" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 -msgid "Images" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 -msgid "WebApps Manager" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 -msgid "Search WebApps" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 -msgid "Add WebApp" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 -msgid "Import WebApps" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 -msgid "Export WebApps" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 -msgid "Browse Applications Folder" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 -msgid "Browse Profiles Folder" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:69 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 -msgid "Remove All WebApps" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 -msgid "About" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 -msgid "WebApp created successfully" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 -msgid "ZIP files" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 -#, rust-format -msgid "Imported {imported}, skipped {dups} duplicates" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 -msgid "Import failed" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 -msgid "No WebApps" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 -msgid "WebApps exported successfully" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 -msgid "Export failed" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 -msgid "" -"This will delete all webapps and their desktop entries. This cannot be " -"undone." -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 -msgid "Remove All" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 -msgid "Failed to remove all WebApps" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 -msgid "All WebApps have been removed" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 -msgid "Add a new webapp to get started" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 -msgid "WebApp updated successfully" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 -msgid "Browser changed" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 -msgid "Delete WebApp" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 -msgid "Also delete configuration folder" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 -msgid "WebApp deleted successfully" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:20 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 -msgid "Welcome to WebApps Manager" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 -msgid "What are WebApps?" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 -msgid "" -"WebApps are web applications that run in a dedicated browser window, " -"providing a more app-like experience for your favorite websites." -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 -msgid "Benefits of using WebApps:" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 -msgid "Focus" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 -msgid "Work without the distractions of other browser tabs" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 -msgid "Desktop Integration" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 -msgid "Quick access from your application menu" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 -msgid "Isolated Profiles" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 -msgid "Each webapp can have its own cookies and settings" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 -msgid "Don't show this again" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 -msgid "Let's Start" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 -msgid "Back" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 -msgid "Forward" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 -msgid "Reload" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 -msgid "Fullscreen" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 -msgid "Enter URL…" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 -msgid "Zoom In" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 -msgid "Zoom Out" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 -msgid "Reset Zoom" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 -msgid "Developer Tools" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 -msgid "Menu" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 -msgid "Open Link in Browser" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 -msgid "Download Complete" -msgstr "" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 -msgid "Save File" -msgstr "" diff --git a/biglinux-webapps/locale/cs.json b/biglinux-webapps/locale/cs.json new file mode 100644 index 00000000..d683e610 --- /dev/null +++ b/biglinux-webapps/locale/cs.json @@ -0,0 +1 @@ +{"cs":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Šablony"]},"Choose a Template":{"*":["Vyberte šablonu"]},"Search templates...":{"*":["Hledat šablony..."]},"Search Results":{"*":["Výsledky vyhledávání"]},"No templates found":{"*":["Žádné šablony nenalezeny"]},"Edit WebApp":{"*":["Upravit WebApp"]},"Delete WebApp":{"*":["Smazat WebApp"]},"Welcome to WebApps Manager":{"*":["Vítejte v správci webových aplikací"]},"Don't show this again":{"*":["Znovu to nezobrazovat"]},"Let's Start":{"*":["Začněme"]},"Select Browser":{"*":["Vyberte prohlížeč"]},"Cancel":{"*":["Zrušit"]},"Select":{"*":["Vybrat"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Přidat WebApp"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Detekuj název a ikonu z webové stránky"]},"Name":{"*":["Jméno"]},"Category":{"*":["Kategorie"]},"Opens as a native window without browser interface":{"*":["Otevře se jako nativní okno bez rozhraní prohlížeče."]},"Browser":{"*":["Prohlížeč"]},"Allows independent cookies and sessions":{"*":["Umožňuje nezávislé cookies a relace"]},"Profile Name":{"*":["Název profilu"]},"Save":{"*":["Uložit"]},"Loading...":{"*":["Načítání..."]},"WebApps Manager":{"*":["Správce webových aplikací"]},"Search WebApps":{"*":["Hledat WebApps"]},"Export WebApps":{"*":["Exportovat webové aplikace"]},"Import WebApps":{"*":["Importovat WebApps"]},"Browse Applications Folder":{"*":["Procházet složku Aplikace"]},"Browse Profiles Folder":{"*":["Procházet složku profilů"]},"Remove All WebApps":{"*":["Odstranit všechny webové aplikace"]},"About":{"*":["O aplikaci"]},"Add a new webapp to get started":{"*":["Přidejte novou webovou aplikaci, abyste mohli začít."]},"WebApp created successfully":{"*":["Webová aplikace byla úspěšně vytvořena."]},"WebApp updated successfully":{"*":["Webová aplikace byla úspěšně aktualizována."]},"Also delete configuration folder":{"*":["Také odstraňte složku konfigurace."]},"Delete":{"*":["Smazat"]},"WebApp deleted successfully":{"*":["Webová aplikace byla úspěšně smazána."]},"Remove All":{"*":["Odstranit vše"]},"All WebApps have been removed":{"*":["Všechny webové aplikace byly odstraněny."]},"Failed to remove all WebApps":{"*":["Nepodařilo se odstranit všechny WebAppy"]},"WebApps exported successfully":{"*":["Webové aplikace byly úspěšně exportovány."]},"No WebApps":{"*":["Žádné webové aplikace"]},"Change browser":{"*":["Změnit prohlížeč"]},"Edit":{"*":["Upravit"]},"New WebApp":{"*":["Nová WebApp"]},"Icon":{"*":["Ikona"]},"App Mode":{"*":["Režim aplikace"]},"Separate Profile":{"*":["Samostatný profil"]},"Select Icon":{"*":["Vybrat ikonu"]},"Images":{"*":["Obrázky"]},"ZIP files":{"*":["ZIP soubory"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Importováno {imported}, přeskočeno {dups} duplicit"]},"Import failed":{"*":["Import selhal"]},"Export failed":{"*":["Export selhal"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Tímto se smažou všechny webové aplikace a jejich položky na ploše. Tuto akci nelze vrátit zpět."]},"Browser changed":{"*":["Prohlížeč změněn"]},"What are WebApps?":{"*":["Co jsou WebApps?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps jsou webové aplikace, které běží v samostatném okně prohlížeče a poskytují více aplikaci podobný zážitek pro vaše oblíbené webové stránky."]},"Benefits of using WebApps:":{"*":["Výhody používání WebApps:"]},"Focus":{"*":["Soustředění"]},"Work without the distractions of other browser tabs":{"*":["Pracujte bez rozptýlení ostatními záložkami v prohlížeči"]},"Desktop Integration":{"*":["Integrace na ploše"]},"Quick access from your application menu":{"*":["Rychlý přístup z nabídky aplikací"]},"Isolated Profiles":{"*":["Izolované profily"]},"Each webapp can have its own cookies and settings":{"*":["Každý webapp může mít své vlastní cookies a nastavení"]},"Back":{"*":["Zpět"]},"Forward":{"*":["Vpřed"]},"Reload":{"*":["Obnovit"]},"Fullscreen":{"*":["Celá obrazovka"]},"Enter URL…":{"*":["Zadejte URL…"]},"Zoom In":{"*":["Přiblížit"]},"Zoom Out":{"*":["Oddálit"]},"Reset Zoom":{"*":["Obnovit přiblížení"]},"Developer Tools":{"*":["Nástroje pro vývojáře"]},"Menu":{"*":["Menu"]},"Open Link in Browser":{"*":["Otevřít odkaz v prohlížeči"]},"Download Complete":{"*":["Stahování dokončeno"]},"Save File":{"*":["Uložit soubor"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/cs.po b/biglinux-webapps/locale/cs.po index 12bb1f85..2318d6fa 100644 --- a/biglinux-webapps/locale/cs.po +++ b/biglinux-webapps/locale/cs.po @@ -14,7 +14,6 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -24,31 +23,26 @@ msgstr "" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Šablony" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Vyberte šablonu" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Hledat šablony..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Výsledky vyhledávání" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Žádné šablony nenalezeny" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -60,13 +54,11 @@ msgstr "Žádné šablony nenalezeny" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Upravit WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Smazat WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 # File: biglinux-webapps/biglinux- @@ -75,25 +67,21 @@ msgstr "Smazat WebApp" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Vítejte v správci webových aplikací" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Znovu to nezobrazovat" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Začněme" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Vyberte prohlížeč" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -106,7 +94,6 @@ msgstr "Vyberte prohlížeč" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Zrušit" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -119,7 +106,6 @@ msgstr "Zrušit" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Vybrat" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -133,7 +119,6 @@ msgstr "Vybrat" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "OK" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -145,19 +130,16 @@ msgstr "OK" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Přidat WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Detekuj název a ikonu z webové stránky" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 # File: biglinux-webapps/biglinux- @@ -165,38 +147,32 @@ msgstr "Detekuj název a ikonu z webové stránky" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Jméno" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Kategorie" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Otevře se jako nativní okno bez rozhraní prohlížeče." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 #. -- Browser row (hidden in app mode) -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Prohlížeč" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Umožňuje nezávislé cookies a relace" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Název profilu" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -206,52 +182,44 @@ msgstr "Název profilu" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Uložit" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Načítání..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "Správce webových aplikací" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Hledat WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Exportovat webové aplikace" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Importovat WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Procházet složku Aplikace" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Procházet složku profilů" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 # File: biglinux-webapps/biglinux- @@ -260,31 +228,26 @@ msgstr "Procházet složku profilů" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Odstranit všechny webové aplikace" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "O aplikaci" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Přidejte novou webovou aplikaci, abyste mohli začít." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "Webová aplikace byla úspěšně vytvořena." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "Webová aplikace byla úspěšně aktualizována." - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -294,101 +257,81 @@ msgstr "Webová aplikace byla úspěšně aktualizována." #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Také odstraňte složku konfigurace." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Smazat" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "Webová aplikace byla úspěšně smazána." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Odstranit vše" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Všechny webové aplikace byly odstraněny." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Nepodařilo se odstranit všechny WebAppy" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "Webové aplikace byly úspěšně exportovány." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Žádné webové aplikace" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 msgid "Change browser" msgstr "Změnit prohlížeč" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 msgid "Edit" msgstr "Upravit" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "New WebApp" msgstr "Nová WebApp" - #. -- Icon row -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 msgid "Icon" msgstr "Ikona" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 msgid "App Mode" msgstr "Režim aplikace" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 msgid "Separate Profile" msgstr "Samostatný profil" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 msgid "Select Icon" msgstr "Vybrat ikonu" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 msgid "Images" msgstr "Obrázky" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 msgid "ZIP files" msgstr "ZIP soubory" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 #, rust-format msgid "Imported {imported}, skipped {dups} duplicates" msgstr "Importováno {imported}, přeskočeno {dups} duplicit" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 msgid "Import failed" msgstr "Import selhal" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 msgid "Export failed" msgstr "Export selhal" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 msgid "" "This will delete all webapps and their desktop entries. This cannot be " @@ -396,15 +339,12 @@ msgid "" msgstr "" "Tímto se smažou všechny webové aplikace a jejich položky na ploše. Tuto akci" " nelze vrátit zpět." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 msgid "Browser changed" msgstr "Prohlížeč změněn" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 msgid "What are WebApps?" msgstr "Co jsou WebApps?" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 msgid "" "WebApps are web applications that run in a dedicated browser window, " @@ -412,110 +352,85 @@ msgid "" msgstr "" "WebApps jsou webové aplikace, které běží v samostatném okně prohlížeče a " "poskytují více aplikaci podobný zážitek pro vaše oblíbené webové stránky." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 msgid "Benefits of using WebApps:" msgstr "Výhody používání WebApps:" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Focus" msgstr "Soustředění" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Work without the distractions of other browser tabs" msgstr "Pracujte bez rozptýlení ostatními záložkami v prohlížeči" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Desktop Integration" msgstr "Integrace na ploše" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Quick access from your application menu" msgstr "Rychlý přístup z nabídky aplikací" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Isolated Profiles" msgstr "Izolované profily" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Each webapp can have its own cookies and settings" msgstr "Každý webapp může mít své vlastní cookies a nastavení" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 msgid "Back" msgstr "Zpět" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 msgid "Forward" msgstr "Vpřed" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 msgid "Reload" msgstr "Obnovit" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 msgid "Fullscreen" msgstr "Celá obrazovka" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 msgid "Enter URL…" msgstr "Zadejte URL…" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 msgid "Zoom In" msgstr "Přiblížit" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 msgid "Zoom Out" msgstr "Oddálit" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 msgid "Reset Zoom" msgstr "Obnovit přiblížení" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 msgid "Developer Tools" msgstr "Nástroje pro vývojáře" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 msgid "Menu" msgstr "Menu" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 msgid "Open Link in Browser" msgstr "Otevřít odkaz v prohlížeči" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 msgid "Download Complete" msgstr "Stahování dokončeno" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 msgid "Save File" msgstr "Uložit soubor" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 #~ msgid "Search templates" #~ msgstr "Hledat šablony" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 #, python-brace-format #~ msgid "Browser: {0}" #~ msgstr "Prohlížeč: {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 #, python-brace-format #~ msgid "Edit {0}" #~ msgstr "Upravit {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 #, python-brace-format #~ msgid "Delete {0}" #~ msgstr "Smazat {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 #~ msgid "" @@ -538,12 +453,10 @@ msgstr "Uložit soubor" #~ "• Soustředění: Pracujte bez rozptýlení od ostatních karet prohlížeče\n" #~ "• Integrace na ploše: Rychlý přístup z nabídky aplikací\n" #~ "• Izolované profily: Volitelně může mít každá webová aplikace své vlastní cookies a nastavení\n" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 #~ msgid "System Default" #~ msgstr "Výchozí systém" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -562,12 +475,10 @@ msgstr "Uložit soubor" # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 #~ msgid "Default" #~ msgstr "Výchozí" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 #~ msgid "Please select a browser." #~ msgstr "Vyberte prosím prohlížeč." - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -576,49 +487,40 @@ msgstr "Uložit soubor" # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 #~ msgid "Error" #~ msgstr "Chyba" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 #~ msgid "Choose from templates" #~ msgstr "Vyberte z šablon" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 #~ msgid "Detect" #~ msgstr "Detekovat" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 #~ msgid "App Icon" #~ msgstr "Ikona aplikace" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 #~ msgid "Select icon for the WebApp" #~ msgstr "Vyberte ikonu pro WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 #~ msgid "Available Icons" #~ msgstr "Dostupné ikony" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 #~ msgid "Application Mode" #~ msgstr "Režim aplikace" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 #~ msgid "Profile Settings" #~ msgstr "Nastavení profilu" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 #~ msgid "Configure a separate browser profile for this webapp" #~ msgstr "Nakonfigurujte samostatný profil prohlížeče pro tuto webovou aplikaci" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -627,63 +529,51 @@ msgstr "Uložit soubor" # #~ msgid "Use separate profile" #~ msgstr "Použijte samostatný profil" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 #~ msgid "Detecting website information, please wait" #~ msgstr "Zjišťuji informace o webové stránce, prosím čekejte" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 #~ msgid "Please enter a URL first." #~ msgstr "Nejprve zadejte URL." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 #~ msgid "Please enter a name for the WebApp." #~ msgstr "Zadejte název pro WebApp." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 #~ msgid "Please enter a URL for the WebApp." #~ msgstr "Zadejte prosím URL pro WebApp." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 #~ msgid "Please select a browser for the WebApp." #~ msgstr "Vyberte prosím pro WebApp prohlížeč." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 #~ msgid "Main Menu" #~ msgstr "Hlavní nabídka" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 #~ msgid "Refresh" #~ msgstr "Obnovit" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 #~ msgid "Show Welcome Screen" #~ msgstr "Zobrazit uvítací obrazovku" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 #~ msgid "Add" #~ msgstr "Přidat" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 #~ msgid "No WebApps Found" #~ msgstr "Žádné webové aplikace nenalezeny" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 #, python-brace-format #~ msgid "Browser changed to {0}" #~ msgstr "Prohlížeč byl změněn na {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 #, python-brace-format @@ -697,12 +587,10 @@ msgstr "Uložit soubor" #~ "\n" #~ "URL: {1}\n" #~ "Prohlížeč: {2}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 #~ msgid "REMOVE ALL" #~ msgstr "ODSTRANIT VŠE" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 #, python-brace-format @@ -714,48 +602,39 @@ msgstr "Uložit soubor" #~ "Opravdu chcete odstranit všechny své WebApps? Tuto akci nelze vrátit zpět.\n" #~ "\n" #~ "Zadejte \"{0}\" pro potvrzení." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 #, python-brace-format #~ msgid "Icon {0} of {1}" #~ msgstr "Ikona {0} z {1}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #~ msgid "There are no WebApps to export." #~ msgstr "Není k exportu žádná WebApp." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 #~ msgid "The selected file does not exist." #~ msgstr "Vybraný soubor neexistuje." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 #~ msgid "The selected file is not a valid ZIP archive." #~ msgstr "Vybraný soubor není platný ZIP archiv." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 #~ msgid "Error importing WebApps" #~ msgstr "Chyba při importu WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 #~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" #~ msgstr "Úspěšně importováno {} WebApps ({} duplicit bylo přeskočeno)" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 #~ msgid "Imported {} WebApps successfully" #~ msgstr "Úspěšně importováno {} WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 #~ msgid "No" #~ msgstr "Ne" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 #~ msgid "Yes" diff --git a/biglinux-webapps/locale/da.json b/biglinux-webapps/locale/da.json new file mode 100644 index 00000000..e7c7e013 --- /dev/null +++ b/biglinux-webapps/locale/da.json @@ -0,0 +1 @@ +{"da":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Skabeloner"]},"Choose a Template":{"*":["Vælg en skabelon"]},"Search templates...":{"*":["Søg skabeloner..."]},"Search Results":{"*":["Søgeresultater"]},"No templates found":{"*":["Ingen skabeloner fundet"]},"Edit WebApp":{"*":["Rediger WebApp"]},"Delete WebApp":{"*":["Slet WebApp"]},"Welcome to WebApps Manager":{"*":["Velkommen til WebApps Manager"]},"Don't show this again":{"*":["Vis ikke dette igen"]},"Let's Start":{"*":["Lad os starte"]},"Select Browser":{"*":["Vælg browser"]},"Cancel":{"*":["Annuller"]},"Select":{"*":["Vælg"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Tilføj WebApp"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Registrer navn og ikon fra hjemmeside"]},"Name":{"*":["Navn"]},"Category":{"*":["Kategori"]},"Opens as a native window without browser interface":{"*":["Åbner som et native vindue uden browsergrænseflade"]},"Browser":{"*":["Browser"]},"Allows independent cookies and sessions":{"*":["Tillader uafhængige cookies og sessioner"]},"Profile Name":{"*":["Profilnavn"]},"Save":{"*":["Gem"]},"Loading...":{"*":["Indlæser..."]},"WebApps Manager":{"*":["WebApps Manager"]},"Search WebApps":{"*":["Søg WebApps"]},"Export WebApps":{"*":["Eksporter WebApps"]},"Import WebApps":{"*":["Importer WebApps"]},"Browse Applications Folder":{"*":["Gennemse applikationsmappe"]},"Browse Profiles Folder":{"*":["Gennemse profiler-mappe"]},"Remove All WebApps":{"*":["Fjern alle webapps"]},"About":{"*":["Om"]},"Add a new webapp to get started":{"*":["Tilføj en ny webapp for at komme i gang"]},"WebApp created successfully":{"*":["WebApp oprettet med succes"]},"WebApp updated successfully":{"*":["WebApp opdateret med succes"]},"Also delete configuration folder":{"*":["Slet også konfigurationsmappen."]},"Delete":{"*":["Slet"]},"WebApp deleted successfully":{"*":["WebApp slettet med succes"]},"Remove All":{"*":["Fjern alt"]},"All WebApps have been removed":{"*":["Alle WebApps er blevet fjernet."]},"Failed to remove all WebApps":{"*":["Kunne ikke fjerne alle WebApps"]},"WebApps exported successfully":{"*":["WebApps eksporteret med succes"]},"No WebApps":{"*":["Ingen WebApps"]},"Change browser":{"*":["Skift browser"]},"Edit":{"*":["Rediger"]},"New WebApp":{"*":["Ny WebApp"]},"Icon":{"*":["Ikon"]},"App Mode":{"*":["App-tilstand"]},"Separate Profile":{"*":["Separat profil"]},"Select Icon":{"*":["Vælg ikon"]},"Images":{"*":["Billeder"]},"ZIP files":{"*":["ZIP-filer"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Importeret {imported}, sprunget over {dups} dubletter"]},"Import failed":{"*":["Import mislykkedes"]},"Export failed":{"*":["Eksport mislykkedes"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Dette vil slette alle webapps og deres skrivebordsgenveje. Dette kan ikke fortrydes."]},"Browser changed":{"*":["Browser ændret"]},"What are WebApps?":{"*":["Hvad er WebApps?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps er webapplikationer, der kører i et dedikeret browservindue og giver en mere app-lignende oplevelse for dine yndlingswebsteder."]},"Benefits of using WebApps:":{"*":["Fordele ved at bruge WebApps:"]},"Focus":{"*":["Fokus"]},"Work without the distractions of other browser tabs":{"*":["Arbejd uden forstyrrelser fra andre browsertabs"]},"Desktop Integration":{"*":["Desktopintegration"]},"Quick access from your application menu":{"*":["Hurtig adgang fra din applikationsmenu"]},"Isolated Profiles":{"*":["Isolerede profiler"]},"Each webapp can have its own cookies and settings":{"*":["Hver webapp kan have sine egne cookies og indstillinger"]},"Back":{"*":["Tilbage"]},"Forward":{"*":["Frem"]},"Reload":{"*":["Genindlæs"]},"Fullscreen":{"*":["Fuld skærm"]},"Enter URL…":{"*":["Indtast URL…"]},"Zoom In":{"*":["Zoom ind"]},"Zoom Out":{"*":["Zoom ud"]},"Reset Zoom":{"*":["Nulstil Zoom"]},"Developer Tools":{"*":["Udviklerværktøjer"]},"Menu":{"*":["Menu"]},"Open Link in Browser":{"*":["Åbn link i browser"]},"Download Complete":{"*":["Download fuldført"]},"Save File":{"*":["Gem fil"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/da.po b/biglinux-webapps/locale/da.po index ce1b73d9..7709f51f 100644 --- a/biglinux-webapps/locale/da.po +++ b/biglinux-webapps/locale/da.po @@ -14,7 +14,6 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -24,31 +23,26 @@ msgstr "" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Skabeloner" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Vælg en skabelon" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Søg skabeloner..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Søgeresultater" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Ingen skabeloner fundet" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -60,13 +54,11 @@ msgstr "Ingen skabeloner fundet" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Rediger WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Slet WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 # File: biglinux-webapps/biglinux- @@ -75,25 +67,21 @@ msgstr "Slet WebApp" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Velkommen til WebApps Manager" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Vis ikke dette igen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Lad os starte" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Vælg browser" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -106,7 +94,6 @@ msgstr "Vælg browser" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Annuller" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -119,7 +106,6 @@ msgstr "Annuller" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Vælg" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -133,7 +119,6 @@ msgstr "Vælg" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "OK" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -145,19 +130,16 @@ msgstr "OK" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Tilføj WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Registrer navn og ikon fra hjemmeside" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 # File: biglinux-webapps/biglinux- @@ -165,38 +147,32 @@ msgstr "Registrer navn og ikon fra hjemmeside" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Navn" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Kategori" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Åbner som et native vindue uden browsergrænseflade" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 #. -- Browser row (hidden in app mode) -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Browser" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Tillader uafhængige cookies og sessioner" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Profilnavn" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -206,52 +182,44 @@ msgstr "Profilnavn" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Gem" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Indlæser..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "WebApps Manager" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Søg WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Eksporter WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Importer WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Gennemse applikationsmappe" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Gennemse profiler-mappe" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 # File: biglinux-webapps/biglinux- @@ -260,31 +228,26 @@ msgstr "Gennemse profiler-mappe" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Fjern alle webapps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "Om" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Tilføj en ny webapp for at komme i gang" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "WebApp oprettet med succes" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "WebApp opdateret med succes" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -294,101 +257,81 @@ msgstr "WebApp opdateret med succes" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Slet også konfigurationsmappen." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Slet" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "WebApp slettet med succes" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Fjern alt" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Alle WebApps er blevet fjernet." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Kunne ikke fjerne alle WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebApps eksporteret med succes" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Ingen WebApps" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 msgid "Change browser" msgstr "Skift browser" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 msgid "Edit" msgstr "Rediger" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "New WebApp" msgstr "Ny WebApp" - #. -- Icon row -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 msgid "Icon" msgstr "Ikon" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 msgid "App Mode" msgstr "App-tilstand" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 msgid "Separate Profile" msgstr "Separat profil" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 msgid "Select Icon" msgstr "Vælg ikon" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 msgid "Images" msgstr "Billeder" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 msgid "ZIP files" msgstr "ZIP-filer" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 #, rust-format msgid "Imported {imported}, skipped {dups} duplicates" msgstr "Importeret {imported}, sprunget over {dups} dubletter" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 msgid "Import failed" msgstr "Import mislykkedes" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 msgid "Export failed" msgstr "Eksport mislykkedes" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 msgid "" "This will delete all webapps and their desktop entries. This cannot be " @@ -396,15 +339,12 @@ msgid "" msgstr "" "Dette vil slette alle webapps og deres skrivebordsgenveje. Dette kan ikke " "fortrydes." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 msgid "Browser changed" msgstr "Browser ændret" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 msgid "What are WebApps?" msgstr "Hvad er WebApps?" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 msgid "" "WebApps are web applications that run in a dedicated browser window, " @@ -412,110 +352,85 @@ msgid "" msgstr "" "WebApps er webapplikationer, der kører i et dedikeret browservindue og giver" " en mere app-lignende oplevelse for dine yndlingswebsteder." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 msgid "Benefits of using WebApps:" msgstr "Fordele ved at bruge WebApps:" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Focus" msgstr "Fokus" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Work without the distractions of other browser tabs" msgstr "Arbejd uden forstyrrelser fra andre browsertabs" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Desktop Integration" msgstr "Desktopintegration" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Quick access from your application menu" msgstr "Hurtig adgang fra din applikationsmenu" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Isolated Profiles" msgstr "Isolerede profiler" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Each webapp can have its own cookies and settings" msgstr "Hver webapp kan have sine egne cookies og indstillinger" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 msgid "Back" msgstr "Tilbage" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 msgid "Forward" msgstr "Frem" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 msgid "Reload" msgstr "Genindlæs" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 msgid "Fullscreen" msgstr "Fuld skærm" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 msgid "Enter URL…" msgstr "Indtast URL…" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 msgid "Zoom In" msgstr "Zoom ind" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 msgid "Zoom Out" msgstr "Zoom ud" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 msgid "Reset Zoom" msgstr "Nulstil Zoom" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 msgid "Developer Tools" msgstr "Udviklerværktøjer" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 msgid "Menu" msgstr "Menu" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 msgid "Open Link in Browser" msgstr "Åbn link i browser" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 msgid "Download Complete" msgstr "Download fuldført" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 msgid "Save File" msgstr "Gem fil" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 #~ msgid "Search templates" #~ msgstr "Søg skabeloner" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 #, python-brace-format #~ msgid "Browser: {0}" #~ msgstr "Browser: {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 #, python-brace-format #~ msgid "Edit {0}" #~ msgstr "Rediger {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 #, python-brace-format #~ msgid "Delete {0}" #~ msgstr "Slet {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 #~ msgid "" @@ -538,12 +453,10 @@ msgstr "Gem fil" #~ "• Fokus: Arbejd uden distraktioner fra andre browsertabs\n" #~ "• Desktopintegration: Hurtig adgang fra din applikationsmenu\n" #~ "• Isolerede profiler: Valgfrit kan hver webapp have sine egne cookies og indstillinger\n" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 #~ msgid "System Default" #~ msgstr "Systemstandard" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -562,12 +475,10 @@ msgstr "Gem fil" # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 #~ msgid "Default" #~ msgstr "Standard" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 #~ msgid "Please select a browser." #~ msgstr "Vælg venligst en browser." - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -576,49 +487,40 @@ msgstr "Gem fil" # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 #~ msgid "Error" #~ msgstr "Fejl" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 #~ msgid "Choose from templates" #~ msgstr "Vælg fra skabeloner" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 #~ msgid "Detect" #~ msgstr "Registrer" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 #~ msgid "App Icon" #~ msgstr "App-ikon" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 #~ msgid "Select icon for the WebApp" #~ msgstr "Vælg ikon til WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 #~ msgid "Available Icons" #~ msgstr "Tilgængelige ikoner" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 #~ msgid "Application Mode" #~ msgstr "Applikationsmode" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 #~ msgid "Profile Settings" #~ msgstr "Profilindstillinger" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 #~ msgid "Configure a separate browser profile for this webapp" #~ msgstr "Konfigurer en separat browserprofil til denne webapp" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -627,63 +529,51 @@ msgstr "Gem fil" # #~ msgid "Use separate profile" #~ msgstr "Brug separat profil" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 #~ msgid "Detecting website information, please wait" #~ msgstr "Registrerer webstedoplysninger, vent venligst" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 #~ msgid "Please enter a URL first." #~ msgstr "Indtast venligst en URL først." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 #~ msgid "Please enter a name for the WebApp." #~ msgstr "Indtast venligst et navn til WebApp'en." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 #~ msgid "Please enter a URL for the WebApp." #~ msgstr "Indtast venligst en URL til WebApp'en." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 #~ msgid "Please select a browser for the WebApp." #~ msgstr "Vælg en browser til WebApp'en." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 #~ msgid "Main Menu" #~ msgstr "Hovedmenu" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 #~ msgid "Refresh" #~ msgstr "Opdater" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 #~ msgid "Show Welcome Screen" #~ msgstr "Vis visningsskærm" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 #~ msgid "Add" #~ msgstr "Tilføj" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 #~ msgid "No WebApps Found" #~ msgstr "Ingen WebApps fundet" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 #, python-brace-format #~ msgid "Browser changed to {0}" #~ msgstr "Browser ændret til {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 #, python-brace-format @@ -697,12 +587,10 @@ msgstr "Gem fil" #~ "\n" #~ "URL: {1} \n" #~ "Browser: {2}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 #~ msgid "REMOVE ALL" #~ msgstr "FJERN ALT" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 #, python-brace-format @@ -714,48 +602,39 @@ msgstr "Gem fil" #~ "Er du sikker på, at du vil fjerne alle dine WebApps? Denne handling kan ikke fortrydes.\n" #~ "\n" #~ "Skriv \"{0}\" for at bekræfte." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 #, python-brace-format #~ msgid "Icon {0} of {1}" #~ msgstr "Ikon {0} af {1}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #~ msgid "There are no WebApps to export." #~ msgstr "Der er ingen WebApps at eksportere." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 #~ msgid "The selected file does not exist." #~ msgstr "Den valgte fil findes ikke." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 #~ msgid "The selected file is not a valid ZIP archive." #~ msgstr "Den valgte fil er ikke et gyldigt ZIP-arkiv." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 #~ msgid "Error importing WebApps" #~ msgstr "Fejl ved import af WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 #~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" #~ msgstr "Importerede {} WebApps med succes ({} dubletter sprunget over)" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 #~ msgid "Imported {} WebApps successfully" #~ msgstr "Importerede {} WebApps med succes" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 #~ msgid "No" #~ msgstr "Ne" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 #~ msgid "Yes" diff --git a/biglinux-webapps/locale/de.json b/biglinux-webapps/locale/de.json new file mode 100644 index 00000000..5dc1a22a --- /dev/null +++ b/biglinux-webapps/locale/de.json @@ -0,0 +1 @@ +{"biglinux-webapps/biglinux-webapps":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Vorlagen"]},"Choose a Template":{"*":["Wählen Sie eine Vorlage"]},"Search templates...":{"*":["Vorlagen suchen..."]},"Search Results":{"*":["Suchergebnisse"]},"No templates found":{"*":["Keine Vorlagen gefunden"]},"Edit WebApp":{"*":["WebApp bearbeiten"]},"Delete WebApp":{"*":["WebApp löschen"]},"Welcome to WebApps Manager":{"*":["Willkommen bei WebApps-Manager"]},"Don't show this again":{"*":["Zeige dies nicht erneut"]},"Let's Start":{"*":["Lassen Sie uns beginnen"]},"Select Browser":{"*":["Browser auswählen"]},"Cancel":{"*":["Abbrechen"]},"Select":{"*":["Auswählen"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["WebApp hinzufügen"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Name und Icon von Website erkennen"]},"Name":{"*":["Name"]},"Category":{"*":["Kategorie"]},"Opens as a native window without browser interface":{"*":["Öffnet sich als natives Fenster ohne Browseroberfläche"]},"Browser":{"*":["Browser"]},"Allows independent cookies and sessions":{"*":["Erlaubt unabhängige Cookies und Sitzungen"]},"Profile Name":{"*":["Profilname"]},"Save":{"*":["Speichern"]},"Loading...":{"*":["Laden ..."]},"WebApps Manager":{"*":["WebApps-Manager"]},"Search WebApps":{"*":["WebApps suchen"]},"Export WebApps":{"*":["WebApps exportieren"]},"Import WebApps":{"*":["WebApps importieren"]},"Browse Applications Folder":{"*":["Ordner „Anwendungen“ durchsuchen"]},"Browse Profiles Folder":{"*":["Ordner „Profile“ durchsuchen"]},"Remove All WebApps":{"*":["Alle WebApps entfernen"]},"About":{"*":["Über"]},"Add a new webapp to get started":{"*":["Fügen Sie eine neue WebApp hinzu, um zu beginnen"]},"WebApp created successfully":{"*":["WebApp erfolgreich erstellt"]},"WebApp updated successfully":{"*":["WebApp erfolgreich aktualisiert"]},"Also delete configuration folder":{"*":["Auch Konfigurationsordner löschen"]},"Delete":{"*":["Löschen"]},"WebApp deleted successfully":{"*":["WebApp erfolgreich gelöscht"]},"Remove All":{"*":["Alles entfernen"]},"All WebApps have been removed":{"*":["Alle WebApps sind entfernt worden"]},"Failed to remove all WebApps":{"*":["Alle WebApps konnten nicht entfernt werden"]},"WebApps exported successfully":{"*":["WebApps erfolgreich exportiert"]},"No WebApps":{"*":["Keine WebApps"]},"Change browser":{"*":["Browser wechseln"]},"Edit":{"*":["Bearbeiten"]},"New WebApp":{"*":["Neue WebApp"]},"Icon":{"*":["Symbol"]},"App Mode":{"*":["App-Modus"]},"Separate Profile":{"*":["Getrenntes Profil"]},"Select Icon":{"*":["Symbol auswählen"]},"Images":{"*":["Bilder"]},"ZIP files":{"*":["ZIP-Dateien"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Importiert {imported}, übersprungene {dups} Duplikate"]},"Import failed":{"*":["Import fehlgeschlagen"]},"Export failed":{"*":["Export fehlgeschlagen"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Dadurch werden alle Webapps und deren Desktop-Einträge gelöscht. Dies kann nicht rückgängig gemacht werden."]},"Browser changed":{"*":["Browser geändert"]},"What are WebApps?":{"*":["Was sind WebApps?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps sind Webanwendungen, die in einem eigenen Browserfenster laufen und ein app-ähnlicheres Erlebnis für Ihre Lieblingswebsites bieten."]},"Benefits of using WebApps:":{"*":["Vorteile der Verwendung von WebApps:"]},"Focus":{"*":["Fokus"]},"Work without the distractions of other browser tabs":{"*":["Arbeiten ohne Ablenkung durch andere Browser-Tabs"]},"Desktop Integration":{"*":["Desktop-Integration"]},"Quick access from your application menu":{"*":["Schneller Zugriff über Ihr Anwendungsmenü"]},"Isolated Profiles":{"*":["Isolierte Profile"]},"Each webapp can have its own cookies and settings":{"*":["Jede WebApp kann eigene Cookies und Einstellungen haben"]},"Back":{"*":["Zurück"]},"Forward":{"*":["Vorwärts"]},"Reload":{"*":["Neu laden"]},"Fullscreen":{"*":["Vollbild"]},"Enter URL…":{"*":["URL eingeben…"]},"Zoom In":{"*":["Vergrößern"]},"Zoom Out":{"*":["Verkleinern"]},"Reset Zoom":{"*":["Zoom zurücksetzen"]},"Developer Tools":{"*":["Entwicklerwerkzeuge"]},"Menu":{"*":["Menü"]},"Open Link in Browser":{"*":["Link im Browser öffnen"]},"Download Complete":{"*":["Download abgeschlossen"]},"Save File":{"*":["Datei speichern"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/de.po b/biglinux-webapps/locale/de.po index 6deb0f2b..4cda7cf2 100644 --- a/biglinux-webapps/locale/de.po +++ b/biglinux-webapps/locale/de.po @@ -14,7 +14,6 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -24,31 +23,26 @@ msgstr "" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Vorlagen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Wählen Sie eine Vorlage" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Vorlagen suchen..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Suchergebnisse" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Keine Vorlagen gefunden" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -60,13 +54,11 @@ msgstr "Keine Vorlagen gefunden" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "WebApp bearbeiten" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "WebApp löschen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 # File: biglinux-webapps/biglinux- @@ -75,25 +67,21 @@ msgstr "WebApp löschen" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Willkommen bei WebApps-Manager" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Zeige dies nicht erneut" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 151 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Lassen Sie uns beginnen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Browser auswählen" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -106,7 +94,6 @@ msgstr "Browser auswählen" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Abbrechen" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -119,7 +106,6 @@ msgstr "Abbrechen" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Auswählen" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -133,7 +119,6 @@ msgstr "Auswählen" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "OK" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -145,19 +130,16 @@ msgstr "OK" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "WebApp hinzufügen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Name und Icon von Website erkennen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 # File: biglinux-webapps/biglinux- @@ -165,38 +147,32 @@ msgstr "Name und Icon von Website erkennen" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Name" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Kategorie" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Öffnet sich als natives Fenster ohne Browseroberfläche" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 #. -- Browser row (hidden in app mode) -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Browser" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Erlaubt unabhängige Cookies und Sitzungen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Profilname" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -206,52 +182,44 @@ msgstr "Profilname" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Speichern" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Laden ..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "WebApps-Manager" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "WebApps suchen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 78 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "WebApps exportieren" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "WebApps importieren" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 82 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Ordner „Anwendungen“ durchsuchen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 83 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Ordner „Profile“ durchsuchen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 88 # File: biglinux-webapps/biglinux- @@ -260,31 +228,26 @@ msgstr "Ordner „Profile“ durchsuchen" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Alle WebApps entfernen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 89 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "Über" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Fügen Sie eine neue WebApp hinzu, um zu beginnen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "WebApp erfolgreich erstellt" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "WebApp erfolgreich aktualisiert" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -294,101 +257,81 @@ msgstr "WebApp erfolgreich aktualisiert" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Auch Konfigurationsordner löschen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Löschen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "WebApp erfolgreich gelöscht" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Alles entfernen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 464 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Alle WebApps sind entfernt worden" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 466 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Alle WebApps konnten nicht entfernt werden" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebApps erfolgreich exportiert" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Keine WebApps" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 msgid "Change browser" msgstr "Browser wechseln" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 msgid "Edit" msgstr "Bearbeiten" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "New WebApp" msgstr "Neue WebApp" - #. -- Icon row -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 msgid "Icon" msgstr "Symbol" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 msgid "App Mode" msgstr "App-Modus" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 msgid "Separate Profile" msgstr "Getrenntes Profil" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 msgid "Select Icon" msgstr "Symbol auswählen" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 msgid "Images" msgstr "Bilder" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 msgid "ZIP files" msgstr "ZIP-Dateien" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 #, rust-format msgid "Imported {imported}, skipped {dups} duplicates" msgstr "Importiert {imported}, übersprungene {dups} Duplikate" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 msgid "Import failed" msgstr "Import fehlgeschlagen" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 msgid "Export failed" msgstr "Export fehlgeschlagen" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 msgid "" "This will delete all webapps and their desktop entries. This cannot be " @@ -396,15 +339,12 @@ msgid "" msgstr "" "Dadurch werden alle Webapps und deren Desktop-Einträge gelöscht. Dies kann " "nicht rückgängig gemacht werden." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 msgid "Browser changed" msgstr "Browser geändert" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 msgid "What are WebApps?" msgstr "Was sind WebApps?" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 msgid "" "WebApps are web applications that run in a dedicated browser window, " @@ -412,110 +352,85 @@ msgid "" msgstr "" "WebApps sind Webanwendungen, die in einem eigenen Browserfenster laufen und " "ein app-ähnlicheres Erlebnis für Ihre Lieblingswebsites bieten." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 msgid "Benefits of using WebApps:" msgstr "Vorteile der Verwendung von WebApps:" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Focus" msgstr "Fokus" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Work without the distractions of other browser tabs" msgstr "Arbeiten ohne Ablenkung durch andere Browser-Tabs" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Desktop Integration" msgstr "Desktop-Integration" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Quick access from your application menu" msgstr "Schneller Zugriff über Ihr Anwendungsmenü" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Isolated Profiles" msgstr "Isolierte Profile" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Each webapp can have its own cookies and settings" msgstr "Jede WebApp kann eigene Cookies und Einstellungen haben" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 msgid "Back" msgstr "Zurück" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 msgid "Forward" msgstr "Vorwärts" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 msgid "Reload" msgstr "Neu laden" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 msgid "Fullscreen" msgstr "Vollbild" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 msgid "Enter URL…" msgstr "URL eingeben…" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 msgid "Zoom In" msgstr "Vergrößern" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 msgid "Zoom Out" msgstr "Verkleinern" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 msgid "Reset Zoom" msgstr "Zoom zurücksetzen" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 msgid "Developer Tools" msgstr "Entwicklerwerkzeuge" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 msgid "Menu" msgstr "Menü" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 msgid "Open Link in Browser" msgstr "Link im Browser öffnen" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 msgid "Download Complete" msgstr "Download abgeschlossen" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 msgid "Save File" msgstr "Datei speichern" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 #~ msgid "Search templates" #~ msgstr "Suchvorlagen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 #, python-brace-format #~ msgid "Browser: {0}" #~ msgstr "Browser: {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 #, python-brace-format #~ msgid "Edit {0}" #~ msgstr "Bearbeiten {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 #, python-brace-format #~ msgid "Delete {0}" #~ msgstr "Löschen {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 #~ msgid "" @@ -538,12 +453,10 @@ msgstr "Datei speichern" #~ "• Fokus: Arbeiten ohne die Ablenkungen durch andere Browser-Tabs\n" #~ "• Desktop-Integration: Schneller Zugriff über Ihr Anwendungsmenü\n" #~ "• Isolierte Profile: Optional kann jede WebApp ihre eigenen Cookies und Einstellungen haben\n" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 175 #~ msgid "System Default" #~ msgstr "System-Default" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -562,12 +475,10 @@ msgstr "Datei speichern" # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 #~ msgid "Default" #~ msgstr "Default" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 #~ msgid "Please select a browser." #~ msgstr "Bitte wählen Sie einen Browser aus." - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -576,49 +487,40 @@ msgstr "Datei speichern" # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 #~ msgid "Error" #~ msgstr "Fehler" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 #~ msgid "Choose from templates" #~ msgstr "Wählen Sie aus Vorlagen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 #~ msgid "Detect" #~ msgstr "Erkennen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 #~ msgid "App Icon" #~ msgstr "App-Icon" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 #~ msgid "Select icon for the WebApp" #~ msgstr "Icon für die WebApp aus.wählen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 #~ msgid "Available Icons" #~ msgstr "Verfügbare Icons" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 #~ msgid "Application Mode" #~ msgstr "Anwendungsmodus" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 #~ msgid "Profile Settings" #~ msgstr "Profile-Einstellungen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 #~ msgid "Configure a separate browser profile for this webapp" #~ msgstr "Konfigurieren Sie ein separates Browserprofil für diese Webanwendung." - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -627,63 +529,51 @@ msgstr "Datei speichern" # #~ msgid "Use separate profile" #~ msgstr "Separates Profil verwenden" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 #~ msgid "Detecting website information, please wait" #~ msgstr "Websiteinformationen werden erkannt, bitte warten." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 #~ msgid "Please enter a URL first." #~ msgstr "Bitte geben Sie zuerst eine URL ein." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 #~ msgid "Please enter a name for the WebApp." #~ msgstr "Bitte geben Sie einen Name für die WebApp ein." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 #~ msgid "Please enter a URL for the WebApp." #~ msgstr "Bitte geben Sie eine URL für die WebApp ein." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 #~ msgid "Please select a browser for the WebApp." #~ msgstr "Bitte wählen Sie einen Browser für die WebApp aus." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 #~ msgid "Main Menu" #~ msgstr "Hauptmenü" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 77 #~ msgid "Refresh" #~ msgstr "Aktualisieren" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 #~ msgid "Show Welcome Screen" #~ msgstr "Willkommensbildschirm zeigen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 #~ msgid "Add" #~ msgstr "Hinzufügen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 #~ msgid "No WebApps Found" #~ msgstr "Keine WebApps gefunden" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 #, python-brace-format #~ msgid "Browser changed to {0}" #~ msgstr "Browser geändert in {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 #, python-brace-format @@ -697,12 +587,10 @@ msgstr "Datei speichern" #~ "\n" #~ "URL: {1}\n" #~ "Browser: {2}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 #~ msgid "REMOVE ALL" #~ msgstr "ALLE ENTFERNEN" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 #, python-brace-format @@ -714,48 +602,39 @@ msgstr "Datei speichern" #~ "Sind Sie sicher, dass Sie alle Ihre WebApps entfernen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\n" #~ "\n" #~ "Geben Sie \"{0}\" ein, um zu bestätigen." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 #, python-brace-format #~ msgid "Icon {0} of {1}" #~ msgstr "Symbol {0} von {1}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #~ msgid "There are no WebApps to export." #~ msgstr "Es gibt keine zu exportierenden WebApps." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 #~ msgid "The selected file does not exist." #~ msgstr "Die ausgewählte Datei ist nicht vorhanden." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 #~ msgid "The selected file is not a valid ZIP archive." #~ msgstr "Die ausgewählte Datei ist kein gültiges ZIP-Archiv." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 #~ msgid "Error importing WebApps" #~ msgstr "Fehler beim Importieren von WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 #~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" #~ msgstr "{} WebApps erfolgreich importiert ({} Duplikate übersprungen)" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 #~ msgid "Imported {} WebApps successfully" #~ msgstr "{} WebApps erfolgreich importiert" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 #~ msgid "No" #~ msgstr "Nein" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 #~ msgid "Yes" diff --git a/biglinux-webapps/locale/el.json b/biglinux-webapps/locale/el.json new file mode 100644 index 00000000..7638eeda --- /dev/null +++ b/biglinux-webapps/locale/el.json @@ -0,0 +1 @@ +{"el":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Πρότυπα"]},"Choose a Template":{"*":["Επιλέξτε ένα Πρότυπο"]},"Search templates...":{"*":["Αναζήτηση προτύπων..."]},"Search Results":{"*":["Αποτελέσματα Αναζήτησης"]},"No templates found":{"*":["Δεν βρέθηκαν πρότυπα"]},"Edit WebApp":{"*":["Επεξεργασία WebApp"]},"Delete WebApp":{"*":["Διαγραφή WebApp"]},"Welcome to WebApps Manager":{"*":["Καλώς ήρθατε στον Διαχειριστή WebApps"]},"Don't show this again":{"*":["Μην το δείξετε ξανά"]},"Let's Start":{"*":["Ας ξεκινήσουμε"]},"Select Browser":{"*":["Επιλέξτε πρόγραμμα περιήγησης"]},"Cancel":{"*":["Ακύρωση"]},"Select":{"*":["Επιλέξτε"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Προσθήκη WebApp"]},"URL":{"*":["Διεύθυνση URL"]},"Detect name and icon from website":{"*":["Ανίχνευση ονόματος και εικονιδίου από τον ιστότοπο"]},"Name":{"*":["Όνομα"]},"Category":{"*":["Κατηγορία"]},"Opens as a native window without browser interface":{"*":["Ανοίγει ως εγγενές παράθυρο χωρίς διεπαφή προγράμματος περιήγησης."]},"Browser":{"*":["Πλοηγός"]},"Allows independent cookies and sessions":{"*":["Επιτρέπει ανεξάρτητα cookies και συνεδρίες"]},"Profile Name":{"*":["Όνομα προφίλ"]},"Save":{"*":["Αποθήκευση"]},"Loading...":{"*":["Φόρτωση..."]},"WebApps Manager":{"*":["Διαχειριστής WebApps"]},"Search WebApps":{"*":["Αναζήτηση WebApps"]},"Export WebApps":{"*":["Εξαγωγή WebApps"]},"Import WebApps":{"*":["Εισαγωγή WebApps"]},"Browse Applications Folder":{"*":["Περιήγηση στο Φάκελο Εφαρμογών"]},"Browse Profiles Folder":{"*":["Προβολή φακέλου προφίλ"]},"Remove All WebApps":{"*":["Αφαίρεση όλων των WebApps"]},"About":{"*":["Σχετικά"]},"Add a new webapp to get started":{"*":["Προσθέστε μια νέα διαδικτυακή εφαρμογή για να ξεκινήσετε"]},"WebApp created successfully":{"*":["Η εφαρμογή Web δημιουργήθηκε με επιτυχία"]},"WebApp updated successfully":{"*":["Η εφαρμογή Web ενημερώθηκε με επιτυχία"]},"Also delete configuration folder":{"*":["Επίσης, διαγράψτε τον φάκελο διαμόρφωσης."]},"Delete":{"*":["Διαγραφή"]},"WebApp deleted successfully":{"*":["Η εφαρμογή Web διαγράφηκε με επιτυχία."]},"Remove All":{"*":["Αφαίρεση όλων"]},"All WebApps have been removed":{"*":["Όλες οι WebApps έχουν αφαιρεθεί."]},"Failed to remove all WebApps":{"*":["Αποτυχία κατά την αφαίρεση όλων των WebApps"]},"WebApps exported successfully":{"*":["Οι εφαρμογές ιστού εξήχθησαν με επιτυχία"]},"No WebApps":{"*":["Όχι WebApps"]},"Change browser":{"*":["Αλλαγή προγράμματος περιήγησης"]},"Edit":{"*":["Επεξεργασία"]},"New WebApp":{"*":["Νέα WebApp"]},"Icon":{"*":["Εικονίδιο"]},"App Mode":{"*":["Λειτουργία εφαρμογής"]},"Separate Profile":{"*":["Ξεχωριστό προφίλ"]},"Select Icon":{"*":["Επιλογή εικονιδίου"]},"Images":{"*":["Εικόνες"]},"ZIP files":{"*":["Αρχεία ZIP"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Εισήχθησαν {imported}, παραλήφθηκαν {dups} διπλότυπα"]},"Import failed":{"*":["Η εισαγωγή απέτυχε"]},"Export failed":{"*":["Η εξαγωγή απέτυχε"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Αυτό θα διαγράψει όλες τις webapps και τις καταχωρήσεις τους στην επιφάνεια εργασίας. Δεν μπορεί να αναιρεθεί."]},"Browser changed":{"*":["Το πρόγραμμα περιήγησης άλλαξε"]},"What are WebApps?":{"*":["Τι είναι οι WebApps;"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["Τα WebApps είναι διαδικτυακές εφαρμογές που εκτελούνται σε ένα αφιερωμένο παράθυρο προγράμματος περιήγησης, προσφέροντας μια εμπειρία πιο κοντά σε εφαρμογή για τις αγαπημένες σας ιστοσελίδες."]},"Benefits of using WebApps:":{"*":["Οφέλη από τη χρήση των WebApps:"]},"Focus":{"*":["Εστίαση"]},"Work without the distractions of other browser tabs":{"*":["Εργαστείτε χωρίς τις αποσπάσεις άλλων καρτελών του προγράμματος περιήγησης"]},"Desktop Integration":{"*":["Ενσωμάτωση στην επιφάνεια εργασίας"]},"Quick access from your application menu":{"*":["Γρήγορη πρόσβαση από το μενού εφαρμογών σας"]},"Isolated Profiles":{"*":["Απομονωμένα προφίλ"]},"Each webapp can have its own cookies and settings":{"*":["Κάθε webapp μπορεί να έχει τα δικά του cookies και ρυθμίσεις"]},"Back":{"*":["Πίσω"]},"Forward":{"*":["Εμπρός"]},"Reload":{"*":["Επαναφόρτωση"]},"Fullscreen":{"*":["Πλήρης οθόνη"]},"Enter URL…":{"*":["Εισαγάγετε URL…"]},"Zoom In":{"*":["Μεγέθυνση"]},"Zoom Out":{"*":["Σμίκρυνση"]},"Reset Zoom":{"*":["Επαναφορά Ζουμ"]},"Developer Tools":{"*":["Εργαλεία Προγραμματιστή"]},"Menu":{"*":["Μενού"]},"Open Link in Browser":{"*":["Άνοιγμα Συνδέσμου στον Περιηγητή"]},"Download Complete":{"*":["Λήψη Ολοκληρώθηκε"]},"Save File":{"*":["Αποθήκευση Αρχείου"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/el.po b/biglinux-webapps/locale/el.po index 30667660..58402f2d 100644 --- a/biglinux-webapps/locale/el.po +++ b/biglinux-webapps/locale/el.po @@ -14,7 +14,6 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -24,31 +23,26 @@ msgstr "" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Πρότυπα" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Επιλέξτε ένα Πρότυπο" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Αναζήτηση προτύπων..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Αποτελέσματα Αναζήτησης" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Δεν βρέθηκαν πρότυπα" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -60,13 +54,11 @@ msgstr "Δεν βρέθηκαν πρότυπα" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Επεξεργασία WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Διαγραφή WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 # File: biglinux-webapps/biglinux- @@ -75,25 +67,21 @@ msgstr "Διαγραφή WebApp" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Καλώς ήρθατε στον Διαχειριστή WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Μην το δείξετε ξανά" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Ας ξεκινήσουμε" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Επιλέξτε πρόγραμμα περιήγησης" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -106,7 +94,6 @@ msgstr "Επιλέξτε πρόγραμμα περιήγησης" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Ακύρωση" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -119,7 +106,6 @@ msgstr "Ακύρωση" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Επιλέξτε" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -133,7 +119,6 @@ msgstr "Επιλέξτε" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "OK" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -145,19 +130,16 @@ msgstr "OK" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Προσθήκη WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "Διεύθυνση URL" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Ανίχνευση ονόματος και εικονιδίου από τον ιστότοπο" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 # File: biglinux-webapps/biglinux- @@ -165,38 +147,32 @@ msgstr "Ανίχνευση ονόματος και εικονιδίου από #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Όνομα" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Κατηγορία" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Ανοίγει ως εγγενές παράθυρο χωρίς διεπαφή προγράμματος περιήγησης." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 #. -- Browser row (hidden in app mode) -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Πλοηγός" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Επιτρέπει ανεξάρτητα cookies και συνεδρίες" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Όνομα προφίλ" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -206,52 +182,44 @@ msgstr "Όνομα προφίλ" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Αποθήκευση" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Φόρτωση..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "Διαχειριστής WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Αναζήτηση WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Εξαγωγή WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Εισαγωγή WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Περιήγηση στο Φάκελο Εφαρμογών" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Προβολή φακέλου προφίλ" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 # File: biglinux-webapps/biglinux- @@ -260,31 +228,26 @@ msgstr "Προβολή φακέλου προφίλ" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Αφαίρεση όλων των WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "Σχετικά" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Προσθέστε μια νέα διαδικτυακή εφαρμογή για να ξεκινήσετε" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "Η εφαρμογή Web δημιουργήθηκε με επιτυχία" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "Η εφαρμογή Web ενημερώθηκε με επιτυχία" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -294,101 +257,81 @@ msgstr "Η εφαρμογή Web ενημερώθηκε με επιτυχία" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Επίσης, διαγράψτε τον φάκελο διαμόρφωσης." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Διαγραφή" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "Η εφαρμογή Web διαγράφηκε με επιτυχία." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Αφαίρεση όλων" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Όλες οι WebApps έχουν αφαιρεθεί." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Αποτυχία κατά την αφαίρεση όλων των WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "Οι εφαρμογές ιστού εξήχθησαν με επιτυχία" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Όχι WebApps" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 msgid "Change browser" msgstr "Αλλαγή προγράμματος περιήγησης" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 msgid "Edit" msgstr "Επεξεργασία" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "New WebApp" msgstr "Νέα WebApp" - #. -- Icon row -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 msgid "Icon" msgstr "Εικονίδιο" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 msgid "App Mode" msgstr "Λειτουργία εφαρμογής" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 msgid "Separate Profile" msgstr "Ξεχωριστό προφίλ" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 msgid "Select Icon" msgstr "Επιλογή εικονιδίου" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 msgid "Images" msgstr "Εικόνες" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 msgid "ZIP files" msgstr "Αρχεία ZIP" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 #, rust-format msgid "Imported {imported}, skipped {dups} duplicates" msgstr "Εισήχθησαν {imported}, παραλήφθηκαν {dups} διπλότυπα" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 msgid "Import failed" msgstr "Η εισαγωγή απέτυχε" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 msgid "Export failed" msgstr "Η εξαγωγή απέτυχε" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 msgid "" "This will delete all webapps and their desktop entries. This cannot be " @@ -396,15 +339,12 @@ msgid "" msgstr "" "Αυτό θα διαγράψει όλες τις webapps και τις καταχωρήσεις τους στην επιφάνεια " "εργασίας. Δεν μπορεί να αναιρεθεί." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 msgid "Browser changed" msgstr "Το πρόγραμμα περιήγησης άλλαξε" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 msgid "What are WebApps?" msgstr "Τι είναι οι WebApps;" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 msgid "" "WebApps are web applications that run in a dedicated browser window, " @@ -413,111 +353,86 @@ msgstr "" "Τα WebApps είναι διαδικτυακές εφαρμογές που εκτελούνται σε ένα αφιερωμένο " "παράθυρο προγράμματος περιήγησης, προσφέροντας μια εμπειρία πιο κοντά σε " "εφαρμογή για τις αγαπημένες σας ιστοσελίδες." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 msgid "Benefits of using WebApps:" msgstr "Οφέλη από τη χρήση των WebApps:" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Focus" msgstr "Εστίαση" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Work without the distractions of other browser tabs" msgstr "" "Εργαστείτε χωρίς τις αποσπάσεις άλλων καρτελών του προγράμματος περιήγησης" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Desktop Integration" msgstr "Ενσωμάτωση στην επιφάνεια εργασίας" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Quick access from your application menu" msgstr "Γρήγορη πρόσβαση από το μενού εφαρμογών σας" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Isolated Profiles" msgstr "Απομονωμένα προφίλ" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Each webapp can have its own cookies and settings" msgstr "Κάθε webapp μπορεί να έχει τα δικά του cookies και ρυθμίσεις" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 msgid "Back" msgstr "Πίσω" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 msgid "Forward" msgstr "Εμπρός" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 msgid "Reload" msgstr "Επαναφόρτωση" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 msgid "Fullscreen" msgstr "Πλήρης οθόνη" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 msgid "Enter URL…" msgstr "Εισαγάγετε URL…" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 msgid "Zoom In" msgstr "Μεγέθυνση" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 msgid "Zoom Out" msgstr "Σμίκρυνση" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 msgid "Reset Zoom" msgstr "Επαναφορά Ζουμ" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 msgid "Developer Tools" msgstr "Εργαλεία Προγραμματιστή" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 msgid "Menu" msgstr "Μενού" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 msgid "Open Link in Browser" msgstr "Άνοιγμα Συνδέσμου στον Περιηγητή" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 msgid "Download Complete" msgstr "Λήψη Ολοκληρώθηκε" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 msgid "Save File" msgstr "Αποθήκευση Αρχείου" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 #~ msgid "Search templates" #~ msgstr "Αναζήτηση προτύπων" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 #, python-brace-format #~ msgid "Browser: {0}" #~ msgstr "Πλοηγός: {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 #, python-brace-format #~ msgid "Edit {0}" #~ msgstr "Επεξεργασία {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 #, python-brace-format #~ msgid "Delete {0}" #~ msgstr "Διαγραφή {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 #~ msgid "" @@ -540,12 +455,10 @@ msgstr "Αποθήκευση Αρχείου" #~ "• Εστίαση: Εργαστείτε χωρίς τις αποσπάσεις από άλλες καρτέλες του προγράμματος περιήγησης\n" #~ "• Ενοποίηση Επιφάνειας Εργασίας: Γρήγορη πρόσβαση από το μενού εφαρμογών σας\n" #~ "• Απομονωμένα Προφίλ: Προαιρετικά, κάθε webapp μπορεί να έχει τα δικά της cookies και ρυθμίσεις\n" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 #~ msgid "System Default" #~ msgstr "Προεπιλογή Συστήματος" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -564,12 +477,10 @@ msgstr "Αποθήκευση Αρχείου" # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 #~ msgid "Default" #~ msgstr "Προεπιλογή" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 #~ msgid "Please select a browser." #~ msgstr "Παρακαλώ επιλέξτε έναν περιηγητή." - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -578,51 +489,42 @@ msgstr "Αποθήκευση Αρχείου" # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 #~ msgid "Error" #~ msgstr "Σφάλμα" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 #~ msgid "Choose from templates" #~ msgstr "Επιλέξτε από πρότυπα" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 #~ msgid "Detect" #~ msgstr "Ανίχνευση" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 #~ msgid "App Icon" #~ msgstr "Εικονίδιο εφαρμογής" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 #~ msgid "Select icon for the WebApp" #~ msgstr "Επιλέξτε εικονίδιο για την Εφαρμογή Ιστού" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 #~ msgid "Available Icons" #~ msgstr "Διαθέσιμα Εικονίδια" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 #~ msgid "Application Mode" #~ msgstr "Λειτουργία Εφαρμογής" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 #~ msgid "Profile Settings" #~ msgstr "Ρυθμίσεις Προφίλ" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 #~ msgid "Configure a separate browser profile for this webapp" #~ msgstr "" #~ "Ρυθμίστε ένα ξεχωριστό προφίλ προγράμματος περιήγησης για αυτήν την εφαρμογή" #~ " ιστού." - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -631,63 +533,51 @@ msgstr "Αποθήκευση Αρχείου" # #~ msgid "Use separate profile" #~ msgstr "Χρησιμοποιήστε ξεχωριστό προφίλ" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 #~ msgid "Detecting website information, please wait" #~ msgstr "Ανίχνευση πληροφοριών ιστοσελίδας, παρακαλώ περιμένετε" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 #~ msgid "Please enter a URL first." #~ msgstr "Παρακαλώ εισάγετε πρώτα μια διεύθυνση URL." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 #~ msgid "Please enter a name for the WebApp." #~ msgstr "Παρακαλώ εισάγετε ένα όνομα για την Εφαρμογή Ιστού." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 #~ msgid "Please enter a URL for the WebApp." #~ msgstr "Παρακαλώ εισάγετε μια διεύθυνση URL για την εφαρμογή ιστού." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 #~ msgid "Please select a browser for the WebApp." #~ msgstr "Παρακαλώ επιλέξτε έναν περιηγητή για την Εφαρμογή Ιστού." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 #~ msgid "Main Menu" #~ msgstr "Κύριο Μενού" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 #~ msgid "Refresh" #~ msgstr "Ανανέωση" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 #~ msgid "Show Welcome Screen" #~ msgstr "Εμφάνιση Οθόνης Καλωσορίσματος" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 #~ msgid "Add" #~ msgstr "Προσθήκη" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 #~ msgid "No WebApps Found" #~ msgstr "Δεν βρέθηκαν WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 #, python-brace-format #~ msgid "Browser changed to {0}" #~ msgstr "Ο περιηγητής άλλαξε σε {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 #, python-brace-format @@ -701,12 +591,10 @@ msgstr "Αποθήκευση Αρχείου" #~ "\n" #~ "Διεύθυνση URL: {1} \n" #~ "Περιηγητής: {2}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 #~ msgid "REMOVE ALL" #~ msgstr "ΑΦΑΙΡΕΣΗ ΟΛΩΝ" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 #, python-brace-format @@ -718,48 +606,39 @@ msgstr "Αποθήκευση Αρχείου" #~ "Είστε σίγουροι ότι θέλετε να αφαιρέσετε όλες τις WebApps σας; Αυτή η ενέργεια δεν μπορεί να αναιρεθεί.\n" #~ "\n" #~ "Πληκτρολογήστε \"{0}\" για επιβεβαίωση." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 #, python-brace-format #~ msgid "Icon {0} of {1}" #~ msgstr "Εικονίδιο {0} του {1}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #~ msgid "There are no WebApps to export." #~ msgstr "Δεν υπάρχουν WebApps προς εξαγωγή." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 #~ msgid "The selected file does not exist." #~ msgstr "Το επιλεγμένο αρχείο δεν υπάρχει." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 #~ msgid "The selected file is not a valid ZIP archive." #~ msgstr "Το επιλεγμένο αρχείο δεν είναι έγκυρο ZIP αρχείο." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 #~ msgid "Error importing WebApps" #~ msgstr "Σφάλμα κατά την εισαγωγή WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 #~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" #~ msgstr "Εισήχθησαν {} WebApps με επιτυχία ({} διπλότυπα παραλείφθηκαν)" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 #~ msgid "Imported {} WebApps successfully" #~ msgstr "Εισήχθησαν {} WebApps με επιτυχία" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 #~ msgid "No" #~ msgstr "Όχι" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 #~ msgid "Yes" diff --git a/biglinux-webapps/locale/en.json b/biglinux-webapps/locale/en.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/biglinux-webapps/locale/en.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/biglinux-webapps/locale/en.po b/biglinux-webapps/locale/en.po index b081c3e3..e69de29b 100644 --- a/biglinux-webapps/locale/en.po +++ b/biglinux-webapps/locale/en.po @@ -1,749 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the biglinux-webapps package. -# FIRST AUTHOR , YEAR. -# -msgid "" -msgstr "" -"Project-Id-Version: biglinux-webapps\n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 32 -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 163 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 -msgid "Templates" -msgstr "Templates" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 -msgid "Choose a Template" -msgstr "Choose a Template" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 -msgid "Search templates..." -msgstr "Search templates..." - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 -msgid "Search Results" -msgstr "Search Results" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 -msgid "No templates found" -msgstr "No templates found" - -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 110 -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 62 -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 150 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 -msgid "Edit WebApp" -msgstr "Edit WebApp" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 124 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 -msgid "Delete WebApp" -msgstr "Delete WebApp" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 26 -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 102 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:20 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 -msgid "Welcome to WebApps Manager" -msgstr "Welcome to WebApps Manager" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 -msgid "Don't show this again" -msgstr "Don't show this again" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 158 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 -msgid "Let's Start" -msgstr "Let's Start" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 69 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 -msgid "Select Browser" -msgstr "Select Browser" - -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 130 -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 398 -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 315 -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:99 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:225 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:291 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 -msgid "Cancel" -msgstr "Cancel" - -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 133 -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 257 -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 344 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:141 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 -msgid "Select" -msgstr "Select" - -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 229 -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 797 -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 242 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 -msgid "OK" -msgstr "OK" - -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 62 -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 150 -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 147 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 -msgid "Add WebApp" -msgstr "Add WebApp" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 227 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 -msgid "URL" -msgstr "URL" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 236 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 -msgid "Detect name and icon from website" -msgstr "Detect name and icon from website" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 245 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 -msgid "Name" -msgstr "Name" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 301 -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 310 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 -msgid "Category" -msgstr "Category" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 319 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 -msgid "Opens as a native window without browser interface" -msgstr "Opens as a native window without browser interface" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 333 -#. -- Browser row (hidden in app mode) -- -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 -msgid "Browser" -msgstr "Browser" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 360 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 -msgid "Allows independent cookies and sessions" -msgstr "Allows independent cookies and sessions" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 376 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 -msgid "Profile Name" -msgstr "Profile Name" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 402 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 -msgid "Save" -msgstr "Save" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 425 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 -msgid "Loading..." -msgstr "Loading..." - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 33 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 -msgid "WebApps Manager" -msgstr "WebApps Manager" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 67 -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 70 -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 120 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 -msgid "Search WebApps" -msgstr "Search WebApps" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 86 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 -msgid "Export WebApps" -msgstr "Export WebApps" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 -msgid "Import WebApps" -msgstr "Import WebApps" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 90 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 -msgid "Browse Applications Folder" -msgstr "Browse Applications Folder" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 91 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 -msgid "Browse Profiles Folder" -msgstr "Browse Profiles Folder" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 96 -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 344 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:69 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 -msgid "Remove All WebApps" -msgstr "Remove All WebApps" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 97 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 -msgid "About" -msgstr "About" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 143 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 -msgid "Add a new webapp to get started" -msgstr "Add a new webapp to get started" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 240 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 -msgid "WebApp created successfully" -msgstr "WebApp created successfully" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 242 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 -msgid "WebApp updated successfully" -msgstr "WebApp updated successfully" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 309 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 -msgid "Also delete configuration folder" -msgstr "Also delete configuration folder" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 316 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 -msgid "Delete" -msgstr "Delete" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 335 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 -msgid "WebApp deleted successfully" -msgstr "WebApp deleted successfully" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 -msgid "Remove All" -msgstr "Remove All" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 379 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 -msgid "All WebApps have been removed" -msgstr "All WebApps have been removed" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 381 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 -msgid "Failed to remove all WebApps" -msgstr "Failed to remove all WebApps" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 -msgid "WebApps exported successfully" -msgstr "WebApps exported successfully" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 169 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 -msgid "No WebApps" -msgstr "No WebApps" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 -msgid "Change browser" -msgstr "Change browser" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 -msgid "Edit" -msgstr "Edit" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 -msgid "New WebApp" -msgstr "New WebApp" - -#. -- Icon row -- -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 -msgid "Icon" -msgstr "Icon" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 -msgid "App Mode" -msgstr "App Mode" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 -msgid "Separate Profile" -msgstr "Separate Profile" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 -msgid "Select Icon" -msgstr "Select Icon" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 -msgid "Images" -msgstr "Images" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 -msgid "ZIP files" -msgstr "ZIP files" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 -#, rust-format -msgid "Imported {imported}, skipped {dups} duplicates" -msgstr "Imported {imported}, skipped {dups} duplicates" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 -msgid "Import failed" -msgstr "Import failed" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 -msgid "Export failed" -msgstr "Export failed" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 -msgid "" -"This will delete all webapps and their desktop entries. This cannot be " -"undone." -msgstr "" -"This will delete all webapps and their desktop entries. This cannot be " -"undone." - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 -msgid "Browser changed" -msgstr "Browser changed" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 -msgid "What are WebApps?" -msgstr "What are WebApps?" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 -msgid "" -"WebApps are web applications that run in a dedicated browser window, " -"providing a more app-like experience for your favorite websites." -msgstr "" -"WebApps are web applications that run in a dedicated browser window, " -"providing a more app-like experience for your favorite websites." - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 -msgid "Benefits of using WebApps:" -msgstr "Benefits of using WebApps:" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 -msgid "Focus" -msgstr "Focus" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 -msgid "Work without the distractions of other browser tabs" -msgstr "Work without the distractions of other browser tabs" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 -msgid "Desktop Integration" -msgstr "Desktop Integration" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 -msgid "Quick access from your application menu" -msgstr "Quick access from your application menu" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 -msgid "Isolated Profiles" -msgstr "Isolated Profiles" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 -msgid "Each webapp can have its own cookies and settings" -msgstr "Each webapp can have its own cookies and settings" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 -msgid "Back" -msgstr "Back" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 -msgid "Forward" -msgstr "Forward" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 -msgid "Reload" -msgstr "Reload" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 -msgid "Fullscreen" -msgstr "Fullscreen" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 -msgid "Enter URL…" -msgstr "Enter URL…" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 -msgid "Zoom In" -msgstr "Zoom In" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 -msgid "Zoom Out" -msgstr "Zoom Out" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 -msgid "Reset Zoom" -msgstr "Reset Zoom" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 -msgid "Developer Tools" -msgstr "Developer Tools" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 -msgid "Menu" -msgstr "Menu" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 -msgid "Open Link in Browser" -msgstr "Open Link in Browser" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 -msgid "Download Complete" -msgstr "Download Complete" - -#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 -msgid "Save File" -msgstr "Save File" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 -#~ msgid "Search templates" -#~ msgstr "Search templates" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 96 -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 99 -#, python-brace-format -#~ msgid "Browser: {0}" -#~ msgstr "Browser: {0}" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 -#, python-brace-format -#~ msgid "Edit {0}" -#~ msgstr "Edit {0}" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 -#, python-brace-format -#~ msgid "Delete {0}" -#~ msgstr "Delete {0}" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 117 -#~ msgid "" -#~ "What are WebApps?\n" -#~ "\n" -#~ "WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n" -#~ "\n" -#~ "Benefits of using WebApps:\n" -#~ "\n" -#~ "• Focus: Work without the distractions of other browser tabs\n" -#~ "• Desktop Integration: Quick access from your application menu\n" -#~ "• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" -#~ msgstr "" -#~ "What are WebApps?\n" -#~ "\n" -#~ "WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n" -#~ "\n" -#~ "Benefits of using WebApps:\n" -#~ "\n" -#~ "• Focus: Work without the distractions of other browser tabs\n" -#~ "• Desktop Integration: Quick access from your application menu\n" -#~ "• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 184 -#~ msgid "System Default" -#~ msgstr "System Default" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 190 -#~ msgid "Default" -#~ msgstr "Default" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 219 -#~ msgid "Please select a browser." -#~ msgstr "Please select a browser." - -# #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# -# -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 228 -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 796 -#~ msgid "Error" -#~ msgstr "Error" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 -#~ msgid "Choose from templates" -#~ msgstr "Choose from templates" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 235 -#~ msgid "Detect" -#~ msgstr "Detect" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 251 -#~ msgid "App Icon" -#~ msgstr "App Icon" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 258 -#~ msgid "Select icon for the WebApp" -#~ msgstr "Select icon for the WebApp" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 265 -#~ msgid "Available Icons" -#~ msgstr "Available Icons" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 317 -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 326 -#~ msgid "Application Mode" -#~ msgstr "Application Mode" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 354 -#~ msgid "Profile Settings" -#~ msgstr "Profile Settings" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 356 -#~ msgid "Configure a separate browser profile for this webapp" -#~ msgstr "Configure a separate browser profile for this webapp" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 359 -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 365 -#~ msgid "Use separate profile" -#~ msgstr "Use separate profile" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 429 -#~ msgid "Detecting website information, please wait" -#~ msgstr "Detecting website information, please wait" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 636 -#~ msgid "Please enter a URL first." -#~ msgstr "Please enter a URL first." - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 752 -#~ msgid "Please enter a name for the WebApp." -#~ msgstr "Please enter a name for the WebApp." - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 756 -#~ msgid "Please enter a URL for the WebApp." -#~ msgstr "Please enter a URL for the WebApp." - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 760 -#~ msgid "Please select a browser for the WebApp." -#~ msgstr "Please select a browser for the WebApp." - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 -#~ msgid "Main Menu" -#~ msgstr "Main Menu" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 85 -#~ msgid "Refresh" -#~ msgstr "Refresh" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 95 -#~ msgid "Show Welcome Screen" -#~ msgstr "Show Welcome Screen" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 -#~ msgid "Add" -#~ msgstr "Add" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 142 -#~ msgid "No WebApps Found" -#~ msgstr "No WebApps Found" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 277 -#, python-brace-format -#~ msgid "Browser changed to {0}" -#~ msgstr "Browser changed to {0}" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 292 -#, python-brace-format -#~ msgid "" -#~ "Are you sure you want to delete {0}?\n" -#~ "\n" -#~ "URL: {1}\n" -#~ "Browser: {2}" -#~ msgstr "" -#~ "Are you sure you want to delete {0}?\n" -#~ "\n" -#~ "URL: {1}\n" -#~ "Browser: {2}" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 -#~ msgid "REMOVE ALL" -#~ msgstr "REMOVE ALL" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 -#, python-brace-format -#~ msgid "" -#~ "Are you sure you want to remove all your WebApps? This action cannot be undone.\n" -#~ "\n" -#~ "Type \"{0}\" to confirm." -#~ msgstr "" -#~ "Are you sure you want to remove all your WebApps? This action cannot be undone.\n" -#~ "\n" -#~ "Type \"{0}\" to confirm." - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 -#, python-brace-format -#~ msgid "Icon {0} of {1}" -#~ msgstr "Icon {0} of {1}" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 169 -#~ msgid "There are no WebApps to export." -#~ msgstr "There are no WebApps to export." - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 208 -#~ msgid "The selected file does not exist." -#~ msgstr "The selected file does not exist." - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 209 -#~ msgid "The selected file is not a valid ZIP archive." -#~ msgstr "The selected file is not a valid ZIP archive." - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 213 -#~ msgid "Error importing WebApps" -#~ msgstr "Error importing WebApps" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 224 -#~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" -#~ msgstr "Imported {} WebApps successfully ({} duplicates skipped)" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 230 -#~ msgid "Imported {} WebApps successfully" -#~ msgstr "Imported {} WebApps successfully" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 250 -#~ msgid "No" -#~ msgstr "No" - -# File: biglinux-webapps/biglinux- -# webapps/usr/share/biglinux/webapps/webapps/application.py, line: 251 -#~ msgid "Yes" -#~ msgstr "Yes" diff --git a/biglinux-webapps/locale/es.json b/biglinux-webapps/locale/es.json new file mode 100644 index 00000000..980342bb --- /dev/null +++ b/biglinux-webapps/locale/es.json @@ -0,0 +1 @@ +{"es":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Plantillas"]},"Choose a Template":{"*":["Elige una plantilla"]},"Search templates...":{"*":["Buscar plantillas..."]},"Search Results":{"*":["Resultados de búsqueda"]},"No templates found":{"*":["No se encontraron plantillas."]},"Edit WebApp":{"*":["Editar WebApp"]},"Delete WebApp":{"*":["Eliminar WebApp"]},"Welcome to WebApps Manager":{"*":["Bienvenido a WebApps Manager"]},"Don't show this again":{"*":["No mostrar esto de nuevo"]},"Let's Start":{"*":["Comencemos"]},"Select Browser":{"*":["Seleccionar navegador"]},"Cancel":{"*":["Cancelar"]},"Select":{"*":["Seleccionar"]},"OK":{"*":["Aceptar"]},"Add WebApp":{"*":["Agregar WebApp"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Detectar nombre e ícono del sitio web"]},"Name":{"*":["Nombre"]},"Category":{"*":["Categoría"]},"Opens as a native window without browser interface":{"*":["Se abre como una ventana nativa sin interfaz de navegador."]},"Browser":{"*":["Navegador"]},"Allows independent cookies and sessions":{"*":["Permite cookies y sesiones independientes"]},"Profile Name":{"*":["Nombre de perfil"]},"Save":{"*":["Guardar"]},"Loading...":{"*":["Cargando..."]},"WebApps Manager":{"*":["Administrador de WebApps"]},"Search WebApps":{"*":["Buscar WebApps"]},"Export WebApps":{"*":["Exportar WebApps"]},"Import WebApps":{"*":["Importar WebApps"]},"Browse Applications Folder":{"*":["Explorar la carpeta de aplicaciones"]},"Browse Profiles Folder":{"*":["Explorar carpeta de perfiles"]},"Remove All WebApps":{"*":["Eliminar todas las aplicaciones web"]},"About":{"*":["Acerca de"]},"Add a new webapp to get started":{"*":["Agrega una nueva aplicación web para comenzar."]},"WebApp created successfully":{"*":["WebApp creado con éxito"]},"WebApp updated successfully":{"*":["WebApp actualizado con éxito"]},"Also delete configuration folder":{"*":["También elimina la carpeta de configuración."]},"Delete":{"*":["Eliminar"]},"WebApp deleted successfully":{"*":["WebApp eliminada con éxito"]},"Remove All":{"*":["Eliminar todo"]},"All WebApps have been removed":{"*":["Todas las aplicaciones web han sido eliminadas."]},"Failed to remove all WebApps":{"*":["No se pudo eliminar todas las aplicaciones web."]},"WebApps exported successfully":{"*":["WebApps exportados con éxito"]},"No WebApps":{"*":["Sin WebApps"]},"Change browser":{"*":["Cambiar navegador"]},"Edit":{"*":["Editar"]},"New WebApp":{"*":["Nueva WebApp"]},"Icon":{"*":["Ícono"]},"App Mode":{"*":["Modo de aplicación"]},"Separate Profile":{"*":["Perfil separado"]},"Select Icon":{"*":["Seleccionar ícono"]},"Images":{"*":["Imágenes"]},"ZIP files":{"*":["Archivos ZIP"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Importados {imported}, duplicados {dups} omitidos"]},"Import failed":{"*":["Falló la importación"]},"Export failed":{"*":["Falló la exportación"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Esto eliminará todas las webapps y sus accesos directos en el escritorio. Esta acción no se puede deshacer."]},"Browser changed":{"*":["Navegador cambiado"]},"What are WebApps?":{"*":["¿Qué son las WebApps?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["Las WebApps son aplicaciones web que se ejecutan en una ventana de navegador dedicada, proporcionando una experiencia más similar a una aplicación para tus sitios web favoritos."]},"Benefits of using WebApps:":{"*":["Beneficios de usar WebApps:"]},"Focus":{"*":["Enfoque"]},"Work without the distractions of other browser tabs":{"*":["Trabaja sin las distracciones de otras pestañas del navegador"]},"Desktop Integration":{"*":["Integración con el escritorio"]},"Quick access from your application menu":{"*":["Acceso rápido desde tu menú de aplicaciones"]},"Isolated Profiles":{"*":["Perfiles aislados"]},"Each webapp can have its own cookies and settings":{"*":["Cada webapp puede tener sus propias cookies y configuraciones"]},"Back":{"*":["Atrás"]},"Forward":{"*":["Adelante"]},"Reload":{"*":["Recargar"]},"Fullscreen":{"*":["Pantalla completa"]},"Enter URL…":{"*":["Introducir URL…"]},"Zoom In":{"*":["Acercar"]},"Zoom Out":{"*":["Alejar"]},"Reset Zoom":{"*":["Restablecer zoom"]},"Developer Tools":{"*":["Herramientas de desarrollador"]},"Menu":{"*":["Menú"]},"Open Link in Browser":{"*":["Abrir enlace en el navegador"]},"Download Complete":{"*":["Descarga completa"]},"Save File":{"*":["Guardar archivo"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/es.po b/biglinux-webapps/locale/es.po index bd9eb1df..9621fdea 100644 --- a/biglinux-webapps/locale/es.po +++ b/biglinux-webapps/locale/es.po @@ -14,7 +14,6 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -24,31 +23,26 @@ msgstr "" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Plantillas" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Elige una plantilla" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Buscar plantillas..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Resultados de búsqueda" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "No se encontraron plantillas." - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -60,13 +54,11 @@ msgstr "No se encontraron plantillas." #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Editar WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Eliminar WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 # File: biglinux-webapps/biglinux- @@ -75,25 +67,21 @@ msgstr "Eliminar WebApp" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Bienvenido a WebApps Manager" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "No mostrar esto de nuevo" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Comencemos" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Seleccionar navegador" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -106,7 +94,6 @@ msgstr "Seleccionar navegador" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Cancelar" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -119,7 +106,6 @@ msgstr "Cancelar" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Seleccionar" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -133,7 +119,6 @@ msgstr "Seleccionar" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "Aceptar" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -145,19 +130,16 @@ msgstr "Aceptar" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Agregar WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Detectar nombre e ícono del sitio web" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 # File: biglinux-webapps/biglinux- @@ -165,38 +147,32 @@ msgstr "Detectar nombre e ícono del sitio web" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Nombre" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Categoría" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Se abre como una ventana nativa sin interfaz de navegador." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 #. -- Browser row (hidden in app mode) -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Navegador" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Permite cookies y sesiones independientes" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Nombre de perfil" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -206,52 +182,44 @@ msgstr "Nombre de perfil" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Guardar" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Cargando..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "Administrador de WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Buscar WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Exportar WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Importar WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Explorar la carpeta de aplicaciones" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Explorar carpeta de perfiles" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 # File: biglinux-webapps/biglinux- @@ -260,31 +228,26 @@ msgstr "Explorar carpeta de perfiles" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Eliminar todas las aplicaciones web" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "Acerca de" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Agrega una nueva aplicación web para comenzar." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "WebApp creado con éxito" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "WebApp actualizado con éxito" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -294,101 +257,81 @@ msgstr "WebApp actualizado con éxito" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "También elimina la carpeta de configuración." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Eliminar" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "WebApp eliminada con éxito" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Eliminar todo" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Todas las aplicaciones web han sido eliminadas." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "No se pudo eliminar todas las aplicaciones web." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebApps exportados con éxito" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Sin WebApps" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 msgid "Change browser" msgstr "Cambiar navegador" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 msgid "Edit" msgstr "Editar" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "New WebApp" msgstr "Nueva WebApp" - #. -- Icon row -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 msgid "Icon" msgstr "Ícono" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 msgid "App Mode" msgstr "Modo de aplicación" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 msgid "Separate Profile" msgstr "Perfil separado" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 msgid "Select Icon" msgstr "Seleccionar ícono" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 msgid "Images" msgstr "Imágenes" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 msgid "ZIP files" msgstr "Archivos ZIP" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 #, rust-format msgid "Imported {imported}, skipped {dups} duplicates" msgstr "Importados {imported}, duplicados {dups} omitidos" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 msgid "Import failed" msgstr "Falló la importación" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 msgid "Export failed" msgstr "Falló la exportación" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 msgid "" "This will delete all webapps and their desktop entries. This cannot be " @@ -396,15 +339,12 @@ msgid "" msgstr "" "Esto eliminará todas las webapps y sus accesos directos en el escritorio. " "Esta acción no se puede deshacer." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 msgid "Browser changed" msgstr "Navegador cambiado" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 msgid "What are WebApps?" msgstr "¿Qué son las WebApps?" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 msgid "" "WebApps are web applications that run in a dedicated browser window, " @@ -413,110 +353,85 @@ msgstr "" "Las WebApps son aplicaciones web que se ejecutan en una ventana de navegador" " dedicada, proporcionando una experiencia más similar a una aplicación para " "tus sitios web favoritos." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 msgid "Benefits of using WebApps:" msgstr "Beneficios de usar WebApps:" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Focus" msgstr "Enfoque" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Work without the distractions of other browser tabs" msgstr "Trabaja sin las distracciones de otras pestañas del navegador" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Desktop Integration" msgstr "Integración con el escritorio" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Quick access from your application menu" msgstr "Acceso rápido desde tu menú de aplicaciones" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Isolated Profiles" msgstr "Perfiles aislados" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Each webapp can have its own cookies and settings" msgstr "Cada webapp puede tener sus propias cookies y configuraciones" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 msgid "Back" msgstr "Atrás" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 msgid "Forward" msgstr "Adelante" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 msgid "Reload" msgstr "Recargar" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 msgid "Fullscreen" msgstr "Pantalla completa" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 msgid "Enter URL…" msgstr "Introducir URL…" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 msgid "Zoom In" msgstr "Acercar" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 msgid "Zoom Out" msgstr "Alejar" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 msgid "Reset Zoom" msgstr "Restablecer zoom" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 msgid "Developer Tools" msgstr "Herramientas de desarrollador" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 msgid "Menu" msgstr "Menú" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 msgid "Open Link in Browser" msgstr "Abrir enlace en el navegador" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 msgid "Download Complete" msgstr "Descarga completa" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 msgid "Save File" msgstr "Guardar archivo" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 #~ msgid "Search templates" #~ msgstr "Buscar plantillas" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 #, python-brace-format #~ msgid "Browser: {0}" #~ msgstr "Navegador: {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 #, python-brace-format #~ msgid "Edit {0}" #~ msgstr "Editar {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 #, python-brace-format #~ msgid "Delete {0}" #~ msgstr "Eliminar {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 #~ msgid "" @@ -539,12 +454,10 @@ msgstr "Guardar archivo" #~ "• Enfoque: Trabaja sin las distracciones de otras pestañas del navegador\n" #~ "• Integración de Escritorio: Acceso rápido desde tu menú de aplicaciones\n" #~ "• Perfiles Aislados: Opcionalmente, cada webapp puede tener sus propias cookies y configuraciones\n" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 #~ msgid "System Default" #~ msgstr "Predeterminado del sistema" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -563,12 +476,10 @@ msgstr "Guardar archivo" # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 #~ msgid "Default" #~ msgstr "Predeterminado" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 #~ msgid "Please select a browser." #~ msgstr "Por favor, selecciona un navegador." - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -577,49 +488,40 @@ msgstr "Guardar archivo" # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 #~ msgid "Error" #~ msgstr "Error" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 #~ msgid "Choose from templates" #~ msgstr "Elige de las plantillas" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 #~ msgid "Detect" #~ msgstr "Detectar" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 #~ msgid "App Icon" #~ msgstr "Ícono de la aplicación" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 #~ msgid "Select icon for the WebApp" #~ msgstr "Seleccionar ícono para la WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 #~ msgid "Available Icons" #~ msgstr "Iconos disponibles" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 #~ msgid "Application Mode" #~ msgstr "Modo de aplicación" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 #~ msgid "Profile Settings" #~ msgstr "Configuración del perfil" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 #~ msgid "Configure a separate browser profile for this webapp" #~ msgstr "Configura un perfil de navegador separado para esta aplicación web." - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -628,63 +530,51 @@ msgstr "Guardar archivo" # #~ msgid "Use separate profile" #~ msgstr "Usar perfil separado" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 #~ msgid "Detecting website information, please wait" #~ msgstr "Detectando información del sitio web, por favor espere." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 #~ msgid "Please enter a URL first." #~ msgstr "Por favor, ingrese una URL primero." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 #~ msgid "Please enter a name for the WebApp." #~ msgstr "Por favor, ingrese un nombre para la WebApp." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 #~ msgid "Please enter a URL for the WebApp." #~ msgstr "Por favor, ingrese una URL para la WebApp." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 #~ msgid "Please select a browser for the WebApp." #~ msgstr "Por favor, seleccione un navegador para la WebApp." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 #~ msgid "Main Menu" #~ msgstr "Menú Principal" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 #~ msgid "Refresh" #~ msgstr "Actualizar" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 #~ msgid "Show Welcome Screen" #~ msgstr "Mostrar Pantalla de Bienvenida" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 #~ msgid "Add" #~ msgstr "Agregar" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 #~ msgid "No WebApps Found" #~ msgstr "No se encontraron aplicaciones web." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 #, python-brace-format #~ msgid "Browser changed to {0}" #~ msgstr "El navegador ha cambiado a {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 #, python-brace-format @@ -698,12 +588,10 @@ msgstr "Guardar archivo" #~ "\n" #~ "URL: {1}\n" #~ "Navegador: {2}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 #~ msgid "REMOVE ALL" #~ msgstr "ELIMINAR TODO" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 #, python-brace-format @@ -715,48 +603,39 @@ msgstr "Guardar archivo" #~ "¿Estás seguro de que deseas eliminar todas tus WebApps? Esta acción no se puede deshacer.\n" #~ "\n" #~ "Escribe \"{0}\" para confirmar." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 #, python-brace-format #~ msgid "Icon {0} of {1}" #~ msgstr "Icono {0} de {1}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #~ msgid "There are no WebApps to export." #~ msgstr "No hay WebApps para exportar." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 #~ msgid "The selected file does not exist." #~ msgstr "El archivo seleccionado no existe." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 #~ msgid "The selected file is not a valid ZIP archive." #~ msgstr "El archivo seleccionado no es un archivo ZIP válido." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 #~ msgid "Error importing WebApps" #~ msgstr "Error al importar WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 #~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" #~ msgstr "Se importaron {} WebApps con éxito ({} duplicados omitidos)" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 #~ msgid "Imported {} WebApps successfully" #~ msgstr "WebApps {} importados con éxito." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 #~ msgid "No" #~ msgstr "No" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 #~ msgid "Yes" diff --git a/biglinux-webapps/locale/et.json b/biglinux-webapps/locale/et.json new file mode 100644 index 00000000..d2fae986 --- /dev/null +++ b/biglinux-webapps/locale/et.json @@ -0,0 +1 @@ +{"et":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Mallid"]},"Choose a Template":{"*":["Vali mall."]},"Search templates...":{"*":["Otsi malle..."]},"Search Results":{"*":["Otsingutulemused"]},"No templates found":{"*":["Malle ei leitud"]},"Edit WebApp":{"*":["Muuda Veebirakendust"]},"Delete WebApp":{"*":["Kustuta Veebirakendus"]},"Welcome to WebApps Manager":{"*":["Tere tulemast WebApps Managerisse"]},"Don't show this again":{"*":["Ära näita seda uuesti"]},"Let's Start":{"*":["Alustame"]},"Select Browser":{"*":["Vali brauser"]},"Cancel":{"*":["Tühista"]},"Select":{"*":["Vali"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Lisa WebApp"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Tuvasta nimi ja ikoon veebisaidilt"]},"Name":{"*":["Nimi"]},"Category":{"*":["Kategooria"]},"Opens as a native window without browser interface":{"*":["Avatakse natiivse aknana ilma brauseri liideseta."]},"Browser":{"*":["Brauser"]},"Allows independent cookies and sessions":{"*":["Lubab sõltumatud küpsised ja seansid"]},"Profile Name":{"*":["Profiili nimi"]},"Save":{"*":["Salvesta"]},"Loading...":{"*":["Laadimine..."]},"WebApps Manager":{"*":["Veebirakenduste haldur"]},"Search WebApps":{"*":["Otsi Veebirakendusi"]},"Export WebApps":{"*":["Ekspordi Veebirakendused"]},"Import WebApps":{"*":["Impordi veebirakendused"]},"Browse Applications Folder":{"*":["Sirvi rakenduste kausta"]},"Browse Profiles Folder":{"*":["Sirvi profiilide kausta"]},"Remove All WebApps":{"*":["Eemalda kõik veebirakendused"]},"About":{"*":["Teave"]},"Add a new webapp to get started":{"*":["Lisa uus veebirakendus, et alustada."]},"WebApp created successfully":{"*":["Veebirakendus loodi edukalt"]},"WebApp updated successfully":{"*":["Veebirakendus on edukalt uuendatud"]},"Also delete configuration folder":{"*":["Kustuta ka konfiguratsioonikaust."]},"Delete":{"*":["Kustuta"]},"WebApp deleted successfully":{"*":["Veebirakendus kustutati edukalt"]},"Remove All":{"*":["Eemalda kõik"]},"All WebApps have been removed":{"*":["Kõik veebirakendused on eemaldatud."]},"Failed to remove all WebApps":{"*":["Eba kõik WebAppid eemaldada."]},"WebApps exported successfully":{"*":["WebApps eksporditi edukalt"]},"No WebApps":{"*":["Ei veebirakendusi"]},"Change browser":{"*":["Muuda brauserit"]},"Edit":{"*":["Muuda"]},"New WebApp":{"*":["Uus WebApp"]},"Icon":{"*":["Ikoon"]},"App Mode":{"*":["Rakenduse režiim"]},"Separate Profile":{"*":["Eraldi profiil"]},"Select Icon":{"*":["Vali ikoon"]},"Images":{"*":["Pildid"]},"ZIP files":{"*":["ZIP-failid"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Imporditud {imported}, vahele jäetud {dups} dubleeritud kirjet"]},"Import failed":{"*":["Import ebaõnnestus"]},"Export failed":{"*":["Eksport ebaõnnestus"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["See kustutab kõik webapp’id ja nende töölaua kirjed. Seda ei saa tagasi võtta."]},"Browser changed":{"*":["Brauser vahetatud"]},"What are WebApps?":{"*":["Mis on WebApp’id?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps on veebirakendused, mis töötavad pühendatud brauseriaknas, pakkudes teie lemmikveebisaitidele rohkem rakenduse-laadset kogemust."]},"Benefits of using WebApps:":{"*":["WebAppsi kasutamise eelised:"]},"Focus":{"*":["Keskendumine"]},"Work without the distractions of other browser tabs":{"*":["Töötage ilma teiste brauseri vahelehtede segamiseta"]},"Desktop Integration":{"*":["Töölaudade integratsioon"]},"Quick access from your application menu":{"*":["Kiire ligipääs teie rakenduste menüüst"]},"Isolated Profiles":{"*":["Isolatsiooniprofiilid"]},"Each webapp can have its own cookies and settings":{"*":["Igal webappil võib olla oma küpsised ja seaded"]},"Back":{"*":["Tagasi"]},"Forward":{"*":["Edasi"]},"Reload":{"*":["Värskenda"]},"Fullscreen":{"*":["Täisekraan"]},"Enter URL…":{"*":["Sisesta URL…"]},"Zoom In":{"*":["Suurenda"]},"Zoom Out":{"*":["Vähenda"]},"Reset Zoom":{"*":["Lähtesta suum"]},"Developer Tools":{"*":["Arendajatööriistad"]},"Menu":{"*":["Menüü"]},"Open Link in Browser":{"*":["Ava link brauseris"]},"Download Complete":{"*":["Allalaadimine lõpetatud"]},"Save File":{"*":["Salvesta fail"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/et.po b/biglinux-webapps/locale/et.po index 4831fb3c..6366a6cc 100644 --- a/biglinux-webapps/locale/et.po +++ b/biglinux-webapps/locale/et.po @@ -14,7 +14,6 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -24,31 +23,26 @@ msgstr "" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Mallid" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Vali mall." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Otsi malle..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Otsingutulemused" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Malle ei leitud" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -60,13 +54,11 @@ msgstr "Malle ei leitud" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Muuda Veebirakendust" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Kustuta Veebirakendus" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 # File: biglinux-webapps/biglinux- @@ -75,25 +67,21 @@ msgstr "Kustuta Veebirakendus" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Tere tulemast WebApps Managerisse" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Ära näita seda uuesti" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Alustame" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Vali brauser" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -106,7 +94,6 @@ msgstr "Vali brauser" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Tühista" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -119,7 +106,6 @@ msgstr "Tühista" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Vali" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -133,7 +119,6 @@ msgstr "Vali" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "OK" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -145,19 +130,16 @@ msgstr "OK" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Lisa WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Tuvasta nimi ja ikoon veebisaidilt" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 # File: biglinux-webapps/biglinux- @@ -165,38 +147,32 @@ msgstr "Tuvasta nimi ja ikoon veebisaidilt" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Nimi" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Kategooria" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Avatakse natiivse aknana ilma brauseri liideseta." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 #. -- Browser row (hidden in app mode) -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Brauser" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Lubab sõltumatud küpsised ja seansid" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Profiili nimi" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -206,52 +182,44 @@ msgstr "Profiili nimi" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Salvesta" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Laadimine..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "Veebirakenduste haldur" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Otsi Veebirakendusi" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Ekspordi Veebirakendused" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Impordi veebirakendused" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Sirvi rakenduste kausta" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Sirvi profiilide kausta" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 # File: biglinux-webapps/biglinux- @@ -260,31 +228,26 @@ msgstr "Sirvi profiilide kausta" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Eemalda kõik veebirakendused" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "Teave" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Lisa uus veebirakendus, et alustada." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "Veebirakendus loodi edukalt" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "Veebirakendus on edukalt uuendatud" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -294,101 +257,81 @@ msgstr "Veebirakendus on edukalt uuendatud" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Kustuta ka konfiguratsioonikaust." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Kustuta" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "Veebirakendus kustutati edukalt" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Eemalda kõik" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Kõik veebirakendused on eemaldatud." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Eba kõik WebAppid eemaldada." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebApps eksporditi edukalt" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Ei veebirakendusi" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 msgid "Change browser" msgstr "Muuda brauserit" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 msgid "Edit" msgstr "Muuda" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "New WebApp" msgstr "Uus WebApp" - #. -- Icon row -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 msgid "Icon" msgstr "Ikoon" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 msgid "App Mode" msgstr "Rakenduse režiim" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 msgid "Separate Profile" msgstr "Eraldi profiil" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 msgid "Select Icon" msgstr "Vali ikoon" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 msgid "Images" msgstr "Pildid" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 msgid "ZIP files" msgstr "ZIP-failid" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 #, rust-format msgid "Imported {imported}, skipped {dups} duplicates" msgstr "Imporditud {imported}, vahele jäetud {dups} dubleeritud kirjet" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 msgid "Import failed" msgstr "Import ebaõnnestus" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 msgid "Export failed" msgstr "Eksport ebaõnnestus" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 msgid "" "This will delete all webapps and their desktop entries. This cannot be " @@ -396,15 +339,12 @@ msgid "" msgstr "" "See kustutab kõik webapp’id ja nende töölaua kirjed. Seda ei saa tagasi " "võtta." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 msgid "Browser changed" msgstr "Brauser vahetatud" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 msgid "What are WebApps?" msgstr "Mis on WebApp’id?" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 msgid "" "WebApps are web applications that run in a dedicated browser window, " @@ -412,110 +352,85 @@ msgid "" msgstr "" "WebApps on veebirakendused, mis töötavad pühendatud brauseriaknas, pakkudes " "teie lemmikveebisaitidele rohkem rakenduse-laadset kogemust." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 msgid "Benefits of using WebApps:" msgstr "WebAppsi kasutamise eelised:" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Focus" msgstr "Keskendumine" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Work without the distractions of other browser tabs" msgstr "Töötage ilma teiste brauseri vahelehtede segamiseta" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Desktop Integration" msgstr "Töölaudade integratsioon" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Quick access from your application menu" msgstr "Kiire ligipääs teie rakenduste menüüst" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Isolated Profiles" msgstr "Isolatsiooniprofiilid" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Each webapp can have its own cookies and settings" msgstr "Igal webappil võib olla oma küpsised ja seaded" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 msgid "Back" msgstr "Tagasi" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 msgid "Forward" msgstr "Edasi" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 msgid "Reload" msgstr "Värskenda" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 msgid "Fullscreen" msgstr "Täisekraan" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 msgid "Enter URL…" msgstr "Sisesta URL…" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 msgid "Zoom In" msgstr "Suurenda" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 msgid "Zoom Out" msgstr "Vähenda" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 msgid "Reset Zoom" msgstr "Lähtesta suum" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 msgid "Developer Tools" msgstr "Arendajatööriistad" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 msgid "Menu" msgstr "Menüü" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 msgid "Open Link in Browser" msgstr "Ava link brauseris" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 msgid "Download Complete" msgstr "Allalaadimine lõpetatud" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 msgid "Save File" msgstr "Salvesta fail" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 #~ msgid "Search templates" #~ msgstr "Otsi malle" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 #, python-brace-format #~ msgid "Browser: {0}" #~ msgstr "Brauser: {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 #, python-brace-format #~ msgid "Edit {0}" #~ msgstr "Muuda {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 #, python-brace-format #~ msgid "Delete {0}" #~ msgstr "Kustuta {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 #~ msgid "" @@ -538,12 +453,10 @@ msgstr "Salvesta fail" #~ "• Fookus: Töö ilma teiste brauseri vahekaartide häirivate teguriteta\n" #~ "• Desktopi integreerimine: Kiire juurdepääs teie rakenduse menüüst\n" #~ "• Isoleeritud profiilid: Valikuliselt võib igal veebirakendusel olla oma küpsised ja seaded\n" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 #~ msgid "System Default" #~ msgstr "Süsteemi vaikeväärtus" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -562,12 +475,10 @@ msgstr "Salvesta fail" # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 #~ msgid "Default" #~ msgstr "Vaikimisi" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 #~ msgid "Please select a browser." #~ msgstr "Palun valige brauser." - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -576,49 +487,40 @@ msgstr "Salvesta fail" # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 #~ msgid "Error" #~ msgstr "Viga" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 #~ msgid "Choose from templates" #~ msgstr "Vali mallide hulgast" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 #~ msgid "Detect" #~ msgstr "Tuvasta" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 #~ msgid "App Icon" #~ msgstr "Rakenduse ikoon" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 #~ msgid "Select icon for the WebApp" #~ msgstr "Vali ikoon WebApp'i jaoks" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 #~ msgid "Available Icons" #~ msgstr "Saadaval ikoonid" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 #~ msgid "Application Mode" #~ msgstr "Rakenduse režiim" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 #~ msgid "Profile Settings" #~ msgstr "Profiili seaded" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 #~ msgid "Configure a separate browser profile for this webapp" #~ msgstr "Konfigureeri selle veebirakenduse jaoks eraldi brauseri profiil." - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -627,63 +529,51 @@ msgstr "Salvesta fail" # #~ msgid "Use separate profile" #~ msgstr "Kasutage eraldi profiili" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 #~ msgid "Detecting website information, please wait" #~ msgstr "Veebiteabe tuvastamine, palun oota" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 #~ msgid "Please enter a URL first." #~ msgstr "Palun sisestage esmalt URL." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 #~ msgid "Please enter a name for the WebApp." #~ msgstr "Palun sisestage veebirakenduse nimi." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 #~ msgid "Please enter a URL for the WebApp." #~ msgstr "Palun sisestage URL WebApp'i jaoks." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 #~ msgid "Please select a browser for the WebApp." #~ msgstr "Palun valige veebirakenduse jaoks brauser." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 #~ msgid "Main Menu" #~ msgstr "Peamenüü" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 #~ msgid "Refresh" #~ msgstr "Värskenda" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 #~ msgid "Show Welcome Screen" #~ msgstr "Kuva Tere tulemast ekraanile" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 #~ msgid "Add" #~ msgstr "Lisa" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 #~ msgid "No WebApps Found" #~ msgstr "Veebirakendusi ei leitud" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 #, python-brace-format #~ msgid "Browser changed to {0}" #~ msgstr "Brauser on muutunud {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 #, python-brace-format @@ -697,12 +587,10 @@ msgstr "Salvesta fail" #~ "\n" #~ "URL: {1} \n" #~ "Brauser: {2}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 #~ msgid "REMOVE ALL" #~ msgstr "Eemalda kõik" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 #, python-brace-format @@ -714,48 +602,39 @@ msgstr "Salvesta fail" #~ "Kas olete kindel, et soovite eemaldada kõik oma veebirakendused? Seda toimingut ei saa tagasi võtta.\n" #~ "\n" #~ "Kinnitage, kirjutades \"{0}\"." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 #, python-brace-format #~ msgid "Icon {0} of {1}" #~ msgstr "Ikoon {0} {1}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #~ msgid "There are no WebApps to export." #~ msgstr "WebApp'e eksportimiseks ei ole." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 #~ msgid "The selected file does not exist." #~ msgstr "Valitud faili ei eksisteeri." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 #~ msgid "The selected file is not a valid ZIP archive." #~ msgstr "Valitud fail ei ole kehtiv ZIP arhiiv." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 #~ msgid "Error importing WebApps" #~ msgstr "Veateade WebAppide importimisel" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 #~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" #~ msgstr "Imporditi {} WebAppsi edukalt ({} duplikaate vahele jäetud)" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 #~ msgid "Imported {} WebApps successfully" #~ msgstr "Imporditud {} WebAppsid edukalt" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 #~ msgid "No" #~ msgstr "Ei" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 #~ msgid "Yes" diff --git a/biglinux-webapps/locale/fi.json b/biglinux-webapps/locale/fi.json new file mode 100644 index 00000000..41b46deb --- /dev/null +++ b/biglinux-webapps/locale/fi.json @@ -0,0 +1 @@ +{"fi":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Mallipohjat"]},"Choose a Template":{"*":["Valitse malli"]},"Search templates...":{"*":["Etsi malleja..."]},"Search Results":{"*":["Hakutulokset"]},"No templates found":{"*":["Ei malleja löytynyt"]},"Edit WebApp":{"*":["Muokkaa WebAppia"]},"Delete WebApp":{"*":["Poista WebApp"]},"Welcome to WebApps Manager":{"*":["Tervetuloa WebApps Manageriin"]},"Don't show this again":{"*":["Älä näytä tätä uudelleen"]},"Let's Start":{"*":["Aloitetaan"]},"Select Browser":{"*":["Valitse selain"]},"Cancel":{"*":["Peruuta"]},"Select":{"*":["Valitse"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Lisää WebApp"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Havaitse nimi ja kuvake verkkosivustolta"]},"Name":{"*":["Nimi"]},"Category":{"*":["Kategoria"]},"Opens as a native window without browser interface":{"*":["Aukeaa natiivina ikkunana ilman selainliittymää."]},"Browser":{"*":["Selaimen"]},"Allows independent cookies and sessions":{"*":["Sallii itsenäiset evästeet ja istunnot"]},"Profile Name":{"*":["Profiilin nimi"]},"Save":{"*":["Tallenna"]},"Loading...":{"*":["Ladataan..."]},"WebApps Manager":{"*":["Verkkosovellusten hallinta"]},"Search WebApps":{"*":["Hae Web-sovelluksia"]},"Export WebApps":{"*":["Vie Web-sovellukset"]},"Import WebApps":{"*":["Tuonti Web-sovellukset"]},"Browse Applications Folder":{"*":["Selaa sovelluskansiota"]},"Browse Profiles Folder":{"*":["Selaa profiilikansiota"]},"Remove All WebApps":{"*":["Poista kaikki WebAppit"]},"About":{"*":["Tietoja"]},"Add a new webapp to get started":{"*":["Lisää uusi verkkosovellus aloittaaksesi"]},"WebApp created successfully":{"*":["WebApp luotiin onnistuneesti"]},"WebApp updated successfully":{"*":["WebApp päivitettiin onnistuneesti"]},"Also delete configuration folder":{"*":["Myös poista asetuskansio."]},"Delete":{"*":["Poista"]},"WebApp deleted successfully":{"*":["WebApp poistettu onnistuneesti"]},"Remove All":{"*":["Poista kaikki"]},"All WebApps have been removed":{"*":["Kaikki WebAppit on poistettu."]},"Failed to remove all WebApps":{"*":["Kaikkien WebAppien poistaminen epäonnistui."]},"WebApps exported successfully":{"*":["WebApps viety onnistuneesti"]},"No WebApps":{"*":["Ei Web-sovelluksia"]},"Change browser":{"*":["Vaihda selain"]},"Edit":{"*":["Muokkaa"]},"New WebApp":{"*":["Uusi WebApp"]},"Icon":{"*":["Kuvake"]},"App Mode":{"*":["Sovellustila"]},"Separate Profile":{"*":["Erota profiili"]},"Select Icon":{"*":["Valitse kuvake"]},"Images":{"*":["Kuvat"]},"ZIP files":{"*":["ZIP-tiedostot"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Tuotiin {imported}, ohitettiin {dups} kaksoiskappaletta"]},"Import failed":{"*":["Tuonti epäonnistui"]},"Export failed":{"*":["Vienti epäonnistui"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Tämä poistaa kaikki webappit ja niiden työpöytätiedostot. Tätä ei voi peruuttaa."]},"Browser changed":{"*":["Selain vaihdettu"]},"What are WebApps?":{"*":["Mitä WebAppit ovat?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps ovat verkkosovelluksia, jotka toimivat omassa selainikkunassaan, tarjoten sovellusmaisen käyttökokemuksen suosikkisivustoillesi."]},"Benefits of using WebApps:":{"*":["WebAppsien käytön edut:"]},"Focus":{"*":["Keskittyminen"]},"Work without the distractions of other browser tabs":{"*":["Työskentele ilman muiden välilehtien häiriöitä"]},"Desktop Integration":{"*":["Työpöydän integrointi"]},"Quick access from your application menu":{"*":["Nopea pääsy sovellusvalikostasi"]},"Isolated Profiles":{"*":["Eristetyt profiilit"]},"Each webapp can have its own cookies and settings":{"*":["Jokaisella webappilla voi olla omat evästeensä ja asetuksensa"]},"Back":{"*":["Takaisin"]},"Forward":{"*":["Eteenpäin"]},"Reload":{"*":["Lataa uudelleen"]},"Fullscreen":{"*":["Koko näyttö"]},"Enter URL…":{"*":["Syötä URL…"]},"Zoom In":{"*":["Suurenna"]},"Zoom Out":{"*":["Pienennä"]},"Reset Zoom":{"*":["Nollaa zoomaus"]},"Developer Tools":{"*":["Kehittäjätyökalut"]},"Menu":{"*":["Valikko"]},"Open Link in Browser":{"*":["Avaa linkki selaimessa"]},"Download Complete":{"*":["Lataus valmis"]},"Save File":{"*":["Tallenna tiedosto"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/fi.po b/biglinux-webapps/locale/fi.po index 936f31ac..80768e76 100644 --- a/biglinux-webapps/locale/fi.po +++ b/biglinux-webapps/locale/fi.po @@ -14,7 +14,6 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -24,31 +23,26 @@ msgstr "" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Mallipohjat" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Valitse malli" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Etsi malleja..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Hakutulokset" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Ei malleja löytynyt" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -60,13 +54,11 @@ msgstr "Ei malleja löytynyt" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Muokkaa WebAppia" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Poista WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 # File: biglinux-webapps/biglinux- @@ -75,25 +67,21 @@ msgstr "Poista WebApp" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Tervetuloa WebApps Manageriin" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Älä näytä tätä uudelleen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Aloitetaan" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Valitse selain" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -106,7 +94,6 @@ msgstr "Valitse selain" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Peruuta" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -119,7 +106,6 @@ msgstr "Peruuta" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Valitse" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -133,7 +119,6 @@ msgstr "Valitse" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "OK" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -145,19 +130,16 @@ msgstr "OK" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Lisää WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Havaitse nimi ja kuvake verkkosivustolta" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 # File: biglinux-webapps/biglinux- @@ -165,38 +147,32 @@ msgstr "Havaitse nimi ja kuvake verkkosivustolta" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Nimi" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Kategoria" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Aukeaa natiivina ikkunana ilman selainliittymää." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 #. -- Browser row (hidden in app mode) -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Selaimen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Sallii itsenäiset evästeet ja istunnot" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Profiilin nimi" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -206,52 +182,44 @@ msgstr "Profiilin nimi" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Tallenna" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Ladataan..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "Verkkosovellusten hallinta" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Hae Web-sovelluksia" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Vie Web-sovellukset" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Tuonti Web-sovellukset" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Selaa sovelluskansiota" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Selaa profiilikansiota" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 # File: biglinux-webapps/biglinux- @@ -260,31 +228,26 @@ msgstr "Selaa profiilikansiota" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Poista kaikki WebAppit" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "Tietoja" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Lisää uusi verkkosovellus aloittaaksesi" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "WebApp luotiin onnistuneesti" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "WebApp päivitettiin onnistuneesti" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -294,101 +257,81 @@ msgstr "WebApp päivitettiin onnistuneesti" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Myös poista asetuskansio." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Poista" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "WebApp poistettu onnistuneesti" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Poista kaikki" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Kaikki WebAppit on poistettu." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Kaikkien WebAppien poistaminen epäonnistui." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebApps viety onnistuneesti" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Ei Web-sovelluksia" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 msgid "Change browser" msgstr "Vaihda selain" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 msgid "Edit" msgstr "Muokkaa" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "New WebApp" msgstr "Uusi WebApp" - #. -- Icon row -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 msgid "Icon" msgstr "Kuvake" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 msgid "App Mode" msgstr "Sovellustila" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 msgid "Separate Profile" msgstr "Erota profiili" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 msgid "Select Icon" msgstr "Valitse kuvake" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 msgid "Images" msgstr "Kuvat" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 msgid "ZIP files" msgstr "ZIP-tiedostot" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 #, rust-format msgid "Imported {imported}, skipped {dups} duplicates" msgstr "Tuotiin {imported}, ohitettiin {dups} kaksoiskappaletta" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 msgid "Import failed" msgstr "Tuonti epäonnistui" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 msgid "Export failed" msgstr "Vienti epäonnistui" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 msgid "" "This will delete all webapps and their desktop entries. This cannot be " @@ -396,15 +339,12 @@ msgid "" msgstr "" "Tämä poistaa kaikki webappit ja niiden työpöytätiedostot. Tätä ei voi " "peruuttaa." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 msgid "Browser changed" msgstr "Selain vaihdettu" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 msgid "What are WebApps?" msgstr "Mitä WebAppit ovat?" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 msgid "" "WebApps are web applications that run in a dedicated browser window, " @@ -412,110 +352,85 @@ msgid "" msgstr "" "WebApps ovat verkkosovelluksia, jotka toimivat omassa selainikkunassaan, " "tarjoten sovellusmaisen käyttökokemuksen suosikkisivustoillesi." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 msgid "Benefits of using WebApps:" msgstr "WebAppsien käytön edut:" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Focus" msgstr "Keskittyminen" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Work without the distractions of other browser tabs" msgstr "Työskentele ilman muiden välilehtien häiriöitä" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Desktop Integration" msgstr "Työpöydän integrointi" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Quick access from your application menu" msgstr "Nopea pääsy sovellusvalikostasi" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Isolated Profiles" msgstr "Eristetyt profiilit" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Each webapp can have its own cookies and settings" msgstr "Jokaisella webappilla voi olla omat evästeensä ja asetuksensa" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 msgid "Back" msgstr "Takaisin" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 msgid "Forward" msgstr "Eteenpäin" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 msgid "Reload" msgstr "Lataa uudelleen" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 msgid "Fullscreen" msgstr "Koko näyttö" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 msgid "Enter URL…" msgstr "Syötä URL…" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 msgid "Zoom In" msgstr "Suurenna" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 msgid "Zoom Out" msgstr "Pienennä" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 msgid "Reset Zoom" msgstr "Nollaa zoomaus" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 msgid "Developer Tools" msgstr "Kehittäjätyökalut" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 msgid "Menu" msgstr "Valikko" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 msgid "Open Link in Browser" msgstr "Avaa linkki selaimessa" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 msgid "Download Complete" msgstr "Lataus valmis" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 msgid "Save File" msgstr "Tallenna tiedosto" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 #~ msgid "Search templates" #~ msgstr "Etsi malleja" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 #, python-brace-format #~ msgid "Browser: {0}" #~ msgstr "Selaimen: {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 #, python-brace-format #~ msgid "Edit {0}" #~ msgstr "Muokkaa {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 #, python-brace-format #~ msgid "Delete {0}" #~ msgstr "Poista {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 #~ msgid "" @@ -538,12 +453,10 @@ msgstr "Tallenna tiedosto" #~ "• Keskittyminen: Työskentele ilman muiden selainvälilehtien häiriöitä\n" #~ "• Työpöytäintegraatio: Nopea pääsy sovellusvalikostasi\n" #~ "• Eristetyt profiilit: Valinnaisesti jokaisella webappilla voi olla omat evästeensä ja asetuksensa\n" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 #~ msgid "System Default" #~ msgstr "Järjestelmän oletus" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -562,12 +475,10 @@ msgstr "Tallenna tiedosto" # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 #~ msgid "Default" #~ msgstr "Oletus" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 #~ msgid "Please select a browser." #~ msgstr "Valitse selain." - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -576,49 +487,40 @@ msgstr "Tallenna tiedosto" # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 #~ msgid "Error" #~ msgstr "Virhe" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 #~ msgid "Choose from templates" #~ msgstr "Valitse malleista" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 #~ msgid "Detect" #~ msgstr "Havaitse" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 #~ msgid "App Icon" #~ msgstr "Sovelluksen kuvake" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 #~ msgid "Select icon for the WebApp" #~ msgstr "Valitse kuvake WebAppille" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 #~ msgid "Available Icons" #~ msgstr "Saatavilla olevat kuvakkeet" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 #~ msgid "Application Mode" #~ msgstr "Sovellusmoodi" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 #~ msgid "Profile Settings" #~ msgstr "Profiiliasetukset" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 #~ msgid "Configure a separate browser profile for this webapp" #~ msgstr "Määritä erillinen selainprofiili tälle verkkosovellukselle" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -627,63 +529,51 @@ msgstr "Tallenna tiedosto" # #~ msgid "Use separate profile" #~ msgstr "Käytä erillistä profiilia" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 #~ msgid "Detecting website information, please wait" #~ msgstr "Tunnistetaan verkkosivuston tietoja, ole hyvä ja odota." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 #~ msgid "Please enter a URL first." #~ msgstr "Ole hyvä ja syötä ensin URL-osoite." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 #~ msgid "Please enter a name for the WebApp." #~ msgstr "Ole hyvä ja syötä nimi WebAppille." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 #~ msgid "Please enter a URL for the WebApp." #~ msgstr "Ole hyvä ja syötä URL-osoite WebAppille." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 #~ msgid "Please select a browser for the WebApp." #~ msgstr "Valitse selain WebAppia varten." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 #~ msgid "Main Menu" #~ msgstr "Päävalikko" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 #~ msgid "Refresh" #~ msgstr "Päivitä" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 #~ msgid "Show Welcome Screen" #~ msgstr "Näytä tervetulonäyttö" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 #~ msgid "Add" #~ msgstr "Lisää" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 #~ msgid "No WebApps Found" #~ msgstr "Ei Web-sovelluksia löytynyt" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 #, python-brace-format #~ msgid "Browser changed to {0}" #~ msgstr "Selainta muutettu {0}ksi" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 #, python-brace-format @@ -697,12 +587,10 @@ msgstr "Tallenna tiedosto" #~ "\n" #~ "URL: {1}\n" #~ "Selaimen: {2}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 #~ msgid "REMOVE ALL" #~ msgstr "POISTA KAIKKI" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 #, python-brace-format @@ -714,48 +602,39 @@ msgstr "Tallenna tiedosto" #~ "Oletko varma, että haluat poistaa kaikki WebAppisi? Tätä toimintoa ei voi peruuttaa.\n" #~ "\n" #~ "Kirjoita \"{0}\" vahvistaaksesi." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 #, python-brace-format #~ msgid "Icon {0} of {1}" #~ msgstr "Kuvake {0} kohteesta {1}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #~ msgid "There are no WebApps to export." #~ msgstr "Ei ole WebAppse, joita voisi viedä." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 #~ msgid "The selected file does not exist." #~ msgstr "Valittua tiedostoa ei ole olemassa." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 #~ msgid "The selected file is not a valid ZIP archive." #~ msgstr "Valittu tiedosto ei ole voimassa oleva ZIP-arkisto." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 #~ msgid "Error importing WebApps" #~ msgstr "Virhe WebAppsien tuonnissa" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 #~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" #~ msgstr "Tuodut {} WebApps onnistuneesti ({} kaksoiskappaletta ohitettu)" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 #~ msgid "Imported {} WebApps successfully" #~ msgstr "Tuodut {} WebApps onnistuneesti" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 #~ msgid "No" #~ msgstr "Ei" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 #~ msgid "Yes" diff --git a/biglinux-webapps/locale/fr.json b/biglinux-webapps/locale/fr.json new file mode 100644 index 00000000..35b8e6c2 --- /dev/null +++ b/biglinux-webapps/locale/fr.json @@ -0,0 +1 @@ +{"fr":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Modèles"]},"Choose a Template":{"*":["Choisissez un modèle"]},"Search templates...":{"*":["Rechercher des modèles..."]},"Search Results":{"*":["Résultats de recherche"]},"No templates found":{"*":["Aucun modèle trouvé"]},"Edit WebApp":{"*":["Modifier WebApp"]},"Delete WebApp":{"*":["Supprimer l'application Web"]},"Welcome to WebApps Manager":{"*":["Bienvenue dans le gestionnaire d'applications Web"]},"Don't show this again":{"*":["Ne plus afficher ceci."]},"Let's Start":{"*":["Commençons"]},"Select Browser":{"*":["Sélectionner le navigateur"]},"Cancel":{"*":["Annuler"]},"Select":{"*":["Sélectionner"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Ajouter WebApp"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Détecter le nom et l'icône du site web"]},"Name":{"*":["Nom"]},"Category":{"*":["Catégorie"]},"Opens as a native window without browser interface":{"*":["S'ouvre en tant que fenêtre native sans interface de navigateur."]},"Browser":{"*":["Navigateur"]},"Allows independent cookies and sessions":{"*":["Autorise les cookies et les sessions indépendants"]},"Profile Name":{"*":["Nom de profil"]},"Save":{"*":["Enregistrer"]},"Loading...":{"*":["Chargement..."]},"WebApps Manager":{"*":["Gestionnaire d'applications Web"]},"Search WebApps":{"*":["Rechercher des applications Web"]},"Export WebApps":{"*":["Exporter des applications Web"]},"Import WebApps":{"*":["Importer des applications Web"]},"Browse Applications Folder":{"*":["Parcourir le dossier Applications"]},"Browse Profiles Folder":{"*":["Parcourir le dossier des profils"]},"Remove All WebApps":{"*":["Supprimer toutes les applications Web"]},"About":{"*":["À propos"]},"Add a new webapp to get started":{"*":["Ajoutez une nouvelle application web pour commencer."]},"WebApp created successfully":{"*":["WebApp créé avec succès"]},"WebApp updated successfully":{"*":["WebApp mis à jour avec succès"]},"Also delete configuration folder":{"*":["Supprimez également le dossier de configuration."]},"Delete":{"*":["Supprimer"]},"WebApp deleted successfully":{"*":["WebApp supprimé avec succès"]},"Remove All":{"*":["Tout supprimer"]},"All WebApps have been removed":{"*":["Toutes les applications Web ont été supprimées."]},"Failed to remove all WebApps":{"*":["Échec de la suppression de toutes les WebApps"]},"WebApps exported successfully":{"*":["WebApps exportés avec succès"]},"No WebApps":{"*":["Pas d'applications Web"]},"Change browser":{"*":["Changer de navigateur"]},"Edit":{"*":["Modifier"]},"New WebApp":{"*":["Nouvelle WebApp"]},"Icon":{"*":["Icône"]},"App Mode":{"*":["Mode d’application"]},"Separate Profile":{"*":["Profil séparé"]},"Select Icon":{"*":["Sélectionner une icône"]},"Images":{"*":["Images"]},"ZIP files":{"*":["Fichiers ZIP"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Importé {imported}, ignoré {dups} doublons"]},"Import failed":{"*":["Échec de l’importation"]},"Export failed":{"*":["Échec de l’exportation"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Cela supprimera toutes les webapps et leurs entrées sur le bureau. Cette action est irréversible."]},"Browser changed":{"*":["Navigateur changé"]},"What are WebApps?":{"*":["Que sont les WebApps ?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["Les WebApps sont des applications web qui s'exécutent dans une fenêtre de navigateur dédiée, offrant une expérience plus proche d'une application pour vos sites préférés."]},"Benefits of using WebApps:":{"*":["Avantages d'utiliser les WebApps :"]},"Focus":{"*":["Concentration"]},"Work without the distractions of other browser tabs":{"*":["Travaillez sans les distractions des autres onglets du navigateur"]},"Desktop Integration":{"*":["Intégration au bureau"]},"Quick access from your application menu":{"*":["Accès rapide depuis votre menu d'applications"]},"Isolated Profiles":{"*":["Profils isolés"]},"Each webapp can have its own cookies and settings":{"*":["Chaque WebApp peut avoir ses propres cookies et paramètres"]},"Back":{"*":["Retour"]},"Forward":{"*":["Avant"]},"Reload":{"*":["Recharger"]},"Fullscreen":{"*":["Plein écran"]},"Enter URL…":{"*":["Entrez l'URL…"]},"Zoom In":{"*":["Zoomer"]},"Zoom Out":{"*":["Dézoomer"]},"Reset Zoom":{"*":["Réinitialiser le zoom"]},"Developer Tools":{"*":["Outils de développement"]},"Menu":{"*":["Menu"]},"Open Link in Browser":{"*":["Ouvrir le lien dans le navigateur"]},"Download Complete":{"*":["Téléchargement terminé"]},"Save File":{"*":["Enregistrer le fichier"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/fr.po b/biglinux-webapps/locale/fr.po index 11edcdfe..1aba55ba 100644 --- a/biglinux-webapps/locale/fr.po +++ b/biglinux-webapps/locale/fr.po @@ -14,7 +14,6 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -24,31 +23,26 @@ msgstr "" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Modèles" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Choisissez un modèle" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Rechercher des modèles..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Résultats de recherche" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Aucun modèle trouvé" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -60,13 +54,11 @@ msgstr "Aucun modèle trouvé" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Modifier WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Supprimer l'application Web" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 # File: biglinux-webapps/biglinux- @@ -75,25 +67,21 @@ msgstr "Supprimer l'application Web" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Bienvenue dans le gestionnaire d'applications Web" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Ne plus afficher ceci." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Commençons" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Sélectionner le navigateur" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -106,7 +94,6 @@ msgstr "Sélectionner le navigateur" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Annuler" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -119,7 +106,6 @@ msgstr "Annuler" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Sélectionner" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -133,7 +119,6 @@ msgstr "Sélectionner" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "OK" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -145,19 +130,16 @@ msgstr "OK" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Ajouter WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Détecter le nom et l'icône du site web" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 # File: biglinux-webapps/biglinux- @@ -165,38 +147,32 @@ msgstr "Détecter le nom et l'icône du site web" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Nom" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Catégorie" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "S'ouvre en tant que fenêtre native sans interface de navigateur." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 #. -- Browser row (hidden in app mode) -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Navigateur" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Autorise les cookies et les sessions indépendants" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Nom de profil" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -206,52 +182,44 @@ msgstr "Nom de profil" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Enregistrer" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Chargement..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "Gestionnaire d'applications Web" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Rechercher des applications Web" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Exporter des applications Web" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Importer des applications Web" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Parcourir le dossier Applications" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Parcourir le dossier des profils" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 # File: biglinux-webapps/biglinux- @@ -260,31 +228,26 @@ msgstr "Parcourir le dossier des profils" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Supprimer toutes les applications Web" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "À propos" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Ajoutez une nouvelle application web pour commencer." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "WebApp créé avec succès" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "WebApp mis à jour avec succès" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -294,101 +257,81 @@ msgstr "WebApp mis à jour avec succès" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Supprimez également le dossier de configuration." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Supprimer" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "WebApp supprimé avec succès" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Tout supprimer" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Toutes les applications Web ont été supprimées." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Échec de la suppression de toutes les WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebApps exportés avec succès" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Pas d'applications Web" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 msgid "Change browser" msgstr "Changer de navigateur" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 msgid "Edit" msgstr "Modifier" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "New WebApp" msgstr "Nouvelle WebApp" - #. -- Icon row -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 msgid "Icon" msgstr "Icône" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 msgid "App Mode" msgstr "Mode d’application" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 msgid "Separate Profile" msgstr "Profil séparé" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 msgid "Select Icon" msgstr "Sélectionner une icône" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 msgid "Images" msgstr "Images" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 msgid "ZIP files" msgstr "Fichiers ZIP" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 #, rust-format msgid "Imported {imported}, skipped {dups} duplicates" msgstr "Importé {imported}, ignoré {dups} doublons" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 msgid "Import failed" msgstr "Échec de l’importation" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 msgid "Export failed" msgstr "Échec de l’exportation" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 msgid "" "This will delete all webapps and their desktop entries. This cannot be " @@ -396,15 +339,12 @@ msgid "" msgstr "" "Cela supprimera toutes les webapps et leurs entrées sur le bureau. Cette " "action est irréversible." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 msgid "Browser changed" msgstr "Navigateur changé" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 msgid "What are WebApps?" msgstr "Que sont les WebApps ?" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 msgid "" "WebApps are web applications that run in a dedicated browser window, " @@ -413,110 +353,85 @@ msgstr "" "Les WebApps sont des applications web qui s'exécutent dans une fenêtre de " "navigateur dédiée, offrant une expérience plus proche d'une application pour" " vos sites préférés." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 msgid "Benefits of using WebApps:" msgstr "Avantages d'utiliser les WebApps :" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Focus" msgstr "Concentration" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Work without the distractions of other browser tabs" msgstr "Travaillez sans les distractions des autres onglets du navigateur" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Desktop Integration" msgstr "Intégration au bureau" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Quick access from your application menu" msgstr "Accès rapide depuis votre menu d'applications" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Isolated Profiles" msgstr "Profils isolés" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Each webapp can have its own cookies and settings" msgstr "Chaque WebApp peut avoir ses propres cookies et paramètres" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 msgid "Back" msgstr "Retour" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 msgid "Forward" msgstr "Avant" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 msgid "Reload" msgstr "Recharger" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 msgid "Fullscreen" msgstr "Plein écran" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 msgid "Enter URL…" msgstr "Entrez l'URL…" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 msgid "Zoom In" msgstr "Zoomer" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 msgid "Zoom Out" msgstr "Dézoomer" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 msgid "Reset Zoom" msgstr "Réinitialiser le zoom" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 msgid "Developer Tools" msgstr "Outils de développement" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 msgid "Menu" msgstr "Menu" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 msgid "Open Link in Browser" msgstr "Ouvrir le lien dans le navigateur" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 msgid "Download Complete" msgstr "Téléchargement terminé" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 msgid "Save File" msgstr "Enregistrer le fichier" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 #~ msgid "Search templates" #~ msgstr "Rechercher des modèles" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 #, python-brace-format #~ msgid "Browser: {0}" #~ msgstr "Navigateur : {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 #, python-brace-format #~ msgid "Edit {0}" #~ msgstr "Modifier {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 #, python-brace-format #~ msgid "Delete {0}" #~ msgstr "Supprimer {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 #~ msgid "" @@ -539,12 +454,10 @@ msgstr "Enregistrer le fichier" #~ "• Concentration : Travaillez sans les distractions des autres onglets du navigateur\n" #~ "• Intégration de bureau : Accès rapide depuis votre menu d'application\n" #~ "• Profils isolés : En option, chaque webapp peut avoir ses propres cookies et paramètres\n" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 #~ msgid "System Default" #~ msgstr "Paramètre par défaut du système" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -563,12 +476,10 @@ msgstr "Enregistrer le fichier" # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 #~ msgid "Default" #~ msgstr "Par défaut" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 #~ msgid "Please select a browser." #~ msgstr "Veuillez sélectionner un navigateur." - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -577,49 +488,40 @@ msgstr "Enregistrer le fichier" # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 #~ msgid "Error" #~ msgstr "Erreur" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 #~ msgid "Choose from templates" #~ msgstr "Choisissez parmi les modèles" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 #~ msgid "Detect" #~ msgstr "Détecter" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 #~ msgid "App Icon" #~ msgstr "Icône de l'application" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 #~ msgid "Select icon for the WebApp" #~ msgstr "Sélectionnez l'icône pour l'application Web" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 #~ msgid "Available Icons" #~ msgstr "Icônes disponibles" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 #~ msgid "Application Mode" #~ msgstr "Mode d'application" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 #~ msgid "Profile Settings" #~ msgstr "Paramètres du profil" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 #~ msgid "Configure a separate browser profile for this webapp" #~ msgstr "Configurez un profil de navigateur séparé pour cette application web." - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -628,63 +530,51 @@ msgstr "Enregistrer le fichier" # #~ msgid "Use separate profile" #~ msgstr "Utiliser un profil séparé" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 #~ msgid "Detecting website information, please wait" #~ msgstr "Détection des informations du site web, veuillez patienter." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 #~ msgid "Please enter a URL first." #~ msgstr "Veuillez d'abord entrer une URL." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 #~ msgid "Please enter a name for the WebApp." #~ msgstr "Veuillez entrer un nom pour l'application Web." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 #~ msgid "Please enter a URL for the WebApp." #~ msgstr "Veuillez entrer une URL pour l'application Web." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 #~ msgid "Please select a browser for the WebApp." #~ msgstr "Veuillez sélectionner un navigateur pour l'application Web." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 #~ msgid "Main Menu" #~ msgstr "Menu Principal" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 #~ msgid "Refresh" #~ msgstr "Rafraîchir" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 #~ msgid "Show Welcome Screen" #~ msgstr "Afficher l'écran d'accueil" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 #~ msgid "Add" #~ msgstr "Ajouter" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 #~ msgid "No WebApps Found" #~ msgstr "Aucune application Web trouvée" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 #, python-brace-format #~ msgid "Browser changed to {0}" #~ msgstr "Le navigateur a été changé en {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 #, python-brace-format @@ -698,12 +588,10 @@ msgstr "Enregistrer le fichier" #~ "\n" #~ "URL : {1} \n" #~ "Navigateur : {2}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 #~ msgid "REMOVE ALL" #~ msgstr "SUPPRIMER TOUT" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 #, python-brace-format @@ -715,48 +603,39 @@ msgstr "Enregistrer le fichier" #~ "Êtes-vous sûr de vouloir supprimer toutes vos WebApps ? Cette action ne peut pas être annulée.\n" #~ "\n" #~ "Tapez \"{0}\" pour confirmer." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 #, python-brace-format #~ msgid "Icon {0} of {1}" #~ msgstr "Icône {0} de {1}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #~ msgid "There are no WebApps to export." #~ msgstr "Il n'y a pas d'applications Web à exporter." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 #~ msgid "The selected file does not exist." #~ msgstr "Le fichier sélectionné n'existe pas." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 #~ msgid "The selected file is not a valid ZIP archive." #~ msgstr "Le fichier sélectionné n'est pas une archive ZIP valide." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 #~ msgid "Error importing WebApps" #~ msgstr "Erreur d'importation des WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 #~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" #~ msgstr "WebApps importés avec succès ({} doublons ignorés)" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 #~ msgid "Imported {} WebApps successfully" #~ msgstr "Applications Web {} importées avec succès" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 #~ msgid "No" #~ msgstr "Non" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 #~ msgid "Yes" diff --git a/biglinux-webapps/locale/he.json b/biglinux-webapps/locale/he.json new file mode 100644 index 00000000..c039a215 --- /dev/null +++ b/biglinux-webapps/locale/he.json @@ -0,0 +1 @@ +{"he":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["תבניות"]},"Choose a Template":{"*":["בחר תבנית"]},"Search templates...":{"*":["חפש תבניות..."]},"Search Results":{"*":["תוצאות חיפוש"]},"No templates found":{"*":["לא נמצאו תבניות"]},"Edit WebApp":{"*":["ערוך אפליקציית אינטרנט"]},"Delete WebApp":{"*":["מחק את היישום האינטרנטי"]},"Welcome to WebApps Manager":{"*":["ברוך הבא למנהל אפליקציות אינטרנט"]},"Don't show this again":{"*":["אל תראה זאת שוב"]},"Let's Start":{"*":["בוא נתחיל"]},"Select Browser":{"*":["בחר דפדפן"]},"Cancel":{"*":["ביטול"]},"Select":{"*":["בחר"]},"OK":{"*":["אוקי"]},"Add WebApp":{"*":["הוסף אפליקציית אינטרנט"]},"URL":{"*":["כתובת אתר"]},"Detect name and icon from website":{"*":["גלה שם ואייקון מאתר אינטרנט"]},"Name":{"*":["שם"]},"Category":{"*":["קטגוריה"]},"Opens as a native window without browser interface":{"*":["נפתח כחלון מקורי ללא ממשק דפדפן"]},"Browser":{"*":["דפדפן"]},"Allows independent cookies and sessions":{"*":["מאפשר עוגיות וסשנים עצמאיים"]},"Profile Name":{"*":["שם פרופיל"]},"Save":{"*":["שמור"]},"Loading...":{"*":["טוען..."]},"WebApps Manager":{"*":["מנהל אפליקציות אינטרנט"]},"Search WebApps":{"*":["חפש אפליקציות אינטרנט"]},"Export WebApps":{"*":["ייצוא אפליקציות אינטרנט"]},"Import WebApps":{"*":["ייבוא אפליקציות אינטרנט"]},"Browse Applications Folder":{"*":["עבור לתיקיית היישומים"]},"Browse Profiles Folder":{"*":["דפדף לתיקיית פרופילים"]},"Remove All WebApps":{"*":["הסר את כל היישומים האינטרנטיים"]},"About":{"*":["אודות"]},"Add a new webapp to get started":{"*":["הוסף אפליקציית אינטרנט חדשה כדי להתחיל"]},"WebApp created successfully":{"*":["היישום האינטרנטי נוצר בהצלחה"]},"WebApp updated successfully":{"*":["היישום האינטרנטי עודכן בהצלחה"]},"Also delete configuration folder":{"*":["גם מחק את תיקיית ההגדרות"]},"Delete":{"*":["מחק"]},"WebApp deleted successfully":{"*":["היישום האינטרנטי נמחק בהצלחה"]},"Remove All":{"*":["הסר הכל"]},"All WebApps have been removed":{"*":["כל האפליקציות האינטרנטיות הוסרו"]},"Failed to remove all WebApps":{"*":["נכשל בהסרת כל היישומים האינטרנטיים"]},"WebApps exported successfully":{"*":["היישומים המובנים ייצאו בהצלחה"]},"No WebApps":{"*":["אין אפליקציות אינטרנט"]},"Change browser":{"*":["שנה דפדפן"]},"Edit":{"*":["ערוך"]},"New WebApp":{"*":["WebApp חדש"]},"Icon":{"*":["סמל"]},"App Mode":{"*":["מצב אפליקציה"]},"Separate Profile":{"*":["פרופיל נפרד"]},"Select Icon":{"*":["בחר סמל"]},"Images":{"*":["תמונות"]},"ZIP files":{"*":["קבצי ZIP"]},"Imported {imported}, skipped {dups} duplicates":{"*":["יובא {imported}, דילגו על {dups} כפילויות"]},"Import failed":{"*":["הייבוא נכשל"]},"Export failed":{"*":["הייצוא נכשל"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["פעולה זו תמחק את כל ה-Webapps ואת הקיצורים שלהם בשולחן העבודה. לא ניתן לבטל פעולה זו."]},"Browser changed":{"*":["הדפדפן שונה"]},"What are WebApps?":{"*":["מהן WebApps?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps הן אפליקציות אינטרנט שרצות בחלון דפדפן ייעודי, ומספקות חוויית שימוש דמויית אפליקציה לאתרים האהובים עליך."]},"Benefits of using WebApps:":{"*":["יתרונות השימוש ב-WebApps:"]},"Focus":{"*":["ריכוז"]},"Work without the distractions of other browser tabs":{"*":["עבודה ללא הסחות דעת מטאבים אחרים בדפדפן"]},"Desktop Integration":{"*":["אינטגרציה לשולחן העבודה"]},"Quick access from your application menu":{"*":["גישה מהירה מתפריט האפליקציות שלך"]},"Isolated Profiles":{"*":["פרופילים מבודדים"]},"Each webapp can have its own cookies and settings":{"*":["לכל WebApp יכולות להיות עוגיות והגדרות משלו"]},"Back":{"*":["חזור"]},"Forward":{"*":["קדימה"]},"Reload":{"*":["רענן"]},"Fullscreen":{"*":["מסך מלא"]},"Enter URL…":{"*":["הזן URL…"]},"Zoom In":{"*":["הגדל זום"]},"Zoom Out":{"*":["הקטן זום"]},"Reset Zoom":{"*":["איפוס זום"]},"Developer Tools":{"*":["כלי מפתח"]},"Menu":{"*":["תפריט"]},"Open Link in Browser":{"*":["פתח קישור בדפדפן"]},"Download Complete":{"*":["ההורדה הושלמה"]},"Save File":{"*":["שמור קובץ"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/he.po b/biglinux-webapps/locale/he.po index aa5785f2..ef476682 100644 --- a/biglinux-webapps/locale/he.po +++ b/biglinux-webapps/locale/he.po @@ -14,7 +14,6 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -24,31 +23,26 @@ msgstr "" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "תבניות" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "בחר תבנית" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "חפש תבניות..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "תוצאות חיפוש" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "לא נמצאו תבניות" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -60,13 +54,11 @@ msgstr "לא נמצאו תבניות" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "ערוך אפליקציית אינטרנט" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "מחק את היישום האינטרנטי" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 # File: biglinux-webapps/biglinux- @@ -75,25 +67,21 @@ msgstr "מחק את היישום האינטרנטי" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "ברוך הבא למנהל אפליקציות אינטרנט" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "אל תראה זאת שוב" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "בוא נתחיל" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "בחר דפדפן" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -106,7 +94,6 @@ msgstr "בחר דפדפן" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "ביטול" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -119,7 +106,6 @@ msgstr "ביטול" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "בחר" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -133,7 +119,6 @@ msgstr "בחר" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "אוקי" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -145,19 +130,16 @@ msgstr "אוקי" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "הוסף אפליקציית אינטרנט" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "כתובת אתר" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "גלה שם ואייקון מאתר אינטרנט" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 # File: biglinux-webapps/biglinux- @@ -165,38 +147,32 @@ msgstr "גלה שם ואייקון מאתר אינטרנט" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "שם" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "קטגוריה" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "נפתח כחלון מקורי ללא ממשק דפדפן" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 #. -- Browser row (hidden in app mode) -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "דפדפן" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "מאפשר עוגיות וסשנים עצמאיים" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "שם פרופיל" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -206,52 +182,44 @@ msgstr "שם פרופיל" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "שמור" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "טוען..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "מנהל אפליקציות אינטרנט" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "חפש אפליקציות אינטרנט" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "ייצוא אפליקציות אינטרנט" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 63 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "ייבוא אפליקציות אינטרנט" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "עבור לתיקיית היישומים" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 67 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "דפדף לתיקיית פרופילים" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 # File: biglinux-webapps/biglinux- @@ -260,31 +228,26 @@ msgstr "דפדף לתיקיית פרופילים" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "הסר את כל היישומים האינטרנטיים" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 70 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "אודות" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "הוסף אפליקציית אינטרנט חדשה כדי להתחיל" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "היישום האינטרנטי נוצר בהצלחה" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "היישום האינטרנטי עודכן בהצלחה" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -294,101 +257,81 @@ msgstr "היישום האינטרנטי עודכן בהצלחה" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "גם מחק את תיקיית ההגדרות" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "מחק" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "היישום האינטרנטי נמחק בהצלחה" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "הסר הכל" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 444 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "כל האפליקציות האינטרנטיות הוסרו" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 446 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "נכשל בהסרת כל היישומים האינטרנטיים" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "היישומים המובנים ייצאו בהצלחה" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "אין אפליקציות אינטרנט" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 msgid "Change browser" msgstr "שנה דפדפן" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 msgid "Edit" msgstr "ערוך" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "New WebApp" msgstr "WebApp חדש" - #. -- Icon row -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 msgid "Icon" msgstr "סמל" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 msgid "App Mode" msgstr "מצב אפליקציה" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 msgid "Separate Profile" msgstr "פרופיל נפרד" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 msgid "Select Icon" msgstr "בחר סמל" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 msgid "Images" msgstr "תמונות" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 msgid "ZIP files" msgstr "קבצי ZIP" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 #, rust-format msgid "Imported {imported}, skipped {dups} duplicates" msgstr "יובא {imported}, דילגו על {dups} כפילויות" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 msgid "Import failed" msgstr "הייבוא נכשל" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 msgid "Export failed" msgstr "הייצוא נכשל" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 msgid "" "This will delete all webapps and their desktop entries. This cannot be " @@ -396,15 +339,12 @@ msgid "" msgstr "" "פעולה זו תמחק את כל ה-Webapps ואת הקיצורים שלהם בשולחן העבודה. לא ניתן לבטל " "פעולה זו." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 msgid "Browser changed" msgstr "הדפדפן שונה" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 msgid "What are WebApps?" msgstr "מהן WebApps?" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 msgid "" "WebApps are web applications that run in a dedicated browser window, " @@ -412,110 +352,85 @@ msgid "" msgstr "" "WebApps הן אפליקציות אינטרנט שרצות בחלון דפדפן ייעודי, ומספקות חוויית שימוש " "דמויית אפליקציה לאתרים האהובים עליך." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 msgid "Benefits of using WebApps:" msgstr "יתרונות השימוש ב-WebApps:" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Focus" msgstr "ריכוז" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Work without the distractions of other browser tabs" msgstr "עבודה ללא הסחות דעת מטאבים אחרים בדפדפן" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Desktop Integration" msgstr "אינטגרציה לשולחן העבודה" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Quick access from your application menu" msgstr "גישה מהירה מתפריט האפליקציות שלך" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Isolated Profiles" msgstr "פרופילים מבודדים" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Each webapp can have its own cookies and settings" msgstr "לכל WebApp יכולות להיות עוגיות והגדרות משלו" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 msgid "Back" msgstr "חזור" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 msgid "Forward" msgstr "קדימה" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 msgid "Reload" msgstr "רענן" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 msgid "Fullscreen" msgstr "מסך מלא" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 msgid "Enter URL…" msgstr "הזן URL…" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 msgid "Zoom In" msgstr "הגדל זום" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 msgid "Zoom Out" msgstr "הקטן זום" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 msgid "Reset Zoom" msgstr "איפוס זום" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 msgid "Developer Tools" msgstr "כלי מפתח" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 msgid "Menu" msgstr "תפריט" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 msgid "Open Link in Browser" msgstr "פתח קישור בדפדפן" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 msgid "Download Complete" msgstr "ההורדה הושלמה" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 msgid "Save File" msgstr "שמור קובץ" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 #~ msgid "Search templates" #~ msgstr "חפש תבניות" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 #, python-brace-format #~ msgid "Browser: {0}" #~ msgstr "דפדפן: {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 #, python-brace-format #~ msgid "Edit {0}" #~ msgstr "ערוך {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 #, python-brace-format #~ msgid "Delete {0}" #~ msgstr "מחק {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 #~ msgid "" @@ -538,12 +453,10 @@ msgstr "שמור קובץ" #~ "• מיקוד: עבודה ללא הסחות דעת מכרטיסיות דפדפן אחרות\n" #~ "• אינטגרציה עם שולחן העבודה: גישה מהירה מתפריט היישומים שלך\n" #~ "• פרופילים מבודדים: אופציונלית, לכל אפליקציית רשת יכולות להיות עוגיות והגדרות משלה\n" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 #~ msgid "System Default" #~ msgstr "ברירת מחדל של מערכת" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -562,12 +475,10 @@ msgstr "שמור קובץ" # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 #~ msgid "Default" #~ msgstr "ברירת מחדל" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 #~ msgid "Please select a browser." #~ msgstr "אנא בחר דפדפן." - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -576,49 +487,40 @@ msgstr "שמור קובץ" # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 #~ msgid "Error" #~ msgstr "שגיאה" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 #~ msgid "Choose from templates" #~ msgstr "בחר מתוך תבניות" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 #~ msgid "Detect" #~ msgstr "גלה" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 #~ msgid "App Icon" #~ msgstr "אייקון אפליקציה" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 #~ msgid "Select icon for the WebApp" #~ msgstr "בחר סמל עבור ה-WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 #~ msgid "Available Icons" #~ msgstr "אייקונים זמינים" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 #~ msgid "Application Mode" #~ msgstr "מצב יישום" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 #~ msgid "Profile Settings" #~ msgstr "הגדרות פרופיל" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 #~ msgid "Configure a separate browser profile for this webapp" #~ msgstr "הגדר פרופיל דפדפן נפרד עבור אפליקציה זו" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -627,63 +529,51 @@ msgstr "שמור קובץ" # #~ msgid "Use separate profile" #~ msgstr "השתמש בפרופיל נפרד" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 #~ msgid "Detecting website information, please wait" #~ msgstr "מאתר מידע על האתר, אנא המתן" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 #~ msgid "Please enter a URL first." #~ msgstr "אנא הזן כתובת URL קודם." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 #~ msgid "Please enter a name for the WebApp." #~ msgstr "אנא הזן שם עבור ה-WebApp." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 #~ msgid "Please enter a URL for the WebApp." #~ msgstr "אנא הזן כתובת URL עבור ה-WebApp." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 #~ msgid "Please select a browser for the WebApp." #~ msgstr "אנא בחר דפדפן עבור ה-WebApp." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 #~ msgid "Main Menu" #~ msgstr "תפריט ראשי" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 #~ msgid "Refresh" #~ msgstr "רענן" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 #~ msgid "Show Welcome Screen" #~ msgstr "הצג מסך ברוך הבא" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 #~ msgid "Add" #~ msgstr "הוסף" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 #~ msgid "No WebApps Found" #~ msgstr "לא נמצאו אפליקציות אינטרנט" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 #, python-brace-format #~ msgid "Browser changed to {0}" #~ msgstr "הדפדפן שונה ל-{0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 #, python-brace-format @@ -697,12 +587,10 @@ msgstr "שמור קובץ" #~ "\n" #~ "כתובת אתר: {1}\n" #~ "דפדפן: {2}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 #~ msgid "REMOVE ALL" #~ msgstr "הסר הכל" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 #, python-brace-format @@ -714,48 +602,39 @@ msgstr "שמור קובץ" #~ "האם אתה בטוח שברצונך להסיר את כל ה-WebApps שלך? פעולה זו אינה ניתנת לביטול.\n" #~ "\n" #~ "הקלד \"{0}\" כדי לאשר." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 #, python-brace-format #~ msgid "Icon {0} of {1}" #~ msgstr "אייקון {0} של {1}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #~ msgid "There are no WebApps to export." #~ msgstr "אין אפליקציות אינטרנט לייצוא." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 #~ msgid "The selected file does not exist." #~ msgstr "הקובץ שנבחר אינו קיים." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 #~ msgid "The selected file is not a valid ZIP archive." #~ msgstr "הקובץ שנבחר אינו ארכיון ZIP תקף." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 #~ msgid "Error importing WebApps" #~ msgstr "שגיאה בייבוא WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 404 #~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" #~ msgstr "ייבא {} אפליקציות אינטרנט בהצלחה ({} כפילויות הושמטו)" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 #~ msgid "Imported {} WebApps successfully" #~ msgstr "ייבא {} WebApps בהצלחה" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 #~ msgid "No" #~ msgstr "לא" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 #~ msgid "Yes" diff --git a/biglinux-webapps/locale/hr.json b/biglinux-webapps/locale/hr.json new file mode 100644 index 00000000..1525de02 --- /dev/null +++ b/biglinux-webapps/locale/hr.json @@ -0,0 +1 @@ +{"hr":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Predlošci"]},"Choose a Template":{"*":["Odaberite predložak"]},"Search templates...":{"*":["Pretraži predloške..."]},"Search Results":{"*":["Rezultati pretraživanja"]},"No templates found":{"*":["Nema pronađenih predložaka"]},"Edit WebApp":{"*":["Uredi WebApp"]},"Delete WebApp":{"*":["Izbriši WebApp"]},"Welcome to WebApps Manager":{"*":["Dobrodošli u WebApps Manager"]},"Don't show this again":{"*":["Ne prikazuj ovo ponovno"]},"Let's Start":{"*":["Započnimo"]},"Select Browser":{"*":["Odaberite preglednik"]},"Cancel":{"*":["Otkaži"]},"Select":{"*":["Odaberi"]},"OK":{"*":["U redu"]},"Add WebApp":{"*":["Dodaj WebApp"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Otkrivanje imena i ikone s web stranice"]},"Name":{"*":["Ime"]},"Category":{"*":["Kategorija"]},"Opens as a native window without browser interface":{"*":["Otvara se kao izvorni prozor bez sučelja preglednika."]},"Browser":{"*":["Preglednik"]},"Allows independent cookies and sessions":{"*":["Omogućuje neovisne kolačiće i sesije"]},"Profile Name":{"*":["Ime profila"]},"Save":{"*":["Spremi"]},"Loading...":{"*":["Učitavanje..."]},"WebApps Manager":{"*":["Upravitelj web aplikacija"]},"Search WebApps":{"*":["Pretraži WebAplikacije"]},"Export WebApps":{"*":["Izvezi WebAplikacije"]},"Import WebApps":{"*":["Uvezi WebAplikacije"]},"Browse Applications Folder":{"*":["Pregledaj mapu aplikacija"]},"Browse Profiles Folder":{"*":["Pregledaj mapu profila"]},"Remove All WebApps":{"*":["Ukloni sve web aplikacije"]},"About":{"*":["O aplikaciji"]},"Add a new webapp to get started":{"*":["Dodajte novu web aplikaciju za početak"]},"WebApp created successfully":{"*":["WebApp je uspješno kreiran"]},"WebApp updated successfully":{"*":["WebApp je uspješno ažuriran"]},"Also delete configuration folder":{"*":["Također izbrišite mapu s konfiguracijom."]},"Delete":{"*":["Izbriši"]},"WebApp deleted successfully":{"*":["WebApp je uspješno izbrisan."]},"Remove All":{"*":["Ukloni sve"]},"All WebApps have been removed":{"*":["Sve WebApp-ovi su uklonjeni."]},"Failed to remove all WebApps":{"*":["Nije uspjelo ukloniti sve WebAplikacije"]},"WebApps exported successfully":{"*":["WebAplikacije su uspješno eksportirane."]},"No WebApps":{"*":["Nema WebAplikacija"]},"Change browser":{"*":["Promijeni preglednik"]},"Edit":{"*":["Uredi"]},"New WebApp":{"*":["Nova WebApp"]},"Icon":{"*":["Ikona"]},"App Mode":{"*":["Način rada aplikacije"]},"Separate Profile":{"*":["Odvojen profil"]},"Select Icon":{"*":["Odaberi ikonu"]},"Images":{"*":["Slike"]},"ZIP files":{"*":["ZIP datoteke"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Uvezeno {imported}, preskočeno {dups} duplikata"]},"Import failed":{"*":["Uvoz nije uspio"]},"Export failed":{"*":["Izvoz nije uspio"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Ovo će izbrisati sve webaplikacije i njihove unose na radnoj površini. Ovo se ne može poništiti."]},"Browser changed":{"*":["Preglednik je promijenjen"]},"What are WebApps?":{"*":["Što su WebApps?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps su web aplikacije koje se pokreću u posebnom prozoru preglednika, pružajući iskustvo slično aplikaciji za vaše omiljene web stranice."]},"Benefits of using WebApps:":{"*":["Prednosti korištenja WebApps:"]},"Focus":{"*":["Fokus"]},"Work without the distractions of other browser tabs":{"*":["Rad bez ometanja drugih kartica preglednika"]},"Desktop Integration":{"*":["Integracija na radnu površinu"]},"Quick access from your application menu":{"*":["Brzi pristup iz izbornika aplikacija"]},"Isolated Profiles":{"*":["Izolirani profili"]},"Each webapp can have its own cookies and settings":{"*":["Svaki webapp može imati svoje kolačiće i postavke"]},"Back":{"*":["Natrag"]},"Forward":{"*":["Naprijed"]},"Reload":{"*":["Ponovno učitaj"]},"Fullscreen":{"*":["Cijeli zaslon"]},"Enter URL…":{"*":["Unesite URL…"]},"Zoom In":{"*":["Uvećaj"]},"Zoom Out":{"*":["Umanji"]},"Reset Zoom":{"*":["Resetiraj zum"]},"Developer Tools":{"*":["Alati za razvoj"]},"Menu":{"*":["Izbornik"]},"Open Link in Browser":{"*":["Otvori vezu u pregledniku"]},"Download Complete":{"*":["Preuzimanje završeno"]},"Save File":{"*":["Spremi datoteku"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/hr.po b/biglinux-webapps/locale/hr.po index 129bb923..b4e56e2b 100644 --- a/biglinux-webapps/locale/hr.po +++ b/biglinux-webapps/locale/hr.po @@ -14,7 +14,6 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -24,31 +23,26 @@ msgstr "" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Predlošci" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Odaberite predložak" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Pretraži predloške..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Rezultati pretraživanja" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Nema pronađenih predložaka" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -60,13 +54,11 @@ msgstr "Nema pronađenih predložaka" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Uredi WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Izbriši WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 # File: biglinux-webapps/biglinux- @@ -75,25 +67,21 @@ msgstr "Izbriši WebApp" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Dobrodošli u WebApps Manager" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Ne prikazuj ovo ponovno" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Započnimo" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Odaberite preglednik" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -106,7 +94,6 @@ msgstr "Odaberite preglednik" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Otkaži" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -119,7 +106,6 @@ msgstr "Otkaži" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Odaberi" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -133,7 +119,6 @@ msgstr "Odaberi" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "U redu" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -145,19 +130,16 @@ msgstr "U redu" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Dodaj WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Otkrivanje imena i ikone s web stranice" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 # File: biglinux-webapps/biglinux- @@ -165,38 +147,32 @@ msgstr "Otkrivanje imena i ikone s web stranice" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Ime" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Kategorija" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Otvara se kao izvorni prozor bez sučelja preglednika." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 #. -- Browser row (hidden in app mode) -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Preglednik" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Omogućuje neovisne kolačiće i sesije" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Ime profila" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -206,52 +182,44 @@ msgstr "Ime profila" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Spremi" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Učitavanje..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "Upravitelj web aplikacija" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Pretraži WebAplikacije" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Izvezi WebAplikacije" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 63 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Uvezi WebAplikacije" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Pregledaj mapu aplikacija" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 67 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Pregledaj mapu profila" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 # File: biglinux-webapps/biglinux- @@ -260,31 +228,26 @@ msgstr "Pregledaj mapu profila" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Ukloni sve web aplikacije" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 70 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "O aplikaciji" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Dodajte novu web aplikaciju za početak" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "WebApp je uspješno kreiran" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "WebApp je uspješno ažuriran" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -294,101 +257,81 @@ msgstr "WebApp je uspješno ažuriran" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Također izbrišite mapu s konfiguracijom." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Izbriši" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "WebApp je uspješno izbrisan." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Ukloni sve" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 444 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Sve WebApp-ovi su uklonjeni." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 446 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Nije uspjelo ukloniti sve WebAplikacije" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebAplikacije su uspješno eksportirane." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Nema WebAplikacija" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 msgid "Change browser" msgstr "Promijeni preglednik" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 msgid "Edit" msgstr "Uredi" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "New WebApp" msgstr "Nova WebApp" - #. -- Icon row -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 msgid "Icon" msgstr "Ikona" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 msgid "App Mode" msgstr "Način rada aplikacije" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 msgid "Separate Profile" msgstr "Odvojen profil" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 msgid "Select Icon" msgstr "Odaberi ikonu" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 msgid "Images" msgstr "Slike" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 msgid "ZIP files" msgstr "ZIP datoteke" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 #, rust-format msgid "Imported {imported}, skipped {dups} duplicates" msgstr "Uvezeno {imported}, preskočeno {dups} duplikata" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 msgid "Import failed" msgstr "Uvoz nije uspio" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 msgid "Export failed" msgstr "Izvoz nije uspio" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 msgid "" "This will delete all webapps and their desktop entries. This cannot be " @@ -396,15 +339,12 @@ msgid "" msgstr "" "Ovo će izbrisati sve webaplikacije i njihove unose na radnoj površini. Ovo " "se ne može poništiti." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 msgid "Browser changed" msgstr "Preglednik je promijenjen" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 msgid "What are WebApps?" msgstr "Što su WebApps?" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 msgid "" "WebApps are web applications that run in a dedicated browser window, " @@ -412,110 +352,85 @@ msgid "" msgstr "" "WebApps su web aplikacije koje se pokreću u posebnom prozoru preglednika, " "pružajući iskustvo slično aplikaciji za vaše omiljene web stranice." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 msgid "Benefits of using WebApps:" msgstr "Prednosti korištenja WebApps:" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Focus" msgstr "Fokus" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Work without the distractions of other browser tabs" msgstr "Rad bez ometanja drugih kartica preglednika" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Desktop Integration" msgstr "Integracija na radnu površinu" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Quick access from your application menu" msgstr "Brzi pristup iz izbornika aplikacija" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Isolated Profiles" msgstr "Izolirani profili" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Each webapp can have its own cookies and settings" msgstr "Svaki webapp može imati svoje kolačiće i postavke" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 msgid "Back" msgstr "Natrag" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 msgid "Forward" msgstr "Naprijed" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 msgid "Reload" msgstr "Ponovno učitaj" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 msgid "Fullscreen" msgstr "Cijeli zaslon" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 msgid "Enter URL…" msgstr "Unesite URL…" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 msgid "Zoom In" msgstr "Uvećaj" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 msgid "Zoom Out" msgstr "Umanji" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 msgid "Reset Zoom" msgstr "Resetiraj zum" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 msgid "Developer Tools" msgstr "Alati za razvoj" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 msgid "Menu" msgstr "Izbornik" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 msgid "Open Link in Browser" msgstr "Otvori vezu u pregledniku" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 msgid "Download Complete" msgstr "Preuzimanje završeno" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 msgid "Save File" msgstr "Spremi datoteku" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 #~ msgid "Search templates" #~ msgstr "Pretraži predloške" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 #, python-brace-format #~ msgid "Browser: {0}" #~ msgstr "Preglednik: {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 #, python-brace-format #~ msgid "Edit {0}" #~ msgstr "Uredi {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 #, python-brace-format #~ msgid "Delete {0}" #~ msgstr "Izbriši {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 #~ msgid "" @@ -538,12 +453,10 @@ msgstr "Spremi datoteku" #~ "• Fokus: Rad bez ometanja drugih kartica preglednika\n" #~ "• Integracija s radnom površinom: Brzi pristup iz izbornika aplikacija\n" #~ "• Izolirani profili: Opcionalno, svaka webaplikacija može imati svoje kolačiće i postavke\n" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 #~ msgid "System Default" #~ msgstr "Zadani sustava" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -562,12 +475,10 @@ msgstr "Spremi datoteku" # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 #~ msgid "Default" #~ msgstr "Zadano" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 #~ msgid "Please select a browser." #~ msgstr "Molimo odaberite preglednik." - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -576,49 +487,40 @@ msgstr "Spremi datoteku" # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 #~ msgid "Error" #~ msgstr "Greška" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 #~ msgid "Choose from templates" #~ msgstr "Odaberite iz predložaka" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 #~ msgid "Detect" #~ msgstr "Otkrivanje" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 #~ msgid "App Icon" #~ msgstr "Ikona aplikacije" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 #~ msgid "Select icon for the WebApp" #~ msgstr "Odaberite ikonu za WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 #~ msgid "Available Icons" #~ msgstr "Dostupne ikone" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 #~ msgid "Application Mode" #~ msgstr "Način aplikacije" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 #~ msgid "Profile Settings" #~ msgstr "Postavke profila" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 #~ msgid "Configure a separate browser profile for this webapp" #~ msgstr "Konfigurirajte odvojeni profil preglednika za ovu web aplikaciju" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -627,63 +529,51 @@ msgstr "Spremi datoteku" # #~ msgid "Use separate profile" #~ msgstr "Koristite odvojeni profil" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 #~ msgid "Detecting website information, please wait" #~ msgstr "Otkrivanje informacija o web stranici, molimo pričekajte" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 #~ msgid "Please enter a URL first." #~ msgstr "Molimo unesite URL prvo." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 #~ msgid "Please enter a name for the WebApp." #~ msgstr "Molimo unesite naziv za WebApp." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 #~ msgid "Please enter a URL for the WebApp." #~ msgstr "Molimo unesite URL za WebApp." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 #~ msgid "Please select a browser for the WebApp." #~ msgstr "Molimo odaberite preglednik za WebApp." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 #~ msgid "Main Menu" #~ msgstr "Glavni izbornik" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 #~ msgid "Refresh" #~ msgstr "Osvježi" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 #~ msgid "Show Welcome Screen" #~ msgstr "Prikaži ekran dobrodošlice" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 #~ msgid "Add" #~ msgstr "Dodaj" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 #~ msgid "No WebApps Found" #~ msgstr "Nema pronađenih WebAplikacija" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 #, python-brace-format #~ msgid "Browser changed to {0}" #~ msgstr "Preglednik je promijenjen u {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 #, python-brace-format @@ -697,12 +587,10 @@ msgstr "Spremi datoteku" #~ "\n" #~ "URL: {1}\n" #~ "Preglednik: {2}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 #~ msgid "REMOVE ALL" #~ msgstr "UKLONI SVE" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 #, python-brace-format @@ -714,48 +602,39 @@ msgstr "Spremi datoteku" #~ "Jeste li sigurni da želite ukloniti sve svoje WebAplikacije? Ova radnja se ne može poništiti.\n" #~ "\n" #~ "Upišite \"{0}\" za potvrdu." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 #, python-brace-format #~ msgid "Icon {0} of {1}" #~ msgstr "Ikona {0} od {1}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #~ msgid "There are no WebApps to export." #~ msgstr "Nema WebAppsa za izvoz." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 #~ msgid "The selected file does not exist." #~ msgstr "Odabrana datoteka ne postoji." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 #~ msgid "The selected file is not a valid ZIP archive." #~ msgstr "Odabrana datoteka nije važeća ZIP arhiva." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 #~ msgid "Error importing WebApps" #~ msgstr "Greška pri uvozu WebAplikacija" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 404 #~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" #~ msgstr "Uvezeni {} WebAppovi uspješno ({} duplicati preskočeni)" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 #~ msgid "Imported {} WebApps successfully" #~ msgstr "Uvezeni {} WebAppovi uspješno" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 #~ msgid "No" #~ msgstr "Ne" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 #~ msgid "Yes" diff --git a/biglinux-webapps/locale/hu.json b/biglinux-webapps/locale/hu.json new file mode 100644 index 00000000..49c60de4 --- /dev/null +++ b/biglinux-webapps/locale/hu.json @@ -0,0 +1 @@ +{"hu":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Sablonok"]},"Choose a Template":{"*":["Válasszon egy sablont"]},"Search templates...":{"*":["Keresés sablonok..."]},"Search Results":{"*":["Keresési eredmények"]},"No templates found":{"*":["Nincsenek sablonok."]},"Edit WebApp":{"*":["Webalkalmazás szerkesztése"]},"Delete WebApp":{"*":["Webalkalmazás törlése"]},"Welcome to WebApps Manager":{"*":["Üdvözöljük a WebApps Managerben"]},"Don't show this again":{"*":["Ne mutasd ezt újra"]},"Let's Start":{"*":["Kezdjük el"]},"Select Browser":{"*":["Böngésző kiválasztása"]},"Cancel":{"*":["Mégse"]},"Select":{"*":["Kiválasztás"]},"OK":{"*":["Rendben"]},"Add WebApp":{"*":["Webalkalmazás hozzáadása"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Nevezze meg és ikont észlel a weboldalról"]},"Name":{"*":["Név"]},"Category":{"*":["Kategória"]},"Opens as a native window without browser interface":{"*":["Böngészői felület nélküli natív ablakban nyílik meg."]},"Browser":{"*":["Böngésző"]},"Allows independent cookies and sessions":{"*":["Független sütik és munkamenetek engedélyezése"]},"Profile Name":{"*":["Profil név"]},"Save":{"*":["Mentés"]},"Loading...":{"*":["Betöltés..."]},"WebApps Manager":{"*":["Webalkalmazások kezelője"]},"Search WebApps":{"*":["Webalkalmazások keresése"]},"Export WebApps":{"*":["Webalkalmazások exportálása"]},"Import WebApps":{"*":["Webalkalmazások importálása"]},"Browse Applications Folder":{"*":["Böngéssze az Alkalmazások mappát"]},"Browse Profiles Folder":{"*":["Profilok mappa böngészése"]},"Remove All WebApps":{"*":["Minden WebApp eltávolítása"]},"About":{"*":["Névjegy"]},"Add a new webapp to get started":{"*":["Adj hozzá egy új webalkalmazást a kezdéshez."]},"WebApp created successfully":{"*":["A WebApp sikeresen létrejött"]},"WebApp updated successfully":{"*":["A WebApp sikeresen frissítve lett."]},"Also delete configuration folder":{"*":["A konfigurációs mappa törlése is."]},"Delete":{"*":["Törlés"]},"WebApp deleted successfully":{"*":["A WebApp sikeresen törölve."]},"Remove All":{"*":["Összes eltávolítása"]},"All WebApps have been removed":{"*":["Minden WebApp eltávolításra került."]},"Failed to remove all WebApps":{"*":["Nem sikerült eltávolítani az összes WebAppot."]},"WebApps exported successfully":{"*":["A WebAppok sikeresen exportálva lettek."]},"No WebApps":{"*":["Nincsenek Webalkalmazások"]},"Change browser":{"*":["Böngésző váltása"]},"Edit":{"*":["Szerkesztés"]},"New WebApp":{"*":["Új WebApp"]},"Icon":{"*":["Ikon"]},"App Mode":{"*":["Alkalmazás mód"]},"Separate Profile":{"*":["Külön profil"]},"Select Icon":{"*":["Ikon kiválasztása"]},"Images":{"*":["Képek"]},"ZIP files":{"*":["ZIP fájlok"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Importálva {imported}, kihagyva {dups} duplikátum"]},"Import failed":{"*":["Importálás sikertelen"]},"Export failed":{"*":["Exportálás sikertelen"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Ez töröl minden webappot és azok asztali bejegyzéseit. Ez nem visszavonható."]},"Browser changed":{"*":["Böngésző megváltoztatva"]},"What are WebApps?":{"*":["Mik azok a WebAppok?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["A WebApps olyan webalkalmazások, amelyek egy dedikált böngészőablakban futnak, így app-szerű élményt nyújtanak kedvenc weboldalaid számára."]},"Benefits of using WebApps:":{"*":["A WebApps használatának előnyei:"]},"Focus":{"*":["Fókusz"]},"Work without the distractions of other browser tabs":{"*":["Dolgozz anélkül, hogy más böngészőfülek zavarnának"]},"Desktop Integration":{"*":["Asztali integráció"]},"Quick access from your application menu":{"*":["Gyors hozzáférés az alkalmazásmenüből"]},"Isolated Profiles":{"*":["Elkülönített profilok"]},"Each webapp can have its own cookies and settings":{"*":["Minden webappnak lehet saját sütije és beállítása"]},"Back":{"*":["Vissza"]},"Forward":{"*":["Előre"]},"Reload":{"*":["Újratöltés"]},"Fullscreen":{"*":["Teljes képernyő"]},"Enter URL…":{"*":["Írd be az URL-t…"]},"Zoom In":{"*":["Nagyítás"]},"Zoom Out":{"*":["Kicsinyítés"]},"Reset Zoom":{"*":["Nagyítás visszaállítása"]},"Developer Tools":{"*":["Fejlesztői eszközök"]},"Menu":{"*":["Menü"]},"Open Link in Browser":{"*":["Hivatkozás megnyitása böngészőben"]},"Download Complete":{"*":["Letöltés befejezve"]},"Save File":{"*":["Fájl mentése"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/hu.po b/biglinux-webapps/locale/hu.po index 4df8c325..0c594c57 100644 --- a/biglinux-webapps/locale/hu.po +++ b/biglinux-webapps/locale/hu.po @@ -14,7 +14,6 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -24,31 +23,26 @@ msgstr "" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Sablonok" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Válasszon egy sablont" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Keresés sablonok..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Keresési eredmények" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Nincsenek sablonok." - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -60,13 +54,11 @@ msgstr "Nincsenek sablonok." #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Webalkalmazás szerkesztése" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Webalkalmazás törlése" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 # File: biglinux-webapps/biglinux- @@ -75,25 +67,21 @@ msgstr "Webalkalmazás törlése" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Üdvözöljük a WebApps Managerben" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Ne mutasd ezt újra" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Kezdjük el" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Böngésző kiválasztása" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -106,7 +94,6 @@ msgstr "Böngésző kiválasztása" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Mégse" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -119,7 +106,6 @@ msgstr "Mégse" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Kiválasztás" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -133,7 +119,6 @@ msgstr "Kiválasztás" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "Rendben" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -145,19 +130,16 @@ msgstr "Rendben" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Webalkalmazás hozzáadása" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Nevezze meg és ikont észlel a weboldalról" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 # File: biglinux-webapps/biglinux- @@ -165,38 +147,32 @@ msgstr "Nevezze meg és ikont észlel a weboldalról" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Név" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Kategória" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Böngészői felület nélküli natív ablakban nyílik meg." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 #. -- Browser row (hidden in app mode) -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Böngésző" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Független sütik és munkamenetek engedélyezése" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Profil név" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -206,52 +182,44 @@ msgstr "Profil név" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Mentés" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Betöltés..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "Webalkalmazások kezelője" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Webalkalmazások keresése" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Webalkalmazások exportálása" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 63 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Webalkalmazások importálása" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Böngéssze az Alkalmazások mappát" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 67 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Profilok mappa böngészése" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 # File: biglinux-webapps/biglinux- @@ -260,31 +228,26 @@ msgstr "Profilok mappa böngészése" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Minden WebApp eltávolítása" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 70 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "Névjegy" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Adj hozzá egy új webalkalmazást a kezdéshez." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "A WebApp sikeresen létrejött" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "A WebApp sikeresen frissítve lett." - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -294,116 +257,93 @@ msgstr "A WebApp sikeresen frissítve lett." #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "A konfigurációs mappa törlése is." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Törlés" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "A WebApp sikeresen törölve." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Összes eltávolítása" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 444 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Minden WebApp eltávolításra került." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 446 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Nem sikerült eltávolítani az összes WebAppot." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "A WebAppok sikeresen exportálva lettek." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Nincsenek Webalkalmazások" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 msgid "Change browser" msgstr "Böngésző váltása" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 msgid "Edit" msgstr "Szerkesztés" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "New WebApp" msgstr "Új WebApp" - #. -- Icon row -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 msgid "Icon" msgstr "Ikon" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 msgid "App Mode" msgstr "Alkalmazás mód" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 msgid "Separate Profile" msgstr "Külön profil" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 msgid "Select Icon" msgstr "Ikon kiválasztása" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 msgid "Images" msgstr "Képek" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 msgid "ZIP files" msgstr "ZIP fájlok" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 #, rust-format msgid "Imported {imported}, skipped {dups} duplicates" msgstr "Importálva {imported}, kihagyva {dups} duplikátum" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 msgid "Import failed" msgstr "Importálás sikertelen" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 msgid "Export failed" msgstr "Exportálás sikertelen" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 msgid "" "This will delete all webapps and their desktop entries. This cannot be " "undone." msgstr "" "Ez töröl minden webappot és azok asztali bejegyzéseit. Ez nem visszavonható." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 msgid "Browser changed" msgstr "Böngésző megváltoztatva" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 msgid "What are WebApps?" msgstr "Mik azok a WebAppok?" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 msgid "" "WebApps are web applications that run in a dedicated browser window, " @@ -411,110 +351,85 @@ msgid "" msgstr "" "A WebApps olyan webalkalmazások, amelyek egy dedikált böngészőablakban " "futnak, így app-szerű élményt nyújtanak kedvenc weboldalaid számára." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 msgid "Benefits of using WebApps:" msgstr "A WebApps használatának előnyei:" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Focus" msgstr "Fókusz" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Work without the distractions of other browser tabs" msgstr "Dolgozz anélkül, hogy más böngészőfülek zavarnának" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Desktop Integration" msgstr "Asztali integráció" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Quick access from your application menu" msgstr "Gyors hozzáférés az alkalmazásmenüből" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Isolated Profiles" msgstr "Elkülönített profilok" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Each webapp can have its own cookies and settings" msgstr "Minden webappnak lehet saját sütije és beállítása" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 msgid "Back" msgstr "Vissza" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 msgid "Forward" msgstr "Előre" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 msgid "Reload" msgstr "Újratöltés" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 msgid "Fullscreen" msgstr "Teljes képernyő" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 msgid "Enter URL…" msgstr "Írd be az URL-t…" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 msgid "Zoom In" msgstr "Nagyítás" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 msgid "Zoom Out" msgstr "Kicsinyítés" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 msgid "Reset Zoom" msgstr "Nagyítás visszaállítása" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 msgid "Developer Tools" msgstr "Fejlesztői eszközök" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 msgid "Menu" msgstr "Menü" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 msgid "Open Link in Browser" msgstr "Hivatkozás megnyitása böngészőben" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 msgid "Download Complete" msgstr "Letöltés befejezve" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 msgid "Save File" msgstr "Fájl mentése" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 #~ msgid "Search templates" #~ msgstr "Keresési sablonok" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 #, python-brace-format #~ msgid "Browser: {0}" #~ msgstr "Böngésző: {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 #, python-brace-format #~ msgid "Edit {0}" #~ msgstr "Szerkesztés {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 #, python-brace-format #~ msgid "Delete {0}" #~ msgstr "Törölje {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 #~ msgid "" @@ -537,12 +452,10 @@ msgstr "Fájl mentése" #~ "• Fókusz: Dolgozz zavaró böngészőfülek nélkül\n" #~ "• Asztali integráció: Gyors hozzáférés az alkalmazásmenüből\n" #~ "• Izolált profilok: Opcionálisan, minden webappnak lehet saját sütije és beállításai\n" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 #~ msgid "System Default" #~ msgstr "Rendszer alapértelmezett" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -561,12 +474,10 @@ msgstr "Fájl mentése" # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 #~ msgid "Default" #~ msgstr "Alapértelmezett" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 #~ msgid "Please select a browser." #~ msgstr "Kérjük, válasszon egy böngészőt." - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -575,49 +486,40 @@ msgstr "Fájl mentése" # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 #~ msgid "Error" #~ msgstr "Hiba" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 #~ msgid "Choose from templates" #~ msgstr "Válasszon a sablonok közül" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 #~ msgid "Detect" #~ msgstr "Észlelés" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 #~ msgid "App Icon" #~ msgstr "Alkalmazás ikon" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 #~ msgid "Select icon for the WebApp" #~ msgstr "Válassza ki az ikont a WebApp-hoz" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 #~ msgid "Available Icons" #~ msgstr "Elérhető ikonok" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 #~ msgid "Application Mode" #~ msgstr "Alkalmazás mód" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 #~ msgid "Profile Settings" #~ msgstr "Profilbeállítások" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 #~ msgid "Configure a separate browser profile for this webapp" #~ msgstr "Állítson be egy külön böngészőprofilt ehhez a webalkalmazáshoz." - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -626,63 +528,51 @@ msgstr "Fájl mentése" # #~ msgid "Use separate profile" #~ msgstr "Használj külön profilt" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 #~ msgid "Detecting website information, please wait" #~ msgstr "Weboldal-információk észlelése, kérem várjon" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 #~ msgid "Please enter a URL first." #~ msgstr "Kérjük, először adjon meg egy URL-t." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 #~ msgid "Please enter a name for the WebApp." #~ msgstr "Kérjük, adjon meg egy nevet a WebApp számára." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 #~ msgid "Please enter a URL for the WebApp." #~ msgstr "Kérjük, adjon meg egy URL-t a WebApp számára." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 #~ msgid "Please select a browser for the WebApp." #~ msgstr "Kérjük, válasszon egy böngészőt a WebApp-hoz." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 #~ msgid "Main Menu" #~ msgstr "Főmenü" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 #~ msgid "Refresh" #~ msgstr "Frissítés" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 #~ msgid "Show Welcome Screen" #~ msgstr "Üdvözlő képernyő megjelenítése" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 #~ msgid "Add" #~ msgstr "Hozzáadás" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 #~ msgid "No WebApps Found" #~ msgstr "Nincs WebApp található" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 #, python-brace-format #~ msgid "Browser changed to {0}" #~ msgstr "A böngésző megváltozott {0}-ra." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 #, python-brace-format @@ -696,12 +586,10 @@ msgstr "Fájl mentése" #~ "\n" #~ "URL: {1}\n" #~ "Böngésző: {2}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 #~ msgid "REMOVE ALL" #~ msgstr "MINDEN ELTÁVOLÍTÁSA" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 #, python-brace-format @@ -713,48 +601,39 @@ msgstr "Fájl mentése" #~ "Biztos benne, hogy el akarja távolítani az összes WebApp-ját? Ez a művelet nem vonható vissza.\n" #~ "\n" #~ "Írja be a \"{0}\" megerősítéshez." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 #, python-brace-format #~ msgid "Icon {0} of {1}" #~ msgstr "Ikon {0} a {1}-ben" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #~ msgid "There are no WebApps to export." #~ msgstr "Nincsenek exportálható WebAppok." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 #~ msgid "The selected file does not exist." #~ msgstr "A kiválasztott fájl nem létezik." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 #~ msgid "The selected file is not a valid ZIP archive." #~ msgstr "A kiválasztott fájl nem érvényes ZIP archívum." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 #~ msgid "Error importing WebApps" #~ msgstr "Hiba a WebApps importálásakor" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 404 #~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" #~ msgstr "Sikeresen importált {} WebAppot ({} duplikált kihagyva)" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 #~ msgid "Imported {} WebApps successfully" #~ msgstr "Sikeresen importált {} WebAppokat" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 #~ msgid "No" #~ msgstr "Nem" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 #~ msgid "Yes" diff --git a/biglinux-webapps/locale/is.json b/biglinux-webapps/locale/is.json new file mode 100644 index 00000000..4df58702 --- /dev/null +++ b/biglinux-webapps/locale/is.json @@ -0,0 +1 @@ +{"is":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["sniðmát"]},"Choose a Template":{"*":["Veldu sniðmát"]},"Search templates...":{"*":["Leita að sniðmátum..."]},"Search Results":{"*":["Leitni niðurstöður"]},"No templates found":{"*":["Engin ekki fundin."]},"Edit WebApp":{"*":["Breyta Vefforrit"]},"Delete WebApp":{"*":["Eyða vefforriti"]},"Welcome to WebApps Manager":{"*":["Velkomin í WebApps Stjóra"]},"Don't show this again":{"*":["Ekki sýna þetta aftur"]},"Let's Start":{"*":["לְבַשֵּׁל"]},"Select Browser":{"*":["Veldu vafra"]},"Cancel":{"*":["Hætta við"]},"Select":{"*":["Veldu"]},"OK":{"*":["Í lagi"]},"Add WebApp":{"*":["Bæta við Vefforriti"]},"URL":{"*":["Vefslóð"]},"Detect name and icon from website":{"*":["Greina nafn og tákn frá vefsíðu"]},"Name":{"*":["Nafn"]},"Category":{"*":["Flokkur"]},"Opens as a native window without browser interface":{"*":["Opnast sem innfæddur gluggi án vafra viðmóts"]},"Browser":{"*":["Vafri"]},"Allows independent cookies and sessions":{"*":["Leyfir sjálfstæðar kökur og lotur"]},"Profile Name":{"*":["Nafn prófíls"]},"Save":{"*":["Vista"]},"Loading...":{"*":["Hlaða..."]},"WebApps Manager":{"*":["Vefforritastjóri"]},"Search WebApps":{"*":["Leitaðu að Vefforritum"]},"Export WebApps":{"*":["Flytja út vefforrit"]},"Import WebApps":{"*":["Flytja vefforrit"]},"Browse Applications Folder":{"*":["Skoða forritaskrá"]},"Browse Profiles Folder":{"*":["Skoða möppu prófíla"]},"Remove All WebApps":{"*":["Fjarlægja allar vefforrit."]},"About":{"*":["Um umfjöllun"]},"Add a new webapp to get started":{"*":["Bættu við nýrri vefumsókn til að byrja."]},"WebApp created successfully":{"*":["Vefforrit búið til með góðum árangri"]},"WebApp updated successfully":{"*":["Vefforrit uppfært með góðum árangri"]},"Also delete configuration folder":{"*":["Einnig eyða stillingaskránni."]},"Delete":{"*":["Eyða"]},"WebApp deleted successfully":{"*":["Vefumsókn eytt með góðum árangri"]},"Remove All":{"*":["Fjarlægja allt"]},"All WebApps have been removed":{"*":["Öll vefforrit hafa verið fjarlægð."]},"Failed to remove all WebApps":{"*":["Ekki tókst að fjarlægja allar vefforrit."]},"WebApps exported successfully":{"*":["Vefforritin fluttast út með góðum árangri"]},"No WebApps":{"*":["Engin ekki vefforrit."]},"Change browser":{"*":["Skiptu um vafra"]},"Edit":{"*":["Breyta"]},"New WebApp":{"*":["Nýtt WebApp"]},"Icon":{"*":["Tákn"]},"App Mode":{"*":["Forritsstilling"]},"Separate Profile":{"*":["Aðskilin prófíl"]},"Select Icon":{"*":["Veldu tákn"]},"Images":{"*":["Myndir"]},"ZIP files":{"*":["ZIP skrár"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Flutt inn {imported}, sleppt {dups} tvíriti"]},"Import failed":{"*":["Innflutningur mistókst"]},"Export failed":{"*":["Útflutningur mistókst"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Þetta mun eyða öllum weböppum og skjáborðsinnsláttum þeirra. Þetta er óafturkræft."]},"Browser changed":{"*":["Vafri breyttur"]},"What are WebApps?":{"*":["Hvað eru WebApps?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps eru vefforrit sem keyra í sérstökum vafraglugga og bjóða upp á upplifun sem líkist forriti fyrir uppáhaldsvefsíðurnar þínar."]},"Benefits of using WebApps:":{"*":["Kostir við að nota WebApps:"]},"Focus":{"*":["Einbeiting"]},"Work without the distractions of other browser tabs":{"*":["Vinna án truflana frá öðrum flipa í vafranum"]},"Desktop Integration":{"*":["Þráðtenging við skjáborð"]},"Quick access from your application menu":{"*":["Hraður aðgangur úr forritavalmyndinni þinni"]},"Isolated Profiles":{"*":["Aðskilin prófíl"]},"Each webapp can have its own cookies and settings":{"*":["Hvert webapp getur haft sín eigin smákökur og stillingar"]},"Back":{"*":["Til baka"]},"Forward":{"*":["Áfram"]},"Reload":{"*":["Endurhlaða"]},"Fullscreen":{"*":["Allur skjár"]},"Enter URL…":{"*":["Sláðu inn URL…"]},"Zoom In":{"*":["Stækka"]},"Zoom Out":{"*":["Minnka"]},"Reset Zoom":{"*":["Endurstilla aðdrátt"]},"Developer Tools":{"*":["Forritaraverkfæri"]},"Menu":{"*":["Valmynd"]},"Open Link in Browser":{"*":["Opna hlekk í vafra"]},"Download Complete":{"*":["Niðurhal lokið"]},"Save File":{"*":["Vista skrá"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/is.po b/biglinux-webapps/locale/is.po index 07586bf9..6cea8b5c 100644 --- a/biglinux-webapps/locale/is.po +++ b/biglinux-webapps/locale/is.po @@ -14,7 +14,6 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -24,31 +23,26 @@ msgstr "" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "sniðmát" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Veldu sniðmát" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Leita að sniðmátum..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Leitni niðurstöður" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Engin ekki fundin." - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -60,13 +54,11 @@ msgstr "Engin ekki fundin." #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Breyta Vefforrit" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Eyða vefforriti" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 # File: biglinux-webapps/biglinux- @@ -75,25 +67,21 @@ msgstr "Eyða vefforriti" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Velkomin í WebApps Stjóra" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Ekki sýna þetta aftur" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "לְבַשֵּׁל" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Veldu vafra" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -106,7 +94,6 @@ msgstr "Veldu vafra" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Hætta við" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -119,7 +106,6 @@ msgstr "Hætta við" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Veldu" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -133,7 +119,6 @@ msgstr "Veldu" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "Í lagi" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -145,19 +130,16 @@ msgstr "Í lagi" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Bæta við Vefforriti" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "Vefslóð" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Greina nafn og tákn frá vefsíðu" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 # File: biglinux-webapps/biglinux- @@ -165,38 +147,32 @@ msgstr "Greina nafn og tákn frá vefsíðu" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Nafn" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Flokkur" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Opnast sem innfæddur gluggi án vafra viðmóts" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 #. -- Browser row (hidden in app mode) -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Vafri" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Leyfir sjálfstæðar kökur og lotur" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Nafn prófíls" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -206,52 +182,44 @@ msgstr "Nafn prófíls" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Vista" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Hlaða..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "Vefforritastjóri" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Leitaðu að Vefforritum" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Flytja út vefforrit" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Flytja vefforrit" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Skoða forritaskrá" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Skoða möppu prófíla" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 # File: biglinux-webapps/biglinux- @@ -260,31 +228,26 @@ msgstr "Skoða möppu prófíla" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Fjarlægja allar vefforrit." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "Um umfjöllun" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Bættu við nýrri vefumsókn til að byrja." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "Vefforrit búið til með góðum árangri" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "Vefforrit uppfært með góðum árangri" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -294,101 +257,81 @@ msgstr "Vefforrit uppfært með góðum árangri" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Einnig eyða stillingaskránni." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Eyða" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "Vefumsókn eytt með góðum árangri" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Fjarlægja allt" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Öll vefforrit hafa verið fjarlægð." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Ekki tókst að fjarlægja allar vefforrit." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "Vefforritin fluttast út með góðum árangri" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Engin ekki vefforrit." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 msgid "Change browser" msgstr "Skiptu um vafra" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 msgid "Edit" msgstr "Breyta" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "New WebApp" msgstr "Nýtt WebApp" - #. -- Icon row -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 msgid "Icon" msgstr "Tákn" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 msgid "App Mode" msgstr "Forritsstilling" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 msgid "Separate Profile" msgstr "Aðskilin prófíl" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 msgid "Select Icon" msgstr "Veldu tákn" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 msgid "Images" msgstr "Myndir" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 msgid "ZIP files" msgstr "ZIP skrár" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 #, rust-format msgid "Imported {imported}, skipped {dups} duplicates" msgstr "Flutt inn {imported}, sleppt {dups} tvíriti" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 msgid "Import failed" msgstr "Innflutningur mistókst" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 msgid "Export failed" msgstr "Útflutningur mistókst" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 msgid "" "This will delete all webapps and their desktop entries. This cannot be " @@ -396,15 +339,12 @@ msgid "" msgstr "" "Þetta mun eyða öllum weböppum og skjáborðsinnsláttum þeirra. Þetta er " "óafturkræft." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 msgid "Browser changed" msgstr "Vafri breyttur" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 msgid "What are WebApps?" msgstr "Hvað eru WebApps?" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 msgid "" "WebApps are web applications that run in a dedicated browser window, " @@ -412,110 +352,85 @@ msgid "" msgstr "" "WebApps eru vefforrit sem keyra í sérstökum vafraglugga og bjóða upp á " "upplifun sem líkist forriti fyrir uppáhaldsvefsíðurnar þínar." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 msgid "Benefits of using WebApps:" msgstr "Kostir við að nota WebApps:" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Focus" msgstr "Einbeiting" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Work without the distractions of other browser tabs" msgstr "Vinna án truflana frá öðrum flipa í vafranum" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Desktop Integration" msgstr "Þráðtenging við skjáborð" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Quick access from your application menu" msgstr "Hraður aðgangur úr forritavalmyndinni þinni" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Isolated Profiles" msgstr "Aðskilin prófíl" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Each webapp can have its own cookies and settings" msgstr "Hvert webapp getur haft sín eigin smákökur og stillingar" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 msgid "Back" msgstr "Til baka" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 msgid "Forward" msgstr "Áfram" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 msgid "Reload" msgstr "Endurhlaða" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 msgid "Fullscreen" msgstr "Allur skjár" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 msgid "Enter URL…" msgstr "Sláðu inn URL…" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 msgid "Zoom In" msgstr "Stækka" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 msgid "Zoom Out" msgstr "Minnka" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 msgid "Reset Zoom" msgstr "Endurstilla aðdrátt" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 msgid "Developer Tools" msgstr "Forritaraverkfæri" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 msgid "Menu" msgstr "Valmynd" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 msgid "Open Link in Browser" msgstr "Opna hlekk í vafra" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 msgid "Download Complete" msgstr "Niðurhal lokið" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 msgid "Save File" msgstr "Vista skrá" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 #~ msgid "Search templates" #~ msgstr "Leitaðu að sniðmátum" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 #, python-brace-format #~ msgid "Browser: {0}" #~ msgstr "Vafri: {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 #, python-brace-format #~ msgid "Edit {0}" #~ msgstr "Breyta {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 #, python-brace-format #~ msgid "Delete {0}" #~ msgstr "Eyða {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 #~ msgid "" @@ -538,12 +453,10 @@ msgstr "Vista skrá" #~ "• Fókus: Vinna án truflana frá öðrum vafratöflum\n" #~ "• Vinnustöðva samþætting: Fljótleg aðgangur frá forritavalmyndinni þinni\n" #~ "• Einangruð prófíl: Valfrjálst, hvert vefforrit getur haft sín eigin kökur og stillingar\n" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 #~ msgid "System Default" #~ msgstr "ברירת מחדל של מערכת" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -562,12 +475,10 @@ msgstr "Vista skrá" # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 #~ msgid "Default" #~ msgstr "ברירת מחדל" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 #~ msgid "Please select a browser." #~ msgstr "Vinsamlegast veldu vafra." - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -576,49 +487,40 @@ msgstr "Vista skrá" # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 #~ msgid "Error" #~ msgstr "Villa" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 #~ msgid "Choose from templates" #~ msgstr "Veldu úr sniðmátum" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 #~ msgid "Detect" #~ msgstr "Greina" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 #~ msgid "App Icon" #~ msgstr "App tákn" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 #~ msgid "Select icon for the WebApp" #~ msgstr "Veldu tákn fyrir vefforritið" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 #~ msgid "Available Icons" #~ msgstr "tákn í boði" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 #~ msgid "Application Mode" #~ msgstr "Forritastilling" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 #~ msgid "Profile Settings" #~ msgstr "Prófíllstillingar" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 #~ msgid "Configure a separate browser profile for this webapp" #~ msgstr "Stilltuðu aðskilda vafra prófíl fyrir þessa vefumsókn." - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -627,63 +529,51 @@ msgstr "Vista skrá" # #~ msgid "Use separate profile" #~ msgstr "Notaðu aðskilda prófíl" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 #~ msgid "Detecting website information, please wait" #~ msgstr "Að greina vefsíðugögn, vinsamlegast bíða." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 #~ msgid "Please enter a URL first." #~ msgstr "Vinsamlegast sláðu inn URL fyrst." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 #~ msgid "Please enter a name for the WebApp." #~ msgstr "Vinsamlegast sláðu inn nafn fyrir vefforritið." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 #~ msgid "Please enter a URL for the WebApp." #~ msgstr "Vinsamlegast sláðu inn vefslóð fyrir vefforritið." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 #~ msgid "Please select a browser for the WebApp." #~ msgstr "Vinsamlegast veldu vafra fyrir WebApp." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 #~ msgid "Main Menu" #~ msgstr "Aðalvalmynd" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 #~ msgid "Refresh" #~ msgstr "Ferskaðuðu" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 #~ msgid "Show Welcome Screen" #~ msgstr "sýna velkomin skjár" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 #~ msgid "Add" #~ msgstr "Bæta við" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 #~ msgid "No WebApps Found" #~ msgstr "Engin vefumsóknir fundust ekki" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 #, python-brace-format #~ msgid "Browser changed to {0}" #~ msgstr "Vafri breytist í {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 #, python-brace-format @@ -697,12 +587,10 @@ msgstr "Vista skrá" #~ "\n" #~ "Vefslóð: {1} \n" #~ "Vafri: {2}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 #~ msgid "REMOVE ALL" #~ msgstr "FJARLÆGÐU ALLT" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 #, python-brace-format @@ -714,48 +602,39 @@ msgstr "Vista skrá" #~ "Ertu viss um að þú viljir fjarlægja allar vefsíður þínar? Þessi aðgerð er ekki hægt að afturkalla.\n" #~ "\n" #~ "Sláðu inn \"{0}\" til að staðfesta." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 #, python-brace-format #~ msgid "Icon {0} of {1}" #~ msgstr "Tákn {0} af {1}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #~ msgid "There are no WebApps to export." #~ msgstr "Engin ekki vefforrit til að flytja út." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 #~ msgid "The selected file does not exist." #~ msgstr "Valda valin skráin er ekki til." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 #~ msgid "The selected file is not a valid ZIP archive." #~ msgstr "Valda skráin er ekki gilt ZIP skjal." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 #~ msgid "Error importing WebApps" #~ msgstr "Villa við að flytja inn WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 #~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" #~ msgstr "Innflutt {} WebApps með góðum árangri ({} afrit sleppt)" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 #~ msgid "Imported {} WebApps successfully" #~ msgstr "Innflutt {} WebApps með góðum árangri" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 #~ msgid "No" #~ msgstr "Nei" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 #~ msgid "Yes" diff --git a/biglinux-webapps/locale/it.json b/biglinux-webapps/locale/it.json new file mode 100644 index 00000000..56e01113 --- /dev/null +++ b/biglinux-webapps/locale/it.json @@ -0,0 +1 @@ +{"it":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Modelli"]},"Choose a Template":{"*":["Scegli un Modello"]},"Search templates...":{"*":["Cerca modelli..."]},"Search Results":{"*":["Risultati di ricerca"]},"No templates found":{"*":["Nessun modello trovato"]},"Edit WebApp":{"*":["Modifica WebApp"]},"Delete WebApp":{"*":["Elimina WebApp"]},"Welcome to WebApps Manager":{"*":["Benvenuto in WebApps Manager"]},"Don't show this again":{"*":["Non mostrare più questo."]},"Let's Start":{"*":["Iniziamo"]},"Select Browser":{"*":["Seleziona Browser"]},"Cancel":{"*":["Annulla"]},"Select":{"*":["Seleziona"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Aggiungi WebApp"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Rileva nome e icona dal sito web"]},"Name":{"*":["Nome"]},"Category":{"*":["Categoria"]},"Opens as a native window without browser interface":{"*":["Si apre come una finestra nativa senza interfaccia del browser."]},"Browser":{"*":["Browser"]},"Allows independent cookies and sessions":{"*":["Consente cookie e sessioni indipendenti"]},"Profile Name":{"*":["Nome Profilo"]},"Save":{"*":["Salva"]},"Loading...":{"*":["Caricamento..."]},"WebApps Manager":{"*":["Gestore WebApp"]},"Search WebApps":{"*":["Cerca WebApp"]},"Export WebApps":{"*":["Esporta WebApp"]},"Import WebApps":{"*":["Importa WebApp"]},"Browse Applications Folder":{"*":["Sfoglia la cartella Applicazioni"]},"Browse Profiles Folder":{"*":["Sfoglia la cartella Profili"]},"Remove All WebApps":{"*":["Rimuovi tutte le WebApp"]},"About":{"*":["Informazioni"]},"Add a new webapp to get started":{"*":["Aggiungi una nuova webapp per iniziare"]},"WebApp created successfully":{"*":["WebApp creato con successo"]},"WebApp updated successfully":{"*":["WebApp aggiornato con successo"]},"Also delete configuration folder":{"*":["Elimina anche la cartella di configurazione."]},"Delete":{"*":["Elimina"]},"WebApp deleted successfully":{"*":["WebApp eliminato con successo"]},"Remove All":{"*":["Rimuovi tutto"]},"All WebApps have been removed":{"*":["Tutte le WebApp sono state rimosse."]},"Failed to remove all WebApps":{"*":["Impossibile rimuovere tutte le WebApp"]},"WebApps exported successfully":{"*":["WebApp esportati con successo"]},"No WebApps":{"*":["Nessuna WebApp"]},"Change browser":{"*":["Cambia browser"]},"Edit":{"*":["Modifica"]},"New WebApp":{"*":["Nuova WebApp"]},"Icon":{"*":["Icona"]},"App Mode":{"*":["Modalità App"]},"Separate Profile":{"*":["Profilo separato"]},"Select Icon":{"*":["Seleziona icona"]},"Images":{"*":["Immagini"]},"ZIP files":{"*":["File ZIP"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Importati {imported}, ignorati {dups} duplicati"]},"Import failed":{"*":["Importazione fallita"]},"Export failed":{"*":["Esportazione fallita"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Questo eliminerà tutte le webapp e le loro voci nel desktop. Questa operazione non può essere annullata."]},"Browser changed":{"*":["Browser cambiato"]},"What are WebApps?":{"*":["Cosa sono le WebApps?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["Le WebApps sono applicazioni web che funzionano in una finestra del browser dedicata, offrendo un'esperienza più simile a un'app per i tuoi siti preferiti."]},"Benefits of using WebApps:":{"*":["Vantaggi dell'uso delle WebApps:"]},"Focus":{"*":["Concentrazione"]},"Work without the distractions of other browser tabs":{"*":["Lavora senza le distrazioni di altre schede del browser"]},"Desktop Integration":{"*":["Integrazione con il desktop"]},"Quick access from your application menu":{"*":["Accesso rapido dal menu delle applicazioni"]},"Isolated Profiles":{"*":["Profili isolati"]},"Each webapp can have its own cookies and settings":{"*":["Ogni webapp può avere i propri cookie e impostazioni"]},"Back":{"*":["Indietro"]},"Forward":{"*":["Avanti"]},"Reload":{"*":["Ricarica"]},"Fullscreen":{"*":["Schermo intero"]},"Enter URL…":{"*":["Inserisci URL…"]},"Zoom In":{"*":["Zoom avanti"]},"Zoom Out":{"*":["Zoom indietro"]},"Reset Zoom":{"*":["Reimposta zoom"]},"Developer Tools":{"*":["Strumenti per sviluppatori"]},"Menu":{"*":["Menu"]},"Open Link in Browser":{"*":["Apri link nel browser"]},"Download Complete":{"*":["Download completato"]},"Save File":{"*":["Salva file"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/it.po b/biglinux-webapps/locale/it.po index 814266e9..6ca8d061 100644 --- a/biglinux-webapps/locale/it.po +++ b/biglinux-webapps/locale/it.po @@ -14,7 +14,6 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -24,31 +23,26 @@ msgstr "" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Modelli" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Scegli un Modello" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Cerca modelli..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Risultati di ricerca" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Nessun modello trovato" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -60,13 +54,11 @@ msgstr "Nessun modello trovato" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Modifica WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Elimina WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 # File: biglinux-webapps/biglinux- @@ -75,25 +67,21 @@ msgstr "Elimina WebApp" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Benvenuto in WebApps Manager" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Non mostrare più questo." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Iniziamo" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Seleziona Browser" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -106,7 +94,6 @@ msgstr "Seleziona Browser" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Annulla" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -119,7 +106,6 @@ msgstr "Annulla" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Seleziona" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -133,7 +119,6 @@ msgstr "Seleziona" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "OK" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -145,19 +130,16 @@ msgstr "OK" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Aggiungi WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Rileva nome e icona dal sito web" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 # File: biglinux-webapps/biglinux- @@ -165,38 +147,32 @@ msgstr "Rileva nome e icona dal sito web" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Nome" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Categoria" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Si apre come una finestra nativa senza interfaccia del browser." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 #. -- Browser row (hidden in app mode) -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Browser" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Consente cookie e sessioni indipendenti" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Nome Profilo" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -206,52 +182,44 @@ msgstr "Nome Profilo" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Salva" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Caricamento..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "Gestore WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Cerca WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Esporta WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Importa WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Sfoglia la cartella Applicazioni" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Sfoglia la cartella Profili" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 # File: biglinux-webapps/biglinux- @@ -260,31 +228,26 @@ msgstr "Sfoglia la cartella Profili" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Rimuovi tutte le WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "Informazioni" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Aggiungi una nuova webapp per iniziare" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "WebApp creato con successo" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "WebApp aggiornato con successo" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -294,101 +257,81 @@ msgstr "WebApp aggiornato con successo" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Elimina anche la cartella di configurazione." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Elimina" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "WebApp eliminato con successo" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Rimuovi tutto" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Tutte le WebApp sono state rimosse." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Impossibile rimuovere tutte le WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebApp esportati con successo" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Nessuna WebApp" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 msgid "Change browser" msgstr "Cambia browser" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 msgid "Edit" msgstr "Modifica" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "New WebApp" msgstr "Nuova WebApp" - #. -- Icon row -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 msgid "Icon" msgstr "Icona" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 msgid "App Mode" msgstr "Modalità App" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 msgid "Separate Profile" msgstr "Profilo separato" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 msgid "Select Icon" msgstr "Seleziona icona" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 msgid "Images" msgstr "Immagini" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 msgid "ZIP files" msgstr "File ZIP" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 #, rust-format msgid "Imported {imported}, skipped {dups} duplicates" msgstr "Importati {imported}, ignorati {dups} duplicati" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 msgid "Import failed" msgstr "Importazione fallita" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 msgid "Export failed" msgstr "Esportazione fallita" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 msgid "" "This will delete all webapps and their desktop entries. This cannot be " @@ -396,15 +339,12 @@ msgid "" msgstr "" "Questo eliminerà tutte le webapp e le loro voci nel desktop. Questa " "operazione non può essere annullata." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 msgid "Browser changed" msgstr "Browser cambiato" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 msgid "What are WebApps?" msgstr "Cosa sono le WebApps?" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 msgid "" "WebApps are web applications that run in a dedicated browser window, " @@ -413,110 +353,85 @@ msgstr "" "Le WebApps sono applicazioni web che funzionano in una finestra del browser " "dedicata, offrendo un'esperienza più simile a un'app per i tuoi siti " "preferiti." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 msgid "Benefits of using WebApps:" msgstr "Vantaggi dell'uso delle WebApps:" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Focus" msgstr "Concentrazione" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Work without the distractions of other browser tabs" msgstr "Lavora senza le distrazioni di altre schede del browser" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Desktop Integration" msgstr "Integrazione con il desktop" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Quick access from your application menu" msgstr "Accesso rapido dal menu delle applicazioni" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Isolated Profiles" msgstr "Profili isolati" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Each webapp can have its own cookies and settings" msgstr "Ogni webapp può avere i propri cookie e impostazioni" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 msgid "Back" msgstr "Indietro" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 msgid "Forward" msgstr "Avanti" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 msgid "Reload" msgstr "Ricarica" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 msgid "Fullscreen" msgstr "Schermo intero" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 msgid "Enter URL…" msgstr "Inserisci URL…" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 msgid "Zoom In" msgstr "Zoom avanti" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 msgid "Zoom Out" msgstr "Zoom indietro" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 msgid "Reset Zoom" msgstr "Reimposta zoom" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 msgid "Developer Tools" msgstr "Strumenti per sviluppatori" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 msgid "Menu" msgstr "Menu" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 msgid "Open Link in Browser" msgstr "Apri link nel browser" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 msgid "Download Complete" msgstr "Download completato" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 msgid "Save File" msgstr "Salva file" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 #~ msgid "Search templates" #~ msgstr "Cerca modelli" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 #, python-brace-format #~ msgid "Browser: {0}" #~ msgstr "Browser: {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 #, python-brace-format #~ msgid "Edit {0}" #~ msgstr "Modifica {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 #, python-brace-format #~ msgid "Delete {0}" #~ msgstr "Elimina {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 #~ msgid "" @@ -539,12 +454,10 @@ msgstr "Salva file" #~ "• Focus: Lavora senza le distrazioni di altre schede del browser\n" #~ "• Integrazione Desktop: Accesso rapido dal menu delle applicazioni\n" #~ "• Profili Isolati: Facoltativamente, ogni webapp può avere i propri cookie e impostazioni\n" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 #~ msgid "System Default" #~ msgstr "Impostazione predefinita del sistema" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -563,12 +476,10 @@ msgstr "Salva file" # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 #~ msgid "Default" #~ msgstr "Predefinito" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 #~ msgid "Please select a browser." #~ msgstr "Seleziona un browser." - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -577,49 +488,40 @@ msgstr "Salva file" # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 #~ msgid "Error" #~ msgstr "Errore" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 #~ msgid "Choose from templates" #~ msgstr "Scegli tra i modelli" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 #~ msgid "Detect" #~ msgstr "Rileva" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 #~ msgid "App Icon" #~ msgstr "Icona dell'app" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 #~ msgid "Select icon for the WebApp" #~ msgstr "Seleziona icona per il WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 #~ msgid "Available Icons" #~ msgstr "Icone disponibili" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 #~ msgid "Application Mode" #~ msgstr "Modalità applicazione" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 #~ msgid "Profile Settings" #~ msgstr "Impostazioni del profilo" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 #~ msgid "Configure a separate browser profile for this webapp" #~ msgstr "Configura un profilo browser separato per questa webapp" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -628,63 +530,51 @@ msgstr "Salva file" # #~ msgid "Use separate profile" #~ msgstr "Usa profilo separato" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 #~ msgid "Detecting website information, please wait" #~ msgstr "Rilevamento delle informazioni del sito web, attendere prego" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 #~ msgid "Please enter a URL first." #~ msgstr "Si prega di inserire prima un URL." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 #~ msgid "Please enter a name for the WebApp." #~ msgstr "Si prega di inserire un nome per il WebApp." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 #~ msgid "Please enter a URL for the WebApp." #~ msgstr "Si prega di inserire un URL per il WebApp." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 #~ msgid "Please select a browser for the WebApp." #~ msgstr "Seleziona un browser per il WebApp." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 #~ msgid "Main Menu" #~ msgstr "Menu Principale" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 #~ msgid "Refresh" #~ msgstr "Aggiorna" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 #~ msgid "Show Welcome Screen" #~ msgstr "Mostra Schermata di Benvenuto" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 #~ msgid "Add" #~ msgstr "Aggiungi" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 #~ msgid "No WebApps Found" #~ msgstr "Nessuna WebApp trovata" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 #, python-brace-format #~ msgid "Browser changed to {0}" #~ msgstr "Il browser è stato cambiato in {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 #, python-brace-format @@ -698,12 +588,10 @@ msgstr "Salva file" #~ "\n" #~ "URL: {1}\n" #~ "Browser: {2}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 #~ msgid "REMOVE ALL" #~ msgstr "RIMUOVI TUTTO" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 #, python-brace-format @@ -715,48 +603,39 @@ msgstr "Salva file" #~ "Sei sicuro di voler rimuovere tutte le tue WebApp? Questa azione non può essere annullata.\n" #~ "\n" #~ "Digita \"{0}\" per confermare." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 #, python-brace-format #~ msgid "Icon {0} of {1}" #~ msgstr "Icona {0} di {1}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #~ msgid "There are no WebApps to export." #~ msgstr "Non ci sono WebApp da esportare." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 #~ msgid "The selected file does not exist." #~ msgstr "Il file selezionato non esiste." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 #~ msgid "The selected file is not a valid ZIP archive." #~ msgstr "Il file selezionato non è un archivio ZIP valido." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 #~ msgid "Error importing WebApps" #~ msgstr "Errore durante l'importazione di WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 #~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" #~ msgstr "Importati {} WebApps con successo ({} duplicati saltati)" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 #~ msgid "Imported {} WebApps successfully" #~ msgstr "Importato {} WebApps con successo" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 #~ msgid "No" #~ msgstr "No" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 #~ msgid "Yes" diff --git a/biglinux-webapps/locale/ja.json b/biglinux-webapps/locale/ja.json new file mode 100644 index 00000000..a514593a --- /dev/null +++ b/biglinux-webapps/locale/ja.json @@ -0,0 +1 @@ +{"ja":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["テンプレート"]},"Choose a Template":{"*":["テンプレートを選択してください。"]},"Search templates...":{"*":["テンプレートを検索中..."]},"Search Results":{"*":["検索結果"]},"No templates found":{"*":["テンプレートが見つかりませんでした。"]},"Edit WebApp":{"*":["ウェブアプリを編集する"]},"Delete WebApp":{"*":["WebAppを削除する"]},"Welcome to WebApps Manager":{"*":["WebAppsマネージャーへようこそ"]},"Don't show this again":{"*":["これを再表示しない"]},"Let's Start":{"*":["始めましょう"]},"Select Browser":{"*":["ブラウザを選択してください"]},"Cancel":{"*":["キャンセル"]},"Select":{"*":["選択"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["WebAppを追加"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["ウェブサイトから名前とアイコンを検出する"]},"Name":{"*":["名前"]},"Category":{"*":["カテゴリ"]},"Opens as a native window without browser interface":{"*":["ブラウザインターフェースなしでネイティブウィンドウとして開きます"]},"Browser":{"*":["ブラウザ"]},"Allows independent cookies and sessions":{"*":["独立したクッキーとセッションを許可します"]},"Profile Name":{"*":["プロフィール名"]},"Save":{"*":["保存"]},"Loading...":{"*":["読み込み中..."]},"WebApps Manager":{"*":["Webアプリ管理者"]},"Search WebApps":{"*":["ウェブアプリを検索"]},"Export WebApps":{"*":["Webアプリをエクスポート"]},"Import WebApps":{"*":["ウェブアプリをインポート"]},"Browse Applications Folder":{"*":["アプリケーションフォルダーをブラウズ"]},"Browse Profiles Folder":{"*":["プロファイルフォルダーを参照"]},"Remove All WebApps":{"*":["すべてのWebアプリを削除"]},"About":{"*":["情報について"]},"Add a new webapp to get started":{"*":["新しいウェブアプリを追加して始めましょう。"]},"WebApp created successfully":{"*":["WebAppが正常に作成されました"]},"WebApp updated successfully":{"*":["WebAppが正常に更新されました"]},"Also delete configuration folder":{"*":["構成フォルダーも削除してください。"]},"Delete":{"*":["削除"]},"WebApp deleted successfully":{"*":["WebAppが正常に削除されました"]},"Remove All":{"*":["すべて削除"]},"All WebApps have been removed":{"*":["すべてのWebアプリが削除されました。"]},"Failed to remove all WebApps":{"*":["すべてのWebアプリを削除できませんでした。"]},"WebApps exported successfully":{"*":["WebAppsが正常にエクスポートされました"]},"No WebApps":{"*":["ウェブアプリはありません"]},"Change browser":{"*":["ブラウザを変更"]},"Edit":{"*":["編集"]},"New WebApp":{"*":["新しい WebApp"]},"Icon":{"*":["アイコン"]},"App Mode":{"*":["アプリモード"]},"Separate Profile":{"*":["プロファイルを分ける"]},"Select Icon":{"*":["アイコンを選択"]},"Images":{"*":["画像"]},"ZIP files":{"*":["ZIPファイル"]},"Imported {imported}, skipped {dups} duplicates":{"*":["インポート済み {imported}、重複 {dups} はスキップされました"]},"Import failed":{"*":["インポートに失敗しました"]},"Export failed":{"*":["エクスポートに失敗しました"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["これによりすべてのWebAppとそのデスクトップエントリが削除されます。元に戻すことはできません。"]},"Browser changed":{"*":["ブラウザが変更されました"]},"What are WebApps?":{"*":["WebAppsとは何ですか?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebAppsは専用のブラウザウィンドウで動作するウェブアプリケーションで、お気に入りのウェブサイトをよりアプリのように利用できます。"]},"Benefits of using WebApps:":{"*":["WebAppsを使うメリット:"]},"Focus":{"*":["集中"]},"Work without the distractions of other browser tabs":{"*":["他のブラウザタブの邪魔を受けずに作業できます"]},"Desktop Integration":{"*":["デスクトップ統合"]},"Quick access from your application menu":{"*":["アプリケーションメニューからすばやくアクセス"]},"Isolated Profiles":{"*":["分離されたプロファイル"]},"Each webapp can have its own cookies and settings":{"*":["各WebAppは独自のクッキーと設定を持てます"]},"Back":{"*":["戻る"]},"Forward":{"*":["進む"]},"Reload":{"*":["再読み込み"]},"Fullscreen":{"*":["全画面"]},"Enter URL…":{"*":["URLを入力…"]},"Zoom In":{"*":["拡大"]},"Zoom Out":{"*":["縮小"]},"Reset Zoom":{"*":["ズームをリセット"]},"Developer Tools":{"*":["開発者ツール"]},"Menu":{"*":["メニュー"]},"Open Link in Browser":{"*":["ブラウザでリンクを開く"]},"Download Complete":{"*":["ダウンロード完了"]},"Save File":{"*":["ファイルを保存"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/ja.po b/biglinux-webapps/locale/ja.po index 093bb931..64576ffc 100644 --- a/biglinux-webapps/locale/ja.po +++ b/biglinux-webapps/locale/ja.po @@ -14,7 +14,6 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -24,31 +23,26 @@ msgstr "" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "テンプレート" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "テンプレートを選択してください。" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "テンプレートを検索中..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "検索結果" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "テンプレートが見つかりませんでした。" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -60,13 +54,11 @@ msgstr "テンプレートが見つかりませんでした。" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "ウェブアプリを編集する" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "WebAppを削除する" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 # File: biglinux-webapps/biglinux- @@ -75,25 +67,21 @@ msgstr "WebAppを削除する" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "WebAppsマネージャーへようこそ" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "これを再表示しない" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "始めましょう" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "ブラウザを選択してください" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -106,7 +94,6 @@ msgstr "ブラウザを選択してください" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "キャンセル" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -119,7 +106,6 @@ msgstr "キャンセル" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "選択" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -133,7 +119,6 @@ msgstr "選択" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "OK" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -145,19 +130,16 @@ msgstr "OK" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "WebAppを追加" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "ウェブサイトから名前とアイコンを検出する" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 # File: biglinux-webapps/biglinux- @@ -165,38 +147,32 @@ msgstr "ウェブサイトから名前とアイコンを検出する" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "名前" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "カテゴリ" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "ブラウザインターフェースなしでネイティブウィンドウとして開きます" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 #. -- Browser row (hidden in app mode) -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "ブラウザ" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "独立したクッキーとセッションを許可します" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "プロフィール名" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -206,52 +182,44 @@ msgstr "プロフィール名" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "保存" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "読み込み中..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "Webアプリ管理者" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "ウェブアプリを検索" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Webアプリをエクスポート" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "ウェブアプリをインポート" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "アプリケーションフォルダーをブラウズ" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "プロファイルフォルダーを参照" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 # File: biglinux-webapps/biglinux- @@ -260,31 +228,26 @@ msgstr "プロファイルフォルダーを参照" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "すべてのWebアプリを削除" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "情報について" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "新しいウェブアプリを追加して始めましょう。" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "WebAppが正常に作成されました" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "WebAppが正常に更新されました" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -294,224 +257,176 @@ msgstr "WebAppが正常に更新されました" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "構成フォルダーも削除してください。" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "削除" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "WebAppが正常に削除されました" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "すべて削除" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "すべてのWebアプリが削除されました。" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "すべてのWebアプリを削除できませんでした。" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebAppsが正常にエクスポートされました" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "ウェブアプリはありません" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 msgid "Change browser" msgstr "ブラウザを変更" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 msgid "Edit" msgstr "編集" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "New WebApp" msgstr "新しい WebApp" - #. -- Icon row -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 msgid "Icon" msgstr "アイコン" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 msgid "App Mode" msgstr "アプリモード" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 msgid "Separate Profile" msgstr "プロファイルを分ける" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 msgid "Select Icon" msgstr "アイコンを選択" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 msgid "Images" msgstr "画像" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 msgid "ZIP files" msgstr "ZIPファイル" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 #, rust-format msgid "Imported {imported}, skipped {dups} duplicates" msgstr "インポート済み {imported}、重複 {dups} はスキップされました" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 msgid "Import failed" msgstr "インポートに失敗しました" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 msgid "Export failed" msgstr "エクスポートに失敗しました" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 msgid "" "This will delete all webapps and their desktop entries. This cannot be " "undone." msgstr "これによりすべてのWebAppとそのデスクトップエントリが削除されます。元に戻すことはできません。" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 msgid "Browser changed" msgstr "ブラウザが変更されました" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 msgid "What are WebApps?" msgstr "WebAppsとは何ですか?" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 msgid "" "WebApps are web applications that run in a dedicated browser window, " "providing a more app-like experience for your favorite websites." msgstr "WebAppsは専用のブラウザウィンドウで動作するウェブアプリケーションで、お気に入りのウェブサイトをよりアプリのように利用できます。" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 msgid "Benefits of using WebApps:" msgstr "WebAppsを使うメリット:" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Focus" msgstr "集中" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Work without the distractions of other browser tabs" msgstr "他のブラウザタブの邪魔を受けずに作業できます" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Desktop Integration" msgstr "デスクトップ統合" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Quick access from your application menu" msgstr "アプリケーションメニューからすばやくアクセス" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Isolated Profiles" msgstr "分離されたプロファイル" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Each webapp can have its own cookies and settings" msgstr "各WebAppは独自のクッキーと設定を持てます" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 msgid "Back" msgstr "戻る" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 msgid "Forward" msgstr "進む" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 msgid "Reload" msgstr "再読み込み" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 msgid "Fullscreen" msgstr "全画面" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 msgid "Enter URL…" msgstr "URLを入力…" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 msgid "Zoom In" msgstr "拡大" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 msgid "Zoom Out" msgstr "縮小" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 msgid "Reset Zoom" msgstr "ズームをリセット" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 msgid "Developer Tools" msgstr "開発者ツール" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 msgid "Menu" msgstr "メニュー" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 msgid "Open Link in Browser" msgstr "ブラウザでリンクを開く" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 msgid "Download Complete" msgstr "ダウンロード完了" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 msgid "Save File" msgstr "ファイルを保存" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 #~ msgid "Search templates" #~ msgstr "テンプレートを検索" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 #, python-brace-format #~ msgid "Browser: {0}" #~ msgstr "ブラウザ: {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 #, python-brace-format #~ msgid "Edit {0}" #~ msgstr "{0}を編集" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 #, python-brace-format #~ msgid "Delete {0}" #~ msgstr "{0}を削除します" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 #~ msgid "" @@ -534,12 +449,10 @@ msgstr "ファイルを保存" #~ "• 集中: 他のブラウザタブの気を散らすことなく作業できます\n" #~ "• デスクトップ統合: アプリケーションメニューからの迅速なアクセス\n" #~ "• 隔離されたプロファイル: オプションで、各Webアプリは独自のクッキーと設定を持つことができます\n" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 #~ msgid "System Default" #~ msgstr "システムデフォルト" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -558,12 +471,10 @@ msgstr "ファイルを保存" # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 #~ msgid "Default" #~ msgstr "デフォルト" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 #~ msgid "Please select a browser." #~ msgstr "ブラウザを選択してください。" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -572,49 +483,40 @@ msgstr "ファイルを保存" # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 #~ msgid "Error" #~ msgstr "エラー" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 #~ msgid "Choose from templates" #~ msgstr "テンプレートから選択してください" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 #~ msgid "Detect" #~ msgstr "検出" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 #~ msgid "App Icon" #~ msgstr "アプリアイコン" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 #~ msgid "Select icon for the WebApp" #~ msgstr "WebAppのアイコンを選択してください。" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 #~ msgid "Available Icons" #~ msgstr "利用可能なアイコン" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 #~ msgid "Application Mode" #~ msgstr "アプリケーションモード" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 #~ msgid "Profile Settings" #~ msgstr "プロフィール設定" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 #~ msgid "Configure a separate browser profile for this webapp" #~ msgstr "このウェブアプリのために別のブラウザプロファイルを設定します。" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -623,63 +525,51 @@ msgstr "ファイルを保存" # #~ msgid "Use separate profile" #~ msgstr "別のプロファイルを使用する" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 #~ msgid "Detecting website information, please wait" #~ msgstr "ウェブサイト情報を検出しています。お待ちください。" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 #~ msgid "Please enter a URL first." #~ msgstr "最初にURLを入力してください。" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 #~ msgid "Please enter a name for the WebApp." #~ msgstr "WebAppの名前を入力してください。" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 #~ msgid "Please enter a URL for the WebApp." #~ msgstr "WebAppのURLを入力してください。" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 #~ msgid "Please select a browser for the WebApp." #~ msgstr "WebAppのためのブラウザを選択してください。" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 #~ msgid "Main Menu" #~ msgstr "メインメニュー" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 #~ msgid "Refresh" #~ msgstr "更新" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 #~ msgid "Show Welcome Screen" #~ msgstr "ウェルカムスクリーンを表示" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 #~ msgid "Add" #~ msgstr "追加" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 #~ msgid "No WebApps Found" #~ msgstr "ウェブアプリが見つかりませんでした。" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 #, python-brace-format #~ msgid "Browser changed to {0}" #~ msgstr "ブラウザが{0}に変更されました。" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 #, python-brace-format @@ -693,12 +583,10 @@ msgstr "ファイルを保存" #~ "\n" #~ "URL: {1}\n" #~ "ブラウザ: {2}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 #~ msgid "REMOVE ALL" #~ msgstr "すべて削除" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 #, python-brace-format @@ -710,48 +598,39 @@ msgstr "ファイルを保存" #~ "すべてのWebアプリを削除してもよろしいですか?この操作は元に戻せません。\n" #~ "\n" #~ "確認するには「{0}」と入力してください。" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 #, python-brace-format #~ msgid "Icon {0} of {1}" #~ msgstr "アイコン {0} の {1}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #~ msgid "There are no WebApps to export." #~ msgstr "エクスポートするWebアプリはありません。" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 #~ msgid "The selected file does not exist." #~ msgstr "選択したファイルは存在しません。" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 #~ msgid "The selected file is not a valid ZIP archive." #~ msgstr "選択したファイルは有効なZIPアーカイブではありません。" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 #~ msgid "Error importing WebApps" #~ msgstr "WebAppsのインポート中にエラーが発生しました" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 #~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" #~ msgstr "{} の WebApps を正常にインポートしました ({} の重複はスキップされました)" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 #~ msgid "Imported {} WebApps successfully" #~ msgstr "{} WebAppsを正常にインポートしました。" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 #~ msgid "No" #~ msgstr "いいえ" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 #~ msgid "Yes" diff --git a/biglinux-webapps/locale/ko.json b/biglinux-webapps/locale/ko.json new file mode 100644 index 00000000..76f6435d --- /dev/null +++ b/biglinux-webapps/locale/ko.json @@ -0,0 +1 @@ +{"ko":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["템플릿"]},"Choose a Template":{"*":["템플릿 선택"]},"Search templates...":{"*":["템플릿 검색..."]},"Search Results":{"*":["검색 결과"]},"No templates found":{"*":["템플릿을 찾을 수 없습니다."]},"Edit WebApp":{"*":["웹앱 편집"]},"Delete WebApp":{"*":["웹앱 삭제"]},"Welcome to WebApps Manager":{"*":["웹앱 관리자에 오신 것을 환영합니다."]},"Don't show this again":{"*":["다시 표시하지 않기"]},"Let's Start":{"*":["시작하겠습니다."]},"Select Browser":{"*":["브라우저 선택"]},"Cancel":{"*":["취소"]},"Select":{"*":["선택하십시오"]},"OK":{"*":["알겠습니다."]},"Add WebApp":{"*":["웹앱 추가"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["웹사이트에서 이름과 아이콘 감지"]},"Name":{"*":["이름"]},"Category":{"*":["카테고리"]},"Opens as a native window without browser interface":{"*":["브라우저 인터페이스 없이 네이티브 윈도우로 열림"]},"Browser":{"*":["브라우저"]},"Allows independent cookies and sessions":{"*":["독립적인 쿠키 및 세션을 허용합니다."]},"Profile Name":{"*":["프로필 이름"]},"Save":{"*":["저장"]},"Loading...":{"*":["로딩 중..."]},"WebApps Manager":{"*":["웹앱 관리자"]},"Search WebApps":{"*":["웹앱 검색"]},"Export WebApps":{"*":["웹앱 내보내기"]},"Import WebApps":{"*":["웹앱 가져오기"]},"Browse Applications Folder":{"*":["응용 프로그램 폴더 탐색"]},"Browse Profiles Folder":{"*":["프로필 폴더 탐색"]},"Remove All WebApps":{"*":["모든 웹앱 제거"]},"About":{"*":["정보"]},"Add a new webapp to get started":{"*":["시작하려면 새 웹앱을 추가하세요."]},"WebApp created successfully":{"*":["웹앱이 성공적으로 생성되었습니다."]},"WebApp updated successfully":{"*":["웹앱이 성공적으로 업데이트되었습니다."]},"Also delete configuration folder":{"*":["구성 폴더도 삭제하십시오."]},"Delete":{"*":["삭제"]},"WebApp deleted successfully":{"*":["웹앱이 성공적으로 삭제되었습니다."]},"Remove All":{"*":["모두 제거"]},"All WebApps have been removed":{"*":["모든 웹앱이 제거되었습니다."]},"Failed to remove all WebApps":{"*":["모든 웹앱을 제거하지 못했습니다."]},"WebApps exported successfully":{"*":["웹앱이 성공적으로 내보내졌습니다."]},"No WebApps":{"*":["웹앱 없음"]},"Change browser":{"*":["브라우저 변경"]},"Edit":{"*":["편집"]},"New WebApp":{"*":["새 WebApp"]},"Icon":{"*":["아이콘"]},"App Mode":{"*":["앱 모드"]},"Separate Profile":{"*":["별도 프로필"]},"Select Icon":{"*":["아이콘 선택"]},"Images":{"*":["이미지"]},"ZIP files":{"*":["ZIP 파일"]},"Imported {imported}, skipped {dups} duplicates":{"*":["{imported}개 가져옴, {dups}개 중복 건너뜀"]},"Import failed":{"*":["가져오기 실패"]},"Export failed":{"*":["내보내기 실패"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["이 작업은 모든 웹앱과 해당 데스크탑 항목을 삭제합니다. 되돌릴 수 없습니다."]},"Browser changed":{"*":["브라우저가 변경되었습니다"]},"What are WebApps?":{"*":["WebApps란 무엇인가요?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps는 전용 브라우저 창에서 실행되는 웹 애플리케이션으로, 좋아하는 웹사이트를 더 앱처럼 사용할 수 있는 환경을 제공합니다."]},"Benefits of using WebApps:":{"*":["WebApps 사용의 장점:"]},"Focus":{"*":["집중"]},"Work without the distractions of other browser tabs":{"*":["다른 브라우저 탭의 방해 없이 작업하세요"]},"Desktop Integration":{"*":["데스크탑 통합"]},"Quick access from your application menu":{"*":["애플리케이션 메뉴에서 빠르게 접근 가능"]},"Isolated Profiles":{"*":["분리된 프로필"]},"Each webapp can have its own cookies and settings":{"*":["각 WebApp은 자체 쿠키와 설정을 가질 수 있습니다"]},"Back":{"*":["뒤로"]},"Forward":{"*":["앞으로"]},"Reload":{"*":["새로 고침"]},"Fullscreen":{"*":["전체 화면"]},"Enter URL…":{"*":["URL 입력…"]},"Zoom In":{"*":["확대"]},"Zoom Out":{"*":["축소"]},"Reset Zoom":{"*":["확대/축소 초기화"]},"Developer Tools":{"*":["개발자 도구"]},"Menu":{"*":["메뉴"]},"Open Link in Browser":{"*":["브라우저에서 링크 열기"]},"Download Complete":{"*":["다운로드 완료"]},"Save File":{"*":["파일 저장"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/ko.po b/biglinux-webapps/locale/ko.po index ae91ed43..0b55ec52 100644 --- a/biglinux-webapps/locale/ko.po +++ b/biglinux-webapps/locale/ko.po @@ -14,7 +14,6 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -24,31 +23,26 @@ msgstr "" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "템플릿" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "템플릿 선택" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "템플릿 검색..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "검색 결과" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "템플릿을 찾을 수 없습니다." - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -60,13 +54,11 @@ msgstr "템플릿을 찾을 수 없습니다." #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "웹앱 편집" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "웹앱 삭제" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 # File: biglinux-webapps/biglinux- @@ -75,25 +67,21 @@ msgstr "웹앱 삭제" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "웹앱 관리자에 오신 것을 환영합니다." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "다시 표시하지 않기" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "시작하겠습니다." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "브라우저 선택" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -106,7 +94,6 @@ msgstr "브라우저 선택" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "취소" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -119,7 +106,6 @@ msgstr "취소" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "선택하십시오" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -133,7 +119,6 @@ msgstr "선택하십시오" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "알겠습니다." - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -145,19 +130,16 @@ msgstr "알겠습니다." #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "웹앱 추가" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "웹사이트에서 이름과 아이콘 감지" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 # File: biglinux-webapps/biglinux- @@ -165,38 +147,32 @@ msgstr "웹사이트에서 이름과 아이콘 감지" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "이름" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "카테고리" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "브라우저 인터페이스 없이 네이티브 윈도우로 열림" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 #. -- Browser row (hidden in app mode) -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "브라우저" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "독립적인 쿠키 및 세션을 허용합니다." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "프로필 이름" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -206,52 +182,44 @@ msgstr "프로필 이름" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "저장" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "로딩 중..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "웹앱 관리자" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "웹앱 검색" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "웹앱 내보내기" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 63 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "웹앱 가져오기" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "응용 프로그램 폴더 탐색" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 67 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "프로필 폴더 탐색" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 # File: biglinux-webapps/biglinux- @@ -260,31 +228,26 @@ msgstr "프로필 폴더 탐색" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "모든 웹앱 제거" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 70 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "정보" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "시작하려면 새 웹앱을 추가하세요." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "웹앱이 성공적으로 생성되었습니다." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "웹앱이 성공적으로 업데이트되었습니다." - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -294,225 +257,177 @@ msgstr "웹앱이 성공적으로 업데이트되었습니다." #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "구성 폴더도 삭제하십시오." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "삭제" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "웹앱이 성공적으로 삭제되었습니다." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "모두 제거" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 444 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "모든 웹앱이 제거되었습니다." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 446 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "모든 웹앱을 제거하지 못했습니다." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "웹앱이 성공적으로 내보내졌습니다." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "웹앱 없음" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 msgid "Change browser" msgstr "브라우저 변경" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 msgid "Edit" msgstr "편집" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "New WebApp" msgstr "새 WebApp" - #. -- Icon row -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 msgid "Icon" msgstr "아이콘" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 msgid "App Mode" msgstr "앱 모드" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 msgid "Separate Profile" msgstr "별도 프로필" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 msgid "Select Icon" msgstr "아이콘 선택" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 msgid "Images" msgstr "이미지" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 msgid "ZIP files" msgstr "ZIP 파일" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 #, rust-format msgid "Imported {imported}, skipped {dups} duplicates" msgstr "{imported}개 가져옴, {dups}개 중복 건너뜀" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 msgid "Import failed" msgstr "가져오기 실패" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 msgid "Export failed" msgstr "내보내기 실패" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 msgid "" "This will delete all webapps and their desktop entries. This cannot be " "undone." msgstr "이 작업은 모든 웹앱과 해당 데스크탑 항목을 삭제합니다. 되돌릴 수 없습니다." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 msgid "Browser changed" msgstr "브라우저가 변경되었습니다" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 msgid "What are WebApps?" msgstr "WebApps란 무엇인가요?" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 msgid "" "WebApps are web applications that run in a dedicated browser window, " "providing a more app-like experience for your favorite websites." msgstr "" "WebApps는 전용 브라우저 창에서 실행되는 웹 애플리케이션으로, 좋아하는 웹사이트를 더 앱처럼 사용할 수 있는 환경을 제공합니다." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 msgid "Benefits of using WebApps:" msgstr "WebApps 사용의 장점:" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Focus" msgstr "집중" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Work without the distractions of other browser tabs" msgstr "다른 브라우저 탭의 방해 없이 작업하세요" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Desktop Integration" msgstr "데스크탑 통합" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Quick access from your application menu" msgstr "애플리케이션 메뉴에서 빠르게 접근 가능" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Isolated Profiles" msgstr "분리된 프로필" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Each webapp can have its own cookies and settings" msgstr "각 WebApp은 자체 쿠키와 설정을 가질 수 있습니다" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 msgid "Back" msgstr "뒤로" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 msgid "Forward" msgstr "앞으로" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 msgid "Reload" msgstr "새로 고침" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 msgid "Fullscreen" msgstr "전체 화면" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 msgid "Enter URL…" msgstr "URL 입력…" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 msgid "Zoom In" msgstr "확대" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 msgid "Zoom Out" msgstr "축소" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 msgid "Reset Zoom" msgstr "확대/축소 초기화" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 msgid "Developer Tools" msgstr "개발자 도구" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 msgid "Menu" msgstr "메뉴" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 msgid "Open Link in Browser" msgstr "브라우저에서 링크 열기" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 msgid "Download Complete" msgstr "다운로드 완료" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 msgid "Save File" msgstr "파일 저장" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 #~ msgid "Search templates" #~ msgstr "템플릿 검색" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 #, python-brace-format #~ msgid "Browser: {0}" #~ msgstr "브라우저: {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 #, python-brace-format #~ msgid "Edit {0}" #~ msgstr "{0} 편집" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 #, python-brace-format #~ msgid "Delete {0}" #~ msgstr "{0} 삭제" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 #~ msgid "" @@ -535,12 +450,10 @@ msgstr "파일 저장" #~ "• 집중: 다른 브라우저 탭의 방해 없이 작업\n" #~ "• 데스크탑 통합: 애플리케이션 메뉴에서 빠른 접근\n" #~ "• 격리된 프로필: 선택적으로 각 웹앱은 자체 쿠키와 설정을 가질 수 있음\n" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 #~ msgid "System Default" #~ msgstr "시스템 기본값" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -559,12 +472,10 @@ msgstr "파일 저장" # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 #~ msgid "Default" #~ msgstr "기본값" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 #~ msgid "Please select a browser." #~ msgstr "브라우저를 선택하세요." - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -573,49 +484,40 @@ msgstr "파일 저장" # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 #~ msgid "Error" #~ msgstr "오류" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 #~ msgid "Choose from templates" #~ msgstr "템플릿에서 선택하세요." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 #~ msgid "Detect" #~ msgstr "감지하다" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 #~ msgid "App Icon" #~ msgstr "앱 아이콘" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 #~ msgid "Select icon for the WebApp" #~ msgstr "웹앱 아이콘 선택" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 #~ msgid "Available Icons" #~ msgstr "사용 가능한 아이콘" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 #~ msgid "Application Mode" #~ msgstr "응용 프로그램 모드" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 #~ msgid "Profile Settings" #~ msgstr "프로필 설정" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 #~ msgid "Configure a separate browser profile for this webapp" #~ msgstr "이 웹앱을 위한 별도의 브라우저 프로필을 구성하세요." - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -624,63 +526,51 @@ msgstr "파일 저장" # #~ msgid "Use separate profile" #~ msgstr "별도의 프로필 사용" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 #~ msgid "Detecting website information, please wait" #~ msgstr "웹사이트 정보를 감지하는 중입니다. 잠시만 기다려 주십시오." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 #~ msgid "Please enter a URL first." #~ msgstr "먼저 URL을 입력하세요." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 #~ msgid "Please enter a name for the WebApp." #~ msgstr "웹앱의 이름을 입력하세요." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 #~ msgid "Please enter a URL for the WebApp." #~ msgstr "웹앱의 URL을 입력하세요." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 #~ msgid "Please select a browser for the WebApp." #~ msgstr "웹앱을 위한 브라우저를 선택하세요." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 #~ msgid "Main Menu" #~ msgstr "메인 메뉴" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 #~ msgid "Refresh" #~ msgstr "새로 고침" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 #~ msgid "Show Welcome Screen" #~ msgstr "환영 화면 표시" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 #~ msgid "Add" #~ msgstr "추가" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 #~ msgid "No WebApps Found" #~ msgstr "웹앱을 찾을 수 없습니다." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 #, python-brace-format #~ msgid "Browser changed to {0}" #~ msgstr "브라우저가 {0}로 변경되었습니다." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 #, python-brace-format @@ -694,12 +584,10 @@ msgstr "파일 저장" #~ "\n" #~ "URL: {1}\n" #~ "브라우저: {2}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 #~ msgid "REMOVE ALL" #~ msgstr "모두 제거" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 #, python-brace-format @@ -711,48 +599,39 @@ msgstr "파일 저장" #~ "모든 웹앱을 제거하시겠습니까? 이 작업은 취소할 수 없습니다.\n" #~ "\n" #~ "확인을 위해 \"{0}\"를 입력하세요." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 #, python-brace-format #~ msgid "Icon {0} of {1}" #~ msgstr "아이콘 {0}의 {1}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #~ msgid "There are no WebApps to export." #~ msgstr "내보낼 웹앱이 없습니다." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 #~ msgid "The selected file does not exist." #~ msgstr "선택한 파일이 존재하지 않습니다." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 #~ msgid "The selected file is not a valid ZIP archive." #~ msgstr "선택한 파일은 유효한 ZIP 아카이브가 아닙니다." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 #~ msgid "Error importing WebApps" #~ msgstr "웹앱 가져오기 오류" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 404 #~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" #~ msgstr "{} 웹앱이 성공적으로 가져와졌습니다 ({} 중복 항목 건너뜀)" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 #~ msgid "Imported {} WebApps successfully" #~ msgstr "{} 웹앱이 성공적으로 가져와졌습니다." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 #~ msgid "No" #~ msgstr "No" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 #~ msgid "Yes" diff --git a/biglinux-webapps/locale/nl.json b/biglinux-webapps/locale/nl.json new file mode 100644 index 00000000..123b1f92 --- /dev/null +++ b/biglinux-webapps/locale/nl.json @@ -0,0 +1 @@ +{"nl":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Sjablonen"]},"Choose a Template":{"*":["Kies een sjabloon"]},"Search templates...":{"*":["Zoek sjablonen..."]},"Search Results":{"*":["Zoekresultaten"]},"No templates found":{"*":["Geen sjablonen gevonden"]},"Edit WebApp":{"*":["Bewerk WebApp"]},"Delete WebApp":{"*":["Verwijder WebApp"]},"Welcome to WebApps Manager":{"*":["Welkom bij WebApps Manager"]},"Don't show this again":{"*":["Toon dit niet opnieuw"]},"Let's Start":{"*":["Laten we beginnen"]},"Select Browser":{"*":["Selecteer Browser"]},"Cancel":{"*":["Annuleren"]},"Select":{"*":["Selecteren"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Voeg WebApp toe"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Detecteer naam en pictogram van website"]},"Name":{"*":["Naam"]},"Category":{"*":["Categorie"]},"Opens as a native window without browser interface":{"*":["Opent als een native venster zonder browserinterface"]},"Browser":{"*":["Browser"]},"Allows independent cookies and sessions":{"*":["Staat onafhankelijke cookies en sessies toe"]},"Profile Name":{"*":["Profielnaam"]},"Save":{"*":["Opslaan"]},"Loading...":{"*":["Laden..."]},"WebApps Manager":{"*":["WebApps Beheerder"]},"Search WebApps":{"*":["Zoek WebApps"]},"Export WebApps":{"*":["Exporteer WebApps"]},"Import WebApps":{"*":["WebApps importeren"]},"Browse Applications Folder":{"*":["Blader naar de map Toepassingen"]},"Browse Profiles Folder":{"*":["Blader naar Profielenmap"]},"Remove All WebApps":{"*":["Verwijder alle webapps"]},"About":{"*":["Over"]},"Add a new webapp to get started":{"*":["Voeg een nieuwe webapp toe om te beginnen"]},"WebApp created successfully":{"*":["WebApp succesvol aangemaakt"]},"WebApp updated successfully":{"*":["WebApp succesvol bijgewerkt"]},"Also delete configuration folder":{"*":["Verwijder ook de configuratiemap."]},"Delete":{"*":["Verwijderen"]},"WebApp deleted successfully":{"*":["WebApp succesvol verwijderd"]},"Remove All":{"*":["Verwijder alles"]},"All WebApps have been removed":{"*":["Alle WebApps zijn verwijderd."]},"Failed to remove all WebApps":{"*":["Kon niet alle WebApps verwijderen"]},"WebApps exported successfully":{"*":["WebApps succesvol geëxporteerd"]},"No WebApps":{"*":["Geen WebApps"]},"Change browser":{"*":["Browser wijzigen"]},"Edit":{"*":["Bewerken"]},"New WebApp":{"*":["Nieuwe WebApp"]},"Icon":{"*":["Pictogram"]},"App Mode":{"*":["App-modus"]},"Separate Profile":{"*":["Apart profiel"]},"Select Icon":{"*":["Pictogram selecteren"]},"Images":{"*":["Afbeeldingen"]},"ZIP files":{"*":["ZIP-bestanden"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Geïmporteerd {imported}, overgeslagen {dups} duplicaten"]},"Import failed":{"*":["Importeren mislukt"]},"Export failed":{"*":["Exporteren mislukt"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Dit verwijdert alle webapps en hun bureaubladvermeldingen. Dit kan niet ongedaan worden gemaakt."]},"Browser changed":{"*":["Browser gewijzigd"]},"What are WebApps?":{"*":["Wat zijn WebApps?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps zijn webapplicaties die draaien in een apart browservenster, wat een meer app-achtige ervaring biedt voor je favoriete websites."]},"Benefits of using WebApps:":{"*":["Voordelen van het gebruik van WebApps:"]},"Focus":{"*":["Focus"]},"Work without the distractions of other browser tabs":{"*":["Werk zonder afleiding van andere browsertabbladen"]},"Desktop Integration":{"*":["Desktopintegratie"]},"Quick access from your application menu":{"*":["Snelle toegang vanuit je applicatiemenu"]},"Isolated Profiles":{"*":["Geïsoleerde profielen"]},"Each webapp can have its own cookies and settings":{"*":["Elke webapp kan zijn eigen cookies en instellingen hebben"]},"Back":{"*":["Terug"]},"Forward":{"*":["Vooruit"]},"Reload":{"*":["Vernieuwen"]},"Fullscreen":{"*":["Volledig scherm"]},"Enter URL…":{"*":["Voer URL in…"]},"Zoom In":{"*":["Inzoomen"]},"Zoom Out":{"*":["Uitzoomen"]},"Reset Zoom":{"*":["Zoom resetten"]},"Developer Tools":{"*":["Ontwikkelaarstools"]},"Menu":{"*":["Menu"]},"Open Link in Browser":{"*":["Link openen in browser"]},"Download Complete":{"*":["Download voltooid"]},"Save File":{"*":["Bestand opslaan"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/nl.po b/biglinux-webapps/locale/nl.po index 1e065634..dc33ae27 100644 --- a/biglinux-webapps/locale/nl.po +++ b/biglinux-webapps/locale/nl.po @@ -14,7 +14,6 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -24,31 +23,26 @@ msgstr "" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Sjablonen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Kies een sjabloon" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Zoek sjablonen..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Zoekresultaten" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Geen sjablonen gevonden" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -60,13 +54,11 @@ msgstr "Geen sjablonen gevonden" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Bewerk WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Verwijder WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 # File: biglinux-webapps/biglinux- @@ -75,25 +67,21 @@ msgstr "Verwijder WebApp" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Welkom bij WebApps Manager" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Toon dit niet opnieuw" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Laten we beginnen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Selecteer Browser" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -106,7 +94,6 @@ msgstr "Selecteer Browser" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Annuleren" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -119,7 +106,6 @@ msgstr "Annuleren" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Selecteren" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -133,7 +119,6 @@ msgstr "Selecteren" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "OK" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -145,19 +130,16 @@ msgstr "OK" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Voeg WebApp toe" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Detecteer naam en pictogram van website" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 # File: biglinux-webapps/biglinux- @@ -165,38 +147,32 @@ msgstr "Detecteer naam en pictogram van website" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Naam" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Categorie" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Opent als een native venster zonder browserinterface" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 #. -- Browser row (hidden in app mode) -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Browser" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Staat onafhankelijke cookies en sessies toe" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Profielnaam" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -206,52 +182,44 @@ msgstr "Profielnaam" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Opslaan" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Laden..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "WebApps Beheerder" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Zoek WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Exporteer WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "WebApps importeren" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Blader naar de map Toepassingen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Blader naar Profielenmap" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 # File: biglinux-webapps/biglinux- @@ -260,31 +228,26 @@ msgstr "Blader naar Profielenmap" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Verwijder alle webapps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "Over" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Voeg een nieuwe webapp toe om te beginnen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "WebApp succesvol aangemaakt" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "WebApp succesvol bijgewerkt" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -294,101 +257,81 @@ msgstr "WebApp succesvol bijgewerkt" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Verwijder ook de configuratiemap." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Verwijderen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "WebApp succesvol verwijderd" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Verwijder alles" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Alle WebApps zijn verwijderd." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Kon niet alle WebApps verwijderen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebApps succesvol geëxporteerd" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Geen WebApps" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 msgid "Change browser" msgstr "Browser wijzigen" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 msgid "Edit" msgstr "Bewerken" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "New WebApp" msgstr "Nieuwe WebApp" - #. -- Icon row -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 msgid "Icon" msgstr "Pictogram" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 msgid "App Mode" msgstr "App-modus" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 msgid "Separate Profile" msgstr "Apart profiel" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 msgid "Select Icon" msgstr "Pictogram selecteren" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 msgid "Images" msgstr "Afbeeldingen" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 msgid "ZIP files" msgstr "ZIP-bestanden" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 #, rust-format msgid "Imported {imported}, skipped {dups} duplicates" msgstr "Geïmporteerd {imported}, overgeslagen {dups} duplicaten" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 msgid "Import failed" msgstr "Importeren mislukt" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 msgid "Export failed" msgstr "Exporteren mislukt" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 msgid "" "This will delete all webapps and their desktop entries. This cannot be " @@ -396,15 +339,12 @@ msgid "" msgstr "" "Dit verwijdert alle webapps en hun bureaubladvermeldingen. Dit kan niet " "ongedaan worden gemaakt." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 msgid "Browser changed" msgstr "Browser gewijzigd" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 msgid "What are WebApps?" msgstr "Wat zijn WebApps?" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 msgid "" "WebApps are web applications that run in a dedicated browser window, " @@ -412,110 +352,85 @@ msgid "" msgstr "" "WebApps zijn webapplicaties die draaien in een apart browservenster, wat een" " meer app-achtige ervaring biedt voor je favoriete websites." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 msgid "Benefits of using WebApps:" msgstr "Voordelen van het gebruik van WebApps:" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Focus" msgstr "Focus" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Work without the distractions of other browser tabs" msgstr "Werk zonder afleiding van andere browsertabbladen" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Desktop Integration" msgstr "Desktopintegratie" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Quick access from your application menu" msgstr "Snelle toegang vanuit je applicatiemenu" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Isolated Profiles" msgstr "Geïsoleerde profielen" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Each webapp can have its own cookies and settings" msgstr "Elke webapp kan zijn eigen cookies en instellingen hebben" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 msgid "Back" msgstr "Terug" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 msgid "Forward" msgstr "Vooruit" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 msgid "Reload" msgstr "Vernieuwen" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 msgid "Fullscreen" msgstr "Volledig scherm" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 msgid "Enter URL…" msgstr "Voer URL in…" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 msgid "Zoom In" msgstr "Inzoomen" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 msgid "Zoom Out" msgstr "Uitzoomen" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 msgid "Reset Zoom" msgstr "Zoom resetten" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 msgid "Developer Tools" msgstr "Ontwikkelaarstools" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 msgid "Menu" msgstr "Menu" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 msgid "Open Link in Browser" msgstr "Link openen in browser" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 msgid "Download Complete" msgstr "Download voltooid" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 msgid "Save File" msgstr "Bestand opslaan" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 #~ msgid "Search templates" #~ msgstr "Zoek sjablonen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 #, python-brace-format #~ msgid "Browser: {0}" #~ msgstr "Browser: {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 #, python-brace-format #~ msgid "Edit {0}" #~ msgstr "Bewerk {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 #, python-brace-format #~ msgid "Delete {0}" #~ msgstr "Verwijder {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 #~ msgid "" @@ -538,12 +453,10 @@ msgstr "Bestand opslaan" #~ "• Focus: Werken zonder de afleiding van andere browsertabs\n" #~ "• Bureaubladintegratie: Snelle toegang vanuit je applicatiemenu\n" #~ "• Geïsoleerde Profielen: Optioneel kan elke webapp zijn eigen cookies en instellingen hebben\n" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 #~ msgid "System Default" #~ msgstr "Systeemstandaard" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -562,12 +475,10 @@ msgstr "Bestand opslaan" # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 #~ msgid "Default" #~ msgstr "Standaard" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 #~ msgid "Please select a browser." #~ msgstr "Selecteer een browser." - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -576,49 +487,40 @@ msgstr "Bestand opslaan" # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 #~ msgid "Error" #~ msgstr "Fout" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 #~ msgid "Choose from templates" #~ msgstr "Kies uit sjablonen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 #~ msgid "Detect" #~ msgstr "Detecteren" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 #~ msgid "App Icon" #~ msgstr "App-pictogram" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 #~ msgid "Select icon for the WebApp" #~ msgstr "Selecteer pictogram voor de WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 #~ msgid "Available Icons" #~ msgstr "Beschikbare pictogrammen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 #~ msgid "Application Mode" #~ msgstr "Toepassingsmodus" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 #~ msgid "Profile Settings" #~ msgstr "Profielinstellingen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 #~ msgid "Configure a separate browser profile for this webapp" #~ msgstr "Configureer een apart browserprofiel voor deze webapp." - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -627,63 +529,51 @@ msgstr "Bestand opslaan" # #~ msgid "Use separate profile" #~ msgstr "Gebruik apart profiel" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 #~ msgid "Detecting website information, please wait" #~ msgstr "Website-informatie wordt gedetecteerd, een moment geduld alstublieft." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 #~ msgid "Please enter a URL first." #~ msgstr "Voer eerst een URL in." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 #~ msgid "Please enter a name for the WebApp." #~ msgstr "Voer een naam in voor de WebApp." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 #~ msgid "Please enter a URL for the WebApp." #~ msgstr "Voer een URL in voor de WebApp." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 #~ msgid "Please select a browser for the WebApp." #~ msgstr "Selecteer een browser voor de WebApp." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 #~ msgid "Main Menu" #~ msgstr "Hoofdmenu" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 #~ msgid "Refresh" #~ msgstr "Vernieuwen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 #~ msgid "Show Welcome Screen" #~ msgstr "Toon Welkomstscherm" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 #~ msgid "Add" #~ msgstr "Toevoegen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 #~ msgid "No WebApps Found" #~ msgstr "Geen WebApps gevonden" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 #, python-brace-format #~ msgid "Browser changed to {0}" #~ msgstr "Browser gewijzigd naar {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 #, python-brace-format @@ -697,12 +587,10 @@ msgstr "Bestand opslaan" #~ "\n" #~ "URL: {1}\n" #~ "Browser: {2}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 #~ msgid "REMOVE ALL" #~ msgstr "VERWIJDER ALLES" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 #, python-brace-format @@ -714,48 +602,39 @@ msgstr "Bestand opslaan" #~ "Weet u zeker dat u al uw WebApps wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt.\n" #~ "\n" #~ "Typ \"{0}\" om te bevestigen." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 #, python-brace-format #~ msgid "Icon {0} of {1}" #~ msgstr "Pictogram {0} van {1}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #~ msgid "There are no WebApps to export." #~ msgstr "Er zijn geen WebApps om te exporteren." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 #~ msgid "The selected file does not exist." #~ msgstr "Het geselecteerde bestand bestaat niet." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 #~ msgid "The selected file is not a valid ZIP archive." #~ msgstr "Het geselecteerde bestand is geen geldig ZIP-archief." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 #~ msgid "Error importing WebApps" #~ msgstr "Fout bij het importeren van WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 #~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" #~ msgstr "{} WebApps succesvol geïmporteerd ({} duplicaten overgeslagen)" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 #~ msgid "Imported {} WebApps successfully" #~ msgstr "Geïmporteerde {} WebApps succesvol" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 #~ msgid "No" #~ msgstr "Geen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 #~ msgid "Yes" diff --git a/biglinux-webapps/locale/no.json b/biglinux-webapps/locale/no.json new file mode 100644 index 00000000..b57ec6ac --- /dev/null +++ b/biglinux-webapps/locale/no.json @@ -0,0 +1 @@ +{"no":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Malteksler"]},"Choose a Template":{"*":["Velg en mal"]},"Search templates...":{"*":["Søk maler..."]},"Search Results":{"*":["Søkeresultater"]},"No templates found":{"*":["Ingen maler funnet"]},"Edit WebApp":{"*":["Rediger WebApp"]},"Delete WebApp":{"*":["Slett WebApp"]},"Welcome to WebApps Manager":{"*":["Velkommen til WebApps Manager"]},"Don't show this again":{"*":["Ikke vis dette igjen"]},"Let's Start":{"*":["La oss begynne"]},"Select Browser":{"*":["Velg nettleser"]},"Cancel":{"*":["Avbryt"]},"Select":{"*":["Velg"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Legg til WebApp"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Oppdag navn og ikon fra nettsted."]},"Name":{"*":["Navn"]},"Category":{"*":["Kategori"]},"Opens as a native window without browser interface":{"*":["Åpnes som et native vindu uten nettlesergrensesnitt"]},"Browser":{"*":["Nettleser"]},"Allows independent cookies and sessions":{"*":["Tillater uavhengige informasjonskapsler og økter"]},"Profile Name":{"*":["Profilnavn"]},"Save":{"*":["Lagre"]},"Loading...":{"*":["Laster..."]},"WebApps Manager":{"*":["WebApps Behandler"]},"Search WebApps":{"*":["Søk WebApps"]},"Export WebApps":{"*":["Eksporter Webapper"]},"Import WebApps":{"*":["Importer WebApps"]},"Browse Applications Folder":{"*":["Bla gjennom applikasjonsmappen"]},"Browse Profiles Folder":{"*":["Bla gjennom profiler-mappen"]},"Remove All WebApps":{"*":["Fjern alle nettapper"]},"About":{"*":["Om"]},"Add a new webapp to get started":{"*":["Legg til en ny nettapp for å komme i gang"]},"WebApp created successfully":{"*":["WebApp opprettet vellykket"]},"WebApp updated successfully":{"*":["WebApp oppdatert med suksess"]},"Also delete configuration folder":{"*":["Slett også konfigurasjonsmappen"]},"Delete":{"*":["Slett"]},"WebApp deleted successfully":{"*":["WebApp slettet med suksess"]},"Remove All":{"*":["Fjern alt"]},"All WebApps have been removed":{"*":["Alle Webapper har blitt fjernet."]},"Failed to remove all WebApps":{"*":["Kunne ikke fjerne alle WebApps"]},"WebApps exported successfully":{"*":["WebApps eksportert med suksess"]},"No WebApps":{"*":["Ingen WebApps"]},"Change browser":{"*":["Bytt nettleser"]},"Edit":{"*":["Rediger"]},"New WebApp":{"*":["Ny WebApp"]},"Icon":{"*":["Ikon"]},"App Mode":{"*":["App-modus"]},"Separate Profile":{"*":["Separat profil"]},"Select Icon":{"*":["Velg ikon"]},"Images":{"*":["Bilder"]},"ZIP files":{"*":["ZIP-filer"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Importert {imported}, hoppet over {dups} duplikater"]},"Import failed":{"*":["Import mislyktes"]},"Export failed":{"*":["Eksport mislyktes"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Dette vil slette alle webapper og deres skrivebordsoppføringer. Dette kan ikke angres."]},"Browser changed":{"*":["Nettleser endret"]},"What are WebApps?":{"*":["Hva er WebApps?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps er nettapplikasjoner som kjører i et dedikert nettleservindu, og gir en mer app-lignende opplevelse for dine favorittnettsteder."]},"Benefits of using WebApps:":{"*":["Fordeler med å bruke WebApps:"]},"Focus":{"*":["Fokus"]},"Work without the distractions of other browser tabs":{"*":["Arbeid uten forstyrrelser fra andre nettleserfaner"]},"Desktop Integration":{"*":["Integrasjon på skrivebordet"]},"Quick access from your application menu":{"*":["Rask tilgang fra applikasjonsmenyen din"]},"Isolated Profiles":{"*":["Isolerte profiler"]},"Each webapp can have its own cookies and settings":{"*":["Hver webapp kan ha sine egne informasjonskapsler og innstillinger"]},"Back":{"*":["Tilbake"]},"Forward":{"*":["Fremover"]},"Reload":{"*":["Last inn på nytt"]},"Fullscreen":{"*":["Fullskjerm"]},"Enter URL…":{"*":["Skriv inn URL…"]},"Zoom In":{"*":["Zoom inn"]},"Zoom Out":{"*":["Zoom ut"]},"Reset Zoom":{"*":["Tilbakestill zoom"]},"Developer Tools":{"*":["Utviklerverktøy"]},"Menu":{"*":["Meny"]},"Open Link in Browser":{"*":["Åpne lenke i nettleser"]},"Download Complete":{"*":["Nedlasting fullført"]},"Save File":{"*":["Lagre fil"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/no.po b/biglinux-webapps/locale/no.po index 9632da06..4188e902 100644 --- a/biglinux-webapps/locale/no.po +++ b/biglinux-webapps/locale/no.po @@ -14,7 +14,6 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -24,31 +23,26 @@ msgstr "" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Malteksler" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Velg en mal" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Søk maler..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Søkeresultater" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Ingen maler funnet" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -60,13 +54,11 @@ msgstr "Ingen maler funnet" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Rediger WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Slett WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 # File: biglinux-webapps/biglinux- @@ -75,25 +67,21 @@ msgstr "Slett WebApp" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Velkommen til WebApps Manager" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Ikke vis dette igjen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "La oss begynne" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Velg nettleser" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -106,7 +94,6 @@ msgstr "Velg nettleser" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Avbryt" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -119,7 +106,6 @@ msgstr "Avbryt" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Velg" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -133,7 +119,6 @@ msgstr "Velg" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "OK" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -145,19 +130,16 @@ msgstr "OK" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Legg til WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Oppdag navn og ikon fra nettsted." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 # File: biglinux-webapps/biglinux- @@ -165,38 +147,32 @@ msgstr "Oppdag navn og ikon fra nettsted." #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Navn" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Kategori" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Åpnes som et native vindu uten nettlesergrensesnitt" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 #. -- Browser row (hidden in app mode) -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Nettleser" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Tillater uavhengige informasjonskapsler og økter" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Profilnavn" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -206,52 +182,44 @@ msgstr "Profilnavn" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Lagre" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Laster..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "WebApps Behandler" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Søk WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Eksporter Webapper" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Importer WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Bla gjennom applikasjonsmappen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Bla gjennom profiler-mappen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 # File: biglinux-webapps/biglinux- @@ -260,31 +228,26 @@ msgstr "Bla gjennom profiler-mappen" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Fjern alle nettapper" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "Om" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Legg til en ny nettapp for å komme i gang" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "WebApp opprettet vellykket" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "WebApp oppdatert med suksess" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -294,101 +257,81 @@ msgstr "WebApp oppdatert med suksess" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Slett også konfigurasjonsmappen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Slett" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "WebApp slettet med suksess" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Fjern alt" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Alle Webapper har blitt fjernet." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Kunne ikke fjerne alle WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebApps eksportert med suksess" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Ingen WebApps" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 msgid "Change browser" msgstr "Bytt nettleser" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 msgid "Edit" msgstr "Rediger" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "New WebApp" msgstr "Ny WebApp" - #. -- Icon row -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 msgid "Icon" msgstr "Ikon" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 msgid "App Mode" msgstr "App-modus" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 msgid "Separate Profile" msgstr "Separat profil" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 msgid "Select Icon" msgstr "Velg ikon" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 msgid "Images" msgstr "Bilder" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 msgid "ZIP files" msgstr "ZIP-filer" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 #, rust-format msgid "Imported {imported}, skipped {dups} duplicates" msgstr "Importert {imported}, hoppet over {dups} duplikater" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 msgid "Import failed" msgstr "Import mislyktes" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 msgid "Export failed" msgstr "Eksport mislyktes" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 msgid "" "This will delete all webapps and their desktop entries. This cannot be " @@ -396,15 +339,12 @@ msgid "" msgstr "" "Dette vil slette alle webapper og deres skrivebordsoppføringer. Dette kan " "ikke angres." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 msgid "Browser changed" msgstr "Nettleser endret" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 msgid "What are WebApps?" msgstr "Hva er WebApps?" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 msgid "" "WebApps are web applications that run in a dedicated browser window, " @@ -412,110 +352,85 @@ msgid "" msgstr "" "WebApps er nettapplikasjoner som kjører i et dedikert nettleservindu, og gir" " en mer app-lignende opplevelse for dine favorittnettsteder." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 msgid "Benefits of using WebApps:" msgstr "Fordeler med å bruke WebApps:" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Focus" msgstr "Fokus" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Work without the distractions of other browser tabs" msgstr "Arbeid uten forstyrrelser fra andre nettleserfaner" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Desktop Integration" msgstr "Integrasjon på skrivebordet" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Quick access from your application menu" msgstr "Rask tilgang fra applikasjonsmenyen din" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Isolated Profiles" msgstr "Isolerte profiler" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Each webapp can have its own cookies and settings" msgstr "Hver webapp kan ha sine egne informasjonskapsler og innstillinger" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 msgid "Back" msgstr "Tilbake" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 msgid "Forward" msgstr "Fremover" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 msgid "Reload" msgstr "Last inn på nytt" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 msgid "Fullscreen" msgstr "Fullskjerm" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 msgid "Enter URL…" msgstr "Skriv inn URL…" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 msgid "Zoom In" msgstr "Zoom inn" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 msgid "Zoom Out" msgstr "Zoom ut" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 msgid "Reset Zoom" msgstr "Tilbakestill zoom" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 msgid "Developer Tools" msgstr "Utviklerverktøy" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 msgid "Menu" msgstr "Meny" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 msgid "Open Link in Browser" msgstr "Åpne lenke i nettleser" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 msgid "Download Complete" msgstr "Nedlasting fullført" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 msgid "Save File" msgstr "Lagre fil" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 #~ msgid "Search templates" #~ msgstr "Søkemaler" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 #, python-brace-format #~ msgid "Browser: {0}" #~ msgstr "Nettleser: {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 #, python-brace-format #~ msgid "Edit {0}" #~ msgstr "Rediger {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 #, python-brace-format #~ msgid "Delete {0}" #~ msgstr "Slett {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 #~ msgid "" @@ -538,12 +453,10 @@ msgstr "Lagre fil" #~ "• Fokus: Arbeid uten distraksjoner fra andre nettleserfaner\n" #~ "• Desktop-integrasjon: Rask tilgang fra applikasjonsmenyen din\n" #~ "• Isolerte profiler: Valgfritt kan hver webapp ha sine egne informasjonskapsler og innstillinger\n" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 #~ msgid "System Default" #~ msgstr "Systemstandard" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -562,12 +475,10 @@ msgstr "Lagre fil" # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 #~ msgid "Default" #~ msgstr "Standard" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 #~ msgid "Please select a browser." #~ msgstr "Vennligst velg en nettleser." - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -576,49 +487,40 @@ msgstr "Lagre fil" # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 #~ msgid "Error" #~ msgstr "Feil" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 #~ msgid "Choose from templates" #~ msgstr "Velg fra maler" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 #~ msgid "Detect" #~ msgstr "Oppdag" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 #~ msgid "App Icon" #~ msgstr "App-ikon" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 #~ msgid "Select icon for the WebApp" #~ msgstr "Velg ikon for WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 #~ msgid "Available Icons" #~ msgstr "Tilgjengelige ikoner" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 #~ msgid "Application Mode" #~ msgstr "Applikasjonsmodus" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 #~ msgid "Profile Settings" #~ msgstr "Profilinnstillinger" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 #~ msgid "Configure a separate browser profile for this webapp" #~ msgstr "Konfigurer en egen nettleserprofil for denne nettappen" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -627,63 +529,51 @@ msgstr "Lagre fil" # #~ msgid "Use separate profile" #~ msgstr "Bruk separat profil" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 #~ msgid "Detecting website information, please wait" #~ msgstr "Oppdager nettstedinformasjon, vennligst vent" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 #~ msgid "Please enter a URL first." #~ msgstr "Vennligst skriv inn en URL først." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 #~ msgid "Please enter a name for the WebApp." #~ msgstr "Vennligst skriv inn et navn for WebAppen." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 #~ msgid "Please enter a URL for the WebApp." #~ msgstr "Vennligst skriv inn en URL for WebAppen." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 #~ msgid "Please select a browser for the WebApp." #~ msgstr "Vennligst velg en nettleser for WebApp." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 #~ msgid "Main Menu" #~ msgstr "Hovedmeny" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 #~ msgid "Refresh" #~ msgstr "Oppdater" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 #~ msgid "Show Welcome Screen" #~ msgstr "Vis visningsskjerm" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 #~ msgid "Add" #~ msgstr "Legg til" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 #~ msgid "No WebApps Found" #~ msgstr "Ingen WebApps funnet" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 #, python-brace-format #~ msgid "Browser changed to {0}" #~ msgstr "Nettleseren ble endret til {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 #, python-brace-format @@ -697,12 +587,10 @@ msgstr "Lagre fil" #~ "\n" #~ "URL: {1}\n" #~ "Nettleser: {2}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 #~ msgid "REMOVE ALL" #~ msgstr "FJERN ALT" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 #, python-brace-format @@ -714,48 +602,39 @@ msgstr "Lagre fil" #~ "Er du sikker på at du vil fjerne alle WebAppene dine? Denne handlingen kan ikke angres.\n" #~ "\n" #~ "Skriv \"{0}\" for å bekrefte." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 #, python-brace-format #~ msgid "Icon {0} of {1}" #~ msgstr "Ikon {0} av {1}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #~ msgid "There are no WebApps to export." #~ msgstr "Det finnes ingen WebApps å eksportere." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 #~ msgid "The selected file does not exist." #~ msgstr "Den valgte filen finnes ikke." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 #~ msgid "The selected file is not a valid ZIP archive." #~ msgstr "Den valgte filen er ikke et gyldig ZIP-arkiv." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 #~ msgid "Error importing WebApps" #~ msgstr "Feil ved import av WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 #~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" #~ msgstr "Importerte {} WebApps vellykket ({} duplikater hoppet over)" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 #~ msgid "Imported {} WebApps successfully" #~ msgstr "Importerte {} WebApps med suksess" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 #~ msgid "No" #~ msgstr "Nei" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 #~ msgid "Yes" diff --git a/biglinux-webapps/locale/pl.json b/biglinux-webapps/locale/pl.json new file mode 100644 index 00000000..3a91d2d8 --- /dev/null +++ b/biglinux-webapps/locale/pl.json @@ -0,0 +1 @@ +{"pl":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Szablony"]},"Choose a Template":{"*":["Wybierz szablon"]},"Search templates...":{"*":["Szukaj szablonów..."]},"Search Results":{"*":["Wyniki wyszukiwania"]},"No templates found":{"*":["Nie znaleziono szablonów."]},"Edit WebApp":{"*":["Edytuj aplikację internetową"]},"Delete WebApp":{"*":["Usuń aplikację internetową"]},"Welcome to WebApps Manager":{"*":["Witamy w Menedżerze Aplikacji Webowych"]},"Don't show this again":{"*":["Nie pokazuj tego ponownie"]},"Let's Start":{"*":["Zacznijmy"]},"Select Browser":{"*":["Wybierz przeglądarkę"]},"Cancel":{"*":["Anuluj"]},"Select":{"*":["Wybierz"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Dodaj WebApp"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Wykryj nazwę i ikonę ze strony internetowej."]},"Name":{"*":["Nazwa"]},"Category":{"*":["Kategoria"]},"Opens as a native window without browser interface":{"*":["Otwiera się jako natywne okno bez interfejsu przeglądarki."]},"Browser":{"*":["Przeglądarka"]},"Allows independent cookies and sessions":{"*":["Zezwala na niezależne pliki cookie i sesje"]},"Profile Name":{"*":["Nazwa profilu"]},"Save":{"*":["Zapisz"]},"Loading...":{"*":["Ładowanie..."]},"WebApps Manager":{"*":["Menadżer Aplikacji Webowych"]},"Search WebApps":{"*":["Szukaj aplikacji internetowych"]},"Export WebApps":{"*":["Eksportuj Aplikacje Webowe"]},"Import WebApps":{"*":["Importuj aplikacje internetowe"]},"Browse Applications Folder":{"*":["Przeglądaj folder aplikacji"]},"Browse Profiles Folder":{"*":["Przeglądaj folder profili"]},"Remove All WebApps":{"*":["Usuń wszystkie aplikacje internetowe"]},"About":{"*":["O programie"]},"Add a new webapp to get started":{"*":["Dodaj nową aplikację internetową, aby rozpocząć."]},"WebApp created successfully":{"*":["Aplikacja internetowa została pomyślnie utworzona."]},"WebApp updated successfully":{"*":["WebApp zaktualizowany pomyślnie"]},"Also delete configuration folder":{"*":["Również usuń folder konfiguracyjny."]},"Delete":{"*":["Usuń"]},"WebApp deleted successfully":{"*":["WebApp została pomyślnie usunięta."]},"Remove All":{"*":["Usuń wszystko"]},"All WebApps have been removed":{"*":["Wszystkie aplikacje internetowe zostały usunięte."]},"Failed to remove all WebApps":{"*":["Nie udało się usunąć wszystkich aplikacji internetowych."]},"WebApps exported successfully":{"*":["WebApps zostały pomyślnie wyeksportowane."]},"No WebApps":{"*":["Brak aplikacji internetowych"]},"Change browser":{"*":["Zmień przeglądarkę"]},"Edit":{"*":["Edytuj"]},"New WebApp":{"*":["Nowa WebApp"]},"Icon":{"*":["Ikona"]},"App Mode":{"*":["Tryb aplikacji"]},"Separate Profile":{"*":["Oddzielny profil"]},"Select Icon":{"*":["Wybierz ikonę"]},"Images":{"*":["Obrazy"]},"ZIP files":{"*":["Pliki ZIP"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Zaimportowano {imported}, pominięto {dups} duplikaty"]},"Import failed":{"*":["Import nie powiódł się"]},"Export failed":{"*":["Eksport nie powiódł się"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["To usunie wszystkie webappsy i ich wpisy na pulpicie. Operacji nie można cofnąć."]},"Browser changed":{"*":["Przeglądarka zmieniona"]},"What are WebApps?":{"*":["Czym są WebApps?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps to aplikacje internetowe działające w dedykowanym oknie przeglądarki, zapewniające bardziej aplikacyjne doświadczenie dla Twoich ulubionych stron internetowych."]},"Benefits of using WebApps:":{"*":["Korzyści z korzystania z WebApps:"]},"Focus":{"*":["Skupienie"]},"Work without the distractions of other browser tabs":{"*":["Pracuj bez rozpraszania przez inne karty przeglądarki"]},"Desktop Integration":{"*":["Integracja z pulpitem"]},"Quick access from your application menu":{"*":["Szybki dostęp z menu aplikacji"]},"Isolated Profiles":{"*":["Izolowane profile"]},"Each webapp can have its own cookies and settings":{"*":["Każdy webapp może mieć własne ciasteczka i ustawienia"]},"Back":{"*":["Wstecz"]},"Forward":{"*":["Dalej"]},"Reload":{"*":["Odśwież"]},"Fullscreen":{"*":["Pełny ekran"]},"Enter URL…":{"*":["Wprowadź URL…"]},"Zoom In":{"*":["Powiększ"]},"Zoom Out":{"*":["Pomniejsz"]},"Reset Zoom":{"*":["Resetuj powiększenie"]},"Developer Tools":{"*":["Narzędzia deweloperskie"]},"Menu":{"*":["Menu"]},"Open Link in Browser":{"*":["Otwórz link w przeglądarce"]},"Download Complete":{"*":["Pobieranie zakończone"]},"Save File":{"*":["Zapisz plik"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/pl.po b/biglinux-webapps/locale/pl.po index 11a42341..f2dbca30 100644 --- a/biglinux-webapps/locale/pl.po +++ b/biglinux-webapps/locale/pl.po @@ -14,7 +14,6 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -24,31 +23,26 @@ msgstr "" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Szablony" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Wybierz szablon" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Szukaj szablonów..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Wyniki wyszukiwania" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Nie znaleziono szablonów." - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -60,13 +54,11 @@ msgstr "Nie znaleziono szablonów." #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Edytuj aplikację internetową" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Usuń aplikację internetową" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 # File: biglinux-webapps/biglinux- @@ -75,25 +67,21 @@ msgstr "Usuń aplikację internetową" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Witamy w Menedżerze Aplikacji Webowych" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Nie pokazuj tego ponownie" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Zacznijmy" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Wybierz przeglądarkę" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -106,7 +94,6 @@ msgstr "Wybierz przeglądarkę" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Anuluj" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -119,7 +106,6 @@ msgstr "Anuluj" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Wybierz" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -133,7 +119,6 @@ msgstr "Wybierz" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "OK" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -145,19 +130,16 @@ msgstr "OK" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Dodaj WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Wykryj nazwę i ikonę ze strony internetowej." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 # File: biglinux-webapps/biglinux- @@ -165,38 +147,32 @@ msgstr "Wykryj nazwę i ikonę ze strony internetowej." #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Nazwa" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Kategoria" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Otwiera się jako natywne okno bez interfejsu przeglądarki." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 #. -- Browser row (hidden in app mode) -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Przeglądarka" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Zezwala na niezależne pliki cookie i sesje" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Nazwa profilu" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -206,52 +182,44 @@ msgstr "Nazwa profilu" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Zapisz" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Ładowanie..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "Menadżer Aplikacji Webowych" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Szukaj aplikacji internetowych" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Eksportuj Aplikacje Webowe" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Importuj aplikacje internetowe" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Przeglądaj folder aplikacji" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Przeglądaj folder profili" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 # File: biglinux-webapps/biglinux- @@ -260,31 +228,26 @@ msgstr "Przeglądaj folder profili" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Usuń wszystkie aplikacje internetowe" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "O programie" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Dodaj nową aplikację internetową, aby rozpocząć." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "Aplikacja internetowa została pomyślnie utworzona." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "WebApp zaktualizowany pomyślnie" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -294,101 +257,81 @@ msgstr "WebApp zaktualizowany pomyślnie" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Również usuń folder konfiguracyjny." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Usuń" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "WebApp została pomyślnie usunięta." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Usuń wszystko" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Wszystkie aplikacje internetowe zostały usunięte." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Nie udało się usunąć wszystkich aplikacji internetowych." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebApps zostały pomyślnie wyeksportowane." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Brak aplikacji internetowych" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 msgid "Change browser" msgstr "Zmień przeglądarkę" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 msgid "Edit" msgstr "Edytuj" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "New WebApp" msgstr "Nowa WebApp" - #. -- Icon row -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 msgid "Icon" msgstr "Ikona" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 msgid "App Mode" msgstr "Tryb aplikacji" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 msgid "Separate Profile" msgstr "Oddzielny profil" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 msgid "Select Icon" msgstr "Wybierz ikonę" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 msgid "Images" msgstr "Obrazy" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 msgid "ZIP files" msgstr "Pliki ZIP" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 #, rust-format msgid "Imported {imported}, skipped {dups} duplicates" msgstr "Zaimportowano {imported}, pominięto {dups} duplikaty" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 msgid "Import failed" msgstr "Import nie powiódł się" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 msgid "Export failed" msgstr "Eksport nie powiódł się" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 msgid "" "This will delete all webapps and their desktop entries. This cannot be " @@ -396,15 +339,12 @@ msgid "" msgstr "" "To usunie wszystkie webappsy i ich wpisy na pulpicie. Operacji nie można " "cofnąć." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 msgid "Browser changed" msgstr "Przeglądarka zmieniona" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 msgid "What are WebApps?" msgstr "Czym są WebApps?" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 msgid "" "WebApps are web applications that run in a dedicated browser window, " @@ -413,110 +353,85 @@ msgstr "" "WebApps to aplikacje internetowe działające w dedykowanym oknie " "przeglądarki, zapewniające bardziej aplikacyjne doświadczenie dla Twoich " "ulubionych stron internetowych." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 msgid "Benefits of using WebApps:" msgstr "Korzyści z korzystania z WebApps:" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Focus" msgstr "Skupienie" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Work without the distractions of other browser tabs" msgstr "Pracuj bez rozpraszania przez inne karty przeglądarki" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Desktop Integration" msgstr "Integracja z pulpitem" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Quick access from your application menu" msgstr "Szybki dostęp z menu aplikacji" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Isolated Profiles" msgstr "Izolowane profile" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Each webapp can have its own cookies and settings" msgstr "Każdy webapp może mieć własne ciasteczka i ustawienia" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 msgid "Back" msgstr "Wstecz" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 msgid "Forward" msgstr "Dalej" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 msgid "Reload" msgstr "Odśwież" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 msgid "Fullscreen" msgstr "Pełny ekran" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 msgid "Enter URL…" msgstr "Wprowadź URL…" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 msgid "Zoom In" msgstr "Powiększ" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 msgid "Zoom Out" msgstr "Pomniejsz" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 msgid "Reset Zoom" msgstr "Resetuj powiększenie" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 msgid "Developer Tools" msgstr "Narzędzia deweloperskie" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 msgid "Menu" msgstr "Menu" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 msgid "Open Link in Browser" msgstr "Otwórz link w przeglądarce" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 msgid "Download Complete" msgstr "Pobieranie zakończone" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 msgid "Save File" msgstr "Zapisz plik" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 #~ msgid "Search templates" #~ msgstr "Wyszukaj szablony" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 #, python-brace-format #~ msgid "Browser: {0}" #~ msgstr "Przeglądarka: {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 #, python-brace-format #~ msgid "Edit {0}" #~ msgstr "Edytuj {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 #, python-brace-format #~ msgid "Delete {0}" #~ msgstr "Usuń {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 #~ msgid "" @@ -539,12 +454,10 @@ msgstr "Zapisz plik" #~ "• Skupienie: Pracuj bez rozpraszania przez inne karty przeglądarki\n" #~ "• Integracja z pulpitem: Szybki dostęp z menu aplikacji\n" #~ "• Izolowane profile: Opcjonalnie, każda webapp może mieć własne pliki cookie i ustawienia\n" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 #~ msgid "System Default" #~ msgstr "Domyślne ustawienia systemu" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -563,12 +476,10 @@ msgstr "Zapisz plik" # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 #~ msgid "Default" #~ msgstr "Domyślny" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 #~ msgid "Please select a browser." #~ msgstr "Proszę wybrać przeglądarkę." - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -577,50 +488,41 @@ msgstr "Zapisz plik" # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 #~ msgid "Error" #~ msgstr "Błąd" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 #~ msgid "Choose from templates" #~ msgstr "Wybierz z szablonów" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 #~ msgid "Detect" #~ msgstr "Wykryj" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 #~ msgid "App Icon" #~ msgstr "Ikona aplikacji" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 #~ msgid "Select icon for the WebApp" #~ msgstr "Wybierz ikonę dla aplikacji internetowej" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 #~ msgid "Available Icons" #~ msgstr "Dostępne ikony" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 #~ msgid "Application Mode" #~ msgstr "Tryb aplikacji" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 #~ msgid "Profile Settings" #~ msgstr "Ustawienia profilu" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 #~ msgid "Configure a separate browser profile for this webapp" #~ msgstr "" #~ "Skonfiguruj osobny profil przeglądarki dla tej aplikacji internetowej." - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -629,63 +531,51 @@ msgstr "Zapisz plik" # #~ msgid "Use separate profile" #~ msgstr "Użyj oddzielnego profilu" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 #~ msgid "Detecting website information, please wait" #~ msgstr "Wykrywanie informacji o stronie internetowej, proszę czekać" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 #~ msgid "Please enter a URL first." #~ msgstr "Proszę najpierw wprowadzić adres URL." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 #~ msgid "Please enter a name for the WebApp." #~ msgstr "Proszę wpisać nazwę dla aplikacji internetowej." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 #~ msgid "Please enter a URL for the WebApp." #~ msgstr "Proszę wprowadzić adres URL dla aplikacji internetowej." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 #~ msgid "Please select a browser for the WebApp." #~ msgstr "Proszę wybrać przeglądarkę dla aplikacji internetowej." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 #~ msgid "Main Menu" #~ msgstr "Główne menu" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 #~ msgid "Refresh" #~ msgstr "Odśwież" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 #~ msgid "Show Welcome Screen" #~ msgstr "Pokaż ekran powitalny" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 #~ msgid "Add" #~ msgstr "Dodaj" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 #~ msgid "No WebApps Found" #~ msgstr "Nie znaleziono aplikacji internetowych" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 #, python-brace-format #~ msgid "Browser changed to {0}" #~ msgstr "Przeglądarka zmieniona na {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 #, python-brace-format @@ -699,12 +589,10 @@ msgstr "Zapisz plik" #~ "\n" #~ "URL: {1}\n" #~ "Przeglądarka: {2}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 #~ msgid "REMOVE ALL" #~ msgstr "USUŃ WSZYSTKO" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 #, python-brace-format @@ -716,49 +604,40 @@ msgstr "Zapisz plik" #~ "Czy na pewno chcesz usunąć wszystkie swoje aplikacje internetowe? Tej akcji nie można cofnąć.\n" #~ "\n" #~ "Wpisz \"{0}\", aby potwierdzić." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 #, python-brace-format #~ msgid "Icon {0} of {1}" #~ msgstr "Ikona {0} z {1}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #~ msgid "There are no WebApps to export." #~ msgstr "Nie ma aplikacji internetowych do wyeksportowania." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 #~ msgid "The selected file does not exist." #~ msgstr "Wybrany plik nie istnieje." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 #~ msgid "The selected file is not a valid ZIP archive." #~ msgstr "Wybrany plik nie jest prawidłowym archiwum ZIP." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 #~ msgid "Error importing WebApps" #~ msgstr "Błąd importowania aplikacji internetowych" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 #~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" #~ msgstr "" #~ "Zaimportowano {} aplikacji internetowych pomyślnie ({} duplikatów pominięto)" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 #~ msgid "Imported {} WebApps successfully" #~ msgstr "Zaimportowano {} aplikacje internetowe pomyślnie." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 #~ msgid "No" #~ msgstr "Nie" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 #~ msgid "Yes" diff --git a/biglinux-webapps/locale/pt-BR.po b/biglinux-webapps/locale/pt-BR.po index b1d375d5..724e5895 100644 --- a/biglinux-webapps/locale/pt-BR.po +++ b/biglinux-webapps/locale/pt-BR.po @@ -3,8 +3,6 @@ msgid "" msgstr "" "Project-Id-Version: biglinux-webapps\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-04-15 15:05\n" -"PO-Revision-Date: 2026-04-15 15:05\n" "Last-Translator: Translation Automator \n" "Language-Team: Portuguese (Brazil) \n" "Language: pt-BR\n" diff --git a/biglinux-webapps/locale/pt.json b/biglinux-webapps/locale/pt.json new file mode 100644 index 00000000..e8955d49 --- /dev/null +++ b/biglinux-webapps/locale/pt.json @@ -0,0 +1 @@ +{"pt":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Modelos"]},"Choose a Template":{"*":["Escolha um Modelo"]},"Search templates...":{"*":["Pesquisar modelos..."]},"Search Results":{"*":["Resultados da Pesquisa"]},"No templates found":{"*":["Nenhum modelo encontrado"]},"Edit WebApp":{"*":["Editar WebApp"]},"Delete WebApp":{"*":["Excluir WebApp"]},"Welcome to WebApps Manager":{"*":["Bem-vindo ao Gerenciador de WebApps"]},"Don't show this again":{"*":["Não mostrar isso novamente"]},"Let's Start":{"*":["Vamos começar"]},"Select Browser":{"*":["Selecionar Navegador"]},"Cancel":{"*":["Cancelar"]},"Select":{"*":["Selecionar"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Adicionar WebApp"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Detectar nome e ícone do site"]},"Name":{"*":["Nome"]},"Category":{"*":["Categoria"]},"Opens as a native window without browser interface":{"*":["Abre como uma janela nativa sem interface de navegador."]},"Browser":{"*":["Navegador"]},"Allows independent cookies and sessions":{"*":["Permite cookies e sessões independentes"]},"Profile Name":{"*":["Nome do Perfil"]},"Save":{"*":["Salvar"]},"Loading...":{"*":["Carregando..."]},"WebApps Manager":{"*":["Gerenciador de WebApps"]},"Search WebApps":{"*":["Pesquisar WebApps"]},"Export WebApps":{"*":["Exportar WebApps"]},"Import WebApps":{"*":["Importar WebApps"]},"Browse Applications Folder":{"*":["Navegar na Pasta de Aplicativos"]},"Browse Profiles Folder":{"*":["Navegar na Pasta de Perfis"]},"Remove All WebApps":{"*":["Remover Todos os WebApps"]},"About":{"*":["Sobre"]},"Add a new webapp to get started":{"*":["Adicione um novo aplicativo web para começar."]},"WebApp created successfully":{"*":["WebApp criado com sucesso"]},"WebApp updated successfully":{"*":["WebApp atualizado com sucesso"]},"Also delete configuration folder":{"*":["Também exclua a pasta de configuração."]},"Delete":{"*":["Excluir"]},"WebApp deleted successfully":{"*":["WebApp excluído com sucesso"]},"Remove All":{"*":["Remover Tudo"]},"All WebApps have been removed":{"*":["Todos os WebApps foram removidos."]},"Failed to remove all WebApps":{"*":["Falha ao remover todos os WebApps"]},"WebApps exported successfully":{"*":["WebApps exportados com sucesso"]},"No WebApps":{"*":["Sem WebApps"]},"Change browser":{"*":["Alterar navegador"]},"Edit":{"*":["Editar"]},"New WebApp":{"*":["Novo WebApp"]},"Icon":{"*":["Ícone"]},"App Mode":{"*":["Modo do App"]},"Separate Profile":{"*":["Perfil separado"]},"Select Icon":{"*":["Selecionar ícone"]},"Images":{"*":["Imagens"]},"ZIP files":{"*":["Arquivos ZIP"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Importados {imported}, duplicatas {dups} ignoradas"]},"Import failed":{"*":["Falha na importação"]},"Export failed":{"*":["Falha na exportação"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Isso irá deletar todos os webapps e suas entradas na área de trabalho. Esta ação não pode ser desfeita."]},"Browser changed":{"*":["Navegador alterado"]},"What are WebApps?":{"*":["O que são WebApps?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps são aplicações web que rodam em uma janela de navegador dedicada, proporcionando uma experiência mais parecida com um aplicativo para seus sites favoritos."]},"Benefits of using WebApps:":{"*":["Benefícios de usar WebApps:"]},"Focus":{"*":["Foco"]},"Work without the distractions of other browser tabs":{"*":["Trabalhe sem as distrações de outras abas do navegador"]},"Desktop Integration":{"*":["Integração com a Área de Trabalho"]},"Quick access from your application menu":{"*":["Acesso rápido pelo menu de aplicativos"]},"Isolated Profiles":{"*":["Perfis Isolados"]},"Each webapp can have its own cookies and settings":{"*":["Cada webapp pode ter seus próprios cookies e configurações"]},"Back":{"*":["Voltar"]},"Forward":{"*":["Avançar"]},"Reload":{"*":["Recarregar"]},"Fullscreen":{"*":["Tela cheia"]},"Enter URL…":{"*":["Digite o URL…"]},"Zoom In":{"*":["Aumentar Zoom"]},"Zoom Out":{"*":["Diminuir Zoom"]},"Reset Zoom":{"*":["Redefinir Zoom"]},"Developer Tools":{"*":["Ferramentas do Desenvolvedor"]},"Menu":{"*":["Menu"]},"Open Link in Browser":{"*":["Abrir Link no Navegador"]},"Download Complete":{"*":["Download Concluído"]},"Save File":{"*":["Salvar Arquivo"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/pt.po b/biglinux-webapps/locale/pt.po index b2b381bc..b20d0f61 100644 --- a/biglinux-webapps/locale/pt.po +++ b/biglinux-webapps/locale/pt.po @@ -14,7 +14,6 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -24,31 +23,26 @@ msgstr "" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Modelos" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Escolha um Modelo" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Pesquisar modelos..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Resultados da Pesquisa" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Nenhum modelo encontrado" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -60,13 +54,11 @@ msgstr "Nenhum modelo encontrado" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Editar WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Excluir WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 # File: biglinux-webapps/biglinux- @@ -75,25 +67,21 @@ msgstr "Excluir WebApp" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Bem-vindo ao Gerenciador de WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Não mostrar isso novamente" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Vamos começar" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Selecionar Navegador" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -106,7 +94,6 @@ msgstr "Selecionar Navegador" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Cancelar" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -119,7 +106,6 @@ msgstr "Cancelar" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Selecionar" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -133,7 +119,6 @@ msgstr "Selecionar" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "OK" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -145,19 +130,16 @@ msgstr "OK" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Adicionar WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Detectar nome e ícone do site" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 # File: biglinux-webapps/biglinux- @@ -165,38 +147,32 @@ msgstr "Detectar nome e ícone do site" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Nome" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Categoria" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Abre como uma janela nativa sem interface de navegador." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 #. -- Browser row (hidden in app mode) -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Navegador" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Permite cookies e sessões independentes" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Nome do Perfil" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -206,52 +182,44 @@ msgstr "Nome do Perfil" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Salvar" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Carregando..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "Gerenciador de WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Pesquisar WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Exportar WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Importar WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Navegar na Pasta de Aplicativos" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Navegar na Pasta de Perfis" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 # File: biglinux-webapps/biglinux- @@ -260,31 +228,26 @@ msgstr "Navegar na Pasta de Perfis" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Remover Todos os WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "Sobre" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Adicione um novo aplicativo web para começar." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "WebApp criado com sucesso" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "WebApp atualizado com sucesso" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -294,101 +257,81 @@ msgstr "WebApp atualizado com sucesso" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Também exclua a pasta de configuração." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Excluir" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "WebApp excluído com sucesso" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Remover Tudo" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Todos os WebApps foram removidos." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Falha ao remover todos os WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebApps exportados com sucesso" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Sem WebApps" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 msgid "Change browser" msgstr "Alterar navegador" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 msgid "Edit" msgstr "Editar" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "New WebApp" msgstr "Novo WebApp" - #. -- Icon row -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 msgid "Icon" msgstr "Ícone" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 msgid "App Mode" msgstr "Modo do App" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 msgid "Separate Profile" msgstr "Perfil separado" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 msgid "Select Icon" msgstr "Selecionar ícone" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 msgid "Images" msgstr "Imagens" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 msgid "ZIP files" msgstr "Arquivos ZIP" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 #, rust-format msgid "Imported {imported}, skipped {dups} duplicates" msgstr "Importados {imported}, duplicatas {dups} ignoradas" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 msgid "Import failed" msgstr "Falha na importação" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 msgid "Export failed" msgstr "Falha na exportação" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 msgid "" "This will delete all webapps and their desktop entries. This cannot be " @@ -396,15 +339,12 @@ msgid "" msgstr "" "Isso irá deletar todos os webapps e suas entradas na área de trabalho. Esta " "ação não pode ser desfeita." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 msgid "Browser changed" msgstr "Navegador alterado" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 msgid "What are WebApps?" msgstr "O que são WebApps?" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 msgid "" "WebApps are web applications that run in a dedicated browser window, " @@ -413,110 +353,85 @@ msgstr "" "WebApps são aplicações web que rodam em uma janela de navegador dedicada, " "proporcionando uma experiência mais parecida com um aplicativo para seus " "sites favoritos." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 msgid "Benefits of using WebApps:" msgstr "Benefícios de usar WebApps:" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Focus" msgstr "Foco" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Work without the distractions of other browser tabs" msgstr "Trabalhe sem as distrações de outras abas do navegador" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Desktop Integration" msgstr "Integração com a Área de Trabalho" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Quick access from your application menu" msgstr "Acesso rápido pelo menu de aplicativos" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Isolated Profiles" msgstr "Perfis Isolados" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Each webapp can have its own cookies and settings" msgstr "Cada webapp pode ter seus próprios cookies e configurações" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 msgid "Back" msgstr "Voltar" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 msgid "Forward" msgstr "Avançar" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 msgid "Reload" msgstr "Recarregar" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 msgid "Fullscreen" msgstr "Tela cheia" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 msgid "Enter URL…" msgstr "Digite o URL…" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 msgid "Zoom In" msgstr "Aumentar Zoom" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 msgid "Zoom Out" msgstr "Diminuir Zoom" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 msgid "Reset Zoom" msgstr "Redefinir Zoom" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 msgid "Developer Tools" msgstr "Ferramentas do Desenvolvedor" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 msgid "Menu" msgstr "Menu" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 msgid "Open Link in Browser" msgstr "Abrir Link no Navegador" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 msgid "Download Complete" msgstr "Download Concluído" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 msgid "Save File" msgstr "Salvar Arquivo" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 #~ msgid "Search templates" #~ msgstr "Pesquisar modelos" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 #, python-brace-format #~ msgid "Browser: {0}" #~ msgstr "Navegador: {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 #, python-brace-format #~ msgid "Edit {0}" #~ msgstr "Editar {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 #, python-brace-format #~ msgid "Delete {0}" #~ msgstr "Excluir {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 #~ msgid "" @@ -539,12 +454,10 @@ msgstr "Salvar Arquivo" #~ "• Foco: Trabalhe sem as distrações de outras abas do navegador\n" #~ "• Integração com a Área de Trabalho: Acesso rápido a partir do menu de aplicativos\n" #~ "• Perfis Isolados: Opcionalmente, cada webapp pode ter seus próprios cookies e configurações\n" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 #~ msgid "System Default" #~ msgstr "Padrão do Sistema" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -563,12 +476,10 @@ msgstr "Salvar Arquivo" # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 #~ msgid "Default" #~ msgstr "Padrão" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 #~ msgid "Please select a browser." #~ msgstr "Por favor, selecione um navegador." - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -577,49 +488,40 @@ msgstr "Salvar Arquivo" # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 #~ msgid "Error" #~ msgstr "Erro" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 #~ msgid "Choose from templates" #~ msgstr "Escolha entre modelos" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 #~ msgid "Detect" #~ msgstr "Detectar" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 #~ msgid "App Icon" #~ msgstr "Ícone do Aplicativo" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 #~ msgid "Select icon for the WebApp" #~ msgstr "Selecione o ícone para o WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 #~ msgid "Available Icons" #~ msgstr "Ícones Disponíveis" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 #~ msgid "Application Mode" #~ msgstr "Modo de Aplicativo" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 #~ msgid "Profile Settings" #~ msgstr "Configurações de Perfil" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 #~ msgid "Configure a separate browser profile for this webapp" #~ msgstr "Configure um perfil de navegador separado para este aplicativo web." - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -628,63 +530,51 @@ msgstr "Salvar Arquivo" # #~ msgid "Use separate profile" #~ msgstr "Use perfil separado" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 #~ msgid "Detecting website information, please wait" #~ msgstr "Detectando informações do site, por favor aguarde" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 #~ msgid "Please enter a URL first." #~ msgstr "Por favor, insira uma URL primeiro." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 #~ msgid "Please enter a name for the WebApp." #~ msgstr "Por favor, insira um nome para o WebApp." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 #~ msgid "Please enter a URL for the WebApp." #~ msgstr "Por favor, insira uma URL para o WebApp." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 #~ msgid "Please select a browser for the WebApp." #~ msgstr "Por favor, selecione um navegador para o WebApp." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 #~ msgid "Main Menu" #~ msgstr "Menu Principal" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 #~ msgid "Refresh" #~ msgstr "Atualizar" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 #~ msgid "Show Welcome Screen" #~ msgstr "Mostrar Tela de Boas-Vindas" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 #~ msgid "Add" #~ msgstr "Adicionar" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 #~ msgid "No WebApps Found" #~ msgstr "Nenhum WebApp encontrado" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 #, python-brace-format #~ msgid "Browser changed to {0}" #~ msgstr "Navegador alterado para {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 #, python-brace-format @@ -698,12 +588,10 @@ msgstr "Salvar Arquivo" #~ "\n" #~ "URL: {1}\n" #~ "Navegador: {2}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 #~ msgid "REMOVE ALL" #~ msgstr "REMOVER TUDO" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 #, python-brace-format @@ -715,48 +603,39 @@ msgstr "Salvar Arquivo" #~ "Você tem certeza de que deseja remover todos os seus WebApps? Esta ação não pode ser desfeita.\n" #~ "\n" #~ "Digite \"{0}\" para confirmar." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 #, python-brace-format #~ msgid "Icon {0} of {1}" #~ msgstr "Ícone {0} de {1}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #~ msgid "There are no WebApps to export." #~ msgstr "Não há WebApps para exportar." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 #~ msgid "The selected file does not exist." #~ msgstr "O arquivo selecionado não existe." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 #~ msgid "The selected file is not a valid ZIP archive." #~ msgstr "O arquivo selecionado não é um arquivo ZIP válido." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 #~ msgid "Error importing WebApps" #~ msgstr "Erro ao importar WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 #~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" #~ msgstr "WebApps importados com sucesso ({} duplicatas ignoradas)" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 #~ msgid "Imported {} WebApps successfully" #~ msgstr "WebApps {} importados com sucesso" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 #~ msgid "No" #~ msgstr "Não" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 #~ msgid "Yes" diff --git a/biglinux-webapps/locale/ro.json b/biglinux-webapps/locale/ro.json new file mode 100644 index 00000000..800cabd2 --- /dev/null +++ b/biglinux-webapps/locale/ro.json @@ -0,0 +1 @@ +{"ro":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Șabloane"]},"Choose a Template":{"*":["Alegeți un șablon"]},"Search templates...":{"*":["Caută șabloane..."]},"Search Results":{"*":["Rezultatele căutării"]},"No templates found":{"*":["Nu au fost găsite șabloane."]},"Edit WebApp":{"*":["Editare WebApp"]},"Delete WebApp":{"*":["Șterge aplicația web"]},"Welcome to WebApps Manager":{"*":["Bine ați venit la Managerul de WebApps"]},"Don't show this again":{"*":["Nu mai arăta asta."]},"Let's Start":{"*":["Să începem"]},"Select Browser":{"*":["Selectați browserul"]},"Cancel":{"*":["Anulează"]},"Select":{"*":["Selectați"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Adaugă WebApp"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Detectați numele și pictograma de pe site."]},"Name":{"*":["Nume"]},"Category":{"*":["Categorie"]},"Opens as a native window without browser interface":{"*":["Se deschide ca o fereastră nativă fără interfață de browser."]},"Browser":{"*":["Browser"]},"Allows independent cookies and sessions":{"*":["Permite cookie-uri și sesiuni independente"]},"Profile Name":{"*":["Nume profil"]},"Save":{"*":["Salvează"]},"Loading...":{"*":["Se încarcă..."]},"WebApps Manager":{"*":["Manager aplicații web"]},"Search WebApps":{"*":["Caută WebApps"]},"Export WebApps":{"*":["Exportați aplicațiile web"]},"Import WebApps":{"*":["Importați aplicații web"]},"Browse Applications Folder":{"*":["Răsfoiește folderul Aplicații"]},"Browse Profiles Folder":{"*":["Răsfoiește folderul Profiluri"]},"Remove All WebApps":{"*":["Elimină toate aplicațiile web"]},"About":{"*":["Despre"]},"Add a new webapp to get started":{"*":["Adăugați o nouă aplicație web pentru a începe."]},"WebApp created successfully":{"*":["WebApp creat cu succes"]},"WebApp updated successfully":{"*":["WebApp actualizat cu succes"]},"Also delete configuration folder":{"*":["Dezinstalează și folderul de configurare."]},"Delete":{"*":["Șterge"]},"WebApp deleted successfully":{"*":["WebApp șters cu succes"]},"Remove All":{"*":["Elimină tot"]},"All WebApps have been removed":{"*":["Toate aplicațiile web au fost eliminate."]},"Failed to remove all WebApps":{"*":["Nu s-au putut elimina toate aplicațiile web."]},"WebApps exported successfully":{"*":["WebApps exportate cu succes"]},"No WebApps":{"*":["Fără aplicații web"]},"Change browser":{"*":["Schimbă browser"]},"Edit":{"*":["Editează"]},"New WebApp":{"*":["WebApp nou"]},"Icon":{"*":["Pictogramă"]},"App Mode":{"*":["Modul aplicație"]},"Separate Profile":{"*":["Profil separat"]},"Select Icon":{"*":["Selectează pictogramă"]},"Images":{"*":["Imagini"]},"ZIP files":{"*":["Fișiere ZIP"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Importate {imported}, sărite {dups} duplicate"]},"Import failed":{"*":["Importul a eșuat"]},"Export failed":{"*":["Exportul a eșuat"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Aceasta va șterge toate webapps-urile și intrările lor de pe desktop. Această acțiune nu poate fi anulată."]},"Browser changed":{"*":["Browserul a fost schimbat"]},"What are WebApps?":{"*":["Ce sunt WebApps?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps sunt aplicații web care rulează într-o fereastră de browser dedicată, oferind o experiență mai asemănătoare unei aplicații pentru site-urile tale preferate."]},"Benefits of using WebApps:":{"*":["Beneficiile utilizării WebApps:"]},"Focus":{"*":["Concentrare"]},"Work without the distractions of other browser tabs":{"*":["Lucrează fără distragerile altor file de browser"]},"Desktop Integration":{"*":["Integrare pe desktop"]},"Quick access from your application menu":{"*":["Acces rapid din meniul aplicațiilor"]},"Isolated Profiles":{"*":["Profiluri izolate"]},"Each webapp can have its own cookies and settings":{"*":["Fiecare webapp poate avea propriile cookie-uri și setări"]},"Back":{"*":["Înapoi"]},"Forward":{"*":["Înainte"]},"Reload":{"*":["Reîncarcă"]},"Fullscreen":{"*":["Ecran complet"]},"Enter URL…":{"*":["Introdu URL…"]},"Zoom In":{"*":["Mărește"]},"Zoom Out":{"*":["Micșorează"]},"Reset Zoom":{"*":["Resetează zoom-ul"]},"Developer Tools":{"*":["Instrumente pentru dezvoltatori"]},"Menu":{"*":["Meniu"]},"Open Link in Browser":{"*":["Deschide linkul în browser"]},"Download Complete":{"*":["Descărcare completă"]},"Save File":{"*":["Salvează fișierul"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/ro.po b/biglinux-webapps/locale/ro.po index 6b992ca5..60c838d7 100644 --- a/biglinux-webapps/locale/ro.po +++ b/biglinux-webapps/locale/ro.po @@ -14,7 +14,6 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -24,31 +23,26 @@ msgstr "" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Șabloane" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Alegeți un șablon" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Caută șabloane..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Rezultatele căutării" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Nu au fost găsite șabloane." - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -60,13 +54,11 @@ msgstr "Nu au fost găsite șabloane." #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Editare WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Șterge aplicația web" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 # File: biglinux-webapps/biglinux- @@ -75,25 +67,21 @@ msgstr "Șterge aplicația web" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Bine ați venit la Managerul de WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Nu mai arăta asta." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Să începem" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Selectați browserul" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -106,7 +94,6 @@ msgstr "Selectați browserul" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Anulează" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -119,7 +106,6 @@ msgstr "Anulează" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Selectați" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -133,7 +119,6 @@ msgstr "Selectați" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "OK" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -145,19 +130,16 @@ msgstr "OK" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Adaugă WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Detectați numele și pictograma de pe site." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 # File: biglinux-webapps/biglinux- @@ -165,38 +147,32 @@ msgstr "Detectați numele și pictograma de pe site." #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Nume" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Categorie" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Se deschide ca o fereastră nativă fără interfață de browser." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 #. -- Browser row (hidden in app mode) -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Browser" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Permite cookie-uri și sesiuni independente" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Nume profil" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -206,52 +182,44 @@ msgstr "Nume profil" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Salvează" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Se încarcă..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "Manager aplicații web" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Caută WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Exportați aplicațiile web" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Importați aplicații web" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Răsfoiește folderul Aplicații" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Răsfoiește folderul Profiluri" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 # File: biglinux-webapps/biglinux- @@ -260,31 +228,26 @@ msgstr "Răsfoiește folderul Profiluri" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Elimină toate aplicațiile web" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "Despre" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Adăugați o nouă aplicație web pentru a începe." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "WebApp creat cu succes" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "WebApp actualizat cu succes" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -294,101 +257,81 @@ msgstr "WebApp actualizat cu succes" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Dezinstalează și folderul de configurare." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Șterge" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "WebApp șters cu succes" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Elimină tot" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Toate aplicațiile web au fost eliminate." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Nu s-au putut elimina toate aplicațiile web." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebApps exportate cu succes" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Fără aplicații web" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 msgid "Change browser" msgstr "Schimbă browser" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 msgid "Edit" msgstr "Editează" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "New WebApp" msgstr "WebApp nou" - #. -- Icon row -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 msgid "Icon" msgstr "Pictogramă" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 msgid "App Mode" msgstr "Modul aplicație" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 msgid "Separate Profile" msgstr "Profil separat" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 msgid "Select Icon" msgstr "Selectează pictogramă" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 msgid "Images" msgstr "Imagini" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 msgid "ZIP files" msgstr "Fișiere ZIP" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 #, rust-format msgid "Imported {imported}, skipped {dups} duplicates" msgstr "Importate {imported}, sărite {dups} duplicate" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 msgid "Import failed" msgstr "Importul a eșuat" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 msgid "Export failed" msgstr "Exportul a eșuat" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 msgid "" "This will delete all webapps and their desktop entries. This cannot be " @@ -396,15 +339,12 @@ msgid "" msgstr "" "Aceasta va șterge toate webapps-urile și intrările lor de pe desktop. " "Această acțiune nu poate fi anulată." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 msgid "Browser changed" msgstr "Browserul a fost schimbat" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 msgid "What are WebApps?" msgstr "Ce sunt WebApps?" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 msgid "" "WebApps are web applications that run in a dedicated browser window, " @@ -413,110 +353,85 @@ msgstr "" "WebApps sunt aplicații web care rulează într-o fereastră de browser " "dedicată, oferind o experiență mai asemănătoare unei aplicații pentru site-" "urile tale preferate." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 msgid "Benefits of using WebApps:" msgstr "Beneficiile utilizării WebApps:" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Focus" msgstr "Concentrare" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Work without the distractions of other browser tabs" msgstr "Lucrează fără distragerile altor file de browser" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Desktop Integration" msgstr "Integrare pe desktop" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Quick access from your application menu" msgstr "Acces rapid din meniul aplicațiilor" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Isolated Profiles" msgstr "Profiluri izolate" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Each webapp can have its own cookies and settings" msgstr "Fiecare webapp poate avea propriile cookie-uri și setări" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 msgid "Back" msgstr "Înapoi" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 msgid "Forward" msgstr "Înainte" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 msgid "Reload" msgstr "Reîncarcă" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 msgid "Fullscreen" msgstr "Ecran complet" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 msgid "Enter URL…" msgstr "Introdu URL…" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 msgid "Zoom In" msgstr "Mărește" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 msgid "Zoom Out" msgstr "Micșorează" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 msgid "Reset Zoom" msgstr "Resetează zoom-ul" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 msgid "Developer Tools" msgstr "Instrumente pentru dezvoltatori" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 msgid "Menu" msgstr "Meniu" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 msgid "Open Link in Browser" msgstr "Deschide linkul în browser" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 msgid "Download Complete" msgstr "Descărcare completă" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 msgid "Save File" msgstr "Salvează fișierul" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 #~ msgid "Search templates" #~ msgstr "Caută șabloane" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 #, python-brace-format #~ msgid "Browser: {0}" #~ msgstr "Browser: {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 #, python-brace-format #~ msgid "Edit {0}" #~ msgstr "Editează {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 #, python-brace-format #~ msgid "Delete {0}" #~ msgstr "Șterge {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 #~ msgid "" @@ -539,12 +454,10 @@ msgstr "Salvează fișierul" #~ "• Concentrare: Lucrează fără distragerile altor tab-uri de browser\n" #~ "• Integrare pe desktop: Acces rapid din meniul aplicației tale\n" #~ "• Profiluri izolate: Opțional, fiecare webapp poate avea propriile sale cookie-uri și setări\n" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 #~ msgid "System Default" #~ msgstr "Implicit sistem" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -563,12 +476,10 @@ msgstr "Salvează fișierul" # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 #~ msgid "Default" #~ msgstr "Implicit" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 #~ msgid "Please select a browser." #~ msgstr "Vă rugăm să selectați un browser." - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -577,50 +488,41 @@ msgstr "Salvează fișierul" # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 #~ msgid "Error" #~ msgstr "Eroare" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 #~ msgid "Choose from templates" #~ msgstr "Alege din șabloane" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 #~ msgid "Detect" #~ msgstr "Detecta" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 #~ msgid "App Icon" #~ msgstr "Pictograma aplicație" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 #~ msgid "Select icon for the WebApp" #~ msgstr "Selectați pictograma pentru WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 #~ msgid "Available Icons" #~ msgstr "Iconi disponibile" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 #~ msgid "Application Mode" #~ msgstr "Mod de aplicație" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 #~ msgid "Profile Settings" #~ msgstr "Setări profil" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 #~ msgid "Configure a separate browser profile for this webapp" #~ msgstr "" #~ "Configurează un profil de browser separat pentru această aplicație web." - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -629,63 +531,51 @@ msgstr "Salvează fișierul" # #~ msgid "Use separate profile" #~ msgstr "Utilizați un profil separat" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 #~ msgid "Detecting website information, please wait" #~ msgstr "Detectarea informațiilor site-ului, vă rugăm să așteptați" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 #~ msgid "Please enter a URL first." #~ msgstr "Vă rugăm să introduceți mai întâi un URL." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 #~ msgid "Please enter a name for the WebApp." #~ msgstr "Vă rugăm să introduceți un nume pentru WebApp." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 #~ msgid "Please enter a URL for the WebApp." #~ msgstr "Vă rugăm să introduceți un URL pentru WebApp." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 #~ msgid "Please select a browser for the WebApp." #~ msgstr "Vă rugăm să selectați un browser pentru WebApp." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 #~ msgid "Main Menu" #~ msgstr "Meniu Principal" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 #~ msgid "Refresh" #~ msgstr "Actualizează" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 #~ msgid "Show Welcome Screen" #~ msgstr "Afișează Ecranul de Bun Venit" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 #~ msgid "Add" #~ msgstr "Adaugă" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 #~ msgid "No WebApps Found" #~ msgstr "Nu au fost găsite aplicații web." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 #, python-brace-format #~ msgid "Browser changed to {0}" #~ msgstr "Browserul a fost schimbat în {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 #, python-brace-format @@ -699,12 +589,10 @@ msgstr "Salvează fișierul" #~ "\n" #~ "URL: {1}\n" #~ "Browser: {2}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 #~ msgid "REMOVE ALL" #~ msgstr "ELIMINARE TOTUL" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 #, python-brace-format @@ -716,48 +604,39 @@ msgstr "Salvează fișierul" #~ "Ești sigur că vrei să ștergi toate aplicațiile tale web? Această acțiune nu poate fi anulată.\n" #~ "\n" #~ "Scrie \"{0}\" pentru a confirma." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 #, python-brace-format #~ msgid "Icon {0} of {1}" #~ msgstr "Icon {0} din {1}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #~ msgid "There are no WebApps to export." #~ msgstr "Nu există WebApps de exportat." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 #~ msgid "The selected file does not exist." #~ msgstr "Fișierul selectat nu există." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 #~ msgid "The selected file is not a valid ZIP archive." #~ msgstr "Fișierul selectat nu este un arhivă ZIP validă." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 #~ msgid "Error importing WebApps" #~ msgstr "Eroare la importarea WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 #~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" #~ msgstr "WebApps importate cu succes ({} duplicate omise)" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 #~ msgid "Imported {} WebApps successfully" #~ msgstr "WebApps {} importate cu succes" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 #~ msgid "No" #~ msgstr "Nu" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 #~ msgid "Yes" diff --git a/biglinux-webapps/locale/ru.json b/biglinux-webapps/locale/ru.json new file mode 100644 index 00000000..fbd577c0 --- /dev/null +++ b/biglinux-webapps/locale/ru.json @@ -0,0 +1 @@ +{"ru":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Шаблоны"]},"Choose a Template":{"*":["Выберите шаблон"]},"Search templates...":{"*":["Поиск шаблонов..."]},"Search Results":{"*":["Результаты поиска"]},"No templates found":{"*":["Шаблоны не найдены"]},"Edit WebApp":{"*":["Редактировать веб-приложение"]},"Delete WebApp":{"*":["Удалить WebApp"]},"Welcome to WebApps Manager":{"*":["Добро пожаловать в WebApps Manager"]},"Don't show this again":{"*":["Больше не показывать это снова"]},"Let's Start":{"*":["Давайте начнем"]},"Select Browser":{"*":["Выберите браузер"]},"Cancel":{"*":["Отмена"]},"Select":{"*":["Выбрать"]},"OK":{"*":["ОК"]},"Add WebApp":{"*":["Добавить веб-приложение"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Обнаружить имя и значок с веб-сайта"]},"Name":{"*":["Имя"]},"Category":{"*":["Категория"]},"Opens as a native window without browser interface":{"*":["Открывается как родное окно без интерфейса браузера"]},"Browser":{"*":["Браузер"]},"Allows independent cookies and sessions":{"*":["Разрешает независимые куки и сессии"]},"Profile Name":{"*":["Имя профиля"]},"Save":{"*":["Сохранить"]},"Loading...":{"*":["Загрузка..."]},"WebApps Manager":{"*":["Менеджер веб-приложений"]},"Search WebApps":{"*":["Поиск веб-приложений"]},"Export WebApps":{"*":["Экспорт веб-приложений"]},"Import WebApps":{"*":["Импортировать веб-приложения"]},"Browse Applications Folder":{"*":["Просмотреть папку приложений"]},"Browse Profiles Folder":{"*":["Просмотреть папку профилей"]},"Remove All WebApps":{"*":["Удалить все веб-приложения"]},"About":{"*":["О программе"]},"Add a new webapp to get started":{"*":["Добавьте новое веб-приложение, чтобы начать."]},"WebApp created successfully":{"*":["Веб-приложение успешно создано"]},"WebApp updated successfully":{"*":["Веб-приложение успешно обновлено"]},"Also delete configuration folder":{"*":["Также удалите папку конфигурации"]},"Delete":{"*":["Удалить"]},"WebApp deleted successfully":{"*":["Веб-приложение успешно удалено"]},"Remove All":{"*":["Удалить все"]},"All WebApps have been removed":{"*":["Все веб-приложения были удалены."]},"Failed to remove all WebApps":{"*":["Не удалось удалить все веб-приложения."]},"WebApps exported successfully":{"*":["WebApps успешно экспортированы"]},"No WebApps":{"*":["Нет веб-приложений"]},"Change browser":{"*":["Изменить браузер"]},"Edit":{"*":["Редактировать"]},"New WebApp":{"*":["Новое WebApp"]},"Icon":{"*":["Значок"]},"App Mode":{"*":["Режим приложения"]},"Separate Profile":{"*":["Отдельный профиль"]},"Select Icon":{"*":["Выбрать значок"]},"Images":{"*":["Изображения"]},"ZIP files":{"*":["ZIP-файлы"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Импортировано {imported}, пропущено {dups} дубликатов"]},"Import failed":{"*":["Ошибка импорта"]},"Export failed":{"*":["Ошибка экспорта"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Это удалит все webapps и их записи на рабочем столе. Это действие нельзя отменить."]},"Browser changed":{"*":["Браузер изменён"]},"What are WebApps?":{"*":["Что такое WebApps?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps — это веб-приложения, которые работают в отдельном окне браузера, обеспечивая более похожий на приложение опыт для ваших любимых сайтов."]},"Benefits of using WebApps:":{"*":["Преимущества использования WebApps:"]},"Focus":{"*":["Фокус"]},"Work without the distractions of other browser tabs":{"*":["Работа без отвлечений от других вкладок браузера"]},"Desktop Integration":{"*":["Интеграция с рабочим столом"]},"Quick access from your application menu":{"*":["Быстрый доступ из меню приложений"]},"Isolated Profiles":{"*":["Изолированные профили"]},"Each webapp can have its own cookies and settings":{"*":["Каждый WebApp может иметь свои собственные куки и настройки"]},"Back":{"*":["Назад"]},"Forward":{"*":["Вперед"]},"Reload":{"*":["Перезагрузить"]},"Fullscreen":{"*":["Полноэкранный режим"]},"Enter URL…":{"*":["Введите URL…"]},"Zoom In":{"*":["Увеличить"]},"Zoom Out":{"*":["Уменьшить"]},"Reset Zoom":{"*":["Сбросить масштаб"]},"Developer Tools":{"*":["Инструменты разработчика"]},"Menu":{"*":["Меню"]},"Open Link in Browser":{"*":["Открыть ссылку в браузере"]},"Download Complete":{"*":["Загрузка завершена"]},"Save File":{"*":["Сохранить файл"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/ru.po b/biglinux-webapps/locale/ru.po index 082d6c36..43eeb697 100644 --- a/biglinux-webapps/locale/ru.po +++ b/biglinux-webapps/locale/ru.po @@ -14,7 +14,6 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -24,31 +23,26 @@ msgstr "" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Шаблоны" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Выберите шаблон" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Поиск шаблонов..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Результаты поиска" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Шаблоны не найдены" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -60,13 +54,11 @@ msgstr "Шаблоны не найдены" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Редактировать веб-приложение" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Удалить WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 # File: biglinux-webapps/biglinux- @@ -75,25 +67,21 @@ msgstr "Удалить WebApp" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Добро пожаловать в WebApps Manager" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Больше не показывать это снова" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Давайте начнем" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Выберите браузер" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -106,7 +94,6 @@ msgstr "Выберите браузер" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Отмена" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -119,7 +106,6 @@ msgstr "Отмена" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Выбрать" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -133,7 +119,6 @@ msgstr "Выбрать" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "ОК" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -145,19 +130,16 @@ msgstr "ОК" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Добавить веб-приложение" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Обнаружить имя и значок с веб-сайта" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 # File: biglinux-webapps/biglinux- @@ -165,38 +147,32 @@ msgstr "Обнаружить имя и значок с веб-сайта" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Имя" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Категория" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Открывается как родное окно без интерфейса браузера" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 #. -- Browser row (hidden in app mode) -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Браузер" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Разрешает независимые куки и сессии" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Имя профиля" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -206,52 +182,44 @@ msgstr "Имя профиля" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Сохранить" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Загрузка..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "Менеджер веб-приложений" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Поиск веб-приложений" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Экспорт веб-приложений" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Импортировать веб-приложения" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Просмотреть папку приложений" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Просмотреть папку профилей" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 # File: biglinux-webapps/biglinux- @@ -260,31 +228,26 @@ msgstr "Просмотреть папку профилей" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Удалить все веб-приложения" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "О программе" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Добавьте новое веб-приложение, чтобы начать." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "Веб-приложение успешно создано" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "Веб-приложение успешно обновлено" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -294,101 +257,81 @@ msgstr "Веб-приложение успешно обновлено" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Также удалите папку конфигурации" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Удалить" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "Веб-приложение успешно удалено" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Удалить все" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Все веб-приложения были удалены." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Не удалось удалить все веб-приложения." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebApps успешно экспортированы" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Нет веб-приложений" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 msgid "Change browser" msgstr "Изменить браузер" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 msgid "Edit" msgstr "Редактировать" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "New WebApp" msgstr "Новое WebApp" - #. -- Icon row -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 msgid "Icon" msgstr "Значок" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 msgid "App Mode" msgstr "Режим приложения" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 msgid "Separate Profile" msgstr "Отдельный профиль" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 msgid "Select Icon" msgstr "Выбрать значок" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 msgid "Images" msgstr "Изображения" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 msgid "ZIP files" msgstr "ZIP-файлы" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 #, rust-format msgid "Imported {imported}, skipped {dups} duplicates" msgstr "Импортировано {imported}, пропущено {dups} дубликатов" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 msgid "Import failed" msgstr "Ошибка импорта" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 msgid "Export failed" msgstr "Ошибка экспорта" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 msgid "" "This will delete all webapps and their desktop entries. This cannot be " @@ -396,15 +339,12 @@ msgid "" msgstr "" "Это удалит все webapps и их записи на рабочем столе. Это действие нельзя " "отменить." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 msgid "Browser changed" msgstr "Браузер изменён" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 msgid "What are WebApps?" msgstr "Что такое WebApps?" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 msgid "" "WebApps are web applications that run in a dedicated browser window, " @@ -412,110 +352,85 @@ msgid "" msgstr "" "WebApps — это веб-приложения, которые работают в отдельном окне браузера, " "обеспечивая более похожий на приложение опыт для ваших любимых сайтов." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 msgid "Benefits of using WebApps:" msgstr "Преимущества использования WebApps:" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Focus" msgstr "Фокус" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Work without the distractions of other browser tabs" msgstr "Работа без отвлечений от других вкладок браузера" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Desktop Integration" msgstr "Интеграция с рабочим столом" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Quick access from your application menu" msgstr "Быстрый доступ из меню приложений" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Isolated Profiles" msgstr "Изолированные профили" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Each webapp can have its own cookies and settings" msgstr "Каждый WebApp может иметь свои собственные куки и настройки" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 msgid "Back" msgstr "Назад" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 msgid "Forward" msgstr "Вперед" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 msgid "Reload" msgstr "Перезагрузить" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 msgid "Fullscreen" msgstr "Полноэкранный режим" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 msgid "Enter URL…" msgstr "Введите URL…" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 msgid "Zoom In" msgstr "Увеличить" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 msgid "Zoom Out" msgstr "Уменьшить" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 msgid "Reset Zoom" msgstr "Сбросить масштаб" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 msgid "Developer Tools" msgstr "Инструменты разработчика" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 msgid "Menu" msgstr "Меню" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 msgid "Open Link in Browser" msgstr "Открыть ссылку в браузере" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 msgid "Download Complete" msgstr "Загрузка завершена" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 msgid "Save File" msgstr "Сохранить файл" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 #~ msgid "Search templates" #~ msgstr "Поиск шаблонов" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 #, python-brace-format #~ msgid "Browser: {0}" #~ msgstr "Браузер: {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 #, python-brace-format #~ msgid "Edit {0}" #~ msgstr "Редактировать {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 #, python-brace-format #~ msgid "Delete {0}" #~ msgstr "Удалить {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 #~ msgid "" @@ -538,12 +453,10 @@ msgstr "Сохранить файл" #~ "• Фокус: Работайте без отвлекающих факторов других вкладок браузера\n" #~ "• Интеграция с рабочим столом: Быстрый доступ из меню приложений\n" #~ "• Изолированные профили: При желании, каждое веб-приложение может иметь свои собственные куки и настройки\n" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 #~ msgid "System Default" #~ msgstr "Системный по умолчанию" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -562,12 +475,10 @@ msgstr "Сохранить файл" # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 #~ msgid "Default" #~ msgstr "По умолчанию" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 #~ msgid "Please select a browser." #~ msgstr "Пожалуйста, выберите браузер." - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -576,49 +487,40 @@ msgstr "Сохранить файл" # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 #~ msgid "Error" #~ msgstr "Ошибка" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 #~ msgid "Choose from templates" #~ msgstr "Выберите из шаблонов" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 #~ msgid "Detect" #~ msgstr "Обнаружить" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 #~ msgid "App Icon" #~ msgstr "Иконка приложения" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 #~ msgid "Select icon for the WebApp" #~ msgstr "Выберите значок для веб-приложения" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 #~ msgid "Available Icons" #~ msgstr "Доступные значки" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 #~ msgid "Application Mode" #~ msgstr "Режим приложения" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 #~ msgid "Profile Settings" #~ msgstr "Настройки профиля" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 #~ msgid "Configure a separate browser profile for this webapp" #~ msgstr "Настройте отдельный профиль браузера для этого веб-приложения." - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -627,63 +529,51 @@ msgstr "Сохранить файл" # #~ msgid "Use separate profile" #~ msgstr "Использовать отдельный профиль" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 #~ msgid "Detecting website information, please wait" #~ msgstr "Обнаружение информации о сайте, пожалуйста, подождите" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 #~ msgid "Please enter a URL first." #~ msgstr "Пожалуйста, сначала введите URL." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 #~ msgid "Please enter a name for the WebApp." #~ msgstr "Пожалуйста, введите имя для WebApp." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 #~ msgid "Please enter a URL for the WebApp." #~ msgstr "Пожалуйста, введите URL для WebApp." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 #~ msgid "Please select a browser for the WebApp." #~ msgstr "Пожалуйста, выберите браузер для WebApp." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 #~ msgid "Main Menu" #~ msgstr "Главное меню" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 #~ msgid "Refresh" #~ msgstr "Обновить" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 #~ msgid "Show Welcome Screen" #~ msgstr "Показать экран приветствия" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 #~ msgid "Add" #~ msgstr "Добавить" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 #~ msgid "No WebApps Found" #~ msgstr "Веб-приложения не найдены" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 #, python-brace-format #~ msgid "Browser changed to {0}" #~ msgstr "Браузер изменен на {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 #, python-brace-format @@ -697,12 +587,10 @@ msgstr "Сохранить файл" #~ "\n" #~ "URL: {1}\n" #~ "Браузер: {2}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 #~ msgid "REMOVE ALL" #~ msgstr "УДАЛИТЬ ВСЕ" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 #, python-brace-format @@ -714,48 +602,39 @@ msgstr "Сохранить файл" #~ "Вы уверены, что хотите удалить все свои веб-приложения? Это действие нельзя отменить.\n" #~ "\n" #~ "Введите \"{0}\", чтобы подтвердить." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 #, python-brace-format #~ msgid "Icon {0} of {1}" #~ msgstr "Иконка {0} из {1}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #~ msgid "There are no WebApps to export." #~ msgstr "Нет доступных WebApps для экспорта." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 #~ msgid "The selected file does not exist." #~ msgstr "Выбранный файл не существует." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 #~ msgid "The selected file is not a valid ZIP archive." #~ msgstr "Выбранный файл не является действительным ZIP-архивом." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 #~ msgid "Error importing WebApps" #~ msgstr "Ошибка импорта WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 #~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" #~ msgstr "Импортировано {} WebApps успешно (пропущено {} дубликатов)" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 #~ msgid "Imported {} WebApps successfully" #~ msgstr "Успешно импортированы {} WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 #~ msgid "No" #~ msgstr "Нет" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 #~ msgid "Yes" diff --git a/biglinux-webapps/locale/sk.json b/biglinux-webapps/locale/sk.json new file mode 100644 index 00000000..df7a6783 --- /dev/null +++ b/biglinux-webapps/locale/sk.json @@ -0,0 +1 @@ +{"sk":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Šablóny"]},"Choose a Template":{"*":["Vyberte šablónu"]},"Search templates...":{"*":["Hľadať šablóny..."]},"Search Results":{"*":["Výsledky vyhľadávania"]},"No templates found":{"*":["Žiadne šablóny nenájdené"]},"Edit WebApp":{"*":["Upraviť WebApp"]},"Delete WebApp":{"*":["Odstrániť WebApp"]},"Welcome to WebApps Manager":{"*":["Vitajte v správcovi webových aplikácií"]},"Don't show this again":{"*":["Nesúhlasím s týmto znovu zobraziť."]},"Let's Start":{"*":["Začnime"]},"Select Browser":{"*":["Vyberte prehliadač"]},"Cancel":{"*":["Zrušiť"]},"Select":{"*":["Vybrať"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Pridať WebApp"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Detekovať názov a ikonu z webovej stránky"]},"Name":{"*":["Názov"]},"Category":{"*":["Kategória"]},"Opens as a native window without browser interface":{"*":["Otvára sa ako natívne okno bez rozhrania prehliadača."]},"Browser":{"*":["Prehliadač"]},"Allows independent cookies and sessions":{"*":["Umožňuje nezávislé cookies a relácie"]},"Profile Name":{"*":["Názov profilu"]},"Save":{"*":["Uložiť"]},"Loading...":{"*":["Načítanie..."]},"WebApps Manager":{"*":["Správca webových aplikácií"]},"Search WebApps":{"*":["Hľadať WebApps"]},"Export WebApps":{"*":["Exportovať webové aplikácie"]},"Import WebApps":{"*":["Importovať webové aplikácie"]},"Browse Applications Folder":{"*":["Prehľadávať priečinok aplikácií"]},"Browse Profiles Folder":{"*":["Prehľadávať priečinok profilov"]},"Remove All WebApps":{"*":["Odstrániť všetky webové aplikácie"]},"About":{"*":["O aplikácii"]},"Add a new webapp to get started":{"*":["Pridajte novú webovú aplikáciu, aby ste mohli začať."]},"WebApp created successfully":{"*":["Webová aplikácia bola úspešne vytvorená."]},"WebApp updated successfully":{"*":["Webová aplikácia bola úspešne aktualizovaná."]},"Also delete configuration folder":{"*":["Taktiež odstráňte konfiguračný priečinok."]},"Delete":{"*":["Vymazať"]},"WebApp deleted successfully":{"*":["Webová aplikácia bola úspešne odstránená."]},"Remove All":{"*":["Odstrániť všetko"]},"All WebApps have been removed":{"*":["Všetky webové aplikácie boli odstránené."]},"Failed to remove all WebApps":{"*":["Nepodarilo sa odstrániť všetky WebApps."]},"WebApps exported successfully":{"*":["WebApps boli úspešne exportované"]},"No WebApps":{"*":["Žiadne webové aplikácie"]},"Change browser":{"*":["Zmeniť prehliadač"]},"Edit":{"*":["Upraviť"]},"New WebApp":{"*":["Nová WebApp"]},"Icon":{"*":["Ikona"]},"App Mode":{"*":["Režim aplikácie"]},"Separate Profile":{"*":["Samostatný profil"]},"Select Icon":{"*":["Vybrať ikonu"]},"Images":{"*":["Obrázky"]},"ZIP files":{"*":["ZIP súbory"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Importované {imported}, preskočené {dups} duplikáty"]},"Import failed":{"*":["Import zlyhal"]},"Export failed":{"*":["Export zlyhal"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Týmto sa vymažú všetky webové aplikácie a ich záznamy na ploche. Toto sa nedá vrátiť späť."]},"Browser changed":{"*":["Prehliadač zmenený"]},"What are WebApps?":{"*":["Čo sú WebApps?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps sú webové aplikácie, ktoré bežia v samostatnom okne prehliadača a poskytujú viac aplikácii podobný zážitok pre vaše obľúbené webové stránky."]},"Benefits of using WebApps:":{"*":["Výhody používania WebApps:"]},"Focus":{"*":["Sústreďte sa"]},"Work without the distractions of other browser tabs":{"*":["Pracujte bez rozptýlení z iných kariet prehliadača"]},"Desktop Integration":{"*":["Integrácia na pracovnú plochu"]},"Quick access from your application menu":{"*":["Rýchly prístup z vášho aplikačného menu"]},"Isolated Profiles":{"*":["Izolované profily"]},"Each webapp can have its own cookies and settings":{"*":["Každý webapp môže mať vlastné cookies a nastavenia"]},"Back":{"*":["Späť"]},"Forward":{"*":["Vpred"]},"Reload":{"*":["Obnoviť"]},"Fullscreen":{"*":["Celá obrazovka"]},"Enter URL…":{"*":["Zadajte URL…"]},"Zoom In":{"*":["Priblížiť"]},"Zoom Out":{"*":["Oddialiť"]},"Reset Zoom":{"*":["Obnoviť zväčšenie"]},"Developer Tools":{"*":["Nástroje pre vývojárov"]},"Menu":{"*":["Menu"]},"Open Link in Browser":{"*":["Otvoriť odkaz v prehliadači"]},"Download Complete":{"*":["Sťahovanie dokončené"]},"Save File":{"*":["Uložiť súbor"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/sk.po b/biglinux-webapps/locale/sk.po index db0a6d14..577b98b2 100644 --- a/biglinux-webapps/locale/sk.po +++ b/biglinux-webapps/locale/sk.po @@ -14,7 +14,6 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -24,31 +23,26 @@ msgstr "" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Šablóny" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Vyberte šablónu" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Hľadať šablóny..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Výsledky vyhľadávania" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Žiadne šablóny nenájdené" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -60,13 +54,11 @@ msgstr "Žiadne šablóny nenájdené" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Upraviť WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Odstrániť WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 # File: biglinux-webapps/biglinux- @@ -75,25 +67,21 @@ msgstr "Odstrániť WebApp" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Vitajte v správcovi webových aplikácií" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Nesúhlasím s týmto znovu zobraziť." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Začnime" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Vyberte prehliadač" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -106,7 +94,6 @@ msgstr "Vyberte prehliadač" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Zrušiť" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -119,7 +106,6 @@ msgstr "Zrušiť" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Vybrať" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -133,7 +119,6 @@ msgstr "Vybrať" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "OK" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -145,19 +130,16 @@ msgstr "OK" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Pridať WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Detekovať názov a ikonu z webovej stránky" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 # File: biglinux-webapps/biglinux- @@ -165,38 +147,32 @@ msgstr "Detekovať názov a ikonu z webovej stránky" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Názov" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Kategória" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Otvára sa ako natívne okno bez rozhrania prehliadača." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 #. -- Browser row (hidden in app mode) -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Prehliadač" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Umožňuje nezávislé cookies a relácie" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Názov profilu" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -206,52 +182,44 @@ msgstr "Názov profilu" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Uložiť" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Načítanie..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "Správca webových aplikácií" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Hľadať WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Exportovať webové aplikácie" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Importovať webové aplikácie" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Prehľadávať priečinok aplikácií" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Prehľadávať priečinok profilov" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 # File: biglinux-webapps/biglinux- @@ -260,31 +228,26 @@ msgstr "Prehľadávať priečinok profilov" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Odstrániť všetky webové aplikácie" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "O aplikácii" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Pridajte novú webovú aplikáciu, aby ste mohli začať." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "Webová aplikácia bola úspešne vytvorená." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "Webová aplikácia bola úspešne aktualizovaná." - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -294,101 +257,81 @@ msgstr "Webová aplikácia bola úspešne aktualizovaná." #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Taktiež odstráňte konfiguračný priečinok." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Vymazať" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "Webová aplikácia bola úspešne odstránená." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Odstrániť všetko" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Všetky webové aplikácie boli odstránené." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Nepodarilo sa odstrániť všetky WebApps." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebApps boli úspešne exportované" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Žiadne webové aplikácie" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 msgid "Change browser" msgstr "Zmeniť prehliadač" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 msgid "Edit" msgstr "Upraviť" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "New WebApp" msgstr "Nová WebApp" - #. -- Icon row -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 msgid "Icon" msgstr "Ikona" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 msgid "App Mode" msgstr "Režim aplikácie" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 msgid "Separate Profile" msgstr "Samostatný profil" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 msgid "Select Icon" msgstr "Vybrať ikonu" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 msgid "Images" msgstr "Obrázky" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 msgid "ZIP files" msgstr "ZIP súbory" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 #, rust-format msgid "Imported {imported}, skipped {dups} duplicates" msgstr "Importované {imported}, preskočené {dups} duplikáty" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 msgid "Import failed" msgstr "Import zlyhal" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 msgid "Export failed" msgstr "Export zlyhal" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 msgid "" "This will delete all webapps and their desktop entries. This cannot be " @@ -396,15 +339,12 @@ msgid "" msgstr "" "Týmto sa vymažú všetky webové aplikácie a ich záznamy na ploche. Toto sa " "nedá vrátiť späť." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 msgid "Browser changed" msgstr "Prehliadač zmenený" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 msgid "What are WebApps?" msgstr "Čo sú WebApps?" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 msgid "" "WebApps are web applications that run in a dedicated browser window, " @@ -412,110 +352,85 @@ msgid "" msgstr "" "WebApps sú webové aplikácie, ktoré bežia v samostatnom okne prehliadača a " "poskytujú viac aplikácii podobný zážitok pre vaše obľúbené webové stránky." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 msgid "Benefits of using WebApps:" msgstr "Výhody používania WebApps:" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Focus" msgstr "Sústreďte sa" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Work without the distractions of other browser tabs" msgstr "Pracujte bez rozptýlení z iných kariet prehliadača" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Desktop Integration" msgstr "Integrácia na pracovnú plochu" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Quick access from your application menu" msgstr "Rýchly prístup z vášho aplikačného menu" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Isolated Profiles" msgstr "Izolované profily" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Each webapp can have its own cookies and settings" msgstr "Každý webapp môže mať vlastné cookies a nastavenia" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 msgid "Back" msgstr "Späť" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 msgid "Forward" msgstr "Vpred" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 msgid "Reload" msgstr "Obnoviť" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 msgid "Fullscreen" msgstr "Celá obrazovka" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 msgid "Enter URL…" msgstr "Zadajte URL…" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 msgid "Zoom In" msgstr "Priblížiť" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 msgid "Zoom Out" msgstr "Oddialiť" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 msgid "Reset Zoom" msgstr "Obnoviť zväčšenie" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 msgid "Developer Tools" msgstr "Nástroje pre vývojárov" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 msgid "Menu" msgstr "Menu" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 msgid "Open Link in Browser" msgstr "Otvoriť odkaz v prehliadači" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 msgid "Download Complete" msgstr "Sťahovanie dokončené" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 msgid "Save File" msgstr "Uložiť súbor" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 #~ msgid "Search templates" #~ msgstr "Hľadať šablóny" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 #, python-brace-format #~ msgid "Browser: {0}" #~ msgstr "Prehliadač: {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 #, python-brace-format #~ msgid "Edit {0}" #~ msgstr "Upraviť {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 #, python-brace-format #~ msgid "Delete {0}" #~ msgstr "Odstrániť {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 #~ msgid "" @@ -538,12 +453,10 @@ msgstr "Uložiť súbor" #~ "• Fokus: Pracujte bez rozptýlenia od iných kariet prehliadača\n" #~ "• Integrácia s desktopom: Rýchly prístup z ponuky aplikácií\n" #~ "• Izolované profily: Voliteľne, každá webová aplikácia môže mať svoje vlastné cookies a nastavenia\n" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 #~ msgid "System Default" #~ msgstr "Predvolené nastavenie systému" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -562,12 +475,10 @@ msgstr "Uložiť súbor" # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 #~ msgid "Default" #~ msgstr "Predvolené" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 #~ msgid "Please select a browser." #~ msgstr "Vyberte prehliadač." - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -576,50 +487,41 @@ msgstr "Uložiť súbor" # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 #~ msgid "Error" #~ msgstr "Chyba" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 #~ msgid "Choose from templates" #~ msgstr "Vyberte z šablón" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 #~ msgid "Detect" #~ msgstr "Detekovať" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 #~ msgid "App Icon" #~ msgstr "Ikona aplikácie" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 #~ msgid "Select icon for the WebApp" #~ msgstr "Vyberte ikonu pre WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 #~ msgid "Available Icons" #~ msgstr "Dostupné ikony" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 #~ msgid "Application Mode" #~ msgstr "Režim aplikácie" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 #~ msgid "Profile Settings" #~ msgstr "Nastavenia profilu" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 #~ msgid "Configure a separate browser profile for this webapp" #~ msgstr "" #~ "Nakonfigurujte samostatný profil prehliadača pre túto webovú aplikáciu." - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -628,63 +530,51 @@ msgstr "Uložiť súbor" # #~ msgid "Use separate profile" #~ msgstr "Použite samostatný profil" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 #~ msgid "Detecting website information, please wait" #~ msgstr "Zisťovanie informácií o webovej stránke, prosím čakajte" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 #~ msgid "Please enter a URL first." #~ msgstr "Najprv zadajte URL." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 #~ msgid "Please enter a name for the WebApp." #~ msgstr "Zadajte názov pre WebApp." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 #~ msgid "Please enter a URL for the WebApp." #~ msgstr "Zadajte URL adresu pre WebApp." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 #~ msgid "Please select a browser for the WebApp." #~ msgstr "Vyberte pre WebApp prehliadač." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 #~ msgid "Main Menu" #~ msgstr "Hlavné menu" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 #~ msgid "Refresh" #~ msgstr "Obnoviť" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 #~ msgid "Show Welcome Screen" #~ msgstr "Zobraziť uvítaciu obrazovku" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 #~ msgid "Add" #~ msgstr "Pridať" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 #~ msgid "No WebApps Found" #~ msgstr "Nenašli sa žiadne webové aplikácie" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 #, python-brace-format #~ msgid "Browser changed to {0}" #~ msgstr "Prehliadač bol zmenený na {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 #, python-brace-format @@ -698,12 +588,10 @@ msgstr "Uložiť súbor" #~ "\n" #~ "URL: {1}\n" #~ "Prehliadač: {2}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 #~ msgid "REMOVE ALL" #~ msgstr "ODSTRÁNIŤ VŠETKO" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 #, python-brace-format @@ -715,48 +603,39 @@ msgstr "Uložiť súbor" #~ "Ste naozaj istí, že chcete odstrániť všetky svoje WebApps? Túto akciu nie je možné zrušiť.\n" #~ "\n" #~ "Napíšte \"{0}\" na potvrdenie." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 #, python-brace-format #~ msgid "Icon {0} of {1}" #~ msgstr "Ikona {0} z {1}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #~ msgid "There are no WebApps to export." #~ msgstr "Nie sú žiadne webové aplikácie na export." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 #~ msgid "The selected file does not exist." #~ msgstr "Vybraný súbor neexistuje." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 #~ msgid "The selected file is not a valid ZIP archive." #~ msgstr "Vybraný súbor nie je platný ZIP archív." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 #~ msgid "Error importing WebApps" #~ msgstr "Chyba pri importe WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 #~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" #~ msgstr "Úspešne importované {} WebApps ({} duplikáty preskočené)" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 #~ msgid "Imported {} WebApps successfully" #~ msgstr "Úspešne importované {} WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 #~ msgid "No" #~ msgstr "Nie" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 #~ msgid "Yes" diff --git a/biglinux-webapps/locale/sv.json b/biglinux-webapps/locale/sv.json new file mode 100644 index 00000000..3cd02dd2 --- /dev/null +++ b/biglinux-webapps/locale/sv.json @@ -0,0 +1 @@ +{"sv":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Mallar"]},"Choose a Template":{"*":["Välj en mall"]},"Search templates...":{"*":["Sök mallar..."]},"Search Results":{"*":["Sökresultat"]},"No templates found":{"*":["Inga mallar hittades"]},"Edit WebApp":{"*":["Redigera WebApp"]},"Delete WebApp":{"*":["Ta bort WebApp"]},"Welcome to WebApps Manager":{"*":["Välkommen till WebApps Manager"]},"Don't show this again":{"*":["Visa inte detta igen"]},"Let's Start":{"*":["Låt oss börja"]},"Select Browser":{"*":["Välj webbläsare"]},"Cancel":{"*":["Avbryt"]},"Select":{"*":["Välj"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Lägg till WebApp"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Detektera namn och ikon från webbplats."]},"Name":{"*":["Namn"]},"Category":{"*":["Kategori"]},"Opens as a native window without browser interface":{"*":["Öppnas som ett inbyggt fönster utan webbläsargränssnitt"]},"Browser":{"*":["Webbläsare"]},"Allows independent cookies and sessions":{"*":["Tillåter oberoende cookies och sessioner"]},"Profile Name":{"*":["Profilnamn"]},"Save":{"*":["Spara"]},"Loading...":{"*":["Laddar..."]},"WebApps Manager":{"*":["WebApps Hanterare"]},"Search WebApps":{"*":["Sök WebApps"]},"Export WebApps":{"*":["Exportera WebApps"]},"Import WebApps":{"*":["Importera WebApps"]},"Browse Applications Folder":{"*":["Bläddra i mappen Program"]},"Browse Profiles Folder":{"*":["Bläddra i profiler-mappen"]},"Remove All WebApps":{"*":["Ta bort alla webbappar"]},"About":{"*":["Om"]},"Add a new webapp to get started":{"*":["Lägg till en ny webbapp för att komma igång"]},"WebApp created successfully":{"*":["WebApp skapad framgångsrikt"]},"WebApp updated successfully":{"*":["WebApp uppdaterad framgångsrikt"]},"Also delete configuration folder":{"*":["Ta bort konfigurationsmappen också."]},"Delete":{"*":["Ta bort"]},"WebApp deleted successfully":{"*":["WebApp raderades framgångsrikt"]},"Remove All":{"*":["Ta bort allt"]},"All WebApps have been removed":{"*":["Alla WebApps har tagits bort."]},"Failed to remove all WebApps":{"*":["Misslyckades med att ta bort alla WebApps"]},"WebApps exported successfully":{"*":["WebApps exporterades framgångsrikt"]},"No WebApps":{"*":["Inga WebApps"]},"Change browser":{"*":["Byt webbläsare"]},"Edit":{"*":["Redigera"]},"New WebApp":{"*":["Ny WebApp"]},"Icon":{"*":["Ikon"]},"App Mode":{"*":["App-läge"]},"Separate Profile":{"*":["Separat profil"]},"Select Icon":{"*":["Välj ikon"]},"Images":{"*":["Bilder"]},"ZIP files":{"*":["ZIP-filer"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Importerade {imported}, hoppade över {dups} dubbletter"]},"Import failed":{"*":["Import misslyckades"]},"Export failed":{"*":["Export misslyckades"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Detta kommer att ta bort alla webappar och deras skrivbordsgenvägar. Detta kan inte ångras."]},"Browser changed":{"*":["Webbläsare ändrad"]},"What are WebApps?":{"*":["Vad är WebApps?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps är webbapplikationer som körs i ett dedikerat webbläsarfönster och ger en mer app-liknande upplevelse för dina favoritwebbplatser."]},"Benefits of using WebApps:":{"*":["Fördelar med att använda WebApps:"]},"Focus":{"*":["Fokus"]},"Work without the distractions of other browser tabs":{"*":["Arbeta utan distraktioner från andra webbläsarflikar"]},"Desktop Integration":{"*":["Skrivbordsintegration"]},"Quick access from your application menu":{"*":["Snabb åtkomst från din applikationsmeny"]},"Isolated Profiles":{"*":["Isolerade profiler"]},"Each webapp can have its own cookies and settings":{"*":["Varje webapp kan ha sina egna cookies och inställningar"]},"Back":{"*":["Tillbaka"]},"Forward":{"*":["Framåt"]},"Reload":{"*":["Ladda om"]},"Fullscreen":{"*":["Fullskärm"]},"Enter URL…":{"*":["Ange URL…"]},"Zoom In":{"*":["Zooma in"]},"Zoom Out":{"*":["Zooma ut"]},"Reset Zoom":{"*":["Återställ zoom"]},"Developer Tools":{"*":["Utvecklarverktyg"]},"Menu":{"*":["Meny"]},"Open Link in Browser":{"*":["Öppna länk i webbläsare"]},"Download Complete":{"*":["Nedladdning klar"]},"Save File":{"*":["Spara fil"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/sv.po b/biglinux-webapps/locale/sv.po index faaf85f7..7023a422 100644 --- a/biglinux-webapps/locale/sv.po +++ b/biglinux-webapps/locale/sv.po @@ -14,7 +14,6 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -24,31 +23,26 @@ msgstr "" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Mallar" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Välj en mall" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Sök mallar..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Sökresultat" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Inga mallar hittades" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -60,13 +54,11 @@ msgstr "Inga mallar hittades" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Redigera WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Ta bort WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 # File: biglinux-webapps/biglinux- @@ -75,25 +67,21 @@ msgstr "Ta bort WebApp" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Välkommen till WebApps Manager" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Visa inte detta igen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Låt oss börja" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Välj webbläsare" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -106,7 +94,6 @@ msgstr "Välj webbläsare" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Avbryt" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -119,7 +106,6 @@ msgstr "Avbryt" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Välj" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -133,7 +119,6 @@ msgstr "Välj" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "OK" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -145,19 +130,16 @@ msgstr "OK" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Lägg till WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Detektera namn och ikon från webbplats." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 # File: biglinux-webapps/biglinux- @@ -165,38 +147,32 @@ msgstr "Detektera namn och ikon från webbplats." #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Namn" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Kategori" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Öppnas som ett inbyggt fönster utan webbläsargränssnitt" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 #. -- Browser row (hidden in app mode) -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Webbläsare" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Tillåter oberoende cookies och sessioner" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Profilnamn" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -206,52 +182,44 @@ msgstr "Profilnamn" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Spara" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Laddar..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "WebApps Hanterare" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Sök WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Exportera WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Importera WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Bläddra i mappen Program" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Bläddra i profiler-mappen" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 # File: biglinux-webapps/biglinux- @@ -260,31 +228,26 @@ msgstr "Bläddra i profiler-mappen" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Ta bort alla webbappar" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "Om" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Lägg till en ny webbapp för att komma igång" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "WebApp skapad framgångsrikt" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "WebApp uppdaterad framgångsrikt" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -294,101 +257,81 @@ msgstr "WebApp uppdaterad framgångsrikt" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Ta bort konfigurationsmappen också." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Ta bort" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "WebApp raderades framgångsrikt" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Ta bort allt" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Alla WebApps har tagits bort." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Misslyckades med att ta bort alla WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebApps exporterades framgångsrikt" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Inga WebApps" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 msgid "Change browser" msgstr "Byt webbläsare" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 msgid "Edit" msgstr "Redigera" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "New WebApp" msgstr "Ny WebApp" - #. -- Icon row -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 msgid "Icon" msgstr "Ikon" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 msgid "App Mode" msgstr "App-läge" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 msgid "Separate Profile" msgstr "Separat profil" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 msgid "Select Icon" msgstr "Välj ikon" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 msgid "Images" msgstr "Bilder" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 msgid "ZIP files" msgstr "ZIP-filer" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 #, rust-format msgid "Imported {imported}, skipped {dups} duplicates" msgstr "Importerade {imported}, hoppade över {dups} dubbletter" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 msgid "Import failed" msgstr "Import misslyckades" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 msgid "Export failed" msgstr "Export misslyckades" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 msgid "" "This will delete all webapps and their desktop entries. This cannot be " @@ -396,15 +339,12 @@ msgid "" msgstr "" "Detta kommer att ta bort alla webappar och deras skrivbordsgenvägar. Detta " "kan inte ångras." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 msgid "Browser changed" msgstr "Webbläsare ändrad" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 msgid "What are WebApps?" msgstr "Vad är WebApps?" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 msgid "" "WebApps are web applications that run in a dedicated browser window, " @@ -412,110 +352,85 @@ msgid "" msgstr "" "WebApps är webbapplikationer som körs i ett dedikerat webbläsarfönster och " "ger en mer app-liknande upplevelse för dina favoritwebbplatser." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 msgid "Benefits of using WebApps:" msgstr "Fördelar med att använda WebApps:" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Focus" msgstr "Fokus" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Work without the distractions of other browser tabs" msgstr "Arbeta utan distraktioner från andra webbläsarflikar" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Desktop Integration" msgstr "Skrivbordsintegration" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Quick access from your application menu" msgstr "Snabb åtkomst från din applikationsmeny" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Isolated Profiles" msgstr "Isolerade profiler" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Each webapp can have its own cookies and settings" msgstr "Varje webapp kan ha sina egna cookies och inställningar" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 msgid "Back" msgstr "Tillbaka" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 msgid "Forward" msgstr "Framåt" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 msgid "Reload" msgstr "Ladda om" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 msgid "Fullscreen" msgstr "Fullskärm" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 msgid "Enter URL…" msgstr "Ange URL…" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 msgid "Zoom In" msgstr "Zooma in" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 msgid "Zoom Out" msgstr "Zooma ut" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 msgid "Reset Zoom" msgstr "Återställ zoom" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 msgid "Developer Tools" msgstr "Utvecklarverktyg" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 msgid "Menu" msgstr "Meny" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 msgid "Open Link in Browser" msgstr "Öppna länk i webbläsare" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 msgid "Download Complete" msgstr "Nedladdning klar" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 msgid "Save File" msgstr "Spara fil" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 #~ msgid "Search templates" #~ msgstr "Sök mallar" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 #, python-brace-format #~ msgid "Browser: {0}" #~ msgstr "Webbläsare: {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 #, python-brace-format #~ msgid "Edit {0}" #~ msgstr "Redigera {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 #, python-brace-format #~ msgid "Delete {0}" #~ msgstr "Ta bort {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 #~ msgid "" @@ -538,12 +453,10 @@ msgstr "Spara fil" #~ "• Fokus: Arbeta utan distraktioner från andra webbläsartabbar\n" #~ "• Skrivbordsintegration: Snabb åtkomst från din applikationsmeny\n" #~ "• Isolerade profiler: Valfritt kan varje webapp ha sina egna cookies och inställningar\n" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 #~ msgid "System Default" #~ msgstr "Systemstandard" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -562,12 +475,10 @@ msgstr "Spara fil" # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 #~ msgid "Default" #~ msgstr "Standard" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 #~ msgid "Please select a browser." #~ msgstr "Vänligen välj en webbläsare." - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -576,49 +487,40 @@ msgstr "Spara fil" # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 #~ msgid "Error" #~ msgstr "Fel" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 #~ msgid "Choose from templates" #~ msgstr "Välj från mallar" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 #~ msgid "Detect" #~ msgstr "Upptäck" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 #~ msgid "App Icon" #~ msgstr "App-ikon" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 #~ msgid "Select icon for the WebApp" #~ msgstr "Välj ikon för WebApp" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 #~ msgid "Available Icons" #~ msgstr "Tillgängliga ikoner" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 #~ msgid "Application Mode" #~ msgstr "Applikationsläge" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 #~ msgid "Profile Settings" #~ msgstr "Profilinställningar" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 #~ msgid "Configure a separate browser profile for this webapp" #~ msgstr "Konfigurera en separat webbläsarprofil för denna webbapp" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -627,63 +529,51 @@ msgstr "Spara fil" # #~ msgid "Use separate profile" #~ msgstr "Använd separat profil" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 #~ msgid "Detecting website information, please wait" #~ msgstr "Upptäckter webbplatsinformation, vänligen vänta" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 #~ msgid "Please enter a URL first." #~ msgstr "Vänligen ange en URL först." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 #~ msgid "Please enter a name for the WebApp." #~ msgstr "Vänligen ange ett namn för WebAppen." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 #~ msgid "Please enter a URL for the WebApp." #~ msgstr "Vänligen ange en URL för WebAppen." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 #~ msgid "Please select a browser for the WebApp." #~ msgstr "Vänligen välj en webbläsare för WebApp." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 #~ msgid "Main Menu" #~ msgstr "Huvudmeny" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 #~ msgid "Refresh" #~ msgstr "Uppdatera" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 #~ msgid "Show Welcome Screen" #~ msgstr "Visa välkomstskärm" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 #~ msgid "Add" #~ msgstr "Lägg till" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 #~ msgid "No WebApps Found" #~ msgstr "Inga WebApps hittades" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 #, python-brace-format #~ msgid "Browser changed to {0}" #~ msgstr "Webbläsare ändrad till {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 #, python-brace-format @@ -697,12 +587,10 @@ msgstr "Spara fil" #~ "\n" #~ "URL: {1}\n" #~ "Webbläsare: {2}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 #~ msgid "REMOVE ALL" #~ msgstr "TA BORT ALLT" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 #, python-brace-format @@ -714,48 +602,39 @@ msgstr "Spara fil" #~ "Är du säker på att du vill ta bort alla dina WebApps? Denna åtgärd kan inte ångras.\n" #~ "\n" #~ "Skriv \"{0}\" för att bekräfta." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 #, python-brace-format #~ msgid "Icon {0} of {1}" #~ msgstr "Ikon {0} av {1}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #~ msgid "There are no WebApps to export." #~ msgstr "Det finns inga WebApps att exportera." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 #~ msgid "The selected file does not exist." #~ msgstr "Den valda filen finns inte." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 #~ msgid "The selected file is not a valid ZIP archive." #~ msgstr "Den valda filen är inte ett giltigt ZIP-arkiv." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 #~ msgid "Error importing WebApps" #~ msgstr "Fel vid import av WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 #~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" #~ msgstr "Importerade {} WebApps framgångsrikt ({} dubbletter hoppades över)" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 #~ msgid "Imported {} WebApps successfully" #~ msgstr "Importerade {} WebApps framgångsrikt" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 #~ msgid "No" #~ msgstr "Nej" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 #~ msgid "Yes" diff --git a/biglinux-webapps/locale/tr.json b/biglinux-webapps/locale/tr.json new file mode 100644 index 00000000..48a70f55 --- /dev/null +++ b/biglinux-webapps/locale/tr.json @@ -0,0 +1 @@ +{"tr":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Şablonlar"]},"Choose a Template":{"*":["Bir Şablon Seçin"]},"Search templates...":{"*":["Şablonları ara..."]},"Search Results":{"*":["Arama Sonuçları"]},"No templates found":{"*":["Şablon bulunamadı"]},"Edit WebApp":{"*":["Web Uygulamasını Düzenle"]},"Delete WebApp":{"*":["WebApp'i Sil"]},"Welcome to WebApps Manager":{"*":["Web Uygulamaları Yöneticisi'ne Hoş Geldiniz"]},"Don't show this again":{"*":["Bunu bir daha gösterme."]},"Let's Start":{"*":["Başlayalım"]},"Select Browser":{"*":["Tarayıcıyı Seçin"]},"Cancel":{"*":["İptal et"]},"Select":{"*":["Seçin"]},"OK":{"*":["Tamam"]},"Add WebApp":{"*":["Web Uygulaması Ekle"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Web sitesinden isim ve simgeyi tespit et"]},"Name":{"*":["İsim"]},"Category":{"*":["Kategori"]},"Opens as a native window without browser interface":{"*":["Tarayıcı arayüzü olmadan yerel bir pencere olarak açılır."]},"Browser":{"*":["Tarayıcı"]},"Allows independent cookies and sessions":{"*":["Bağımsız çerezler ve oturumlar sağlar."]},"Profile Name":{"*":["Profil Adı"]},"Save":{"*":["Kaydet"]},"Loading...":{"*":["Yükleniyor..."]},"WebApps Manager":{"*":["Web Uygulamaları Yöneticisi"]},"Search WebApps":{"*":["Web Uygulamaları Ara"]},"Export WebApps":{"*":["Web Uygulamalarını Dışa Aktar"]},"Import WebApps":{"*":["Web Uygulamaları İçe Aktar"]},"Browse Applications Folder":{"*":["Uygulamalar Klasörünü Gözat"]},"Browse Profiles Folder":{"*":["Profiller Klasörünü Gözat"]},"Remove All WebApps":{"*":["Tüm Web Uygulamalarını Kaldır"]},"About":{"*":["Hakkında"]},"Add a new webapp to get started":{"*":["Başlamak için yeni bir web uygulaması ekleyin."]},"WebApp created successfully":{"*":["Web Uygulaması başarıyla oluşturuldu."]},"WebApp updated successfully":{"*":["WebApp başarıyla güncellendi."]},"Also delete configuration folder":{"*":["Ayrıca yapılandırma klasörünü silin."]},"Delete":{"*":["Sil"]},"WebApp deleted successfully":{"*":["WebApp başarıyla silindi."]},"Remove All":{"*":["Tümünü Kaldır"]},"All WebApps have been removed":{"*":["Tüm Web Uygulamaları kaldırıldı."]},"Failed to remove all WebApps":{"*":["Tüm Web Uygulamaları kaldırma işlemi başarısız oldu."]},"WebApps exported successfully":{"*":["Web Uygulamaları başarıyla dışa aktarıldı."]},"No WebApps":{"*":["Web Uygulamaları Yok"]},"Change browser":{"*":["Tarayıcıyı değiştir"]},"Edit":{"*":["Düzenle"]},"New WebApp":{"*":["Yeni WebApp"]},"Icon":{"*":["Simge"]},"App Mode":{"*":["Uygulama Modu"]},"Separate Profile":{"*":["Ayrı Profil"]},"Select Icon":{"*":["Simge Seç"]},"Images":{"*":["Resimler"]},"ZIP files":{"*":["ZIP dosyaları"]},"Imported {imported}, skipped {dups} duplicates":{"*":["İçe aktarılan {imported}, atlanan {dups} çoğaltmalar"]},"Import failed":{"*":["İçe aktarma başarısız oldu"]},"Export failed":{"*":["Dışa aktarma başarısız oldu"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Bu işlem tüm webapp'leri ve masaüstü girdilerini silecektir. Bu işlem geri alınamaz."]},"Browser changed":{"*":["Tarayıcı değiştirildi"]},"What are WebApps?":{"*":["WebApp'ler nedir?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps, favori web siteleriniz için daha uygulama benzeri bir deneyim sunan, özel bir tarayıcı penceresinde çalışan web uygulamalarıdır."]},"Benefits of using WebApps:":{"*":["WebApps kullanmanın faydaları:"]},"Focus":{"*":["Odaklanma"]},"Work without the distractions of other browser tabs":{"*":["Diğer tarayıcı sekmelerinin dikkat dağıtıcı etkisi olmadan çalışın"]},"Desktop Integration":{"*":["Masaüstü Entegrasyonu"]},"Quick access from your application menu":{"*":["Uygulama menünüzden hızlı erişim"]},"Isolated Profiles":{"*":["İzole Profiller"]},"Each webapp can have its own cookies and settings":{"*":["Her webapp kendi çerezlerine ve ayarlarına sahip olabilir"]},"Back":{"*":["Geri"]},"Forward":{"*":["İleri"]},"Reload":{"*":["Yenile"]},"Fullscreen":{"*":["Tam ekran"]},"Enter URL…":{"*":["URL girin…"]},"Zoom In":{"*":["Yakınlaştır"]},"Zoom Out":{"*":["Uzaklaştır"]},"Reset Zoom":{"*":["Yakınlaştırmayı Sıfırla"]},"Developer Tools":{"*":["Geliştirici Araçları"]},"Menu":{"*":["Menü"]},"Open Link in Browser":{"*":["Bağlantıyı Tarayıcıda Aç"]},"Download Complete":{"*":["İndirme Tamamlandı"]},"Save File":{"*":["Dosyayı Kaydet"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/tr.po b/biglinux-webapps/locale/tr.po index e38525a8..c85c0e61 100644 --- a/biglinux-webapps/locale/tr.po +++ b/biglinux-webapps/locale/tr.po @@ -14,7 +14,6 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -24,31 +23,26 @@ msgstr "" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Şablonlar" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Bir Şablon Seçin" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Şablonları ara..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Arama Sonuçları" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Şablon bulunamadı" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -60,13 +54,11 @@ msgstr "Şablon bulunamadı" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Web Uygulamasını Düzenle" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "WebApp'i Sil" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 # File: biglinux-webapps/biglinux- @@ -75,25 +67,21 @@ msgstr "WebApp'i Sil" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Web Uygulamaları Yöneticisi'ne Hoş Geldiniz" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Bunu bir daha gösterme." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Başlayalım" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Tarayıcıyı Seçin" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -106,7 +94,6 @@ msgstr "Tarayıcıyı Seçin" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "İptal et" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -119,7 +106,6 @@ msgstr "İptal et" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Seçin" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -133,7 +119,6 @@ msgstr "Seçin" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "Tamam" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -145,19 +130,16 @@ msgstr "Tamam" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Web Uygulaması Ekle" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Web sitesinden isim ve simgeyi tespit et" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 # File: biglinux-webapps/biglinux- @@ -165,38 +147,32 @@ msgstr "Web sitesinden isim ve simgeyi tespit et" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "İsim" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Kategori" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Tarayıcı arayüzü olmadan yerel bir pencere olarak açılır." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 #. -- Browser row (hidden in app mode) -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Tarayıcı" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Bağımsız çerezler ve oturumlar sağlar." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Profil Adı" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -206,52 +182,44 @@ msgstr "Profil Adı" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Kaydet" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Yükleniyor..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "Web Uygulamaları Yöneticisi" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Web Uygulamaları Ara" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Web Uygulamalarını Dışa Aktar" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Web Uygulamaları İçe Aktar" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Uygulamalar Klasörünü Gözat" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Profiller Klasörünü Gözat" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 # File: biglinux-webapps/biglinux- @@ -260,31 +228,26 @@ msgstr "Profiller Klasörünü Gözat" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Tüm Web Uygulamalarını Kaldır" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "Hakkında" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Başlamak için yeni bir web uygulaması ekleyin." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "Web Uygulaması başarıyla oluşturuldu." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "WebApp başarıyla güncellendi." - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -294,101 +257,81 @@ msgstr "WebApp başarıyla güncellendi." #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Ayrıca yapılandırma klasörünü silin." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Sil" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "WebApp başarıyla silindi." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Tümünü Kaldır" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Tüm Web Uygulamaları kaldırıldı." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Tüm Web Uygulamaları kaldırma işlemi başarısız oldu." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "Web Uygulamaları başarıyla dışa aktarıldı." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Web Uygulamaları Yok" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 msgid "Change browser" msgstr "Tarayıcıyı değiştir" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 msgid "Edit" msgstr "Düzenle" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "New WebApp" msgstr "Yeni WebApp" - #. -- Icon row -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 msgid "Icon" msgstr "Simge" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 msgid "App Mode" msgstr "Uygulama Modu" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 msgid "Separate Profile" msgstr "Ayrı Profil" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 msgid "Select Icon" msgstr "Simge Seç" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 msgid "Images" msgstr "Resimler" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 msgid "ZIP files" msgstr "ZIP dosyaları" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 #, rust-format msgid "Imported {imported}, skipped {dups} duplicates" msgstr "İçe aktarılan {imported}, atlanan {dups} çoğaltmalar" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 msgid "Import failed" msgstr "İçe aktarma başarısız oldu" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 msgid "Export failed" msgstr "Dışa aktarma başarısız oldu" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 msgid "" "This will delete all webapps and their desktop entries. This cannot be " @@ -396,15 +339,12 @@ msgid "" msgstr "" "Bu işlem tüm webapp'leri ve masaüstü girdilerini silecektir. Bu işlem geri " "alınamaz." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 msgid "Browser changed" msgstr "Tarayıcı değiştirildi" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 msgid "What are WebApps?" msgstr "WebApp'ler nedir?" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 msgid "" "WebApps are web applications that run in a dedicated browser window, " @@ -412,110 +352,85 @@ msgid "" msgstr "" "WebApps, favori web siteleriniz için daha uygulama benzeri bir deneyim " "sunan, özel bir tarayıcı penceresinde çalışan web uygulamalarıdır." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 msgid "Benefits of using WebApps:" msgstr "WebApps kullanmanın faydaları:" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Focus" msgstr "Odaklanma" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Work without the distractions of other browser tabs" msgstr "Diğer tarayıcı sekmelerinin dikkat dağıtıcı etkisi olmadan çalışın" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Desktop Integration" msgstr "Masaüstü Entegrasyonu" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Quick access from your application menu" msgstr "Uygulama menünüzden hızlı erişim" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Isolated Profiles" msgstr "İzole Profiller" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Each webapp can have its own cookies and settings" msgstr "Her webapp kendi çerezlerine ve ayarlarına sahip olabilir" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 msgid "Back" msgstr "Geri" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 msgid "Forward" msgstr "İleri" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 msgid "Reload" msgstr "Yenile" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 msgid "Fullscreen" msgstr "Tam ekran" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 msgid "Enter URL…" msgstr "URL girin…" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 msgid "Zoom In" msgstr "Yakınlaştır" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 msgid "Zoom Out" msgstr "Uzaklaştır" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 msgid "Reset Zoom" msgstr "Yakınlaştırmayı Sıfırla" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 msgid "Developer Tools" msgstr "Geliştirici Araçları" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 msgid "Menu" msgstr "Menü" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 msgid "Open Link in Browser" msgstr "Bağlantıyı Tarayıcıda Aç" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 msgid "Download Complete" msgstr "İndirme Tamamlandı" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 msgid "Save File" msgstr "Dosyayı Kaydet" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 #~ msgid "Search templates" #~ msgstr "Şablonları ara" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 #, python-brace-format #~ msgid "Browser: {0}" #~ msgstr "Tarayıcı: {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 #, python-brace-format #~ msgid "Edit {0}" #~ msgstr "{0} düzenle" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 #, python-brace-format #~ msgid "Delete {0}" #~ msgstr "{0} sil." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 #~ msgid "" @@ -538,12 +453,10 @@ msgstr "Dosyayı Kaydet" #~ "• Odaklanma: Diğer tarayıcı sekmelerinin dikkat dağıtıcı etkisi olmadan çalışma\n" #~ "• masaüstü entegrasyonu: Uygulama menünüzden hızlı erişim\n" #~ "• İzolasyonlu Profiller: İsteğe bağlı olarak, her web uygulaması kendi çerezlerine ve ayarlarına sahip olabilir\n" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 #~ msgid "System Default" #~ msgstr "Sistem Varsayılanı" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -562,12 +475,10 @@ msgstr "Dosyayı Kaydet" # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 #~ msgid "Default" #~ msgstr "Varsayılan" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 #~ msgid "Please select a browser." #~ msgstr "Lütfen bir tarayıcı seçin." - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -576,49 +487,40 @@ msgstr "Dosyayı Kaydet" # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 #~ msgid "Error" #~ msgstr "Hata" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 #~ msgid "Choose from templates" #~ msgstr "Şablonlardan seçin" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 #~ msgid "Detect" #~ msgstr "Algıla" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 #~ msgid "App Icon" #~ msgstr "Uygulama İkonu" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 #~ msgid "Select icon for the WebApp" #~ msgstr "WebApp için simge seçin" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 #~ msgid "Available Icons" #~ msgstr "Mevcut Simge" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 #~ msgid "Application Mode" #~ msgstr "Uygulama Modu" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 #~ msgid "Profile Settings" #~ msgstr "Profil Ayarları" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 #~ msgid "Configure a separate browser profile for this webapp" #~ msgstr "Bu web uygulaması için ayrı bir tarayıcı profili yapılandırın." - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -627,63 +529,51 @@ msgstr "Dosyayı Kaydet" # #~ msgid "Use separate profile" #~ msgstr "Ayrı profil kullanın" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 #~ msgid "Detecting website information, please wait" #~ msgstr "Web sitesi bilgileri tespit ediliyor, lütfen bekleyin." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 #~ msgid "Please enter a URL first." #~ msgstr "Lütfen önce bir URL girin." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 #~ msgid "Please enter a name for the WebApp." #~ msgstr "Lütfen WebApp için bir isim girin." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 #~ msgid "Please enter a URL for the WebApp." #~ msgstr "Lütfen WebApp için bir URL girin." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 #~ msgid "Please select a browser for the WebApp." #~ msgstr "Lütfen WebApp için bir tarayıcı seçin." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 #~ msgid "Main Menu" #~ msgstr "Ana Menü" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 #~ msgid "Refresh" #~ msgstr "Yenile" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 #~ msgid "Show Welcome Screen" #~ msgstr "Hoş Geldiniz Ekranını Göster" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 #~ msgid "Add" #~ msgstr "Ekle" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 #~ msgid "No WebApps Found" #~ msgstr "Web Uygulamaları Bulunamadı" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 #, python-brace-format #~ msgid "Browser changed to {0}" #~ msgstr "Tarayıcı {0} olarak değiştirildi." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 #, python-brace-format @@ -697,12 +587,10 @@ msgstr "Dosyayı Kaydet" #~ "\n" #~ "URL: {1}\n" #~ "Tarayıcı: {2}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 #~ msgid "REMOVE ALL" #~ msgstr "TÜMÜNÜ KALDIR" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 #, python-brace-format @@ -714,48 +602,39 @@ msgstr "Dosyayı Kaydet" #~ "Tüm Web Uygulamalarınızı kaldırmak istediğinizden emin misiniz? Bu işlem geri alınamaz.\n" #~ "\n" #~ "Onaylamak için \"{0}\" yazın." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 #, python-brace-format #~ msgid "Icon {0} of {1}" #~ msgstr "{1} için {0} simgesi" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #~ msgid "There are no WebApps to export." #~ msgstr "Dışa aktarılacak Web Uygulamaları yok." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 #~ msgid "The selected file does not exist." #~ msgstr "Seçilen dosya mevcut değil." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 #~ msgid "The selected file is not a valid ZIP archive." #~ msgstr "Seçilen dosya geçerli bir ZIP arşivi değil." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 #~ msgid "Error importing WebApps" #~ msgstr "Web Uygulamaları içe aktarım hatası" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 #~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" #~ msgstr "{} WebApps başarıyla içe aktarıldı ({} kopyalar atlandı)" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 #~ msgid "Imported {} WebApps successfully" #~ msgstr "{} WebApps başarıyla içe aktarıldı." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 #~ msgid "No" #~ msgstr "Hayır" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 #~ msgid "Yes" diff --git a/biglinux-webapps/locale/uk.json b/biglinux-webapps/locale/uk.json new file mode 100644 index 00000000..2314cac4 --- /dev/null +++ b/biglinux-webapps/locale/uk.json @@ -0,0 +1 @@ +{"uk":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Шаблони"]},"Choose a Template":{"*":["Виберіть шаблон"]},"Search templates...":{"*":["Шукати шаблони..."]},"Search Results":{"*":["Результати пошуку"]},"No templates found":{"*":["Шаблони не знайдено"]},"Edit WebApp":{"*":["Редагувати веб-додаток"]},"Delete WebApp":{"*":["Видалити веб-додаток"]},"Welcome to WebApps Manager":{"*":["Ласкаво просимо до Менеджера веб-додатків"]},"Don't show this again":{"*":["Не показувати це знову"]},"Let's Start":{"*":["Давайте почнемо"]},"Select Browser":{"*":["Виберіть браузер"]},"Cancel":{"*":["Скасувати"]},"Select":{"*":["Вибрати"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Додати веб-додаток"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Визначити назву та значок з вебсайту"]},"Name":{"*":["Ім'я"]},"Category":{"*":["Категорія"]},"Opens as a native window without browser interface":{"*":["Відкривається як рідне вікно без інтерфейсу браузера"]},"Browser":{"*":["Браузер"]},"Allows independent cookies and sessions":{"*":["Дозволяє незалежні куки та сесії"]},"Profile Name":{"*":["Ім'я профілю"]},"Save":{"*":["Зберегти"]},"Loading...":{"*":["Завантаження..."]},"WebApps Manager":{"*":["Менеджер веб-додатків"]},"Search WebApps":{"*":["Пошук веб-додатків"]},"Export WebApps":{"*":["Експортувати веб-додатки"]},"Import WebApps":{"*":["Імпорт веб-додатків"]},"Browse Applications Folder":{"*":["Переглянути папку програм"]},"Browse Profiles Folder":{"*":["Перегляд папки профілів"]},"Remove All WebApps":{"*":["Видалити всі веб-додатки"]},"About":{"*":["Про програму"]},"Add a new webapp to get started":{"*":["Додайте новий веб-додаток, щоб почати."]},"WebApp created successfully":{"*":["Веб-додаток успішно створено"]},"WebApp updated successfully":{"*":["Веб-додаток успішно оновлено"]},"Also delete configuration folder":{"*":["Також видаліть папку конфігурації."]},"Delete":{"*":["Видалити"]},"WebApp deleted successfully":{"*":["WebApp успішно видалено"]},"Remove All":{"*":["Видалити все"]},"All WebApps have been removed":{"*":["Усі веб-додатки були видалені."]},"Failed to remove all WebApps":{"*":["Не вдалося видалити всі веб-додатки."]},"WebApps exported successfully":{"*":["WebApps успішно експортовано"]},"No WebApps":{"*":["Немає веб-додатків"]},"Change browser":{"*":["Змінити браузер"]},"Edit":{"*":["Редагувати"]},"New WebApp":{"*":["Новий WebApp"]},"Icon":{"*":["Іконка"]},"App Mode":{"*":["Режим додатку"]},"Separate Profile":{"*":["Окремий профіль"]},"Select Icon":{"*":["Вибрати іконку"]},"Images":{"*":["Зображення"]},"ZIP files":{"*":["ZIP-файли"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Імпортовано {imported}, пропущено {dups} дублікатів"]},"Import failed":{"*":["Не вдалося імпортувати"]},"Export failed":{"*":["Не вдалося експортувати"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Це видалить усі webapps та їхні записи на робочому столі. Цю дію неможливо скасувати."]},"Browser changed":{"*":["Браузер змінено"]},"What are WebApps?":{"*":["Що таке WebApps?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps — це веб-додатки, які працюють у спеціальному вікні браузера, забезпечуючи більш додаткоподібний досвід для ваших улюблених сайтів."]},"Benefits of using WebApps:":{"*":["Переваги використання WebApps:"]},"Focus":{"*":["Фокус"]},"Work without the distractions of other browser tabs":{"*":["Працюйте без відволікань від інших вкладок браузера"]},"Desktop Integration":{"*":["Інтеграція з робочим столом"]},"Quick access from your application menu":{"*":["Швидкий доступ із меню додатків"]},"Isolated Profiles":{"*":["Ізольовані профілі"]},"Each webapp can have its own cookies and settings":{"*":["Кожен webapp може мати власні куки та налаштування"]},"Back":{"*":["Назад"]},"Forward":{"*":["Вперед"]},"Reload":{"*":["Оновити"]},"Fullscreen":{"*":["Повноекранний режим"]},"Enter URL…":{"*":["Введіть URL…"]},"Zoom In":{"*":["Збільшити масштаб"]},"Zoom Out":{"*":["Зменшити масштаб"]},"Reset Zoom":{"*":["Скинути масштаб"]},"Developer Tools":{"*":["Інструменти розробника"]},"Menu":{"*":["Меню"]},"Open Link in Browser":{"*":["Відкрити посилання в браузері"]},"Download Complete":{"*":["Завантаження завершено"]},"Save File":{"*":["Зберегти файл"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/uk.po b/biglinux-webapps/locale/uk.po index 5d985d63..9ea87369 100644 --- a/biglinux-webapps/locale/uk.po +++ b/biglinux-webapps/locale/uk.po @@ -14,7 +14,6 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -24,31 +23,26 @@ msgstr "" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "Шаблони" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "Виберіть шаблон" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "Шукати шаблони..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "Результати пошуку" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "Шаблони не знайдено" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -60,13 +54,11 @@ msgstr "Шаблони не знайдено" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "Редагувати веб-додаток" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "Видалити веб-додаток" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 # File: biglinux-webapps/biglinux- @@ -75,25 +67,21 @@ msgstr "Видалити веб-додаток" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "Ласкаво просимо до Менеджера веб-додатків" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "Не показувати це знову" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "Давайте почнемо" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "Виберіть браузер" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -106,7 +94,6 @@ msgstr "Виберіть браузер" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "Скасувати" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -119,7 +106,6 @@ msgstr "Скасувати" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "Вибрати" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -133,7 +119,6 @@ msgstr "Вибрати" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "OK" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -145,19 +130,16 @@ msgstr "OK" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "Додати веб-додаток" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "URL" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "Визначити назву та значок з вебсайту" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 # File: biglinux-webapps/biglinux- @@ -165,38 +147,32 @@ msgstr "Визначити назву та значок з вебсайту" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "Ім'я" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "Категорія" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "Відкривається як рідне вікно без інтерфейсу браузера" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 #. -- Browser row (hidden in app mode) -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "Браузер" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "Дозволяє незалежні куки та сесії" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "Ім'я профілю" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -206,52 +182,44 @@ msgstr "Ім'я профілю" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "Зберегти" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "Завантаження..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "Менеджер веб-додатків" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "Пошук веб-додатків" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "Експортувати веб-додатки" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "Імпорт веб-додатків" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "Переглянути папку програм" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "Перегляд папки профілів" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 # File: biglinux-webapps/biglinux- @@ -260,31 +228,26 @@ msgstr "Перегляд папки профілів" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "Видалити всі веб-додатки" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "Про програму" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "Додайте новий веб-додаток, щоб почати." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "Веб-додаток успішно створено" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "Веб-додаток успішно оновлено" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -294,101 +257,81 @@ msgstr "Веб-додаток успішно оновлено" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "Також видаліть папку конфігурації." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "Видалити" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "WebApp успішно видалено" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "Видалити все" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "Усі веб-додатки були видалені." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "Не вдалося видалити всі веб-додатки." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebApps успішно експортовано" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "Немає веб-додатків" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 msgid "Change browser" msgstr "Змінити браузер" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 msgid "Edit" msgstr "Редагувати" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "New WebApp" msgstr "Новий WebApp" - #. -- Icon row -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 msgid "Icon" msgstr "Іконка" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 msgid "App Mode" msgstr "Режим додатку" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 msgid "Separate Profile" msgstr "Окремий профіль" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 msgid "Select Icon" msgstr "Вибрати іконку" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 msgid "Images" msgstr "Зображення" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 msgid "ZIP files" msgstr "ZIP-файли" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 #, rust-format msgid "Imported {imported}, skipped {dups} duplicates" msgstr "Імпортовано {imported}, пропущено {dups} дублікатів" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 msgid "Import failed" msgstr "Не вдалося імпортувати" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 msgid "Export failed" msgstr "Не вдалося експортувати" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 msgid "" "This will delete all webapps and their desktop entries. This cannot be " @@ -396,15 +339,12 @@ msgid "" msgstr "" "Це видалить усі webapps та їхні записи на робочому столі. Цю дію неможливо " "скасувати." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 msgid "Browser changed" msgstr "Браузер змінено" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 msgid "What are WebApps?" msgstr "Що таке WebApps?" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 msgid "" "WebApps are web applications that run in a dedicated browser window, " @@ -412,110 +352,85 @@ msgid "" msgstr "" "WebApps — це веб-додатки, які працюють у спеціальному вікні браузера, " "забезпечуючи більш додаткоподібний досвід для ваших улюблених сайтів." - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 msgid "Benefits of using WebApps:" msgstr "Переваги використання WebApps:" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Focus" msgstr "Фокус" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Work without the distractions of other browser tabs" msgstr "Працюйте без відволікань від інших вкладок браузера" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Desktop Integration" msgstr "Інтеграція з робочим столом" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Quick access from your application menu" msgstr "Швидкий доступ із меню додатків" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Isolated Profiles" msgstr "Ізольовані профілі" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Each webapp can have its own cookies and settings" msgstr "Кожен webapp може мати власні куки та налаштування" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 msgid "Back" msgstr "Назад" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 msgid "Forward" msgstr "Вперед" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 msgid "Reload" msgstr "Оновити" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 msgid "Fullscreen" msgstr "Повноекранний режим" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 msgid "Enter URL…" msgstr "Введіть URL…" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 msgid "Zoom In" msgstr "Збільшити масштаб" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 msgid "Zoom Out" msgstr "Зменшити масштаб" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 msgid "Reset Zoom" msgstr "Скинути масштаб" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 msgid "Developer Tools" msgstr "Інструменти розробника" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 msgid "Menu" msgstr "Меню" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 msgid "Open Link in Browser" msgstr "Відкрити посилання в браузері" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 msgid "Download Complete" msgstr "Завантаження завершено" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 msgid "Save File" msgstr "Зберегти файл" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 #~ msgid "Search templates" #~ msgstr "Шаблони пошуку" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 #, python-brace-format #~ msgid "Browser: {0}" #~ msgstr "Браузер: {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 #, python-brace-format #~ msgid "Edit {0}" #~ msgstr "Редагувати {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 #, python-brace-format #~ msgid "Delete {0}" #~ msgstr "Видалити {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 #~ msgid "" @@ -538,12 +453,10 @@ msgstr "Зберегти файл" #~ "• Зосередженість: Працюйте без відволікань від інших вкладок браузера\n" #~ "• Інтеграція з робочим столом: Швидкий доступ з меню додатків\n" #~ "• Ізольовані профілі: За бажанням, кожен веб-додаток може мати свої власні куки та налаштування\n" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 #~ msgid "System Default" #~ msgstr "Системне значення за замовчуванням" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -562,12 +475,10 @@ msgstr "Зберегти файл" # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 #~ msgid "Default" #~ msgstr "За замовчуванням" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 #~ msgid "Please select a browser." #~ msgstr "Будь ласка, виберіть браузер." - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -576,49 +487,40 @@ msgstr "Зберегти файл" # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 #~ msgid "Error" #~ msgstr "Помилка" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 #~ msgid "Choose from templates" #~ msgstr "Виберіть з шаблонів" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 #~ msgid "Detect" #~ msgstr "Виявити" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 #~ msgid "App Icon" #~ msgstr "Іконка програми" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 #~ msgid "Select icon for the WebApp" #~ msgstr "Виберіть значок для веб-додатку" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 #~ msgid "Available Icons" #~ msgstr "Доступні значки" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 #~ msgid "Application Mode" #~ msgstr "Режим застосунку" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 #~ msgid "Profile Settings" #~ msgstr "Налаштування профілю" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 #~ msgid "Configure a separate browser profile for this webapp" #~ msgstr "Налаштуйте окремий профіль браузера для цього вебдодатку." - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -627,63 +529,51 @@ msgstr "Зберегти файл" # #~ msgid "Use separate profile" #~ msgstr "Використовуйте окремий профіль" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 #~ msgid "Detecting website information, please wait" #~ msgstr "Виявлення інформації про вебсайт, будь ласка, зачекайте" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 #~ msgid "Please enter a URL first." #~ msgstr "Будь ласка, спочатку введіть URL." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 #~ msgid "Please enter a name for the WebApp." #~ msgstr "Будь ласка, введіть назву для WebApp." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 #~ msgid "Please enter a URL for the WebApp." #~ msgstr "Будь ласка, введіть URL для WebApp." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 #~ msgid "Please select a browser for the WebApp." #~ msgstr "Будь ласка, виберіть браузер для WebApp." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 #~ msgid "Main Menu" #~ msgstr "Головне меню" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 #~ msgid "Refresh" #~ msgstr "Оновити" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 #~ msgid "Show Welcome Screen" #~ msgstr "Показати екран вітання" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 #~ msgid "Add" #~ msgstr "Додати" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 #~ msgid "No WebApps Found" #~ msgstr "Не знайдено веб-додатків" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 #, python-brace-format #~ msgid "Browser changed to {0}" #~ msgstr "Браузер змінено на {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 #, python-brace-format @@ -697,12 +587,10 @@ msgstr "Зберегти файл" #~ "\n" #~ "URL: {1}\n" #~ "Браузер: {2}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 #~ msgid "REMOVE ALL" #~ msgstr "ВИДАЛИТИ ВСЕ" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 #, python-brace-format @@ -714,48 +602,39 @@ msgstr "Зберегти файл" #~ "Ви впевнені, що хочете видалити всі свої веб-додатки? Цю дію не можна скасувати.\n" #~ "\n" #~ "Введіть \"{0}\", щоб підтвердити." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 #, python-brace-format #~ msgid "Icon {0} of {1}" #~ msgstr "Іконка {0} з {1}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #~ msgid "There are no WebApps to export." #~ msgstr "Немає веб-додатків для експорту." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 #~ msgid "The selected file does not exist." #~ msgstr "Вибраний файл не існує." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 #~ msgid "The selected file is not a valid ZIP archive." #~ msgstr "Вибраний файл не є дійсним ZIP-архівом." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 #~ msgid "Error importing WebApps" #~ msgstr "Помилка імпорту WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 #~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" #~ msgstr "Імпортовано {} WebApps успішно (пропущено {} дублікатів)" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 #~ msgid "Imported {} WebApps successfully" #~ msgstr "Імпортовано {} WebApps успішно" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 #~ msgid "No" #~ msgstr "Ні" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 #~ msgid "Yes" diff --git a/biglinux-webapps/locale/zh.json b/biglinux-webapps/locale/zh.json new file mode 100644 index 00000000..772ea57e --- /dev/null +++ b/biglinux-webapps/locale/zh.json @@ -0,0 +1 @@ +{"zh":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["模板"]},"Choose a Template":{"*":["选择模板"]},"Search templates...":{"*":["搜索模板..."]},"Search Results":{"*":["搜索结果"]},"No templates found":{"*":["未找到模板"]},"Edit WebApp":{"*":["编辑Web应用程序"]},"Delete WebApp":{"*":["删除Web应用程序"]},"Welcome to WebApps Manager":{"*":["欢迎使用 WebApps 管理器"]},"Don't show this again":{"*":["不要再显示此信息"]},"Let's Start":{"*":["让我们开始"]},"Select Browser":{"*":["选择浏览器"]},"Cancel":{"*":["取消"]},"Select":{"*":["选择"]},"OK":{"*":["确定"]},"Add WebApp":{"*":["添加Web应用程序"]},"URL":{"*":["网址"]},"Detect name and icon from website":{"*":["从网站检测名称和图标"]},"Name":{"*":["名称"]},"Category":{"*":["类别"]},"Opens as a native window without browser interface":{"*":["以原生窗口打开,无浏览器界面"]},"Browser":{"*":["浏览器"]},"Allows independent cookies and sessions":{"*":["允许独立的 cookies 和会话"]},"Profile Name":{"*":["个人资料名称"]},"Save":{"*":["保存"]},"Loading...":{"*":["加载中..."]},"WebApps Manager":{"*":["WebApps 管理器"]},"Search WebApps":{"*":["搜索网络应用程序"]},"Export WebApps":{"*":["导出Web应用程序"]},"Import WebApps":{"*":["导入Web应用程序"]},"Browse Applications Folder":{"*":["浏览应用程序文件夹"]},"Browse Profiles Folder":{"*":["浏览配置文件文件夹"]},"Remove All WebApps":{"*":["删除所有Web应用程序"]},"About":{"*":["关于"]},"Add a new webapp to get started":{"*":["添加一个新的网站应用程序以开始使用"]},"WebApp created successfully":{"*":["WebApp 创建成功"]},"WebApp updated successfully":{"*":["WebApp 更新成功"]},"Also delete configuration folder":{"*":["还删除配置文件夹"]},"Delete":{"*":["删除"]},"WebApp deleted successfully":{"*":["WebApp 删除成功"]},"Remove All":{"*":["全部删除"]},"All WebApps have been removed":{"*":["所有Web应用程序已被移除"]},"Failed to remove all WebApps":{"*":["无法删除所有Web应用程序"]},"WebApps exported successfully":{"*":["WebApps 导出成功"]},"No WebApps":{"*":["没有Web应用程序"]},"Change browser":{"*":["更改浏览器"]},"Edit":{"*":["编辑"]},"New WebApp":{"*":["新建 WebApp"]},"Icon":{"*":["图标"]},"App Mode":{"*":["应用模式"]},"Separate Profile":{"*":["独立配置文件"]},"Select Icon":{"*":["选择图标"]},"Images":{"*":["图片"]},"ZIP files":{"*":["ZIP 文件"]},"Imported {imported}, skipped {dups} duplicates":{"*":["已导入 {imported},跳过 {dups} 个重复项"]},"Import failed":{"*":["导入失败"]},"Export failed":{"*":["导出失败"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["这将删除所有 webapps 及其桌面条目。此操作不可撤销。"]},"Browser changed":{"*":["浏览器已更改"]},"What are WebApps?":{"*":["什么是 WebApps?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps 是在专用浏览器窗口中运行的网络应用,为您喜爱的网站提供更像应用程序的体验。"]},"Benefits of using WebApps:":{"*":["使用 WebApps 的好处:"]},"Focus":{"*":["专注"]},"Work without the distractions of other browser tabs":{"*":["无需分心于其他浏览器标签页"]},"Desktop Integration":{"*":["桌面集成"]},"Quick access from your application menu":{"*":["可从应用菜单快速访问"]},"Isolated Profiles":{"*":["独立配置文件"]},"Each webapp can have its own cookies and settings":{"*":["每个 WebApp 都可以拥有自己的 Cookie 和设置"]},"Back":{"*":["后退"]},"Forward":{"*":["前进"]},"Reload":{"*":["重新加载"]},"Fullscreen":{"*":["全屏"]},"Enter URL…":{"*":["输入 URL…"]},"Zoom In":{"*":["放大"]},"Zoom Out":{"*":["缩小"]},"Reset Zoom":{"*":["重置缩放"]},"Developer Tools":{"*":["开发者工具"]},"Menu":{"*":["菜单"]},"Open Link in Browser":{"*":["在浏览器中打开链接"]},"Download Complete":{"*":["下载完成"]},"Save File":{"*":["保存文件"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/locale/zh.po b/biglinux-webapps/locale/zh.po index 5389bbc5..6a6541b8 100644 --- a/biglinux-webapps/locale/zh.po +++ b/biglinux-webapps/locale/zh.po @@ -14,7 +14,6 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: attranslate\n" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -24,31 +23,26 @@ msgstr "" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:60 msgid "Templates" msgstr "模板" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:17 msgid "Choose a Template" msgstr "选择模板" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 56 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:29 msgid "Search templates..." msgstr "搜索模板..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 94 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:129 msgid "Search Results" msgstr "搜索结果" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 96 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/template_gallery.rs:123 msgid "No templates found" msgstr "未找到模板" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -60,13 +54,11 @@ msgstr "未找到模板" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "Edit WebApp" msgstr "编辑Web应用程序" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 114 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:507 msgid "Delete WebApp" msgstr "删除Web应用程序" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 22 # File: biglinux-webapps/biglinux- @@ -75,25 +67,21 @@ msgstr "删除Web应用程序" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:70 msgid "Welcome to WebApps Manager" msgstr "欢迎使用 WebApps 管理器" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 141 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:112 msgid "Don't show this again" msgstr "不要再显示此信息" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:127 msgid "Let's Start" msgstr "让我们开始" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 50 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:19 msgid "Select Browser" msgstr "选择浏览器" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -106,7 +94,6 @@ msgstr "选择浏览器" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:510 msgid "Cancel" msgstr "取消" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -119,7 +106,6 @@ msgstr "取消" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:189 msgid "Select" msgstr "选择" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -133,7 +119,6 @@ msgstr "选择" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/browser_dialog.rs:100 msgid "OK" msgstr "确定" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -145,19 +130,16 @@ msgstr "确定" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 msgid "Add WebApp" msgstr "添加Web应用程序" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 152 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:111 msgid "URL" msgstr "网址" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 157 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:115 msgid "Detect name and icon from website" msgstr "从网站检测名称和图标" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 166 # File: biglinux-webapps/biglinux- @@ -165,38 +147,32 @@ msgstr "从网站检测名称和图标" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:122 msgid "Name" msgstr "名称" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 221 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:161 msgid "Category" msgstr "类别" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 292 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" msgstr "以原生窗口打开,无浏览器界面" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 226 #. -- Browser row (hidden in app mode) -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:179 msgid "Browser" msgstr "浏览器" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 345 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:203 msgid "Allows independent cookies and sessions" msgstr "允许独立的 cookies 和会话" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 264 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:208 msgid "Profile Name" msgstr "个人资料名称" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -206,52 +182,44 @@ msgstr "个人资料名称" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:226 msgid "Save" msgstr "保存" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 336 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:88 msgid "Loading..." msgstr "加载中..." - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 27 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:37 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:173 msgid "WebApps Manager" msgstr "WebApps 管理器" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 51 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:53 msgid "Search WebApps" msgstr "搜索网络应用程序" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 61 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:64 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:236 msgid "Export WebApps" msgstr "导出Web应用程序" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 62 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:63 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:195 msgid "Import WebApps" msgstr "导入Web应用程序" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 65 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:65 msgid "Browse Applications Folder" msgstr "浏览应用程序文件夹" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 66 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:66 msgid "Browse Profiles Folder" msgstr "浏览配置文件文件夹" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 68 # File: biglinux-webapps/biglinux- @@ -260,31 +228,26 @@ msgstr "浏览配置文件文件夹" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:288 msgid "Remove All WebApps" msgstr "删除所有Web应用程序" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 69 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:73 msgid "About" msgstr "关于" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 106 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:394 msgid "Add a new webapp to get started" msgstr "添加一个新的网站应用程序以开始使用" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 214 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:159 msgid "WebApp created successfully" msgstr "WebApp 创建成功" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 257 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:461 msgid "WebApp updated successfully" msgstr "WebApp 更新成功" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -294,224 +257,176 @@ msgstr "WebApp 更新成功" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:524 msgid "Also delete configuration folder" msgstr "还删除配置文件夹" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 352 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:100 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:511 msgid "Delete" msgstr "删除" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 371 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:547 msgid "WebApp deleted successfully" msgstr "WebApp 删除成功" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 353 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:292 msgid "Remove All" msgstr "全部删除" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 443 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:307 msgid "All WebApps have been removed" msgstr "所有Web应用程序已被移除" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 445 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:303 msgid "Failed to remove all WebApps" msgstr "无法删除所有Web应用程序" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 166 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:248 msgid "WebApps exported successfully" msgstr "WebApps 导出成功" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:246 #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:393 msgid "No WebApps" msgstr "没有Web应用程序" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:78 msgid "Change browser" msgstr "更改浏览器" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_row.rs:89 msgid "Edit" msgstr "编辑" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:45 msgid "New WebApp" msgstr "新建 WebApp" - #. -- Icon row -- #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:128 msgid "Icon" msgstr "图标" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 msgid "App Mode" msgstr "应用模式" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:202 msgid "Separate Profile" msgstr "独立配置文件" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:427 msgid "Select Icon" msgstr "选择图标" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:432 msgid "Images" msgstr "图片" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:198 msgid "ZIP files" msgstr "ZIP 文件" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:215 #, rust-format msgid "Imported {imported}, skipped {dups} duplicates" msgstr "已导入 {imported},跳过 {dups} 个重复项" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:219 msgid "Import failed" msgstr "导入失败" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:252 msgid "Export failed" msgstr "导出失败" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:289 msgid "" "This will delete all webapps and their desktop entries. This cannot be " "undone." msgstr "这将删除所有 webapps 及其桌面条目。此操作不可撤销。" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:493 msgid "Browser changed" msgstr "浏览器已更改" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:83 msgid "What are WebApps?" msgstr "什么是 WebApps?" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:84 msgid "" "WebApps are web applications that run in a dedicated browser window, " "providing a more app-like experience for your favorite websites." msgstr "WebApps 是在专用浏览器窗口中运行的网络应用,为您喜爱的网站提供更像应用程序的体验。" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:85 msgid "Benefits of using WebApps:" msgstr "使用 WebApps 的好处:" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Focus" msgstr "专注" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:86 msgid "Work without the distractions of other browser tabs" msgstr "无需分心于其他浏览器标签页" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Desktop Integration" msgstr "桌面集成" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:87 msgid "Quick access from your application menu" msgstr "可从应用菜单快速访问" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Isolated Profiles" msgstr "独立配置文件" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/welcome_dialog.rs:88 msgid "Each webapp can have its own cookies and settings" msgstr "每个 WebApp 都可以拥有自己的 Cookie 和设置" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:53 msgid "Back" msgstr "后退" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:57 msgid "Forward" msgstr "前进" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:60 msgid "Reload" msgstr "重新加载" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:63 msgid "Fullscreen" msgstr "全屏" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:78 msgid "Enter URL…" msgstr "输入 URL…" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:338 msgid "Zoom In" msgstr "放大" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:339 msgid "Zoom Out" msgstr "缩小" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:340 msgid "Reset Zoom" msgstr "重置缩放" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:341 msgid "Developer Tools" msgstr "开发者工具" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:346 msgid "Menu" msgstr "菜单" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:371 msgid "Open Link in Browser" msgstr "在浏览器中打开链接" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:397 msgid "Download Complete" msgstr "下载完成" - #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 msgid "Save File" msgstr "保存文件" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/template_gallery.py, line: 63 #~ msgid "Search templates" #~ msgstr "搜索模板" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 91 #, python-brace-format #~ msgid "Browser: {0}" #~ msgstr "浏览器: {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 113 #, python-brace-format #~ msgid "Edit {0}" #~ msgstr "编辑 {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_row.py, line: 127 #, python-brace-format #~ msgid "Delete {0}" #~ msgstr "删除 {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/welcome_dialog.py, line: 109 #~ msgid "" @@ -534,12 +449,10 @@ msgstr "保存文件" #~ "• 专注:在没有其他浏览器标签干扰的情况下工作\n" #~ "• 桌面集成:可以从应用程序菜单快速访问\n" #~ "• 隔离的配置文件:可选地,每个WebApp可以拥有自己的Cookie和设置\n" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 170 #~ msgid "System Default" #~ msgstr "系统默认" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# @@ -558,12 +471,10 @@ msgstr "保存文件" # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 151 #~ msgid "Default" #~ msgstr "默认" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/browser_dialog.py, line: 163 #~ msgid "Please select a browser." #~ msgstr "请选择一个浏览器。" - # #-#-#-#-# biglinux-webapps.pot (biglinux-webapps) #-#-#-#-# # # File: biglinux-webapps/biglinux- @@ -572,49 +483,40 @@ msgstr "保存文件" # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 637 #~ msgid "Error" #~ msgstr "错误" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 167 #~ msgid "Choose from templates" #~ msgstr "从模板中选择" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 156 #~ msgid "Detect" #~ msgstr "检测" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 172 #~ msgid "App Icon" #~ msgstr "应用程序图标" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 180 #~ msgid "Select icon for the WebApp" #~ msgstr "为WebApp选择图标" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 187 # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 278 #~ msgid "Available Icons" #~ msgstr "可用图标" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 290 #~ msgid "Application Mode" #~ msgstr "应用模式" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 339 #~ msgid "Profile Settings" #~ msgstr "个人资料设置" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 341 #~ msgid "Configure a separate browser profile for this webapp" #~ msgstr "为此网络应用配置一个单独的浏览器配置文件" - # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# # # #-#-#-#-# biglinux-webapps-bash.pot (biglinux-webapps) #-#-#-#-# @@ -623,63 +525,51 @@ msgstr "保存文件" # #~ msgid "Use separate profile" #~ msgstr "使用单独的配置文件" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 414 #~ msgid "Detecting website information, please wait" #~ msgstr "正在检测网站信息,请稍候" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 453 #~ msgid "Please enter a URL first." #~ msgstr "请先输入一个网址。" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 609 #~ msgid "Please enter a name for the WebApp." #~ msgstr "请输入WebApp的名称。" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 613 #~ msgid "Please enter a URL for the WebApp." #~ msgstr "请输入WebApp的URL。" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/webapp_dialog.py, line: 617 #~ msgid "Please select a browser for the WebApp." #~ msgstr "请选择一个浏览器用于WebApp。" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 79 #~ msgid "Main Menu" #~ msgstr "主菜单" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 60 #~ msgid "Refresh" #~ msgstr "刷新" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 87 #~ msgid "Show Welcome Screen" #~ msgstr "显示欢迎屏幕" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 72 #~ msgid "Add" #~ msgstr "添加" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 105 #~ msgid "No WebApps Found" #~ msgstr "未找到Web应用程序" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 313 #, python-brace-format #~ msgid "Browser changed to {0}" #~ msgstr "浏览器已更改为 {0}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 372 #, python-brace-format @@ -693,12 +583,10 @@ msgstr "保存文件" #~ "\n" #~ "网址: {1} \n" #~ "浏览器: {2}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 341 #~ msgid "REMOVE ALL" #~ msgstr "删除所有" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/main_window.py, line: 346 #, python-brace-format @@ -710,48 +598,39 @@ msgstr "保存文件" #~ "您确定要删除所有的 Web 应用吗?此操作无法撤销。\n" #~ "\n" #~ "输入“{0}”以确认。" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/ui/favicon_picker.py, line: 63 #, python-brace-format #~ msgid "Icon {0} of {1}" #~ msgstr "图标 {0} 的 {1}" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 145 #~ msgid "There are no WebApps to export." #~ msgstr "没有可导出的Web应用程序。" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 264 #~ msgid "The selected file does not exist." #~ msgstr "所选文件不存在。" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 272 #~ msgid "The selected file is not a valid ZIP archive." #~ msgstr "所选文件不是有效的 ZIP 压缩文件。" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 346 #~ msgid "Error importing WebApps" #~ msgstr "导入WebApps时出错" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 403 #~ msgid "Imported {} WebApps successfully ({} duplicates skipped)" #~ msgstr "成功导入 {} 个 WebApps(跳过 {} 个重复项)" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 341 #~ msgid "Imported {} WebApps successfully" #~ msgstr "成功导入 {} WebApps" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 363 #~ msgid "No" #~ msgstr "不" - # File: biglinux-webapps/biglinux- # webapps/usr/share/biglinux/webapps/webapps/application.py, line: 364 #~ msgid "Yes" diff --git a/biglinux-webapps/usr/share/locale/bg/LC_MESSAGES/biglinux-webapps.json b/biglinux-webapps/usr/share/locale/bg/LC_MESSAGES/biglinux-webapps.json index 74eef0eb..2fca57ee 100644 --- a/biglinux-webapps/usr/share/locale/bg/LC_MESSAGES/biglinux-webapps.json +++ b/biglinux-webapps/usr/share/locale/bg/LC_MESSAGES/biglinux-webapps.json @@ -1 +1 @@ -{"bg":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Шаблони"]},"Choose a Template":{"*":["Изберете шаблон"]},"Search templates...":{"*":["Търсене на шаблони..."]},"Search templates":{"*":["Търсене на шаблони"]},"Search Results":{"*":["Резултати от търсенето"]},"No templates found":{"*":["Не са намерени шаблони."]},"Browser: {0}":{"*":["Браузър: {0}"]},"Edit WebApp":{"*":["Редактиране на уеб приложение"]},"Edit {0}":{"*":["Редактиране на {0}"]},"Delete WebApp":{"*":["Изтрий WebApp"]},"Delete {0}":{"*":["Изтрий {0}"]},"Welcome to WebApps Manager":{"*":["Добре дошли в WebApps Manager"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Какво са WebApps?\n\nWebApps са уеб приложения, които работят в отделен прозорец на браузъра, предоставяйки по-приложен опит за вашите любими уебсайтове.\n\nПредимства на използването на WebApps:\n\n• Фокус: Работете без разсейвания от други раздели на браузъра\n• Интеграция с работния плот: Бърз достъп от менюто на приложението\n• Изолирани профили: По желание, всяко уеб приложение може да има свои собствени бисквитки и настройки\n"]},"Don't show this again":{"*":["Не показвай това отново"]},"Let's Start":{"*":["Нека започнем"]},"Select Browser":{"*":["Изберете браузър"]},"Cancel":{"*":["Отмени"]},"Select":{"*":["Изберете"]},"System Default":{"*":["Системен по подразбиране"]},"Default":{"*":["По подразбиране"]},"Please select a browser.":{"*":["Моля, изберете браузър."]},"Error":{"*":["Грешка"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Добави WebApp"]},"Choose from templates":{"*":["Изберете от шаблони"]},"URL":{"*":["URL"]},"Detect":{"*":["Открийте"]},"Detect name and icon from website":{"*":["Открийте име и икона от уебсайт"]},"Name":{"*":["Име"]},"App Icon":{"*":["Икона на приложението"]},"Select icon for the WebApp":{"*":["Изберете икона за уеб приложението"]},"Available Icons":{"*":["Налични икони"]},"Category":{"*":["Категория"]},"Application Mode":{"*":["Режим на приложение"]},"Opens as a native window without browser interface":{"*":["Отваря се като роден прозорец без интерфейс на браузъра."]},"Browser":{"*":["Браузър"]},"Profile Settings":{"*":["Настройки на профила"]},"Configure a separate browser profile for this webapp":{"*":["Конфигурирайте отделен браузър профил за това уеб приложение."]},"Use separate profile":{"*":["Използвайте отделен профил"]},"Allows independent cookies and sessions":{"*":["Позволява независими бисквитки и сесии"]},"Profile Name":{"*":["Име на профил"]},"Save":{"*":["Запази"]},"Loading...":{"*":["Зареждане..."]},"Detecting website information, please wait":{"*":["Откриване на информация за уебсайта, моля изчакайте"]},"Please enter a URL first.":{"*":["Моля, въведете URL адрес първо."]},"Please enter a name for the WebApp.":{"*":["Моля, въведете име за уеб приложението."]},"Please enter a URL for the WebApp.":{"*":["Моля, въведете URL адрес за WebApp."]},"Please select a browser for the WebApp.":{"*":["Моля, изберете браузър за WebApp."]},"WebApps Manager":{"*":["Мениджър на уеб приложения"]},"Search WebApps":{"*":["Търсене на уеб приложения"]},"Main Menu":{"*":["Главно меню"]},"Refresh":{"*":["Обнови"]},"Export WebApps":{"*":["Експортиране на уеб приложения"]},"Import WebApps":{"*":["Импорт на уеб приложения"]},"Browse Applications Folder":{"*":["Преглед на папката с приложения"]},"Browse Profiles Folder":{"*":["Преглед на папка с профили"]},"Show Welcome Screen":{"*":["Покажи екран за приветствие"]},"Remove All WebApps":{"*":["Премахнете всички уеб приложения"]},"About":{"*":["За програмата"]},"Add":{"*":["Добави"]},"No WebApps Found":{"*":["Не са намерени уеб приложения."]},"Add a new webapp to get started":{"*":["Добавете нов уеб приложение, за да започнете."]},"WebApp created successfully":{"*":["WebApp създаден успешно"]},"WebApp updated successfully":{"*":["Web приложението беше актуализирано успешно."]},"Browser changed to {0}":{"*":["Браузърът беше променен на {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Сигурни ли сте, че искате да изтриете {0}?\n\nURL: {1}\nБраузър: {2}"]},"Also delete configuration folder":{"*":["Също така изтрийте папката с конфигурацията."]},"Delete":{"*":["Изтрий"]},"WebApp deleted successfully":{"*":["Web приложението беше успешно изтрито."]},"REMOVE ALL":{"*":["Премахнете всичко"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Сигурни ли сте, че искате да премахнете всички ваши WebApps? Това действие не може да бъде отменено.\n\nНапишете \"{0}\", за да потвърдите."]},"Remove All":{"*":["Премахни всичко"]},"All WebApps have been removed":{"*":["Всички уеб приложения са премахнати."]},"Failed to remove all WebApps":{"*":["Неуспешно премахване на всички уеб приложения."]},"Icon {0} of {1}":{"*":["Икона {0} от {1}"]},"WebApps exported successfully":{"*":["Web приложенията бяха експортирани успешно."]},"No WebApps":{"*":["Няма уеб приложения"]},"There are no WebApps to export.":{"*":["Няма налични WebApps за експортиране."]},"The selected file does not exist.":{"*":["Избраният файл не съществува."]},"The selected file is not a valid ZIP archive.":{"*":["Избраният файл не е валиден ZIP архив."]},"Error importing WebApps":{"*":["Грешка при импортиране на WebApps"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["Импортирни {} WebApps успешно ({} дубликати пропуснати)"]},"Imported {} WebApps successfully":{"*":["Успешно импортирани {} WebApps"]},"No":{"*":["Не"]},"Yes":{"*":["Да"]}}}} \ No newline at end of file +{"bg":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Шаблони"]},"Choose a Template":{"*":["Изберете шаблон"]},"Search templates...":{"*":["Търсене на шаблони..."]},"Search Results":{"*":["Резултати от търсенето"]},"No templates found":{"*":["Не са намерени шаблони."]},"Edit WebApp":{"*":["Редактиране на уеб приложение"]},"Delete WebApp":{"*":["Изтрий WebApp"]},"Welcome to WebApps Manager":{"*":["Добре дошли в WebApps Manager"]},"Don't show this again":{"*":["Не показвай това отново"]},"Let's Start":{"*":["Нека започнем"]},"Select Browser":{"*":["Изберете браузър"]},"Cancel":{"*":["Отмени"]},"Select":{"*":["Изберете"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Добави WebApp"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Открийте име и икона от уебсайт"]},"Name":{"*":["Име"]},"Category":{"*":["Категория"]},"Opens as a native window without browser interface":{"*":["Отваря се като роден прозорец без интерфейс на браузъра."]},"Browser":{"*":["Браузър"]},"Allows independent cookies and sessions":{"*":["Позволява независими бисквитки и сесии"]},"Profile Name":{"*":["Име на профил"]},"Save":{"*":["Запази"]},"Loading...":{"*":["Зареждане..."]},"WebApps Manager":{"*":["Мениджър на уеб приложения"]},"Search WebApps":{"*":["Търсене на уеб приложения"]},"Export WebApps":{"*":["Експортиране на уеб приложения"]},"Import WebApps":{"*":["Импорт на уеб приложения"]},"Browse Applications Folder":{"*":["Преглед на папката с приложения"]},"Browse Profiles Folder":{"*":["Преглед на папка с профили"]},"Remove All WebApps":{"*":["Премахнете всички уеб приложения"]},"About":{"*":["За програмата"]},"Add a new webapp to get started":{"*":["Добавете нов уеб приложение, за да започнете."]},"WebApp created successfully":{"*":["WebApp създаден успешно"]},"WebApp updated successfully":{"*":["Web приложението беше актуализирано успешно."]},"Also delete configuration folder":{"*":["Също така изтрийте папката с конфигурацията."]},"Delete":{"*":["Изтрий"]},"WebApp deleted successfully":{"*":["Web приложението беше успешно изтрито."]},"Remove All":{"*":["Премахни всичко"]},"All WebApps have been removed":{"*":["Всички уеб приложения са премахнати."]},"Failed to remove all WebApps":{"*":["Неуспешно премахване на всички уеб приложения."]},"WebApps exported successfully":{"*":["Web приложенията бяха експортирани успешно."]},"No WebApps":{"*":["Няма уеб приложения"]},"Change browser":{"*":["Смени браузъра"]},"Edit":{"*":["Редактирай"]},"New WebApp":{"*":["Нов WebApp"]},"Icon":{"*":["Икона"]},"App Mode":{"*":["Режим на приложението"]},"Separate Profile":{"*":["Отделен профил"]},"Select Icon":{"*":["Избери икона"]},"Images":{"*":["Изображения"]},"ZIP files":{"*":["ZIP файлове"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Импортирани {imported}, пропуснати {dups} дубликати"]},"Import failed":{"*":["Импортът не бе успешен"]},"Export failed":{"*":["Експортът не бе успешен"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Това ще изтрие всички webapps и техните десктоп записи. Това не може да бъде отменено."]},"Browser changed":{"*":["Браузърът е сменен"]},"What are WebApps?":{"*":["Какво са WebApps?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps са уеб приложения, които се изпълняват в отделен прозорец на браузъра, предоставяйки по-приложенски опит за любимите ви уебсайтове."]},"Benefits of using WebApps:":{"*":["Предимства на използването на WebApps:"]},"Focus":{"*":["Фокус"]},"Work without the distractions of other browser tabs":{"*":["Работа без разсейване от други раздели на браузъра"]},"Desktop Integration":{"*":["Интеграция с работния плот"]},"Quick access from your application menu":{"*":["Бърз достъп от менюто на приложенията ви"]},"Isolated Profiles":{"*":["Изолирани профили"]},"Each webapp can have its own cookies and settings":{"*":["Всеки webapp може да има свои собствени бисквитки и настройки"]},"Back":{"*":["Назад"]},"Forward":{"*":["Напред"]},"Reload":{"*":["Презареди"]},"Fullscreen":{"*":["Цял екран"]},"Enter URL…":{"*":["Въведете URL…"]},"Zoom In":{"*":["Увеличи"]},"Zoom Out":{"*":["Намали"]},"Reset Zoom":{"*":["Нулиране на мащаба"]},"Developer Tools":{"*":["Инструменти за разработчици"]},"Menu":{"*":["Меню"]},"Open Link in Browser":{"*":["Отвори връзката в браузъра"]},"Download Complete":{"*":["Изтеглянето е завършено"]},"Save File":{"*":["Запази файла"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/usr/share/locale/bg/LC_MESSAGES/biglinux-webapps.mo b/biglinux-webapps/usr/share/locale/bg/LC_MESSAGES/biglinux-webapps.mo index 95db157ae7b3b9009bd3cc3283cf5eb1aa02ceee..5d96f7b8a14627ac9247ec25e6789780c0dd44b3 100644 GIT binary patch literal 7041 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 SE4~Ce6xQYcuJM6;#{3^Aism5z diff --git a/biglinux-webapps/usr/share/locale/cs/LC_MESSAGES/biglinux-webapps.json b/biglinux-webapps/usr/share/locale/cs/LC_MESSAGES/biglinux-webapps.json index 8156f001..d683e610 100644 --- a/biglinux-webapps/usr/share/locale/cs/LC_MESSAGES/biglinux-webapps.json +++ b/biglinux-webapps/usr/share/locale/cs/LC_MESSAGES/biglinux-webapps.json @@ -1 +1 @@ -{"cs":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Šablony"]},"Choose a Template":{"*":["Vyberte šablonu"]},"Search templates...":{"*":["Hledat šablony..."]},"Search templates":{"*":["Hledat šablony"]},"Search Results":{"*":["Výsledky vyhledávání"]},"No templates found":{"*":["Žádné šablony nenalezeny"]},"Browser: {0}":{"*":["Prohlížeč: {0}"]},"Edit WebApp":{"*":["Upravit WebApp"]},"Edit {0}":{"*":["Upravit {0}"]},"Delete WebApp":{"*":["Smazat WebApp"]},"Delete {0}":{"*":["Smazat {0}"]},"Welcome to WebApps Manager":{"*":["Vítejte v správci webových aplikací"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Co jsou WebApps?\n\nWebApps jsou webové aplikace, které běží v dedikovaném okně prohlížeče, což poskytuje více aplikaci podobný zážitek pro vaše oblíbené webové stránky.\n\nVýhody používání WebApps:\n\n• Soustředění: Pracujte bez rozptýlení od ostatních karet prohlížeče\n• Integrace na ploše: Rychlý přístup z nabídky aplikací\n• Izolované profily: Volitelně může mít každá webová aplikace své vlastní cookies a nastavení\n"]},"Don't show this again":{"*":["Znovu to nezobrazovat"]},"Let's Start":{"*":["Začněme"]},"Select Browser":{"*":["Vyberte prohlížeč"]},"Cancel":{"*":["Zrušit"]},"Select":{"*":["Vybrat"]},"System Default":{"*":["Výchozí systém"]},"Default":{"*":["Výchozí"]},"Please select a browser.":{"*":["Vyberte prosím prohlížeč."]},"Error":{"*":["Chyba"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Přidat WebApp"]},"Choose from templates":{"*":["Vyberte z šablon"]},"URL":{"*":["URL"]},"Detect":{"*":["Detekovat"]},"Detect name and icon from website":{"*":["Detekuj název a ikonu z webové stránky"]},"Name":{"*":["Jméno"]},"App Icon":{"*":["Ikona aplikace"]},"Select icon for the WebApp":{"*":["Vyberte ikonu pro WebApp"]},"Available Icons":{"*":["Dostupné ikony"]},"Category":{"*":["Kategorie"]},"Application Mode":{"*":["Režim aplikace"]},"Opens as a native window without browser interface":{"*":["Otevře se jako nativní okno bez rozhraní prohlížeče."]},"Browser":{"*":["Prohlížeč"]},"Profile Settings":{"*":["Nastavení profilu"]},"Configure a separate browser profile for this webapp":{"*":["Nakonfigurujte samostatný profil prohlížeče pro tuto webovou aplikaci"]},"Use separate profile":{"*":["Použijte samostatný profil"]},"Allows independent cookies and sessions":{"*":["Umožňuje nezávislé cookies a relace"]},"Profile Name":{"*":["Název profilu"]},"Save":{"*":["Uložit"]},"Loading...":{"*":["Načítání..."]},"Detecting website information, please wait":{"*":["Zjišťuji informace o webové stránce, prosím čekejte"]},"Please enter a URL first.":{"*":["Nejprve zadejte URL."]},"Please enter a name for the WebApp.":{"*":["Zadejte název pro WebApp."]},"Please enter a URL for the WebApp.":{"*":["Zadejte prosím URL pro WebApp."]},"Please select a browser for the WebApp.":{"*":["Vyberte prosím pro WebApp prohlížeč."]},"WebApps Manager":{"*":["Správce webových aplikací"]},"Search WebApps":{"*":["Hledat WebApps"]},"Main Menu":{"*":["Hlavní nabídka"]},"Refresh":{"*":["Obnovit"]},"Export WebApps":{"*":["Exportovat webové aplikace"]},"Import WebApps":{"*":["Importovat WebApps"]},"Browse Applications Folder":{"*":["Procházet složku Aplikace"]},"Browse Profiles Folder":{"*":["Procházet složku profilů"]},"Show Welcome Screen":{"*":["Zobrazit uvítací obrazovku"]},"Remove All WebApps":{"*":["Odstranit všechny webové aplikace"]},"About":{"*":["O aplikaci"]},"Add":{"*":["Přidat"]},"No WebApps Found":{"*":["Žádné webové aplikace nenalezeny"]},"Add a new webapp to get started":{"*":["Přidejte novou webovou aplikaci, abyste mohli začít."]},"WebApp created successfully":{"*":["Webová aplikace byla úspěšně vytvořena."]},"WebApp updated successfully":{"*":["Webová aplikace byla úspěšně aktualizována."]},"Browser changed to {0}":{"*":["Prohlížeč byl změněn na {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Opravdu chcete smazat {0}?\n\nURL: {1}\nProhlížeč: {2}"]},"Also delete configuration folder":{"*":["Také odstraňte složku konfigurace."]},"Delete":{"*":["Smazat"]},"WebApp deleted successfully":{"*":["Webová aplikace byla úspěšně smazána."]},"REMOVE ALL":{"*":["ODSTRANIT VŠE"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Opravdu chcete odstranit všechny své WebApps? Tuto akci nelze vrátit zpět.\n\nZadejte \"{0}\" pro potvrzení."]},"Remove All":{"*":["Odstranit vše"]},"All WebApps have been removed":{"*":["Všechny webové aplikace byly odstraněny."]},"Failed to remove all WebApps":{"*":["Nepodařilo se odstranit všechny WebAppy"]},"Icon {0} of {1}":{"*":["Ikona {0} z {1}"]},"WebApps exported successfully":{"*":["Webové aplikace byly úspěšně exportovány."]},"No WebApps":{"*":["Žádné webové aplikace"]},"There are no WebApps to export.":{"*":["Není k exportu žádná WebApp."]},"The selected file does not exist.":{"*":["Vybraný soubor neexistuje."]},"The selected file is not a valid ZIP archive.":{"*":["Vybraný soubor není platný ZIP archiv."]},"Error importing WebApps":{"*":["Chyba při importu WebApps"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["Úspěšně importováno {} WebApps ({} duplicit bylo přeskočeno)"]},"Imported {} WebApps successfully":{"*":["Úspěšně importováno {} WebApps"]},"No":{"*":["Ne"]},"Yes":{"*":["Ano"]}}}} \ No newline at end of file +{"cs":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Šablony"]},"Choose a Template":{"*":["Vyberte šablonu"]},"Search templates...":{"*":["Hledat šablony..."]},"Search Results":{"*":["Výsledky vyhledávání"]},"No templates found":{"*":["Žádné šablony nenalezeny"]},"Edit WebApp":{"*":["Upravit WebApp"]},"Delete WebApp":{"*":["Smazat WebApp"]},"Welcome to WebApps Manager":{"*":["Vítejte v správci webových aplikací"]},"Don't show this again":{"*":["Znovu to nezobrazovat"]},"Let's Start":{"*":["Začněme"]},"Select Browser":{"*":["Vyberte prohlížeč"]},"Cancel":{"*":["Zrušit"]},"Select":{"*":["Vybrat"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Přidat WebApp"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Detekuj název a ikonu z webové stránky"]},"Name":{"*":["Jméno"]},"Category":{"*":["Kategorie"]},"Opens as a native window without browser interface":{"*":["Otevře se jako nativní okno bez rozhraní prohlížeče."]},"Browser":{"*":["Prohlížeč"]},"Allows independent cookies and sessions":{"*":["Umožňuje nezávislé cookies a relace"]},"Profile Name":{"*":["Název profilu"]},"Save":{"*":["Uložit"]},"Loading...":{"*":["Načítání..."]},"WebApps Manager":{"*":["Správce webových aplikací"]},"Search WebApps":{"*":["Hledat WebApps"]},"Export WebApps":{"*":["Exportovat webové aplikace"]},"Import WebApps":{"*":["Importovat WebApps"]},"Browse Applications Folder":{"*":["Procházet složku Aplikace"]},"Browse Profiles Folder":{"*":["Procházet složku profilů"]},"Remove All WebApps":{"*":["Odstranit všechny webové aplikace"]},"About":{"*":["O aplikaci"]},"Add a new webapp to get started":{"*":["Přidejte novou webovou aplikaci, abyste mohli začít."]},"WebApp created successfully":{"*":["Webová aplikace byla úspěšně vytvořena."]},"WebApp updated successfully":{"*":["Webová aplikace byla úspěšně aktualizována."]},"Also delete configuration folder":{"*":["Také odstraňte složku konfigurace."]},"Delete":{"*":["Smazat"]},"WebApp deleted successfully":{"*":["Webová aplikace byla úspěšně smazána."]},"Remove All":{"*":["Odstranit vše"]},"All WebApps have been removed":{"*":["Všechny webové aplikace byly odstraněny."]},"Failed to remove all WebApps":{"*":["Nepodařilo se odstranit všechny WebAppy"]},"WebApps exported successfully":{"*":["Webové aplikace byly úspěšně exportovány."]},"No WebApps":{"*":["Žádné webové aplikace"]},"Change browser":{"*":["Změnit prohlížeč"]},"Edit":{"*":["Upravit"]},"New WebApp":{"*":["Nová WebApp"]},"Icon":{"*":["Ikona"]},"App Mode":{"*":["Režim aplikace"]},"Separate Profile":{"*":["Samostatný profil"]},"Select Icon":{"*":["Vybrat ikonu"]},"Images":{"*":["Obrázky"]},"ZIP files":{"*":["ZIP soubory"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Importováno {imported}, přeskočeno {dups} duplicit"]},"Import failed":{"*":["Import selhal"]},"Export failed":{"*":["Export selhal"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Tímto se smažou všechny webové aplikace a jejich položky na ploše. Tuto akci nelze vrátit zpět."]},"Browser changed":{"*":["Prohlížeč změněn"]},"What are WebApps?":{"*":["Co jsou WebApps?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps jsou webové aplikace, které běží v samostatném okně prohlížeče a poskytují více aplikaci podobný zážitek pro vaše oblíbené webové stránky."]},"Benefits of using WebApps:":{"*":["Výhody používání WebApps:"]},"Focus":{"*":["Soustředění"]},"Work without the distractions of other browser tabs":{"*":["Pracujte bez rozptýlení ostatními záložkami v prohlížeči"]},"Desktop Integration":{"*":["Integrace na ploše"]},"Quick access from your application menu":{"*":["Rychlý přístup z nabídky aplikací"]},"Isolated Profiles":{"*":["Izolované profily"]},"Each webapp can have its own cookies and settings":{"*":["Každý webapp může mít své vlastní cookies a nastavení"]},"Back":{"*":["Zpět"]},"Forward":{"*":["Vpřed"]},"Reload":{"*":["Obnovit"]},"Fullscreen":{"*":["Celá obrazovka"]},"Enter URL…":{"*":["Zadejte URL…"]},"Zoom In":{"*":["Přiblížit"]},"Zoom Out":{"*":["Oddálit"]},"Reset Zoom":{"*":["Obnovit přiblížení"]},"Developer Tools":{"*":["Nástroje pro vývojáře"]},"Menu":{"*":["Menu"]},"Open Link in Browser":{"*":["Otevřít odkaz v prohlížeči"]},"Download Complete":{"*":["Stahování dokončeno"]},"Save File":{"*":["Uložit soubor"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/usr/share/locale/cs/LC_MESSAGES/biglinux-webapps.mo b/biglinux-webapps/usr/share/locale/cs/LC_MESSAGES/biglinux-webapps.mo index a3996dbcefd0893b392e0e879edb12f32dcb8699..9bbef6676090f10989d8c1c098aa417598ba05f9 100644 GIT binary patch literal 5626 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 are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Hvad er WebApps?\n\nWebApps er webapplikationer, der kører i et dedikeret browservindue og giver en mere app-lignende oplevelse for dine yndlingswebsteder.\n\nFordele ved at bruge WebApps:\n\n• Fokus: Arbejd uden distraktioner fra andre browsertabs\n• Desktopintegration: Hurtig adgang fra din applikationsmenu\n• Isolerede profiler: Valgfrit kan hver webapp have sine egne cookies og indstillinger\n"]},"Don't show this again":{"*":["Vis ikke dette igen"]},"Let's Start":{"*":["Lad os starte"]},"Select Browser":{"*":["Vælg browser"]},"Cancel":{"*":["Annuller"]},"Select":{"*":["Vælg"]},"System Default":{"*":["Systemstandard"]},"Default":{"*":["Standard"]},"Please select a browser.":{"*":["Vælg venligst en browser."]},"Error":{"*":["Fejl"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Tilføj WebApp"]},"Choose from templates":{"*":["Vælg fra skabeloner"]},"URL":{"*":["URL"]},"Detect":{"*":["Registrer"]},"Detect name and icon from website":{"*":["Registrer navn og ikon fra hjemmeside"]},"Name":{"*":["Navn"]},"App Icon":{"*":["App-ikon"]},"Select icon for the WebApp":{"*":["Vælg ikon til WebApp"]},"Available Icons":{"*":["Tilgængelige ikoner"]},"Category":{"*":["Kategori"]},"Application Mode":{"*":["Applikationsmode"]},"Opens as a native window without browser interface":{"*":["Åbner som et native vindue uden browsergrænseflade"]},"Browser":{"*":["Browser"]},"Profile Settings":{"*":["Profilindstillinger"]},"Configure a separate browser profile for this webapp":{"*":["Konfigurer en separat browserprofil til denne webapp"]},"Use separate profile":{"*":["Brug separat profil"]},"Allows independent cookies and sessions":{"*":["Tillader uafhængige cookies og sessioner"]},"Profile Name":{"*":["Profilnavn"]},"Save":{"*":["Gem"]},"Loading...":{"*":["Indlæser..."]},"Detecting website information, please wait":{"*":["Registrerer webstedoplysninger, vent venligst"]},"Please enter a URL first.":{"*":["Indtast venligst en URL først."]},"Please enter a name for the WebApp.":{"*":["Indtast venligst et navn til WebApp'en."]},"Please enter a URL for the WebApp.":{"*":["Indtast venligst en URL til WebApp'en."]},"Please select a browser for the WebApp.":{"*":["Vælg en browser til WebApp'en."]},"WebApps Manager":{"*":["WebApps Manager"]},"Search WebApps":{"*":["Søg WebApps"]},"Main Menu":{"*":["Hovedmenu"]},"Refresh":{"*":["Opdater"]},"Export WebApps":{"*":["Eksporter WebApps"]},"Import WebApps":{"*":["Importer WebApps"]},"Browse Applications Folder":{"*":["Gennemse applikationsmappe"]},"Browse Profiles Folder":{"*":["Gennemse profiler-mappe"]},"Show Welcome Screen":{"*":["Vis visningsskærm"]},"Remove All WebApps":{"*":["Fjern alle webapps"]},"About":{"*":["Om"]},"Add":{"*":["Tilføj"]},"No WebApps Found":{"*":["Ingen WebApps fundet"]},"Add a new webapp to get started":{"*":["Tilføj en ny webapp for at komme i gang"]},"WebApp created successfully":{"*":["WebApp oprettet med succes"]},"WebApp updated successfully":{"*":["WebApp opdateret med succes"]},"Browser changed to {0}":{"*":["Browser ændret til {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Er du sikker på, at du vil slette {0}?\n\nURL: {1} \nBrowser: {2}"]},"Also delete configuration folder":{"*":["Slet også konfigurationsmappen."]},"Delete":{"*":["Slet"]},"WebApp deleted successfully":{"*":["WebApp slettet med succes"]},"REMOVE ALL":{"*":["FJERN ALT"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Er du sikker på, at du vil fjerne alle dine WebApps? Denne handling kan ikke fortrydes.\n\nSkriv \"{0}\" for at bekræfte."]},"Remove All":{"*":["Fjern alt"]},"All WebApps have been removed":{"*":["Alle WebApps er blevet fjernet."]},"Failed to remove all WebApps":{"*":["Kunne ikke fjerne alle WebApps"]},"Icon {0} of {1}":{"*":["Ikon {0} af {1}"]},"WebApps exported successfully":{"*":["WebApps eksporteret med succes"]},"No WebApps":{"*":["Ingen WebApps"]},"There are no WebApps to export.":{"*":["Der er ingen WebApps at eksportere."]},"The selected file does not exist.":{"*":["Den valgte fil findes ikke."]},"The selected file is not a valid ZIP archive.":{"*":["Den valgte fil er ikke et gyldigt ZIP-arkiv."]},"Error importing WebApps":{"*":["Fejl ved import af WebApps"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["Importerede {} WebApps med succes ({} dubletter sprunget over)"]},"Imported {} WebApps successfully":{"*":["Importerede {} WebApps med succes"]},"No":{"*":["Ne"]},"Yes":{"*":["Ja"]}}}} \ No newline at end of file +{"da":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Skabeloner"]},"Choose a Template":{"*":["Vælg en skabelon"]},"Search templates...":{"*":["Søg skabeloner..."]},"Search Results":{"*":["Søgeresultater"]},"No templates found":{"*":["Ingen skabeloner fundet"]},"Edit WebApp":{"*":["Rediger WebApp"]},"Delete WebApp":{"*":["Slet WebApp"]},"Welcome to WebApps Manager":{"*":["Velkommen til WebApps Manager"]},"Don't show this again":{"*":["Vis ikke dette igen"]},"Let's Start":{"*":["Lad os starte"]},"Select Browser":{"*":["Vælg browser"]},"Cancel":{"*":["Annuller"]},"Select":{"*":["Vælg"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Tilføj WebApp"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Registrer navn og ikon fra hjemmeside"]},"Name":{"*":["Navn"]},"Category":{"*":["Kategori"]},"Opens as a native window without browser interface":{"*":["Åbner som et native vindue uden browsergrænseflade"]},"Browser":{"*":["Browser"]},"Allows independent cookies and sessions":{"*":["Tillader uafhængige cookies og sessioner"]},"Profile Name":{"*":["Profilnavn"]},"Save":{"*":["Gem"]},"Loading...":{"*":["Indlæser..."]},"WebApps Manager":{"*":["WebApps Manager"]},"Search WebApps":{"*":["Søg WebApps"]},"Export WebApps":{"*":["Eksporter WebApps"]},"Import WebApps":{"*":["Importer WebApps"]},"Browse Applications Folder":{"*":["Gennemse applikationsmappe"]},"Browse Profiles Folder":{"*":["Gennemse profiler-mappe"]},"Remove All WebApps":{"*":["Fjern alle webapps"]},"About":{"*":["Om"]},"Add a new webapp to get started":{"*":["Tilføj en ny webapp for at komme i gang"]},"WebApp created successfully":{"*":["WebApp oprettet med succes"]},"WebApp updated successfully":{"*":["WebApp opdateret med succes"]},"Also delete configuration folder":{"*":["Slet også konfigurationsmappen."]},"Delete":{"*":["Slet"]},"WebApp deleted successfully":{"*":["WebApp slettet med succes"]},"Remove All":{"*":["Fjern alt"]},"All WebApps have been removed":{"*":["Alle WebApps er blevet fjernet."]},"Failed to remove all WebApps":{"*":["Kunne ikke fjerne alle WebApps"]},"WebApps exported successfully":{"*":["WebApps eksporteret med succes"]},"No WebApps":{"*":["Ingen WebApps"]},"Change browser":{"*":["Skift browser"]},"Edit":{"*":["Rediger"]},"New WebApp":{"*":["Ny WebApp"]},"Icon":{"*":["Ikon"]},"App Mode":{"*":["App-tilstand"]},"Separate Profile":{"*":["Separat profil"]},"Select Icon":{"*":["Vælg ikon"]},"Images":{"*":["Billeder"]},"ZIP files":{"*":["ZIP-filer"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Importeret {imported}, sprunget over {dups} dubletter"]},"Import failed":{"*":["Import mislykkedes"]},"Export failed":{"*":["Eksport mislykkedes"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Dette vil slette alle webapps og deres skrivebordsgenveje. Dette kan ikke fortrydes."]},"Browser changed":{"*":["Browser ændret"]},"What are WebApps?":{"*":["Hvad er WebApps?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps er webapplikationer, der kører i et dedikeret browservindue og giver en mere app-lignende oplevelse for dine yndlingswebsteder."]},"Benefits of using WebApps:":{"*":["Fordele ved at bruge WebApps:"]},"Focus":{"*":["Fokus"]},"Work without the distractions of other browser tabs":{"*":["Arbejd uden forstyrrelser fra andre browsertabs"]},"Desktop Integration":{"*":["Desktopintegration"]},"Quick access from your application menu":{"*":["Hurtig adgang fra din applikationsmenu"]},"Isolated Profiles":{"*":["Isolerede profiler"]},"Each webapp can have its own cookies and settings":{"*":["Hver webapp kan have sine egne cookies og indstillinger"]},"Back":{"*":["Tilbage"]},"Forward":{"*":["Frem"]},"Reload":{"*":["Genindlæs"]},"Fullscreen":{"*":["Fuld skærm"]},"Enter URL…":{"*":["Indtast URL…"]},"Zoom In":{"*":["Zoom ind"]},"Zoom Out":{"*":["Zoom ud"]},"Reset Zoom":{"*":["Nulstil Zoom"]},"Developer Tools":{"*":["Udviklerværktøjer"]},"Menu":{"*":["Menu"]},"Open Link in Browser":{"*":["Åbn link i browser"]},"Download Complete":{"*":["Download fuldført"]},"Save File":{"*":["Gem fil"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/usr/share/locale/da/LC_MESSAGES/biglinux-webapps.mo b/biglinux-webapps/usr/share/locale/da/LC_MESSAGES/biglinux-webapps.mo index 7c217870d253945a9735ca5d8283ab609e296deb..4ef3f146e19bcb762f6d39dfc4ba262c6dca85b3 100644 GIT binary patch literal 5231 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 Js^=E5`XAcsT&Ms5 literal 6674 zcma)^9qKJPuRI~*<3oZZZQrb@2-FE5jw(M@Vl!$tF=FIHv%-lQP zduO&wZ6p{TNC=4}yvU0YY2pJUz9_~A5|;#w_#o&57@G(QA+bhGOnBhM&-dPQXSeOv zIGHn_d+s^+oZtEVyT3WRal;7Cr~Bgs;F)!#~1%;aS*%H?YXH@G*D;d>Vcpz5v z!>j4P3$K75K&|^B{0uaoH0C<65#9;6Kt2C3)O-g&1v`*O%p?B(Pr_T_i%{#l z1^JqP@uPh{f;#^Og!lriz-!)rX{~c)Qci|5B6x4dJLhb)1L_@oq4fVNcs)D|S;Bk>wcZAV*8bN) z>Bsv17N~vhfRbk%@->G%AA)*5gr9|vK zCBNAT4FILs~ZE@yLQH6OLD~NSsPi0!lGpiu0yXb3sQ7&bO5SH7DlxzC<1a($?+vK^{|@Dc=ipX& zCBdfnx(jN*<52QF3?=vXAz$+(KYH#AlsvzK()Sxse*14Iy4~Ow#6Q(rNjTUB_tJ|C|1%&VHZ2E-~#dbPoBJ;$y$RCtb*HyJ_3} zy%O@5L%uTsA(EUl^0Nc zem_nACEd!-^1%bN8Ja$~(MIwsV@BZ~+EJQ(VLMHqTMFcMd%#}{ibvU4pId424}Hc9 zw9RJ)mWNruDqzvKAL<{pCh!pX^O$SXlCcau49WqW`o4pV{W0=>!rJQ-nOu- zQt`cfWXUbqpx5h!^&ku5D7BfMN&1luBOBO;YiPtZ>_QSRr7p2cVbqA1w%T4255h(m zwV2h7*@IQ8ov`h!JK1wd=%Tu_%{Z~kaX+!mU=Sx^<}CZAFdeB>5OA-HTr=r@Aw0kHtwF8M4K=pCPNWjWErUpk4^iGBG!kp|n}BkXHOE z`(4`3;+~y|GS^D-;}&Z^&=2cv8`SGAO>HxYyM@ea)MC3X>X++Gq;V%#$&n;(h8^c6 zJKU2DL8r64)w-a*sH3uktp|}^3{E}UX4vW%>cM`UhD%J1V@xoji_%l<`hs6DmqbY*YhM0B>FzVx$&{1#OfhVVYI+s-Y9s4cg()EdQ^U2wLKLq-mVnp^HU zyNN9~NrL<&Nq5B520_>f7CJ6JLuv{k?3%NrcDy*KA1V!d{_Vs+nb`Vb5VeR2c44>j zHm9PqFTn9T04Ix+WwUQFj#Hw;&be++epBAb9WC=WQ?t)2UQ<)o3$TD2x-r2fPs`&e zlM)KwGW%UK=yx(G<9U?MQ{2pj+RtcR(*zp@U3S6yLUdF(JnJbe{R{=7zk~M>#N9kv z2>Ol-ILuNIvRE8##uFFgCE`$aX$4_q#u{N(3Xoq*Cu2zxC&jM~yS+G(&zFvC#!l+a zuse>m3f->p1MdPxUZ@i(Vc<|^B42IzY|-WEQ>V*&xMm*M%|4Oo=U;k)-NKWNe&OZB zXxa{YJ=eI!OuB4yYG)O9W-<-jKwVG=sV`M+!R-(d4?o5?{6%CTTXZ?g&X(nX=H~ zMN@KbP@-OEPKsaQFu~9f|Ic}B;ypH3OWB$A+0M+2O&y*ev$e@dGvk_xOBbP%mL;RD zxg4r;mIP{MU67DhXIzTUr)9Tv4L>?ma5+A_A$!f{2lB8!9hKc89M02(nU#MZbDerj z%*@sk@~fF$PFd8J!8bRI;W@Nis0hxuTs+C4NJs~80>D25|6`t;q!zkbYc;gEW%r6Z3y_WB0;Y|*6%eg z^;~MFf+%S5Qt*2B!d$#dp)#Z`CzcN$cd6Xt1fEr$XjJE2qSw%D8?fB8jNjqJe8nZjcrfL(Ddusdl z&y3B^?qX`x>LYD+&IR33J6W4PaI|)Sd6ScSI^js1v{vV^^3=rC*s46+MsBZ=l{2EO zs#nV>!Fw{hjU*mM_v#&x@b_f=XeQaxZ}^7+7Z@F2xC;_@<&8W^FKvL#N=HbtQ}9w%}bOId;V zY|?L)2_?O-R%@5FS}j>{CmOa-<>AY;wn`+VX(oYQK*;08U8hb{wmYv(JJ{#FLAlvz zVby#IBrb~ALNV!uRT>B8ls+huqS%`cI;|$9sBNn*lWGd>7WES~CkaUkemRQ4OaO9etM0P1=m; zQbFa8mYYE$$OW@xxsm@hm~AKFz?X7fe+#aitek0PN{eBqC8fBI)S|0w|Q`T)IEog2Ws8436m?xKil`vi=n$!q$}TkXD`z?_1y&YhqJIYyC}Me|K&8w-FhpbP36uHN=-8}&wD91OCxs# z6dkcb1D1Je*p)Ej?nEd5$umSzKvc*KrHW=Wbv4igyz;p%bvO z7FjLy);#Y^y*$F#RD0dwi>R#iE)=-aj9{6ccJCY$`2P$lLWZY1@ng9?qykj zy!0Ol<0qE2pceIIVYoJ-n(_O`W~QkH=ct5LcO+(94uL;p!z;1~K1(#GM03~7uDpaJ z=5=8Hfciu2=bcqO=abh2qzsrJ#)qpH)A#boSv`6l2ZJyVk~D3voJrU`FaPihAE7?_ zk(<<}GOk7Dr23;__#%u(E*!($x$k4|)^dlq%2fJQgQOh}G?`?hOrZmkEcK74;* F{tJPfD1-n2 diff --git a/biglinux-webapps/usr/share/locale/de/LC_MESSAGES/biglinux-webapps.json b/biglinux-webapps/usr/share/locale/de/LC_MESSAGES/biglinux-webapps.json index e51216e3..5dc1a22a 100644 --- a/biglinux-webapps/usr/share/locale/de/LC_MESSAGES/biglinux-webapps.json +++ b/biglinux-webapps/usr/share/locale/de/LC_MESSAGES/biglinux-webapps.json @@ -1 +1 @@ -{"biglinux-webapps/biglinux-webapps":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Vorlagen"]},"Choose a Template":{"*":["Wählen Sie eine Vorlage"]},"Search templates...":{"*":["Vorlagen suchen..."]},"Search templates":{"*":["Suchvorlagen"]},"Search Results":{"*":["Suchergebnisse"]},"No templates found":{"*":["Keine Vorlagen gefunden"]},"Browser: {0}":{"*":["Browser: {0}"]},"Edit WebApp":{"*":["WebApp bearbeiten"]},"Edit {0}":{"*":["Bearbeiten {0}"]},"Delete WebApp":{"*":["WebApp löschen"]},"Delete {0}":{"*":["Löschen {0}"]},"Welcome to WebApps Manager":{"*":["Willkommen bei WebApps-Manager"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Was sind WebApps?\n\nWebApps sind Webanwendungen, die in einem dedizierten Browser-Fenster ausgeführt werden und eine App-ähnliche Erfahrung für Ihre bevorzugten Websites bieten.\n\nVorteile der Verwendung von WebApps:\n\n• Fokus: Arbeiten ohne die Ablenkungen durch andere Browser-Tabs\n• Desktop-Integration: Schneller Zugriff über Ihr Anwendungsmenü\n• Isolierte Profile: Optional kann jede WebApp ihre eigenen Cookies und Einstellungen haben\n"]},"Don't show this again":{"*":["Zeige dies nicht erneut"]},"Let's Start":{"*":["Lassen Sie uns beginnen"]},"Select Browser":{"*":["Browser auswählen"]},"Cancel":{"*":["Abbrechen"]},"Select":{"*":["Auswählen"]},"System Default":{"*":["System-Default"]},"Default":{"*":["Default"]},"Please select a browser.":{"*":["Bitte wählen Sie einen Browser aus."]},"Error":{"*":["Fehler"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["WebApp hinzufügen"]},"Choose from templates":{"*":["Wählen Sie aus Vorlagen"]},"URL":{"*":["URL"]},"Detect":{"*":["Erkennen"]},"Detect name and icon from website":{"*":["Name und Icon von Website erkennen"]},"Name":{"*":["Name"]},"App Icon":{"*":["App-Icon"]},"Select icon for the WebApp":{"*":["Icon für die WebApp aus.wählen"]},"Available Icons":{"*":["Verfügbare Icons"]},"Category":{"*":["Kategorie"]},"Application Mode":{"*":["Anwendungsmodus"]},"Opens as a native window without browser interface":{"*":["Öffnet sich als natives Fenster ohne Browseroberfläche"]},"Browser":{"*":["Browser"]},"Profile Settings":{"*":["Profile-Einstellungen"]},"Configure a separate browser profile for this webapp":{"*":["Konfigurieren Sie ein separates Browserprofil für diese Webanwendung."]},"Use separate profile":{"*":["Separates Profil verwenden"]},"Allows independent cookies and sessions":{"*":["Erlaubt unabhängige Cookies und Sitzungen"]},"Profile Name":{"*":["Profilname"]},"Save":{"*":["Speichern"]},"Loading...":{"*":["Laden ..."]},"Detecting website information, please wait":{"*":["Websiteinformationen werden erkannt, bitte warten."]},"Please enter a URL first.":{"*":["Bitte geben Sie zuerst eine URL ein."]},"Please enter a name for the WebApp.":{"*":["Bitte geben Sie einen Name für die WebApp ein."]},"Please enter a URL for the WebApp.":{"*":["Bitte geben Sie eine URL für die WebApp ein."]},"Please select a browser for the WebApp.":{"*":["Bitte wählen Sie einen Browser für die WebApp aus."]},"WebApps Manager":{"*":["WebApps-Manager"]},"Search WebApps":{"*":["WebApps suchen"]},"Main Menu":{"*":["Hauptmenü"]},"Refresh":{"*":["Aktualisieren"]},"Export WebApps":{"*":["WebApps exportieren"]},"Import WebApps":{"*":["WebApps importieren"]},"Browse Applications Folder":{"*":["Ordner „Anwendungen“ durchsuchen"]},"Browse Profiles Folder":{"*":["Ordner „Profile“ durchsuchen"]},"Show Welcome Screen":{"*":["Willkommensbildschirm zeigen"]},"Remove All WebApps":{"*":["Alle WebApps entfernen"]},"About":{"*":["Über"]},"Add":{"*":["Hinzufügen"]},"No WebApps Found":{"*":["Keine WebApps gefunden"]},"Add a new webapp to get started":{"*":["Fügen Sie eine neue WebApp hinzu, um zu beginnen"]},"WebApp created successfully":{"*":["WebApp erfolgreich erstellt"]},"WebApp updated successfully":{"*":["WebApp erfolgreich aktualisiert"]},"Browser changed to {0}":{"*":["Browser geändert in {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Sind Sie sicher, dass Sie {0} löschen möchten?\n\nURL: {1}\nBrowser: {2}"]},"Also delete configuration folder":{"*":["Auch Konfigurationsordner löschen"]},"Delete":{"*":["Löschen"]},"WebApp deleted successfully":{"*":["WebApp erfolgreich gelöscht"]},"REMOVE ALL":{"*":["ALLE ENTFERNEN"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Sind Sie sicher, dass Sie alle Ihre WebApps entfernen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\n\nGeben Sie \"{0}\" ein, um zu bestätigen."]},"Remove All":{"*":["Alles entfernen"]},"All WebApps have been removed":{"*":["Alle WebApps sind entfernt worden"]},"Failed to remove all WebApps":{"*":["Alle WebApps konnten nicht entfernt werden"]},"Icon {0} of {1}":{"*":["Symbol {0} von {1}"]},"WebApps exported successfully":{"*":["WebApps erfolgreich exportiert"]},"No WebApps":{"*":["Keine WebApps"]},"There are no WebApps to export.":{"*":["Es gibt keine zu exportierenden WebApps."]},"The selected file does not exist.":{"*":["Die ausgewählte Datei ist nicht vorhanden."]},"The selected file is not a valid ZIP archive.":{"*":["Die ausgewählte Datei ist kein gültiges ZIP-Archiv."]},"Error importing WebApps":{"*":["Fehler beim Importieren von WebApps"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["{} WebApps erfolgreich importiert ({} Duplikate übersprungen)"]},"Imported {} WebApps successfully":{"*":["{} WebApps erfolgreich importiert"]},"No":{"*":["Nein"]},"Yes":{"*":["Ja"]}}}} \ No newline at end of file +{"biglinux-webapps/biglinux-webapps":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Vorlagen"]},"Choose a Template":{"*":["Wählen Sie eine Vorlage"]},"Search templates...":{"*":["Vorlagen suchen..."]},"Search Results":{"*":["Suchergebnisse"]},"No templates found":{"*":["Keine Vorlagen gefunden"]},"Edit WebApp":{"*":["WebApp bearbeiten"]},"Delete WebApp":{"*":["WebApp löschen"]},"Welcome to WebApps Manager":{"*":["Willkommen bei WebApps-Manager"]},"Don't show this again":{"*":["Zeige dies nicht erneut"]},"Let's Start":{"*":["Lassen Sie uns beginnen"]},"Select Browser":{"*":["Browser auswählen"]},"Cancel":{"*":["Abbrechen"]},"Select":{"*":["Auswählen"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["WebApp hinzufügen"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Name und Icon von Website erkennen"]},"Name":{"*":["Name"]},"Category":{"*":["Kategorie"]},"Opens as a native window without browser interface":{"*":["Öffnet sich als natives Fenster ohne Browseroberfläche"]},"Browser":{"*":["Browser"]},"Allows independent cookies and sessions":{"*":["Erlaubt unabhängige Cookies und Sitzungen"]},"Profile Name":{"*":["Profilname"]},"Save":{"*":["Speichern"]},"Loading...":{"*":["Laden ..."]},"WebApps Manager":{"*":["WebApps-Manager"]},"Search WebApps":{"*":["WebApps suchen"]},"Export WebApps":{"*":["WebApps exportieren"]},"Import WebApps":{"*":["WebApps importieren"]},"Browse Applications Folder":{"*":["Ordner „Anwendungen“ durchsuchen"]},"Browse Profiles Folder":{"*":["Ordner „Profile“ durchsuchen"]},"Remove All WebApps":{"*":["Alle WebApps entfernen"]},"About":{"*":["Über"]},"Add a new webapp to get started":{"*":["Fügen Sie eine neue WebApp hinzu, um zu beginnen"]},"WebApp created successfully":{"*":["WebApp erfolgreich erstellt"]},"WebApp updated successfully":{"*":["WebApp erfolgreich aktualisiert"]},"Also delete configuration folder":{"*":["Auch Konfigurationsordner löschen"]},"Delete":{"*":["Löschen"]},"WebApp deleted successfully":{"*":["WebApp erfolgreich gelöscht"]},"Remove All":{"*":["Alles entfernen"]},"All WebApps have been removed":{"*":["Alle WebApps sind entfernt worden"]},"Failed to remove all WebApps":{"*":["Alle WebApps konnten nicht entfernt werden"]},"WebApps exported successfully":{"*":["WebApps erfolgreich exportiert"]},"No WebApps":{"*":["Keine WebApps"]},"Change browser":{"*":["Browser wechseln"]},"Edit":{"*":["Bearbeiten"]},"New WebApp":{"*":["Neue WebApp"]},"Icon":{"*":["Symbol"]},"App Mode":{"*":["App-Modus"]},"Separate Profile":{"*":["Getrenntes Profil"]},"Select Icon":{"*":["Symbol auswählen"]},"Images":{"*":["Bilder"]},"ZIP files":{"*":["ZIP-Dateien"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Importiert {imported}, übersprungene {dups} Duplikate"]},"Import failed":{"*":["Import fehlgeschlagen"]},"Export failed":{"*":["Export fehlgeschlagen"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Dadurch werden alle Webapps und deren Desktop-Einträge gelöscht. Dies kann nicht rückgängig gemacht werden."]},"Browser changed":{"*":["Browser geändert"]},"What are WebApps?":{"*":["Was sind WebApps?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps sind Webanwendungen, die in einem eigenen Browserfenster laufen und ein app-ähnlicheres Erlebnis für Ihre Lieblingswebsites bieten."]},"Benefits of using WebApps:":{"*":["Vorteile der Verwendung von WebApps:"]},"Focus":{"*":["Fokus"]},"Work without the distractions of other browser tabs":{"*":["Arbeiten ohne Ablenkung durch andere Browser-Tabs"]},"Desktop Integration":{"*":["Desktop-Integration"]},"Quick access from your application menu":{"*":["Schneller Zugriff über Ihr Anwendungsmenü"]},"Isolated Profiles":{"*":["Isolierte Profile"]},"Each webapp can have its own cookies and settings":{"*":["Jede WebApp kann eigene Cookies und Einstellungen haben"]},"Back":{"*":["Zurück"]},"Forward":{"*":["Vorwärts"]},"Reload":{"*":["Neu laden"]},"Fullscreen":{"*":["Vollbild"]},"Enter URL…":{"*":["URL eingeben…"]},"Zoom In":{"*":["Vergrößern"]},"Zoom Out":{"*":["Verkleinern"]},"Reset Zoom":{"*":["Zoom zurücksetzen"]},"Developer Tools":{"*":["Entwicklerwerkzeuge"]},"Menu":{"*":["Menü"]},"Open Link in Browser":{"*":["Link im Browser öffnen"]},"Download Complete":{"*":["Download abgeschlossen"]},"Save File":{"*":["Datei speichern"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/usr/share/locale/de/LC_MESSAGES/biglinux-webapps.mo b/biglinux-webapps/usr/share/locale/de/LC_MESSAGES/biglinux-webapps.mo index 1a16192af33b9f4aee4cbadb9e5d58c2464cd513..c48ea590dca41977190f70389ca0c9d547fd2fca 100644 GIT binary patch literal 5416 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 literal 7021 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 LQvB-c2LkmUrCPr{ diff --git a/biglinux-webapps/usr/share/locale/el/LC_MESSAGES/biglinux-webapps.json b/biglinux-webapps/usr/share/locale/el/LC_MESSAGES/biglinux-webapps.json index 4a2bcf13..7638eeda 100644 --- a/biglinux-webapps/usr/share/locale/el/LC_MESSAGES/biglinux-webapps.json +++ b/biglinux-webapps/usr/share/locale/el/LC_MESSAGES/biglinux-webapps.json @@ -1 +1 @@ -{"el":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Πρότυπα"]},"Choose a Template":{"*":["Επιλέξτε ένα Πρότυπο"]},"Search templates...":{"*":["Αναζήτηση προτύπων..."]},"Search templates":{"*":["Αναζήτηση προτύπων"]},"Search Results":{"*":["Αποτελέσματα Αναζήτησης"]},"No templates found":{"*":["Δεν βρέθηκαν πρότυπα"]},"Browser: {0}":{"*":["Πλοηγός: {0}"]},"Edit WebApp":{"*":["Επεξεργασία WebApp"]},"Edit {0}":{"*":["Επεξεργασία {0}"]},"Delete WebApp":{"*":["Διαγραφή WebApp"]},"Delete {0}":{"*":["Διαγραφή {0}"]},"Welcome to WebApps Manager":{"*":["Καλώς ήρθατε στον Διαχειριστή WebApps"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Τι είναι οι WebApps;\n\nΟι WebApps είναι διαδικτυακές εφαρμογές που εκτελούνται σε ένα ειδικό παράθυρο προγράμματος περιήγησης, παρέχοντας μια πιο εφαρμογή-όμοια εμπειρία για τις αγαπημένες σας ιστοσελίδες.\n\nΟφέλη από τη χρήση WebApps:\n\n• Εστίαση: Εργαστείτε χωρίς τις αποσπάσεις από άλλες καρτέλες του προγράμματος περιήγησης\n• Ενοποίηση Επιφάνειας Εργασίας: Γρήγορη πρόσβαση από το μενού εφαρμογών σας\n• Απομονωμένα Προφίλ: Προαιρετικά, κάθε webapp μπορεί να έχει τα δικά της cookies και ρυθμίσεις\n"]},"Don't show this again":{"*":["Μην το δείξετε ξανά"]},"Let's Start":{"*":["Ας ξεκινήσουμε"]},"Select Browser":{"*":["Επιλέξτε πρόγραμμα περιήγησης"]},"Cancel":{"*":["Ακύρωση"]},"Select":{"*":["Επιλέξτε"]},"System Default":{"*":["Προεπιλογή Συστήματος"]},"Default":{"*":["Προεπιλογή"]},"Please select a browser.":{"*":["Παρακαλώ επιλέξτε έναν περιηγητή."]},"Error":{"*":["Σφάλμα"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Προσθήκη WebApp"]},"Choose from templates":{"*":["Επιλέξτε από πρότυπα"]},"URL":{"*":["Διεύθυνση URL"]},"Detect":{"*":["Ανίχνευση"]},"Detect name and icon from website":{"*":["Ανίχνευση ονόματος και εικονιδίου από τον ιστότοπο"]},"Name":{"*":["Όνομα"]},"App Icon":{"*":["Εικονίδιο εφαρμογής"]},"Select icon for the WebApp":{"*":["Επιλέξτε εικονίδιο για την Εφαρμογή Ιστού"]},"Available Icons":{"*":["Διαθέσιμα Εικονίδια"]},"Category":{"*":["Κατηγορία"]},"Application Mode":{"*":["Λειτουργία Εφαρμογής"]},"Opens as a native window without browser interface":{"*":["Ανοίγει ως εγγενές παράθυρο χωρίς διεπαφή προγράμματος περιήγησης."]},"Browser":{"*":["Πλοηγός"]},"Profile Settings":{"*":["Ρυθμίσεις Προφίλ"]},"Configure a separate browser profile for this webapp":{"*":["Ρυθμίστε ένα ξεχωριστό προφίλ προγράμματος περιήγησης για αυτήν την εφαρμογή ιστού."]},"Use separate profile":{"*":["Χρησιμοποιήστε ξεχωριστό προφίλ"]},"Allows independent cookies and sessions":{"*":["Επιτρέπει ανεξάρτητα cookies και συνεδρίες"]},"Profile Name":{"*":["Όνομα προφίλ"]},"Save":{"*":["Αποθήκευση"]},"Loading...":{"*":["Φόρτωση..."]},"Detecting website information, please wait":{"*":["Ανίχνευση πληροφοριών ιστοσελίδας, παρακαλώ περιμένετε"]},"Please enter a URL first.":{"*":["Παρακαλώ εισάγετε πρώτα μια διεύθυνση URL."]},"Please enter a name for the WebApp.":{"*":["Παρακαλώ εισάγετε ένα όνομα για την Εφαρμογή Ιστού."]},"Please enter a URL for the WebApp.":{"*":["Παρακαλώ εισάγετε μια διεύθυνση URL για την εφαρμογή ιστού."]},"Please select a browser for the WebApp.":{"*":["Παρακαλώ επιλέξτε έναν περιηγητή για την Εφαρμογή Ιστού."]},"WebApps Manager":{"*":["Διαχειριστής WebApps"]},"Search WebApps":{"*":["Αναζήτηση WebApps"]},"Main Menu":{"*":["Κύριο Μενού"]},"Refresh":{"*":["Ανανέωση"]},"Export WebApps":{"*":["Εξαγωγή WebApps"]},"Import WebApps":{"*":["Εισαγωγή WebApps"]},"Browse Applications Folder":{"*":["Περιήγηση στο Φάκελο Εφαρμογών"]},"Browse Profiles Folder":{"*":["Προβολή φακέλου προφίλ"]},"Show Welcome Screen":{"*":["Εμφάνιση Οθόνης Καλωσορίσματος"]},"Remove All WebApps":{"*":["Αφαίρεση όλων των WebApps"]},"About":{"*":["Σχετικά"]},"Add":{"*":["Προσθήκη"]},"No WebApps Found":{"*":["Δεν βρέθηκαν WebApps"]},"Add a new webapp to get started":{"*":["Προσθέστε μια νέα διαδικτυακή εφαρμογή για να ξεκινήσετε"]},"WebApp created successfully":{"*":["Η εφαρμογή Web δημιουργήθηκε με επιτυχία"]},"WebApp updated successfully":{"*":["Η εφαρμογή Web ενημερώθηκε με επιτυχία"]},"Browser changed to {0}":{"*":["Ο περιηγητής άλλαξε σε {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Είστε σίγουροι ότι θέλετε να διαγράψετε {0};\n\nΔιεύθυνση URL: {1} \nΠεριηγητής: {2}"]},"Also delete configuration folder":{"*":["Επίσης, διαγράψτε τον φάκελο διαμόρφωσης."]},"Delete":{"*":["Διαγραφή"]},"WebApp deleted successfully":{"*":["Η εφαρμογή Web διαγράφηκε με επιτυχία."]},"REMOVE ALL":{"*":["ΑΦΑΙΡΕΣΗ ΟΛΩΝ"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Είστε σίγουροι ότι θέλετε να αφαιρέσετε όλες τις WebApps σας; Αυτή η ενέργεια δεν μπορεί να αναιρεθεί.\n\nΠληκτρολογήστε \"{0}\" για επιβεβαίωση."]},"Remove All":{"*":["Αφαίρεση όλων"]},"All WebApps have been removed":{"*":["Όλες οι WebApps έχουν αφαιρεθεί."]},"Failed to remove all WebApps":{"*":["Αποτυχία κατά την αφαίρεση όλων των WebApps"]},"Icon {0} of {1}":{"*":["Εικονίδιο {0} του {1}"]},"WebApps exported successfully":{"*":["Οι εφαρμογές ιστού εξήχθησαν με επιτυχία"]},"No WebApps":{"*":["Όχι WebApps"]},"There are no WebApps to export.":{"*":["Δεν υπάρχουν WebApps προς εξαγωγή."]},"The selected file does not exist.":{"*":["Το επιλεγμένο αρχείο δεν υπάρχει."]},"The selected file is not a valid ZIP archive.":{"*":["Το επιλεγμένο αρχείο δεν είναι έγκυρο ZIP αρχείο."]},"Error importing WebApps":{"*":["Σφάλμα κατά την εισαγωγή WebApps"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["Εισήχθησαν {} WebApps με επιτυχία ({} διπλότυπα παραλείφθηκαν)"]},"Imported {} WebApps successfully":{"*":["Εισήχθησαν {} WebApps με επιτυχία"]},"No":{"*":["Όχι"]},"Yes":{"*":["Ναι"]}}}} \ No newline at end of file +{"el":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Πρότυπα"]},"Choose a Template":{"*":["Επιλέξτε ένα Πρότυπο"]},"Search templates...":{"*":["Αναζήτηση προτύπων..."]},"Search Results":{"*":["Αποτελέσματα Αναζήτησης"]},"No templates found":{"*":["Δεν βρέθηκαν πρότυπα"]},"Edit WebApp":{"*":["Επεξεργασία WebApp"]},"Delete WebApp":{"*":["Διαγραφή WebApp"]},"Welcome to WebApps Manager":{"*":["Καλώς ήρθατε στον Διαχειριστή WebApps"]},"Don't show this again":{"*":["Μην το δείξετε ξανά"]},"Let's Start":{"*":["Ας ξεκινήσουμε"]},"Select Browser":{"*":["Επιλέξτε πρόγραμμα περιήγησης"]},"Cancel":{"*":["Ακύρωση"]},"Select":{"*":["Επιλέξτε"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Προσθήκη WebApp"]},"URL":{"*":["Διεύθυνση URL"]},"Detect name and icon from website":{"*":["Ανίχνευση ονόματος και εικονιδίου από τον ιστότοπο"]},"Name":{"*":["Όνομα"]},"Category":{"*":["Κατηγορία"]},"Opens as a native window without browser interface":{"*":["Ανοίγει ως εγγενές παράθυρο χωρίς διεπαφή προγράμματος περιήγησης."]},"Browser":{"*":["Πλοηγός"]},"Allows independent cookies and sessions":{"*":["Επιτρέπει ανεξάρτητα cookies και συνεδρίες"]},"Profile Name":{"*":["Όνομα προφίλ"]},"Save":{"*":["Αποθήκευση"]},"Loading...":{"*":["Φόρτωση..."]},"WebApps Manager":{"*":["Διαχειριστής WebApps"]},"Search WebApps":{"*":["Αναζήτηση WebApps"]},"Export WebApps":{"*":["Εξαγωγή WebApps"]},"Import WebApps":{"*":["Εισαγωγή WebApps"]},"Browse Applications Folder":{"*":["Περιήγηση στο Φάκελο Εφαρμογών"]},"Browse Profiles Folder":{"*":["Προβολή φακέλου προφίλ"]},"Remove All WebApps":{"*":["Αφαίρεση όλων των WebApps"]},"About":{"*":["Σχετικά"]},"Add a new webapp to get started":{"*":["Προσθέστε μια νέα διαδικτυακή εφαρμογή για να ξεκινήσετε"]},"WebApp created successfully":{"*":["Η εφαρμογή Web δημιουργήθηκε με επιτυχία"]},"WebApp updated successfully":{"*":["Η εφαρμογή Web ενημερώθηκε με επιτυχία"]},"Also delete configuration folder":{"*":["Επίσης, διαγράψτε τον φάκελο διαμόρφωσης."]},"Delete":{"*":["Διαγραφή"]},"WebApp deleted successfully":{"*":["Η εφαρμογή Web διαγράφηκε με επιτυχία."]},"Remove All":{"*":["Αφαίρεση όλων"]},"All WebApps have been removed":{"*":["Όλες οι WebApps έχουν αφαιρεθεί."]},"Failed to remove all WebApps":{"*":["Αποτυχία κατά την αφαίρεση όλων των WebApps"]},"WebApps exported successfully":{"*":["Οι εφαρμογές ιστού εξήχθησαν με επιτυχία"]},"No WebApps":{"*":["Όχι WebApps"]},"Change browser":{"*":["Αλλαγή προγράμματος περιήγησης"]},"Edit":{"*":["Επεξεργασία"]},"New WebApp":{"*":["Νέα WebApp"]},"Icon":{"*":["Εικονίδιο"]},"App Mode":{"*":["Λειτουργία εφαρμογής"]},"Separate Profile":{"*":["Ξεχωριστό προφίλ"]},"Select Icon":{"*":["Επιλογή εικονιδίου"]},"Images":{"*":["Εικόνες"]},"ZIP files":{"*":["Αρχεία ZIP"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Εισήχθησαν {imported}, παραλήφθηκαν {dups} διπλότυπα"]},"Import failed":{"*":["Η εισαγωγή απέτυχε"]},"Export failed":{"*":["Η εξαγωγή απέτυχε"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Αυτό θα διαγράψει όλες τις webapps και τις καταχωρήσεις τους στην επιφάνεια εργασίας. Δεν μπορεί να αναιρεθεί."]},"Browser changed":{"*":["Το πρόγραμμα περιήγησης άλλαξε"]},"What are WebApps?":{"*":["Τι είναι οι WebApps;"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["Τα WebApps είναι διαδικτυακές εφαρμογές που εκτελούνται σε ένα αφιερωμένο παράθυρο προγράμματος περιήγησης, προσφέροντας μια εμπειρία πιο κοντά σε εφαρμογή για τις αγαπημένες σας ιστοσελίδες."]},"Benefits of using WebApps:":{"*":["Οφέλη από τη χρήση των WebApps:"]},"Focus":{"*":["Εστίαση"]},"Work without the distractions of other browser tabs":{"*":["Εργαστείτε χωρίς τις αποσπάσεις άλλων καρτελών του προγράμματος περιήγησης"]},"Desktop Integration":{"*":["Ενσωμάτωση στην επιφάνεια εργασίας"]},"Quick access from your application menu":{"*":["Γρήγορη πρόσβαση από το μενού εφαρμογών σας"]},"Isolated Profiles":{"*":["Απομονωμένα προφίλ"]},"Each webapp can have its own cookies and settings":{"*":["Κάθε webapp μπορεί να έχει τα δικά του cookies και ρυθμίσεις"]},"Back":{"*":["Πίσω"]},"Forward":{"*":["Εμπρός"]},"Reload":{"*":["Επαναφόρτωση"]},"Fullscreen":{"*":["Πλήρης οθόνη"]},"Enter URL…":{"*":["Εισαγάγετε URL…"]},"Zoom In":{"*":["Μεγέθυνση"]},"Zoom Out":{"*":["Σμίκρυνση"]},"Reset Zoom":{"*":["Επαναφορά Ζουμ"]},"Developer Tools":{"*":["Εργαλεία Προγραμματιστή"]},"Menu":{"*":["Μενού"]},"Open Link in Browser":{"*":["Άνοιγμα Συνδέσμου στον Περιηγητή"]},"Download Complete":{"*":["Λήψη Ολοκληρώθηκε"]},"Save File":{"*":["Αποθήκευση Αρχείου"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/usr/share/locale/el/LC_MESSAGES/biglinux-webapps.mo b/biglinux-webapps/usr/share/locale/el/LC_MESSAGES/biglinux-webapps.mo index 7b4233d98ef1c90fca386378f165ad3a4fb5bb65..487923163e85732a0f14e23b7dec8edf7f845742 100644 GIT binary patch literal 7292 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 literal 9424 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 U>QHTUJJPk%tjO{mY_n+o4-Lr3!vFvP diff --git a/biglinux-webapps/usr/share/locale/es/LC_MESSAGES/biglinux-webapps.json b/biglinux-webapps/usr/share/locale/es/LC_MESSAGES/biglinux-webapps.json index 227312d4..980342bb 100644 --- a/biglinux-webapps/usr/share/locale/es/LC_MESSAGES/biglinux-webapps.json +++ b/biglinux-webapps/usr/share/locale/es/LC_MESSAGES/biglinux-webapps.json @@ -1 +1 @@ -{"es":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Plantillas"]},"Choose a Template":{"*":["Elige una plantilla"]},"Search templates...":{"*":["Buscar plantillas..."]},"Search templates":{"*":["Buscar plantillas"]},"Search Results":{"*":["Resultados de búsqueda"]},"No templates found":{"*":["No se encontraron plantillas."]},"Browser: {0}":{"*":["Navegador: {0}"]},"Edit WebApp":{"*":["Editar WebApp"]},"Edit {0}":{"*":["Editar {0}"]},"Delete WebApp":{"*":["Eliminar WebApp"]},"Delete {0}":{"*":["Eliminar {0}"]},"Welcome to WebApps Manager":{"*":["Bienvenido a WebApps Manager"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["¿Qué son las WebApps?\n\nLas WebApps son aplicaciones web que se ejecutan en una ventana de navegador dedicada, proporcionando una experiencia más similar a una aplicación para tus sitios web favoritos.\n\nBeneficios de usar WebApps:\n\n• Enfoque: Trabaja sin las distracciones de otras pestañas del navegador\n• Integración de Escritorio: Acceso rápido desde tu menú de aplicaciones\n• Perfiles Aislados: Opcionalmente, cada webapp puede tener sus propias cookies y configuraciones\n"]},"Don't show this again":{"*":["No mostrar esto de nuevo"]},"Let's Start":{"*":["Comencemos"]},"Select Browser":{"*":["Seleccionar navegador"]},"Cancel":{"*":["Cancelar"]},"Select":{"*":["Seleccionar"]},"System Default":{"*":["Predeterminado del sistema"]},"Default":{"*":["Predeterminado"]},"Please select a browser.":{"*":["Por favor, selecciona un navegador."]},"Error":{"*":["Error"]},"OK":{"*":["Aceptar"]},"Add WebApp":{"*":["Agregar WebApp"]},"Choose from templates":{"*":["Elige de las plantillas"]},"URL":{"*":["URL"]},"Detect":{"*":["Detectar"]},"Detect name and icon from website":{"*":["Detectar nombre e ícono del sitio web"]},"Name":{"*":["Nombre"]},"App Icon":{"*":["Ícono de la aplicación"]},"Select icon for the WebApp":{"*":["Seleccionar ícono para la WebApp"]},"Available Icons":{"*":["Iconos disponibles"]},"Category":{"*":["Categoría"]},"Application Mode":{"*":["Modo de aplicación"]},"Opens as a native window without browser interface":{"*":["Se abre como una ventana nativa sin interfaz de navegador."]},"Browser":{"*":["Navegador"]},"Profile Settings":{"*":["Configuración del perfil"]},"Configure a separate browser profile for this webapp":{"*":["Configura un perfil de navegador separado para esta aplicación web."]},"Use separate profile":{"*":["Usar perfil separado"]},"Allows independent cookies and sessions":{"*":["Permite cookies y sesiones independientes"]},"Profile Name":{"*":["Nombre de perfil"]},"Save":{"*":["Guardar"]},"Loading...":{"*":["Cargando..."]},"Detecting website information, please wait":{"*":["Detectando información del sitio web, por favor espere."]},"Please enter a URL first.":{"*":["Por favor, ingrese una URL primero."]},"Please enter a name for the WebApp.":{"*":["Por favor, ingrese un nombre para la WebApp."]},"Please enter a URL for the WebApp.":{"*":["Por favor, ingrese una URL para la WebApp."]},"Please select a browser for the WebApp.":{"*":["Por favor, seleccione un navegador para la WebApp."]},"WebApps Manager":{"*":["Administrador de WebApps"]},"Search WebApps":{"*":["Buscar WebApps"]},"Main Menu":{"*":["Menú Principal"]},"Refresh":{"*":["Actualizar"]},"Export WebApps":{"*":["Exportar WebApps"]},"Import WebApps":{"*":["Importar WebApps"]},"Browse Applications Folder":{"*":["Explorar la carpeta de aplicaciones"]},"Browse Profiles Folder":{"*":["Explorar carpeta de perfiles"]},"Show Welcome Screen":{"*":["Mostrar Pantalla de Bienvenida"]},"Remove All WebApps":{"*":["Eliminar todas las aplicaciones web"]},"About":{"*":["Acerca de"]},"Add":{"*":["Agregar"]},"No WebApps Found":{"*":["No se encontraron aplicaciones web."]},"Add a new webapp to get started":{"*":["Agrega una nueva aplicación web para comenzar."]},"WebApp created successfully":{"*":["WebApp creado con éxito"]},"WebApp updated successfully":{"*":["WebApp actualizado con éxito"]},"Browser changed to {0}":{"*":["El navegador ha cambiado a {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["¿Estás seguro de que deseas eliminar {0}?\n\nURL: {1}\nNavegador: {2}"]},"Also delete configuration folder":{"*":["También elimina la carpeta de configuración."]},"Delete":{"*":["Eliminar"]},"WebApp deleted successfully":{"*":["WebApp eliminada con éxito"]},"REMOVE ALL":{"*":["ELIMINAR TODO"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["¿Estás seguro de que deseas eliminar todas tus WebApps? Esta acción no se puede deshacer.\n\nEscribe \"{0}\" para confirmar."]},"Remove All":{"*":["Eliminar todo"]},"All WebApps have been removed":{"*":["Todas las aplicaciones web han sido eliminadas."]},"Failed to remove all WebApps":{"*":["No se pudo eliminar todas las aplicaciones web."]},"Icon {0} of {1}":{"*":["Icono {0} de {1}"]},"WebApps exported successfully":{"*":["WebApps exportados con éxito"]},"No WebApps":{"*":["Sin WebApps"]},"There are no WebApps to export.":{"*":["No hay WebApps para exportar."]},"The selected file does not exist.":{"*":["El archivo seleccionado no existe."]},"The selected file is not a valid ZIP archive.":{"*":["El archivo seleccionado no es un archivo ZIP válido."]},"Error importing WebApps":{"*":["Error al importar WebApps"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["Se importaron {} WebApps con éxito ({} duplicados omitidos)"]},"Imported {} WebApps successfully":{"*":["WebApps {} importados con éxito."]},"No":{"*":["No"]},"Yes":{"*":["Sí"]}}}} \ No newline at end of file +{"es":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Plantillas"]},"Choose a Template":{"*":["Elige una plantilla"]},"Search templates...":{"*":["Buscar plantillas..."]},"Search Results":{"*":["Resultados de búsqueda"]},"No templates found":{"*":["No se encontraron plantillas."]},"Edit WebApp":{"*":["Editar WebApp"]},"Delete WebApp":{"*":["Eliminar WebApp"]},"Welcome to WebApps Manager":{"*":["Bienvenido a WebApps Manager"]},"Don't show this again":{"*":["No mostrar esto de nuevo"]},"Let's Start":{"*":["Comencemos"]},"Select Browser":{"*":["Seleccionar navegador"]},"Cancel":{"*":["Cancelar"]},"Select":{"*":["Seleccionar"]},"OK":{"*":["Aceptar"]},"Add WebApp":{"*":["Agregar WebApp"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Detectar nombre e ícono del sitio web"]},"Name":{"*":["Nombre"]},"Category":{"*":["Categoría"]},"Opens as a native window without browser interface":{"*":["Se abre como una ventana nativa sin interfaz de navegador."]},"Browser":{"*":["Navegador"]},"Allows independent cookies and sessions":{"*":["Permite cookies y sesiones independientes"]},"Profile Name":{"*":["Nombre de perfil"]},"Save":{"*":["Guardar"]},"Loading...":{"*":["Cargando..."]},"WebApps Manager":{"*":["Administrador de WebApps"]},"Search WebApps":{"*":["Buscar WebApps"]},"Export WebApps":{"*":["Exportar WebApps"]},"Import WebApps":{"*":["Importar WebApps"]},"Browse Applications Folder":{"*":["Explorar la carpeta de aplicaciones"]},"Browse Profiles Folder":{"*":["Explorar carpeta de perfiles"]},"Remove All WebApps":{"*":["Eliminar todas las aplicaciones web"]},"About":{"*":["Acerca de"]},"Add a new webapp to get started":{"*":["Agrega una nueva aplicación web para comenzar."]},"WebApp created successfully":{"*":["WebApp creado con éxito"]},"WebApp updated successfully":{"*":["WebApp actualizado con éxito"]},"Also delete configuration folder":{"*":["También elimina la carpeta de configuración."]},"Delete":{"*":["Eliminar"]},"WebApp deleted successfully":{"*":["WebApp eliminada con éxito"]},"Remove All":{"*":["Eliminar todo"]},"All WebApps have been removed":{"*":["Todas las aplicaciones web han sido eliminadas."]},"Failed to remove all WebApps":{"*":["No se pudo eliminar todas las aplicaciones web."]},"WebApps exported successfully":{"*":["WebApps exportados con éxito"]},"No WebApps":{"*":["Sin WebApps"]},"Change browser":{"*":["Cambiar navegador"]},"Edit":{"*":["Editar"]},"New WebApp":{"*":["Nueva WebApp"]},"Icon":{"*":["Ícono"]},"App Mode":{"*":["Modo de aplicación"]},"Separate Profile":{"*":["Perfil separado"]},"Select Icon":{"*":["Seleccionar ícono"]},"Images":{"*":["Imágenes"]},"ZIP files":{"*":["Archivos ZIP"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Importados {imported}, duplicados {dups} omitidos"]},"Import failed":{"*":["Falló la importación"]},"Export failed":{"*":["Falló la exportación"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Esto eliminará todas las webapps y sus accesos directos en el escritorio. Esta acción no se puede deshacer."]},"Browser changed":{"*":["Navegador cambiado"]},"What are WebApps?":{"*":["¿Qué son las WebApps?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["Las WebApps son aplicaciones web que se ejecutan en una ventana de navegador dedicada, proporcionando una experiencia más similar a una aplicación para tus sitios web favoritos."]},"Benefits of using WebApps:":{"*":["Beneficios de usar WebApps:"]},"Focus":{"*":["Enfoque"]},"Work without the distractions of other browser tabs":{"*":["Trabaja sin las distracciones de otras pestañas del navegador"]},"Desktop Integration":{"*":["Integración con el escritorio"]},"Quick access from your application menu":{"*":["Acceso rápido desde tu menú de aplicaciones"]},"Isolated Profiles":{"*":["Perfiles aislados"]},"Each webapp can have its own cookies and settings":{"*":["Cada webapp puede tener sus propias cookies y configuraciones"]},"Back":{"*":["Atrás"]},"Forward":{"*":["Adelante"]},"Reload":{"*":["Recargar"]},"Fullscreen":{"*":["Pantalla completa"]},"Enter URL…":{"*":["Introducir URL…"]},"Zoom In":{"*":["Acercar"]},"Zoom Out":{"*":["Alejar"]},"Reset Zoom":{"*":["Restablecer zoom"]},"Developer Tools":{"*":["Herramientas de desarrollador"]},"Menu":{"*":["Menú"]},"Open Link in Browser":{"*":["Abrir enlace en el navegador"]},"Download Complete":{"*":["Descarga completa"]},"Save File":{"*":["Guardar archivo"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/usr/share/locale/es/LC_MESSAGES/biglinux-webapps.mo b/biglinux-webapps/usr/share/locale/es/LC_MESSAGES/biglinux-webapps.mo index d3cc4ee35d42975c29cdaead7be78088ee2ba169..95cc3d2b1bdbc1d65f2ab32a89dc7846b0ed8ad9 100644 GIT binary patch literal 5590 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 literal 7133 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 diff --git a/biglinux-webapps/usr/share/locale/et/LC_MESSAGES/biglinux-webapps.json b/biglinux-webapps/usr/share/locale/et/LC_MESSAGES/biglinux-webapps.json index b6ec6083..d2fae986 100644 --- a/biglinux-webapps/usr/share/locale/et/LC_MESSAGES/biglinux-webapps.json +++ b/biglinux-webapps/usr/share/locale/et/LC_MESSAGES/biglinux-webapps.json @@ -1 +1 @@ -{"et":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Mallid"]},"Choose a Template":{"*":["Vali mall."]},"Search templates...":{"*":["Otsi malle..."]},"Search templates":{"*":["Otsi malle"]},"Search Results":{"*":["Otsingutulemused"]},"No templates found":{"*":["Malle ei leitud"]},"Browser: {0}":{"*":["Brauser: {0}"]},"Edit WebApp":{"*":["Muuda Veebirakendust"]},"Edit {0}":{"*":["Muuda {0}"]},"Delete WebApp":{"*":["Kustuta Veebirakendus"]},"Delete {0}":{"*":["Kustuta {0}"]},"Welcome to WebApps Manager":{"*":["Tere tulemast WebApps Managerisse"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Mis on WebAppid?\n\nWebAppid on veebirakendused, mis töötavad spetsiaalses brauseriaknas, pakkudes teie lemmikveebisaitide jaoks rakendusele sarnast kogemust.\n\nWebAppide kasutamise eelised:\n\n• Fookus: Töö ilma teiste brauseri vahekaartide häirivate teguriteta\n• Desktopi integreerimine: Kiire juurdepääs teie rakenduse menüüst\n• Isoleeritud profiilid: Valikuliselt võib igal veebirakendusel olla oma küpsised ja seaded\n"]},"Don't show this again":{"*":["Ära näita seda uuesti"]},"Let's Start":{"*":["Alustame"]},"Select Browser":{"*":["Vali brauser"]},"Cancel":{"*":["Tühista"]},"Select":{"*":["Vali"]},"System Default":{"*":["Süsteemi vaikeväärtus"]},"Default":{"*":["Vaikimisi"]},"Please select a browser.":{"*":["Palun valige brauser."]},"Error":{"*":["Viga"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Lisa WebApp"]},"Choose from templates":{"*":["Vali mallide hulgast"]},"URL":{"*":["URL"]},"Detect":{"*":["Tuvasta"]},"Detect name and icon from website":{"*":["Tuvasta nimi ja ikoon veebisaidilt"]},"Name":{"*":["Nimi"]},"App Icon":{"*":["Rakenduse ikoon"]},"Select icon for the WebApp":{"*":["Vali ikoon WebApp'i jaoks"]},"Available Icons":{"*":["Saadaval ikoonid"]},"Category":{"*":["Kategooria"]},"Application Mode":{"*":["Rakenduse režiim"]},"Opens as a native window without browser interface":{"*":["Avatakse natiivse aknana ilma brauseri liideseta."]},"Browser":{"*":["Brauser"]},"Profile Settings":{"*":["Profiili seaded"]},"Configure a separate browser profile for this webapp":{"*":["Konfigureeri selle veebirakenduse jaoks eraldi brauseri profiil."]},"Use separate profile":{"*":["Kasutage eraldi profiili"]},"Allows independent cookies and sessions":{"*":["Lubab sõltumatud küpsised ja seansid"]},"Profile Name":{"*":["Profiili nimi"]},"Save":{"*":["Salvesta"]},"Loading...":{"*":["Laadimine..."]},"Detecting website information, please wait":{"*":["Veebiteabe tuvastamine, palun oota"]},"Please enter a URL first.":{"*":["Palun sisestage esmalt URL."]},"Please enter a name for the WebApp.":{"*":["Palun sisestage veebirakenduse nimi."]},"Please enter a URL for the WebApp.":{"*":["Palun sisestage URL WebApp'i jaoks."]},"Please select a browser for the WebApp.":{"*":["Palun valige veebirakenduse jaoks brauser."]},"WebApps Manager":{"*":["Veebirakenduste haldur"]},"Search WebApps":{"*":["Otsi Veebirakendusi"]},"Main Menu":{"*":["Peamenüü"]},"Refresh":{"*":["Värskenda"]},"Export WebApps":{"*":["Ekspordi Veebirakendused"]},"Import WebApps":{"*":["Impordi veebirakendused"]},"Browse Applications Folder":{"*":["Sirvi rakenduste kausta"]},"Browse Profiles Folder":{"*":["Sirvi profiilide kausta"]},"Show Welcome Screen":{"*":["Kuva Tere tulemast ekraanile"]},"Remove All WebApps":{"*":["Eemalda kõik veebirakendused"]},"About":{"*":["Teave"]},"Add":{"*":["Lisa"]},"No WebApps Found":{"*":["Veebirakendusi ei leitud"]},"Add a new webapp to get started":{"*":["Lisa uus veebirakendus, et alustada."]},"WebApp created successfully":{"*":["Veebirakendus loodi edukalt"]},"WebApp updated successfully":{"*":["Veebirakendus on edukalt uuendatud"]},"Browser changed to {0}":{"*":["Brauser on muutunud {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Kas olete kindel, et soovite kustutada {0}?\n\nURL: {1} \nBrauser: {2}"]},"Also delete configuration folder":{"*":["Kustuta ka konfiguratsioonikaust."]},"Delete":{"*":["Kustuta"]},"WebApp deleted successfully":{"*":["Veebirakendus kustutati edukalt"]},"REMOVE ALL":{"*":["Eemalda kõik"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Kas olete kindel, et soovite eemaldada kõik oma veebirakendused? Seda toimingut ei saa tagasi võtta.\n\nKinnitage, kirjutades \"{0}\"."]},"Remove All":{"*":["Eemalda kõik"]},"All WebApps have been removed":{"*":["Kõik veebirakendused on eemaldatud."]},"Failed to remove all WebApps":{"*":["Eba kõik WebAppid eemaldada."]},"Icon {0} of {1}":{"*":["Ikoon {0} {1}"]},"WebApps exported successfully":{"*":["WebApps eksporditi edukalt"]},"No WebApps":{"*":["Ei veebirakendusi"]},"There are no WebApps to export.":{"*":["WebApp'e eksportimiseks ei ole."]},"The selected file does not exist.":{"*":["Valitud faili ei eksisteeri."]},"The selected file is not a valid ZIP archive.":{"*":["Valitud fail ei ole kehtiv ZIP arhiiv."]},"Error importing WebApps":{"*":["Veateade WebAppide importimisel"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["Imporditi {} WebAppsi edukalt ({} duplikaate vahele jäetud)"]},"Imported {} WebApps successfully":{"*":["Imporditud {} WebAppsid edukalt"]},"No":{"*":["Ei"]},"Yes":{"*":["Jah"]}}}} \ No newline at end of file +{"et":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Mallid"]},"Choose a Template":{"*":["Vali mall."]},"Search templates...":{"*":["Otsi malle..."]},"Search Results":{"*":["Otsingutulemused"]},"No templates found":{"*":["Malle ei leitud"]},"Edit WebApp":{"*":["Muuda Veebirakendust"]},"Delete WebApp":{"*":["Kustuta Veebirakendus"]},"Welcome to WebApps Manager":{"*":["Tere tulemast WebApps Managerisse"]},"Don't show this again":{"*":["Ära näita seda uuesti"]},"Let's Start":{"*":["Alustame"]},"Select Browser":{"*":["Vali brauser"]},"Cancel":{"*":["Tühista"]},"Select":{"*":["Vali"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Lisa WebApp"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Tuvasta nimi ja ikoon veebisaidilt"]},"Name":{"*":["Nimi"]},"Category":{"*":["Kategooria"]},"Opens as a native window without browser interface":{"*":["Avatakse natiivse aknana ilma brauseri liideseta."]},"Browser":{"*":["Brauser"]},"Allows independent cookies and sessions":{"*":["Lubab sõltumatud küpsised ja seansid"]},"Profile Name":{"*":["Profiili nimi"]},"Save":{"*":["Salvesta"]},"Loading...":{"*":["Laadimine..."]},"WebApps Manager":{"*":["Veebirakenduste haldur"]},"Search WebApps":{"*":["Otsi Veebirakendusi"]},"Export WebApps":{"*":["Ekspordi Veebirakendused"]},"Import WebApps":{"*":["Impordi veebirakendused"]},"Browse Applications Folder":{"*":["Sirvi rakenduste kausta"]},"Browse Profiles Folder":{"*":["Sirvi profiilide kausta"]},"Remove All WebApps":{"*":["Eemalda kõik veebirakendused"]},"About":{"*":["Teave"]},"Add a new webapp to get started":{"*":["Lisa uus veebirakendus, et alustada."]},"WebApp created successfully":{"*":["Veebirakendus loodi edukalt"]},"WebApp updated successfully":{"*":["Veebirakendus on edukalt uuendatud"]},"Also delete configuration folder":{"*":["Kustuta ka konfiguratsioonikaust."]},"Delete":{"*":["Kustuta"]},"WebApp deleted successfully":{"*":["Veebirakendus kustutati edukalt"]},"Remove All":{"*":["Eemalda kõik"]},"All WebApps have been removed":{"*":["Kõik veebirakendused on eemaldatud."]},"Failed to remove all WebApps":{"*":["Eba kõik WebAppid eemaldada."]},"WebApps exported successfully":{"*":["WebApps eksporditi edukalt"]},"No WebApps":{"*":["Ei veebirakendusi"]},"Change browser":{"*":["Muuda brauserit"]},"Edit":{"*":["Muuda"]},"New WebApp":{"*":["Uus WebApp"]},"Icon":{"*":["Ikoon"]},"App Mode":{"*":["Rakenduse režiim"]},"Separate Profile":{"*":["Eraldi profiil"]},"Select Icon":{"*":["Vali ikoon"]},"Images":{"*":["Pildid"]},"ZIP files":{"*":["ZIP-failid"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Imporditud {imported}, vahele jäetud {dups} dubleeritud kirjet"]},"Import failed":{"*":["Import ebaõnnestus"]},"Export failed":{"*":["Eksport ebaõnnestus"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["See kustutab kõik webapp’id ja nende töölaua kirjed. Seda ei saa tagasi võtta."]},"Browser changed":{"*":["Brauser vahetatud"]},"What are WebApps?":{"*":["Mis on WebApp’id?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps on veebirakendused, mis töötavad pühendatud brauseriaknas, pakkudes teie lemmikveebisaitidele rohkem rakenduse-laadset kogemust."]},"Benefits of using WebApps:":{"*":["WebAppsi kasutamise eelised:"]},"Focus":{"*":["Keskendumine"]},"Work without the distractions of other browser tabs":{"*":["Töötage ilma teiste brauseri vahelehtede segamiseta"]},"Desktop Integration":{"*":["Töölaudade integratsioon"]},"Quick access from your application menu":{"*":["Kiire ligipääs teie rakenduste menüüst"]},"Isolated Profiles":{"*":["Isolatsiooniprofiilid"]},"Each webapp can have its own cookies and settings":{"*":["Igal webappil võib olla oma küpsised ja seaded"]},"Back":{"*":["Tagasi"]},"Forward":{"*":["Edasi"]},"Reload":{"*":["Värskenda"]},"Fullscreen":{"*":["Täisekraan"]},"Enter URL…":{"*":["Sisesta URL…"]},"Zoom In":{"*":["Suurenda"]},"Zoom Out":{"*":["Vähenda"]},"Reset Zoom":{"*":["Lähtesta suum"]},"Developer Tools":{"*":["Arendajatööriistad"]},"Menu":{"*":["Menüü"]},"Open Link in Browser":{"*":["Ava link brauseris"]},"Download Complete":{"*":["Allalaadimine lõpetatud"]},"Save File":{"*":["Salvesta fail"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/usr/share/locale/et/LC_MESSAGES/biglinux-webapps.mo b/biglinux-webapps/usr/share/locale/et/LC_MESSAGES/biglinux-webapps.mo index 7414b8b45da03eac4030c995d8114abec0f5f13c..20ffe6269ee7cd6861ac848ab6a23f0ba9e29d91 100644 GIT binary patch literal 5348 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 literal 6801 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 diff --git a/biglinux-webapps/usr/share/locale/fi/LC_MESSAGES/biglinux-webapps.json b/biglinux-webapps/usr/share/locale/fi/LC_MESSAGES/biglinux-webapps.json index 0aad7f92..41b46deb 100644 --- a/biglinux-webapps/usr/share/locale/fi/LC_MESSAGES/biglinux-webapps.json +++ b/biglinux-webapps/usr/share/locale/fi/LC_MESSAGES/biglinux-webapps.json @@ -1 +1 @@ -{"fi":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Mallipohjat"]},"Choose a Template":{"*":["Valitse malli"]},"Search templates...":{"*":["Etsi malleja..."]},"Search templates":{"*":["Etsi malleja"]},"Search Results":{"*":["Hakutulokset"]},"No templates found":{"*":["Ei malleja löytynyt"]},"Browser: {0}":{"*":["Selaimen: {0}"]},"Edit WebApp":{"*":["Muokkaa WebAppia"]},"Edit {0}":{"*":["Muokkaa {0}"]},"Delete WebApp":{"*":["Poista WebApp"]},"Delete {0}":{"*":["Poista {0}"]},"Welcome to WebApps Manager":{"*":["Tervetuloa WebApps Manageriin"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Mitkä ovat WebAppit?\n\nWebAppit ovat verkkosovelluksia, jotka toimivat omassa selainikkunassaan, tarjoten sovelluksen kaltaisen kokemuksen suosikkisivustoillesi.\n\nWebAppien käytön edut:\n\n• Keskittyminen: Työskentele ilman muiden selainvälilehtien häiriöitä\n• Työpöytäintegraatio: Nopea pääsy sovellusvalikostasi\n• Eristetyt profiilit: Valinnaisesti jokaisella webappilla voi olla omat evästeensä ja asetuksensa\n"]},"Don't show this again":{"*":["Älä näytä tätä uudelleen"]},"Let's Start":{"*":["Aloitetaan"]},"Select Browser":{"*":["Valitse selain"]},"Cancel":{"*":["Peruuta"]},"Select":{"*":["Valitse"]},"System Default":{"*":["Järjestelmän oletus"]},"Default":{"*":["Oletus"]},"Please select a browser.":{"*":["Valitse selain."]},"Error":{"*":["Virhe"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Lisää WebApp"]},"Choose from templates":{"*":["Valitse malleista"]},"URL":{"*":["URL"]},"Detect":{"*":["Havaitse"]},"Detect name and icon from website":{"*":["Havaitse nimi ja kuvake verkkosivustolta"]},"Name":{"*":["Nimi"]},"App Icon":{"*":["Sovelluksen kuvake"]},"Select icon for the WebApp":{"*":["Valitse kuvake WebAppille"]},"Available Icons":{"*":["Saatavilla olevat kuvakkeet"]},"Category":{"*":["Kategoria"]},"Application Mode":{"*":["Sovellusmoodi"]},"Opens as a native window without browser interface":{"*":["Aukeaa natiivina ikkunana ilman selainliittymää."]},"Browser":{"*":["Selaimen"]},"Profile Settings":{"*":["Profiiliasetukset"]},"Configure a separate browser profile for this webapp":{"*":["Määritä erillinen selainprofiili tälle verkkosovellukselle"]},"Use separate profile":{"*":["Käytä erillistä profiilia"]},"Allows independent cookies and sessions":{"*":["Sallii itsenäiset evästeet ja istunnot"]},"Profile Name":{"*":["Profiilin nimi"]},"Save":{"*":["Tallenna"]},"Loading...":{"*":["Ladataan..."]},"Detecting website information, please wait":{"*":["Tunnistetaan verkkosivuston tietoja, ole hyvä ja odota."]},"Please enter a URL first.":{"*":["Ole hyvä ja syötä ensin URL-osoite."]},"Please enter a name for the WebApp.":{"*":["Ole hyvä ja syötä nimi WebAppille."]},"Please enter a URL for the WebApp.":{"*":["Ole hyvä ja syötä URL-osoite WebAppille."]},"Please select a browser for the WebApp.":{"*":["Valitse selain WebAppia varten."]},"WebApps Manager":{"*":["Verkkosovellusten hallinta"]},"Search WebApps":{"*":["Hae Web-sovelluksia"]},"Main Menu":{"*":["Päävalikko"]},"Refresh":{"*":["Päivitä"]},"Export WebApps":{"*":["Vie Web-sovellukset"]},"Import WebApps":{"*":["Tuonti Web-sovellukset"]},"Browse Applications Folder":{"*":["Selaa sovelluskansiota"]},"Browse Profiles Folder":{"*":["Selaa profiilikansiota"]},"Show Welcome Screen":{"*":["Näytä tervetulonäyttö"]},"Remove All WebApps":{"*":["Poista kaikki WebAppit"]},"About":{"*":["Tietoja"]},"Add":{"*":["Lisää"]},"No WebApps Found":{"*":["Ei Web-sovelluksia löytynyt"]},"Add a new webapp to get started":{"*":["Lisää uusi verkkosovellus aloittaaksesi"]},"WebApp created successfully":{"*":["WebApp luotiin onnistuneesti"]},"WebApp updated successfully":{"*":["WebApp päivitettiin onnistuneesti"]},"Browser changed to {0}":{"*":["Selainta muutettu {0}ksi"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Oletko varma, että haluat poistaa {0}?\n\nURL: {1}\nSelaimen: {2}"]},"Also delete configuration folder":{"*":["Myös poista asetuskansio."]},"Delete":{"*":["Poista"]},"WebApp deleted successfully":{"*":["WebApp poistettu onnistuneesti"]},"REMOVE ALL":{"*":["POISTA KAIKKI"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Oletko varma, että haluat poistaa kaikki WebAppisi? Tätä toimintoa ei voi peruuttaa.\n\nKirjoita \"{0}\" vahvistaaksesi."]},"Remove All":{"*":["Poista kaikki"]},"All WebApps have been removed":{"*":["Kaikki WebAppit on poistettu."]},"Failed to remove all WebApps":{"*":["Kaikkien WebAppien poistaminen epäonnistui."]},"Icon {0} of {1}":{"*":["Kuvake {0} kohteesta {1}"]},"WebApps exported successfully":{"*":["WebApps viety onnistuneesti"]},"No WebApps":{"*":["Ei Web-sovelluksia"]},"There are no WebApps to export.":{"*":["Ei ole WebAppse, joita voisi viedä."]},"The selected file does not exist.":{"*":["Valittua tiedostoa ei ole olemassa."]},"The selected file is not a valid ZIP archive.":{"*":["Valittu tiedosto ei ole voimassa oleva ZIP-arkisto."]},"Error importing WebApps":{"*":["Virhe WebAppsien tuonnissa"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["Tuodut {} WebApps onnistuneesti ({} kaksoiskappaletta ohitettu)"]},"Imported {} WebApps successfully":{"*":["Tuodut {} WebApps onnistuneesti"]},"No":{"*":["Ei"]},"Yes":{"*":["Kyllä"]}}}} \ No newline at end of file +{"fi":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Mallipohjat"]},"Choose a Template":{"*":["Valitse malli"]},"Search templates...":{"*":["Etsi malleja..."]},"Search Results":{"*":["Hakutulokset"]},"No templates found":{"*":["Ei malleja löytynyt"]},"Edit WebApp":{"*":["Muokkaa WebAppia"]},"Delete WebApp":{"*":["Poista WebApp"]},"Welcome to WebApps Manager":{"*":["Tervetuloa WebApps Manageriin"]},"Don't show this again":{"*":["Älä näytä tätä uudelleen"]},"Let's Start":{"*":["Aloitetaan"]},"Select Browser":{"*":["Valitse selain"]},"Cancel":{"*":["Peruuta"]},"Select":{"*":["Valitse"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Lisää WebApp"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Havaitse nimi ja kuvake verkkosivustolta"]},"Name":{"*":["Nimi"]},"Category":{"*":["Kategoria"]},"Opens as a native window without browser interface":{"*":["Aukeaa natiivina ikkunana ilman selainliittymää."]},"Browser":{"*":["Selaimen"]},"Allows independent cookies and sessions":{"*":["Sallii itsenäiset evästeet ja istunnot"]},"Profile Name":{"*":["Profiilin nimi"]},"Save":{"*":["Tallenna"]},"Loading...":{"*":["Ladataan..."]},"WebApps Manager":{"*":["Verkkosovellusten hallinta"]},"Search WebApps":{"*":["Hae Web-sovelluksia"]},"Export WebApps":{"*":["Vie Web-sovellukset"]},"Import WebApps":{"*":["Tuonti Web-sovellukset"]},"Browse Applications Folder":{"*":["Selaa sovelluskansiota"]},"Browse Profiles Folder":{"*":["Selaa profiilikansiota"]},"Remove All WebApps":{"*":["Poista kaikki WebAppit"]},"About":{"*":["Tietoja"]},"Add a new webapp to get started":{"*":["Lisää uusi verkkosovellus aloittaaksesi"]},"WebApp created successfully":{"*":["WebApp luotiin onnistuneesti"]},"WebApp updated successfully":{"*":["WebApp päivitettiin onnistuneesti"]},"Also delete configuration folder":{"*":["Myös poista asetuskansio."]},"Delete":{"*":["Poista"]},"WebApp deleted successfully":{"*":["WebApp poistettu onnistuneesti"]},"Remove All":{"*":["Poista kaikki"]},"All WebApps have been removed":{"*":["Kaikki WebAppit on poistettu."]},"Failed to remove all WebApps":{"*":["Kaikkien WebAppien poistaminen epäonnistui."]},"WebApps exported successfully":{"*":["WebApps viety onnistuneesti"]},"No WebApps":{"*":["Ei Web-sovelluksia"]},"Change browser":{"*":["Vaihda selain"]},"Edit":{"*":["Muokkaa"]},"New WebApp":{"*":["Uusi WebApp"]},"Icon":{"*":["Kuvake"]},"App Mode":{"*":["Sovellustila"]},"Separate Profile":{"*":["Erota profiili"]},"Select Icon":{"*":["Valitse kuvake"]},"Images":{"*":["Kuvat"]},"ZIP files":{"*":["ZIP-tiedostot"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Tuotiin {imported}, ohitettiin {dups} kaksoiskappaletta"]},"Import failed":{"*":["Tuonti epäonnistui"]},"Export failed":{"*":["Vienti epäonnistui"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Tämä poistaa kaikki webappit ja niiden työpöytätiedostot. Tätä ei voi peruuttaa."]},"Browser changed":{"*":["Selain vaihdettu"]},"What are WebApps?":{"*":["Mitä WebAppit ovat?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps ovat verkkosovelluksia, jotka toimivat omassa selainikkunassaan, tarjoten sovellusmaisen käyttökokemuksen suosikkisivustoillesi."]},"Benefits of using WebApps:":{"*":["WebAppsien käytön edut:"]},"Focus":{"*":["Keskittyminen"]},"Work without the distractions of other browser tabs":{"*":["Työskentele ilman muiden välilehtien häiriöitä"]},"Desktop Integration":{"*":["Työpöydän integrointi"]},"Quick access from your application menu":{"*":["Nopea pääsy sovellusvalikostasi"]},"Isolated Profiles":{"*":["Eristetyt profiilit"]},"Each webapp can have its own cookies and settings":{"*":["Jokaisella webappilla voi olla omat evästeensä ja asetuksensa"]},"Back":{"*":["Takaisin"]},"Forward":{"*":["Eteenpäin"]},"Reload":{"*":["Lataa uudelleen"]},"Fullscreen":{"*":["Koko näyttö"]},"Enter URL…":{"*":["Syötä URL…"]},"Zoom In":{"*":["Suurenna"]},"Zoom Out":{"*":["Pienennä"]},"Reset Zoom":{"*":["Nollaa zoomaus"]},"Developer Tools":{"*":["Kehittäjätyökalut"]},"Menu":{"*":["Valikko"]},"Open Link in Browser":{"*":["Avaa linkki selaimessa"]},"Download Complete":{"*":["Lataus valmis"]},"Save File":{"*":["Tallenna tiedosto"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/usr/share/locale/fi/LC_MESSAGES/biglinux-webapps.mo b/biglinux-webapps/usr/share/locale/fi/LC_MESSAGES/biglinux-webapps.mo index 18cdd958fd6b828c96f34ea74823b7967534e93c..868ab7107a4e0272de42938b22b4d63cbb962723 100644 GIT binary patch literal 5372 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 JiH=;*;eVeezT^M^ literal 6877 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 KvY!#+%>My-l&19n diff --git a/biglinux-webapps/usr/share/locale/fr/LC_MESSAGES/biglinux-webapps.json b/biglinux-webapps/usr/share/locale/fr/LC_MESSAGES/biglinux-webapps.json index 5b08255e..35b8e6c2 100644 --- a/biglinux-webapps/usr/share/locale/fr/LC_MESSAGES/biglinux-webapps.json +++ b/biglinux-webapps/usr/share/locale/fr/LC_MESSAGES/biglinux-webapps.json @@ -1 +1 @@ -{"fr":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Modèles"]},"Choose a Template":{"*":["Choisissez un modèle"]},"Search templates...":{"*":["Rechercher des modèles..."]},"Search templates":{"*":["Rechercher des modèles"]},"Search Results":{"*":["Résultats de recherche"]},"No templates found":{"*":["Aucun modèle trouvé"]},"Browser: {0}":{"*":["Navigateur : {0}"]},"Edit WebApp":{"*":["Modifier WebApp"]},"Edit {0}":{"*":["Modifier {0}"]},"Delete WebApp":{"*":["Supprimer l'application Web"]},"Delete {0}":{"*":["Supprimer {0}"]},"Welcome to WebApps Manager":{"*":["Bienvenue dans le gestionnaire d'applications Web"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Qu'est-ce que les WebApps ?\n\nLes WebApps sont des applications web qui s'exécutent dans une fenêtre de navigateur dédiée, offrant une expérience plus semblable à celle d'une application pour vos sites web préférés.\n\nAvantages de l'utilisation des WebApps :\n\n• Concentration : Travaillez sans les distractions des autres onglets du navigateur\n• Intégration de bureau : Accès rapide depuis votre menu d'application\n• Profils isolés : En option, chaque webapp peut avoir ses propres cookies et paramètres\n"]},"Don't show this again":{"*":["Ne plus afficher ceci."]},"Let's Start":{"*":["Commençons"]},"Select Browser":{"*":["Sélectionner le navigateur"]},"Cancel":{"*":["Annuler"]},"Select":{"*":["Sélectionner"]},"System Default":{"*":["Paramètre par défaut du système"]},"Default":{"*":["Par défaut"]},"Please select a browser.":{"*":["Veuillez sélectionner un navigateur."]},"Error":{"*":["Erreur"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Ajouter WebApp"]},"Choose from templates":{"*":["Choisissez parmi les modèles"]},"URL":{"*":["URL"]},"Detect":{"*":["Détecter"]},"Detect name and icon from website":{"*":["Détecter le nom et l'icône du site web"]},"Name":{"*":["Nom"]},"App Icon":{"*":["Icône de l'application"]},"Select icon for the WebApp":{"*":["Sélectionnez l'icône pour l'application Web"]},"Available Icons":{"*":["Icônes disponibles"]},"Category":{"*":["Catégorie"]},"Application Mode":{"*":["Mode d'application"]},"Opens as a native window without browser interface":{"*":["S'ouvre en tant que fenêtre native sans interface de navigateur."]},"Browser":{"*":["Navigateur"]},"Profile Settings":{"*":["Paramètres du profil"]},"Configure a separate browser profile for this webapp":{"*":["Configurez un profil de navigateur séparé pour cette application web."]},"Use separate profile":{"*":["Utiliser un profil séparé"]},"Allows independent cookies and sessions":{"*":["Autorise les cookies et les sessions indépendants"]},"Profile Name":{"*":["Nom de profil"]},"Save":{"*":["Enregistrer"]},"Loading...":{"*":["Chargement..."]},"Detecting website information, please wait":{"*":["Détection des informations du site web, veuillez patienter."]},"Please enter a URL first.":{"*":["Veuillez d'abord entrer une URL."]},"Please enter a name for the WebApp.":{"*":["Veuillez entrer un nom pour l'application Web."]},"Please enter a URL for the WebApp.":{"*":["Veuillez entrer une URL pour l'application Web."]},"Please select a browser for the WebApp.":{"*":["Veuillez sélectionner un navigateur pour l'application Web."]},"WebApps Manager":{"*":["Gestionnaire d'applications Web"]},"Search WebApps":{"*":["Rechercher des applications Web"]},"Main Menu":{"*":["Menu Principal"]},"Refresh":{"*":["Rafraîchir"]},"Export WebApps":{"*":["Exporter des applications Web"]},"Import WebApps":{"*":["Importer des applications Web"]},"Browse Applications Folder":{"*":["Parcourir le dossier Applications"]},"Browse Profiles Folder":{"*":["Parcourir le dossier des profils"]},"Show Welcome Screen":{"*":["Afficher l'écran d'accueil"]},"Remove All WebApps":{"*":["Supprimer toutes les applications Web"]},"About":{"*":["À propos"]},"Add":{"*":["Ajouter"]},"No WebApps Found":{"*":["Aucune application Web trouvée"]},"Add a new webapp to get started":{"*":["Ajoutez une nouvelle application web pour commencer."]},"WebApp created successfully":{"*":["WebApp créé avec succès"]},"WebApp updated successfully":{"*":["WebApp mis à jour avec succès"]},"Browser changed to {0}":{"*":["Le navigateur a été changé en {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Êtes-vous sûr de vouloir supprimer {0} ?\n\nURL : {1} \nNavigateur : {2}"]},"Also delete configuration folder":{"*":["Supprimez également le dossier de configuration."]},"Delete":{"*":["Supprimer"]},"WebApp deleted successfully":{"*":["WebApp supprimé avec succès"]},"REMOVE ALL":{"*":["SUPPRIMER TOUT"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Êtes-vous sûr de vouloir supprimer toutes vos WebApps ? Cette action ne peut pas être annulée.\n\nTapez \"{0}\" pour confirmer."]},"Remove All":{"*":["Tout supprimer"]},"All WebApps have been removed":{"*":["Toutes les applications Web ont été supprimées."]},"Failed to remove all WebApps":{"*":["Échec de la suppression de toutes les WebApps"]},"Icon {0} of {1}":{"*":["Icône {0} de {1}"]},"WebApps exported successfully":{"*":["WebApps exportés avec succès"]},"No WebApps":{"*":["Pas d'applications Web"]},"There are no WebApps to export.":{"*":["Il n'y a pas d'applications Web à exporter."]},"The selected file does not exist.":{"*":["Le fichier sélectionné n'existe pas."]},"The selected file is not a valid ZIP archive.":{"*":["Le fichier sélectionné n'est pas une archive ZIP valide."]},"Error importing WebApps":{"*":["Erreur d'importation des WebApps"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["WebApps importés avec succès ({} doublons ignorés)"]},"Imported {} WebApps successfully":{"*":["Applications Web {} importées avec succès"]},"No":{"*":["Non"]},"Yes":{"*":["Oui"]}}}} \ No newline at end of file +{"fr":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Modèles"]},"Choose a Template":{"*":["Choisissez un modèle"]},"Search templates...":{"*":["Rechercher des modèles..."]},"Search Results":{"*":["Résultats de recherche"]},"No templates found":{"*":["Aucun modèle trouvé"]},"Edit WebApp":{"*":["Modifier WebApp"]},"Delete WebApp":{"*":["Supprimer l'application Web"]},"Welcome to WebApps Manager":{"*":["Bienvenue dans le gestionnaire d'applications Web"]},"Don't show this again":{"*":["Ne plus afficher ceci."]},"Let's Start":{"*":["Commençons"]},"Select Browser":{"*":["Sélectionner le navigateur"]},"Cancel":{"*":["Annuler"]},"Select":{"*":["Sélectionner"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Ajouter WebApp"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Détecter le nom et l'icône du site web"]},"Name":{"*":["Nom"]},"Category":{"*":["Catégorie"]},"Opens as a native window without browser interface":{"*":["S'ouvre en tant que fenêtre native sans interface de navigateur."]},"Browser":{"*":["Navigateur"]},"Allows independent cookies and sessions":{"*":["Autorise les cookies et les sessions indépendants"]},"Profile Name":{"*":["Nom de profil"]},"Save":{"*":["Enregistrer"]},"Loading...":{"*":["Chargement..."]},"WebApps Manager":{"*":["Gestionnaire d'applications Web"]},"Search WebApps":{"*":["Rechercher des applications Web"]},"Export WebApps":{"*":["Exporter des applications Web"]},"Import WebApps":{"*":["Importer des applications Web"]},"Browse Applications Folder":{"*":["Parcourir le dossier Applications"]},"Browse Profiles Folder":{"*":["Parcourir le dossier des profils"]},"Remove All WebApps":{"*":["Supprimer toutes les applications Web"]},"About":{"*":["À propos"]},"Add a new webapp to get started":{"*":["Ajoutez une nouvelle application web pour commencer."]},"WebApp created successfully":{"*":["WebApp créé avec succès"]},"WebApp updated successfully":{"*":["WebApp mis à jour avec succès"]},"Also delete configuration folder":{"*":["Supprimez également le dossier de configuration."]},"Delete":{"*":["Supprimer"]},"WebApp deleted successfully":{"*":["WebApp supprimé avec succès"]},"Remove All":{"*":["Tout supprimer"]},"All WebApps have been removed":{"*":["Toutes les applications Web ont été supprimées."]},"Failed to remove all WebApps":{"*":["Échec de la suppression de toutes les WebApps"]},"WebApps exported successfully":{"*":["WebApps exportés avec succès"]},"No WebApps":{"*":["Pas d'applications Web"]},"Change browser":{"*":["Changer de navigateur"]},"Edit":{"*":["Modifier"]},"New WebApp":{"*":["Nouvelle WebApp"]},"Icon":{"*":["Icône"]},"App Mode":{"*":["Mode d’application"]},"Separate Profile":{"*":["Profil séparé"]},"Select Icon":{"*":["Sélectionner une icône"]},"Images":{"*":["Images"]},"ZIP files":{"*":["Fichiers ZIP"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Importé {imported}, ignoré {dups} doublons"]},"Import failed":{"*":["Échec de l’importation"]},"Export failed":{"*":["Échec de l’exportation"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Cela supprimera toutes les webapps et leurs entrées sur le bureau. Cette action est irréversible."]},"Browser changed":{"*":["Navigateur changé"]},"What are WebApps?":{"*":["Que sont les WebApps ?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["Les WebApps sont des applications web qui s'exécutent dans une fenêtre de navigateur dédiée, offrant une expérience plus proche d'une application pour vos sites préférés."]},"Benefits of using WebApps:":{"*":["Avantages d'utiliser les WebApps :"]},"Focus":{"*":["Concentration"]},"Work without the distractions of other browser tabs":{"*":["Travaillez sans les distractions des autres onglets du navigateur"]},"Desktop Integration":{"*":["Intégration au bureau"]},"Quick access from your application menu":{"*":["Accès rapide depuis votre menu d'applications"]},"Isolated Profiles":{"*":["Profils isolés"]},"Each webapp can have its own cookies and settings":{"*":["Chaque WebApp peut avoir ses propres cookies et paramètres"]},"Back":{"*":["Retour"]},"Forward":{"*":["Avant"]},"Reload":{"*":["Recharger"]},"Fullscreen":{"*":["Plein écran"]},"Enter URL…":{"*":["Entrez l'URL…"]},"Zoom In":{"*":["Zoomer"]},"Zoom Out":{"*":["Dézoomer"]},"Reset Zoom":{"*":["Réinitialiser le zoom"]},"Developer Tools":{"*":["Outils de développement"]},"Menu":{"*":["Menu"]},"Open Link in Browser":{"*":["Ouvrir le lien dans le navigateur"]},"Download Complete":{"*":["Téléchargement terminé"]},"Save File":{"*":["Enregistrer le fichier"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/usr/share/locale/fr/LC_MESSAGES/biglinux-webapps.mo b/biglinux-webapps/usr/share/locale/fr/LC_MESSAGES/biglinux-webapps.mo index c1d2aef1f830586b90de507837ee37cc0842cb4d..147e8e502d51f27ee159547b43da60cd7255446b 100644 GIT binary patch literal 5747 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 QU1Rc}w^v{AOck5|1F~#g-T(jq diff --git a/biglinux-webapps/usr/share/locale/he/LC_MESSAGES/biglinux-webapps.json b/biglinux-webapps/usr/share/locale/he/LC_MESSAGES/biglinux-webapps.json index 366219c2..c039a215 100644 --- a/biglinux-webapps/usr/share/locale/he/LC_MESSAGES/biglinux-webapps.json +++ b/biglinux-webapps/usr/share/locale/he/LC_MESSAGES/biglinux-webapps.json @@ -1 +1 @@ -{"he":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["תבניות"]},"Choose a Template":{"*":["בחר תבנית"]},"Search templates...":{"*":["חפש תבניות..."]},"Search templates":{"*":["חפש תבניות"]},"Search Results":{"*":["תוצאות חיפוש"]},"No templates found":{"*":["לא נמצאו תבניות"]},"Browser: {0}":{"*":["דפדפן: {0}"]},"Edit WebApp":{"*":["ערוך אפליקציית אינטרנט"]},"Edit {0}":{"*":["ערוך {0}"]},"Delete WebApp":{"*":["מחק את היישום האינטרנטי"]},"Delete {0}":{"*":["מחק {0}"]},"Welcome to WebApps Manager":{"*":["ברוך הבא למנהל אפליקציות אינטרנט"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["מהן אפליקציות רשת?\n\nאפליקציות רשת הן יישומים רשתיים שפועלים בחלון דפדפן ייעודי, ומספקים חוויית שימוש דמוית אפליקציה לאתרי האינטרנט האהובים עליך.\n\nיתרונות השימוש באפליקציות רשת:\n\n• מיקוד: עבודה ללא הסחות דעת מכרטיסיות דפדפן אחרות\n• אינטגרציה עם שולחן העבודה: גישה מהירה מתפריט היישומים שלך\n• פרופילים מבודדים: אופציונלית, לכל אפליקציית רשת יכולות להיות עוגיות והגדרות משלה\n"]},"Don't show this again":{"*":["אל תראה זאת שוב"]},"Let's Start":{"*":["בוא נתחיל"]},"Select Browser":{"*":["בחר דפדפן"]},"Cancel":{"*":["ביטול"]},"Select":{"*":["בחר"]},"System Default":{"*":["ברירת מחדל של מערכת"]},"Default":{"*":["ברירת מחדל"]},"Please select a browser.":{"*":["אנא בחר דפדפן."]},"Error":{"*":["שגיאה"]},"OK":{"*":["אוקי"]},"Add WebApp":{"*":["הוסף אפליקציית אינטרנט"]},"Choose from templates":{"*":["בחר מתוך תבניות"]},"URL":{"*":["כתובת אתר"]},"Detect":{"*":["גלה"]},"Detect name and icon from website":{"*":["גלה שם ואייקון מאתר אינטרנט"]},"Name":{"*":["שם"]},"App Icon":{"*":["אייקון אפליקציה"]},"Select icon for the WebApp":{"*":["בחר סמל עבור ה-WebApp"]},"Available Icons":{"*":["אייקונים זמינים"]},"Category":{"*":["קטגוריה"]},"Application Mode":{"*":["מצב יישום"]},"Opens as a native window without browser interface":{"*":["נפתח כחלון מקורי ללא ממשק דפדפן"]},"Browser":{"*":["דפדפן"]},"Profile Settings":{"*":["הגדרות פרופיל"]},"Configure a separate browser profile for this webapp":{"*":["הגדר פרופיל דפדפן נפרד עבור אפליקציה זו"]},"Use separate profile":{"*":["השתמש בפרופיל נפרד"]},"Allows independent cookies and sessions":{"*":["מאפשר עוגיות וסשנים עצמאיים"]},"Profile Name":{"*":["שם פרופיל"]},"Save":{"*":["שמור"]},"Loading...":{"*":["טוען..."]},"Detecting website information, please wait":{"*":["מאתר מידע על האתר, אנא המתן"]},"Please enter a URL first.":{"*":["אנא הזן כתובת URL קודם."]},"Please enter a name for the WebApp.":{"*":["אנא הזן שם עבור ה-WebApp."]},"Please enter a URL for the WebApp.":{"*":["אנא הזן כתובת URL עבור ה-WebApp."]},"Please select a browser for the WebApp.":{"*":["אנא בחר דפדפן עבור ה-WebApp."]},"WebApps Manager":{"*":["מנהל אפליקציות אינטרנט"]},"Search WebApps":{"*":["חפש אפליקציות אינטרנט"]},"Main Menu":{"*":["תפריט ראשי"]},"Refresh":{"*":["רענן"]},"Export WebApps":{"*":["ייצוא אפליקציות אינטרנט"]},"Import WebApps":{"*":["ייבוא אפליקציות אינטרנט"]},"Browse Applications Folder":{"*":["עבור לתיקיית היישומים"]},"Browse Profiles Folder":{"*":["דפדף לתיקיית פרופילים"]},"Show Welcome Screen":{"*":["הצג מסך ברוך הבא"]},"Remove All WebApps":{"*":["הסר את כל היישומים האינטרנטיים"]},"About":{"*":["אודות"]},"Add":{"*":["הוסף"]},"No WebApps Found":{"*":["לא נמצאו אפליקציות אינטרנט"]},"Add a new webapp to get started":{"*":["הוסף אפליקציית אינטרנט חדשה כדי להתחיל"]},"WebApp created successfully":{"*":["היישום האינטרנטי נוצר בהצלחה"]},"WebApp updated successfully":{"*":["היישום האינטרנטי עודכן בהצלחה"]},"Browser changed to {0}":{"*":["הדפדפן שונה ל-{0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["האם אתה בטוח שברצונך למחוק את {0}?\n\nכתובת אתר: {1}\nדפדפן: {2}"]},"Also delete configuration folder":{"*":["גם מחק את תיקיית ההגדרות"]},"Delete":{"*":["מחק"]},"WebApp deleted successfully":{"*":["היישום האינטרנטי נמחק בהצלחה"]},"REMOVE ALL":{"*":["הסר הכל"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["האם אתה בטוח שברצונך להסיר את כל ה-WebApps שלך? פעולה זו אינה ניתנת לביטול.\n\nהקלד \"{0}\" כדי לאשר."]},"Remove All":{"*":["הסר הכל"]},"All WebApps have been removed":{"*":["כל האפליקציות האינטרנטיות הוסרו"]},"Failed to remove all WebApps":{"*":["נכשל בהסרת כל היישומים האינטרנטיים"]},"Icon {0} of {1}":{"*":["אייקון {0} של {1}"]},"WebApps exported successfully":{"*":["היישומים המובנים ייצאו בהצלחה"]},"No WebApps":{"*":["אין אפליקציות אינטרנט"]},"There are no WebApps to export.":{"*":["אין אפליקציות אינטרנט לייצוא."]},"The selected file does not exist.":{"*":["הקובץ שנבחר אינו קיים."]},"The selected file is not a valid ZIP archive.":{"*":["הקובץ שנבחר אינו ארכיון ZIP תקף."]},"Error importing WebApps":{"*":["שגיאה בייבוא WebApps"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["ייבא {} אפליקציות אינטרנט בהצלחה ({} כפילויות הושמטו)"]},"Imported {} WebApps successfully":{"*":["ייבא {} WebApps בהצלחה"]},"No":{"*":["לא"]},"Yes":{"*":["כן"]}}}} \ No newline at end of file +{"he":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["תבניות"]},"Choose a Template":{"*":["בחר תבנית"]},"Search templates...":{"*":["חפש תבניות..."]},"Search Results":{"*":["תוצאות חיפוש"]},"No templates found":{"*":["לא נמצאו תבניות"]},"Edit WebApp":{"*":["ערוך אפליקציית אינטרנט"]},"Delete WebApp":{"*":["מחק את היישום האינטרנטי"]},"Welcome to WebApps Manager":{"*":["ברוך הבא למנהל אפליקציות אינטרנט"]},"Don't show this again":{"*":["אל תראה זאת שוב"]},"Let's Start":{"*":["בוא נתחיל"]},"Select Browser":{"*":["בחר דפדפן"]},"Cancel":{"*":["ביטול"]},"Select":{"*":["בחר"]},"OK":{"*":["אוקי"]},"Add WebApp":{"*":["הוסף אפליקציית אינטרנט"]},"URL":{"*":["כתובת אתר"]},"Detect name and icon from website":{"*":["גלה שם ואייקון מאתר אינטרנט"]},"Name":{"*":["שם"]},"Category":{"*":["קטגוריה"]},"Opens as a native window without browser interface":{"*":["נפתח כחלון מקורי ללא ממשק דפדפן"]},"Browser":{"*":["דפדפן"]},"Allows independent cookies and sessions":{"*":["מאפשר עוגיות וסשנים עצמאיים"]},"Profile Name":{"*":["שם פרופיל"]},"Save":{"*":["שמור"]},"Loading...":{"*":["טוען..."]},"WebApps Manager":{"*":["מנהל אפליקציות אינטרנט"]},"Search WebApps":{"*":["חפש אפליקציות אינטרנט"]},"Export WebApps":{"*":["ייצוא אפליקציות אינטרנט"]},"Import WebApps":{"*":["ייבוא אפליקציות אינטרנט"]},"Browse Applications Folder":{"*":["עבור לתיקיית היישומים"]},"Browse Profiles Folder":{"*":["דפדף לתיקיית פרופילים"]},"Remove All WebApps":{"*":["הסר את כל היישומים האינטרנטיים"]},"About":{"*":["אודות"]},"Add a new webapp to get started":{"*":["הוסף אפליקציית אינטרנט חדשה כדי להתחיל"]},"WebApp created successfully":{"*":["היישום האינטרנטי נוצר בהצלחה"]},"WebApp updated successfully":{"*":["היישום האינטרנטי עודכן בהצלחה"]},"Also delete configuration folder":{"*":["גם מחק את תיקיית ההגדרות"]},"Delete":{"*":["מחק"]},"WebApp deleted successfully":{"*":["היישום האינטרנטי נמחק בהצלחה"]},"Remove All":{"*":["הסר הכל"]},"All WebApps have been removed":{"*":["כל האפליקציות האינטרנטיות הוסרו"]},"Failed to remove all WebApps":{"*":["נכשל בהסרת כל היישומים האינטרנטיים"]},"WebApps exported successfully":{"*":["היישומים המובנים ייצאו בהצלחה"]},"No WebApps":{"*":["אין אפליקציות אינטרנט"]},"Change browser":{"*":["שנה דפדפן"]},"Edit":{"*":["ערוך"]},"New WebApp":{"*":["WebApp חדש"]},"Icon":{"*":["סמל"]},"App Mode":{"*":["מצב אפליקציה"]},"Separate Profile":{"*":["פרופיל נפרד"]},"Select Icon":{"*":["בחר סמל"]},"Images":{"*":["תמונות"]},"ZIP files":{"*":["קבצי ZIP"]},"Imported {imported}, skipped {dups} duplicates":{"*":["יובא {imported}, דילגו על {dups} כפילויות"]},"Import failed":{"*":["הייבוא נכשל"]},"Export failed":{"*":["הייצוא נכשל"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["פעולה זו תמחק את כל ה-Webapps ואת הקיצורים שלהם בשולחן העבודה. לא ניתן לבטל פעולה זו."]},"Browser changed":{"*":["הדפדפן שונה"]},"What are WebApps?":{"*":["מהן WebApps?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps הן אפליקציות אינטרנט שרצות בחלון דפדפן ייעודי, ומספקות חוויית שימוש דמויית אפליקציה לאתרים האהובים עליך."]},"Benefits of using WebApps:":{"*":["יתרונות השימוש ב-WebApps:"]},"Focus":{"*":["ריכוז"]},"Work without the distractions of other browser tabs":{"*":["עבודה ללא הסחות דעת מטאבים אחרים בדפדפן"]},"Desktop Integration":{"*":["אינטגרציה לשולחן העבודה"]},"Quick access from your application menu":{"*":["גישה מהירה מתפריט האפליקציות שלך"]},"Isolated Profiles":{"*":["פרופילים מבודדים"]},"Each webapp can have its own cookies and settings":{"*":["לכל WebApp יכולות להיות עוגיות והגדרות משלו"]},"Back":{"*":["חזור"]},"Forward":{"*":["קדימה"]},"Reload":{"*":["רענן"]},"Fullscreen":{"*":["מסך מלא"]},"Enter URL…":{"*":["הזן URL…"]},"Zoom In":{"*":["הגדל זום"]},"Zoom Out":{"*":["הקטן זום"]},"Reset Zoom":{"*":["איפוס זום"]},"Developer Tools":{"*":["כלי מפתח"]},"Menu":{"*":["תפריט"]},"Open Link in Browser":{"*":["פתח קישור בדפדפן"]},"Download Complete":{"*":["ההורדה הושלמה"]},"Save File":{"*":["שמור קובץ"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/usr/share/locale/he/LC_MESSAGES/biglinux-webapps.mo b/biglinux-webapps/usr/share/locale/he/LC_MESSAGES/biglinux-webapps.mo index b58c4c39fc1727ce2b492e7462751b332b7aea62..a6c32b32b6f30664786045ef7e5d3c05078f5a9c 100644 GIT binary patch literal 6246 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 literal 8009 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 are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Što su WebAplikacije?\n\nWebAplikacije su web aplikacije koje se pokreću u posebnom prozoru preglednika, pružajući iskustvo slično aplikaciji za vaše omiljene web stranice.\n\nPrednosti korištenja WebAplikacija:\n\n• Fokus: Rad bez ometanja drugih kartica preglednika\n• Integracija s radnom površinom: Brzi pristup iz izbornika aplikacija\n• Izolirani profili: Opcionalno, svaka webaplikacija može imati svoje kolačiće i postavke\n"]},"Don't show this again":{"*":["Ne prikazuj ovo ponovno"]},"Let's Start":{"*":["Započnimo"]},"Select Browser":{"*":["Odaberite preglednik"]},"Cancel":{"*":["Otkaži"]},"Select":{"*":["Odaberi"]},"System Default":{"*":["Zadani sustava"]},"Default":{"*":["Zadano"]},"Please select a browser.":{"*":["Molimo odaberite preglednik."]},"Error":{"*":["Greška"]},"OK":{"*":["U redu"]},"Add WebApp":{"*":["Dodaj WebApp"]},"Choose from templates":{"*":["Odaberite iz predložaka"]},"URL":{"*":["URL"]},"Detect":{"*":["Otkrivanje"]},"Detect name and icon from website":{"*":["Otkrivanje imena i ikone s web stranice"]},"Name":{"*":["Ime"]},"App Icon":{"*":["Ikona aplikacije"]},"Select icon for the WebApp":{"*":["Odaberite ikonu za WebApp"]},"Available Icons":{"*":["Dostupne ikone"]},"Category":{"*":["Kategorija"]},"Application Mode":{"*":["Način aplikacije"]},"Opens as a native window without browser interface":{"*":["Otvara se kao izvorni prozor bez sučelja preglednika."]},"Browser":{"*":["Preglednik"]},"Profile Settings":{"*":["Postavke profila"]},"Configure a separate browser profile for this webapp":{"*":["Konfigurirajte odvojeni profil preglednika za ovu web aplikaciju"]},"Use separate profile":{"*":["Koristite odvojeni profil"]},"Allows independent cookies and sessions":{"*":["Omogućuje neovisne kolačiće i sesije"]},"Profile Name":{"*":["Ime profila"]},"Save":{"*":["Spremi"]},"Loading...":{"*":["Učitavanje..."]},"Detecting website information, please wait":{"*":["Otkrivanje informacija o web stranici, molimo pričekajte"]},"Please enter a URL first.":{"*":["Molimo unesite URL prvo."]},"Please enter a name for the WebApp.":{"*":["Molimo unesite naziv za WebApp."]},"Please enter a URL for the WebApp.":{"*":["Molimo unesite URL za WebApp."]},"Please select a browser for the WebApp.":{"*":["Molimo odaberite preglednik za WebApp."]},"WebApps Manager":{"*":["Upravitelj web aplikacija"]},"Search WebApps":{"*":["Pretraži WebAplikacije"]},"Main Menu":{"*":["Glavni izbornik"]},"Refresh":{"*":["Osvježi"]},"Export WebApps":{"*":["Izvezi WebAplikacije"]},"Import WebApps":{"*":["Uvezi WebAplikacije"]},"Browse Applications Folder":{"*":["Pregledaj mapu aplikacija"]},"Browse Profiles Folder":{"*":["Pregledaj mapu profila"]},"Show Welcome Screen":{"*":["Prikaži ekran dobrodošlice"]},"Remove All WebApps":{"*":["Ukloni sve web aplikacije"]},"About":{"*":["O aplikaciji"]},"Add":{"*":["Dodaj"]},"No WebApps Found":{"*":["Nema pronađenih WebAplikacija"]},"Add a new webapp to get started":{"*":["Dodajte novu web aplikaciju za početak"]},"WebApp created successfully":{"*":["WebApp je uspješno kreiran"]},"WebApp updated successfully":{"*":["WebApp je uspješno ažuriran"]},"Browser changed to {0}":{"*":["Preglednik je promijenjen u {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Jeste li sigurni da želite izbrisati {0}?\n\nURL: {1}\nPreglednik: {2}"]},"Also delete configuration folder":{"*":["Također izbrišite mapu s konfiguracijom."]},"Delete":{"*":["Izbriši"]},"WebApp deleted successfully":{"*":["WebApp je uspješno izbrisan."]},"REMOVE ALL":{"*":["UKLONI SVE"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Jeste li sigurni da želite ukloniti sve svoje WebAplikacije? Ova radnja se ne može poništiti.\n\nUpišite \"{0}\" za potvrdu."]},"Remove All":{"*":["Ukloni sve"]},"All WebApps have been removed":{"*":["Sve WebApp-ovi su uklonjeni."]},"Failed to remove all WebApps":{"*":["Nije uspjelo ukloniti sve WebAplikacije"]},"Icon {0} of {1}":{"*":["Ikona {0} od {1}"]},"WebApps exported successfully":{"*":["WebAplikacije su uspješno eksportirane."]},"No WebApps":{"*":["Nema WebAplikacija"]},"There are no WebApps to export.":{"*":["Nema WebAppsa za izvoz."]},"The selected file does not exist.":{"*":["Odabrana datoteka ne postoji."]},"The selected file is not a valid ZIP archive.":{"*":["Odabrana datoteka nije važeća ZIP arhiva."]},"Error importing WebApps":{"*":["Greška pri uvozu WebAplikacija"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["Uvezeni {} WebAppovi uspješno ({} duplicati preskočeni)"]},"Imported {} WebApps successfully":{"*":["Uvezeni {} WebAppovi uspješno"]},"No":{"*":["Ne"]},"Yes":{"*":["Da"]}}}} \ No newline at end of file +{"hr":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Predlošci"]},"Choose a Template":{"*":["Odaberite predložak"]},"Search templates...":{"*":["Pretraži predloške..."]},"Search Results":{"*":["Rezultati pretraživanja"]},"No templates found":{"*":["Nema pronađenih predložaka"]},"Edit WebApp":{"*":["Uredi WebApp"]},"Delete WebApp":{"*":["Izbriši WebApp"]},"Welcome to WebApps Manager":{"*":["Dobrodošli u WebApps Manager"]},"Don't show this again":{"*":["Ne prikazuj ovo ponovno"]},"Let's Start":{"*":["Započnimo"]},"Select Browser":{"*":["Odaberite preglednik"]},"Cancel":{"*":["Otkaži"]},"Select":{"*":["Odaberi"]},"OK":{"*":["U redu"]},"Add WebApp":{"*":["Dodaj WebApp"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Otkrivanje imena i ikone s web stranice"]},"Name":{"*":["Ime"]},"Category":{"*":["Kategorija"]},"Opens as a native window without browser interface":{"*":["Otvara se kao izvorni prozor bez sučelja preglednika."]},"Browser":{"*":["Preglednik"]},"Allows independent cookies and sessions":{"*":["Omogućuje neovisne kolačiće i sesije"]},"Profile Name":{"*":["Ime profila"]},"Save":{"*":["Spremi"]},"Loading...":{"*":["Učitavanje..."]},"WebApps Manager":{"*":["Upravitelj web aplikacija"]},"Search WebApps":{"*":["Pretraži WebAplikacije"]},"Export WebApps":{"*":["Izvezi WebAplikacije"]},"Import WebApps":{"*":["Uvezi WebAplikacije"]},"Browse Applications Folder":{"*":["Pregledaj mapu aplikacija"]},"Browse Profiles Folder":{"*":["Pregledaj mapu profila"]},"Remove All WebApps":{"*":["Ukloni sve web aplikacije"]},"About":{"*":["O aplikaciji"]},"Add a new webapp to get started":{"*":["Dodajte novu web aplikaciju za početak"]},"WebApp created successfully":{"*":["WebApp je uspješno kreiran"]},"WebApp updated successfully":{"*":["WebApp je uspješno ažuriran"]},"Also delete configuration folder":{"*":["Također izbrišite mapu s konfiguracijom."]},"Delete":{"*":["Izbriši"]},"WebApp deleted successfully":{"*":["WebApp je uspješno izbrisan."]},"Remove All":{"*":["Ukloni sve"]},"All WebApps have been removed":{"*":["Sve WebApp-ovi su uklonjeni."]},"Failed to remove all WebApps":{"*":["Nije uspjelo ukloniti sve WebAplikacije"]},"WebApps exported successfully":{"*":["WebAplikacije su uspješno eksportirane."]},"No WebApps":{"*":["Nema WebAplikacija"]},"Change browser":{"*":["Promijeni preglednik"]},"Edit":{"*":["Uredi"]},"New WebApp":{"*":["Nova WebApp"]},"Icon":{"*":["Ikona"]},"App Mode":{"*":["Način rada aplikacije"]},"Separate Profile":{"*":["Odvojen profil"]},"Select Icon":{"*":["Odaberi ikonu"]},"Images":{"*":["Slike"]},"ZIP files":{"*":["ZIP datoteke"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Uvezeno {imported}, preskočeno {dups} duplikata"]},"Import failed":{"*":["Uvoz nije uspio"]},"Export failed":{"*":["Izvoz nije uspio"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Ovo će izbrisati sve webaplikacije i njihove unose na radnoj površini. Ovo se ne može poništiti."]},"Browser changed":{"*":["Preglednik je promijenjen"]},"What are WebApps?":{"*":["Što su WebApps?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps su web aplikacije koje se pokreću u posebnom prozoru preglednika, pružajući iskustvo slično aplikaciji za vaše omiljene web stranice."]},"Benefits of using WebApps:":{"*":["Prednosti korištenja WebApps:"]},"Focus":{"*":["Fokus"]},"Work without the distractions of other browser tabs":{"*":["Rad bez ometanja drugih kartica preglednika"]},"Desktop Integration":{"*":["Integracija na radnu površinu"]},"Quick access from your application menu":{"*":["Brzi pristup iz izbornika aplikacija"]},"Isolated Profiles":{"*":["Izolirani profili"]},"Each webapp can have its own cookies and settings":{"*":["Svaki webapp može imati svoje kolačiće i postavke"]},"Back":{"*":["Natrag"]},"Forward":{"*":["Naprijed"]},"Reload":{"*":["Ponovno učitaj"]},"Fullscreen":{"*":["Cijeli zaslon"]},"Enter URL…":{"*":["Unesite URL…"]},"Zoom In":{"*":["Uvećaj"]},"Zoom Out":{"*":["Umanji"]},"Reset Zoom":{"*":["Resetiraj zum"]},"Developer Tools":{"*":["Alati za razvoj"]},"Menu":{"*":["Izbornik"]},"Open Link in Browser":{"*":["Otvori vezu u pregledniku"]},"Download Complete":{"*":["Preuzimanje završeno"]},"Save File":{"*":["Spremi datoteku"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/usr/share/locale/hr/LC_MESSAGES/biglinux-webapps.mo b/biglinux-webapps/usr/share/locale/hr/LC_MESSAGES/biglinux-webapps.mo index 82c806cc0601b40b52e0c9fae6e734784742ea11..721aabdc17791ed65e2e60d054a723fc8c3f268d 100644 GIT binary patch literal 5437 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 literal 6912 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 diff --git a/biglinux-webapps/usr/share/locale/hu/LC_MESSAGES/biglinux-webapps.json b/biglinux-webapps/usr/share/locale/hu/LC_MESSAGES/biglinux-webapps.json index 917beacd..49c60de4 100644 --- a/biglinux-webapps/usr/share/locale/hu/LC_MESSAGES/biglinux-webapps.json +++ b/biglinux-webapps/usr/share/locale/hu/LC_MESSAGES/biglinux-webapps.json @@ -1 +1 @@ -{"hu":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Sablonok"]},"Choose a Template":{"*":["Válasszon egy sablont"]},"Search templates...":{"*":["Keresés sablonok..."]},"Search templates":{"*":["Keresési sablonok"]},"Search Results":{"*":["Keresési eredmények"]},"No templates found":{"*":["Nincsenek sablonok."]},"Browser: {0}":{"*":["Böngésző: {0}"]},"Edit WebApp":{"*":["Webalkalmazás szerkesztése"]},"Edit {0}":{"*":["Szerkesztés {0}"]},"Delete WebApp":{"*":["Webalkalmazás törlése"]},"Delete {0}":{"*":["Törölje {0}"]},"Welcome to WebApps Manager":{"*":["Üdvözöljük a WebApps Managerben"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Mi az a WebApp?\n\nA WebAppok olyan webalkalmazások, amelyek egy dedikált böngészőablakban futnak, így alkalmazás-szerű élményt nyújtanak a kedvenc weboldalaid számára.\n\nA WebAppok használatának előnyei:\n\n• Fókusz: Dolgozz zavaró böngészőfülek nélkül\n• Asztali integráció: Gyors hozzáférés az alkalmazásmenüből\n• Izolált profilok: Opcionálisan, minden webappnak lehet saját sütije és beállításai\n"]},"Don't show this again":{"*":["Ne mutasd ezt újra"]},"Let's Start":{"*":["Kezdjük el"]},"Select Browser":{"*":["Böngésző kiválasztása"]},"Cancel":{"*":["Mégse"]},"Select":{"*":["Kiválasztás"]},"System Default":{"*":["Rendszer alapértelmezett"]},"Default":{"*":["Alapértelmezett"]},"Please select a browser.":{"*":["Kérjük, válasszon egy böngészőt."]},"Error":{"*":["Hiba"]},"OK":{"*":["Rendben"]},"Add WebApp":{"*":["Webalkalmazás hozzáadása"]},"Choose from templates":{"*":["Válasszon a sablonok közül"]},"URL":{"*":["URL"]},"Detect":{"*":["Észlelés"]},"Detect name and icon from website":{"*":["Nevezze meg és ikont észlel a weboldalról"]},"Name":{"*":["Név"]},"App Icon":{"*":["Alkalmazás ikon"]},"Select icon for the WebApp":{"*":["Válassza ki az ikont a WebApp-hoz"]},"Available Icons":{"*":["Elérhető ikonok"]},"Category":{"*":["Kategória"]},"Application Mode":{"*":["Alkalmazás mód"]},"Opens as a native window without browser interface":{"*":["Böngészői felület nélküli natív ablakban nyílik meg."]},"Browser":{"*":["Böngésző"]},"Profile Settings":{"*":["Profilbeállítások"]},"Configure a separate browser profile for this webapp":{"*":["Állítson be egy külön böngészőprofilt ehhez a webalkalmazáshoz."]},"Use separate profile":{"*":["Használj külön profilt"]},"Allows independent cookies and sessions":{"*":["Független sütik és munkamenetek engedélyezése"]},"Profile Name":{"*":["Profil név"]},"Save":{"*":["Mentés"]},"Loading...":{"*":["Betöltés..."]},"Detecting website information, please wait":{"*":["Weboldal-információk észlelése, kérem várjon"]},"Please enter a URL first.":{"*":["Kérjük, először adjon meg egy URL-t."]},"Please enter a name for the WebApp.":{"*":["Kérjük, adjon meg egy nevet a WebApp számára."]},"Please enter a URL for the WebApp.":{"*":["Kérjük, adjon meg egy URL-t a WebApp számára."]},"Please select a browser for the WebApp.":{"*":["Kérjük, válasszon egy böngészőt a WebApp-hoz."]},"WebApps Manager":{"*":["Webalkalmazások kezelője"]},"Search WebApps":{"*":["Webalkalmazások keresése"]},"Main Menu":{"*":["Főmenü"]},"Refresh":{"*":["Frissítés"]},"Export WebApps":{"*":["Webalkalmazások exportálása"]},"Import WebApps":{"*":["Webalkalmazások importálása"]},"Browse Applications Folder":{"*":["Böngéssze az Alkalmazások mappát"]},"Browse Profiles Folder":{"*":["Profilok mappa böngészése"]},"Show Welcome Screen":{"*":["Üdvözlő képernyő megjelenítése"]},"Remove All WebApps":{"*":["Minden WebApp eltávolítása"]},"About":{"*":["Névjegy"]},"Add":{"*":["Hozzáadás"]},"No WebApps Found":{"*":["Nincs WebApp található"]},"Add a new webapp to get started":{"*":["Adj hozzá egy új webalkalmazást a kezdéshez."]},"WebApp created successfully":{"*":["A WebApp sikeresen létrejött"]},"WebApp updated successfully":{"*":["A WebApp sikeresen frissítve lett."]},"Browser changed to {0}":{"*":["A böngésző megváltozott {0}-ra."]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Biztosan törölni akarja a(z) {0} elemet?\n\nURL: {1}\nBöngésző: {2}"]},"Also delete configuration folder":{"*":["A konfigurációs mappa törlése is."]},"Delete":{"*":["Törlés"]},"WebApp deleted successfully":{"*":["A WebApp sikeresen törölve."]},"REMOVE ALL":{"*":["MINDEN ELTÁVOLÍTÁSA"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Biztos benne, hogy el akarja távolítani az összes WebApp-ját? Ez a művelet nem vonható vissza.\n\nÍrja be a \"{0}\" megerősítéshez."]},"Remove All":{"*":["Összes eltávolítása"]},"All WebApps have been removed":{"*":["Minden WebApp eltávolításra került."]},"Failed to remove all WebApps":{"*":["Nem sikerült eltávolítani az összes WebAppot."]},"Icon {0} of {1}":{"*":["Ikon {0} a {1}-ben"]},"WebApps exported successfully":{"*":["A WebAppok sikeresen exportálva lettek."]},"No WebApps":{"*":["Nincsenek Webalkalmazások"]},"There are no WebApps to export.":{"*":["Nincsenek exportálható WebAppok."]},"The selected file does not exist.":{"*":["A kiválasztott fájl nem létezik."]},"The selected file is not a valid ZIP archive.":{"*":["A kiválasztott fájl nem érvényes ZIP archívum."]},"Error importing WebApps":{"*":["Hiba a WebApps importálásakor"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["Sikeresen importált {} WebAppot ({} duplikált kihagyva)"]},"Imported {} WebApps successfully":{"*":["Sikeresen importált {} WebAppokat"]},"No":{"*":["Nem"]},"Yes":{"*":["Igen"]}}}} \ No newline at end of file +{"hu":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Sablonok"]},"Choose a Template":{"*":["Válasszon egy sablont"]},"Search templates...":{"*":["Keresés sablonok..."]},"Search Results":{"*":["Keresési eredmények"]},"No templates found":{"*":["Nincsenek sablonok."]},"Edit WebApp":{"*":["Webalkalmazás szerkesztése"]},"Delete WebApp":{"*":["Webalkalmazás törlése"]},"Welcome to WebApps Manager":{"*":["Üdvözöljük a WebApps Managerben"]},"Don't show this again":{"*":["Ne mutasd ezt újra"]},"Let's Start":{"*":["Kezdjük el"]},"Select Browser":{"*":["Böngésző kiválasztása"]},"Cancel":{"*":["Mégse"]},"Select":{"*":["Kiválasztás"]},"OK":{"*":["Rendben"]},"Add WebApp":{"*":["Webalkalmazás hozzáadása"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Nevezze meg és ikont észlel a weboldalról"]},"Name":{"*":["Név"]},"Category":{"*":["Kategória"]},"Opens as a native window without browser interface":{"*":["Böngészői felület nélküli natív ablakban nyílik meg."]},"Browser":{"*":["Böngésző"]},"Allows independent cookies and sessions":{"*":["Független sütik és munkamenetek engedélyezése"]},"Profile Name":{"*":["Profil név"]},"Save":{"*":["Mentés"]},"Loading...":{"*":["Betöltés..."]},"WebApps Manager":{"*":["Webalkalmazások kezelője"]},"Search WebApps":{"*":["Webalkalmazások keresése"]},"Export WebApps":{"*":["Webalkalmazások exportálása"]},"Import WebApps":{"*":["Webalkalmazások importálása"]},"Browse Applications Folder":{"*":["Böngéssze az Alkalmazások mappát"]},"Browse Profiles Folder":{"*":["Profilok mappa böngészése"]},"Remove All WebApps":{"*":["Minden WebApp eltávolítása"]},"About":{"*":["Névjegy"]},"Add a new webapp to get started":{"*":["Adj hozzá egy új webalkalmazást a kezdéshez."]},"WebApp created successfully":{"*":["A WebApp sikeresen létrejött"]},"WebApp updated successfully":{"*":["A WebApp sikeresen frissítve lett."]},"Also delete configuration folder":{"*":["A konfigurációs mappa törlése is."]},"Delete":{"*":["Törlés"]},"WebApp deleted successfully":{"*":["A WebApp sikeresen törölve."]},"Remove All":{"*":["Összes eltávolítása"]},"All WebApps have been removed":{"*":["Minden WebApp eltávolításra került."]},"Failed to remove all WebApps":{"*":["Nem sikerült eltávolítani az összes WebAppot."]},"WebApps exported successfully":{"*":["A WebAppok sikeresen exportálva lettek."]},"No WebApps":{"*":["Nincsenek Webalkalmazások"]},"Change browser":{"*":["Böngésző váltása"]},"Edit":{"*":["Szerkesztés"]},"New WebApp":{"*":["Új WebApp"]},"Icon":{"*":["Ikon"]},"App Mode":{"*":["Alkalmazás mód"]},"Separate Profile":{"*":["Külön profil"]},"Select Icon":{"*":["Ikon kiválasztása"]},"Images":{"*":["Képek"]},"ZIP files":{"*":["ZIP fájlok"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Importálva {imported}, kihagyva {dups} duplikátum"]},"Import failed":{"*":["Importálás sikertelen"]},"Export failed":{"*":["Exportálás sikertelen"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Ez töröl minden webappot és azok asztali bejegyzéseit. Ez nem visszavonható."]},"Browser changed":{"*":["Böngésző megváltoztatva"]},"What are WebApps?":{"*":["Mik azok a WebAppok?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["A WebApps olyan webalkalmazások, amelyek egy dedikált böngészőablakban futnak, így app-szerű élményt nyújtanak kedvenc weboldalaid számára."]},"Benefits of using WebApps:":{"*":["A WebApps használatának előnyei:"]},"Focus":{"*":["Fókusz"]},"Work without the distractions of other browser tabs":{"*":["Dolgozz anélkül, hogy más böngészőfülek zavarnának"]},"Desktop Integration":{"*":["Asztali integráció"]},"Quick access from your application menu":{"*":["Gyors hozzáférés az alkalmazásmenüből"]},"Isolated Profiles":{"*":["Elkülönített profilok"]},"Each webapp can have its own cookies and settings":{"*":["Minden webappnak lehet saját sütije és beállítása"]},"Back":{"*":["Vissza"]},"Forward":{"*":["Előre"]},"Reload":{"*":["Újratöltés"]},"Fullscreen":{"*":["Teljes képernyő"]},"Enter URL…":{"*":["Írd be az URL-t…"]},"Zoom In":{"*":["Nagyítás"]},"Zoom Out":{"*":["Kicsinyítés"]},"Reset Zoom":{"*":["Nagyítás visszaállítása"]},"Developer Tools":{"*":["Fejlesztői eszközök"]},"Menu":{"*":["Menü"]},"Open Link in Browser":{"*":["Hivatkozás megnyitása böngészőben"]},"Download Complete":{"*":["Letöltés befejezve"]},"Save File":{"*":["Fájl mentése"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/usr/share/locale/hu/LC_MESSAGES/biglinux-webapps.mo b/biglinux-webapps/usr/share/locale/hu/LC_MESSAGES/biglinux-webapps.mo index da063093e4d3dcffd707c49c94ba02608d1fb50a..659b4a4e38181ad0aec3428172927431ec39b56b 100644 GIT binary patch literal 5688 zcmaKve~ctW6~{|J&_x76QADIv;1qU;160n11Lp2_k9B_>ce@7!m8536X11q$y2tLG z*_$yKRE*I?lTAbuCF&BR+2AFbOO{B^KeXLMjgDC7PIiXSd` zWijt-AttEZQ0Bh}$~gO>*mEb8_YXmN|9)73A(Zcb5z6*<{VFoXU$4Y*-%D7D^{XYhoy809pJv|IXw~s-w>wEAG@JCSM^E{k{ zFGA^e4IdZ3?uGLFFuWNyAX8Cag7W>xp!E9zd^3Csz8?M)if%8#N#c(gD0VGE{?rOT z64yp~KY;Rn0_FX6D1P09V&~IP=J_`$Iz0=KNM2tAWt>Z)%=dCA@wo{l6sG9K*t2S%sRwGG zjcmiuQXMyRH}#|D(1dBVFX4k$(?9gf@A7a5Nx0CYCMAuhM)Wr7v zCaT*IWVRV6eYM}+*ERQngv&VQLq@OIb|<8hI^gUtG4$U7n+93j(Q^^Q6mz0SX6u=b zOq=&{gU^(8BZ=GM&xk%eD9_%$_itP>~M(7VIS zhQWWHnspFC6yerpM+<5;u6I*@lQomjwHt)RIwrScFoHBfQSq@)ZSxUbmAzp!s!Sma)=UqTuOaeAR-@cBOh*gsK*B6Z5T9Dr(V2UA2Vo z)e@>MWxf=TCdp}5hBQTf-N;ji=G7tes~7wzK+L*OQsQnB4E_ja=A-^Kq)w35{A`s( z8j6K?aB9QUttze4&Va*RzaD5)uagIb0Qzw^(WKc>yt*yc9zhJo1Cmvmlp8x8*?q*O zP|@x^R2#)O&T1SVN4BDnqAG0F zD9D94?K+n=P*s2UtoRl+7*M;^bMwa zQd|&QSq;j#PwGw*_k2+rz1lG&5zDF253IJwNN3+tQxH|6U7#DL7boQVFz?gK$O^iX zd3@ot`GobDszJ_`;oC7^EELxl)EW>YJPiBfVjPNwzj(S-%QR9&3Wx6Uk9=N9g$9yoAhW_kHGx<<_|0hwB{ zrai3}s!IotRu9r|Vd0L@uf$1nrw=19&MnUD*mFZ=_r(5~WQ+J*zhkFKO{Qj|dMu%v)_ZDxHgWINL6#XbF7}!X&pGSugj&isdo9~^ z(lcRT!nPUY8?1lv02+^T!@}7rZ)m#e{E3#!ft~I|O9yt~<(uiM9Z;8Km5j>pX&Yww zMlTNY<1kI6Ym%P~vx=I{Pc~VBL;9xq$;=NlBj|QF3aDujt3aTwEMWO&*tY|oSyk0R zxv1tFbw58rccNu#d4AkqI`oG<{OdWJK^?v z)VDs%ZoU;Y87Ung`2i(r4gh_rPRI|3l{$h}AulpJX`PLxc3K)YZ zWhV8s9q{fGt;EP0m2VMhB3QEx+p+^Hcd3LTr^L^pU6n1DY2n2p=q>Bas99!NYQ(7J zflUJWFvFcbKLRs)W>x;_gxcjoMR}ddWUW8dAw;PtL43gZv)Bq0S30GlQJv5rvuYQY zqRw&In#dO^M5xh$c-_P#b{vks1RfvR9MR+uZAb@^m`@?VpmGgS=9F> z^~dsLdtJJXC5o>bHpFJc5s~g!Hk!N?1x&<)15JdTNm(H~&uwGwivVm?Cr1Jy%%>+eo|Y z%A9Ox^Nm(0yB@hB&23^+&Pb%hdhL9Za&rbzphnki=Y=xi@h{t%d0*-R#Y;Xu?m!)k zKQT^ur{9||L{Z9tZIu)fLOC;V^%I}yb}{cFVcESDo+O3jlTu4+WOlRf3Z0)-G_OXa zP2q)J9II#qZ%BVV# z%rY}eCgqQKJy&c)m#$_spK^~U>9a^Gn1RHmd>RM0^Pg1MWbx*|u`-P&S-UYD11QYH mb!vOPA;}i#f$5oqg%I0|9g~PwvU{X(BvS-|@qYo_F^%Q` literal 7264 zcma)=ZH!!18OIN=!hpQv3yK`7*cLkr1q56QWlDG3wY%HW-4;P0o}D=}dw1^KJGuAH zYxim%tF-l@WOlkr#;e*B|YKVak{+@Hsot?g+ zH+$~?p7-ZG&;NPOGkfZWOJ7nv`zfEMyneA#-vGaU884m#A5rS%i%cd_hrm-{3%rFzt_8mh-U7Y|ehfScvZZ>> z*Ix&(rv46iId~eBb>9Q82h~+d-3;6S-Un^~W&SgujJM!N!4PDM8u<3_fVWfsK6oei zGAQf31@fo|2IKY zpiY68g71Q;Uj5zop9V!=?}ImhS0lXi-v-_Tt^+>_?gQ6>G5A^VMNssA9Q*`$3SF5$m2ZC& zlyklfik|-lR>5mfmhff^D13Svyb1go_$jdG@vz6EAb;w&yo6_OfwJFwpv=Dk;jX+0 z?tp&=HKY)`eZZka@0TI8tb09pH&_KlPtSs)&+meFfWHLgoPY6n8l0eh5yCwO?f`{v ze*ixRz5|N=uYfeN&mExHVKXS}>;pwlO;GgS0fpZOKsm<`z#ZUGP{#io6uB>Fkl629 z5Ywp*pv=D?+yvG@kvjqrQLTa^$1gxx=Z~P+@f}d~{4V$z@CwMg8C(yFy`Kc7Jp_eE z-vhq{z6{EF-UVg2MV{Mv$@#W` zvd(T$&d~t*Qwc9Q@AIJ8{pTP{sXu{o&eNdS@jsx*cPr$P@sERY?hKUi2SCx^i=fE! z3Mlh_4>DE#6O?mbgK?z&0Z{b!RS=pwU0)0emu4szdLHy0cY~s*ny+sIMV@KOeu{9q ze1r$WU6Jn#zEO1Wu>US$)_;h+q6?9CyKfWD34gXy#BQU{?NoO8hAB|aB|4IaiB9{kOygdBkpFW3i*?`Vk7WP;(T~nee@Q=F1OIc=Bb+eH78X*jsG9gR++* z&s~%;_odW0_$Xx`H43y)MPzUF$C?SeMlZWz=} z7Q|7iGnte0A{|89=!R`bk8S9MBwkK!qL+iH5if7j-6ZY@jUZ|maX_lCJAw0{(G$uo7GqaFZ{3_dR+Royxo{BQtO5Aaa zH6QN<^|m(kx=mBvOyW)<^N3n>$40$!ovAbqol5p3aWe?5muz=eWH4d4vPoN0UzDS= zgsz)NFPgs9?wre!uE%jZu&FjtL#H;&ICff5wFOS3YK?{zuLk#NbYz#y#j;qpY^Kx9 zBp5~2!m!j>vB!e7kxpzU?ian-3_~_-*Yb+8v-VC?F*&QGF_sQ3_Nm8FGidb+^O zE}yGO`eAex+;mI<{OV61bBjoiSDGn;=0SRUw2PIZLW1i-Y>E(y(VXCw^w4>x(98;S=n_Ze=s4qVkx5_#ptv;$%fVwiw4L z-l6Ahrz^ZETO83c-koHBu~-k zgxXGTU4{wh$aL5R_66vuAUx}dTlx{=h`t5(;KUv0EjWE>4To7a0gJ`adYHHvFXM+| zmzD`4HPHyNQULcYI+;k4I4Ryb=yc;mIA0Q1O&pMxVRaH~6}lbafv12H7RrevU_dA} zRC}Qj|%$1=x zAaEs3Q@3hQVFx^#SZ6f;rJF&LW@G2=AqY#PEOdCz5XS}y)aMzK!Yc@4hD7{7$FYfL ztW!%_ne)+3?VXs}y?;X2rl-|j+e~b_2uje>M6{95p(^JHplZ&Vgt)rbrf@zjt0gsj z?@+;I|FA*qHRlfGLHlr2RttAHLlbIF`2B

oGnvS5JtqYHlTEQC&LU{LqKz(Q=_O z80H+d5kn%0Q}zJ&)R;PV1fC=PM)yq^H1tzbd$^bDi_pN0mW!1V4Ot~YhZ`1;8B^F@ z?ZY33@xsRmRp>+`E>VPAX4D0IUlE|s-`DFlE;KLIGbS=EE(Nc5FU+~S6e>g7a$q^} zNt+5imS9$Os!`o<6S;=Q^+M1JgQ$0)y6i5_w6fRAF{?9aD`-@=^;&6lJ|5SVX_IEv z`NTvi;WSRh_2jl4^$G+MQ z#!XK@8U|x=(pnqC$}>|l6KnEp9=p3jRL=0Ss$4DOIPZb%E`oRvJtTKP!tMQVFKbpG zTpK51HEmLzi0ZKfiE;hlLXcIyQr$tSLrfQWO-9Dzq_-7G(`Eu~1~8ydluy!Xz8bf6 z9IlW$&$Jhq+w5hL zVMczGp(CqQ(}7J+zM}IZVJANlt#CK2xB#Xr=XgG@OCUgXkZCEZeJhhR<2Rc8VLhRIgP*v=-RZobEbxyw0mt2XQ zx}*DX#E%_l*AEykgwCHAxyUJv&m%jQPf*xz4>zJWc;13F!oE8w%}eb~nq2+$Xb#)CM^L|IilZ@44li>z}dKhnZxy9nE@ z{8$ngwVzprW05aOd`O7}#In(5@=Vu=Ozr&m0HUb;TaLadlTd=p6W>GBQJD&7;YwSC zf@tc@z=Q(|D@+$HWj5^C0hhj-_oO+S{X;Uj5wHVKl8iBbE**qcXr^Xu-wx0$nsB5Q zmSyrK1B&fka3X$$vb?KQi?p?1t|Pl&4)U~-Osr23TY|8&EZxgY+R%2uy00!J=4>e? zO13SL#~EvGq~?U(87vqjFQh3vksnT?Yx!|;*|dX2(^~19 zjcONBX(>M;VP9>t*p*mxB$b?N^5kI`d0jY^gR0pesv`zL=WMMMU0#ctNRNJ;kB-bK zSvy9e7&YYFBkmLECbZ$|z{UO55lC8{AMNYmb;u=mlz&wSrN-1Q=pcggtDOsr>+Lux zbpvKN#)%J*W>r!6+Q9R44^2OEL0)i11f?aC7i2mA4DtFA{~d`5Ycs3P+1BLxkU3>W zE?VjPU^IGN5yobwX17nw>WS(3{9F5XPv_5rb2T-Y5FLy7r}7^bf%VLb#(d~CL@ybX zc=9e`A0L6{qu~+`+dh}Hj-<}h)+UrTAFeTsUBa+kL2+^%lnZu*4Z1zrvlbM&8Qn!u z#FEkwqE40nsL>}HLInvF{3k0~DZ=m)_eNCc!8+ziR3Mo;E7HyRm@4<@aC3>>&3tt! zboUNnEwh85O`N>o7)aTdjEq~X{7C?Xd;B|N&3T3qq`1WjHpMI}zYBKyY;0*5!hPIk z(~@_?cpwrbb}2tjs6J1(L}?saev+K0x9JJOuQ%KdM>*T6C1VlaT9Txql(L9+E*cHb c(Kl`d%MrX8What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Hvað eru Vefforrit?\n\nVefforrit eru vefumsóknir sem keyra í sérstöku vafravindu, sem veitir meira forritalíkt upplifun fyrir uppáhalds vefsíður þínar.\n\nÁvinningur af notkun Vefforrita:\n\n• Fókus: Vinna án truflana frá öðrum vafratöflum\n• Vinnustöðva samþætting: Fljótleg aðgangur frá forritavalmyndinni þinni\n• Einangruð prófíl: Valfrjálst, hvert vefforrit getur haft sín eigin kökur og stillingar\n"]},"Don't show this again":{"*":["Ekki sýna þetta aftur"]},"Let's Start":{"*":["לְבַשֵּׁל"]},"Select Browser":{"*":["Veldu vafra"]},"Cancel":{"*":["Hætta við"]},"Select":{"*":["Veldu"]},"System Default":{"*":["ברירת מחדל של מערכת"]},"Default":{"*":["ברירת מחדל"]},"Please select a browser.":{"*":["Vinsamlegast veldu vafra."]},"Error":{"*":["Villa"]},"OK":{"*":["Í lagi"]},"Add WebApp":{"*":["Bæta við Vefforriti"]},"Choose from templates":{"*":["Veldu úr sniðmátum"]},"URL":{"*":["Vefslóð"]},"Detect":{"*":["Greina"]},"Detect name and icon from website":{"*":["Greina nafn og tákn frá vefsíðu"]},"Name":{"*":["Nafn"]},"App Icon":{"*":["App tákn"]},"Select icon for the WebApp":{"*":["Veldu tákn fyrir vefforritið"]},"Available Icons":{"*":["tákn í boði"]},"Category":{"*":["Flokkur"]},"Application Mode":{"*":["Forritastilling"]},"Opens as a native window without browser interface":{"*":["Opnast sem innfæddur gluggi án vafra viðmóts"]},"Browser":{"*":["Vafri"]},"Profile Settings":{"*":["Prófíllstillingar"]},"Configure a separate browser profile for this webapp":{"*":["Stilltuðu aðskilda vafra prófíl fyrir þessa vefumsókn."]},"Use separate profile":{"*":["Notaðu aðskilda prófíl"]},"Allows independent cookies and sessions":{"*":["Leyfir sjálfstæðar kökur og lotur"]},"Profile Name":{"*":["Nafn prófíls"]},"Save":{"*":["Vista"]},"Loading...":{"*":["Hlaða..."]},"Detecting website information, please wait":{"*":["Að greina vefsíðugögn, vinsamlegast bíða."]},"Please enter a URL first.":{"*":["Vinsamlegast sláðu inn URL fyrst."]},"Please enter a name for the WebApp.":{"*":["Vinsamlegast sláðu inn nafn fyrir vefforritið."]},"Please enter a URL for the WebApp.":{"*":["Vinsamlegast sláðu inn vefslóð fyrir vefforritið."]},"Please select a browser for the WebApp.":{"*":["Vinsamlegast veldu vafra fyrir WebApp."]},"WebApps Manager":{"*":["Vefforritastjóri"]},"Search WebApps":{"*":["Leitaðu að Vefforritum"]},"Main Menu":{"*":["Aðalvalmynd"]},"Refresh":{"*":["Ferskaðuðu"]},"Export WebApps":{"*":["Flytja út vefforrit"]},"Import WebApps":{"*":["Flytja vefforrit"]},"Browse Applications Folder":{"*":["Skoða forritaskrá"]},"Browse Profiles Folder":{"*":["Skoða möppu prófíla"]},"Show Welcome Screen":{"*":["sýna velkomin skjár"]},"Remove All WebApps":{"*":["Fjarlægja allar vefforrit."]},"About":{"*":["Um umfjöllun"]},"Add":{"*":["Bæta við"]},"No WebApps Found":{"*":["Engin vefumsóknir fundust ekki"]},"Add a new webapp to get started":{"*":["Bættu við nýrri vefumsókn til að byrja."]},"WebApp created successfully":{"*":["Vefforrit búið til með góðum árangri"]},"WebApp updated successfully":{"*":["Vefforrit uppfært með góðum árangri"]},"Browser changed to {0}":{"*":["Vafri breytist í {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Ertu viss um að þú viljir eyða {0}?\n\nVefslóð: {1} \nVafri: {2}"]},"Also delete configuration folder":{"*":["Einnig eyða stillingaskránni."]},"Delete":{"*":["Eyða"]},"WebApp deleted successfully":{"*":["Vefumsókn eytt með góðum árangri"]},"REMOVE ALL":{"*":["FJARLÆGÐU ALLT"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Ertu viss um að þú viljir fjarlægja allar vefsíður þínar? Þessi aðgerð er ekki hægt að afturkalla.\n\nSláðu inn \"{0}\" til að staðfesta."]},"Remove All":{"*":["Fjarlægja allt"]},"All WebApps have been removed":{"*":["Öll vefforrit hafa verið fjarlægð."]},"Failed to remove all WebApps":{"*":["Ekki tókst að fjarlægja allar vefforrit."]},"Icon {0} of {1}":{"*":["Tákn {0} af {1}"]},"WebApps exported successfully":{"*":["Vefforritin fluttast út með góðum árangri"]},"No WebApps":{"*":["Engin ekki vefforrit."]},"There are no WebApps to export.":{"*":["Engin ekki vefforrit til að flytja út."]},"The selected file does not exist.":{"*":["Valda valin skráin er ekki til."]},"The selected file is not a valid ZIP archive.":{"*":["Valda skráin er ekki gilt ZIP skjal."]},"Error importing WebApps":{"*":["Villa við að flytja inn WebApps"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["Innflutt {} WebApps með góðum árangri ({} afrit sleppt)"]},"Imported {} WebApps successfully":{"*":["Innflutt {} WebApps með góðum árangri"]},"No":{"*":["Nei"]},"Yes":{"*":["Já"]}}}} \ No newline at end of file +{"is":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["sniðmát"]},"Choose a Template":{"*":["Veldu sniðmát"]},"Search templates...":{"*":["Leita að sniðmátum..."]},"Search Results":{"*":["Leitni niðurstöður"]},"No templates found":{"*":["Engin ekki fundin."]},"Edit WebApp":{"*":["Breyta Vefforrit"]},"Delete WebApp":{"*":["Eyða vefforriti"]},"Welcome to WebApps Manager":{"*":["Velkomin í WebApps Stjóra"]},"Don't show this again":{"*":["Ekki sýna þetta aftur"]},"Let's Start":{"*":["לְבַשֵּׁל"]},"Select Browser":{"*":["Veldu vafra"]},"Cancel":{"*":["Hætta við"]},"Select":{"*":["Veldu"]},"OK":{"*":["Í lagi"]},"Add WebApp":{"*":["Bæta við Vefforriti"]},"URL":{"*":["Vefslóð"]},"Detect name and icon from website":{"*":["Greina nafn og tákn frá vefsíðu"]},"Name":{"*":["Nafn"]},"Category":{"*":["Flokkur"]},"Opens as a native window without browser interface":{"*":["Opnast sem innfæddur gluggi án vafra viðmóts"]},"Browser":{"*":["Vafri"]},"Allows independent cookies and sessions":{"*":["Leyfir sjálfstæðar kökur og lotur"]},"Profile Name":{"*":["Nafn prófíls"]},"Save":{"*":["Vista"]},"Loading...":{"*":["Hlaða..."]},"WebApps Manager":{"*":["Vefforritastjóri"]},"Search WebApps":{"*":["Leitaðu að Vefforritum"]},"Export WebApps":{"*":["Flytja út vefforrit"]},"Import WebApps":{"*":["Flytja vefforrit"]},"Browse Applications Folder":{"*":["Skoða forritaskrá"]},"Browse Profiles Folder":{"*":["Skoða möppu prófíla"]},"Remove All WebApps":{"*":["Fjarlægja allar vefforrit."]},"About":{"*":["Um umfjöllun"]},"Add a new webapp to get started":{"*":["Bættu við nýrri vefumsókn til að byrja."]},"WebApp created successfully":{"*":["Vefforrit búið til með góðum árangri"]},"WebApp updated successfully":{"*":["Vefforrit uppfært með góðum árangri"]},"Also delete configuration folder":{"*":["Einnig eyða stillingaskránni."]},"Delete":{"*":["Eyða"]},"WebApp deleted successfully":{"*":["Vefumsókn eytt með góðum árangri"]},"Remove All":{"*":["Fjarlægja allt"]},"All WebApps have been removed":{"*":["Öll vefforrit hafa verið fjarlægð."]},"Failed to remove all WebApps":{"*":["Ekki tókst að fjarlægja allar vefforrit."]},"WebApps exported successfully":{"*":["Vefforritin fluttast út með góðum árangri"]},"No WebApps":{"*":["Engin ekki vefforrit."]},"Change browser":{"*":["Skiptu um vafra"]},"Edit":{"*":["Breyta"]},"New WebApp":{"*":["Nýtt WebApp"]},"Icon":{"*":["Tákn"]},"App Mode":{"*":["Forritsstilling"]},"Separate Profile":{"*":["Aðskilin prófíl"]},"Select Icon":{"*":["Veldu tákn"]},"Images":{"*":["Myndir"]},"ZIP files":{"*":["ZIP skrár"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Flutt inn {imported}, sleppt {dups} tvíriti"]},"Import failed":{"*":["Innflutningur mistókst"]},"Export failed":{"*":["Útflutningur mistókst"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Þetta mun eyða öllum weböppum og skjáborðsinnsláttum þeirra. Þetta er óafturkræft."]},"Browser changed":{"*":["Vafri breyttur"]},"What are WebApps?":{"*":["Hvað eru WebApps?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps eru vefforrit sem keyra í sérstökum vafraglugga og bjóða upp á upplifun sem líkist forriti fyrir uppáhaldsvefsíðurnar þínar."]},"Benefits of using WebApps:":{"*":["Kostir við að nota WebApps:"]},"Focus":{"*":["Einbeiting"]},"Work without the distractions of other browser tabs":{"*":["Vinna án truflana frá öðrum flipa í vafranum"]},"Desktop Integration":{"*":["Þráðtenging við skjáborð"]},"Quick access from your application menu":{"*":["Hraður aðgangur úr forritavalmyndinni þinni"]},"Isolated Profiles":{"*":["Aðskilin prófíl"]},"Each webapp can have its own cookies and settings":{"*":["Hvert webapp getur haft sín eigin smákökur og stillingar"]},"Back":{"*":["Til baka"]},"Forward":{"*":["Áfram"]},"Reload":{"*":["Endurhlaða"]},"Fullscreen":{"*":["Allur skjár"]},"Enter URL…":{"*":["Sláðu inn URL…"]},"Zoom In":{"*":["Stækka"]},"Zoom Out":{"*":["Minnka"]},"Reset Zoom":{"*":["Endurstilla aðdrátt"]},"Developer Tools":{"*":["Forritaraverkfæri"]},"Menu":{"*":["Valmynd"]},"Open Link in Browser":{"*":["Opna hlekk í vafra"]},"Download Complete":{"*":["Niðurhal lokið"]},"Save File":{"*":["Vista skrá"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/usr/share/locale/is/LC_MESSAGES/biglinux-webapps.mo b/biglinux-webapps/usr/share/locale/is/LC_MESSAGES/biglinux-webapps.mo index f4c4a30587c8d4fb43d78c2d4fccf0157bcadfe4..b8bd6fdacff2bccc976c42e2fc3c292871272449 100644 GIT binary patch literal 5465 zcmai$ZHygN8OINThzk`(6cxdv0@c#J6!4`kFJ-sg?Jn$YOLtocM&sN&XYS74dAT_= zvoA3qkP!5PMv3?Vh_Qw&lDKh`#v0M`Wza-pOf;mc2@nyDCYWF#!~~7{d(O<wpv?Okyc&K7iao!D=fX{R9()1Hd;Sh(-Ty%G!?w3q z``!UDLG6OF|J_j5*$c&{}{^rr)vJ9?*Dbo-@^-d z{wGK%)IZ>b@HKc1JfB6x?lHI>9)M!UGUTW3;w1CGQr|xU<$aGqmQde^V(;;qKZD}O zr=hI#*Sh~DD0crFz7q~{Bl9nYv+#0wCd}c*aHZxqYi>Y^$FJah@EIt2X=A+T;cn>s z1Fz+N9m@L8L-F^EkWi>sr2h7)vsNX@cfi;$ms znUl;v6X%M5E{3xHWX;b)@pA%Ye=AV*aW|B8?}Oss2cXRR9+YuEf#SCk?t+_8{B;h4 zu7Vdq@!NjLR@EF7U38$V_a!LyJ_u#p!*%~-@O|8$sCg2~xR;=ed$r~nyqrt54T}95 zeh%)a@4pOpaQ^_j9G-w5gD*f#Rp;T{uft1W3;qC#ea}Hz_ceGm+=j8@?>$iVeKQol zAA-ox#aQlT%@Nvmn&|6|4qmN3eaeHqTu;z$riqPGXXMyJyM-q2{S-~=*~e+u(3->9 z#*O$y{40Bt;}aF!S?cO6O>{1?9Hljf?C}7NZK{vZWN+d}ImG{R+(?_EiHCU`4N>VO(;r$w$teP7>Z+N1rxyYzHomi4k} zd;Px7Q{6SW&T`M@##f_JR1eMcg12OJ+n7XK6Q@hn({wr0Vd9&<;gsaMlcv4UWZFx7 zotZ2P(*o|!W2D|`bLd;ot_#qi3!3y(`lfKEKItM z2_tIE@p?5inQqR|WQ%qn{HSTp5nm~2Dq>6}h z)N*o~=kpxDWoq0Hb9ZVC9>-9t4x8+iE7R}&5*h$`IL+tPxX zNIONw*)DsQp+yvB9g8&76q{93vDY;jc-`{#ZM}STXMFv|&toT5855g__0pY8F-3GM`Nco8&UDLz*GK zBJtIMThsyctEa=HhnRJxB%3gsB9Z8OnC?q)L2Pw3sN=p<_iefqiqaSr zr>sOQhoi7(v{@mYLqknLR93q{2i{U@$@eDjv(~^0hLd@`;k5lkos_CU&eh@DGG8nd z+v^8=)NQHl4U~w_wI61=^*T~lUFl5ew1X|=UOQ8FOdZs&Iw}zoRjc9wJ_;yz5m5|J z`NKzymAXBm+hI2flVW8Uhq2Ra=#UY!hi9^G=nsz--E4S19nnM6UX~BfTQAAT(bSIU ziNn*=dUkYXTwgyvGdeYW)9Ai^hsNjTZe(cEEeOc)yz$}@Jv}B8jv{IVtF(Qvb!z2m2+N|=F&op_+p1iDQ%cDGK zNlnJWta+m5v8C!q?_Wn#5l(-)V=`~3p#m&bx~J@V8M zFR)>CMqXw$7rQ3$Q|%}<5v4thW`VGemx@>~F@=dH@(Z0M>^v@y@?nxqROc=KgsS{D zn<+O4b5~N$`9AC6mUe2(4Yl8zFp-iRB;uC5Jc`Q$rpOvuxn6D*wHGL1__-I9YuG#9 z>xDWiPcXH7(ul2IAcoIkO<@|v<)Inx~jYfx5x4?j@6tCt(q5qshQQp4=s^$Mhs@FsU&$r117L4 zcjmwDdmWj6KW{$Q`BJ&=vSYN|;7g7$2cl7%kDT1t{Km;2Z9abTrcF>VfMWWL^TRF?0c&e*xhgv}Ph1Pm4T`$5%syya$k=?BYIeH+Eqw*NJIM|17mrt-?S6XAk zMOU87YDcNuU8zS~^;b#~f34nRR9%LPeqRd1{~d^Q7RzJ2p!p;lOW|+)>r~Y1f$m{bUb{OQcki9=R=o nh`&))krlaF_7_B9-)-7SCqZcP@4_jR%FpMk$46&|MZkXn%Ss+C literal 7039 zcma))ow=Ep z-7b|NCYqQa3I>cy&_zOkP_hZ3#wze(h(^WufxyZKNz^Zz_`(;(=of#_nKO4Ur9~!t z?tkXYnddw&|K~Z+zHsKII~CVF;{%MRU$4~7;FnI}hwIR(N7X#P}W=UEno!liMr9xe-->N&$oi- zgO7kB=XsDn^$&hzpZ|hl|0a|;3v7UI1vi7@w+lhBW1pY@Jg9l@ftP@{fgUx< zBGgNu$lHX{vj4k4@sIY;TR_?8Vo>y%0Qpl_d%PZ$??dn%;Eka8^)~&jQ8Y=YS&jV<3O(Qhs)T*McJNHc;f; z3yQxV07ajlfa32GlsNwiya4<=DEpsH(#ZNxg0k;kP~^;j;`h&hsHAQLKL&mil=VOL z_%yhc=ih^ppQj>J_^=z4{pUg9(HBACM-LRgrywe*B~bi#D=6PR42r!^g4@AgfTH)m z!B2u8fSebCv!KM`tDx}tVNm@0b5Q*8EGT;Z1(f~&1B(AnWwG$&EKuyc7!*A|4YEY- z_qgcs7EsoG50rTP5Ih@v7?kgR4T^q$0L9)@AeRQu0M7-tgImCPP~P7R@~6Je&-vhe zpsf2XDC_#D3A-)uUjrr$YpvaqI z%rhkS>r4DL&Ja5#=5k3+T;}dJe)joWRCYFq{=#{=gi8|FoeYWB@Fl#u+D}Y^!V9TI za!E~;>r#gBd%ryROY&bX@uOVge`x3Uaxr*0Lt;3~keEom*4JEp14eM z9N){BVaO#pBL0_alyL>)07JNN5ks!66}b3Z>+c1m?h6Oyk{Amw<(jC#<=vIse~JNZ zD!zb{r*iFP2xsNGh9SHcPJDu)b}U?e-J;30Nv*!lE{yg2+0GpoEL`4b_$T*f*)C|) z??++FS)kS5ESP4#jZx0B^{@LP^=%s3xMg*aq;lt)a$WIE6`Hw#(AOW9+yZl3h@WSrYh z>ddWVUR#8%t~RZf%`zRNNw3m*$St~O07;-EjNn>&XTm(RAWmf zjLbr0oei0)l+Z)AWO|}9)W50&`||13f0^pmqKP}?1iP?XJ&jd7>^2ZT0w7tEuBhFM zNs^Hrdd~Lx!kc==5iR$VncD3gFH1AqH$=b=XiTyR(_B8~;)IG@YL5*}5#^u+&qGa~ zYSJmShqoT? zP-@ai8+=N%+C5<4i!Ouzo*3-lJgY!?;F$CR5U`+F_d7s9E9nbv9}x3w6<<9f&V^w{Lo6=Qq$%#6>@Ue40EQ=sk0oHe~sJvFv( z?}4$stecv;A_|*H+Syoxyr;W%B{jM{qO+DSO%$XD%hf2$x9Pa&72#!*8LR&50c=bX-0T17u$xY>iwoQ7^2d2TfCz zchMMasD(nvrsHNsaL}Ytd4H!|YjR?(a3<(X%n5Mg{pFfTht!P{%u%=^4m;Ye@OHz3 ztcxFcLGwiGmzS&ESWP%$l6#ev9Oq7BT4v%W>Jgq}m=GOg*Ge7-HQgWl$fEMma?SOC zS~upQXjt`tuPUUr=Ae;Y5aluYI9~45?h)r7)*R7)WEas@X0u$R6jMdahRp&$zs4|i5 z_w%i4{qE=1)^C6A$LkM1_p|j|o_ma#T^XUgk&XtBo5+_sn$RFt`z*nWr8c=l7-);P z-RuS*NL1>7nZgT42DCG21*6% zQI#{|GZb#}f3?m!*Q~C%X7!|Ngix+zcqR{QKz#G$q8&A>)9h8gSaNAr>02$X7;~K9 zp=C|y*g<+p`%;}6oD)?wG^v`nYHVhz{Mz2~TL+}Eol_GuHeJFbsj4Pk#8nnZ?HdB=sz?_4i2t*YWhat are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Cosa sono le WebApp?\n\nLe WebApp sono applicazioni web che funzionano in una finestra del browser dedicata, offrendo un'esperienza più simile a quella di un'app per i tuoi siti web preferiti.\n\nVantaggi dell'utilizzo delle WebApp:\n\n• Focus: Lavora senza le distrazioni di altre schede del browser\n• Integrazione Desktop: Accesso rapido dal menu delle applicazioni\n• Profili Isolati: Facoltativamente, ogni webapp può avere i propri cookie e impostazioni\n"]},"Don't show this again":{"*":["Non mostrare più questo."]},"Let's Start":{"*":["Iniziamo"]},"Select Browser":{"*":["Seleziona Browser"]},"Cancel":{"*":["Annulla"]},"Select":{"*":["Seleziona"]},"System Default":{"*":["Impostazione predefinita del sistema"]},"Default":{"*":["Predefinito"]},"Please select a browser.":{"*":["Seleziona un browser."]},"Error":{"*":["Errore"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Aggiungi WebApp"]},"Choose from templates":{"*":["Scegli tra i modelli"]},"URL":{"*":["URL"]},"Detect":{"*":["Rileva"]},"Detect name and icon from website":{"*":["Rileva nome e icona dal sito web"]},"Name":{"*":["Nome"]},"App Icon":{"*":["Icona dell'app"]},"Select icon for the WebApp":{"*":["Seleziona icona per il WebApp"]},"Available Icons":{"*":["Icone disponibili"]},"Category":{"*":["Categoria"]},"Application Mode":{"*":["Modalità applicazione"]},"Opens as a native window without browser interface":{"*":["Si apre come una finestra nativa senza interfaccia del browser."]},"Browser":{"*":["Browser"]},"Profile Settings":{"*":["Impostazioni del profilo"]},"Configure a separate browser profile for this webapp":{"*":["Configura un profilo browser separato per questa webapp"]},"Use separate profile":{"*":["Usa profilo separato"]},"Allows independent cookies and sessions":{"*":["Consente cookie e sessioni indipendenti"]},"Profile Name":{"*":["Nome Profilo"]},"Save":{"*":["Salva"]},"Loading...":{"*":["Caricamento..."]},"Detecting website information, please wait":{"*":["Rilevamento delle informazioni del sito web, attendere prego"]},"Please enter a URL first.":{"*":["Si prega di inserire prima un URL."]},"Please enter a name for the WebApp.":{"*":["Si prega di inserire un nome per il WebApp."]},"Please enter a URL for the WebApp.":{"*":["Si prega di inserire un URL per il WebApp."]},"Please select a browser for the WebApp.":{"*":["Seleziona un browser per il WebApp."]},"WebApps Manager":{"*":["Gestore WebApp"]},"Search WebApps":{"*":["Cerca WebApp"]},"Main Menu":{"*":["Menu Principale"]},"Refresh":{"*":["Aggiorna"]},"Export WebApps":{"*":["Esporta WebApp"]},"Import WebApps":{"*":["Importa WebApp"]},"Browse Applications Folder":{"*":["Sfoglia la cartella Applicazioni"]},"Browse Profiles Folder":{"*":["Sfoglia la cartella Profili"]},"Show Welcome Screen":{"*":["Mostra Schermata di Benvenuto"]},"Remove All WebApps":{"*":["Rimuovi tutte le WebApp"]},"About":{"*":["Informazioni"]},"Add":{"*":["Aggiungi"]},"No WebApps Found":{"*":["Nessuna WebApp trovata"]},"Add a new webapp to get started":{"*":["Aggiungi una nuova webapp per iniziare"]},"WebApp created successfully":{"*":["WebApp creato con successo"]},"WebApp updated successfully":{"*":["WebApp aggiornato con successo"]},"Browser changed to {0}":{"*":["Il browser è stato cambiato in {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Sei sicuro di voler eliminare {0}?\n\nURL: {1}\nBrowser: {2}"]},"Also delete configuration folder":{"*":["Elimina anche la cartella di configurazione."]},"Delete":{"*":["Elimina"]},"WebApp deleted successfully":{"*":["WebApp eliminato con successo"]},"REMOVE ALL":{"*":["RIMUOVI TUTTO"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Sei sicuro di voler rimuovere tutte le tue WebApp? Questa azione non può essere annullata.\n\nDigita \"{0}\" per confermare."]},"Remove All":{"*":["Rimuovi tutto"]},"All WebApps have been removed":{"*":["Tutte le WebApp sono state rimosse."]},"Failed to remove all WebApps":{"*":["Impossibile rimuovere tutte le WebApp"]},"Icon {0} of {1}":{"*":["Icona {0} di {1}"]},"WebApps exported successfully":{"*":["WebApp esportati con successo"]},"No WebApps":{"*":["Nessuna WebApp"]},"There are no WebApps to export.":{"*":["Non ci sono WebApp da esportare."]},"The selected file does not exist.":{"*":["Il file selezionato non esiste."]},"The selected file is not a valid ZIP archive.":{"*":["Il file selezionato non è un archivio ZIP valido."]},"Error importing WebApps":{"*":["Errore durante l'importazione di WebApps"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["Importati {} WebApps con successo ({} duplicati saltati)"]},"Imported {} WebApps successfully":{"*":["Importato {} WebApps con successo"]},"No":{"*":["No"]},"Yes":{"*":["Sì"]}}}} \ No newline at end of file +{"it":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Modelli"]},"Choose a Template":{"*":["Scegli un Modello"]},"Search templates...":{"*":["Cerca modelli..."]},"Search Results":{"*":["Risultati di ricerca"]},"No templates found":{"*":["Nessun modello trovato"]},"Edit WebApp":{"*":["Modifica WebApp"]},"Delete WebApp":{"*":["Elimina WebApp"]},"Welcome to WebApps Manager":{"*":["Benvenuto in WebApps Manager"]},"Don't show this again":{"*":["Non mostrare più questo."]},"Let's Start":{"*":["Iniziamo"]},"Select Browser":{"*":["Seleziona Browser"]},"Cancel":{"*":["Annulla"]},"Select":{"*":["Seleziona"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Aggiungi WebApp"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Rileva nome e icona dal sito web"]},"Name":{"*":["Nome"]},"Category":{"*":["Categoria"]},"Opens as a native window without browser interface":{"*":["Si apre come una finestra nativa senza interfaccia del browser."]},"Browser":{"*":["Browser"]},"Allows independent cookies and sessions":{"*":["Consente cookie e sessioni indipendenti"]},"Profile Name":{"*":["Nome Profilo"]},"Save":{"*":["Salva"]},"Loading...":{"*":["Caricamento..."]},"WebApps Manager":{"*":["Gestore WebApp"]},"Search WebApps":{"*":["Cerca WebApp"]},"Export WebApps":{"*":["Esporta WebApp"]},"Import WebApps":{"*":["Importa WebApp"]},"Browse Applications Folder":{"*":["Sfoglia la cartella Applicazioni"]},"Browse Profiles Folder":{"*":["Sfoglia la cartella Profili"]},"Remove All WebApps":{"*":["Rimuovi tutte le WebApp"]},"About":{"*":["Informazioni"]},"Add a new webapp to get started":{"*":["Aggiungi una nuova webapp per iniziare"]},"WebApp created successfully":{"*":["WebApp creato con successo"]},"WebApp updated successfully":{"*":["WebApp aggiornato con successo"]},"Also delete configuration folder":{"*":["Elimina anche la cartella di configurazione."]},"Delete":{"*":["Elimina"]},"WebApp deleted successfully":{"*":["WebApp eliminato con successo"]},"Remove All":{"*":["Rimuovi tutto"]},"All WebApps have been removed":{"*":["Tutte le WebApp sono state rimosse."]},"Failed to remove all WebApps":{"*":["Impossibile rimuovere tutte le WebApp"]},"WebApps exported successfully":{"*":["WebApp esportati con successo"]},"No WebApps":{"*":["Nessuna WebApp"]},"Change browser":{"*":["Cambia browser"]},"Edit":{"*":["Modifica"]},"New WebApp":{"*":["Nuova WebApp"]},"Icon":{"*":["Icona"]},"App Mode":{"*":["Modalità App"]},"Separate Profile":{"*":["Profilo separato"]},"Select Icon":{"*":["Seleziona icona"]},"Images":{"*":["Immagini"]},"ZIP files":{"*":["File ZIP"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Importati {imported}, ignorati {dups} duplicati"]},"Import failed":{"*":["Importazione fallita"]},"Export failed":{"*":["Esportazione fallita"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Questo eliminerà tutte le webapp e le loro voci nel desktop. Questa operazione non può essere annullata."]},"Browser changed":{"*":["Browser cambiato"]},"What are WebApps?":{"*":["Cosa sono le WebApps?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["Le WebApps sono applicazioni web che funzionano in una finestra del browser dedicata, offrendo un'esperienza più simile a un'app per i tuoi siti preferiti."]},"Benefits of using WebApps:":{"*":["Vantaggi dell'uso delle WebApps:"]},"Focus":{"*":["Concentrazione"]},"Work without the distractions of other browser tabs":{"*":["Lavora senza le distrazioni di altre schede del browser"]},"Desktop Integration":{"*":["Integrazione con il desktop"]},"Quick access from your application menu":{"*":["Accesso rapido dal menu delle applicazioni"]},"Isolated Profiles":{"*":["Profili isolati"]},"Each webapp can have its own cookies and settings":{"*":["Ogni webapp può avere i propri cookie e impostazioni"]},"Back":{"*":["Indietro"]},"Forward":{"*":["Avanti"]},"Reload":{"*":["Ricarica"]},"Fullscreen":{"*":["Schermo intero"]},"Enter URL…":{"*":["Inserisci URL…"]},"Zoom In":{"*":["Zoom avanti"]},"Zoom Out":{"*":["Zoom indietro"]},"Reset Zoom":{"*":["Reimposta zoom"]},"Developer Tools":{"*":["Strumenti per sviluppatori"]},"Menu":{"*":["Menu"]},"Open Link in Browser":{"*":["Apri link nel browser"]},"Download Complete":{"*":["Download completato"]},"Save File":{"*":["Salva file"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/usr/share/locale/it/LC_MESSAGES/biglinux-webapps.mo b/biglinux-webapps/usr/share/locale/it/LC_MESSAGES/biglinux-webapps.mo index 2cdba9795acf814a109c2de6396cfa8d87f0f886..f374fc2d0ea645e7b29defd9014a75eb1165e16e 100644 GIT binary patch literal 5423 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 Www9XxLcK#Ub^eIE1}RRlsQeeRxS*K; literal 6938 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 diff --git a/biglinux-webapps/usr/share/locale/ja/LC_MESSAGES/biglinux-webapps.json b/biglinux-webapps/usr/share/locale/ja/LC_MESSAGES/biglinux-webapps.json index 8e8e6ebc..a514593a 100644 --- a/biglinux-webapps/usr/share/locale/ja/LC_MESSAGES/biglinux-webapps.json +++ b/biglinux-webapps/usr/share/locale/ja/LC_MESSAGES/biglinux-webapps.json @@ -1 +1 @@ -{"ja":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["テンプレート"]},"Choose a Template":{"*":["テンプレートを選択してください。"]},"Search templates...":{"*":["テンプレートを検索中..."]},"Search templates":{"*":["テンプレートを検索"]},"Search Results":{"*":["検索結果"]},"No templates found":{"*":["テンプレートが見つかりませんでした。"]},"Browser: {0}":{"*":["ブラウザ: {0}"]},"Edit WebApp":{"*":["ウェブアプリを編集する"]},"Edit {0}":{"*":["{0}を編集"]},"Delete WebApp":{"*":["WebAppを削除する"]},"Delete {0}":{"*":["{0}を削除します"]},"Welcome to WebApps Manager":{"*":["WebAppsマネージャーへようこそ"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Webアプリとは何ですか?\n\nWebアプリは、専用のブラウザウィンドウで実行されるウェブアプリケーションで、お気に入りのウェブサイトに対してよりアプリのような体験を提供します。\n\nWebアプリを使用する利点:\n\n• 集中: 他のブラウザタブの気を散らすことなく作業できます\n• デスクトップ統合: アプリケーションメニューからの迅速なアクセス\n• 隔離されたプロファイル: オプションで、各Webアプリは独自のクッキーと設定を持つことができます\n"]},"Don't show this again":{"*":["これを再表示しない"]},"Let's Start":{"*":["始めましょう"]},"Select Browser":{"*":["ブラウザを選択してください"]},"Cancel":{"*":["キャンセル"]},"Select":{"*":["選択"]},"System Default":{"*":["システムデフォルト"]},"Default":{"*":["デフォルト"]},"Please select a browser.":{"*":["ブラウザを選択してください。"]},"Error":{"*":["エラー"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["WebAppを追加"]},"Choose from templates":{"*":["テンプレートから選択してください"]},"URL":{"*":["URL"]},"Detect":{"*":["検出"]},"Detect name and icon from website":{"*":["ウェブサイトから名前とアイコンを検出する"]},"Name":{"*":["名前"]},"App Icon":{"*":["アプリアイコン"]},"Select icon for the WebApp":{"*":["WebAppのアイコンを選択してください。"]},"Available Icons":{"*":["利用可能なアイコン"]},"Category":{"*":["カテゴリ"]},"Application Mode":{"*":["アプリケーションモード"]},"Opens as a native window without browser interface":{"*":["ブラウザインターフェースなしでネイティブウィンドウとして開きます"]},"Browser":{"*":["ブラウザ"]},"Profile Settings":{"*":["プロフィール設定"]},"Configure a separate browser profile for this webapp":{"*":["このウェブアプリのために別のブラウザプロファイルを設定します。"]},"Use separate profile":{"*":["別のプロファイルを使用する"]},"Allows independent cookies and sessions":{"*":["独立したクッキーとセッションを許可します"]},"Profile Name":{"*":["プロフィール名"]},"Save":{"*":["保存"]},"Loading...":{"*":["読み込み中..."]},"Detecting website information, please wait":{"*":["ウェブサイト情報を検出しています。お待ちください。"]},"Please enter a URL first.":{"*":["最初にURLを入力してください。"]},"Please enter a name for the WebApp.":{"*":["WebAppの名前を入力してください。"]},"Please enter a URL for the WebApp.":{"*":["WebAppのURLを入力してください。"]},"Please select a browser for the WebApp.":{"*":["WebAppのためのブラウザを選択してください。"]},"WebApps Manager":{"*":["Webアプリ管理者"]},"Search WebApps":{"*":["ウェブアプリを検索"]},"Main Menu":{"*":["メインメニュー"]},"Refresh":{"*":["更新"]},"Export WebApps":{"*":["Webアプリをエクスポート"]},"Import WebApps":{"*":["ウェブアプリをインポート"]},"Browse Applications Folder":{"*":["アプリケーションフォルダーをブラウズ"]},"Browse Profiles Folder":{"*":["プロファイルフォルダーを参照"]},"Show Welcome Screen":{"*":["ウェルカムスクリーンを表示"]},"Remove All WebApps":{"*":["すべてのWebアプリを削除"]},"About":{"*":["情報について"]},"Add":{"*":["追加"]},"No WebApps Found":{"*":["ウェブアプリが見つかりませんでした。"]},"Add a new webapp to get started":{"*":["新しいウェブアプリを追加して始めましょう。"]},"WebApp created successfully":{"*":["WebAppが正常に作成されました"]},"WebApp updated successfully":{"*":["WebAppが正常に更新されました"]},"Browser changed to {0}":{"*":["ブラウザが{0}に変更されました。"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["{0}を削除してもよろしいですか?\n\nURL: {1}\nブラウザ: {2}"]},"Also delete configuration folder":{"*":["構成フォルダーも削除してください。"]},"Delete":{"*":["削除"]},"WebApp deleted successfully":{"*":["WebAppが正常に削除されました"]},"REMOVE ALL":{"*":["すべて削除"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["すべてのWebアプリを削除してもよろしいですか?この操作は元に戻せません。\n\n確認するには「{0}」と入力してください。"]},"Remove All":{"*":["すべて削除"]},"All WebApps have been removed":{"*":["すべてのWebアプリが削除されました。"]},"Failed to remove all WebApps":{"*":["すべてのWebアプリを削除できませんでした。"]},"Icon {0} of {1}":{"*":["アイコン {0} の {1}"]},"WebApps exported successfully":{"*":["WebAppsが正常にエクスポートされました"]},"No WebApps":{"*":["ウェブアプリはありません"]},"There are no WebApps to export.":{"*":["エクスポートするWebアプリはありません。"]},"The selected file does not exist.":{"*":["選択したファイルは存在しません。"]},"The selected file is not a valid ZIP archive.":{"*":["選択したファイルは有効なZIPアーカイブではありません。"]},"Error importing WebApps":{"*":["WebAppsのインポート中にエラーが発生しました"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["{} の WebApps を正常にインポートしました ({} の重複はスキップされました)"]},"Imported {} WebApps successfully":{"*":["{} WebAppsを正常にインポートしました。"]},"No":{"*":["いいえ"]},"Yes":{"*":["はい"]}}}} \ No newline at end of file +{"ja":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["テンプレート"]},"Choose a Template":{"*":["テンプレートを選択してください。"]},"Search templates...":{"*":["テンプレートを検索中..."]},"Search Results":{"*":["検索結果"]},"No templates found":{"*":["テンプレートが見つかりませんでした。"]},"Edit WebApp":{"*":["ウェブアプリを編集する"]},"Delete WebApp":{"*":["WebAppを削除する"]},"Welcome to WebApps Manager":{"*":["WebAppsマネージャーへようこそ"]},"Don't show this again":{"*":["これを再表示しない"]},"Let's Start":{"*":["始めましょう"]},"Select Browser":{"*":["ブラウザを選択してください"]},"Cancel":{"*":["キャンセル"]},"Select":{"*":["選択"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["WebAppを追加"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["ウェブサイトから名前とアイコンを検出する"]},"Name":{"*":["名前"]},"Category":{"*":["カテゴリ"]},"Opens as a native window without browser interface":{"*":["ブラウザインターフェースなしでネイティブウィンドウとして開きます"]},"Browser":{"*":["ブラウザ"]},"Allows independent cookies and sessions":{"*":["独立したクッキーとセッションを許可します"]},"Profile Name":{"*":["プロフィール名"]},"Save":{"*":["保存"]},"Loading...":{"*":["読み込み中..."]},"WebApps Manager":{"*":["Webアプリ管理者"]},"Search WebApps":{"*":["ウェブアプリを検索"]},"Export WebApps":{"*":["Webアプリをエクスポート"]},"Import WebApps":{"*":["ウェブアプリをインポート"]},"Browse Applications Folder":{"*":["アプリケーションフォルダーをブラウズ"]},"Browse Profiles Folder":{"*":["プロファイルフォルダーを参照"]},"Remove All WebApps":{"*":["すべてのWebアプリを削除"]},"About":{"*":["情報について"]},"Add a new webapp to get started":{"*":["新しいウェブアプリを追加して始めましょう。"]},"WebApp created successfully":{"*":["WebAppが正常に作成されました"]},"WebApp updated successfully":{"*":["WebAppが正常に更新されました"]},"Also delete configuration folder":{"*":["構成フォルダーも削除してください。"]},"Delete":{"*":["削除"]},"WebApp deleted successfully":{"*":["WebAppが正常に削除されました"]},"Remove All":{"*":["すべて削除"]},"All WebApps have been removed":{"*":["すべてのWebアプリが削除されました。"]},"Failed to remove all WebApps":{"*":["すべてのWebアプリを削除できませんでした。"]},"WebApps exported successfully":{"*":["WebAppsが正常にエクスポートされました"]},"No WebApps":{"*":["ウェブアプリはありません"]},"Change browser":{"*":["ブラウザを変更"]},"Edit":{"*":["編集"]},"New WebApp":{"*":["新しい WebApp"]},"Icon":{"*":["アイコン"]},"App Mode":{"*":["アプリモード"]},"Separate Profile":{"*":["プロファイルを分ける"]},"Select Icon":{"*":["アイコンを選択"]},"Images":{"*":["画像"]},"ZIP files":{"*":["ZIPファイル"]},"Imported {imported}, skipped {dups} duplicates":{"*":["インポート済み {imported}、重複 {dups} はスキップされました"]},"Import failed":{"*":["インポートに失敗しました"]},"Export failed":{"*":["エクスポートに失敗しました"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["これによりすべてのWebAppとそのデスクトップエントリが削除されます。元に戻すことはできません。"]},"Browser changed":{"*":["ブラウザが変更されました"]},"What are WebApps?":{"*":["WebAppsとは何ですか?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebAppsは専用のブラウザウィンドウで動作するウェブアプリケーションで、お気に入りのウェブサイトをよりアプリのように利用できます。"]},"Benefits of using WebApps:":{"*":["WebAppsを使うメリット:"]},"Focus":{"*":["集中"]},"Work without the distractions of other browser tabs":{"*":["他のブラウザタブの邪魔を受けずに作業できます"]},"Desktop Integration":{"*":["デスクトップ統合"]},"Quick access from your application menu":{"*":["アプリケーションメニューからすばやくアクセス"]},"Isolated Profiles":{"*":["分離されたプロファイル"]},"Each webapp can have its own cookies and settings":{"*":["各WebAppは独自のクッキーと設定を持てます"]},"Back":{"*":["戻る"]},"Forward":{"*":["進む"]},"Reload":{"*":["再読み込み"]},"Fullscreen":{"*":["全画面"]},"Enter URL…":{"*":["URLを入力…"]},"Zoom In":{"*":["拡大"]},"Zoom Out":{"*":["縮小"]},"Reset Zoom":{"*":["ズームをリセット"]},"Developer Tools":{"*":["開発者ツール"]},"Menu":{"*":["メニュー"]},"Open Link in Browser":{"*":["ブラウザでリンクを開く"]},"Download Complete":{"*":["ダウンロード完了"]},"Save File":{"*":["ファイルを保存"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/usr/share/locale/ja/LC_MESSAGES/biglinux-webapps.mo b/biglinux-webapps/usr/share/locale/ja/LC_MESSAGES/biglinux-webapps.mo index a93921b538294ee124fa035cd1f444c6c46d8b3c..88bd24e66f2417aaa34636aec7dc3e641133bb3e 100644 GIT binary patch literal 6223 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 diff --git a/biglinux-webapps/usr/share/locale/ko/LC_MESSAGES/biglinux-webapps.json b/biglinux-webapps/usr/share/locale/ko/LC_MESSAGES/biglinux-webapps.json index e3ef6910..76f6435d 100644 --- a/biglinux-webapps/usr/share/locale/ko/LC_MESSAGES/biglinux-webapps.json +++ b/biglinux-webapps/usr/share/locale/ko/LC_MESSAGES/biglinux-webapps.json @@ -1 +1 @@ -{"ko":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["템플릿"]},"Choose a Template":{"*":["템플릿 선택"]},"Search templates...":{"*":["템플릿 검색..."]},"Search templates":{"*":["템플릿 검색"]},"Search Results":{"*":["검색 결과"]},"No templates found":{"*":["템플릿을 찾을 수 없습니다."]},"Browser: {0}":{"*":["브라우저: {0}"]},"Edit WebApp":{"*":["웹앱 편집"]},"Edit {0}":{"*":["{0} 편집"]},"Delete WebApp":{"*":["웹앱 삭제"]},"Delete {0}":{"*":["{0} 삭제"]},"Welcome to WebApps Manager":{"*":["웹앱 관리자에 오신 것을 환영합니다."]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["웹앱이란?\n\n웹앱은 전용 브라우저 창에서 실행되는 웹 애플리케이션으로, 좋아하는 웹사이트에 대해 더 앱 같은 경험을 제공합니다.\n\n웹앱 사용의 이점:\n\n• 집중: 다른 브라우저 탭의 방해 없이 작업\n• 데스크탑 통합: 애플리케이션 메뉴에서 빠른 접근\n• 격리된 프로필: 선택적으로 각 웹앱은 자체 쿠키와 설정을 가질 수 있음\n"]},"Don't show this again":{"*":["다시 표시하지 않기"]},"Let's Start":{"*":["시작하겠습니다."]},"Select Browser":{"*":["브라우저 선택"]},"Cancel":{"*":["취소"]},"Select":{"*":["선택하십시오"]},"System Default":{"*":["시스템 기본값"]},"Default":{"*":["기본값"]},"Please select a browser.":{"*":["브라우저를 선택하세요."]},"Error":{"*":["오류"]},"OK":{"*":["알겠습니다."]},"Add WebApp":{"*":["웹앱 추가"]},"Choose from templates":{"*":["템플릿에서 선택하세요."]},"URL":{"*":["URL"]},"Detect":{"*":["감지하다"]},"Detect name and icon from website":{"*":["웹사이트에서 이름과 아이콘 감지"]},"Name":{"*":["이름"]},"App Icon":{"*":["앱 아이콘"]},"Select icon for the WebApp":{"*":["웹앱 아이콘 선택"]},"Available Icons":{"*":["사용 가능한 아이콘"]},"Category":{"*":["카테고리"]},"Application Mode":{"*":["응용 프로그램 모드"]},"Opens as a native window without browser interface":{"*":["브라우저 인터페이스 없이 네이티브 윈도우로 열림"]},"Browser":{"*":["브라우저"]},"Profile Settings":{"*":["프로필 설정"]},"Configure a separate browser profile for this webapp":{"*":["이 웹앱을 위한 별도의 브라우저 프로필을 구성하세요."]},"Use separate profile":{"*":["별도의 프로필 사용"]},"Allows independent cookies and sessions":{"*":["독립적인 쿠키 및 세션을 허용합니다."]},"Profile Name":{"*":["프로필 이름"]},"Save":{"*":["저장"]},"Loading...":{"*":["로딩 중..."]},"Detecting website information, please wait":{"*":["웹사이트 정보를 감지하는 중입니다. 잠시만 기다려 주십시오."]},"Please enter a URL first.":{"*":["먼저 URL을 입력하세요."]},"Please enter a name for the WebApp.":{"*":["웹앱의 이름을 입력하세요."]},"Please enter a URL for the WebApp.":{"*":["웹앱의 URL을 입력하세요."]},"Please select a browser for the WebApp.":{"*":["웹앱을 위한 브라우저를 선택하세요."]},"WebApps Manager":{"*":["웹앱 관리자"]},"Search WebApps":{"*":["웹앱 검색"]},"Main Menu":{"*":["메인 메뉴"]},"Refresh":{"*":["새로 고침"]},"Export WebApps":{"*":["웹앱 내보내기"]},"Import WebApps":{"*":["웹앱 가져오기"]},"Browse Applications Folder":{"*":["응용 프로그램 폴더 탐색"]},"Browse Profiles Folder":{"*":["프로필 폴더 탐색"]},"Show Welcome Screen":{"*":["환영 화면 표시"]},"Remove All WebApps":{"*":["모든 웹앱 제거"]},"About":{"*":["정보"]},"Add":{"*":["추가"]},"No WebApps Found":{"*":["웹앱을 찾을 수 없습니다."]},"Add a new webapp to get started":{"*":["시작하려면 새 웹앱을 추가하세요."]},"WebApp created successfully":{"*":["웹앱이 성공적으로 생성되었습니다."]},"WebApp updated successfully":{"*":["웹앱이 성공적으로 업데이트되었습니다."]},"Browser changed to {0}":{"*":["브라우저가 {0}로 변경되었습니다."]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["{0}를 삭제하시겠습니까?\n\nURL: {1}\n브라우저: {2}"]},"Also delete configuration folder":{"*":["구성 폴더도 삭제하십시오."]},"Delete":{"*":["삭제"]},"WebApp deleted successfully":{"*":["웹앱이 성공적으로 삭제되었습니다."]},"REMOVE ALL":{"*":["모두 제거"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["모든 웹앱을 제거하시겠습니까? 이 작업은 취소할 수 없습니다.\n\n확인을 위해 \"{0}\"를 입력하세요."]},"Remove All":{"*":["모두 제거"]},"All WebApps have been removed":{"*":["모든 웹앱이 제거되었습니다."]},"Failed to remove all WebApps":{"*":["모든 웹앱을 제거하지 못했습니다."]},"Icon {0} of {1}":{"*":["아이콘 {0}의 {1}"]},"WebApps exported successfully":{"*":["웹앱이 성공적으로 내보내졌습니다."]},"No WebApps":{"*":["웹앱 없음"]},"There are no WebApps to export.":{"*":["내보낼 웹앱이 없습니다."]},"The selected file does not exist.":{"*":["선택한 파일이 존재하지 않습니다."]},"The selected file is not a valid ZIP archive.":{"*":["선택한 파일은 유효한 ZIP 아카이브가 아닙니다."]},"Error importing WebApps":{"*":["웹앱 가져오기 오류"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["{} 웹앱이 성공적으로 가져와졌습니다 ({} 중복 항목 건너뜀)"]},"Imported {} WebApps successfully":{"*":["{} 웹앱이 성공적으로 가져와졌습니다."]},"No":{"*":["No"]},"Yes":{"*":["예"]}}}} \ No newline at end of file +{"ko":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["템플릿"]},"Choose a Template":{"*":["템플릿 선택"]},"Search templates...":{"*":["템플릿 검색..."]},"Search Results":{"*":["검색 결과"]},"No templates found":{"*":["템플릿을 찾을 수 없습니다."]},"Edit WebApp":{"*":["웹앱 편집"]},"Delete WebApp":{"*":["웹앱 삭제"]},"Welcome to WebApps Manager":{"*":["웹앱 관리자에 오신 것을 환영합니다."]},"Don't show this again":{"*":["다시 표시하지 않기"]},"Let's Start":{"*":["시작하겠습니다."]},"Select Browser":{"*":["브라우저 선택"]},"Cancel":{"*":["취소"]},"Select":{"*":["선택하십시오"]},"OK":{"*":["알겠습니다."]},"Add WebApp":{"*":["웹앱 추가"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["웹사이트에서 이름과 아이콘 감지"]},"Name":{"*":["이름"]},"Category":{"*":["카테고리"]},"Opens as a native window without browser interface":{"*":["브라우저 인터페이스 없이 네이티브 윈도우로 열림"]},"Browser":{"*":["브라우저"]},"Allows independent cookies and sessions":{"*":["독립적인 쿠키 및 세션을 허용합니다."]},"Profile Name":{"*":["프로필 이름"]},"Save":{"*":["저장"]},"Loading...":{"*":["로딩 중..."]},"WebApps Manager":{"*":["웹앱 관리자"]},"Search WebApps":{"*":["웹앱 검색"]},"Export WebApps":{"*":["웹앱 내보내기"]},"Import WebApps":{"*":["웹앱 가져오기"]},"Browse Applications Folder":{"*":["응용 프로그램 폴더 탐색"]},"Browse Profiles Folder":{"*":["프로필 폴더 탐색"]},"Remove All WebApps":{"*":["모든 웹앱 제거"]},"About":{"*":["정보"]},"Add a new webapp to get started":{"*":["시작하려면 새 웹앱을 추가하세요."]},"WebApp created successfully":{"*":["웹앱이 성공적으로 생성되었습니다."]},"WebApp updated successfully":{"*":["웹앱이 성공적으로 업데이트되었습니다."]},"Also delete configuration folder":{"*":["구성 폴더도 삭제하십시오."]},"Delete":{"*":["삭제"]},"WebApp deleted successfully":{"*":["웹앱이 성공적으로 삭제되었습니다."]},"Remove All":{"*":["모두 제거"]},"All WebApps have been removed":{"*":["모든 웹앱이 제거되었습니다."]},"Failed to remove all WebApps":{"*":["모든 웹앱을 제거하지 못했습니다."]},"WebApps exported successfully":{"*":["웹앱이 성공적으로 내보내졌습니다."]},"No WebApps":{"*":["웹앱 없음"]},"Change browser":{"*":["브라우저 변경"]},"Edit":{"*":["편집"]},"New WebApp":{"*":["새 WebApp"]},"Icon":{"*":["아이콘"]},"App Mode":{"*":["앱 모드"]},"Separate Profile":{"*":["별도 프로필"]},"Select Icon":{"*":["아이콘 선택"]},"Images":{"*":["이미지"]},"ZIP files":{"*":["ZIP 파일"]},"Imported {imported}, skipped {dups} duplicates":{"*":["{imported}개 가져옴, {dups}개 중복 건너뜀"]},"Import failed":{"*":["가져오기 실패"]},"Export failed":{"*":["내보내기 실패"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["이 작업은 모든 웹앱과 해당 데스크탑 항목을 삭제합니다. 되돌릴 수 없습니다."]},"Browser changed":{"*":["브라우저가 변경되었습니다"]},"What are WebApps?":{"*":["WebApps란 무엇인가요?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps는 전용 브라우저 창에서 실행되는 웹 애플리케이션으로, 좋아하는 웹사이트를 더 앱처럼 사용할 수 있는 환경을 제공합니다."]},"Benefits of using WebApps:":{"*":["WebApps 사용의 장점:"]},"Focus":{"*":["집중"]},"Work without the distractions of other browser tabs":{"*":["다른 브라우저 탭의 방해 없이 작업하세요"]},"Desktop Integration":{"*":["데스크탑 통합"]},"Quick access from your application menu":{"*":["애플리케이션 메뉴에서 빠르게 접근 가능"]},"Isolated Profiles":{"*":["분리된 프로필"]},"Each webapp can have its own cookies and settings":{"*":["각 WebApp은 자체 쿠키와 설정을 가질 수 있습니다"]},"Back":{"*":["뒤로"]},"Forward":{"*":["앞으로"]},"Reload":{"*":["새로 고침"]},"Fullscreen":{"*":["전체 화면"]},"Enter URL…":{"*":["URL 입력…"]},"Zoom In":{"*":["확대"]},"Zoom Out":{"*":["축소"]},"Reset Zoom":{"*":["확대/축소 초기화"]},"Developer Tools":{"*":["개발자 도구"]},"Menu":{"*":["메뉴"]},"Open Link in Browser":{"*":["브라우저에서 링크 열기"]},"Download Complete":{"*":["다운로드 완료"]},"Save File":{"*":["파일 저장"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/usr/share/locale/ko/LC_MESSAGES/biglinux-webapps.mo b/biglinux-webapps/usr/share/locale/ko/LC_MESSAGES/biglinux-webapps.mo index 9c886424092723da87c2f24fe4300976c9c89744..d8f3ce7f2f0edc59fe41b252cfc8e7101dac73b8 100644 GIT binary patch literal 5693 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 literal 7257 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 Rx+zy&FTSCJiyZD{{{{Uy{Y?M> diff --git a/biglinux-webapps/usr/share/locale/nl/LC_MESSAGES/biglinux-webapps.json b/biglinux-webapps/usr/share/locale/nl/LC_MESSAGES/biglinux-webapps.json index 3cab9434..123b1f92 100644 --- a/biglinux-webapps/usr/share/locale/nl/LC_MESSAGES/biglinux-webapps.json +++ b/biglinux-webapps/usr/share/locale/nl/LC_MESSAGES/biglinux-webapps.json @@ -1 +1 @@ -{"nl":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Sjablonen"]},"Choose a Template":{"*":["Kies een sjabloon"]},"Search templates...":{"*":["Zoek sjablonen..."]},"Search templates":{"*":["Zoek sjablonen"]},"Search Results":{"*":["Zoekresultaten"]},"No templates found":{"*":["Geen sjablonen gevonden"]},"Browser: {0}":{"*":["Browser: {0}"]},"Edit WebApp":{"*":["Bewerk WebApp"]},"Edit {0}":{"*":["Bewerk {0}"]},"Delete WebApp":{"*":["Verwijder WebApp"]},"Delete {0}":{"*":["Verwijder {0}"]},"Welcome to WebApps Manager":{"*":["Welkom bij WebApps Manager"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Wat zijn WebApps?\n\nWebApps zijn webapplicaties die draaien in een speciaal browservenster, wat een meer app-achtige ervaring biedt voor je favoriete websites.\n\nVoordelen van het gebruik van WebApps:\n\n• Focus: Werken zonder de afleiding van andere browsertabs\n• Bureaubladintegratie: Snelle toegang vanuit je applicatiemenu\n• Geïsoleerde Profielen: Optioneel kan elke webapp zijn eigen cookies en instellingen hebben\n"]},"Don't show this again":{"*":["Toon dit niet opnieuw"]},"Let's Start":{"*":["Laten we beginnen"]},"Select Browser":{"*":["Selecteer Browser"]},"Cancel":{"*":["Annuleren"]},"Select":{"*":["Selecteren"]},"System Default":{"*":["Systeemstandaard"]},"Default":{"*":["Standaard"]},"Please select a browser.":{"*":["Selecteer een browser."]},"Error":{"*":["Fout"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Voeg WebApp toe"]},"Choose from templates":{"*":["Kies uit sjablonen"]},"URL":{"*":["URL"]},"Detect":{"*":["Detecteren"]},"Detect name and icon from website":{"*":["Detecteer naam en pictogram van website"]},"Name":{"*":["Naam"]},"App Icon":{"*":["App-pictogram"]},"Select icon for the WebApp":{"*":["Selecteer pictogram voor de WebApp"]},"Available Icons":{"*":["Beschikbare pictogrammen"]},"Category":{"*":["Categorie"]},"Application Mode":{"*":["Toepassingsmodus"]},"Opens as a native window without browser interface":{"*":["Opent als een native venster zonder browserinterface"]},"Browser":{"*":["Browser"]},"Profile Settings":{"*":["Profielinstellingen"]},"Configure a separate browser profile for this webapp":{"*":["Configureer een apart browserprofiel voor deze webapp."]},"Use separate profile":{"*":["Gebruik apart profiel"]},"Allows independent cookies and sessions":{"*":["Staat onafhankelijke cookies en sessies toe"]},"Profile Name":{"*":["Profielnaam"]},"Save":{"*":["Opslaan"]},"Loading...":{"*":["Laden..."]},"Detecting website information, please wait":{"*":["Website-informatie wordt gedetecteerd, een moment geduld alstublieft."]},"Please enter a URL first.":{"*":["Voer eerst een URL in."]},"Please enter a name for the WebApp.":{"*":["Voer een naam in voor de WebApp."]},"Please enter a URL for the WebApp.":{"*":["Voer een URL in voor de WebApp."]},"Please select a browser for the WebApp.":{"*":["Selecteer een browser voor de WebApp."]},"WebApps Manager":{"*":["WebApps Beheerder"]},"Search WebApps":{"*":["Zoek WebApps"]},"Main Menu":{"*":["Hoofdmenu"]},"Refresh":{"*":["Vernieuwen"]},"Export WebApps":{"*":["Exporteer WebApps"]},"Import WebApps":{"*":["WebApps importeren"]},"Browse Applications Folder":{"*":["Blader naar de map Toepassingen"]},"Browse Profiles Folder":{"*":["Blader naar Profielenmap"]},"Show Welcome Screen":{"*":["Toon Welkomstscherm"]},"Remove All WebApps":{"*":["Verwijder alle webapps"]},"About":{"*":["Over"]},"Add":{"*":["Toevoegen"]},"No WebApps Found":{"*":["Geen WebApps gevonden"]},"Add a new webapp to get started":{"*":["Voeg een nieuwe webapp toe om te beginnen"]},"WebApp created successfully":{"*":["WebApp succesvol aangemaakt"]},"WebApp updated successfully":{"*":["WebApp succesvol bijgewerkt"]},"Browser changed to {0}":{"*":["Browser gewijzigd naar {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Weet u zeker dat u {0} wilt verwijderen?\n\nURL: {1}\nBrowser: {2}"]},"Also delete configuration folder":{"*":["Verwijder ook de configuratiemap."]},"Delete":{"*":["Verwijderen"]},"WebApp deleted successfully":{"*":["WebApp succesvol verwijderd"]},"REMOVE ALL":{"*":["VERWIJDER ALLES"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Weet u zeker dat u al uw WebApps wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt.\n\nTyp \"{0}\" om te bevestigen."]},"Remove All":{"*":["Verwijder alles"]},"All WebApps have been removed":{"*":["Alle WebApps zijn verwijderd."]},"Failed to remove all WebApps":{"*":["Kon niet alle WebApps verwijderen"]},"Icon {0} of {1}":{"*":["Pictogram {0} van {1}"]},"WebApps exported successfully":{"*":["WebApps succesvol geëxporteerd"]},"No WebApps":{"*":["Geen WebApps"]},"There are no WebApps to export.":{"*":["Er zijn geen WebApps om te exporteren."]},"The selected file does not exist.":{"*":["Het geselecteerde bestand bestaat niet."]},"The selected file is not a valid ZIP archive.":{"*":["Het geselecteerde bestand is geen geldig ZIP-archief."]},"Error importing WebApps":{"*":["Fout bij het importeren van WebApps"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["{} WebApps succesvol geïmporteerd ({} duplicaten overgeslagen)"]},"Imported {} WebApps successfully":{"*":["Geïmporteerde {} WebApps succesvol"]},"No":{"*":["Geen"]},"Yes":{"*":["Ja"]}}}} \ No newline at end of file +{"nl":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Sjablonen"]},"Choose a Template":{"*":["Kies een sjabloon"]},"Search templates...":{"*":["Zoek sjablonen..."]},"Search Results":{"*":["Zoekresultaten"]},"No templates found":{"*":["Geen sjablonen gevonden"]},"Edit WebApp":{"*":["Bewerk WebApp"]},"Delete WebApp":{"*":["Verwijder WebApp"]},"Welcome to WebApps Manager":{"*":["Welkom bij WebApps Manager"]},"Don't show this again":{"*":["Toon dit niet opnieuw"]},"Let's Start":{"*":["Laten we beginnen"]},"Select Browser":{"*":["Selecteer Browser"]},"Cancel":{"*":["Annuleren"]},"Select":{"*":["Selecteren"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Voeg WebApp toe"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Detecteer naam en pictogram van website"]},"Name":{"*":["Naam"]},"Category":{"*":["Categorie"]},"Opens as a native window without browser interface":{"*":["Opent als een native venster zonder browserinterface"]},"Browser":{"*":["Browser"]},"Allows independent cookies and sessions":{"*":["Staat onafhankelijke cookies en sessies toe"]},"Profile Name":{"*":["Profielnaam"]},"Save":{"*":["Opslaan"]},"Loading...":{"*":["Laden..."]},"WebApps Manager":{"*":["WebApps Beheerder"]},"Search WebApps":{"*":["Zoek WebApps"]},"Export WebApps":{"*":["Exporteer WebApps"]},"Import WebApps":{"*":["WebApps importeren"]},"Browse Applications Folder":{"*":["Blader naar de map Toepassingen"]},"Browse Profiles Folder":{"*":["Blader naar Profielenmap"]},"Remove All WebApps":{"*":["Verwijder alle webapps"]},"About":{"*":["Over"]},"Add a new webapp to get started":{"*":["Voeg een nieuwe webapp toe om te beginnen"]},"WebApp created successfully":{"*":["WebApp succesvol aangemaakt"]},"WebApp updated successfully":{"*":["WebApp succesvol bijgewerkt"]},"Also delete configuration folder":{"*":["Verwijder ook de configuratiemap."]},"Delete":{"*":["Verwijderen"]},"WebApp deleted successfully":{"*":["WebApp succesvol verwijderd"]},"Remove All":{"*":["Verwijder alles"]},"All WebApps have been removed":{"*":["Alle WebApps zijn verwijderd."]},"Failed to remove all WebApps":{"*":["Kon niet alle WebApps verwijderen"]},"WebApps exported successfully":{"*":["WebApps succesvol geëxporteerd"]},"No WebApps":{"*":["Geen WebApps"]},"Change browser":{"*":["Browser wijzigen"]},"Edit":{"*":["Bewerken"]},"New WebApp":{"*":["Nieuwe WebApp"]},"Icon":{"*":["Pictogram"]},"App Mode":{"*":["App-modus"]},"Separate Profile":{"*":["Apart profiel"]},"Select Icon":{"*":["Pictogram selecteren"]},"Images":{"*":["Afbeeldingen"]},"ZIP files":{"*":["ZIP-bestanden"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Geïmporteerd {imported}, overgeslagen {dups} duplicaten"]},"Import failed":{"*":["Importeren mislukt"]},"Export failed":{"*":["Exporteren mislukt"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Dit verwijdert alle webapps en hun bureaubladvermeldingen. Dit kan niet ongedaan worden gemaakt."]},"Browser changed":{"*":["Browser gewijzigd"]},"What are WebApps?":{"*":["Wat zijn WebApps?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps zijn webapplicaties die draaien in een apart browservenster, wat een meer app-achtige ervaring biedt voor je favoriete websites."]},"Benefits of using WebApps:":{"*":["Voordelen van het gebruik van WebApps:"]},"Focus":{"*":["Focus"]},"Work without the distractions of other browser tabs":{"*":["Werk zonder afleiding van andere browsertabbladen"]},"Desktop Integration":{"*":["Desktopintegratie"]},"Quick access from your application menu":{"*":["Snelle toegang vanuit je applicatiemenu"]},"Isolated Profiles":{"*":["Geïsoleerde profielen"]},"Each webapp can have its own cookies and settings":{"*":["Elke webapp kan zijn eigen cookies en instellingen hebben"]},"Back":{"*":["Terug"]},"Forward":{"*":["Vooruit"]},"Reload":{"*":["Vernieuwen"]},"Fullscreen":{"*":["Volledig scherm"]},"Enter URL…":{"*":["Voer URL in…"]},"Zoom In":{"*":["Inzoomen"]},"Zoom Out":{"*":["Uitzoomen"]},"Reset Zoom":{"*":["Zoom resetten"]},"Developer Tools":{"*":["Ontwikkelaarstools"]},"Menu":{"*":["Menu"]},"Open Link in Browser":{"*":["Link openen in browser"]},"Download Complete":{"*":["Download voltooid"]},"Save File":{"*":["Bestand opslaan"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/usr/share/locale/nl/LC_MESSAGES/biglinux-webapps.mo b/biglinux-webapps/usr/share/locale/nl/LC_MESSAGES/biglinux-webapps.mo index 34eaa866a4f3239cad56278f482c0d174b349124..a13a8cec89bd7a5eeb65bae8fa32dc4957648cb8 100644 GIT binary patch literal 5365 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 are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Hva er WebApps?\n\nWebApps er nettapplikasjoner som kjører i et dedikert nettleservindu, og gir en mer app-lignende opplevelse for dine favorittnettsteder.\n\nFordeler med å bruke WebApps:\n\n• Fokus: Arbeid uten distraksjoner fra andre nettleserfaner\n• Desktop-integrasjon: Rask tilgang fra applikasjonsmenyen din\n• Isolerte profiler: Valgfritt kan hver webapp ha sine egne informasjonskapsler og innstillinger\n"]},"Don't show this again":{"*":["Ikke vis dette igjen"]},"Let's Start":{"*":["La oss begynne"]},"Select Browser":{"*":["Velg nettleser"]},"Cancel":{"*":["Avbryt"]},"Select":{"*":["Velg"]},"System Default":{"*":["Systemstandard"]},"Default":{"*":["Standard"]},"Please select a browser.":{"*":["Vennligst velg en nettleser."]},"Error":{"*":["Feil"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Legg til WebApp"]},"Choose from templates":{"*":["Velg fra maler"]},"URL":{"*":["URL"]},"Detect":{"*":["Oppdag"]},"Detect name and icon from website":{"*":["Oppdag navn og ikon fra nettsted."]},"Name":{"*":["Navn"]},"App Icon":{"*":["App-ikon"]},"Select icon for the WebApp":{"*":["Velg ikon for WebApp"]},"Available Icons":{"*":["Tilgjengelige ikoner"]},"Category":{"*":["Kategori"]},"Application Mode":{"*":["Applikasjonsmodus"]},"Opens as a native window without browser interface":{"*":["Åpnes som et native vindu uten nettlesergrensesnitt"]},"Browser":{"*":["Nettleser"]},"Profile Settings":{"*":["Profilinnstillinger"]},"Configure a separate browser profile for this webapp":{"*":["Konfigurer en egen nettleserprofil for denne nettappen"]},"Use separate profile":{"*":["Bruk separat profil"]},"Allows independent cookies and sessions":{"*":["Tillater uavhengige informasjonskapsler og økter"]},"Profile Name":{"*":["Profilnavn"]},"Save":{"*":["Lagre"]},"Loading...":{"*":["Laster..."]},"Detecting website information, please wait":{"*":["Oppdager nettstedinformasjon, vennligst vent"]},"Please enter a URL first.":{"*":["Vennligst skriv inn en URL først."]},"Please enter a name for the WebApp.":{"*":["Vennligst skriv inn et navn for WebAppen."]},"Please enter a URL for the WebApp.":{"*":["Vennligst skriv inn en URL for WebAppen."]},"Please select a browser for the WebApp.":{"*":["Vennligst velg en nettleser for WebApp."]},"WebApps Manager":{"*":["WebApps Behandler"]},"Search WebApps":{"*":["Søk WebApps"]},"Main Menu":{"*":["Hovedmeny"]},"Refresh":{"*":["Oppdater"]},"Export WebApps":{"*":["Eksporter Webapper"]},"Import WebApps":{"*":["Importer WebApps"]},"Browse Applications Folder":{"*":["Bla gjennom applikasjonsmappen"]},"Browse Profiles Folder":{"*":["Bla gjennom profiler-mappen"]},"Show Welcome Screen":{"*":["Vis visningsskjerm"]},"Remove All WebApps":{"*":["Fjern alle nettapper"]},"About":{"*":["Om"]},"Add":{"*":["Legg til"]},"No WebApps Found":{"*":["Ingen WebApps funnet"]},"Add a new webapp to get started":{"*":["Legg til en ny nettapp for å komme i gang"]},"WebApp created successfully":{"*":["WebApp opprettet vellykket"]},"WebApp updated successfully":{"*":["WebApp oppdatert med suksess"]},"Browser changed to {0}":{"*":["Nettleseren ble endret til {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Er du sikker på at du vil slette {0}?\n\nURL: {1}\nNettleser: {2}"]},"Also delete configuration folder":{"*":["Slett også konfigurasjonsmappen"]},"Delete":{"*":["Slett"]},"WebApp deleted successfully":{"*":["WebApp slettet med suksess"]},"REMOVE ALL":{"*":["FJERN ALT"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Er du sikker på at du vil fjerne alle WebAppene dine? Denne handlingen kan ikke angres.\n\nSkriv \"{0}\" for å bekrefte."]},"Remove All":{"*":["Fjern alt"]},"All WebApps have been removed":{"*":["Alle Webapper har blitt fjernet."]},"Failed to remove all WebApps":{"*":["Kunne ikke fjerne alle WebApps"]},"Icon {0} of {1}":{"*":["Ikon {0} av {1}"]},"WebApps exported successfully":{"*":["WebApps eksportert med suksess"]},"No WebApps":{"*":["Ingen WebApps"]},"There are no WebApps to export.":{"*":["Det finnes ingen WebApps å eksportere."]},"The selected file does not exist.":{"*":["Den valgte filen finnes ikke."]},"The selected file is not a valid ZIP archive.":{"*":["Den valgte filen er ikke et gyldig ZIP-arkiv."]},"Error importing WebApps":{"*":["Feil ved import av WebApps"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["Importerte {} WebApps vellykket ({} duplikater hoppet over)"]},"Imported {} WebApps successfully":{"*":["Importerte {} WebApps med suksess"]},"No":{"*":["Nei"]},"Yes":{"*":["Ja"]}}}} \ No newline at end of file +{"no":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Malteksler"]},"Choose a Template":{"*":["Velg en mal"]},"Search templates...":{"*":["Søk maler..."]},"Search Results":{"*":["Søkeresultater"]},"No templates found":{"*":["Ingen maler funnet"]},"Edit WebApp":{"*":["Rediger WebApp"]},"Delete WebApp":{"*":["Slett WebApp"]},"Welcome to WebApps Manager":{"*":["Velkommen til WebApps Manager"]},"Don't show this again":{"*":["Ikke vis dette igjen"]},"Let's Start":{"*":["La oss begynne"]},"Select Browser":{"*":["Velg nettleser"]},"Cancel":{"*":["Avbryt"]},"Select":{"*":["Velg"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Legg til WebApp"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Oppdag navn og ikon fra nettsted."]},"Name":{"*":["Navn"]},"Category":{"*":["Kategori"]},"Opens as a native window without browser interface":{"*":["Åpnes som et native vindu uten nettlesergrensesnitt"]},"Browser":{"*":["Nettleser"]},"Allows independent cookies and sessions":{"*":["Tillater uavhengige informasjonskapsler og økter"]},"Profile Name":{"*":["Profilnavn"]},"Save":{"*":["Lagre"]},"Loading...":{"*":["Laster..."]},"WebApps Manager":{"*":["WebApps Behandler"]},"Search WebApps":{"*":["Søk WebApps"]},"Export WebApps":{"*":["Eksporter Webapper"]},"Import WebApps":{"*":["Importer WebApps"]},"Browse Applications Folder":{"*":["Bla gjennom applikasjonsmappen"]},"Browse Profiles Folder":{"*":["Bla gjennom profiler-mappen"]},"Remove All WebApps":{"*":["Fjern alle nettapper"]},"About":{"*":["Om"]},"Add a new webapp to get started":{"*":["Legg til en ny nettapp for å komme i gang"]},"WebApp created successfully":{"*":["WebApp opprettet vellykket"]},"WebApp updated successfully":{"*":["WebApp oppdatert med suksess"]},"Also delete configuration folder":{"*":["Slett også konfigurasjonsmappen"]},"Delete":{"*":["Slett"]},"WebApp deleted successfully":{"*":["WebApp slettet med suksess"]},"Remove All":{"*":["Fjern alt"]},"All WebApps have been removed":{"*":["Alle Webapper har blitt fjernet."]},"Failed to remove all WebApps":{"*":["Kunne ikke fjerne alle WebApps"]},"WebApps exported successfully":{"*":["WebApps eksportert med suksess"]},"No WebApps":{"*":["Ingen WebApps"]},"Change browser":{"*":["Bytt nettleser"]},"Edit":{"*":["Rediger"]},"New WebApp":{"*":["Ny WebApp"]},"Icon":{"*":["Ikon"]},"App Mode":{"*":["App-modus"]},"Separate Profile":{"*":["Separat profil"]},"Select Icon":{"*":["Velg ikon"]},"Images":{"*":["Bilder"]},"ZIP files":{"*":["ZIP-filer"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Importert {imported}, hoppet over {dups} duplikater"]},"Import failed":{"*":["Import mislyktes"]},"Export failed":{"*":["Eksport mislyktes"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Dette vil slette alle webapper og deres skrivebordsoppføringer. Dette kan ikke angres."]},"Browser changed":{"*":["Nettleser endret"]},"What are WebApps?":{"*":["Hva er WebApps?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps er nettapplikasjoner som kjører i et dedikert nettleservindu, og gir en mer app-lignende opplevelse for dine favorittnettsteder."]},"Benefits of using WebApps:":{"*":["Fordeler med å bruke WebApps:"]},"Focus":{"*":["Fokus"]},"Work without the distractions of other browser tabs":{"*":["Arbeid uten forstyrrelser fra andre nettleserfaner"]},"Desktop Integration":{"*":["Integrasjon på skrivebordet"]},"Quick access from your application menu":{"*":["Rask tilgang fra applikasjonsmenyen din"]},"Isolated Profiles":{"*":["Isolerte profiler"]},"Each webapp can have its own cookies and settings":{"*":["Hver webapp kan ha sine egne informasjonskapsler og innstillinger"]},"Back":{"*":["Tilbake"]},"Forward":{"*":["Fremover"]},"Reload":{"*":["Last inn på nytt"]},"Fullscreen":{"*":["Fullskjerm"]},"Enter URL…":{"*":["Skriv inn URL…"]},"Zoom In":{"*":["Zoom inn"]},"Zoom Out":{"*":["Zoom ut"]},"Reset Zoom":{"*":["Tilbakestill zoom"]},"Developer Tools":{"*":["Utviklerverktøy"]},"Menu":{"*":["Meny"]},"Open Link in Browser":{"*":["Åpne lenke i nettleser"]},"Download Complete":{"*":["Nedlasting fullført"]},"Save File":{"*":["Lagre fil"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/usr/share/locale/no/LC_MESSAGES/biglinux-webapps.mo b/biglinux-webapps/usr/share/locale/no/LC_MESSAGES/biglinux-webapps.mo index a281b01ed91630855147a620596acde1b4721aa7..8fb4c30cf3f1b75d5e68e0cd266cea89e3ad978e 100644 GIT binary patch literal 5280 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 literal 6719 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 w7ngn&HEUm~Mx^3cA5!IHW_PWhat are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Czym są WebAppsy?\n\nWebAppsy to aplikacje internetowe, które działają w dedykowanym oknie przeglądarki, zapewniając bardziej aplikacyjne doświadczenie dla ulubionych stron internetowych.\n\nZalety korzystania z WebAppów:\n\n• Skupienie: Pracuj bez rozpraszania przez inne karty przeglądarki\n• Integracja z pulpitem: Szybki dostęp z menu aplikacji\n• Izolowane profile: Opcjonalnie, każda webapp może mieć własne pliki cookie i ustawienia\n"]},"Don't show this again":{"*":["Nie pokazuj tego ponownie"]},"Let's Start":{"*":["Zacznijmy"]},"Select Browser":{"*":["Wybierz przeglądarkę"]},"Cancel":{"*":["Anuluj"]},"Select":{"*":["Wybierz"]},"System Default":{"*":["Domyślne ustawienia systemu"]},"Default":{"*":["Domyślny"]},"Please select a browser.":{"*":["Proszę wybrać przeglądarkę."]},"Error":{"*":["Błąd"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Dodaj WebApp"]},"Choose from templates":{"*":["Wybierz z szablonów"]},"URL":{"*":["URL"]},"Detect":{"*":["Wykryj"]},"Detect name and icon from website":{"*":["Wykryj nazwę i ikonę ze strony internetowej."]},"Name":{"*":["Nazwa"]},"App Icon":{"*":["Ikona aplikacji"]},"Select icon for the WebApp":{"*":["Wybierz ikonę dla aplikacji internetowej"]},"Available Icons":{"*":["Dostępne ikony"]},"Category":{"*":["Kategoria"]},"Application Mode":{"*":["Tryb aplikacji"]},"Opens as a native window without browser interface":{"*":["Otwiera się jako natywne okno bez interfejsu przeglądarki."]},"Browser":{"*":["Przeglądarka"]},"Profile Settings":{"*":["Ustawienia profilu"]},"Configure a separate browser profile for this webapp":{"*":["Skonfiguruj osobny profil przeglądarki dla tej aplikacji internetowej."]},"Use separate profile":{"*":["Użyj oddzielnego profilu"]},"Allows independent cookies and sessions":{"*":["Zezwala na niezależne pliki cookie i sesje"]},"Profile Name":{"*":["Nazwa profilu"]},"Save":{"*":["Zapisz"]},"Loading...":{"*":["Ładowanie..."]},"Detecting website information, please wait":{"*":["Wykrywanie informacji o stronie internetowej, proszę czekać"]},"Please enter a URL first.":{"*":["Proszę najpierw wprowadzić adres URL."]},"Please enter a name for the WebApp.":{"*":["Proszę wpisać nazwę dla aplikacji internetowej."]},"Please enter a URL for the WebApp.":{"*":["Proszę wprowadzić adres URL dla aplikacji internetowej."]},"Please select a browser for the WebApp.":{"*":["Proszę wybrać przeglądarkę dla aplikacji internetowej."]},"WebApps Manager":{"*":["Menadżer Aplikacji Webowych"]},"Search WebApps":{"*":["Szukaj aplikacji internetowych"]},"Main Menu":{"*":["Główne menu"]},"Refresh":{"*":["Odśwież"]},"Export WebApps":{"*":["Eksportuj Aplikacje Webowe"]},"Import WebApps":{"*":["Importuj aplikacje internetowe"]},"Browse Applications Folder":{"*":["Przeglądaj folder aplikacji"]},"Browse Profiles Folder":{"*":["Przeglądaj folder profili"]},"Show Welcome Screen":{"*":["Pokaż ekran powitalny"]},"Remove All WebApps":{"*":["Usuń wszystkie aplikacje internetowe"]},"About":{"*":["O programie"]},"Add":{"*":["Dodaj"]},"No WebApps Found":{"*":["Nie znaleziono aplikacji internetowych"]},"Add a new webapp to get started":{"*":["Dodaj nową aplikację internetową, aby rozpocząć."]},"WebApp created successfully":{"*":["Aplikacja internetowa została pomyślnie utworzona."]},"WebApp updated successfully":{"*":["WebApp zaktualizowany pomyślnie"]},"Browser changed to {0}":{"*":["Przeglądarka zmieniona na {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Czy na pewno chcesz usunąć {0}?\n\nURL: {1}\nPrzeglądarka: {2}"]},"Also delete configuration folder":{"*":["Również usuń folder konfiguracyjny."]},"Delete":{"*":["Usuń"]},"WebApp deleted successfully":{"*":["WebApp została pomyślnie usunięta."]},"REMOVE ALL":{"*":["USUŃ WSZYSTKO"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Czy na pewno chcesz usunąć wszystkie swoje aplikacje internetowe? Tej akcji nie można cofnąć.\n\nWpisz \"{0}\", aby potwierdzić."]},"Remove All":{"*":["Usuń wszystko"]},"All WebApps have been removed":{"*":["Wszystkie aplikacje internetowe zostały usunięte."]},"Failed to remove all WebApps":{"*":["Nie udało się usunąć wszystkich aplikacji internetowych."]},"Icon {0} of {1}":{"*":["Ikona {0} z {1}"]},"WebApps exported successfully":{"*":["WebApps zostały pomyślnie wyeksportowane."]},"No WebApps":{"*":["Brak aplikacji internetowych"]},"There are no WebApps to export.":{"*":["Nie ma aplikacji internetowych do wyeksportowania."]},"The selected file does not exist.":{"*":["Wybrany plik nie istnieje."]},"The selected file is not a valid ZIP archive.":{"*":["Wybrany plik nie jest prawidłowym archiwum ZIP."]},"Error importing WebApps":{"*":["Błąd importowania aplikacji internetowych"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["Zaimportowano {} aplikacji internetowych pomyślnie ({} duplikatów pominięto)"]},"Imported {} WebApps successfully":{"*":["Zaimportowano {} aplikacje internetowe pomyślnie."]},"No":{"*":["Nie"]},"Yes":{"*":["Tak"]}}}} \ No newline at end of file +{"pl":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Szablony"]},"Choose a Template":{"*":["Wybierz szablon"]},"Search templates...":{"*":["Szukaj szablonów..."]},"Search Results":{"*":["Wyniki wyszukiwania"]},"No templates found":{"*":["Nie znaleziono szablonów."]},"Edit WebApp":{"*":["Edytuj aplikację internetową"]},"Delete WebApp":{"*":["Usuń aplikację internetową"]},"Welcome to WebApps Manager":{"*":["Witamy w Menedżerze Aplikacji Webowych"]},"Don't show this again":{"*":["Nie pokazuj tego ponownie"]},"Let's Start":{"*":["Zacznijmy"]},"Select Browser":{"*":["Wybierz przeglądarkę"]},"Cancel":{"*":["Anuluj"]},"Select":{"*":["Wybierz"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Dodaj WebApp"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Wykryj nazwę i ikonę ze strony internetowej."]},"Name":{"*":["Nazwa"]},"Category":{"*":["Kategoria"]},"Opens as a native window without browser interface":{"*":["Otwiera się jako natywne okno bez interfejsu przeglądarki."]},"Browser":{"*":["Przeglądarka"]},"Allows independent cookies and sessions":{"*":["Zezwala na niezależne pliki cookie i sesje"]},"Profile Name":{"*":["Nazwa profilu"]},"Save":{"*":["Zapisz"]},"Loading...":{"*":["Ładowanie..."]},"WebApps Manager":{"*":["Menadżer Aplikacji Webowych"]},"Search WebApps":{"*":["Szukaj aplikacji internetowych"]},"Export WebApps":{"*":["Eksportuj Aplikacje Webowe"]},"Import WebApps":{"*":["Importuj aplikacje internetowe"]},"Browse Applications Folder":{"*":["Przeglądaj folder aplikacji"]},"Browse Profiles Folder":{"*":["Przeglądaj folder profili"]},"Remove All WebApps":{"*":["Usuń wszystkie aplikacje internetowe"]},"About":{"*":["O programie"]},"Add a new webapp to get started":{"*":["Dodaj nową aplikację internetową, aby rozpocząć."]},"WebApp created successfully":{"*":["Aplikacja internetowa została pomyślnie utworzona."]},"WebApp updated successfully":{"*":["WebApp zaktualizowany pomyślnie"]},"Also delete configuration folder":{"*":["Również usuń folder konfiguracyjny."]},"Delete":{"*":["Usuń"]},"WebApp deleted successfully":{"*":["WebApp została pomyślnie usunięta."]},"Remove All":{"*":["Usuń wszystko"]},"All WebApps have been removed":{"*":["Wszystkie aplikacje internetowe zostały usunięte."]},"Failed to remove all WebApps":{"*":["Nie udało się usunąć wszystkich aplikacji internetowych."]},"WebApps exported successfully":{"*":["WebApps zostały pomyślnie wyeksportowane."]},"No WebApps":{"*":["Brak aplikacji internetowych"]},"Change browser":{"*":["Zmień przeglądarkę"]},"Edit":{"*":["Edytuj"]},"New WebApp":{"*":["Nowa WebApp"]},"Icon":{"*":["Ikona"]},"App Mode":{"*":["Tryb aplikacji"]},"Separate Profile":{"*":["Oddzielny profil"]},"Select Icon":{"*":["Wybierz ikonę"]},"Images":{"*":["Obrazy"]},"ZIP files":{"*":["Pliki ZIP"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Zaimportowano {imported}, pominięto {dups} duplikaty"]},"Import failed":{"*":["Import nie powiódł się"]},"Export failed":{"*":["Eksport nie powiódł się"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["To usunie wszystkie webappsy i ich wpisy na pulpicie. Operacji nie można cofnąć."]},"Browser changed":{"*":["Przeglądarka zmieniona"]},"What are WebApps?":{"*":["Czym są WebApps?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps to aplikacje internetowe działające w dedykowanym oknie przeglądarki, zapewniające bardziej aplikacyjne doświadczenie dla Twoich ulubionych stron internetowych."]},"Benefits of using WebApps:":{"*":["Korzyści z korzystania z WebApps:"]},"Focus":{"*":["Skupienie"]},"Work without the distractions of other browser tabs":{"*":["Pracuj bez rozpraszania przez inne karty przeglądarki"]},"Desktop Integration":{"*":["Integracja z pulpitem"]},"Quick access from your application menu":{"*":["Szybki dostęp z menu aplikacji"]},"Isolated Profiles":{"*":["Izolowane profile"]},"Each webapp can have its own cookies and settings":{"*":["Każdy webapp może mieć własne ciasteczka i ustawienia"]},"Back":{"*":["Wstecz"]},"Forward":{"*":["Dalej"]},"Reload":{"*":["Odśwież"]},"Fullscreen":{"*":["Pełny ekran"]},"Enter URL…":{"*":["Wprowadź URL…"]},"Zoom In":{"*":["Powiększ"]},"Zoom Out":{"*":["Pomniejsz"]},"Reset Zoom":{"*":["Resetuj powiększenie"]},"Developer Tools":{"*":["Narzędzia deweloperskie"]},"Menu":{"*":["Menu"]},"Open Link in Browser":{"*":["Otwórz link w przeglądarce"]},"Download Complete":{"*":["Pobieranie zakończone"]},"Save File":{"*":["Zapisz plik"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/usr/share/locale/pl/LC_MESSAGES/biglinux-webapps.mo b/biglinux-webapps/usr/share/locale/pl/LC_MESSAGES/biglinux-webapps.mo index f776ee5ddae8e4445fa2f64b1138c4538c3be4b4..d2d21aee7234ce37e243f9a35fb7c62d24680a54 100644 GIT binary patch literal 5680 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 literal 7323 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 are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["O que são WebApps?\n\nWebApps são aplicações web que rodam em uma janela de navegador dedicada, proporcionando uma experiência mais semelhante a um aplicativo para seus sites favoritos.\n\nBenefícios de usar WebApps:\n\n• Foco: Trabalhe sem as distrações de outras abas do navegador\n• Integração com a Área de Trabalho: Acesso rápido a partir do menu de aplicativos\n• Perfis Isolados: Opcionalmente, cada webapp pode ter seus próprios cookies e configurações\n"]},"Don't show this again":{"*":["Não mostrar isso novamente"]},"Let's Start":{"*":["Vamos começar"]},"Select Browser":{"*":["Selecionar Navegador"]},"Cancel":{"*":["Cancelar"]},"Select":{"*":["Selecionar"]},"System Default":{"*":["Padrão do Sistema"]},"Default":{"*":["Padrão"]},"Please select a browser.":{"*":["Por favor, selecione um navegador."]},"Error":{"*":["Erro"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Adicionar WebApp"]},"Choose from templates":{"*":["Escolha entre modelos"]},"URL":{"*":["URL"]},"Detect":{"*":["Detectar"]},"Detect name and icon from website":{"*":["Detectar nome e ícone do site"]},"Name":{"*":["Nome"]},"App Icon":{"*":["Ícone do Aplicativo"]},"Select icon for the WebApp":{"*":["Selecione o ícone para o WebApp"]},"Available Icons":{"*":["Ícones Disponíveis"]},"Category":{"*":["Categoria"]},"Application Mode":{"*":["Modo de Aplicativo"]},"Opens as a native window without browser interface":{"*":["Abre como uma janela nativa sem interface de navegador."]},"Browser":{"*":["Navegador"]},"Profile Settings":{"*":["Configurações de Perfil"]},"Configure a separate browser profile for this webapp":{"*":["Configure um perfil de navegador separado para este aplicativo web."]},"Use separate profile":{"*":["Use perfil separado"]},"Allows independent cookies and sessions":{"*":["Permite cookies e sessões independentes"]},"Profile Name":{"*":["Nome do Perfil"]},"Save":{"*":["Salvar"]},"Loading...":{"*":["Carregando..."]},"Detecting website information, please wait":{"*":["Detectando informações do site, por favor aguarde"]},"Please enter a URL first.":{"*":["Por favor, insira uma URL primeiro."]},"Please enter a name for the WebApp.":{"*":["Por favor, insira um nome para o WebApp."]},"Please enter a URL for the WebApp.":{"*":["Por favor, insira uma URL para o WebApp."]},"Please select a browser for the WebApp.":{"*":["Por favor, selecione um navegador para o WebApp."]},"WebApps Manager":{"*":["Gerenciador de WebApps"]},"Search WebApps":{"*":["Pesquisar WebApps"]},"Main Menu":{"*":["Menu Principal"]},"Refresh":{"*":["Atualizar"]},"Export WebApps":{"*":["Exportar WebApps"]},"Import WebApps":{"*":["Importar WebApps"]},"Browse Applications Folder":{"*":["Navegar na Pasta de Aplicativos"]},"Browse Profiles Folder":{"*":["Navegar na Pasta de Perfis"]},"Show Welcome Screen":{"*":["Mostrar Tela de Boas-Vindas"]},"Remove All WebApps":{"*":["Remover Todos os WebApps"]},"About":{"*":["Sobre"]},"Add":{"*":["Adicionar"]},"No WebApps Found":{"*":["Nenhum WebApp encontrado"]},"Add a new webapp to get started":{"*":["Adicione um novo aplicativo web para começar."]},"WebApp created successfully":{"*":["WebApp criado com sucesso"]},"WebApp updated successfully":{"*":["WebApp atualizado com sucesso"]},"Browser changed to {0}":{"*":["Navegador alterado para {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Você tem certeza de que deseja excluir {0}?\n\nURL: {1}\nNavegador: {2}"]},"Also delete configuration folder":{"*":["Também exclua a pasta de configuração."]},"Delete":{"*":["Excluir"]},"WebApp deleted successfully":{"*":["WebApp excluído com sucesso"]},"REMOVE ALL":{"*":["REMOVER TUDO"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Você tem certeza de que deseja remover todos os seus WebApps? Esta ação não pode ser desfeita.\n\nDigite \"{0}\" para confirmar."]},"Remove All":{"*":["Remover Tudo"]},"All WebApps have been removed":{"*":["Todos os WebApps foram removidos."]},"Failed to remove all WebApps":{"*":["Falha ao remover todos os WebApps"]},"Icon {0} of {1}":{"*":["Ícone {0} de {1}"]},"WebApps exported successfully":{"*":["WebApps exportados com sucesso"]},"No WebApps":{"*":["Sem WebApps"]},"There are no WebApps to export.":{"*":["Não há WebApps para exportar."]},"The selected file does not exist.":{"*":["O arquivo selecionado não existe."]},"The selected file is not a valid ZIP archive.":{"*":["O arquivo selecionado não é um arquivo ZIP válido."]},"Error importing WebApps":{"*":["Erro ao importar WebApps"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["WebApps importados com sucesso ({} duplicatas ignoradas)"]},"Imported {} WebApps successfully":{"*":["WebApps {} importados com sucesso"]},"No":{"*":["Não"]},"Yes":{"*":["Sim"]}}}} \ No newline at end of file +{"pt":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Modelos"]},"Choose a Template":{"*":["Escolha um Modelo"]},"Search templates...":{"*":["Pesquisar modelos..."]},"Search Results":{"*":["Resultados da Pesquisa"]},"No templates found":{"*":["Nenhum modelo encontrado"]},"Edit WebApp":{"*":["Editar WebApp"]},"Delete WebApp":{"*":["Excluir WebApp"]},"Welcome to WebApps Manager":{"*":["Bem-vindo ao Gerenciador de WebApps"]},"Don't show this again":{"*":["Não mostrar isso novamente"]},"Let's Start":{"*":["Vamos começar"]},"Select Browser":{"*":["Selecionar Navegador"]},"Cancel":{"*":["Cancelar"]},"Select":{"*":["Selecionar"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Adicionar WebApp"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Detectar nome e ícone do site"]},"Name":{"*":["Nome"]},"Category":{"*":["Categoria"]},"Opens as a native window without browser interface":{"*":["Abre como uma janela nativa sem interface de navegador."]},"Browser":{"*":["Navegador"]},"Allows independent cookies and sessions":{"*":["Permite cookies e sessões independentes"]},"Profile Name":{"*":["Nome do Perfil"]},"Save":{"*":["Salvar"]},"Loading...":{"*":["Carregando..."]},"WebApps Manager":{"*":["Gerenciador de WebApps"]},"Search WebApps":{"*":["Pesquisar WebApps"]},"Export WebApps":{"*":["Exportar WebApps"]},"Import WebApps":{"*":["Importar WebApps"]},"Browse Applications Folder":{"*":["Navegar na Pasta de Aplicativos"]},"Browse Profiles Folder":{"*":["Navegar na Pasta de Perfis"]},"Remove All WebApps":{"*":["Remover Todos os WebApps"]},"About":{"*":["Sobre"]},"Add a new webapp to get started":{"*":["Adicione um novo aplicativo web para começar."]},"WebApp created successfully":{"*":["WebApp criado com sucesso"]},"WebApp updated successfully":{"*":["WebApp atualizado com sucesso"]},"Also delete configuration folder":{"*":["Também exclua a pasta de configuração."]},"Delete":{"*":["Excluir"]},"WebApp deleted successfully":{"*":["WebApp excluído com sucesso"]},"Remove All":{"*":["Remover Tudo"]},"All WebApps have been removed":{"*":["Todos os WebApps foram removidos."]},"Failed to remove all WebApps":{"*":["Falha ao remover todos os WebApps"]},"WebApps exported successfully":{"*":["WebApps exportados com sucesso"]},"No WebApps":{"*":["Sem WebApps"]},"Change browser":{"*":["Alterar navegador"]},"Edit":{"*":["Editar"]},"New WebApp":{"*":["Novo WebApp"]},"Icon":{"*":["Ícone"]},"App Mode":{"*":["Modo do App"]},"Separate Profile":{"*":["Perfil separado"]},"Select Icon":{"*":["Selecionar ícone"]},"Images":{"*":["Imagens"]},"ZIP files":{"*":["Arquivos ZIP"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Importados {imported}, duplicatas {dups} ignoradas"]},"Import failed":{"*":["Falha na importação"]},"Export failed":{"*":["Falha na exportação"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Isso irá deletar todos os webapps e suas entradas na área de trabalho. Esta ação não pode ser desfeita."]},"Browser changed":{"*":["Navegador alterado"]},"What are WebApps?":{"*":["O que são WebApps?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps são aplicações web que rodam em uma janela de navegador dedicada, proporcionando uma experiência mais parecida com um aplicativo para seus sites favoritos."]},"Benefits of using WebApps:":{"*":["Benefícios de usar WebApps:"]},"Focus":{"*":["Foco"]},"Work without the distractions of other browser tabs":{"*":["Trabalhe sem as distrações de outras abas do navegador"]},"Desktop Integration":{"*":["Integração com a Área de Trabalho"]},"Quick access from your application menu":{"*":["Acesso rápido pelo menu de aplicativos"]},"Isolated Profiles":{"*":["Perfis Isolados"]},"Each webapp can have its own cookies and settings":{"*":["Cada webapp pode ter seus próprios cookies e configurações"]},"Back":{"*":["Voltar"]},"Forward":{"*":["Avançar"]},"Reload":{"*":["Recarregar"]},"Fullscreen":{"*":["Tela cheia"]},"Enter URL…":{"*":["Digite o URL…"]},"Zoom In":{"*":["Aumentar Zoom"]},"Zoom Out":{"*":["Diminuir Zoom"]},"Reset Zoom":{"*":["Redefinir Zoom"]},"Developer Tools":{"*":["Ferramentas do Desenvolvedor"]},"Menu":{"*":["Menu"]},"Open Link in Browser":{"*":["Abrir Link no Navegador"]},"Download Complete":{"*":["Download Concluído"]},"Save File":{"*":["Salvar Arquivo"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/usr/share/locale/pt/LC_MESSAGES/biglinux-webapps.mo b/biglinux-webapps/usr/share/locale/pt/LC_MESSAGES/biglinux-webapps.mo index 59c106bc42f3b7631cb4a01948bc84ee5548d172..b1cdf5f4fa8310e1a4c30dffab813b20ccc7f062 100644 GIT binary patch literal 5476 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 CC&04+ literal 6995 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 diff --git a/biglinux-webapps/usr/share/locale/ro/LC_MESSAGES/biglinux-webapps.json b/biglinux-webapps/usr/share/locale/ro/LC_MESSAGES/biglinux-webapps.json index 64a3e142..800cabd2 100644 --- a/biglinux-webapps/usr/share/locale/ro/LC_MESSAGES/biglinux-webapps.json +++ b/biglinux-webapps/usr/share/locale/ro/LC_MESSAGES/biglinux-webapps.json @@ -1 +1 @@ -{"ro":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Șabloane"]},"Choose a Template":{"*":["Alegeți un șablon"]},"Search templates...":{"*":["Caută șabloane..."]},"Search templates":{"*":["Caută șabloane"]},"Search Results":{"*":["Rezultatele căutării"]},"No templates found":{"*":["Nu au fost găsite șabloane."]},"Browser: {0}":{"*":["Browser: {0}"]},"Edit WebApp":{"*":["Editare WebApp"]},"Edit {0}":{"*":["Editează {0}"]},"Delete WebApp":{"*":["Șterge aplicația web"]},"Delete {0}":{"*":["Șterge {0}"]},"Welcome to WebApps Manager":{"*":["Bine ați venit la Managerul de WebApps"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Ce sunt WebApps?\n\nWebApps sunt aplicații web care rulează într-o fereastră de browser dedicată, oferind o experiență mai asemănătoare cu cea a aplicațiilor pentru site-urile tale preferate.\n\nBeneficiile utilizării WebApps:\n\n• Concentrare: Lucrează fără distragerile altor tab-uri de browser\n• Integrare pe desktop: Acces rapid din meniul aplicației tale\n• Profiluri izolate: Opțional, fiecare webapp poate avea propriile sale cookie-uri și setări\n"]},"Don't show this again":{"*":["Nu mai arăta asta."]},"Let's Start":{"*":["Să începem"]},"Select Browser":{"*":["Selectați browserul"]},"Cancel":{"*":["Anulează"]},"Select":{"*":["Selectați"]},"System Default":{"*":["Implicit sistem"]},"Default":{"*":["Implicit"]},"Please select a browser.":{"*":["Vă rugăm să selectați un browser."]},"Error":{"*":["Eroare"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Adaugă WebApp"]},"Choose from templates":{"*":["Alege din șabloane"]},"URL":{"*":["URL"]},"Detect":{"*":["Detecta"]},"Detect name and icon from website":{"*":["Detectați numele și pictograma de pe site."]},"Name":{"*":["Nume"]},"App Icon":{"*":["Pictograma aplicație"]},"Select icon for the WebApp":{"*":["Selectați pictograma pentru WebApp"]},"Available Icons":{"*":["Iconi disponibile"]},"Category":{"*":["Categorie"]},"Application Mode":{"*":["Mod de aplicație"]},"Opens as a native window without browser interface":{"*":["Se deschide ca o fereastră nativă fără interfață de browser."]},"Browser":{"*":["Browser"]},"Profile Settings":{"*":["Setări profil"]},"Configure a separate browser profile for this webapp":{"*":["Configurează un profil de browser separat pentru această aplicație web."]},"Use separate profile":{"*":["Utilizați un profil separat"]},"Allows independent cookies and sessions":{"*":["Permite cookie-uri și sesiuni independente"]},"Profile Name":{"*":["Nume profil"]},"Save":{"*":["Salvează"]},"Loading...":{"*":["Se încarcă..."]},"Detecting website information, please wait":{"*":["Detectarea informațiilor site-ului, vă rugăm să așteptați"]},"Please enter a URL first.":{"*":["Vă rugăm să introduceți mai întâi un URL."]},"Please enter a name for the WebApp.":{"*":["Vă rugăm să introduceți un nume pentru WebApp."]},"Please enter a URL for the WebApp.":{"*":["Vă rugăm să introduceți un URL pentru WebApp."]},"Please select a browser for the WebApp.":{"*":["Vă rugăm să selectați un browser pentru WebApp."]},"WebApps Manager":{"*":["Manager aplicații web"]},"Search WebApps":{"*":["Caută WebApps"]},"Main Menu":{"*":["Meniu Principal"]},"Refresh":{"*":["Actualizează"]},"Export WebApps":{"*":["Exportați aplicațiile web"]},"Import WebApps":{"*":["Importați aplicații web"]},"Browse Applications Folder":{"*":["Răsfoiește folderul Aplicații"]},"Browse Profiles Folder":{"*":["Răsfoiește folderul Profiluri"]},"Show Welcome Screen":{"*":["Afișează Ecranul de Bun Venit"]},"Remove All WebApps":{"*":["Elimină toate aplicațiile web"]},"About":{"*":["Despre"]},"Add":{"*":["Adaugă"]},"No WebApps Found":{"*":["Nu au fost găsite aplicații web."]},"Add a new webapp to get started":{"*":["Adăugați o nouă aplicație web pentru a începe."]},"WebApp created successfully":{"*":["WebApp creat cu succes"]},"WebApp updated successfully":{"*":["WebApp actualizat cu succes"]},"Browser changed to {0}":{"*":["Browserul a fost schimbat în {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Ești sigur că vrei să ștergi {0}?\n\nURL: {1}\nBrowser: {2}"]},"Also delete configuration folder":{"*":["Dezinstalează și folderul de configurare."]},"Delete":{"*":["Șterge"]},"WebApp deleted successfully":{"*":["WebApp șters cu succes"]},"REMOVE ALL":{"*":["ELIMINARE TOTUL"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Ești sigur că vrei să ștergi toate aplicațiile tale web? Această acțiune nu poate fi anulată.\n\nScrie \"{0}\" pentru a confirma."]},"Remove All":{"*":["Elimină tot"]},"All WebApps have been removed":{"*":["Toate aplicațiile web au fost eliminate."]},"Failed to remove all WebApps":{"*":["Nu s-au putut elimina toate aplicațiile web."]},"Icon {0} of {1}":{"*":["Icon {0} din {1}"]},"WebApps exported successfully":{"*":["WebApps exportate cu succes"]},"No WebApps":{"*":["Fără aplicații web"]},"There are no WebApps to export.":{"*":["Nu există WebApps de exportat."]},"The selected file does not exist.":{"*":["Fișierul selectat nu există."]},"The selected file is not a valid ZIP archive.":{"*":["Fișierul selectat nu este un arhivă ZIP validă."]},"Error importing WebApps":{"*":["Eroare la importarea WebApps"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["WebApps importate cu succes ({} duplicate omise)"]},"Imported {} WebApps successfully":{"*":["WebApps {} importate cu succes"]},"No":{"*":["Nu"]},"Yes":{"*":["Da"]}}}} \ No newline at end of file +{"ro":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Șabloane"]},"Choose a Template":{"*":["Alegeți un șablon"]},"Search templates...":{"*":["Caută șabloane..."]},"Search Results":{"*":["Rezultatele căutării"]},"No templates found":{"*":["Nu au fost găsite șabloane."]},"Edit WebApp":{"*":["Editare WebApp"]},"Delete WebApp":{"*":["Șterge aplicația web"]},"Welcome to WebApps Manager":{"*":["Bine ați venit la Managerul de WebApps"]},"Don't show this again":{"*":["Nu mai arăta asta."]},"Let's Start":{"*":["Să începem"]},"Select Browser":{"*":["Selectați browserul"]},"Cancel":{"*":["Anulează"]},"Select":{"*":["Selectați"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Adaugă WebApp"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Detectați numele și pictograma de pe site."]},"Name":{"*":["Nume"]},"Category":{"*":["Categorie"]},"Opens as a native window without browser interface":{"*":["Se deschide ca o fereastră nativă fără interfață de browser."]},"Browser":{"*":["Browser"]},"Allows independent cookies and sessions":{"*":["Permite cookie-uri și sesiuni independente"]},"Profile Name":{"*":["Nume profil"]},"Save":{"*":["Salvează"]},"Loading...":{"*":["Se încarcă..."]},"WebApps Manager":{"*":["Manager aplicații web"]},"Search WebApps":{"*":["Caută WebApps"]},"Export WebApps":{"*":["Exportați aplicațiile web"]},"Import WebApps":{"*":["Importați aplicații web"]},"Browse Applications Folder":{"*":["Răsfoiește folderul Aplicații"]},"Browse Profiles Folder":{"*":["Răsfoiește folderul Profiluri"]},"Remove All WebApps":{"*":["Elimină toate aplicațiile web"]},"About":{"*":["Despre"]},"Add a new webapp to get started":{"*":["Adăugați o nouă aplicație web pentru a începe."]},"WebApp created successfully":{"*":["WebApp creat cu succes"]},"WebApp updated successfully":{"*":["WebApp actualizat cu succes"]},"Also delete configuration folder":{"*":["Dezinstalează și folderul de configurare."]},"Delete":{"*":["Șterge"]},"WebApp deleted successfully":{"*":["WebApp șters cu succes"]},"Remove All":{"*":["Elimină tot"]},"All WebApps have been removed":{"*":["Toate aplicațiile web au fost eliminate."]},"Failed to remove all WebApps":{"*":["Nu s-au putut elimina toate aplicațiile web."]},"WebApps exported successfully":{"*":["WebApps exportate cu succes"]},"No WebApps":{"*":["Fără aplicații web"]},"Change browser":{"*":["Schimbă browser"]},"Edit":{"*":["Editează"]},"New WebApp":{"*":["WebApp nou"]},"Icon":{"*":["Pictogramă"]},"App Mode":{"*":["Modul aplicație"]},"Separate Profile":{"*":["Profil separat"]},"Select Icon":{"*":["Selectează pictogramă"]},"Images":{"*":["Imagini"]},"ZIP files":{"*":["Fișiere ZIP"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Importate {imported}, sărite {dups} duplicate"]},"Import failed":{"*":["Importul a eșuat"]},"Export failed":{"*":["Exportul a eșuat"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Aceasta va șterge toate webapps-urile și intrările lor de pe desktop. Această acțiune nu poate fi anulată."]},"Browser changed":{"*":["Browserul a fost schimbat"]},"What are WebApps?":{"*":["Ce sunt WebApps?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps sunt aplicații web care rulează într-o fereastră de browser dedicată, oferind o experiență mai asemănătoare unei aplicații pentru site-urile tale preferate."]},"Benefits of using WebApps:":{"*":["Beneficiile utilizării WebApps:"]},"Focus":{"*":["Concentrare"]},"Work without the distractions of other browser tabs":{"*":["Lucrează fără distragerile altor file de browser"]},"Desktop Integration":{"*":["Integrare pe desktop"]},"Quick access from your application menu":{"*":["Acces rapid din meniul aplicațiilor"]},"Isolated Profiles":{"*":["Profiluri izolate"]},"Each webapp can have its own cookies and settings":{"*":["Fiecare webapp poate avea propriile cookie-uri și setări"]},"Back":{"*":["Înapoi"]},"Forward":{"*":["Înainte"]},"Reload":{"*":["Reîncarcă"]},"Fullscreen":{"*":["Ecran complet"]},"Enter URL…":{"*":["Introdu URL…"]},"Zoom In":{"*":["Mărește"]},"Zoom Out":{"*":["Micșorează"]},"Reset Zoom":{"*":["Resetează zoom-ul"]},"Developer Tools":{"*":["Instrumente pentru dezvoltatori"]},"Menu":{"*":["Meniu"]},"Open Link in Browser":{"*":["Deschide linkul în browser"]},"Download Complete":{"*":["Descărcare completă"]},"Save File":{"*":["Salvează fișierul"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/usr/share/locale/ro/LC_MESSAGES/biglinux-webapps.mo b/biglinux-webapps/usr/share/locale/ro/LC_MESSAGES/biglinux-webapps.mo index 29a7aacbca31f315ae1585ded0b23252ad0108df..1d9534377d054a251ecc1942ccf69f63b6cbeddc 100644 GIT binary patch literal 5592 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 literal 7140 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 are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Что такое веб-приложения?\n\nВеб-приложения — это веб-приложения, которые работают в отдельном окне браузера, обеспечивая более похожий на приложение опыт для ваших любимых веб-сайтов.\n\nПреимущества использования веб-приложений:\n\n• Фокус: Работайте без отвлекающих факторов других вкладок браузера\n• Интеграция с рабочим столом: Быстрый доступ из меню приложений\n• Изолированные профили: При желании, каждое веб-приложение может иметь свои собственные куки и настройки\n"]},"Don't show this again":{"*":["Больше не показывать это снова"]},"Let's Start":{"*":["Давайте начнем"]},"Select Browser":{"*":["Выберите браузер"]},"Cancel":{"*":["Отмена"]},"Select":{"*":["Выбрать"]},"System Default":{"*":["Системный по умолчанию"]},"Default":{"*":["По умолчанию"]},"Please select a browser.":{"*":["Пожалуйста, выберите браузер."]},"Error":{"*":["Ошибка"]},"OK":{"*":["ОК"]},"Add WebApp":{"*":["Добавить веб-приложение"]},"Choose from templates":{"*":["Выберите из шаблонов"]},"URL":{"*":["URL"]},"Detect":{"*":["Обнаружить"]},"Detect name and icon from website":{"*":["Обнаружить имя и значок с веб-сайта"]},"Name":{"*":["Имя"]},"App Icon":{"*":["Иконка приложения"]},"Select icon for the WebApp":{"*":["Выберите значок для веб-приложения"]},"Available Icons":{"*":["Доступные значки"]},"Category":{"*":["Категория"]},"Application Mode":{"*":["Режим приложения"]},"Opens as a native window without browser interface":{"*":["Открывается как родное окно без интерфейса браузера"]},"Browser":{"*":["Браузер"]},"Profile Settings":{"*":["Настройки профиля"]},"Configure a separate browser profile for this webapp":{"*":["Настройте отдельный профиль браузера для этого веб-приложения."]},"Use separate profile":{"*":["Использовать отдельный профиль"]},"Allows independent cookies and sessions":{"*":["Разрешает независимые куки и сессии"]},"Profile Name":{"*":["Имя профиля"]},"Save":{"*":["Сохранить"]},"Loading...":{"*":["Загрузка..."]},"Detecting website information, please wait":{"*":["Обнаружение информации о сайте, пожалуйста, подождите"]},"Please enter a URL first.":{"*":["Пожалуйста, сначала введите URL."]},"Please enter a name for the WebApp.":{"*":["Пожалуйста, введите имя для WebApp."]},"Please enter a URL for the WebApp.":{"*":["Пожалуйста, введите URL для WebApp."]},"Please select a browser for the WebApp.":{"*":["Пожалуйста, выберите браузер для WebApp."]},"WebApps Manager":{"*":["Менеджер веб-приложений"]},"Search WebApps":{"*":["Поиск веб-приложений"]},"Main Menu":{"*":["Главное меню"]},"Refresh":{"*":["Обновить"]},"Export WebApps":{"*":["Экспорт веб-приложений"]},"Import WebApps":{"*":["Импортировать веб-приложения"]},"Browse Applications Folder":{"*":["Просмотреть папку приложений"]},"Browse Profiles Folder":{"*":["Просмотреть папку профилей"]},"Show Welcome Screen":{"*":["Показать экран приветствия"]},"Remove All WebApps":{"*":["Удалить все веб-приложения"]},"About":{"*":["О программе"]},"Add":{"*":["Добавить"]},"No WebApps Found":{"*":["Веб-приложения не найдены"]},"Add a new webapp to get started":{"*":["Добавьте новое веб-приложение, чтобы начать."]},"WebApp created successfully":{"*":["Веб-приложение успешно создано"]},"WebApp updated successfully":{"*":["Веб-приложение успешно обновлено"]},"Browser changed to {0}":{"*":["Браузер изменен на {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Вы уверены, что хотите удалить {0}?\n\nURL: {1}\nБраузер: {2}"]},"Also delete configuration folder":{"*":["Также удалите папку конфигурации"]},"Delete":{"*":["Удалить"]},"WebApp deleted successfully":{"*":["Веб-приложение успешно удалено"]},"REMOVE ALL":{"*":["УДАЛИТЬ ВСЕ"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Вы уверены, что хотите удалить все свои веб-приложения? Это действие нельзя отменить.\n\nВведите \"{0}\", чтобы подтвердить."]},"Remove All":{"*":["Удалить все"]},"All WebApps have been removed":{"*":["Все веб-приложения были удалены."]},"Failed to remove all WebApps":{"*":["Не удалось удалить все веб-приложения."]},"Icon {0} of {1}":{"*":["Иконка {0} из {1}"]},"WebApps exported successfully":{"*":["WebApps успешно экспортированы"]},"No WebApps":{"*":["Нет веб-приложений"]},"There are no WebApps to export.":{"*":["Нет доступных WebApps для экспорта."]},"The selected file does not exist.":{"*":["Выбранный файл не существует."]},"The selected file is not a valid ZIP archive.":{"*":["Выбранный файл не является действительным ZIP-архивом."]},"Error importing WebApps":{"*":["Ошибка импорта WebApps"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["Импортировано {} WebApps успешно (пропущено {} дубликатов)"]},"Imported {} WebApps successfully":{"*":["Успешно импортированы {} WebApps"]},"No":{"*":["Нет"]},"Yes":{"*":["Да"]}}}} \ No newline at end of file +{"ru":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Шаблоны"]},"Choose a Template":{"*":["Выберите шаблон"]},"Search templates...":{"*":["Поиск шаблонов..."]},"Search Results":{"*":["Результаты поиска"]},"No templates found":{"*":["Шаблоны не найдены"]},"Edit WebApp":{"*":["Редактировать веб-приложение"]},"Delete WebApp":{"*":["Удалить WebApp"]},"Welcome to WebApps Manager":{"*":["Добро пожаловать в WebApps Manager"]},"Don't show this again":{"*":["Больше не показывать это снова"]},"Let's Start":{"*":["Давайте начнем"]},"Select Browser":{"*":["Выберите браузер"]},"Cancel":{"*":["Отмена"]},"Select":{"*":["Выбрать"]},"OK":{"*":["ОК"]},"Add WebApp":{"*":["Добавить веб-приложение"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Обнаружить имя и значок с веб-сайта"]},"Name":{"*":["Имя"]},"Category":{"*":["Категория"]},"Opens as a native window without browser interface":{"*":["Открывается как родное окно без интерфейса браузера"]},"Browser":{"*":["Браузер"]},"Allows independent cookies and sessions":{"*":["Разрешает независимые куки и сессии"]},"Profile Name":{"*":["Имя профиля"]},"Save":{"*":["Сохранить"]},"Loading...":{"*":["Загрузка..."]},"WebApps Manager":{"*":["Менеджер веб-приложений"]},"Search WebApps":{"*":["Поиск веб-приложений"]},"Export WebApps":{"*":["Экспорт веб-приложений"]},"Import WebApps":{"*":["Импортировать веб-приложения"]},"Browse Applications Folder":{"*":["Просмотреть папку приложений"]},"Browse Profiles Folder":{"*":["Просмотреть папку профилей"]},"Remove All WebApps":{"*":["Удалить все веб-приложения"]},"About":{"*":["О программе"]},"Add a new webapp to get started":{"*":["Добавьте новое веб-приложение, чтобы начать."]},"WebApp created successfully":{"*":["Веб-приложение успешно создано"]},"WebApp updated successfully":{"*":["Веб-приложение успешно обновлено"]},"Also delete configuration folder":{"*":["Также удалите папку конфигурации"]},"Delete":{"*":["Удалить"]},"WebApp deleted successfully":{"*":["Веб-приложение успешно удалено"]},"Remove All":{"*":["Удалить все"]},"All WebApps have been removed":{"*":["Все веб-приложения были удалены."]},"Failed to remove all WebApps":{"*":["Не удалось удалить все веб-приложения."]},"WebApps exported successfully":{"*":["WebApps успешно экспортированы"]},"No WebApps":{"*":["Нет веб-приложений"]},"Change browser":{"*":["Изменить браузер"]},"Edit":{"*":["Редактировать"]},"New WebApp":{"*":["Новое WebApp"]},"Icon":{"*":["Значок"]},"App Mode":{"*":["Режим приложения"]},"Separate Profile":{"*":["Отдельный профиль"]},"Select Icon":{"*":["Выбрать значок"]},"Images":{"*":["Изображения"]},"ZIP files":{"*":["ZIP-файлы"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Импортировано {imported}, пропущено {dups} дубликатов"]},"Import failed":{"*":["Ошибка импорта"]},"Export failed":{"*":["Ошибка экспорта"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Это удалит все webapps и их записи на рабочем столе. Это действие нельзя отменить."]},"Browser changed":{"*":["Браузер изменён"]},"What are WebApps?":{"*":["Что такое WebApps?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps — это веб-приложения, которые работают в отдельном окне браузера, обеспечивая более похожий на приложение опыт для ваших любимых сайтов."]},"Benefits of using WebApps:":{"*":["Преимущества использования WebApps:"]},"Focus":{"*":["Фокус"]},"Work without the distractions of other browser tabs":{"*":["Работа без отвлечений от других вкладок браузера"]},"Desktop Integration":{"*":["Интеграция с рабочим столом"]},"Quick access from your application menu":{"*":["Быстрый доступ из меню приложений"]},"Isolated Profiles":{"*":["Изолированные профили"]},"Each webapp can have its own cookies and settings":{"*":["Каждый WebApp может иметь свои собственные куки и настройки"]},"Back":{"*":["Назад"]},"Forward":{"*":["Вперед"]},"Reload":{"*":["Перезагрузить"]},"Fullscreen":{"*":["Полноэкранный режим"]},"Enter URL…":{"*":["Введите URL…"]},"Zoom In":{"*":["Увеличить"]},"Zoom Out":{"*":["Уменьшить"]},"Reset Zoom":{"*":["Сбросить масштаб"]},"Developer Tools":{"*":["Инструменты разработчика"]},"Menu":{"*":["Меню"]},"Open Link in Browser":{"*":["Открыть ссылку в браузере"]},"Download Complete":{"*":["Загрузка завершена"]},"Save File":{"*":["Сохранить файл"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/usr/share/locale/ru/LC_MESSAGES/biglinux-webapps.mo b/biglinux-webapps/usr/share/locale/ru/LC_MESSAGES/biglinux-webapps.mo index f3f4e32cb60cb1799a789eb3a205c651c7666e0f..20cd580260d21329b6e4264aaee5ebcfc7606bd1 100644 GIT binary patch literal 6931 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 oj-v(EtDd literal 8989 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 D6>0Mm diff --git a/biglinux-webapps/usr/share/locale/sk/LC_MESSAGES/biglinux-webapps.json b/biglinux-webapps/usr/share/locale/sk/LC_MESSAGES/biglinux-webapps.json index f2fc1754..df7a6783 100644 --- a/biglinux-webapps/usr/share/locale/sk/LC_MESSAGES/biglinux-webapps.json +++ b/biglinux-webapps/usr/share/locale/sk/LC_MESSAGES/biglinux-webapps.json @@ -1 +1 @@ -{"sk":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Šablóny"]},"Choose a Template":{"*":["Vyberte šablónu"]},"Search templates...":{"*":["Hľadať šablóny..."]},"Search templates":{"*":["Hľadať šablóny"]},"Search Results":{"*":["Výsledky vyhľadávania"]},"No templates found":{"*":["Žiadne šablóny nenájdené"]},"Browser: {0}":{"*":["Prehliadač: {0}"]},"Edit WebApp":{"*":["Upraviť WebApp"]},"Edit {0}":{"*":["Upraviť {0}"]},"Delete WebApp":{"*":["Odstrániť WebApp"]},"Delete {0}":{"*":["Odstrániť {0}"]},"Welcome to WebApps Manager":{"*":["Vitajte v správcovi webových aplikácií"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Čo sú WebApps?\n\nWebApps sú webové aplikácie, ktoré bežia v samostatnom okne prehliadača, čím poskytujú viac aplikáciám podobný zážitok pre vaše obľúbené webové stránky.\n\nVýhody používania WebApps:\n\n• Fokus: Pracujte bez rozptýlenia od iných kariet prehliadača\n• Integrácia s desktopom: Rýchly prístup z ponuky aplikácií\n• Izolované profily: Voliteľne, každá webová aplikácia môže mať svoje vlastné cookies a nastavenia\n"]},"Don't show this again":{"*":["Nesúhlasím s týmto znovu zobraziť."]},"Let's Start":{"*":["Začnime"]},"Select Browser":{"*":["Vyberte prehliadač"]},"Cancel":{"*":["Zrušiť"]},"Select":{"*":["Vybrať"]},"System Default":{"*":["Predvolené nastavenie systému"]},"Default":{"*":["Predvolené"]},"Please select a browser.":{"*":["Vyberte prehliadač."]},"Error":{"*":["Chyba"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Pridať WebApp"]},"Choose from templates":{"*":["Vyberte z šablón"]},"URL":{"*":["URL"]},"Detect":{"*":["Detekovať"]},"Detect name and icon from website":{"*":["Detekovať názov a ikonu z webovej stránky"]},"Name":{"*":["Názov"]},"App Icon":{"*":["Ikona aplikácie"]},"Select icon for the WebApp":{"*":["Vyberte ikonu pre WebApp"]},"Available Icons":{"*":["Dostupné ikony"]},"Category":{"*":["Kategória"]},"Application Mode":{"*":["Režim aplikácie"]},"Opens as a native window without browser interface":{"*":["Otvára sa ako natívne okno bez rozhrania prehliadača."]},"Browser":{"*":["Prehliadač"]},"Profile Settings":{"*":["Nastavenia profilu"]},"Configure a separate browser profile for this webapp":{"*":["Nakonfigurujte samostatný profil prehliadača pre túto webovú aplikáciu."]},"Use separate profile":{"*":["Použite samostatný profil"]},"Allows independent cookies and sessions":{"*":["Umožňuje nezávislé cookies a relácie"]},"Profile Name":{"*":["Názov profilu"]},"Save":{"*":["Uložiť"]},"Loading...":{"*":["Načítanie..."]},"Detecting website information, please wait":{"*":["Zisťovanie informácií o webovej stránke, prosím čakajte"]},"Please enter a URL first.":{"*":["Najprv zadajte URL."]},"Please enter a name for the WebApp.":{"*":["Zadajte názov pre WebApp."]},"Please enter a URL for the WebApp.":{"*":["Zadajte URL adresu pre WebApp."]},"Please select a browser for the WebApp.":{"*":["Vyberte pre WebApp prehliadač."]},"WebApps Manager":{"*":["Správca webových aplikácií"]},"Search WebApps":{"*":["Hľadať WebApps"]},"Main Menu":{"*":["Hlavné menu"]},"Refresh":{"*":["Obnoviť"]},"Export WebApps":{"*":["Exportovať webové aplikácie"]},"Import WebApps":{"*":["Importovať webové aplikácie"]},"Browse Applications Folder":{"*":["Prehľadávať priečinok aplikácií"]},"Browse Profiles Folder":{"*":["Prehľadávať priečinok profilov"]},"Show Welcome Screen":{"*":["Zobraziť uvítaciu obrazovku"]},"Remove All WebApps":{"*":["Odstrániť všetky webové aplikácie"]},"About":{"*":["O aplikácii"]},"Add":{"*":["Pridať"]},"No WebApps Found":{"*":["Nenašli sa žiadne webové aplikácie"]},"Add a new webapp to get started":{"*":["Pridajte novú webovú aplikáciu, aby ste mohli začať."]},"WebApp created successfully":{"*":["Webová aplikácia bola úspešne vytvorená."]},"WebApp updated successfully":{"*":["Webová aplikácia bola úspešne aktualizovaná."]},"Browser changed to {0}":{"*":["Prehliadač bol zmenený na {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Ste naozaj istí, že chcete odstrániť {0}?\n\nURL: {1}\nPrehliadač: {2}"]},"Also delete configuration folder":{"*":["Taktiež odstráňte konfiguračný priečinok."]},"Delete":{"*":["Vymazať"]},"WebApp deleted successfully":{"*":["Webová aplikácia bola úspešne odstránená."]},"REMOVE ALL":{"*":["ODSTRÁNIŤ VŠETKO"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Ste naozaj istí, že chcete odstrániť všetky svoje WebApps? Túto akciu nie je možné zrušiť.\n\nNapíšte \"{0}\" na potvrdenie."]},"Remove All":{"*":["Odstrániť všetko"]},"All WebApps have been removed":{"*":["Všetky webové aplikácie boli odstránené."]},"Failed to remove all WebApps":{"*":["Nepodarilo sa odstrániť všetky WebApps."]},"Icon {0} of {1}":{"*":["Ikona {0} z {1}"]},"WebApps exported successfully":{"*":["WebApps boli úspešne exportované"]},"No WebApps":{"*":["Žiadne webové aplikácie"]},"There are no WebApps to export.":{"*":["Nie sú žiadne webové aplikácie na export."]},"The selected file does not exist.":{"*":["Vybraný súbor neexistuje."]},"The selected file is not a valid ZIP archive.":{"*":["Vybraný súbor nie je platný ZIP archív."]},"Error importing WebApps":{"*":["Chyba pri importe WebApps"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["Úspešne importované {} WebApps ({} duplikáty preskočené)"]},"Imported {} WebApps successfully":{"*":["Úspešne importované {} WebApps"]},"No":{"*":["Nie"]},"Yes":{"*":["Áno"]}}}} \ No newline at end of file +{"sk":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Šablóny"]},"Choose a Template":{"*":["Vyberte šablónu"]},"Search templates...":{"*":["Hľadať šablóny..."]},"Search Results":{"*":["Výsledky vyhľadávania"]},"No templates found":{"*":["Žiadne šablóny nenájdené"]},"Edit WebApp":{"*":["Upraviť WebApp"]},"Delete WebApp":{"*":["Odstrániť WebApp"]},"Welcome to WebApps Manager":{"*":["Vitajte v správcovi webových aplikácií"]},"Don't show this again":{"*":["Nesúhlasím s týmto znovu zobraziť."]},"Let's Start":{"*":["Začnime"]},"Select Browser":{"*":["Vyberte prehliadač"]},"Cancel":{"*":["Zrušiť"]},"Select":{"*":["Vybrať"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Pridať WebApp"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Detekovať názov a ikonu z webovej stránky"]},"Name":{"*":["Názov"]},"Category":{"*":["Kategória"]},"Opens as a native window without browser interface":{"*":["Otvára sa ako natívne okno bez rozhrania prehliadača."]},"Browser":{"*":["Prehliadač"]},"Allows independent cookies and sessions":{"*":["Umožňuje nezávislé cookies a relácie"]},"Profile Name":{"*":["Názov profilu"]},"Save":{"*":["Uložiť"]},"Loading...":{"*":["Načítanie..."]},"WebApps Manager":{"*":["Správca webových aplikácií"]},"Search WebApps":{"*":["Hľadať WebApps"]},"Export WebApps":{"*":["Exportovať webové aplikácie"]},"Import WebApps":{"*":["Importovať webové aplikácie"]},"Browse Applications Folder":{"*":["Prehľadávať priečinok aplikácií"]},"Browse Profiles Folder":{"*":["Prehľadávať priečinok profilov"]},"Remove All WebApps":{"*":["Odstrániť všetky webové aplikácie"]},"About":{"*":["O aplikácii"]},"Add a new webapp to get started":{"*":["Pridajte novú webovú aplikáciu, aby ste mohli začať."]},"WebApp created successfully":{"*":["Webová aplikácia bola úspešne vytvorená."]},"WebApp updated successfully":{"*":["Webová aplikácia bola úspešne aktualizovaná."]},"Also delete configuration folder":{"*":["Taktiež odstráňte konfiguračný priečinok."]},"Delete":{"*":["Vymazať"]},"WebApp deleted successfully":{"*":["Webová aplikácia bola úspešne odstránená."]},"Remove All":{"*":["Odstrániť všetko"]},"All WebApps have been removed":{"*":["Všetky webové aplikácie boli odstránené."]},"Failed to remove all WebApps":{"*":["Nepodarilo sa odstrániť všetky WebApps."]},"WebApps exported successfully":{"*":["WebApps boli úspešne exportované"]},"No WebApps":{"*":["Žiadne webové aplikácie"]},"Change browser":{"*":["Zmeniť prehliadač"]},"Edit":{"*":["Upraviť"]},"New WebApp":{"*":["Nová WebApp"]},"Icon":{"*":["Ikona"]},"App Mode":{"*":["Režim aplikácie"]},"Separate Profile":{"*":["Samostatný profil"]},"Select Icon":{"*":["Vybrať ikonu"]},"Images":{"*":["Obrázky"]},"ZIP files":{"*":["ZIP súbory"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Importované {imported}, preskočené {dups} duplikáty"]},"Import failed":{"*":["Import zlyhal"]},"Export failed":{"*":["Export zlyhal"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Týmto sa vymažú všetky webové aplikácie a ich záznamy na ploche. Toto sa nedá vrátiť späť."]},"Browser changed":{"*":["Prehliadač zmenený"]},"What are WebApps?":{"*":["Čo sú WebApps?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps sú webové aplikácie, ktoré bežia v samostatnom okne prehliadača a poskytujú viac aplikácii podobný zážitok pre vaše obľúbené webové stránky."]},"Benefits of using WebApps:":{"*":["Výhody používania WebApps:"]},"Focus":{"*":["Sústreďte sa"]},"Work without the distractions of other browser tabs":{"*":["Pracujte bez rozptýlení z iných kariet prehliadača"]},"Desktop Integration":{"*":["Integrácia na pracovnú plochu"]},"Quick access from your application menu":{"*":["Rýchly prístup z vášho aplikačného menu"]},"Isolated Profiles":{"*":["Izolované profily"]},"Each webapp can have its own cookies and settings":{"*":["Každý webapp môže mať vlastné cookies a nastavenia"]},"Back":{"*":["Späť"]},"Forward":{"*":["Vpred"]},"Reload":{"*":["Obnoviť"]},"Fullscreen":{"*":["Celá obrazovka"]},"Enter URL…":{"*":["Zadajte URL…"]},"Zoom In":{"*":["Priblížiť"]},"Zoom Out":{"*":["Oddialiť"]},"Reset Zoom":{"*":["Obnoviť zväčšenie"]},"Developer Tools":{"*":["Nástroje pre vývojárov"]},"Menu":{"*":["Menu"]},"Open Link in Browser":{"*":["Otvoriť odkaz v prehliadači"]},"Download Complete":{"*":["Sťahovanie dokončené"]},"Save File":{"*":["Uložiť súbor"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/usr/share/locale/sk/LC_MESSAGES/biglinux-webapps.mo b/biglinux-webapps/usr/share/locale/sk/LC_MESSAGES/biglinux-webapps.mo index 63e54390b8ca269d7bbd8c23ca56937c324ddf8f..079f46aeba677f707b2e531881d6be03adc9db13 100644 GIT binary patch literal 5723 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 are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Vad är WebApps?\n\nWebApps är webbapplikationer som körs i ett dedikerat webbläsarfönster, vilket ger en mer app-liknande upplevelse för dina favoritwebbplatser.\n\nFördelar med att använda WebApps:\n\n• Fokus: Arbeta utan distraktioner från andra webbläsartabbar\n• Skrivbordsintegration: Snabb åtkomst från din applikationsmeny\n• Isolerade profiler: Valfritt kan varje webapp ha sina egna cookies och inställningar\n"]},"Don't show this again":{"*":["Visa inte detta igen"]},"Let's Start":{"*":["Låt oss börja"]},"Select Browser":{"*":["Välj webbläsare"]},"Cancel":{"*":["Avbryt"]},"Select":{"*":["Välj"]},"System Default":{"*":["Systemstandard"]},"Default":{"*":["Standard"]},"Please select a browser.":{"*":["Vänligen välj en webbläsare."]},"Error":{"*":["Fel"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Lägg till WebApp"]},"Choose from templates":{"*":["Välj från mallar"]},"URL":{"*":["URL"]},"Detect":{"*":["Upptäck"]},"Detect name and icon from website":{"*":["Detektera namn och ikon från webbplats."]},"Name":{"*":["Namn"]},"App Icon":{"*":["App-ikon"]},"Select icon for the WebApp":{"*":["Välj ikon för WebApp"]},"Available Icons":{"*":["Tillgängliga ikoner"]},"Category":{"*":["Kategori"]},"Application Mode":{"*":["Applikationsläge"]},"Opens as a native window without browser interface":{"*":["Öppnas som ett inbyggt fönster utan webbläsargränssnitt"]},"Browser":{"*":["Webbläsare"]},"Profile Settings":{"*":["Profilinställningar"]},"Configure a separate browser profile for this webapp":{"*":["Konfigurera en separat webbläsarprofil för denna webbapp"]},"Use separate profile":{"*":["Använd separat profil"]},"Allows independent cookies and sessions":{"*":["Tillåter oberoende cookies och sessioner"]},"Profile Name":{"*":["Profilnamn"]},"Save":{"*":["Spara"]},"Loading...":{"*":["Laddar..."]},"Detecting website information, please wait":{"*":["Upptäckter webbplatsinformation, vänligen vänta"]},"Please enter a URL first.":{"*":["Vänligen ange en URL först."]},"Please enter a name for the WebApp.":{"*":["Vänligen ange ett namn för WebAppen."]},"Please enter a URL for the WebApp.":{"*":["Vänligen ange en URL för WebAppen."]},"Please select a browser for the WebApp.":{"*":["Vänligen välj en webbläsare för WebApp."]},"WebApps Manager":{"*":["WebApps Hanterare"]},"Search WebApps":{"*":["Sök WebApps"]},"Main Menu":{"*":["Huvudmeny"]},"Refresh":{"*":["Uppdatera"]},"Export WebApps":{"*":["Exportera WebApps"]},"Import WebApps":{"*":["Importera WebApps"]},"Browse Applications Folder":{"*":["Bläddra i mappen Program"]},"Browse Profiles Folder":{"*":["Bläddra i profiler-mappen"]},"Show Welcome Screen":{"*":["Visa välkomstskärm"]},"Remove All WebApps":{"*":["Ta bort alla webbappar"]},"About":{"*":["Om"]},"Add":{"*":["Lägg till"]},"No WebApps Found":{"*":["Inga WebApps hittades"]},"Add a new webapp to get started":{"*":["Lägg till en ny webbapp för att komma igång"]},"WebApp created successfully":{"*":["WebApp skapad framgångsrikt"]},"WebApp updated successfully":{"*":["WebApp uppdaterad framgångsrikt"]},"Browser changed to {0}":{"*":["Webbläsare ändrad till {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Är du säker på att du vill ta bort {0}?\n\nURL: {1}\nWebbläsare: {2}"]},"Also delete configuration folder":{"*":["Ta bort konfigurationsmappen också."]},"Delete":{"*":["Ta bort"]},"WebApp deleted successfully":{"*":["WebApp raderades framgångsrikt"]},"REMOVE ALL":{"*":["TA BORT ALLT"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Är du säker på att du vill ta bort alla dina WebApps? Denna åtgärd kan inte ångras.\n\nSkriv \"{0}\" för att bekräfta."]},"Remove All":{"*":["Ta bort allt"]},"All WebApps have been removed":{"*":["Alla WebApps har tagits bort."]},"Failed to remove all WebApps":{"*":["Misslyckades med att ta bort alla WebApps"]},"Icon {0} of {1}":{"*":["Ikon {0} av {1}"]},"WebApps exported successfully":{"*":["WebApps exporterades framgångsrikt"]},"No WebApps":{"*":["Inga WebApps"]},"There are no WebApps to export.":{"*":["Det finns inga WebApps att exportera."]},"The selected file does not exist.":{"*":["Den valda filen finns inte."]},"The selected file is not a valid ZIP archive.":{"*":["Den valda filen är inte ett giltigt ZIP-arkiv."]},"Error importing WebApps":{"*":["Fel vid import av WebApps"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["Importerade {} WebApps framgångsrikt ({} dubbletter hoppades över)"]},"Imported {} WebApps successfully":{"*":["Importerade {} WebApps framgångsrikt"]},"No":{"*":["Nej"]},"Yes":{"*":["Ja"]}}}} \ No newline at end of file +{"sv":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Mallar"]},"Choose a Template":{"*":["Välj en mall"]},"Search templates...":{"*":["Sök mallar..."]},"Search Results":{"*":["Sökresultat"]},"No templates found":{"*":["Inga mallar hittades"]},"Edit WebApp":{"*":["Redigera WebApp"]},"Delete WebApp":{"*":["Ta bort WebApp"]},"Welcome to WebApps Manager":{"*":["Välkommen till WebApps Manager"]},"Don't show this again":{"*":["Visa inte detta igen"]},"Let's Start":{"*":["Låt oss börja"]},"Select Browser":{"*":["Välj webbläsare"]},"Cancel":{"*":["Avbryt"]},"Select":{"*":["Välj"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Lägg till WebApp"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Detektera namn och ikon från webbplats."]},"Name":{"*":["Namn"]},"Category":{"*":["Kategori"]},"Opens as a native window without browser interface":{"*":["Öppnas som ett inbyggt fönster utan webbläsargränssnitt"]},"Browser":{"*":["Webbläsare"]},"Allows independent cookies and sessions":{"*":["Tillåter oberoende cookies och sessioner"]},"Profile Name":{"*":["Profilnamn"]},"Save":{"*":["Spara"]},"Loading...":{"*":["Laddar..."]},"WebApps Manager":{"*":["WebApps Hanterare"]},"Search WebApps":{"*":["Sök WebApps"]},"Export WebApps":{"*":["Exportera WebApps"]},"Import WebApps":{"*":["Importera WebApps"]},"Browse Applications Folder":{"*":["Bläddra i mappen Program"]},"Browse Profiles Folder":{"*":["Bläddra i profiler-mappen"]},"Remove All WebApps":{"*":["Ta bort alla webbappar"]},"About":{"*":["Om"]},"Add a new webapp to get started":{"*":["Lägg till en ny webbapp för att komma igång"]},"WebApp created successfully":{"*":["WebApp skapad framgångsrikt"]},"WebApp updated successfully":{"*":["WebApp uppdaterad framgångsrikt"]},"Also delete configuration folder":{"*":["Ta bort konfigurationsmappen också."]},"Delete":{"*":["Ta bort"]},"WebApp deleted successfully":{"*":["WebApp raderades framgångsrikt"]},"Remove All":{"*":["Ta bort allt"]},"All WebApps have been removed":{"*":["Alla WebApps har tagits bort."]},"Failed to remove all WebApps":{"*":["Misslyckades med att ta bort alla WebApps"]},"WebApps exported successfully":{"*":["WebApps exporterades framgångsrikt"]},"No WebApps":{"*":["Inga WebApps"]},"Change browser":{"*":["Byt webbläsare"]},"Edit":{"*":["Redigera"]},"New WebApp":{"*":["Ny WebApp"]},"Icon":{"*":["Ikon"]},"App Mode":{"*":["App-läge"]},"Separate Profile":{"*":["Separat profil"]},"Select Icon":{"*":["Välj ikon"]},"Images":{"*":["Bilder"]},"ZIP files":{"*":["ZIP-filer"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Importerade {imported}, hoppade över {dups} dubbletter"]},"Import failed":{"*":["Import misslyckades"]},"Export failed":{"*":["Export misslyckades"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Detta kommer att ta bort alla webappar och deras skrivbordsgenvägar. Detta kan inte ångras."]},"Browser changed":{"*":["Webbläsare ändrad"]},"What are WebApps?":{"*":["Vad är WebApps?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps är webbapplikationer som körs i ett dedikerat webbläsarfönster och ger en mer app-liknande upplevelse för dina favoritwebbplatser."]},"Benefits of using WebApps:":{"*":["Fördelar med att använda WebApps:"]},"Focus":{"*":["Fokus"]},"Work without the distractions of other browser tabs":{"*":["Arbeta utan distraktioner från andra webbläsarflikar"]},"Desktop Integration":{"*":["Skrivbordsintegration"]},"Quick access from your application menu":{"*":["Snabb åtkomst från din applikationsmeny"]},"Isolated Profiles":{"*":["Isolerade profiler"]},"Each webapp can have its own cookies and settings":{"*":["Varje webapp kan ha sina egna cookies och inställningar"]},"Back":{"*":["Tillbaka"]},"Forward":{"*":["Framåt"]},"Reload":{"*":["Ladda om"]},"Fullscreen":{"*":["Fullskärm"]},"Enter URL…":{"*":["Ange URL…"]},"Zoom In":{"*":["Zooma in"]},"Zoom Out":{"*":["Zooma ut"]},"Reset Zoom":{"*":["Återställ zoom"]},"Developer Tools":{"*":["Utvecklarverktyg"]},"Menu":{"*":["Meny"]},"Open Link in Browser":{"*":["Öppna länk i webbläsare"]},"Download Complete":{"*":["Nedladdning klar"]},"Save File":{"*":["Spara fil"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/usr/share/locale/sv/LC_MESSAGES/biglinux-webapps.mo b/biglinux-webapps/usr/share/locale/sv/LC_MESSAGES/biglinux-webapps.mo index 635ca613e97bfc37847a721a51fee27b8e6787b6..47b26927d675ac93976a330da10a6791c29ae310 100644 GIT binary patch literal 5339 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 Ezeb;*+5i9m literal 6833 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 srG7FKZWhat are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Web Uygulamaları nedir?\n\nWeb Uygulamaları, özel bir tarayıcı penceresinde çalışan web uygulamalarıdır ve favori web siteleriniz için daha uygulama benzeri bir deneyim sunar.\n\nWeb Uygulamaları kullanmanın avantajları:\n\n• Odaklanma: Diğer tarayıcı sekmelerinin dikkat dağıtıcı etkisi olmadan çalışma\n• masaüstü entegrasyonu: Uygulama menünüzden hızlı erişim\n• İzolasyonlu Profiller: İsteğe bağlı olarak, her web uygulaması kendi çerezlerine ve ayarlarına sahip olabilir\n"]},"Don't show this again":{"*":["Bunu bir daha gösterme."]},"Let's Start":{"*":["Başlayalım"]},"Select Browser":{"*":["Tarayıcıyı Seçin"]},"Cancel":{"*":["İptal et"]},"Select":{"*":["Seçin"]},"System Default":{"*":["Sistem Varsayılanı"]},"Default":{"*":["Varsayılan"]},"Please select a browser.":{"*":["Lütfen bir tarayıcı seçin."]},"Error":{"*":["Hata"]},"OK":{"*":["Tamam"]},"Add WebApp":{"*":["Web Uygulaması Ekle"]},"Choose from templates":{"*":["Şablonlardan seçin"]},"URL":{"*":["URL"]},"Detect":{"*":["Algıla"]},"Detect name and icon from website":{"*":["Web sitesinden isim ve simgeyi tespit et"]},"Name":{"*":["İsim"]},"App Icon":{"*":["Uygulama İkonu"]},"Select icon for the WebApp":{"*":["WebApp için simge seçin"]},"Available Icons":{"*":["Mevcut Simge"]},"Category":{"*":["Kategori"]},"Application Mode":{"*":["Uygulama Modu"]},"Opens as a native window without browser interface":{"*":["Tarayıcı arayüzü olmadan yerel bir pencere olarak açılır."]},"Browser":{"*":["Tarayıcı"]},"Profile Settings":{"*":["Profil Ayarları"]},"Configure a separate browser profile for this webapp":{"*":["Bu web uygulaması için ayrı bir tarayıcı profili yapılandırın."]},"Use separate profile":{"*":["Ayrı profil kullanın"]},"Allows independent cookies and sessions":{"*":["Bağımsız çerezler ve oturumlar sağlar."]},"Profile Name":{"*":["Profil Adı"]},"Save":{"*":["Kaydet"]},"Loading...":{"*":["Yükleniyor..."]},"Detecting website information, please wait":{"*":["Web sitesi bilgileri tespit ediliyor, lütfen bekleyin."]},"Please enter a URL first.":{"*":["Lütfen önce bir URL girin."]},"Please enter a name for the WebApp.":{"*":["Lütfen WebApp için bir isim girin."]},"Please enter a URL for the WebApp.":{"*":["Lütfen WebApp için bir URL girin."]},"Please select a browser for the WebApp.":{"*":["Lütfen WebApp için bir tarayıcı seçin."]},"WebApps Manager":{"*":["Web Uygulamaları Yöneticisi"]},"Search WebApps":{"*":["Web Uygulamaları Ara"]},"Main Menu":{"*":["Ana Menü"]},"Refresh":{"*":["Yenile"]},"Export WebApps":{"*":["Web Uygulamalarını Dışa Aktar"]},"Import WebApps":{"*":["Web Uygulamaları İçe Aktar"]},"Browse Applications Folder":{"*":["Uygulamalar Klasörünü Gözat"]},"Browse Profiles Folder":{"*":["Profiller Klasörünü Gözat"]},"Show Welcome Screen":{"*":["Hoş Geldiniz Ekranını Göster"]},"Remove All WebApps":{"*":["Tüm Web Uygulamalarını Kaldır"]},"About":{"*":["Hakkında"]},"Add":{"*":["Ekle"]},"No WebApps Found":{"*":["Web Uygulamaları Bulunamadı"]},"Add a new webapp to get started":{"*":["Başlamak için yeni bir web uygulaması ekleyin."]},"WebApp created successfully":{"*":["Web Uygulaması başarıyla oluşturuldu."]},"WebApp updated successfully":{"*":["WebApp başarıyla güncellendi."]},"Browser changed to {0}":{"*":["Tarayıcı {0} olarak değiştirildi."]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["{0}'ı silmek istediğinizden emin misiniz?\n\nURL: {1}\nTarayıcı: {2}"]},"Also delete configuration folder":{"*":["Ayrıca yapılandırma klasörünü silin."]},"Delete":{"*":["Sil"]},"WebApp deleted successfully":{"*":["WebApp başarıyla silindi."]},"REMOVE ALL":{"*":["TÜMÜNÜ KALDIR"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Tüm Web Uygulamalarınızı kaldırmak istediğinizden emin misiniz? Bu işlem geri alınamaz.\n\nOnaylamak için \"{0}\" yazın."]},"Remove All":{"*":["Tümünü Kaldır"]},"All WebApps have been removed":{"*":["Tüm Web Uygulamaları kaldırıldı."]},"Failed to remove all WebApps":{"*":["Tüm Web Uygulamaları kaldırma işlemi başarısız oldu."]},"Icon {0} of {1}":{"*":["{1} için {0} simgesi"]},"WebApps exported successfully":{"*":["Web Uygulamaları başarıyla dışa aktarıldı."]},"No WebApps":{"*":["Web Uygulamaları Yok"]},"There are no WebApps to export.":{"*":["Dışa aktarılacak Web Uygulamaları yok."]},"The selected file does not exist.":{"*":["Seçilen dosya mevcut değil."]},"The selected file is not a valid ZIP archive.":{"*":["Seçilen dosya geçerli bir ZIP arşivi değil."]},"Error importing WebApps":{"*":["Web Uygulamaları içe aktarım hatası"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["{} WebApps başarıyla içe aktarıldı ({} kopyalar atlandı)"]},"Imported {} WebApps successfully":{"*":["{} WebApps başarıyla içe aktarıldı."]},"No":{"*":["Hayır"]},"Yes":{"*":["Evet"]}}}} \ No newline at end of file +{"tr":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Şablonlar"]},"Choose a Template":{"*":["Bir Şablon Seçin"]},"Search templates...":{"*":["Şablonları ara..."]},"Search Results":{"*":["Arama Sonuçları"]},"No templates found":{"*":["Şablon bulunamadı"]},"Edit WebApp":{"*":["Web Uygulamasını Düzenle"]},"Delete WebApp":{"*":["WebApp'i Sil"]},"Welcome to WebApps Manager":{"*":["Web Uygulamaları Yöneticisi'ne Hoş Geldiniz"]},"Don't show this again":{"*":["Bunu bir daha gösterme."]},"Let's Start":{"*":["Başlayalım"]},"Select Browser":{"*":["Tarayıcıyı Seçin"]},"Cancel":{"*":["İptal et"]},"Select":{"*":["Seçin"]},"OK":{"*":["Tamam"]},"Add WebApp":{"*":["Web Uygulaması Ekle"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Web sitesinden isim ve simgeyi tespit et"]},"Name":{"*":["İsim"]},"Category":{"*":["Kategori"]},"Opens as a native window without browser interface":{"*":["Tarayıcı arayüzü olmadan yerel bir pencere olarak açılır."]},"Browser":{"*":["Tarayıcı"]},"Allows independent cookies and sessions":{"*":["Bağımsız çerezler ve oturumlar sağlar."]},"Profile Name":{"*":["Profil Adı"]},"Save":{"*":["Kaydet"]},"Loading...":{"*":["Yükleniyor..."]},"WebApps Manager":{"*":["Web Uygulamaları Yöneticisi"]},"Search WebApps":{"*":["Web Uygulamaları Ara"]},"Export WebApps":{"*":["Web Uygulamalarını Dışa Aktar"]},"Import WebApps":{"*":["Web Uygulamaları İçe Aktar"]},"Browse Applications Folder":{"*":["Uygulamalar Klasörünü Gözat"]},"Browse Profiles Folder":{"*":["Profiller Klasörünü Gözat"]},"Remove All WebApps":{"*":["Tüm Web Uygulamalarını Kaldır"]},"About":{"*":["Hakkında"]},"Add a new webapp to get started":{"*":["Başlamak için yeni bir web uygulaması ekleyin."]},"WebApp created successfully":{"*":["Web Uygulaması başarıyla oluşturuldu."]},"WebApp updated successfully":{"*":["WebApp başarıyla güncellendi."]},"Also delete configuration folder":{"*":["Ayrıca yapılandırma klasörünü silin."]},"Delete":{"*":["Sil"]},"WebApp deleted successfully":{"*":["WebApp başarıyla silindi."]},"Remove All":{"*":["Tümünü Kaldır"]},"All WebApps have been removed":{"*":["Tüm Web Uygulamaları kaldırıldı."]},"Failed to remove all WebApps":{"*":["Tüm Web Uygulamaları kaldırma işlemi başarısız oldu."]},"WebApps exported successfully":{"*":["Web Uygulamaları başarıyla dışa aktarıldı."]},"No WebApps":{"*":["Web Uygulamaları Yok"]},"Change browser":{"*":["Tarayıcıyı değiştir"]},"Edit":{"*":["Düzenle"]},"New WebApp":{"*":["Yeni WebApp"]},"Icon":{"*":["Simge"]},"App Mode":{"*":["Uygulama Modu"]},"Separate Profile":{"*":["Ayrı Profil"]},"Select Icon":{"*":["Simge Seç"]},"Images":{"*":["Resimler"]},"ZIP files":{"*":["ZIP dosyaları"]},"Imported {imported}, skipped {dups} duplicates":{"*":["İçe aktarılan {imported}, atlanan {dups} çoğaltmalar"]},"Import failed":{"*":["İçe aktarma başarısız oldu"]},"Export failed":{"*":["Dışa aktarma başarısız oldu"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Bu işlem tüm webapp'leri ve masaüstü girdilerini silecektir. Bu işlem geri alınamaz."]},"Browser changed":{"*":["Tarayıcı değiştirildi"]},"What are WebApps?":{"*":["WebApp'ler nedir?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps, favori web siteleriniz için daha uygulama benzeri bir deneyim sunan, özel bir tarayıcı penceresinde çalışan web uygulamalarıdır."]},"Benefits of using WebApps:":{"*":["WebApps kullanmanın faydaları:"]},"Focus":{"*":["Odaklanma"]},"Work without the distractions of other browser tabs":{"*":["Diğer tarayıcı sekmelerinin dikkat dağıtıcı etkisi olmadan çalışın"]},"Desktop Integration":{"*":["Masaüstü Entegrasyonu"]},"Quick access from your application menu":{"*":["Uygulama menünüzden hızlı erişim"]},"Isolated Profiles":{"*":["İzole Profiller"]},"Each webapp can have its own cookies and settings":{"*":["Her webapp kendi çerezlerine ve ayarlarına sahip olabilir"]},"Back":{"*":["Geri"]},"Forward":{"*":["İleri"]},"Reload":{"*":["Yenile"]},"Fullscreen":{"*":["Tam ekran"]},"Enter URL…":{"*":["URL girin…"]},"Zoom In":{"*":["Yakınlaştır"]},"Zoom Out":{"*":["Uzaklaştır"]},"Reset Zoom":{"*":["Yakınlaştırmayı Sıfırla"]},"Developer Tools":{"*":["Geliştirici Araçları"]},"Menu":{"*":["Menü"]},"Open Link in Browser":{"*":["Bağlantıyı Tarayıcıda Aç"]},"Download Complete":{"*":["İndirme Tamamlandı"]},"Save File":{"*":["Dosyayı Kaydet"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/usr/share/locale/tr/LC_MESSAGES/biglinux-webapps.mo b/biglinux-webapps/usr/share/locale/tr/LC_MESSAGES/biglinux-webapps.mo index 9d80343c64744db327dbd4f5046c904677392c27..6d2bf61e4b3d0b33d31415bc655d16ad42236a08 100644 GIT binary patch literal 5670 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 YgtL>8Co;|!r7o1cIt<8 literal 7208 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 ALjV8( diff --git a/biglinux-webapps/usr/share/locale/uk/LC_MESSAGES/biglinux-webapps.json b/biglinux-webapps/usr/share/locale/uk/LC_MESSAGES/biglinux-webapps.json index dc909a37..2314cac4 100644 --- a/biglinux-webapps/usr/share/locale/uk/LC_MESSAGES/biglinux-webapps.json +++ b/biglinux-webapps/usr/share/locale/uk/LC_MESSAGES/biglinux-webapps.json @@ -1 +1 @@ -{"uk":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Шаблони"]},"Choose a Template":{"*":["Виберіть шаблон"]},"Search templates...":{"*":["Шукати шаблони..."]},"Search templates":{"*":["Шаблони пошуку"]},"Search Results":{"*":["Результати пошуку"]},"No templates found":{"*":["Шаблони не знайдено"]},"Browser: {0}":{"*":["Браузер: {0}"]},"Edit WebApp":{"*":["Редагувати веб-додаток"]},"Edit {0}":{"*":["Редагувати {0}"]},"Delete WebApp":{"*":["Видалити веб-додаток"]},"Delete {0}":{"*":["Видалити {0}"]},"Welcome to WebApps Manager":{"*":["Ласкаво просимо до Менеджера веб-додатків"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["Що таке WebApps?\n\nWebApps — це веб-додатки, які працюють у спеціальному вікні браузера, забезпечуючи більш схожий на додаток досвід для ваших улюблених веб-сайтів.\n\nПереваги використання WebApps:\n\n• Зосередженість: Працюйте без відволікань від інших вкладок браузера\n• Інтеграція з робочим столом: Швидкий доступ з меню додатків\n• Ізольовані профілі: За бажанням, кожен веб-додаток може мати свої власні куки та налаштування\n"]},"Don't show this again":{"*":["Не показувати це знову"]},"Let's Start":{"*":["Давайте почнемо"]},"Select Browser":{"*":["Виберіть браузер"]},"Cancel":{"*":["Скасувати"]},"Select":{"*":["Вибрати"]},"System Default":{"*":["Системне значення за замовчуванням"]},"Default":{"*":["За замовчуванням"]},"Please select a browser.":{"*":["Будь ласка, виберіть браузер."]},"Error":{"*":["Помилка"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Додати веб-додаток"]},"Choose from templates":{"*":["Виберіть з шаблонів"]},"URL":{"*":["URL"]},"Detect":{"*":["Виявити"]},"Detect name and icon from website":{"*":["Визначити назву та значок з вебсайту"]},"Name":{"*":["Ім'я"]},"App Icon":{"*":["Іконка програми"]},"Select icon for the WebApp":{"*":["Виберіть значок для веб-додатку"]},"Available Icons":{"*":["Доступні значки"]},"Category":{"*":["Категорія"]},"Application Mode":{"*":["Режим застосунку"]},"Opens as a native window without browser interface":{"*":["Відкривається як рідне вікно без інтерфейсу браузера"]},"Browser":{"*":["Браузер"]},"Profile Settings":{"*":["Налаштування профілю"]},"Configure a separate browser profile for this webapp":{"*":["Налаштуйте окремий профіль браузера для цього вебдодатку."]},"Use separate profile":{"*":["Використовуйте окремий профіль"]},"Allows independent cookies and sessions":{"*":["Дозволяє незалежні куки та сесії"]},"Profile Name":{"*":["Ім'я профілю"]},"Save":{"*":["Зберегти"]},"Loading...":{"*":["Завантаження..."]},"Detecting website information, please wait":{"*":["Виявлення інформації про вебсайт, будь ласка, зачекайте"]},"Please enter a URL first.":{"*":["Будь ласка, спочатку введіть URL."]},"Please enter a name for the WebApp.":{"*":["Будь ласка, введіть назву для WebApp."]},"Please enter a URL for the WebApp.":{"*":["Будь ласка, введіть URL для WebApp."]},"Please select a browser for the WebApp.":{"*":["Будь ласка, виберіть браузер для WebApp."]},"WebApps Manager":{"*":["Менеджер веб-додатків"]},"Search WebApps":{"*":["Пошук веб-додатків"]},"Main Menu":{"*":["Головне меню"]},"Refresh":{"*":["Оновити"]},"Export WebApps":{"*":["Експортувати веб-додатки"]},"Import WebApps":{"*":["Імпорт веб-додатків"]},"Browse Applications Folder":{"*":["Переглянути папку програм"]},"Browse Profiles Folder":{"*":["Перегляд папки профілів"]},"Show Welcome Screen":{"*":["Показати екран вітання"]},"Remove All WebApps":{"*":["Видалити всі веб-додатки"]},"About":{"*":["Про програму"]},"Add":{"*":["Додати"]},"No WebApps Found":{"*":["Не знайдено веб-додатків"]},"Add a new webapp to get started":{"*":["Додайте новий веб-додаток, щоб почати."]},"WebApp created successfully":{"*":["Веб-додаток успішно створено"]},"WebApp updated successfully":{"*":["Веб-додаток успішно оновлено"]},"Browser changed to {0}":{"*":["Браузер змінено на {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["Ви впевнені, що хочете видалити {0}?\n\nURL: {1}\nБраузер: {2}"]},"Also delete configuration folder":{"*":["Також видаліть папку конфігурації."]},"Delete":{"*":["Видалити"]},"WebApp deleted successfully":{"*":["WebApp успішно видалено"]},"REMOVE ALL":{"*":["ВИДАЛИТИ ВСЕ"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["Ви впевнені, що хочете видалити всі свої веб-додатки? Цю дію не можна скасувати.\n\nВведіть \"{0}\", щоб підтвердити."]},"Remove All":{"*":["Видалити все"]},"All WebApps have been removed":{"*":["Усі веб-додатки були видалені."]},"Failed to remove all WebApps":{"*":["Не вдалося видалити всі веб-додатки."]},"Icon {0} of {1}":{"*":["Іконка {0} з {1}"]},"WebApps exported successfully":{"*":["WebApps успішно експортовано"]},"No WebApps":{"*":["Немає веб-додатків"]},"There are no WebApps to export.":{"*":["Немає веб-додатків для експорту."]},"The selected file does not exist.":{"*":["Вибраний файл не існує."]},"The selected file is not a valid ZIP archive.":{"*":["Вибраний файл не є дійсним ZIP-архівом."]},"Error importing WebApps":{"*":["Помилка імпорту WebApps"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["Імпортовано {} WebApps успішно (пропущено {} дублікатів)"]},"Imported {} WebApps successfully":{"*":["Імпортовано {} WebApps успішно"]},"No":{"*":["Ні"]},"Yes":{"*":["Так."]}}}} \ No newline at end of file +{"uk":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["Шаблони"]},"Choose a Template":{"*":["Виберіть шаблон"]},"Search templates...":{"*":["Шукати шаблони..."]},"Search Results":{"*":["Результати пошуку"]},"No templates found":{"*":["Шаблони не знайдено"]},"Edit WebApp":{"*":["Редагувати веб-додаток"]},"Delete WebApp":{"*":["Видалити веб-додаток"]},"Welcome to WebApps Manager":{"*":["Ласкаво просимо до Менеджера веб-додатків"]},"Don't show this again":{"*":["Не показувати це знову"]},"Let's Start":{"*":["Давайте почнемо"]},"Select Browser":{"*":["Виберіть браузер"]},"Cancel":{"*":["Скасувати"]},"Select":{"*":["Вибрати"]},"OK":{"*":["OK"]},"Add WebApp":{"*":["Додати веб-додаток"]},"URL":{"*":["URL"]},"Detect name and icon from website":{"*":["Визначити назву та значок з вебсайту"]},"Name":{"*":["Ім'я"]},"Category":{"*":["Категорія"]},"Opens as a native window without browser interface":{"*":["Відкривається як рідне вікно без інтерфейсу браузера"]},"Browser":{"*":["Браузер"]},"Allows independent cookies and sessions":{"*":["Дозволяє незалежні куки та сесії"]},"Profile Name":{"*":["Ім'я профілю"]},"Save":{"*":["Зберегти"]},"Loading...":{"*":["Завантаження..."]},"WebApps Manager":{"*":["Менеджер веб-додатків"]},"Search WebApps":{"*":["Пошук веб-додатків"]},"Export WebApps":{"*":["Експортувати веб-додатки"]},"Import WebApps":{"*":["Імпорт веб-додатків"]},"Browse Applications Folder":{"*":["Переглянути папку програм"]},"Browse Profiles Folder":{"*":["Перегляд папки профілів"]},"Remove All WebApps":{"*":["Видалити всі веб-додатки"]},"About":{"*":["Про програму"]},"Add a new webapp to get started":{"*":["Додайте новий веб-додаток, щоб почати."]},"WebApp created successfully":{"*":["Веб-додаток успішно створено"]},"WebApp updated successfully":{"*":["Веб-додаток успішно оновлено"]},"Also delete configuration folder":{"*":["Також видаліть папку конфігурації."]},"Delete":{"*":["Видалити"]},"WebApp deleted successfully":{"*":["WebApp успішно видалено"]},"Remove All":{"*":["Видалити все"]},"All WebApps have been removed":{"*":["Усі веб-додатки були видалені."]},"Failed to remove all WebApps":{"*":["Не вдалося видалити всі веб-додатки."]},"WebApps exported successfully":{"*":["WebApps успішно експортовано"]},"No WebApps":{"*":["Немає веб-додатків"]},"Change browser":{"*":["Змінити браузер"]},"Edit":{"*":["Редагувати"]},"New WebApp":{"*":["Новий WebApp"]},"Icon":{"*":["Іконка"]},"App Mode":{"*":["Режим додатку"]},"Separate Profile":{"*":["Окремий профіль"]},"Select Icon":{"*":["Вибрати іконку"]},"Images":{"*":["Зображення"]},"ZIP files":{"*":["ZIP-файли"]},"Imported {imported}, skipped {dups} duplicates":{"*":["Імпортовано {imported}, пропущено {dups} дублікатів"]},"Import failed":{"*":["Не вдалося імпортувати"]},"Export failed":{"*":["Не вдалося експортувати"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["Це видалить усі webapps та їхні записи на робочому столі. Цю дію неможливо скасувати."]},"Browser changed":{"*":["Браузер змінено"]},"What are WebApps?":{"*":["Що таке WebApps?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps — це веб-додатки, які працюють у спеціальному вікні браузера, забезпечуючи більш додаткоподібний досвід для ваших улюблених сайтів."]},"Benefits of using WebApps:":{"*":["Переваги використання WebApps:"]},"Focus":{"*":["Фокус"]},"Work without the distractions of other browser tabs":{"*":["Працюйте без відволікань від інших вкладок браузера"]},"Desktop Integration":{"*":["Інтеграція з робочим столом"]},"Quick access from your application menu":{"*":["Швидкий доступ із меню додатків"]},"Isolated Profiles":{"*":["Ізольовані профілі"]},"Each webapp can have its own cookies and settings":{"*":["Кожен webapp може мати власні куки та налаштування"]},"Back":{"*":["Назад"]},"Forward":{"*":["Вперед"]},"Reload":{"*":["Оновити"]},"Fullscreen":{"*":["Повноекранний режим"]},"Enter URL…":{"*":["Введіть URL…"]},"Zoom In":{"*":["Збільшити масштаб"]},"Zoom Out":{"*":["Зменшити масштаб"]},"Reset Zoom":{"*":["Скинути масштаб"]},"Developer Tools":{"*":["Інструменти розробника"]},"Menu":{"*":["Меню"]},"Open Link in Browser":{"*":["Відкрити посилання в браузері"]},"Download Complete":{"*":["Завантаження завершено"]},"Save File":{"*":["Зберегти файл"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/usr/share/locale/uk/LC_MESSAGES/biglinux-webapps.mo b/biglinux-webapps/usr/share/locale/uk/LC_MESSAGES/biglinux-webapps.mo index 9fa46640a922101852b2bd25c69770b959141d2b..0c4a836b88ca16612a17a5ca877a6e82a13f0cc4 100644 GIT binary patch literal 6862 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 aMZeIipI(9p^$VSM{o;)FlXb(hJpV7HzN6Cs literal 8760 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 diff --git a/biglinux-webapps/usr/share/locale/zh/LC_MESSAGES/biglinux-webapps.json b/biglinux-webapps/usr/share/locale/zh/LC_MESSAGES/biglinux-webapps.json index 7a5971da..772ea57e 100644 --- a/biglinux-webapps/usr/share/locale/zh/LC_MESSAGES/biglinux-webapps.json +++ b/biglinux-webapps/usr/share/locale/zh/LC_MESSAGES/biglinux-webapps.json @@ -1 +1 @@ -{"zh":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["模板"]},"Choose a Template":{"*":["选择模板"]},"Search templates...":{"*":["搜索模板..."]},"Search templates":{"*":["搜索模板"]},"Search Results":{"*":["搜索结果"]},"No templates found":{"*":["未找到模板"]},"Browser: {0}":{"*":["浏览器: {0}"]},"Edit WebApp":{"*":["编辑Web应用程序"]},"Edit {0}":{"*":["编辑 {0}"]},"Delete WebApp":{"*":["删除Web应用程序"]},"Delete {0}":{"*":["删除 {0}"]},"Welcome to WebApps Manager":{"*":["欢迎使用 WebApps 管理器"]},"What are WebApps?\n\nWebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.\n\nBenefits of using WebApps:\n\n• Focus: Work without the distractions of other browser tabs\n• Desktop Integration: Quick access from your application menu\n• Isolated Profiles: Optionally, each webapp can have its own cookies and settings\n":{"*":["什么是WebApps?\n\nWebApps是运行在专用浏览器窗口中的网络应用程序,为您最喜欢的网站提供更像应用程序的体验。\n\n使用WebApps的好处:\n\n• 专注:在没有其他浏览器标签干扰的情况下工作\n• 桌面集成:可以从应用程序菜单快速访问\n• 隔离的配置文件:可选地,每个WebApp可以拥有自己的Cookie和设置\n"]},"Don't show this again":{"*":["不要再显示此信息"]},"Let's Start":{"*":["让我们开始"]},"Select Browser":{"*":["选择浏览器"]},"Cancel":{"*":["取消"]},"Select":{"*":["选择"]},"System Default":{"*":["系统默认"]},"Default":{"*":["默认"]},"Please select a browser.":{"*":["请选择一个浏览器。"]},"Error":{"*":["错误"]},"OK":{"*":["确定"]},"Add WebApp":{"*":["添加Web应用程序"]},"Choose from templates":{"*":["从模板中选择"]},"URL":{"*":["网址"]},"Detect":{"*":["检测"]},"Detect name and icon from website":{"*":["从网站检测名称和图标"]},"Name":{"*":["名称"]},"App Icon":{"*":["应用程序图标"]},"Select icon for the WebApp":{"*":["为WebApp选择图标"]},"Available Icons":{"*":["可用图标"]},"Category":{"*":["类别"]},"Application Mode":{"*":["应用模式"]},"Opens as a native window without browser interface":{"*":["以原生窗口打开,无浏览器界面"]},"Browser":{"*":["浏览器"]},"Profile Settings":{"*":["个人资料设置"]},"Configure a separate browser profile for this webapp":{"*":["为此网络应用配置一个单独的浏览器配置文件"]},"Use separate profile":{"*":["使用单独的配置文件"]},"Allows independent cookies and sessions":{"*":["允许独立的 cookies 和会话"]},"Profile Name":{"*":["个人资料名称"]},"Save":{"*":["保存"]},"Loading...":{"*":["加载中..."]},"Detecting website information, please wait":{"*":["正在检测网站信息,请稍候"]},"Please enter a URL first.":{"*":["请先输入一个网址。"]},"Please enter a name for the WebApp.":{"*":["请输入WebApp的名称。"]},"Please enter a URL for the WebApp.":{"*":["请输入WebApp的URL。"]},"Please select a browser for the WebApp.":{"*":["请选择一个浏览器用于WebApp。"]},"WebApps Manager":{"*":["WebApps 管理器"]},"Search WebApps":{"*":["搜索网络应用程序"]},"Main Menu":{"*":["主菜单"]},"Refresh":{"*":["刷新"]},"Export WebApps":{"*":["导出Web应用程序"]},"Import WebApps":{"*":["导入Web应用程序"]},"Browse Applications Folder":{"*":["浏览应用程序文件夹"]},"Browse Profiles Folder":{"*":["浏览配置文件文件夹"]},"Show Welcome Screen":{"*":["显示欢迎屏幕"]},"Remove All WebApps":{"*":["删除所有Web应用程序"]},"About":{"*":["关于"]},"Add":{"*":["添加"]},"No WebApps Found":{"*":["未找到Web应用程序"]},"Add a new webapp to get started":{"*":["添加一个新的网站应用程序以开始使用"]},"WebApp created successfully":{"*":["WebApp 创建成功"]},"WebApp updated successfully":{"*":["WebApp 更新成功"]},"Browser changed to {0}":{"*":["浏览器已更改为 {0}"]},"Are you sure you want to delete {0}?\n\nURL: {1}\nBrowser: {2}":{"*":["您确定要删除 {0} 吗?\n\n网址: {1} \n浏览器: {2}"]},"Also delete configuration folder":{"*":["还删除配置文件夹"]},"Delete":{"*":["删除"]},"WebApp deleted successfully":{"*":["WebApp 删除成功"]},"REMOVE ALL":{"*":["删除所有"]},"Are you sure you want to remove all your WebApps? This action cannot be undone.\n\nType \"{0}\" to confirm.":{"*":["您确定要删除所有的 Web 应用吗?此操作无法撤销。\n\n输入“{0}”以确认。"]},"Remove All":{"*":["全部删除"]},"All WebApps have been removed":{"*":["所有Web应用程序已被移除"]},"Failed to remove all WebApps":{"*":["无法删除所有Web应用程序"]},"Icon {0} of {1}":{"*":["图标 {0} 的 {1}"]},"WebApps exported successfully":{"*":["WebApps 导出成功"]},"No WebApps":{"*":["没有Web应用程序"]},"There are no WebApps to export.":{"*":["没有可导出的Web应用程序。"]},"The selected file does not exist.":{"*":["所选文件不存在。"]},"The selected file is not a valid ZIP archive.":{"*":["所选文件不是有效的 ZIP 压缩文件。"]},"Error importing WebApps":{"*":["导入WebApps时出错"]},"Imported {} WebApps successfully ({} duplicates skipped)":{"*":["成功导入 {} 个 WebApps(跳过 {} 个重复项)"]},"Imported {} WebApps successfully":{"*":["成功导入 {} WebApps"]},"No":{"*":["不"]},"Yes":{"*":["是"]}}}} \ No newline at end of file +{"zh":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Templates":{"*":["模板"]},"Choose a Template":{"*":["选择模板"]},"Search templates...":{"*":["搜索模板..."]},"Search Results":{"*":["搜索结果"]},"No templates found":{"*":["未找到模板"]},"Edit WebApp":{"*":["编辑Web应用程序"]},"Delete WebApp":{"*":["删除Web应用程序"]},"Welcome to WebApps Manager":{"*":["欢迎使用 WebApps 管理器"]},"Don't show this again":{"*":["不要再显示此信息"]},"Let's Start":{"*":["让我们开始"]},"Select Browser":{"*":["选择浏览器"]},"Cancel":{"*":["取消"]},"Select":{"*":["选择"]},"OK":{"*":["确定"]},"Add WebApp":{"*":["添加Web应用程序"]},"URL":{"*":["网址"]},"Detect name and icon from website":{"*":["从网站检测名称和图标"]},"Name":{"*":["名称"]},"Category":{"*":["类别"]},"Opens as a native window without browser interface":{"*":["以原生窗口打开,无浏览器界面"]},"Browser":{"*":["浏览器"]},"Allows independent cookies and sessions":{"*":["允许独立的 cookies 和会话"]},"Profile Name":{"*":["个人资料名称"]},"Save":{"*":["保存"]},"Loading...":{"*":["加载中..."]},"WebApps Manager":{"*":["WebApps 管理器"]},"Search WebApps":{"*":["搜索网络应用程序"]},"Export WebApps":{"*":["导出Web应用程序"]},"Import WebApps":{"*":["导入Web应用程序"]},"Browse Applications Folder":{"*":["浏览应用程序文件夹"]},"Browse Profiles Folder":{"*":["浏览配置文件文件夹"]},"Remove All WebApps":{"*":["删除所有Web应用程序"]},"About":{"*":["关于"]},"Add a new webapp to get started":{"*":["添加一个新的网站应用程序以开始使用"]},"WebApp created successfully":{"*":["WebApp 创建成功"]},"WebApp updated successfully":{"*":["WebApp 更新成功"]},"Also delete configuration folder":{"*":["还删除配置文件夹"]},"Delete":{"*":["删除"]},"WebApp deleted successfully":{"*":["WebApp 删除成功"]},"Remove All":{"*":["全部删除"]},"All WebApps have been removed":{"*":["所有Web应用程序已被移除"]},"Failed to remove all WebApps":{"*":["无法删除所有Web应用程序"]},"WebApps exported successfully":{"*":["WebApps 导出成功"]},"No WebApps":{"*":["没有Web应用程序"]},"Change browser":{"*":["更改浏览器"]},"Edit":{"*":["编辑"]},"New WebApp":{"*":["新建 WebApp"]},"Icon":{"*":["图标"]},"App Mode":{"*":["应用模式"]},"Separate Profile":{"*":["独立配置文件"]},"Select Icon":{"*":["选择图标"]},"Images":{"*":["图片"]},"ZIP files":{"*":["ZIP 文件"]},"Imported {imported}, skipped {dups} duplicates":{"*":["已导入 {imported},跳过 {dups} 个重复项"]},"Import failed":{"*":["导入失败"]},"Export failed":{"*":["导出失败"]},"This will delete all webapps and their desktop entries. This cannot be undone.":{"*":["这将删除所有 webapps 及其桌面条目。此操作不可撤销。"]},"Browser changed":{"*":["浏览器已更改"]},"What are WebApps?":{"*":["什么是 WebApps?"]},"WebApps are web applications that run in a dedicated browser window, providing a more app-like experience for your favorite websites.":{"*":["WebApps 是在专用浏览器窗口中运行的网络应用,为您喜爱的网站提供更像应用程序的体验。"]},"Benefits of using WebApps:":{"*":["使用 WebApps 的好处:"]},"Focus":{"*":["专注"]},"Work without the distractions of other browser tabs":{"*":["无需分心于其他浏览器标签页"]},"Desktop Integration":{"*":["桌面集成"]},"Quick access from your application menu":{"*":["可从应用菜单快速访问"]},"Isolated Profiles":{"*":["独立配置文件"]},"Each webapp can have its own cookies and settings":{"*":["每个 WebApp 都可以拥有自己的 Cookie 和设置"]},"Back":{"*":["后退"]},"Forward":{"*":["前进"]},"Reload":{"*":["重新加载"]},"Fullscreen":{"*":["全屏"]},"Enter URL…":{"*":["输入 URL…"]},"Zoom In":{"*":["放大"]},"Zoom Out":{"*":["缩小"]},"Reset Zoom":{"*":["重置缩放"]},"Developer Tools":{"*":["开发者工具"]},"Menu":{"*":["菜单"]},"Open Link in Browser":{"*":["在浏览器中打开链接"]},"Download Complete":{"*":["下载完成"]},"Save File":{"*":["保存文件"]}}}} \ No newline at end of file diff --git a/biglinux-webapps/usr/share/locale/zh/LC_MESSAGES/biglinux-webapps.mo b/biglinux-webapps/usr/share/locale/zh/LC_MESSAGES/biglinux-webapps.mo index 555212febc11fd4b980e0dfd5d035cf74e97ee69..e46932eaa8e348f566f0a0820272d282473f31b1 100644 GIT binary patch literal 5216 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 Ue`Uig7+92J6Sy{x$(dgEUk!#1wg3PC literal 6650 zcma);eQ*@z9mgMA+UjYwrL`|=>r<=+Es26!X+$uPKvNPx5E`Z9vgNXSv%5z? zWIVx;#1O(u5(oq#5F`RgPy|9QFEg!EryZTPV`r?R!ykCNch_kL+nLts*gyLH?epw$ zA<*g0J@?t?{rCLdp1nAIS|`J^2IVf4cRt713*hr#z#pCsUt(@HqQ2!YGBKQeN>wXG;6=XLvb~`W~d>EVs()?#Z8ZW>vgHaGu*mJ7A5&RzN+rj(6 zL6Fw@0K|`7#vkqT8A#`!1|hx)hQM3F86fFx4oK%%uG)VNa@6a=dEgF^)_WVI{oezj z0(KFc24+C0p8ZYre*%)eJ_DzNw?KI6zZ;wj&H%p+t_Ej-CU_6H8zlXo1HT1c1hEAB z6r}a0L1^0lc98VLRecsn`#c1aJWD|Q*fPauK$@?EUjv^5Nv}Iper?#`s{K8X z&UpzWJ^vLf0B?n|$ZzI@Gae*(#_AA%2oe+NmPdvO@zQjqkegXm&gK+;<$xDY%7YTzZ+UIJlB z&Lnp1M z8<6C>r1(#e_P-I6XuaD(s^10DdiSaJQq^7#;>Vs=bqgeUUI1x+yQ+7AB=@Tz?KcY2 zy1xf$+(#gO>|^{r0R9Igeb0t*ssBlk_J0b5OE5>VS+NJCymT6bY1ywpvfKM0>Fry@LdK_OiR55;RK3hnzt)rd5}9#`)Hma7+v zr+ZOmp_HgL@+FE>ih((*Edcq^GF2%9r=d_TqK9%KJ&&P~f3Kj5dMN(sA%CKW>;Sj% z^U*`#0u<7HCCWW0vr&SlDtG}YpZ*l(VHC; z6gIzl!P+{_;hH7*T2Wmbi`fh3KTy3O6jC+6r$JP6Ef$OFVa?G^!{!dnvEl~T4X*Ks zh)|D+@M_C!u!Y4NbR%Lm%;qu6T(3uTqZXs;P3(bH3ZnWt!NrD{uykRB1+OtJzR`?Z zyhdAZTDl`R_On5|FcgA-i-aL+bjRjq4UgNjn3AnXN_r`Agk#teGaR?6rHHRJt#y#W zsWamaWEDK3+m5A$rSMqBM5C3H*3qi%kXofg*y|iK#>)&x)LQ;=<(f~%_3%2bg~P(O zd5vY(OPTZ3!s~?*57sHO&8V-Em6lnfM}?AXMT}(7qS1}BxzNIObW|+C!XN8O~LE+cudTtJo$i9Tl)o*feVN+PG8?>=%s)ixuM- zW$2-oz*BgI84;`)hKGT<9ak?68g_w{YPn4hZeAD)tzK1L#5c{^99kru2$i{;uRmAH z&!I|b2;~zCc~zYbwfVLtwHl_ws|An4Aq@eCs@fP6d5qDG5H9gvKt5IB!) z^o1%xZ-}g!&_{)a!!&3*7Bh{R@WeW^ z0dYunsnv9Yl}2~qr_KOSjZ}HW?q5hz?MU)Y`KYFuyfuk90^`Z4LO6umejOj8C!wig!=GKivXko!tN;@E;k?S;$_~JFXWjlq}>_HNyOeu9ZWr*($l&G&U#)e

>%ukrO-RFCjy%2wiD4%fjA{Lyr= zq8K@^qNIZx77PCD+L4$vB+M!i~j#*G) z*XogiMe$m@pvo-bp>oZ33aTv4u#rwptB5aIU0%+Y7gv<>`K1-bW#vy4mz1n3t*l&t zp+;>S(iT(+t-gqt7cXDBx_BwZm6tye)eB9l_R1KnTv1k0dPSZ&g%5_1l^sM`0bMOc z2;L3O14!b!@fh6!7H;py<4#S%yes2KtQuhzlp0}^l0*@oSFJmtrwW$hQwKSnA-+=f2%vvetC3zYIwxk((m;o+^!z))Dbo8WVhG8Gc|s| zJMgBvwLO0d2BgOJWKV4WII+e5L`#iLU_B)ndfj7VZr@9nNB2+qLW5Y|nSN?Q55)A| z==FM9+{SaMWLHjD?{HIkVBEd%hSzc$D|uTR-EC)6!>#W5W2v#8;PcAs-JU&oBzs_+ z*Ss@Wuze_%JeErC$d@$J-s84)x)Ud}i9?yeiR|9NV1?}dj`XWZ?2v72OOFkDT}`Rv zxhqR$6D@AfY3RlqYEKQHkVkXey0?XgnJunU{s3xz! z*BxzV@Q-xwpgXuf^XiLo1^B8kalryK_gzvbi^W||!OdN^J z{pE7rK%cj#4c7Md9`??3db|6w9SPsnGUI#P#$%TfJ-FR3B@RME5Gpg+hfW6Lzz3D= zYX3Ypmj|hjX1AX~XC?C%@>npllyR3CiSmyl|QIfDd^FJ zcea(Jkj~}#b$4f5`uJ(MM4+mHqZEsNpB$H(==EM4g70UB&Zqm^+(b9TZX?5QYxDMv zr~Bv#au7?8c4fwQT`h!c^@YfGbZ3T!m^(BI%V8Y8sBLfWIk#y9J$`f3$ko%O-Q_W_ z>Ge#??zShWy~Zd`R}?eeg|bM;r!s(B;wQ%=t5!i6$D4_H0v|+t-%u zy>NN7g=Gd`^O|?1lBZ;7GK6?$Yz+3L4~NunQYIWGl}u`5GRsXlV$TV$W!!B(eccY_ zLo(`M#AEJ`L+Oq~GMRfVdmsR%Cxl4gE9p*3iVRkB8=GaQNVk&FNkM`>*&!_f-Qn}# z+8y!;s!w{a%2&DlI{K05|@@}p7fhX(#bvED?LGF%B80|l#b;TSs^>BSXHqc92aLGPlW@^ zjv#(yM4UR3nb_gJ-tJ!LWa%@>bn=jj)?km81Wog=8Mp-`MbwdIaG3lK+~dgdUS~7; zHGSy0J6hADugQu2czJ8K50O(hjbPYSE<}T*#hJW0a#>|kGLc8&Zu0>*IU>VEeXgO6 su87HPlmoj?PinJydayUWa~q{gxth(TP-+;yC7={3L=athb8uAlUta)>Q~&?~ From 9db72fcf3808bcd9559640b9cde0c1fd743a882b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tales=20A=2E=20Mendon=C3=A7a?= Date: Wed, 15 Apr 2026 15:24:30 -0300 Subject: [PATCH 03/15] =?UTF-8?q?=F0=9F=90=9B=20fix:=20The=20closing=20com?= =?UTF-8?q?ma=20(})=20was=20missing=20from=20the=20package()=20function.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgbuild/PKGBUILD | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgbuild/PKGBUILD b/pkgbuild/PKGBUILD index a287fe36..c0e43786 100644 --- a/pkgbuild/PKGBUILD +++ b/pkgbuild/PKGBUILD @@ -50,3 +50,4 @@ package() { "${pkgdir}/usr/bin/big-webapps-gui" install -Dm755 "${srcdir}/${pkgname}/target/release/big-webapps-viewer" \ "${pkgdir}/usr/bin/big-webapps-viewer" +} From 0afaf86bfa6f906baff160ef45da67e6a83be6a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tales=20A=2E=20Mendon=C3=A7a?= Date: Wed, 15 Apr 2026 15:33:04 -0300 Subject: [PATCH 04/15] =?UTF-8?q?=F0=9F=90=9B=20fix:=20fix(build):=20fix?= =?UTF-8?q?=20PKGBUILD=20syntax=20+=20replace=20rustls=20with=20native-tls?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add missing closing brace in package() function - Switch reqwest from rustls-tls to native-tls backend Ring crate assembly (x25519) fails to link in CI environment native-tls uses system OpenSSL already in depends --- Cargo.lock | 515 ++++++++++++++++++++--------------------------------- Cargo.toml | 2 +- 2 files changed, 199 insertions(+), 318 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b91e6ebf..e84a00b8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -191,12 +191,6 @@ version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" -[[package]] -name = "cfg_aliases" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" - [[package]] name = "clap" version = "4.6.0" @@ -243,6 +237,22 @@ version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570" +[[package]] +name = "core-foundation" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "core-foundation-sys" +version = "0.8.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" + [[package]] name = "crc32fast" version = "1.5.0" @@ -385,6 +395,22 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" +[[package]] +name = "errno" +version = "0.3.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" +dependencies = [ + "libc", + "windows-sys 0.52.0", +] + +[[package]] +name = "fastrand" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" + [[package]] name = "fdeflate" version = "0.3.7" @@ -420,6 +446,21 @@ dependencies = [ "miniz_oxide", ] +[[package]] +name = "foreign-types" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" +dependencies = [ + "foreign-types-shared", +] + +[[package]] +name = "foreign-types-shared" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" + [[package]] name = "form_urlencoded" version = "1.2.2" @@ -593,10 +634,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" dependencies = [ "cfg-if", - "js-sys", "libc", "wasi", - "wasm-bindgen", ] [[package]] @@ -606,11 +645,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" dependencies = [ "cfg-if", - "js-sys", "libc", "r-efi", "wasip2", - "wasm-bindgen", ] [[package]] @@ -907,19 +944,19 @@ dependencies = [ ] [[package]] -name = "hyper-rustls" -version = "0.27.9" +name = "hyper-tls" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f" +checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" dependencies = [ - "http", + "bytes", + "http-body-util", "hyper", "hyper-util", - "rustls", + "native-tls", "tokio", - "tokio-rustls", + "tokio-native-tls", "tower-service", - "webpki-roots", ] [[package]] @@ -1229,6 +1266,12 @@ dependencies = [ "libc", ] +[[package]] +name = "linux-raw-sys" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53" + [[package]] name = "litemap" version = "0.8.2" @@ -1263,12 +1306,6 @@ version = "0.4.29" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" -[[package]] -name = "lru-slab" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" - [[package]] name = "mac" version = "0.1.1" @@ -1355,6 +1392,23 @@ dependencies = [ "pxfm", ] +[[package]] +name = "native-tls" +version = "0.2.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2" +dependencies = [ + "libc", + "log", + "openssl", + "openssl-probe", + "openssl-sys", + "schannel", + "security-framework", + "security-framework-sys", + "tempfile", +] + [[package]] name = "new_debug_unreachable" version = "1.0.6" @@ -1422,6 +1476,50 @@ dependencies = [ "pathdiff", ] +[[package]] +name = "openssl" +version = "0.10.76" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "951c002c75e16ea2c65b8c7e4d3d51d5530d8dfa7d060b4776828c88cfb18ecf" +dependencies = [ + "bitflags", + "cfg-if", + "foreign-types", + "libc", + "once_cell", + "openssl-macros", + "openssl-sys", +] + +[[package]] +name = "openssl-macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "openssl-probe" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe" + +[[package]] +name = "openssl-sys" +version = "0.9.112" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57d55af3b3e226502be1526dfdba67ab0e9c96fc293004e79576b2b9edb0dbdb" +dependencies = [ + "cc", + "libc", + "pkg-config", + "vcpkg", +] + [[package]] name = "option-ext" version = "0.2.0" @@ -1514,7 +1612,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" dependencies = [ "phf_shared", - "rand 0.8.5", + "rand", ] [[package]] @@ -1588,15 +1686,6 @@ dependencies = [ "zerovec", ] -[[package]] -name = "ppv-lite86" -version = "0.2.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" -dependencies = [ - "zerocopy", -] - [[package]] name = "precomputed-hash" version = "0.1.1" @@ -1627,61 +1716,6 @@ version = "0.1.28" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b5a041e753da8b807c9255f28de81879c78c876392ff2469cde94799b2896b9d" -[[package]] -name = "quinn" -version = "0.11.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" -dependencies = [ - "bytes", - "cfg_aliases", - "pin-project-lite", - "quinn-proto", - "quinn-udp", - "rustc-hash", - "rustls", - "socket2", - "thiserror", - "tokio", - "tracing", - "web-time", -] - -[[package]] -name = "quinn-proto" -version = "0.11.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098" -dependencies = [ - "bytes", - "getrandom 0.3.4", - "lru-slab", - "rand 0.9.4", - "ring", - "rustc-hash", - "rustls", - "rustls-pki-types", - "slab", - "thiserror", - "tinyvec", - "tracing", - "web-time", -] - -[[package]] -name = "quinn-udp" -version = "0.5.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" -dependencies = [ - "cfg_aliases", - "libc", - "once_cell", - "socket2", - "tracing", - "windows-sys 0.60.2", -] - [[package]] name = "quote" version = "1.0.45" @@ -1703,27 +1737,7 @@ version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" dependencies = [ - "rand_core 0.6.4", -] - -[[package]] -name = "rand" -version = "0.9.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea" -dependencies = [ - "rand_chacha", - "rand_core 0.9.5", -] - -[[package]] -name = "rand_chacha" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" -dependencies = [ - "ppv-lite86", - "rand_core 0.9.5", + "rand_core", ] [[package]] @@ -1732,15 +1746,6 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" -[[package]] -name = "rand_core" -version = "0.9.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c" -dependencies = [ - "getrandom 0.3.4", -] - [[package]] name = "redox_syscall" version = "0.5.18" @@ -1805,21 +1810,20 @@ dependencies = [ "http-body", "http-body-util", "hyper", - "hyper-rustls", + "hyper-tls", "hyper-util", "js-sys", "log", + "native-tls", "percent-encoding", "pin-project-lite", - "quinn", - "rustls", "rustls-pki-types", "serde", "serde_json", "serde_urlencoded", "sync_wrapper", "tokio", - "tokio-rustls", + "tokio-native-tls", "tower", "tower-http", "tower-service", @@ -1827,29 +1831,8 @@ dependencies = [ "wasm-bindgen", "wasm-bindgen-futures", "web-sys", - "webpki-roots", -] - -[[package]] -name = "ring" -version = "0.17.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" -dependencies = [ - "cc", - "cfg-if", - "getrandom 0.2.17", - "libc", - "untrusted", - "windows-sys 0.52.0", ] -[[package]] -name = "rustc-hash" -version = "2.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe" - [[package]] name = "rustc_version" version = "0.4.1" @@ -1860,17 +1843,16 @@ dependencies = [ ] [[package]] -name = "rustls" -version = "0.23.38" +name = "rustix" +version = "1.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69f9466fb2c14ea04357e91413efb882e2a6d4a406e625449bc0a5d360d53a21" +checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190" dependencies = [ - "once_cell", - "ring", - "rustls-pki-types", - "rustls-webpki", - "subtle", - "zeroize", + "bitflags", + "errno", + "libc", + "linux-raw-sys", + "windows-sys 0.52.0", ] [[package]] @@ -1879,21 +1861,9 @@ version = "1.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd" dependencies = [ - "web-time", "zeroize", ] -[[package]] -name = "rustls-webpki" -version = "0.103.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8279bb85272c9f10811ae6a6c547ff594d6a7f3c6c6b02ee9726d1d0dcfcdd06" -dependencies = [ - "ring", - "rustls-pki-types", - "untrusted", -] - [[package]] name = "rustversion" version = "1.0.22" @@ -1906,6 +1876,15 @@ version = "1.0.23" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" +[[package]] +name = "schannel" +version = "0.1.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939" +dependencies = [ + "windows-sys 0.61.2", +] + [[package]] name = "scopeguard" version = "1.2.0" @@ -1927,6 +1906,29 @@ dependencies = [ "tendril", ] +[[package]] +name = "security-framework" +version = "3.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d" +dependencies = [ + "bitflags", + "core-foundation", + "core-foundation-sys", + "libc", + "security-framework-sys", +] + +[[package]] +name = "security-framework-sys" +version = "2.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3" +dependencies = [ + "core-foundation-sys", + "libc", +] + [[package]] name = "selectors" version = "0.26.0" @@ -2128,12 +2130,6 @@ version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" -[[package]] -name = "subtle" -version = "2.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" - [[package]] name = "syn" version = "2.0.117" @@ -2190,6 +2186,19 @@ version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "83176759e9416cf81ee66cb6508dbfe9c96f20b8b56265a39917551c23c70964" +[[package]] +name = "tempfile" +version = "3.27.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd" +dependencies = [ + "fastrand", + "getrandom 0.3.4", + "once_cell", + "rustix", + "windows-sys 0.52.0", +] + [[package]] name = "tendril" version = "0.4.3" @@ -2231,21 +2240,6 @@ dependencies = [ "zerovec", ] -[[package]] -name = "tinyvec" -version = "1.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3" -dependencies = [ - "tinyvec_macros", -] - -[[package]] -name = "tinyvec_macros" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" - [[package]] name = "tokio" version = "1.52.0" @@ -2261,12 +2255,12 @@ dependencies = [ ] [[package]] -name = "tokio-rustls" -version = "0.26.4" +name = "tokio-native-tls" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" +checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" dependencies = [ - "rustls", + "native-tls", "tokio", ] @@ -2403,12 +2397,6 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254" -[[package]] -name = "untrusted" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" - [[package]] name = "url" version = "2.5.8" @@ -2439,6 +2427,12 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" +[[package]] +name = "vcpkg" +version = "0.2.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" + [[package]] name = "version-compare" version = "0.2.1" @@ -2534,16 +2528,6 @@ dependencies = [ "wasm-bindgen", ] -[[package]] -name = "web-time" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" -dependencies = [ - "js-sys", - "wasm-bindgen", -] - [[package]] name = "webapps-core" version = "4.0.0" @@ -2636,15 +2620,6 @@ dependencies = [ "system-deps", ] -[[package]] -name = "webpki-roots" -version = "1.0.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed" -dependencies = [ - "rustls-pki-types", -] - [[package]] name = "winapi" version = "0.3.9" @@ -2679,16 +2654,7 @@ version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" dependencies = [ - "windows-targets 0.52.6", -] - -[[package]] -name = "windows-sys" -version = "0.60.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" -dependencies = [ - "windows-targets 0.53.5", + "windows-targets", ] [[package]] @@ -2706,31 +2672,14 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" dependencies = [ - "windows_aarch64_gnullvm 0.52.6", - "windows_aarch64_msvc 0.52.6", - "windows_i686_gnu 0.52.6", - "windows_i686_gnullvm 0.52.6", - "windows_i686_msvc 0.52.6", - "windows_x86_64_gnu 0.52.6", - "windows_x86_64_gnullvm 0.52.6", - "windows_x86_64_msvc 0.52.6", -] - -[[package]] -name = "windows-targets" -version = "0.53.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" -dependencies = [ - "windows-link", - "windows_aarch64_gnullvm 0.53.1", - "windows_aarch64_msvc 0.53.1", - "windows_i686_gnu 0.53.1", - "windows_i686_gnullvm 0.53.1", - "windows_i686_msvc 0.53.1", - "windows_x86_64_gnu 0.53.1", - "windows_x86_64_gnullvm 0.53.1", - "windows_x86_64_msvc 0.53.1", + "windows_aarch64_gnullvm", + "windows_aarch64_msvc", + "windows_i686_gnu", + "windows_i686_gnullvm", + "windows_i686_msvc", + "windows_x86_64_gnu", + "windows_x86_64_gnullvm", + "windows_x86_64_msvc", ] [[package]] @@ -2739,96 +2688,48 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" -[[package]] -name = "windows_aarch64_gnullvm" -version = "0.53.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" - [[package]] name = "windows_aarch64_msvc" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" -[[package]] -name = "windows_aarch64_msvc" -version = "0.53.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" - [[package]] name = "windows_i686_gnu" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" -[[package]] -name = "windows_i686_gnu" -version = "0.53.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" - [[package]] name = "windows_i686_gnullvm" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" -[[package]] -name = "windows_i686_gnullvm" -version = "0.53.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" - [[package]] name = "windows_i686_msvc" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" -[[package]] -name = "windows_i686_msvc" -version = "0.53.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" - [[package]] name = "windows_x86_64_gnu" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" -[[package]] -name = "windows_x86_64_gnu" -version = "0.53.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" - [[package]] name = "windows_x86_64_gnullvm" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" -[[package]] -name = "windows_x86_64_gnullvm" -version = "0.53.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" - [[package]] name = "windows_x86_64_msvc" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" -[[package]] -name = "windows_x86_64_msvc" -version = "0.53.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" - [[package]] name = "winnow" version = "1.0.1" @@ -2873,26 +2774,6 @@ dependencies = [ "synstructure", ] -[[package]] -name = "zerocopy" -version = "0.8.48" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9" -dependencies = [ - "zerocopy-derive", -] - -[[package]] -name = "zerocopy-derive" -version = "0.8.48" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - [[package]] name = "zerofrom" version = "0.1.7" diff --git a/Cargo.toml b/Cargo.toml index 21bf5057..71dc11dd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,7 +26,7 @@ env_logger = "0.11" anyhow = "1" dirs = "6" clap = { version = "4", features = ["derive"] } -reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "blocking"] } +reqwest = { version = "0.12", default-features = false, features = ["native-tls", "blocking"] } scraper = "0.22" zbus = "5" tokio = { version = "1", features = ["rt-multi-thread", "macros"] } From 109c46f3914432d06e313d3d5cf69193615e59f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tales=20A=2E=20Mendon=C3=A7a?= Date: Wed, 15 Apr 2026 19:28:03 -0300 Subject: [PATCH 05/15] =?UTF-8?q?=F0=9F=90=9B=20fix:=20fix:=20icon=20resol?= =?UTF-8?q?ution,=20app=20mode=20indicator,=20and=20Wayland=20app-id?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fix SVG icons rendering blurry: resolve_icon_path now returns icon name (not absolute path) for hicolor theme icons, letting GTK render SVGs at correct pixel size. File-based SVGs use gdk-pixbuf for rasterization at 2x target size. - Fix app mode missing browser indicator: show application-x-executable icon with "App mode" tooltip when webapp uses built-in viewer. - Fix Wayland dock icon: change APP_ID to br.com.biglinux.webapps to match .desktop file name. Update StartupWMClass accordingly. - Reduce webapp list icon size from 64px to 48px for better proportion. - Add gdk-pixbuf dependency for high-quality SVG rasterization. --- Cargo.lock | 1 + Cargo.toml | 1 + .../br.com.biglinux.webapps.desktop | 2 +- crates/webapps-core/src/config.rs | 2 +- crates/webapps-manager/Cargo.toml | 1 + crates/webapps-manager/src/service.rs | 8 ++-- crates/webapps-manager/src/webapp_row.rs | 39 ++++++++++++------- 7 files changed, 34 insertions(+), 20 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e84a00b8..1d1bde7a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2548,6 +2548,7 @@ dependencies = [ "anyhow", "dirs", "env_logger", + "gdk-pixbuf", "gdk4", "gettext-rs", "gio", diff --git a/Cargo.toml b/Cargo.toml index 71dc11dd..db6f4c9d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,6 +19,7 @@ webkit6 = { version = "0.6", features = ["v2_50"] } glib = { package = "glib", version = "0.22" } gio = { package = "gio", version = "0.22" } gdk4 = { package = "gdk4", version = "0.11" } +gdk-pixbuf = { package = "gdk-pixbuf", version = "0.22" } serde = { version = "1", features = ["derive"] } serde_json = "1" log = "0.4" diff --git a/biglinux-webapps/usr/share/applications/br.com.biglinux.webapps.desktop b/biglinux-webapps/usr/share/applications/br.com.biglinux.webapps.desktop index 13801fc2..e39e649b 100644 --- a/biglinux-webapps/usr/share/applications/br.com.biglinux.webapps.desktop +++ b/biglinux-webapps/usr/share/applications/br.com.biglinux.webapps.desktop @@ -30,7 +30,7 @@ Name[uk]=Додавання та видалення веб-програм Name[zh]=添加和删除 Web 应用 Icon=big-webapps Exec=big-webapps-gui -StartupWMClass=big-webapps-gui +StartupWMClass=br.com.biglinux.webapps Categories=GTK;Utility; Terminal=false StartupNotify=true diff --git a/crates/webapps-core/src/config.rs b/crates/webapps-core/src/config.rs index 7b96403b..2e91df29 100644 --- a/crates/webapps-core/src/config.rs +++ b/crates/webapps-core/src/config.rs @@ -1,7 +1,7 @@ use std::path::PathBuf; pub const APP_VERSION: &str = "4.0.0"; -pub const APP_ID: &str = "com.biglinux.WebApps"; +pub const APP_ID: &str = "br.com.biglinux.webapps"; /// Config dir: ~/.config/biglinux-webapps/ pub fn config_dir() -> PathBuf { diff --git a/crates/webapps-manager/Cargo.toml b/crates/webapps-manager/Cargo.toml index d652d576..10d23c50 100644 --- a/crates/webapps-manager/Cargo.toml +++ b/crates/webapps-manager/Cargo.toml @@ -15,6 +15,7 @@ libadwaita.workspace = true glib.workspace = true gio.workspace = true gdk4.workspace = true +gdk-pixbuf.workspace = true serde.workspace = true serde_json.workspace = true log.workspace = true diff --git a/crates/webapps-manager/src/service.rs b/crates/webapps-manager/src/service.rs index 40be7a7f..f8e39528 100644 --- a/crates/webapps-manager/src/service.rs +++ b/crates/webapps-manager/src/service.rs @@ -568,20 +568,20 @@ pub fn resolve_icon_path(icon: &str) -> String { return candidate.to_string_lossy().to_string(); } } - // user-local hicolor + // user-local hicolor — return icon name so GTK theme renders SVG at correct size let hicolor_user = local_icons.join("hicolor/scalable/apps"); for ext in &["svg", "png"] { let candidate = hicolor_user.join(format!("{icon}.{ext}")); if candidate.exists() { - return candidate.to_string_lossy().to_string(); + return icon.to_string(); } } - // system hicolor + // system hicolor — return icon name for GTK theme lookup let hicolor_sys = PathBuf::from("/usr/share/icons/hicolor/scalable/apps"); for ext in &["svg", "png"] { let candidate = hicolor_sys.join(format!("{icon}.{ext}")); if candidate.exists() { - return candidate.to_string_lossy().to_string(); + return icon.to_string(); } } // system icons dir (biglinux-specific) diff --git a/crates/webapps-manager/src/webapp_row.rs b/crates/webapps-manager/src/webapp_row.rs index fb072ea5..ba122e3c 100644 --- a/crates/webapps-manager/src/webapp_row.rs +++ b/crates/webapps-manager/src/webapp_row.rs @@ -4,7 +4,7 @@ use libadwaita as adw; use adw::prelude::*; use gettextrs::gettext; -use webapps_core::models::WebApp; +use webapps_core::models::{AppMode, WebApp}; use crate::service; @@ -23,18 +23,20 @@ pub fn build_row(webapp: &WebApp, callbacks: &std::rc::Rc) -> gtk: hbox.set_margin_start(12); hbox.set_margin_end(12); - // icon + // icon — prefer icon name for theme lookup (crisp SVG at any size) let icon = gtk::Image::new(); - icon.set_pixel_size(64); + icon.set_pixel_size(48); let icon_path = service::resolve_icon_path(&webapp.app_icon); let p = std::path::Path::new(&icon_path); if p.is_absolute() && p.exists() { - // load from file — use paintable for SVGs to get crisp rendering if icon_path.ends_with(".svg") { - if let Ok(tex) = gdk4::Texture::from_filename(p) { - icon.set_paintable(Some(&tex)); - } else { - icon.set_from_file(Some(p)); + // rasterize SVG at 2x target → crisp on HiDPI + match gdk_pixbuf::Pixbuf::from_file_at_size(p, 192, 192) { + Ok(pixbuf) => { + let tex = gdk4::Texture::for_pixbuf(&pixbuf); + icon.set_paintable(Some(&tex)); + } + Err(_) => icon.set_from_file(Some(p)), } } else { icon.set_from_file(Some(p)); @@ -69,13 +71,22 @@ pub fn build_row(webapp: &WebApp, callbacks: &std::rc::Rc) -> gtk: actions.add_css_class("linked"); actions.set_valign(gtk::Align::Center); - // browser indicator button - let browser_icon_name = webapps_core::models::Browser { - browser_id: webapp.browser.clone(), - is_default: false, - }.icon_name(); + // browser indicator — show app icon for App mode, browser icon otherwise + let browser_icon_name = if webapp.app_mode == AppMode::App { + "application-x-executable-symbolic".to_string() + } else { + webapps_core::models::Browser { + browser_id: webapp.browser.clone(), + is_default: false, + }.icon_name() + }; let browser_btn = gtk::Button::from_icon_name(&browser_icon_name); - browser_btn.set_tooltip_text(Some(&gettext("Change browser"))); + let browser_tooltip = if webapp.app_mode == AppMode::App { + gettext("App mode") + } else { + gettext("Change browser") + }; + browser_btn.set_tooltip_text(Some(&browser_tooltip)); browser_btn.add_css_class("flat"); { let cb = callbacks.clone(); From 3b46872c90c2424f6b7432bb7f2bc44f800b53d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tales=20A=2E=20Mendon=C3=A7a?= Date: Wed, 15 Apr 2026 20:40:38 -0300 Subject: [PATCH 06/15] =?UTF-8?q?=E2=9C=A8=20feat:=20feat:=20template=20ga?= =?UTF-8?q?llery,=20site=20detection,=20and=20UI=20polish?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Template gallery: rewrite callback to fire directly in connect_activated instead of connect_destroy (GTK4 close() ≠ immediate destroy). Fix RefCell borrow panic when set_text triggers connect_changed during active borrow. - Site detection (favicon.rs): switch reqwest native-tls → rustls-tls (fix builder error on systems w/o OpenSSL). Auto-prepend https:// when URL has no scheme. Always update name on re-detect (remove is_empty guard). - Icon loading: centralize in load_icon() helper (webapp_row.rs). Use gdk-pixbuf for file-based SVGs at 4× pixel_size. Return icon name (not path) for hicolor dirs so GTK renders at correct size. Fix browser icons in browser_dialog.rs via same pipeline. - Detect button: flat button w/ 24px globe icon (emblem-web-symbolic). - CSS system: add style.rs w/ custom classes (.webapp-icon, .webapp-row, .action-btn). Load provider in connect_startup. - Content wrap: AdwClamp max 900px in main window. --- Cargo.lock | 423 ++++++++++-------- Cargo.toml | 2 +- crates/webapps-manager/src/browser_dialog.rs | 3 +- crates/webapps-manager/src/favicon.rs | 13 +- crates/webapps-manager/src/main.rs | 5 + crates/webapps-manager/src/style.rs | 62 +++ .../webapps-manager/src/template_gallery.rs | 43 +- crates/webapps-manager/src/webapp_dialog.rs | 85 ++-- crates/webapps-manager/src/webapp_row.rs | 84 ++-- crates/webapps-manager/src/window.rs | 20 +- 10 files changed, 445 insertions(+), 295 deletions(-) create mode 100644 crates/webapps-manager/src/style.rs diff --git a/Cargo.lock b/Cargo.lock index 1d1bde7a..470153ee 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -191,6 +191,12 @@ version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" +[[package]] +name = "cfg_aliases" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" + [[package]] name = "clap" version = "4.6.0" @@ -237,22 +243,6 @@ version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570" -[[package]] -name = "core-foundation" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" -dependencies = [ - "core-foundation-sys", - "libc", -] - -[[package]] -name = "core-foundation-sys" -version = "0.8.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" - [[package]] name = "crc32fast" version = "1.5.0" @@ -395,22 +385,6 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" -[[package]] -name = "errno" -version = "0.3.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" -dependencies = [ - "libc", - "windows-sys 0.52.0", -] - -[[package]] -name = "fastrand" -version = "2.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" - [[package]] name = "fdeflate" version = "0.3.7" @@ -446,21 +420,6 @@ dependencies = [ "miniz_oxide", ] -[[package]] -name = "foreign-types" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" -dependencies = [ - "foreign-types-shared", -] - -[[package]] -name = "foreign-types-shared" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" - [[package]] name = "form_urlencoded" version = "1.2.2" @@ -634,8 +593,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" dependencies = [ "cfg-if", + "js-sys", "libc", "wasi", + "wasm-bindgen", ] [[package]] @@ -645,9 +606,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" dependencies = [ "cfg-if", + "js-sys", "libc", "r-efi", "wasip2", + "wasm-bindgen", ] [[package]] @@ -944,19 +907,19 @@ dependencies = [ ] [[package]] -name = "hyper-tls" -version = "0.6.0" +name = "hyper-rustls" +version = "0.27.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" +checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f" dependencies = [ - "bytes", - "http-body-util", + "http", "hyper", "hyper-util", - "native-tls", + "rustls", "tokio", - "tokio-native-tls", + "tokio-rustls", "tower-service", + "webpki-roots", ] [[package]] @@ -1266,12 +1229,6 @@ dependencies = [ "libc", ] -[[package]] -name = "linux-raw-sys" -version = "0.12.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53" - [[package]] name = "litemap" version = "0.8.2" @@ -1306,6 +1263,12 @@ version = "0.4.29" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" +[[package]] +name = "lru-slab" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" + [[package]] name = "mac" version = "0.1.1" @@ -1392,23 +1355,6 @@ dependencies = [ "pxfm", ] -[[package]] -name = "native-tls" -version = "0.2.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2" -dependencies = [ - "libc", - "log", - "openssl", - "openssl-probe", - "openssl-sys", - "schannel", - "security-framework", - "security-framework-sys", - "tempfile", -] - [[package]] name = "new_debug_unreachable" version = "1.0.6" @@ -1476,50 +1422,6 @@ dependencies = [ "pathdiff", ] -[[package]] -name = "openssl" -version = "0.10.76" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "951c002c75e16ea2c65b8c7e4d3d51d5530d8dfa7d060b4776828c88cfb18ecf" -dependencies = [ - "bitflags", - "cfg-if", - "foreign-types", - "libc", - "once_cell", - "openssl-macros", - "openssl-sys", -] - -[[package]] -name = "openssl-macros" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "openssl-probe" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe" - -[[package]] -name = "openssl-sys" -version = "0.9.112" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57d55af3b3e226502be1526dfdba67ab0e9c96fc293004e79576b2b9edb0dbdb" -dependencies = [ - "cc", - "libc", - "pkg-config", - "vcpkg", -] - [[package]] name = "option-ext" version = "0.2.0" @@ -1612,7 +1514,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" dependencies = [ "phf_shared", - "rand", + "rand 0.8.5", ] [[package]] @@ -1686,6 +1588,15 @@ dependencies = [ "zerovec", ] +[[package]] +name = "ppv-lite86" +version = "0.2.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" +dependencies = [ + "zerocopy", +] + [[package]] name = "precomputed-hash" version = "0.1.1" @@ -1716,6 +1627,61 @@ version = "0.1.28" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b5a041e753da8b807c9255f28de81879c78c876392ff2469cde94799b2896b9d" +[[package]] +name = "quinn" +version = "0.11.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" +dependencies = [ + "bytes", + "cfg_aliases", + "pin-project-lite", + "quinn-proto", + "quinn-udp", + "rustc-hash", + "rustls", + "socket2", + "thiserror", + "tokio", + "tracing", + "web-time", +] + +[[package]] +name = "quinn-proto" +version = "0.11.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098" +dependencies = [ + "bytes", + "getrandom 0.3.4", + "lru-slab", + "rand 0.9.4", + "ring", + "rustc-hash", + "rustls", + "rustls-pki-types", + "slab", + "thiserror", + "tinyvec", + "tracing", + "web-time", +] + +[[package]] +name = "quinn-udp" +version = "0.5.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" +dependencies = [ + "cfg_aliases", + "libc", + "once_cell", + "socket2", + "tracing", + "windows-sys 0.52.0", +] + [[package]] name = "quote" version = "1.0.45" @@ -1737,7 +1703,27 @@ version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" dependencies = [ - "rand_core", + "rand_core 0.6.4", +] + +[[package]] +name = "rand" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea" +dependencies = [ + "rand_chacha", + "rand_core 0.9.5", +] + +[[package]] +name = "rand_chacha" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" +dependencies = [ + "ppv-lite86", + "rand_core 0.9.5", ] [[package]] @@ -1746,6 +1732,15 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" +[[package]] +name = "rand_core" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c" +dependencies = [ + "getrandom 0.3.4", +] + [[package]] name = "redox_syscall" version = "0.5.18" @@ -1810,20 +1805,21 @@ dependencies = [ "http-body", "http-body-util", "hyper", - "hyper-tls", + "hyper-rustls", "hyper-util", "js-sys", "log", - "native-tls", "percent-encoding", "pin-project-lite", + "quinn", + "rustls", "rustls-pki-types", "serde", "serde_json", "serde_urlencoded", "sync_wrapper", "tokio", - "tokio-native-tls", + "tokio-rustls", "tower", "tower-http", "tower-service", @@ -1831,8 +1827,29 @@ dependencies = [ "wasm-bindgen", "wasm-bindgen-futures", "web-sys", + "webpki-roots", ] +[[package]] +name = "ring" +version = "0.17.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" +dependencies = [ + "cc", + "cfg-if", + "getrandom 0.2.17", + "libc", + "untrusted", + "windows-sys 0.52.0", +] + +[[package]] +name = "rustc-hash" +version = "2.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe" + [[package]] name = "rustc_version" version = "0.4.1" @@ -1843,16 +1860,17 @@ dependencies = [ ] [[package]] -name = "rustix" -version = "1.1.4" +name = "rustls" +version = "0.23.38" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190" +checksum = "69f9466fb2c14ea04357e91413efb882e2a6d4a406e625449bc0a5d360d53a21" dependencies = [ - "bitflags", - "errno", - "libc", - "linux-raw-sys", - "windows-sys 0.52.0", + "once_cell", + "ring", + "rustls-pki-types", + "rustls-webpki", + "subtle", + "zeroize", ] [[package]] @@ -1861,9 +1879,21 @@ version = "1.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd" dependencies = [ + "web-time", "zeroize", ] +[[package]] +name = "rustls-webpki" +version = "0.103.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8279bb85272c9f10811ae6a6c547ff594d6a7f3c6c6b02ee9726d1d0dcfcdd06" +dependencies = [ + "ring", + "rustls-pki-types", + "untrusted", +] + [[package]] name = "rustversion" version = "1.0.22" @@ -1876,15 +1906,6 @@ version = "1.0.23" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" -[[package]] -name = "schannel" -version = "0.1.29" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939" -dependencies = [ - "windows-sys 0.61.2", -] - [[package]] name = "scopeguard" version = "1.2.0" @@ -1906,29 +1927,6 @@ dependencies = [ "tendril", ] -[[package]] -name = "security-framework" -version = "3.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d" -dependencies = [ - "bitflags", - "core-foundation", - "core-foundation-sys", - "libc", - "security-framework-sys", -] - -[[package]] -name = "security-framework-sys" -version = "2.17.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3" -dependencies = [ - "core-foundation-sys", - "libc", -] - [[package]] name = "selectors" version = "0.26.0" @@ -2130,6 +2128,12 @@ version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" +[[package]] +name = "subtle" +version = "2.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" + [[package]] name = "syn" version = "2.0.117" @@ -2186,19 +2190,6 @@ version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "83176759e9416cf81ee66cb6508dbfe9c96f20b8b56265a39917551c23c70964" -[[package]] -name = "tempfile" -version = "3.27.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd" -dependencies = [ - "fastrand", - "getrandom 0.3.4", - "once_cell", - "rustix", - "windows-sys 0.52.0", -] - [[package]] name = "tendril" version = "0.4.3" @@ -2240,6 +2231,21 @@ dependencies = [ "zerovec", ] +[[package]] +name = "tinyvec" +version = "1.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3" +dependencies = [ + "tinyvec_macros", +] + +[[package]] +name = "tinyvec_macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" + [[package]] name = "tokio" version = "1.52.0" @@ -2255,12 +2261,12 @@ dependencies = [ ] [[package]] -name = "tokio-native-tls" -version = "0.3.1" +name = "tokio-rustls" +version = "0.26.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" +checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" dependencies = [ - "native-tls", + "rustls", "tokio", ] @@ -2397,6 +2403,12 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254" +[[package]] +name = "untrusted" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" + [[package]] name = "url" version = "2.5.8" @@ -2427,12 +2439,6 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" -[[package]] -name = "vcpkg" -version = "0.2.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" - [[package]] name = "version-compare" version = "0.2.1" @@ -2528,6 +2534,16 @@ dependencies = [ "wasm-bindgen", ] +[[package]] +name = "web-time" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + [[package]] name = "webapps-core" version = "4.0.0" @@ -2621,6 +2637,15 @@ dependencies = [ "system-deps", ] +[[package]] +name = "webpki-roots" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed" +dependencies = [ + "rustls-pki-types", +] + [[package]] name = "winapi" version = "0.3.9" @@ -2775,6 +2800,26 @@ dependencies = [ "synstructure", ] +[[package]] +name = "zerocopy" +version = "0.8.48" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9" +dependencies = [ + "zerocopy-derive", +] + +[[package]] +name = "zerocopy-derive" +version = "0.8.48" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "zerofrom" version = "0.1.7" diff --git a/Cargo.toml b/Cargo.toml index db6f4c9d..5c0b1a0f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ env_logger = "0.11" anyhow = "1" dirs = "6" clap = { version = "4", features = ["derive"] } -reqwest = { version = "0.12", default-features = false, features = ["native-tls", "blocking"] } +reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "blocking"] } scraper = "0.22" zbus = "5" tokio = { version = "1", features = ["rt-multi-thread", "macros"] } diff --git a/crates/webapps-manager/src/browser_dialog.rs b/crates/webapps-manager/src/browser_dialog.rs index 1eb9f581..aeb4ec0f 100644 --- a/crates/webapps-manager/src/browser_dialog.rs +++ b/crates/webapps-manager/src/browser_dialog.rs @@ -54,8 +54,9 @@ pub fn show( .build(); // browser icon - let icon = gtk::Image::from_icon_name(&browser.icon_name()); + let icon = gtk::Image::new(); icon.set_pixel_size(32); + crate::webapp_row::load_icon(&icon, &browser.icon_name()); row.add_prefix(&icon); // radio check button diff --git a/crates/webapps-manager/src/favicon.rs b/crates/webapps-manager/src/favicon.rs index 3c963077..42f1bf87 100644 --- a/crates/webapps-manager/src/favicon.rs +++ b/crates/webapps-manager/src/favicon.rs @@ -11,17 +11,24 @@ pub struct SiteInfo { /// Fetch title + icons from URL (blocking — call from thread) pub fn fetch_site_info(url: &str) -> Result { + // normalize: prepend https:// if no scheme + let url = if !url.contains("://") { + format!("https://{url}") + } else { + url.to_string() + }; + let client = reqwest::blocking::Client::builder() .user_agent("Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 Chrome/120.0.0.0") .timeout(std::time::Duration::from_secs(10)) .build()?; - let resp = client.get(url).send()?; + let resp = client.get(&url).send()?; let html_text = resp.text()?; let doc = Html::parse_document(&html_text); let title = extract_title(&doc).unwrap_or_default(); - let icon_urls = extract_icon_urls(&doc, url); + let icon_urls = extract_icon_urls(&doc, &url); // download icons to cache let cache = config::cache_dir().join("favicons"); @@ -37,7 +44,7 @@ pub fn fetch_site_info(url: &str) -> Result { // try /favicon.ico fallback if icon_paths.is_empty() { - if let Ok(base) = url::Url::parse(url) { + if let Ok(base) = url::Url::parse(&url) { let favicon_url = format!("{}://{}/favicon.ico", base.scheme(), base.host_str().unwrap_or("")); if let Ok(path) = download_icon(&client, &favicon_url, &cache, 99) { icon_paths.push(path); diff --git a/crates/webapps-manager/src/main.rs b/crates/webapps-manager/src/main.rs index 03f24697..6a859c08 100644 --- a/crates/webapps-manager/src/main.rs +++ b/crates/webapps-manager/src/main.rs @@ -1,6 +1,7 @@ mod browser_dialog; mod favicon; mod service; +mod style; mod template_gallery; mod webapp_dialog; mod webapp_row; @@ -20,6 +21,10 @@ fn main() { .application_id(config::APP_ID) .build(); + app.connect_startup(|_| { + style::load_css(); + }); + app.connect_activate(|app| { window::build(app); }); diff --git a/crates/webapps-manager/src/style.rs b/crates/webapps-manager/src/style.rs new file mode 100644 index 00000000..0427fe62 --- /dev/null +++ b/crates/webapps-manager/src/style.rs @@ -0,0 +1,62 @@ +use gtk4 as gtk; +use gtk4::gdk as gdk4; + +const CSS: &str = r#" +/* webapp icon — subtle rounding for modern look */ +.webapp-icon { + border-radius: 10px; +} + +/* webapp row — refined spacing */ +.webapp-row { + padding: 6px 12px; + min-height: 56px; +} + +/* category header */ +.category-header { + padding-top: 18px; + padding-bottom: 6px; +} + +/* action button — circular, subtle */ +.action-btn { + border-radius: 50%; + min-width: 36px; + min-height: 36px; + padding: 6px; +} + +/* app mode badge */ +.app-mode-badge { + font-size: 0.7em; + font-weight: bold; + padding: 2px 8px; + border-radius: 12px; + background: alpha(@accent_bg_color, 0.15); + color: @accent_fg_color; +} + +/* empty state refinement */ +.empty-state-icon { + opacity: 0.6; +} + +/* delete button hover emphasis */ +.action-btn.error:hover { + background: alpha(@error_bg_color, 0.15); +} +"#; + +pub fn load_css() { + let provider = gtk::CssProvider::new(); + provider.load_from_data(CSS); + + if let Some(display) = gdk4::Display::default() { + gtk::style_context_add_provider_for_display( + &display, + &provider, + gtk::STYLE_PROVIDER_PRIORITY_APPLICATION, + ); + } +} diff --git a/crates/webapps-manager/src/template_gallery.rs b/crates/webapps-manager/src/template_gallery.rs index 023c84b9..0ad9d9e9 100644 --- a/crates/webapps-manager/src/template_gallery.rs +++ b/crates/webapps-manager/src/template_gallery.rs @@ -4,14 +4,13 @@ use libadwaita as adw; use adw::prelude::*; use gettextrs::gettext; use gtk::glib; -use std::cell::RefCell; use std::rc::Rc; use webapps_core::templates::{build_default_registry, TemplateRegistry, WebAppTemplate}; -/// Show template gallery. Returns selected template_id via callback. +/// Show template gallery. Fires callback immediately on selection. pub fn show(parent: &impl IsA, on_selected: impl Fn(String) + 'static) { let registry = build_default_registry(); - let selected_id: Rc>> = Rc::new(RefCell::new(None)); + let callback: Rc = Rc::new(on_selected); let win = adw::Window::builder() .title(&gettext("Choose a Template")) @@ -46,31 +45,21 @@ pub fn show(parent: &impl IsA, on_selected: impl Fn(String) + 'stat content.append(&scroll); // initial populate - populate_all(&main_box, ®istry, &selected_id, &win); + populate_all(&main_box, ®istry, &callback, &win); // search handler { let mb = main_box.clone(); let reg = registry; - let sel = selected_id.clone(); + let cb = callback.clone(); let w = win.clone(); search_entry.connect_search_changed(move |entry| { let query = entry.text().to_string(); clear_box(&mb); if query.is_empty() { - populate_all(&mb, ®, &sel, &w); + populate_all(&mb, ®, &cb, &w); } else { - populate_search(&mb, ®, &query, &sel, &w); - } - }); - } - - // on close: fire callback if template was selected - { - let sel = selected_id.clone(); - win.connect_destroy(move |_| { - if let Some(id) = sel.borrow_mut().take() { - on_selected(id); + populate_search(&mb, ®, &query, &cb, &w); } }); } @@ -97,7 +86,7 @@ pub fn show(parent: &impl IsA, on_selected: impl Fn(String) + 'stat fn populate_all( container: >k::Box, registry: &TemplateRegistry, - selected: &Rc>>, + callback: &Rc, win: &adw::Window, ) { let mut categories = registry.categories(); @@ -107,7 +96,7 @@ fn populate_all( if templates.is_empty() { continue; } - add_category_section(container, cat, &templates, selected, win); + add_category_section(container, cat, &templates, callback, win); } } @@ -115,7 +104,7 @@ fn populate_search( container: >k::Box, registry: &TemplateRegistry, query: &str, - selected: &Rc>>, + callback: &Rc, win: &adw::Window, ) { let results = registry.search(query); @@ -126,24 +115,22 @@ fn populate_search( container.append(&label); return; } - add_category_section(container, &gettext("Search Results"), &results, selected, win); + add_category_section(container, &gettext("Search Results"), &results, callback, win); } fn add_category_section( container: >k::Box, category: &str, templates: &[&WebAppTemplate], - selected: &Rc>>, + callback: &Rc, win: &adw::Window, ) { - // category header let header = gtk::Label::new(Some(category)); header.set_halign(gtk::Align::Start); header.add_css_class("title-4"); header.set_margin_top(8); container.append(&header); - // use a ListBox with ActionRows instead of FlowBox for simplicity let listbox = gtk::ListBox::new(); listbox.add_css_class("boxed-list"); listbox.set_selection_mode(gtk::SelectionMode::None); @@ -154,15 +141,17 @@ fn add_category_section( .subtitle(&tpl.url) .activatable(true) .build(); - let icon = gtk::Image::from_icon_name(&tpl.icon); + let icon = gtk::Image::new(); icon.set_pixel_size(32); + crate::webapp_row::load_icon(&icon, &tpl.icon); row.add_prefix(&icon); - let sel = selected.clone(); + // fire callback immediately, then close gallery + let cb = callback.clone(); let tid = tpl.template_id.clone(); let w = win.clone(); row.connect_activated(move |_| { - *sel.borrow_mut() = Some(tid.clone()); + cb(tid.clone()); w.close(); }); diff --git a/crates/webapps-manager/src/webapp_dialog.rs b/crates/webapps-manager/src/webapp_dialog.rs index 0e69aa63..5a701443 100644 --- a/crates/webapps-manager/src/webapp_dialog.rs +++ b/crates/webapps-manager/src/webapp_dialog.rs @@ -55,23 +55,15 @@ pub fn show( // headerbar let header = adw::HeaderBar::new(); - if is_new { - let tmpl_btn = gtk::Button::from_icon_name("view-grid-symbolic"); - tmpl_btn.set_tooltip_text(Some(&gettext("Templates"))); - let wc = webapp_cell.clone(); - let w = win.clone(); - tmpl_btn.connect_clicked(move |_| { - let wc2 = wc.clone(); - template_gallery::show(&w, move |template_id| { - let reg = build_default_registry(); - if let Some(tpl) = reg.get(&template_id) { - wc2.borrow_mut().apply_template(tpl); - } - // UI sync happens via rebuilding; simplified approach - }); - }); - header.pack_start(&tmpl_btn); - } + // placeholder for template button — will be wired after widgets exist + let tmpl_btn = if is_new { + let btn = gtk::Button::from_icon_name("view-grid-symbolic"); + btn.set_tooltip_text(Some(&gettext("Templates"))); + header.pack_start(&btn); + Some(btn) + } else { + None + }; outer.append(&header); // overlay for loading spinner @@ -111,9 +103,13 @@ pub fn show( .title(&gettext("URL")) .text(&webapp_cell.borrow().app_url) .build(); - let detect_btn = gtk::Button::from_icon_name("emblem-web-symbolic"); + let detect_img = gtk::Image::from_icon_name("emblem-web-symbolic"); + detect_img.set_pixel_size(24); + let detect_btn = gtk::Button::new(); + detect_btn.set_child(Some(&detect_img)); detect_btn.set_tooltip_text(Some(&gettext("Detect name and icon from website"))); detect_btn.set_valign(gtk::Align::Center); + detect_btn.add_css_class("flat"); url_row.add_suffix(&detect_btn); group.add(&url_row); @@ -128,15 +124,7 @@ pub fn show( let icon_row = adw::ActionRow::builder().title(&gettext("Icon")).build(); let icon_preview = gtk::Image::new(); icon_preview.set_pixel_size(32); - { - let icon_path = service::resolve_icon_path(&webapp_cell.borrow().app_icon); - let p = std::path::Path::new(&icon_path); - if p.is_absolute() && p.exists() { - icon_preview.set_from_file(Some(p)); - } else { - icon_preview.set_icon_name(Some(&icon_path)); - } - } + crate::webapp_row::load_icon(&icon_preview, &webapp_cell.borrow().app_icon); icon_row.add_prefix(&icon_preview); let icon_btn = gtk::Button::with_label(&gettext("Select")); icon_btn.set_valign(gtk::Align::Center); @@ -238,6 +226,47 @@ pub fn show( // -- wire up signals -- + // Template button → populate URL, name, icon, category after selection + if let Some(ref tb) = tmpl_btn { + let wc = webapp_cell.clone(); + let w = win.clone(); + let ur = url_row.clone(); + let nr = name_row.clone(); + let ip = icon_preview.clone(); + let cd = cat_dropdown.clone(); + tb.connect_clicked(move |_| { + let wc2 = wc.clone(); + let ur2 = ur.clone(); + let nr2 = nr.clone(); + let ip2 = ip.clone(); + let cd2 = cd.clone(); + template_gallery::show(&w, move |template_id| { + log::info!("Template callback received: {}", &template_id); + let reg = build_default_registry(); + if let Some(tpl) = reg.get(&template_id) { + log::info!("Template found: {} url={}", &tpl.name, &tpl.url); + wc2.borrow_mut().apply_template(tpl); + // clone data before dropping borrow — set_text triggers connect_changed + let (url, name, icon, cat) = { + let data = wc2.borrow(); + ( + data.app_url.clone(), + data.app_name.clone(), + data.app_icon.clone(), + data.main_category().to_string(), + ) + }; + ur2.set_text(&url); + nr2.set_text(&name); + crate::webapp_row::load_icon(&ip2, &icon); + if let Some(pos) = CATEGORIES.iter().position(|c| *c == cat) { + cd2.set_selected(pos as u32); + } + } + }); + }); + } + // URL changed { let wc = webapp_cell.clone(); @@ -368,7 +397,7 @@ pub fn show( match rx.try_recv() { Ok(info) => { sbr.set_visible(false); - if !info.title.is_empty() && nrr.text().is_empty() { + if !info.title.is_empty() { nrr.set_text(&info.title); wcr.borrow_mut().app_name = info.title.clone(); } diff --git a/crates/webapps-manager/src/webapp_row.rs b/crates/webapps-manager/src/webapp_row.rs index ba122e3c..4829394d 100644 --- a/crates/webapps-manager/src/webapp_row.rs +++ b/crates/webapps-manager/src/webapp_row.rs @@ -8,6 +8,29 @@ use webapps_core::models::{AppMode, WebApp}; use crate::service; +/// Load icon into GtkImage — resolves via theme or file path with crisp SVG +pub fn load_icon(image: >k::Image, icon_ref: &str) { + let resolved = service::resolve_icon_path(icon_ref); + let p = std::path::Path::new(&resolved); + if p.is_absolute() && p.exists() { + if resolved.ends_with(".svg") { + // rasterize SVG at 4x requested pixel_size → crisp on HiDPI + let target = image.pixel_size().max(32) * 4; + match gdk_pixbuf::Pixbuf::from_file_at_size(p, target, target) { + Ok(pixbuf) => { + let tex = gdk4::Texture::for_pixbuf(&pixbuf); + image.set_paintable(Some(&tex)); + } + Err(_) => image.set_from_file(Some(p)), + } + } else { + image.set_from_file(Some(p)); + } + } else { + image.set_icon_name(Some(&resolved)); + } +} + /// Callbacks from webapp row actions pub struct RowCallbacks { pub on_edit: Box, @@ -18,32 +41,13 @@ pub struct RowCallbacks { /// Build a row widget for a webapp in the list pub fn build_row(webapp: &WebApp, callbacks: &std::rc::Rc) -> gtk::ListBoxRow { let hbox = gtk::Box::new(gtk::Orientation::Horizontal, 12); - hbox.set_margin_top(8); - hbox.set_margin_bottom(8); - hbox.set_margin_start(12); - hbox.set_margin_end(12); + hbox.add_css_class("webapp-row"); - // icon — prefer icon name for theme lookup (crisp SVG at any size) + // webapp icon let icon = gtk::Image::new(); icon.set_pixel_size(48); - let icon_path = service::resolve_icon_path(&webapp.app_icon); - let p = std::path::Path::new(&icon_path); - if p.is_absolute() && p.exists() { - if icon_path.ends_with(".svg") { - // rasterize SVG at 2x target → crisp on HiDPI - match gdk_pixbuf::Pixbuf::from_file_at_size(p, 192, 192) { - Ok(pixbuf) => { - let tex = gdk4::Texture::for_pixbuf(&pixbuf); - icon.set_paintable(Some(&tex)); - } - Err(_) => icon.set_from_file(Some(p)), - } - } else { - icon.set_from_file(Some(p)); - } - } else { - icon.set_icon_name(Some(&icon_path)); - } + icon.add_css_class("webapp-icon"); + load_icon(&icon, &webapp.app_icon); hbox.append(&icon); // info column @@ -66,28 +70,28 @@ pub fn build_row(webapp: &WebApp, callbacks: &std::rc::Rc) -> gtk: hbox.append(&info); - // action buttons — linked group - let actions = gtk::Box::new(gtk::Orientation::Horizontal, 0); - actions.add_css_class("linked"); + // action buttons + let actions = gtk::Box::new(gtk::Orientation::Horizontal, 4); actions.set_valign(gtk::Align::Center); - // browser indicator — show app icon for App mode, browser icon otherwise - let browser_icon_name = if webapp.app_mode == AppMode::App { - "application-x-executable-symbolic".to_string() + // browser indicator — resolve through same icon pipeline + let browser_btn = gtk::Button::new(); + let browser_img = gtk::Image::new(); + browser_img.set_pixel_size(24); + if webapp.app_mode == AppMode::App { + browser_img.set_icon_name(Some("application-x-executable-symbolic")); + browser_btn.set_tooltip_text(Some(&gettext("App mode"))); } else { - webapps_core::models::Browser { + let browser_icon = webapps_core::models::Browser { browser_id: webapp.browser.clone(), is_default: false, - }.icon_name() - }; - let browser_btn = gtk::Button::from_icon_name(&browser_icon_name); - let browser_tooltip = if webapp.app_mode == AppMode::App { - gettext("App mode") - } else { - gettext("Change browser") - }; - browser_btn.set_tooltip_text(Some(&browser_tooltip)); + }.icon_name(); + load_icon(&browser_img, &browser_icon); + browser_btn.set_tooltip_text(Some(&gettext("Change browser"))); + } + browser_btn.set_child(Some(&browser_img)); browser_btn.add_css_class("flat"); + browser_btn.add_css_class("action-btn"); { let cb = callbacks.clone(); let app = webapp.clone(); @@ -99,6 +103,7 @@ pub fn build_row(webapp: &WebApp, callbacks: &std::rc::Rc) -> gtk: let edit_btn = gtk::Button::from_icon_name("document-edit-symbolic"); edit_btn.set_tooltip_text(Some(&gettext("Edit"))); edit_btn.add_css_class("flat"); + edit_btn.add_css_class("action-btn"); { let cb = callbacks.clone(); let app = webapp.clone(); @@ -110,6 +115,7 @@ pub fn build_row(webapp: &WebApp, callbacks: &std::rc::Rc) -> gtk: let del_btn = gtk::Button::from_icon_name("user-trash-symbolic"); del_btn.set_tooltip_text(Some(&gettext("Delete"))); del_btn.add_css_class("flat"); + del_btn.add_css_class("action-btn"); del_btn.add_css_class("error"); { let cb = callbacks.clone(); diff --git a/crates/webapps-manager/src/window.rs b/crates/webapps-manager/src/window.rs index 98ab975a..1aa78183 100644 --- a/crates/webapps-manager/src/window.rs +++ b/crates/webapps-manager/src/window.rs @@ -96,12 +96,17 @@ pub fn build(app: &adw::Application) { scroll.set_vexpand(true); scroll.set_hscrollbar_policy(gtk::PolicyType::Never); + let clamp = adw::Clamp::new(); + clamp.set_maximum_size(900); + clamp.set_tightening_threshold(700); + let content_box = gtk::Box::new(gtk::Orientation::Vertical, 0); - content_box.set_margin_start(12); - content_box.set_margin_end(12); + content_box.set_margin_start(16); + content_box.set_margin_end(16); content_box.set_margin_top(8); - content_box.set_margin_bottom(8); - scroll.set_child(Some(&content_box)); + content_box.set_margin_bottom(16); + clamp.set_child(Some(&content_box)); + scroll.set_child(Some(&clamp)); main_box.append(&scroll); @@ -391,8 +396,10 @@ fn populate_list( let status = adw::StatusPage::builder() .icon_name("big-webapps") .title(&gettext("No WebApps")) - .description(&gettext("Add a new webapp to get started")) + .description(&gettext("Press + to create your first webapp")) + .vexpand(true) .build(); + status.add_css_class("empty-state-icon"); content.append(&status); return; } @@ -410,8 +417,7 @@ fn populate_list( let header = gtk::Label::new(Some(cat)); header.set_halign(gtk::Align::Start); header.add_css_class("title-4"); - header.set_margin_top(12); - header.set_margin_bottom(4); + header.add_css_class("category-header"); content.append(&header); // listbox From 66aa57a15fc61411c638ae2a654aa71cfb64f959 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tales=20A=2E=20Mendon=C3=A7a?= Date: Wed, 15 Apr 2026 21:46:35 -0300 Subject: [PATCH 07/15] =?UTF-8?q?=F0=9F=90=9B=20fix:=20=F0=9F=90=9B=20fix:?= =?UTF-8?q?=20persistent=20cookie=20storage=20+=20CI/CD=20build=20compatib?= =?UTF-8?q?ility?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add WebKitGTK6 cookie persistence via CookieManager with SQLite storage → login sessions (YouTube, Spotify, etc.) now survive app restarts - Disable ITP (Intelligent Tracking Prevention) → prevents WebKit from limiting third-party cookies needed for OAuth flows (accounts.google.com) - Set cookie accept policy to Always → required for cross-domain auth - Switch reqwest from rustls-tls back to native-tls → fixes CI/CD build failure caused by ring crate assembly linkage with lld linker - Add TLS client init error logging in favicon fetch --- Cargo.lock | 423 ++++++++++++-------------- Cargo.toml | 2 +- crates/webapps-manager/src/favicon.rs | 3 +- crates/webapps-viewer/src/window.rs | 12 + 4 files changed, 204 insertions(+), 236 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 470153ee..1d1bde7a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -191,12 +191,6 @@ version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" -[[package]] -name = "cfg_aliases" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" - [[package]] name = "clap" version = "4.6.0" @@ -243,6 +237,22 @@ version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570" +[[package]] +name = "core-foundation" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "core-foundation-sys" +version = "0.8.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" + [[package]] name = "crc32fast" version = "1.5.0" @@ -385,6 +395,22 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" +[[package]] +name = "errno" +version = "0.3.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" +dependencies = [ + "libc", + "windows-sys 0.52.0", +] + +[[package]] +name = "fastrand" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" + [[package]] name = "fdeflate" version = "0.3.7" @@ -420,6 +446,21 @@ dependencies = [ "miniz_oxide", ] +[[package]] +name = "foreign-types" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" +dependencies = [ + "foreign-types-shared", +] + +[[package]] +name = "foreign-types-shared" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" + [[package]] name = "form_urlencoded" version = "1.2.2" @@ -593,10 +634,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" dependencies = [ "cfg-if", - "js-sys", "libc", "wasi", - "wasm-bindgen", ] [[package]] @@ -606,11 +645,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" dependencies = [ "cfg-if", - "js-sys", "libc", "r-efi", "wasip2", - "wasm-bindgen", ] [[package]] @@ -907,19 +944,19 @@ dependencies = [ ] [[package]] -name = "hyper-rustls" -version = "0.27.9" +name = "hyper-tls" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f" +checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" dependencies = [ - "http", + "bytes", + "http-body-util", "hyper", "hyper-util", - "rustls", + "native-tls", "tokio", - "tokio-rustls", + "tokio-native-tls", "tower-service", - "webpki-roots", ] [[package]] @@ -1229,6 +1266,12 @@ dependencies = [ "libc", ] +[[package]] +name = "linux-raw-sys" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53" + [[package]] name = "litemap" version = "0.8.2" @@ -1263,12 +1306,6 @@ version = "0.4.29" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" -[[package]] -name = "lru-slab" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" - [[package]] name = "mac" version = "0.1.1" @@ -1355,6 +1392,23 @@ dependencies = [ "pxfm", ] +[[package]] +name = "native-tls" +version = "0.2.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2" +dependencies = [ + "libc", + "log", + "openssl", + "openssl-probe", + "openssl-sys", + "schannel", + "security-framework", + "security-framework-sys", + "tempfile", +] + [[package]] name = "new_debug_unreachable" version = "1.0.6" @@ -1422,6 +1476,50 @@ dependencies = [ "pathdiff", ] +[[package]] +name = "openssl" +version = "0.10.76" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "951c002c75e16ea2c65b8c7e4d3d51d5530d8dfa7d060b4776828c88cfb18ecf" +dependencies = [ + "bitflags", + "cfg-if", + "foreign-types", + "libc", + "once_cell", + "openssl-macros", + "openssl-sys", +] + +[[package]] +name = "openssl-macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "openssl-probe" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe" + +[[package]] +name = "openssl-sys" +version = "0.9.112" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57d55af3b3e226502be1526dfdba67ab0e9c96fc293004e79576b2b9edb0dbdb" +dependencies = [ + "cc", + "libc", + "pkg-config", + "vcpkg", +] + [[package]] name = "option-ext" version = "0.2.0" @@ -1514,7 +1612,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" dependencies = [ "phf_shared", - "rand 0.8.5", + "rand", ] [[package]] @@ -1588,15 +1686,6 @@ dependencies = [ "zerovec", ] -[[package]] -name = "ppv-lite86" -version = "0.2.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" -dependencies = [ - "zerocopy", -] - [[package]] name = "precomputed-hash" version = "0.1.1" @@ -1627,61 +1716,6 @@ version = "0.1.28" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b5a041e753da8b807c9255f28de81879c78c876392ff2469cde94799b2896b9d" -[[package]] -name = "quinn" -version = "0.11.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" -dependencies = [ - "bytes", - "cfg_aliases", - "pin-project-lite", - "quinn-proto", - "quinn-udp", - "rustc-hash", - "rustls", - "socket2", - "thiserror", - "tokio", - "tracing", - "web-time", -] - -[[package]] -name = "quinn-proto" -version = "0.11.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098" -dependencies = [ - "bytes", - "getrandom 0.3.4", - "lru-slab", - "rand 0.9.4", - "ring", - "rustc-hash", - "rustls", - "rustls-pki-types", - "slab", - "thiserror", - "tinyvec", - "tracing", - "web-time", -] - -[[package]] -name = "quinn-udp" -version = "0.5.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" -dependencies = [ - "cfg_aliases", - "libc", - "once_cell", - "socket2", - "tracing", - "windows-sys 0.52.0", -] - [[package]] name = "quote" version = "1.0.45" @@ -1703,27 +1737,7 @@ version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" dependencies = [ - "rand_core 0.6.4", -] - -[[package]] -name = "rand" -version = "0.9.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea" -dependencies = [ - "rand_chacha", - "rand_core 0.9.5", -] - -[[package]] -name = "rand_chacha" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" -dependencies = [ - "ppv-lite86", - "rand_core 0.9.5", + "rand_core", ] [[package]] @@ -1732,15 +1746,6 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" -[[package]] -name = "rand_core" -version = "0.9.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c" -dependencies = [ - "getrandom 0.3.4", -] - [[package]] name = "redox_syscall" version = "0.5.18" @@ -1805,21 +1810,20 @@ dependencies = [ "http-body", "http-body-util", "hyper", - "hyper-rustls", + "hyper-tls", "hyper-util", "js-sys", "log", + "native-tls", "percent-encoding", "pin-project-lite", - "quinn", - "rustls", "rustls-pki-types", "serde", "serde_json", "serde_urlencoded", "sync_wrapper", "tokio", - "tokio-rustls", + "tokio-native-tls", "tower", "tower-http", "tower-service", @@ -1827,29 +1831,8 @@ dependencies = [ "wasm-bindgen", "wasm-bindgen-futures", "web-sys", - "webpki-roots", ] -[[package]] -name = "ring" -version = "0.17.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" -dependencies = [ - "cc", - "cfg-if", - "getrandom 0.2.17", - "libc", - "untrusted", - "windows-sys 0.52.0", -] - -[[package]] -name = "rustc-hash" -version = "2.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe" - [[package]] name = "rustc_version" version = "0.4.1" @@ -1860,17 +1843,16 @@ dependencies = [ ] [[package]] -name = "rustls" -version = "0.23.38" +name = "rustix" +version = "1.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69f9466fb2c14ea04357e91413efb882e2a6d4a406e625449bc0a5d360d53a21" +checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190" dependencies = [ - "once_cell", - "ring", - "rustls-pki-types", - "rustls-webpki", - "subtle", - "zeroize", + "bitflags", + "errno", + "libc", + "linux-raw-sys", + "windows-sys 0.52.0", ] [[package]] @@ -1879,21 +1861,9 @@ version = "1.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd" dependencies = [ - "web-time", "zeroize", ] -[[package]] -name = "rustls-webpki" -version = "0.103.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8279bb85272c9f10811ae6a6c547ff594d6a7f3c6c6b02ee9726d1d0dcfcdd06" -dependencies = [ - "ring", - "rustls-pki-types", - "untrusted", -] - [[package]] name = "rustversion" version = "1.0.22" @@ -1906,6 +1876,15 @@ version = "1.0.23" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" +[[package]] +name = "schannel" +version = "0.1.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939" +dependencies = [ + "windows-sys 0.61.2", +] + [[package]] name = "scopeguard" version = "1.2.0" @@ -1927,6 +1906,29 @@ dependencies = [ "tendril", ] +[[package]] +name = "security-framework" +version = "3.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d" +dependencies = [ + "bitflags", + "core-foundation", + "core-foundation-sys", + "libc", + "security-framework-sys", +] + +[[package]] +name = "security-framework-sys" +version = "2.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3" +dependencies = [ + "core-foundation-sys", + "libc", +] + [[package]] name = "selectors" version = "0.26.0" @@ -2128,12 +2130,6 @@ version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" -[[package]] -name = "subtle" -version = "2.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" - [[package]] name = "syn" version = "2.0.117" @@ -2190,6 +2186,19 @@ version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "83176759e9416cf81ee66cb6508dbfe9c96f20b8b56265a39917551c23c70964" +[[package]] +name = "tempfile" +version = "3.27.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd" +dependencies = [ + "fastrand", + "getrandom 0.3.4", + "once_cell", + "rustix", + "windows-sys 0.52.0", +] + [[package]] name = "tendril" version = "0.4.3" @@ -2231,21 +2240,6 @@ dependencies = [ "zerovec", ] -[[package]] -name = "tinyvec" -version = "1.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3" -dependencies = [ - "tinyvec_macros", -] - -[[package]] -name = "tinyvec_macros" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" - [[package]] name = "tokio" version = "1.52.0" @@ -2261,12 +2255,12 @@ dependencies = [ ] [[package]] -name = "tokio-rustls" -version = "0.26.4" +name = "tokio-native-tls" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" +checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" dependencies = [ - "rustls", + "native-tls", "tokio", ] @@ -2403,12 +2397,6 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254" -[[package]] -name = "untrusted" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" - [[package]] name = "url" version = "2.5.8" @@ -2439,6 +2427,12 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" +[[package]] +name = "vcpkg" +version = "0.2.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" + [[package]] name = "version-compare" version = "0.2.1" @@ -2534,16 +2528,6 @@ dependencies = [ "wasm-bindgen", ] -[[package]] -name = "web-time" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" -dependencies = [ - "js-sys", - "wasm-bindgen", -] - [[package]] name = "webapps-core" version = "4.0.0" @@ -2637,15 +2621,6 @@ dependencies = [ "system-deps", ] -[[package]] -name = "webpki-roots" -version = "1.0.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed" -dependencies = [ - "rustls-pki-types", -] - [[package]] name = "winapi" version = "0.3.9" @@ -2800,26 +2775,6 @@ dependencies = [ "synstructure", ] -[[package]] -name = "zerocopy" -version = "0.8.48" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9" -dependencies = [ - "zerocopy-derive", -] - -[[package]] -name = "zerocopy-derive" -version = "0.8.48" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - [[package]] name = "zerofrom" version = "0.1.7" diff --git a/Cargo.toml b/Cargo.toml index 5c0b1a0f..db6f4c9d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ env_logger = "0.11" anyhow = "1" dirs = "6" clap = { version = "4", features = ["derive"] } -reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "blocking"] } +reqwest = { version = "0.12", default-features = false, features = ["native-tls", "blocking"] } scraper = "0.22" zbus = "5" tokio = { version = "1", features = ["rt-multi-thread", "macros"] } diff --git a/crates/webapps-manager/src/favicon.rs b/crates/webapps-manager/src/favicon.rs index 42f1bf87..cbf12833 100644 --- a/crates/webapps-manager/src/favicon.rs +++ b/crates/webapps-manager/src/favicon.rs @@ -21,7 +21,8 @@ pub fn fetch_site_info(url: &str) -> Result { let client = reqwest::blocking::Client::builder() .user_agent("Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 Chrome/120.0.0.0") .timeout(std::time::Duration::from_secs(10)) - .build()?; + .build() + .map_err(|e| { log::error!("TLS client init: {e:?}"); e })?; let resp = client.get(&url).send()?; let html_text = resp.text()?; diff --git a/crates/webapps-viewer/src/window.rs b/crates/webapps-viewer/src/window.rs index 1e1b85c7..13bcb9c5 100644 --- a/crates/webapps-viewer/src/window.rs +++ b/crates/webapps-viewer/src/window.rs @@ -34,6 +34,18 @@ pub fn build( Some(cache_dir.to_str().unwrap_or_default()), ); + // persist cookies in WebKitGTK format + allow third-party (auth flows) + // NOTE: existing "Cookies" file = legacy Chromium format, not used by WebKitGTK6 + session.set_itp_enabled(false); + if let Some(cm) = session.cookie_manager() { + let cookie_db = data_dir.join("webkit-cookies.db"); + cm.set_persistent_storage( + cookie_db.to_str().unwrap_or_default(), + webkit::CookiePersistentStorage::Sqlite, + ); + cm.set_accept_policy(webkit::CookieAcceptPolicy::Always); + } + // --- webview --- let webview = webkit::WebView::builder() .network_session(&session) From 4d931405564711287539b54d5fe482f3d33b4cf1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tales=20A=2E=20Mendon=C3=A7a?= Date: Wed, 15 Apr 2026 23:08:39 -0300 Subject: [PATCH 08/15] =?UTF-8?q?=F0=9F=94=A7=20chore:=20Full=20project=20?= =?UTF-8?q?audit:=20security,=20a11y,=20quality,=20compat=20fixes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Audit & Infrastructure - Add PLANNING.md with prioritized fix roadmap + post-fix metrics - Fix README: Python → Rust, update dependency list - cargo fmt: 74 diffs → 0 - cargo clippy: 33 warnings → 0 - cargo audit: 0 vulnerabilities Testing - Add 25 unit tests across 3 crates (service: 10, favicon: 15, registry: 11 deduplicated) - All tests passing, zero regressions Security - URL scheme validation in favicon fetch → block non-http(s) (anti-SSRF) - Permission handler: log auto-granted permission type + TODO - ITP disabled: add justification comment Accessibility - Label ~15 icon-only buttons (back, fwd, reload, fullscreen, menu, search, add, browser, edit, delete, template, detect) - Add live region (status_label with AccessibleRole::Status) for search result count announcements - Set AccessibleRole::Heading on category headers in list + gallery Robustness - Replace 2 unwrap() → expect() with context messages - Geometry parse: match + log::warn on failure instead of silent ignore - Poll interval 100ms → 250ms to reduce CPU churn UX & Compatibility - Disable browser button for App mode webapps (no external browser) - Set Chrome 131 User-Agent in viewer → fix Spotify/Teams blocking WebKitGTK as "incompatible browser" --- PLANNING.md | 548 +++++++++++------- PLANNING.old.md | 319 ++++++++++ README.md | 11 +- crates/webapps-core/src/desktop.rs | 15 +- crates/webapps-core/src/models/webapp.rs | 5 +- crates/webapps-core/src/templates/google.rs | 7 +- crates/webapps-core/src/templates/mod.rs | 8 +- .../webapps-core/src/templates/office365.rs | 64 +- crates/webapps-core/src/templates/registry.rs | 154 ++++- crates/webapps-manager/src/browser_dialog.rs | 2 +- crates/webapps-manager/src/favicon.rs | 123 +++- crates/webapps-manager/src/service.rs | 114 +++- .../webapps-manager/src/template_gallery.rs | 11 +- crates/webapps-manager/src/webapp_dialog.rs | 128 ++-- crates/webapps-manager/src/webapp_row.rs | 14 +- crates/webapps-manager/src/welcome_dialog.rs | 17 +- crates/webapps-manager/src/window.rs | 167 ++++-- crates/webapps-viewer/src/main.rs | 2 +- crates/webapps-viewer/src/window.rs | 279 ++++++--- 19 files changed, 1523 insertions(+), 465 deletions(-) create mode 100644 PLANNING.old.md diff --git a/PLANNING.md b/PLANNING.md index 20abd209..5aadaa29 100644 --- a/PLANNING.md +++ b/PLANNING.md @@ -1,319 +1,455 @@ -# PLANNING.md — BigLinux WebApps Improvement Roadmap +# PLANNING.md — BigLinux WebApps v4.0.0 Full Audit -## Files Analyzed - -**Total Python files read:** 18 -**Total Python lines analyzed:** 3439 -**Large files (>500 lines) confirmed read in full:** -- `webapps/ui/webapp_dialog.py` (763 lines) — read completely L1-763 -- `webapps/ui/main_window.py` (520 lines) — read completely L1-520 - -**Shell scripts read:** 4 (big-webapps 277L, big-webapps-exec 118L, check_browser.sh 164L, others) -**Other files read:** PKGBUILD, desktop entries, CSS profile, README.md +> Generated: 2025-06-23 | Updated: 2025-06-24 (post-fix) +> Codebase: 26 .rs files, ~5100 LOC, 3 crates +> Tooling: cargo clippy, cargo fmt, cargo audit, manual review, GTK4/Adwaita audit, Orca a11y audit --- -## Current State Summary - -**Overall grade: C+ → A-** (after shell security + accessibility + CC refactoring + GTK4 migration + browser registry + UX fixes + shell decoupling + dialog split + Orca navigation + service layer + progressive disclosure + save feedback + URL validation + focus management + dead code removal) - -The application is functional and ships to users. The GTK4/Adw migration is complete and the UI structure is reasonable. However, significant issues exist: +## 0. Project Health Summary + +| Metric | Before | After | Status | +|--------|--------|-------|--------| +| Crates | 3 | 3 | ✅ | +| Total Lines | 4628 | ~5100 (+tests) | ✅ | +| Files >300L | 4 | 4 | ⚠️ | +| Clippy warnings | 33 | **0** | ✅ Fixed | +| Format diffs | 74 | **0** | ✅ Fixed | +| Tests | 0 | **25** (36 assertions) | ✅ Fixed | +| Unsafe blocks | 0 | 0 | ✅ | +| `.unwrap()` calls | 2 | **0** (→ `.expect()`) | ✅ Fixed | +| Secrets/hardcoded creds | 0 | 0 | ✅ | +| cargo-audit | Unknown | **0 vulns, 2 warnings** (transitive) | ✅ | +| README accuracy | 🔴 Python | **✅ Rust** | ✅ Fixed | +| A11y icon buttons | 🔴 ~15 unnamed | **✅ All labeled** | ✅ Fixed | +| ITP/permissions docs | ⚠️ No comments | **✅ Documented** | ✅ Fixed | + +### Cargo.toml Health + +| Dependency | Version | Notes | +|------------|---------|-------| +| gtk4 | 0.11 (v4_10) | Current stable | +| libadwaita | 0.9 (v1_6) | Current stable | +| webkit6 | 0.6 (v2_50) | Current stable | +| reqwest | 0.12 (native-tls, blocking) | ✅ native-tls for CI compat | +| scraper | 0.22 | OK | +| image | 0.25 | OK | +| zip | 2.0 (via crate dep) | OK | +| clap | 4 | OK | +| anyhow | 1 | OK | +| tokio | 1 | ⚠️ Only used for zbus — verify necessity | + +### Release Profile + +```toml +lto = "thin" # good balance +opt-level = "s" # size-optimized +strip = true # no debug symbols +codegen-units = 1 # max optimization +``` -- **No tests at all** — zero test files, zero coverage -- **Critical security vulnerability** — `shell=True` with user-supplied data in `CommandExecutor` -- **Massive code duplication** — `get_system_default_browser()` has the same 30-line if/elif chain duplicated verbatim (CC=54) -- **No accessibility** — zero `accessible-name`, zero `accessible-description` on any widget -- **Architecture bleeding** — UI code directly calls shell scripts, no clear data layer -- **Translation bug** — `_()` referenced before assignment in `application.py:185` (F823) -- **No type hints** anywhere in 3400+ lines of Python +✅ Appropriate for distribution binary. --- -## Critical (fix immediately) - -### Security - -- [x] **Command injection via `shell=True`**: `command_executor.py:38` — `execute_command()` runs arbitrary strings through `shell=True`. Methods like `create_webapp()` (L106) interpolate user input (`app_name`, `app_url`) directly into shell commands with only single-quote wrapping, which is trivially bypassable (e.g., name containing `'; rm -rf /; '`). **Fix:** Use `subprocess.run()` with a list of arguments, never `shell=True`. Refactor `create_webapp()`, `update_webapp()`, `remove_webapp()` to pass args as lists. - -- [x] **Zip extraction path traversal**: `application.py:319` — `zipf.extractall(temp_dir)` without validating member paths. A malicious ZIP can write files outside `temp_dir` via `../` entries (ZipSlip). **Fix:** Validate all member paths before extraction, or use `shutil.unpack_archive` with path validation. +## 1. Critical Issues (Must Fix Before Release) — ✅ ALL RESOLVED -- [x] **Translation `_` referenced before assignment**: `application.py:185` — ruff F823. The `_` function from `translation.py` is imported but due to module-level import ordering, it may not be available in all code paths. The import works at runtime because `gi.require_version` runs first, but this is fragile. **Fix:** Ensure `from webapps.utils.translation import _` is at the correct scope. +### 1.1 ✅ ~~Zero Test Coverage~~ → 25 tests passing -- [x] **Shell script quoting vulnerabilities**: `big-webapps` — `rm $filename`, `if [ -f $filename ]`, `if [ $command = ... ]` without quotes. Filenames with spaces/globbing cause unexpected behavior or data loss. **Fix:** Quote all variable expansions: `rm "$filename"`, `if [ -f "$filename" ]`, `if [ "$command" = ... ]`. +**Impact:** No regression safety net. Any change can silently break functionality. -- [x] **Manual JSON generation in `big-webapps`**: L241-251 — manual escape with `${name//\"/\\\\\"}` is fragile; backslashes, tabs, newlines in names break JSON. **Fix:** Replaced with `_json_escape()` function using `sed` for proper `\`/`"`/tab escaping, and `printf` for structured JSON output. +**Files needing tests first (by risk):** +| File | LOC | Risk | What to test | +|------|-----|------|-------------| +| service.rs | 609 | HIGH | CRUD ops, desktop file generation, shell_split(), parse_exec_line(), migrate_legacy | +| registry.rs | 138 | MED | match_url(), search(), category filtering | +| webapp.rs | 95 | LOW | Default values, serialization roundtrip | +| browser.rs | 120 | LOW | exec_for_url(), icon_name() mapping | +| favicon.rs | 258 | MED | extract_title(), extract_icon_urls(), resolve_url() (mock HTTP) | -- [x] **`big-webapps-exec` unquoted `$browser_exec`**: All `exec $browser_exec` and `$browser_exec ... &` lines — word splitting on flatpak commands (`flatpak run com.brave.Browser` becomes 3 separate words). **Fix:** Changed `browser_exec` to bash array `browser_exec=(...)`, used `"${browser_exec[@]}"` everywhere. +**Recommended approach:** +- Unit tests for pure logic (shell_split, parse_exec_line, extract_title, resolve_url) +- Integration tests with temp dirs for service CRUD + desktop file I/O +- Mock reqwest for favicon fetch tests +- Target: 80%+ coverage on service.rs and registry.rs -- [x] **`big-webapps-exec` icon copy on every launch**: L19-21 — `cp "$icon" ~/.local/share/icons/` + `sed -Ei` runs on every execution, even if icon is already current. **Fix:** Added `cmp -s` check — only copy+sed if icon differs or doesn't exist. +### 1.2 ✅ ~~README Incorrect~~ → Fixed (Python → Rust) -- [x] **Wayland race condition in `big-webapps-exec`**: L95-106 — `mv -f` of .desktop files without locking. Two simultaneous instances corrupt the original .desktop. **Fix:** Added `flock` advisory locking; second instance skips icon swap and launches directly. +**Current:** Says "Built with Python", lists python-bs4, python-requests, python-gobject as deps. +**Reality:** 100% Rust with GTK4/libadwaita. -- [x] **`sed` chain for browser name mapping**: `big-webapps` — fragile `sed` pipeline for `short_browser`. **Fix:** Replaced with `case` statement with glob patterns. +**Fix:** Rewrite Technical Details + Dependencies sections. -### Bugs +### 1.3 ✅ ~~Accessibility — Icon Buttons Without Names~~ → ~15 buttons labeled -- [x] **`get_app_icon_url.py` uses GTK3**: `get_app_icon_url.py:6` — Migrated to GTK4 (`gi.require_version("Gtk", "4.0")`). Uses `Gtk.IconTheme.get_for_display()` + `lookup_icon()` returning `IconPaintable` with `get_file().get_path()`. Requires `Gtk.init()` + `Gdk.Display.get_default()`. +~15 icon-only buttons across the app have NO `set_accessible_name()`. Orca reads them as generic "button". -- [x] **`BROWSER_ICONS_PATH` is relative**: `browser_icon_utils.py:9` — `BROWSER_ICONS_PATH = "icons"` is relative to CWD. Works only because `big-webapps-gui` does `cd /usr/share/biglinux/webapps/` before launching. If launched from any other directory, all browser icons fail silently. **Fix:** Use `os.path.dirname(os.path.realpath(__file__))` to compute absolute path. +| Location | Widget | Current Orca Output | Fix | +|----------|--------|-------------------|-----| +| manager/window.rs | search toggle | "toggle button" | `set_accessible_name("Search")` | +| manager/window.rs | add button | "button" | `set_accessible_name("Add WebApp")` | +| manager/window.rs | menu button | "menu button" | `set_accessible_name("Main Menu")` | +| webapp_dialog.rs | detect button | "button" | `set_accessible_name("Detect from website")` | +| webapp_dialog.rs | icon chooser | "button" | `set_accessible_name("Choose icon")` | +| webapp_row.rs | browser button | "button" | `set_accessible_name("Change browser")` | +| webapp_row.rs | edit button | "button" | `set_accessible_name("Edit")` | +| webapp_row.rs | delete button | "button" | `set_accessible_name("Delete")` | +| viewer/window.rs | back button | "button" | `set_accessible_name("Back")` | +| viewer/window.rs | forward button | "button" | `set_accessible_name("Forward")` | +| viewer/window.rs | reload button | "button" | `set_accessible_name("Reload")` | +| viewer/window.rs | fullscreen button | "button" | `set_accessible_name("Toggle fullscreen")` | -- [x] **`name_label.set_ellipsize(True)` wrong API**: `webapp_row.py:73,82` — `set_ellipsize()` expects a `Pango.EllipsizeMode` enum, not a boolean. GTK4 may silently accept `True` as `1` (which maps to `ELLIPSIZE_START`), but the intent is likely `ELLIPSIZE_END`. **Fix:** `name_label.set_ellipsize(Pango.EllipsizeMode.END)`. - -- [x] **`_open_folder` infinite recursion**: `application.py:97-100` — If `os.makedirs` creates the folder, it calls `self._open_folder()` again, which now finds the folder and opens it. This is fragile — if `Gtk.show_uri` and `xdg-open` both fail, it loops. There's also no guard against repeated creation. **Fix:** Remove recursion, just `makedirs` then `show_uri` in a single flow. +**Effort:** Low (1-2 lines each). **Impact:** Huge for screen reader users. --- -## High Priority (code quality) - -### Architecture +## 2. High Priority Issues — ✅ MOSTLY RESOLVED -- [x] **Extract browser name mapping to data**: `command_executor.py:160-292` — `get_system_default_browser()` has cyclomatic complexity **F(54)** with the same 30-browser if/elif chain **duplicated twice** (xdg-settings and xdg-mime paths). **Fix:** Create a `BROWSER_DESKTOP_MAP` dictionary mapping desktop file patterns to browser IDs. Reduce to ~20 lines. +### 2.1 ✅ ~~Clippy Warnings (33)~~ → 0 warnings -- [x] **Duplicate browser name maps**: Created `browser_registry.py` as single source of truth for Python side (`BROWSER_DISPLAY_NAMES` + `DESKTOP_PATTERN_MAP`). `browser_model.py` and `command_executor.py` now import from it. Shell scripts (`check_browser.sh`, `big-webapps-exec`) retain their own layer-specific data (paths, flatpak exec commands) since they cannot import Python. +**Auto-fixable:** `cargo clippy --fix --allow-dirty` -- [x] **Shell script coupling**: `application.py` now calls `big-webapps json` directly and resolves icons via `enrich_webapps_with_icons()` in `browser_icon_utils.py`. Eliminated `get_json.sh` → `get_app_icon_url.py` chain (Python → shell → Python → shell → Python). +| Warning | Count | Fix | +|---------|-------|-----| +| needless_borrows_for_generic_args | 30 | Remove `&` on `&gettext(...)` calls | +| redundant_import | 1 | Remove `use gdk4;` in viewer | +| let_and_return | 1 | Inline return value | +| field_assignment_outside_initializer | 1 | Move to struct init | -- [x] **Two different application IDs**: `main.py:24` sets `br.com.biglinux.webapps`, `application.py:32` sets `org.biglinux.webapps`. One of these is ignored at runtime. **Fix:** Use a single canonical app ID. +### 2.2 ✅ ~~Format Violations (74 diffs)~~ → 0 diffs -### Code Quality +**Fix:** `cargo fmt` -- [x] **Add type hints to all function signatures**: 0/18 files have type annotations. Start with models and utils (pure logic), then UI. This enables mypy and IDE support. +### 2.3 ⚠️ Blocking I/O on Main Thread -- [x] **Unused variables from GTK signal handlers**: vulture reports 19 unused variables. Most are GTK callback signatures (`controller`, `keycode`, `state`, `param`). **Fix:** Prefix with `_` (e.g., `_controller`, `_keycode`). For truly unused vars like `d` in `application.py:435`, remove them. +These synchronous operations can freeze the UI: -- [x] **Format 2 files**: `application.py` and `main_window.py` fail `ruff format --check`. **Fix:** Run `ruff format`. +| Location | Operation | Risk | +|----------|-----------|------| +| service.rs | `load_webapps()` — reads JSON from disk | Low (small file) | +| service.rs | `detect_browsers()` — spawns `flatpak list` + `xdg-settings` | **Medium** (process exec) | +| service.rs | `import_webapps()` — ZIP extraction | **High** (large archives) | +| service.rs | `export_webapps()` — ZIP creation | Medium | +| favicon.rs | `fetch_site_info()` — HTTP + image processing | **Already threaded** ✅ | +| desktop.rs | `fs::create_dir_all`, `fs::write` | Low | -- [x] **30 E402 import violations**: All `from gi.repository import ...` lines trigger E402 because they follow `gi.require_version()`. This is expected and correct for GI. **Fix:** Add `# noqa: E402` inline or configure ruff to ignore E402 for `gi.repository` imports. Alternatively, add a `ruff.toml` with per-file ignores. +**Recommended:** Move `import_webapps()` and `export_webapps()` to background threads with progress indication. `detect_browsers()` should be cached after first call. -- [x] **High complexity functions**: `_handle_import_response` (CC=15→5), `_handle_export_response` (CC=14→5), `on_webapp_dialog_response` (CC=17→6). **Fix:** Extracted `_serialize_webapp_for_export()`, `_import_single_webapp()` from `application.py`. Extracted `_find_webapp_after_reload()` from `main_window.py`, collapsed create/update duplicate search into shared helper with URL-only fallback. +### 2.4 ✅ ~~2 Unwrap Calls in Viewer~~ → .expect() with context -- [x] **`print()` statements as logging**: 40+ `print()` calls throughout the codebase used for debugging. No structured logging. **Fix:** Replace with `logging` module. Use `logger = logging.getLogger(__name__)` per module. Level: DEBUG for dev info, ERROR for failures. +| Location | Line | Context | Fix | +|----------|------|---------|-----| +| viewer/window.rs | ~331 | `user_content_manager().unwrap()` | `.expect("WebView must have UCM")` | +| viewer/window.rs | ~463 | `application().unwrap()` | `.expect("Window must have app")` | ---- +These are safe in practice (WebView always has UCM, Window always has app) but should use `.expect()` with context message for debuggability. -## Medium Priority (UX improvements) +### 2.5 ✅ ~~ITP Disabled Without Documentation~~ → Commented -### Progressive Disclosure +```rust +session.set_itp_enabled(false); +``` -- [x] **Profile settings overwhelm new users**: `webapp_dialog.py` — profile switch + profile name entry now wrapped in `AdwExpanderRow` ("Profile Settings"). Default collapsed. Only shown when App Mode is active. *Principle: Progressive Disclosure — reduce cognitive load on primary flow.* +Disabling Intelligent Tracking Prevention allows all cross-site tracking. This was intentional (for cookie persistence in login-required webapps like YouTube/Spotify), but: +- Should have a code comment explaining WHY +- Consider making it per-webapp configurable in the future -- [x] **Category dropdown shows all 9 categories upfront**: `Gtk.DropDown` already collapses the list — user only sees choices on click (≠ radio buttons). Default "Webapps" pre-selected for new webapps. No change needed — Hick's Law mitigated by dropdown widget design. +### 2.6 ⚠️ Permission Auto-Grant (Viewer) -### Feedback Loops +Camera, microphone, and notification permissions are auto-granted without user consent or logging. This is convenient but: +- Security risk for untrusted webapps +- No audit trail +- Consider: prompt once → remember decision per webapp -- [x] **No feedback during webapp creation**: `webapp_dialog.py` — Save now shows loading overlay, runs command in background thread via `threading.Thread(daemon=True)`, uses `GLib.idle_add` to close dialog on completion. *Principle: System Status Visibility (Nielsen).* +--- -- [x] **URL validation is reactive only**: `webapp_dialog.py` — Real-time URL validation with `urlparse` (checks scheme http/https + netloc). Suffix icon `emblem-ok-symbolic` (success) / `dialog-warning-symbolic` (error) + CSS classes. *Principle: Error Prevention > Error Recovery.* +## 3. Medium Priority Issues -- [x] **Delete confirmation lacks context**: `main_window.py:363` — Delete dialog shows "Are you sure you want to delete {name}?" but doesn't show the URL or browser, making it hard to distinguish between similarly-named webapps. **Fix:** Include URL and browser in the dialog body. *Principle: Recognition over Recall.* +### 3.1 Accessibility — Live Regions -### Visual Hierarchy +When the user types in search (manager/window.rs) or template gallery, the list is rebuilt silently. Orca does not announce changes. -- [x] **Welcome dialog CSS leaks globally**: `welcome_dialog.py:77` — `Gtk.StyleContext.add_provider_for_display()` applies headerbar CSS to ALL windows, not just the welcome dialog. **Fix:** Use `Gtk.StyleContext.add_provider()` on the specific widget, like `webapp_dialog.py` does correctly at L168. +**Fix:** After `populate_list()`, update an accessible live region with result count: +```rust +// After populating +status_label.set_label(&format!("{} webapps found", count)); +// Ensure status_label has AccessibleRole::Status +``` -- [x] **Icon selection FlowBox has no visual feedback**: `FaviconPicker` in `favicon_picker.py` now applies `.favicon-selected` CSS class (accent-colored border) to the active `FlowBoxChild` and removes it from the previous selection. +### 3.2 Accessibility — Category Headers Without Semantic Role -### First-Run Experience +Category section headers in window.rs and template_gallery.rs use visual styling (`title-4` CSS class) but no semantic `AccessibleRole::Heading`. -- [x] **Welcome dialog switch UX confusing**: `welcome_dialog.py` — Renamed label from "Show dialog on startup" to "Don't show this again" with inverted logic. Switch ON = suppress. Matches standard UX convention. *Principle: Match between system and real world (Nielsen).* +**Fix:** +```rust +header.set_accessible_role(gtk::AccessibleRole::Heading); +``` ---- +### 3.3 Accessibility — Switches Without State Announcement -## Low Priority (polish & optimization) +App Mode switch (webapp_dialog.rs) and "Don't show again" switch (welcome_dialog.rs) don't clearly announce state. -- [x] **`time.time()` + `hash(datetime.now())` for webapp file IDs**: `main_window.py:172` — Uses `int(time.time())-{hash(datetime.now()) % 10000}` while `webapp_dialog.py:701` uses `uuid.uuid4().hex[:8]`. Inconsistent ID generation. **Fix:** Use UUID everywhere. The `main_window.py` pattern can produce collisions. +**Better pattern:** Use `adw::SwitchRow` instead of manual `gtk::Switch` + `gtk::Label` in `gtk::Box`. AdwSwitchRow handles accessible properties automatically. -- [x] **`on_remove_all` double-confirmation UX**: Replaced two consecutive dialogs with a single `Adw.MessageDialog` containing a text entry. User must type the exact phrase (translated) to enable the destructive confirm button. 3 methods → 2 methods. +### 3.4 Accessibility — Welcome Dialog Markup -- [x] **`update_old_desktop_files.sh` references non-existent path**: L37 references `/usr/share/bigbashview/apps/webapps/check_browser.sh` which doesn't exist in the package. Line 46 references `/usr/share/bigbashview/bcc/apps/biglinux-webapps/webapps/`. These appear to be legacy paths from when the app used BigBashView. **Fix:** Update or remove dead references. +Uses Pango markup (``, ``) in labels. Some Orca versions may read the markup tags literally. -- [x] **`biglinux-webapps-systemd` also references legacy path**: L30 references `/usr/share/bigbashview/bcc/apps/biglinux-webapps/webapps/`. **Fix:** Same as above. +**Fix:** Use `gtk::Label::set_attributes()` with explicit `pango::AttrList` instead of inline markup. Or verify behavior with Orca before changing. -- [x] **CSS headerbar override in webapp_dialog.py**: Already uses `Gtk.StyleContext.add_provider()` on specific style context (not `add_provider_for_display`). No leak. Verified. +### 3.5 UX — Cognitive Overload in Create/Edit Dialog -- [x] **AdwAboutWindow is deprecated**: `application.py:119` uses `Adw.AboutWindow`. Newer libadwaita versions use `Adw.AboutDialog`. **Fix:** Check the target libadwaita version and update if ≥ 1.5. +9+ simultaneous input fields violate the 7±2 cognitive load rule. -- [x] **Hardcoded version "3.0.0"**: Already resolved — `APP_VERSION = "3.1.0"` in `__init__.py`, imported by `application.py`. PKGBUILD uses rolling `$(date)` for package version (different semantic). +**Recommendation:** +- "Behavior" section (App Mode, Browser, Profile) should be collapsed by default for new webapps +- Only URL + Name + Icon visible initially (progressive disclosure) +- Power users expand Behavior manually ---- +### 3.6 UX — Category Dropdown Unclear -## Architecture Recommendations +Desktop categories ("Network", "AudioVideo", "Development") are not self-explanatory for non-technical users. -### Current Structure -``` -webapps/ -├── application.py # App class, export/import, action registration -├── models/ -│ ├── browser_model.py # Browser data model -│ └── webapp_model.py # WebApp data model -├── ui/ -│ ├── browser_dialog.py # Browser selection dialog -│ ├── favicon_picker.py # ✅ NEW — FlowBox favicon selector widget -│ ├── main_window.py # Main window -│ ├── webapp_dialog.py # Create/edit dialog (763L — too large) -│ ├── webapp_row.py # List row widget -│ └── welcome_dialog.py # Welcome screen -└── utils/ - ├── browser_icon_utils.py # Icon path resolution - ├── browser_registry.py # ✅ NEW — Central browser ID/name/pattern mapping - ├── command_executor.py # Shell command execution - ├── translation.py # i18n - ├── url_utils.py # Website metadata fetcher - └── webapp_service.py # ✅ NEW — Business logic layer (CRUD, export/import) -``` +**Fix:** Add subtitle to category ActionRow: "Controls where the webapp appears in the application menu" -### Recommended Changes +### 3.7 UX — Template Apply Not Reversible -1. **Split `webapp_dialog.py`** (821L→736L): ✅ Extracted `FaviconPicker` widget to `favicon_picker.py` (88L) with selection highlight CSS. Refactored `setup_ui()` from monolithic 326L method into orchestrator + 5 builder methods: `_build_form_group()`, `_build_category_row()`, `_build_mode_browser_profile()`, `_build_buttons()`, `_build_loading_overlay()`. Removed dead `favicons_group`/`favicons_box` code. +Clicking a template in the gallery immediately overwrites form fields with no undo. -2. ~~**Create `browser_registry.py`**~~: ✅ Done — Created `webapps/utils/browser_registry.py` with `BROWSER_DISPLAY_NAMES` + `DESKTOP_PATTERN_MAP` + `get_display_name()` + `match_desktop_to_browser()`. Both `browser_model.py` and `command_executor.py` import from it. +**Fix:** Consider "Apply Template?" confirmation dialog with preview, OR store pre-template state for undo. -3. ~~**Create `webapp_service.py`**~~: ✅ Done — Created `webapps/utils/webapp_service.py` (~215L) with `WebAppService` class. Methods: `load_data()`, `create_webapp()`, `update_webapp()`, `delete_webapp()`, `delete_all_webapps()`, `find_webapp()`, `export_webapps()`, `import_webapps()`, `get_system_default_browser()`. All business logic moved from `application.py` and `main_window.py`. +### 3.8 UX — Browser Button Confusing in App Mode -4. **Replace shell string execution**: `CommandExecutor.execute_command(shell=True)` → specific methods with `subprocess.run(list)`. No shell interpolation. +webapp_row.rs shows a browser-icon button for every webapp, but in App mode it shows `application-x-executable-symbolic` icon. Users may not understand its purpose. -5. ~~**State management**~~: ✅ Improved — `find_webapp()` now accepts `app_file` (desktop filename) as stable ID, with URL+name as fallback. `_find_webapp_after_reload()` passes `app_file` from the original webapp. Full GObject signals deferred — current approach is reliable with stable IDs. +**Fix:** Hide or disable the browser button when `app_mode == App`. ---- +### 3.9 Large Files Should Be Split -## UX Recommendations +| File | LOC | Recommendation | +|------|-----|---------------| +| service.rs | 609 | Split: service/crud.rs, service/browser.rs, service/migration.rs, service/io.rs | +| viewer/window.rs | 657 | Extract: viewer/navigation.rs, viewer/downloads.rs, viewer/shortcuts.rs | +| manager/window.rs | 574 | Extract: window/actions.rs, window/list.rs | +| webapp_dialog.rs | 557 | OK (single dialog, hard to split meaningfully) | -1. **Drag-and-drop URL support**: Allow users to drag a URL from browser to the window to create a webapp. Reduces friction from copy-paste workflow. *Principle: Direct Manipulation — let users interact naturally.* +### 3.10 Non-Idiomatic Patterns -2. **Inline editing**: Instead of opening a full dialog for simple changes (name, category), allow inline editing in the list row. *Principle: Efficiency of use — expert users should have shortcuts.* +| Location | Issue | Fix | +|----------|-------|-----| +| service.rs `shell_split()` | Custom tokenizer, no escaped-quote support | Document limitation or use `shell-words` crate | +| service.rs `parse_legacy_desktop()` | Manual loop + break | Use `.take_while()` iterator | +| registry.rs `categories()` | Collect → sort → return | Use `BTreeMap` or `itertools::sorted()` | +| webapp_row.rs `load_icon()` | Nested if-else fallback | Use `.or_else()` chain | +| manager/window.rs | `Rc::new(content_box.as_ref().clone())` | Simplify clone pattern | -3. **Visual browser indicator**: The browser icon in the row is small (27px) and lacks a label. Users may not recognize browser icons at a glance. **Fix:** Add browser name as subtitle text in the row. *Principle: Recognition over Recall.* +### 3.11 Polling Pattern for Background Work -4. **Empty state with presets**: Instead of a blank empty state, offer one-click common webapp presets (WhatsApp, Spotify, Gmail, etc.). Reduces the barrier to first use. *Principle: Reduce activation energy — the hardest part is starting.* +webapp_dialog.rs uses `glib::timeout_add_local(100ms)` to poll a `mpsc::channel` for favicon results. This is functional but wasteful. -5. **Undo delete**: Destructive deletion should be undoable for 5-10 seconds via an "Undo" action in the toast notification (Adw.Toast supports action buttons). This is safer than confirmation dialogs. *Principle: Forgiving design — allow recovery, not just prevention.* +**Better:** Use `glib::spawn_future_local()` with `async` channel (if glib-async available), or at minimum increase poll interval to 250ms. --- -## Orca Screen Reader Compatibility +## 4. Low Priority / Nice-to-Have -**Issues found:** +### 4.1 Fullscreen Reveal Not Discoverable -### Critical — Completely inaccessible widgets +Viewer's fullscreen mode hides the header bar. Users must move mouse to top edge to reveal controls. This is not documented or hinted at. -- [x] **All buttons lack accessible names**: Throughout the codebase, buttons are created with only icons and no accessible name. A blind user hears nothing or "button" when focusing these: - - `webapp_row.py:99` — browser button (icon-only, no label, no accessible-name) - - `webapp_row.py:105` — edit button (icon-only, tooltip exists but Orca reads accessible-name first) - - `webapp_row.py:114` — delete button (icon-only) - - `main_window.py:68` — search toggle button - - `main_window.py:77` — menu button - **Fix:** Added `update_property([Gtk.AccessibleProperty.LABEL], [...])` for each. +**Fix:** On first fullscreen entry, show a transient toast: "Move mouse to top to show controls, or press Esc/F11 to exit" -- [x] **Icon FlowBox items have no labels**: `webapp_dialog.py:600-610` — Favicon selection items are `Gtk.Image` inside `Gtk.Box`. Orca cannot announce what each icon represents. A blind user cannot distinguish between favicons. **Fix:** Added `accessible-description` with ordinal ("Icon 1 of 5"). +### 4.2 Geometry Load Silent Failure -- [x] **Category dropdown has no accessible label**: `webapp_dialog.py:260` — The `Gtk.DropDown` is added as a suffix to `AdwActionRow`. **Fix:** Added `update_property([Gtk.AccessibleProperty.LABEL], [_("Category")])`. +viewer/window.rs loads/saves window geometry from JSON but silently ignores parse errors. -- [x] **Profile switch has no accessible label**: `webapp_dialog.py:303` — `Gtk.Switch` is a suffix. **Fix:** Added `update_property([Gtk.AccessibleProperty.LABEL], [_("Use separate profile")])`. +**Fix:** Add `log::warn!()` on geometry parse failure. -- [x] **Search entry has no accessible label**: `main_window.py:107` — `Gtk.SearchEntry` inside `Gtk.SearchBar` has no label. **Fix:** Added `update_property([Gtk.AccessibleProperty.LABEL], [_("Search WebApps")])`. +### 4.3 Download UX -- [x] **App mode switch has no accessible label**: `webapp_dialog.py` — `Gtk.Switch` for app mode. **Fix:** Added `update_property([Gtk.AccessibleProperty.LABEL], [_("Application Mode")])`. +Viewer prompts for every download without remembering last directory. -### High — Missing state announcements +**Future:** Remember last download directory in config. -- [x] **Loading overlay not announced**: Added `accessible-description` to loading label ("Detecting website information, please wait"). After fetch completes, focus moves to Name entry so Orca announces the detected title. +### 4.4 Menu Button Discoverability -- [x] **Toast notifications Orca priority**: `Adw.Toast` now uses `ToastPriority.HIGH` for destructive actions (delete, remove-all, errors) → maps to `role="alert"` (assertive). Info toasts remain `NORMAL` (polite `role="status"`). +Main window's menu button (Import/Export/Browse/Remove All) uses only an icon with no label. New users may not discover these features. -- [x] **Empty state not focused on load**: `AdwStatusPage` now set `focusable(True)` and `grab_focus()` called when empty state is shown. Orca announces "No WebApps Found" + description. +**Options:** +- Add label "Menu" to button +- Move Import/Export to a visible toolbar section +- Add keyboard shortcut hints in menu items -### Medium — Navigation issues +### 4.5 CSS Hardcoded Values -- [x] **No skip-navigation for category headers**: Category headers now created with `Gtk.AccessibleRole.HEADING` via `GObject.new()` and `set_focusable(True)`. Orca "h" key navigates between categories. +style.rs uses hardcoded pixel values (6px, 12px, 56px) instead of Adwaita spacing scale. Not a functional issue but diverges from HIG consistency. -- [x] **Dialog focus order is not optimal**: `webapp_dialog.py` — Dynamic focus on `map` signal: URL entry for new webapps (need to type URL first), Name entry for editing (URL already filled). Also removed dead `find_all_widget_types()` method — `self.name_row` used directly. +### 4.6 tokio Dependency Audit -**Test checklist for manual verification:** -- [ ] Launch app with Orca running (`orca &; big-webapps-gui`) -- [ ] Navigate entire UI using only Tab/Shift+Tab -- [ ] Verify Orca announces every button, field, and state change -- [ ] Test "Add WebApp" flow without looking at screen -- [ ] Test "Detect" → icon selection → save flow with Orca -- [ ] Verify error messages are announced by Orca -- [ ] Test delete flow: button → confirmation dialog → result toast -- [ ] Test search: toggle → type → verify results announced -- [ ] Test browser dialog: navigation → selection → confirm +tokio is pulled in (rt-multi-thread, macros) but appears only used for zbus async runtime. Verify if zbus can use glib async runtime instead to eliminate the tokio dependency and reduce binary size. --- -## Accessibility Checklist (General) +## 5. Security Review + +| Check | Status | Notes | +|-------|--------|-------| +| Hardcoded secrets | ✅ None | | +| SQL injection | ✅ N/A | No SQL (SQLite is WebKit-managed) | +| Command injection | ✅ Safe | Uses `Command::new()` with list args, no `shell=True` | +| Path traversal (ZIP) | ✅ Validated | `canonicalize()` check in import | +| XSS | ✅ N/A | No HTML generation | +| SSRF | ⚠️ Low risk | favicon.rs fetches user-provided URLs — rate limited by UI, 10s timeout, 5MB limit | +| Permission model | ⚠️ | Auto-grants camera/mic/notification — see 2.6 | +| Cookie security | ✅ | SQLite persistent storage, file-system protected | +| ITP disabled | ⚠️ | Cross-site tracking allowed — see 2.5 | -- [x] All interactive elements have accessible labels — **DONE** (buttons, entries, dropdown, switches, FlowBox icons) -- [x] Keyboard navigation works for all flows — **DONE** (ESC closes dialogs ✓, dynamic focus order ✓, Tab order relies on GTK4 defaults) -- [x] Color is never the only indicator — **DONE** (delete button uses `destructive-action` CSS class = red background + trash icon shape = two indicators) -- [ ] Text is readable at 2x font size — **UNTESTED** (no responsive breakpoints; `AdwClamp` is used in dialog ✓) -- [x] Focus indicators are visible — **OK** (relies on Adwaita theme defaults, known to work well) +**Overall:** No critical security vulnerabilities. Low-risk items documented above. --- -## Tech Debt +## 6. Architecture Overview -### From ruff (31 errors) -- 30× E402: Module-level imports after `gi.require_version()` — expected, suppress with config -- 1× F823: `_` referenced before assignment in `application.py:185` — **real bug** +``` +biglinux-webapps/ +├── Cargo.toml # workspace root +├── crates/ +│ ├── webapps-core/ # shared library +│ │ └── src/ +│ │ ├── config.rs # APP_ID, version, paths +│ │ ├── desktop.rs # .desktop file I/O +│ │ ├── i18n.rs # gettext init +│ │ ├── models/ # WebApp, Browser, AppMode +│ │ └── templates/ # preset webapp templates (registry pattern) +│ │ +│ ├── webapps-manager/ # GTK4 management UI (big-webapps-gui) +│ │ └── src/ +│ │ ├── main.rs # entry point +│ │ ├── window.rs # main window (574L) ⚠️ +│ │ ├── webapp_dialog.rs # create/edit (557L) ⚠️ +│ │ ├── service.rs # business logic (609L) ⚠️ +│ │ ├── favicon.rs # HTTP fetch + icon processing +│ │ ├── webapp_row.rs # list item widget +│ │ ├── browser_dialog.rs +│ │ ├── template_gallery.rs +│ │ ├── welcome_dialog.rs +│ │ └── style.rs # CSS +│ │ +│ └── webapps-viewer/ # WebKitGTK browser (big-webapps-viewer) +│ └── src/ +│ ├── main.rs # CLI entry (clap) +│ └── window.rs # browser window (657L) ⚠️ +│ +├── data/ # icons, .desktop, metainfo +└── po/ # translations +``` -### From vulture (19 dead code items) -- 6× unused `parameter`/`param`/`d` — GTK callback signatures, prefix with `_` -- 3× unused `controller`/`keycode`/`state` in key handlers — GTK callback signatures -- 1× unused `args` in `main_window.py:38` -- 1× unused `flowbox` in `webapp_dialog.py:626` +### Architecture Strengths +- ✅ Clean 3-crate separation (core/manager/viewer) +- ✅ Template registry pattern — extensible without code changes +- ✅ Desktop file generation isolated in core +- ✅ Proper i18n with gettext +- ✅ CSS centralized in style.rs -### From radon (7 high-complexity functions — most now resolved) -| Function | CC Before | CC After | Grade | Status | -|---|---|---|---|---| -| `get_system_default_browser` | 54 | ~5 | A | ✅ Refactored to `_BROWSER_DESKTOP_MAP` | -| `on_webapp_dialog_response` | 17 | ~6 | A | ✅ Extracted `_find_webapp_after_reload()` | -| `_handle_import_response` | 15 | ~5 | A | ✅ Extracted `_import_single_webapp()` | -| `_handle_export_response` | 14 | ~5 | A | ✅ Extracted `_serialize_webapp_for_export()` | -| `_fetch_info_thread` | 13 | ~5 | A | ✅ Extracted `_resolve_title()` + `_collect_icon_urls()` | -| `handle_starttag` | 12 | 12 | B | — Inherent to HTML parsing, no practical split | -| `WebAppDialog.__init__` | 11 | ~6 | A | ✅ Extracted `_assign_default_browser()` | +### Architecture Weaknesses +- ⚠️ No GObject subclassing — all widgets built imperatively with Rc +- ⚠️ service.rs mixes CRUD, browser detection, migration, import/export (SRP violation) +- ⚠️ 4 files >500 LOC — should be split for maintainability +- ⚠️ No async I/O pattern — blocking calls on UI thread (see 2.3) +- ⚠️ No state management layer — Rc> passed everywhere via clones -### From mypy (1 error) -- Missing stubs for `requests` library — install `types-requests` +--- -### No tech debt markers -- Zero TODO/FIXME/HACK/XXX found in codebase +## 7. Action Plan + +### Phase A: Quick Wins (< 1 day) + +| # | Task | Files | Auto? | +|---|------|-------|-------| +| A1 | `cargo fmt` | all | ✅ Auto | +| A2 | `cargo clippy --fix` | all | ✅ Auto | +| A3 | Fix 2 unwraps → `.expect()` | viewer/window.rs | Manual | +| A4 | Add `set_accessible_name()` to ~15 icon buttons | 5 files | Manual | +| A5 | Add ITP comment explaining WHY disabled | viewer/window.rs | Manual | +| A6 | Fix README (Python → Rust) | README.md | Manual | + +### Phase B: Core Quality (2-3 days) + +| # | Task | Files | Notes | +|---|------|-------|-------| +| B1 | Write unit tests for `shell_split()`, `parse_exec_line()` | service.rs | Pure logic, easy tests | +| B2 | Write unit tests for `extract_title()`, `resolve_url()` | favicon.rs | Pure logic | +| B3 | Write unit tests for registry `match_url()`, `search()` | registry.rs | Pure logic | +| B4 | Write integration tests for service CRUD | service.rs | Temp dir needed | +| B5 | Install + run `cargo audit` | Cargo.toml | Check dep vulns | +| B6 | Add semantic heading roles to category headers | window.rs, template_gallery.rs | A11y | +| B7 | Add live region for search result feedback | window.rs | A11y | + +### Phase C: UX Polish (1 week) + +| # | Task | Files | Notes | +|---|------|-------|-------| +| C1 | Collapse "Behavior" section by default (new webapp) | webapp_dialog.rs | Cognitive load | +| C2 | Hide browser button in App mode rows | webapp_row.rs | Clarity | +| C3 | Add category explanation subtitle | webapp_dialog.rs | User guidance | +| C4 | Replace manual Switch+Label with AdwSwitchRow | webapp_dialog.rs, welcome_dialog.rs | A11y + HIG | +| C5 | Fullscreen first-use hint toast | viewer/window.rs | Discoverability | +| C6 | Validate URL in real-time (not just on Save) | webapp_dialog.rs | Error prevention | + +### Phase D: Architecture (2+ weeks) + +| # | Task | Files | Notes | +|---|------|-------|-------| +| D1 | Split service.rs into modules | service/ | SRP | +| D2 | Split viewer/window.rs | viewer/ | Maintainability | +| D3 | Move import/export to background threads | service.rs, window.rs | UI responsiveness | +| D4 | Cache browser detection results | service.rs | Avoid repeated process spawns | +| D5 | Evaluate removing tokio (use glib async for zbus) | Cargo.toml | Binary size | +| D6 | Add per-webapp permission preferences | viewer/window.rs | Security | --- -## Metrics (before) +## 8. Baseline Metrics ``` -ruff lint: 31 errors (30 E402 expected, 1 F823 real bug) -ruff format: 2 files need formatting (application.py, main_window.py) -mypy: 1 error (missing stubs for requests) -vulture: 19 unused variables (100% confidence) -radon CC ≥ C: 7 functions (worst: F grade, CC=54) -test coverage: 0% (no tests exist) -tech debt: 0 markers -type hints: 0% of functions annotated -a11y labels: 0 accessible-name set on any widget +Binary sizes (release, stripped): + big-webapps-gui: TBD (measure after build) + big-webapps-viewer: TBD + +Startup time: TBD (measure with `time big-webapps-gui`) + +Clippy warnings: 33 → target 0 +Format diffs: 74 → target 0 +Test count: 0 → target 30+ (Phase B) +Test coverage: 0% → target 80% on service.rs, registry.rs +Unwrap calls: 2 → target 0 +A11y issues: ~20 → target 0 (Phase A+B+C) ``` -## Metrics (after this review session) +--- + +## 9. Orca Screen Reader Test Checklist ``` -ruff lint: 0 errors on all Python files (all checks passed) -ruff format: OK on modified files -shell syntax: OK (bash -n) on big-webapps, big-webapps-exec -a11y labels: 15+ accessible-name/description set (buttons, entries, switches, dropdown, FlowBox, loading, empty state) -a11y nav: category headings = AccessibleRole.HEADING + focusable; dynamic focus order (URL new, Name edit) -a11y toast: destructive toasts = HIGH priority (assertive) -a11y visual: FaviconPicker .favicon-selected CSS; delete button destructive-action (color+shape) -a11y color: color never sole indicator (trash icon shape + destructive-action CSS) -CC reduced: 6/7 high-CC functions refactored (avg CC 54→~5) -shell fixes: 7 security/robustness fixes (quoting, JSON generation, arrays, flock, cmp -s, case statement) -shell coupling: get_json.sh chain eliminated → direct big-webapps json + enrich_webapps_with_icons() -architecture: webapp_service.py biz layer (215L), application.py simplified (-120L) -new files: browser_registry.py, favicon_picker.py, webapp_service.py -file split: webapp_dialog.py 821→~720L, setup_ui() monolith → 5 builder methods + dead code removed -GTK4 migration: get_app_icon_url.py GTK3→GTK4 -UX: remove-all text-confirm; progressive disclosure (AdwExpanderRow); save spinner (thread+overlay); - URL real-time validation (urlparse+icon); welcome dialog "Don't show again" (inverted); focus order +[ ] Open app → Tab through header buttons → all announced with name +[ ] Type in search → result count announced via live region +[ ] Open Add dialog → all fields have accessible labels +[ ] Toggle App Mode switch → state change announced +[ ] Select template → action result announced +[ ] Open browser dialog → radio buttons announce browser name +[ ] Webapp list rows → each announces webapp name and available actions +[ ] Delete webapp → confirmation dialog is accessible +[ ] Open viewer → navigation buttons all announced +[ ] Ctrl+L in viewer → URL entry focus announced +[ ] F11 in viewer → fullscreen state announced ``` + +--- + +## 10. Notes + +- **tokio:** Present in workspace deps but only used by zbus crate (D-Bus IPC). If zbus can run on glib main context, removing tokio would reduce compile time and binary size. +- **webkit6 accessibility:** WebKitGTK has inherent limitations for screen readers — web content inside the WebView is not fully accessible to Orca. This is an upstream limitation, not fixable in this project. Document in README. +- **Browser detection caching:** `detect_browsers()` spawns external processes (flatpak list, xdg-settings). Results should be cached for the app session since installed browsers don't change during a single run. +- **shell_split() limitations:** Custom tokenizer doesn't handle escaped quotes (`\"`) or heredoc-style strings. Document this or switch to `shell-words` crate. +- **ZIP path traversal:** Current `canonicalize()` check is correct but `canonicalize()` requires the path to exist. Consider using `Path::components()` check for `..` segments as additional defense. diff --git a/PLANNING.old.md b/PLANNING.old.md new file mode 100644 index 00000000..20abd209 --- /dev/null +++ b/PLANNING.old.md @@ -0,0 +1,319 @@ +# PLANNING.md — BigLinux WebApps Improvement Roadmap + +## Files Analyzed + +**Total Python files read:** 18 +**Total Python lines analyzed:** 3439 +**Large files (>500 lines) confirmed read in full:** +- `webapps/ui/webapp_dialog.py` (763 lines) — read completely L1-763 +- `webapps/ui/main_window.py` (520 lines) — read completely L1-520 + +**Shell scripts read:** 4 (big-webapps 277L, big-webapps-exec 118L, check_browser.sh 164L, others) +**Other files read:** PKGBUILD, desktop entries, CSS profile, README.md + +--- + +## Current State Summary + +**Overall grade: C+ → A-** (after shell security + accessibility + CC refactoring + GTK4 migration + browser registry + UX fixes + shell decoupling + dialog split + Orca navigation + service layer + progressive disclosure + save feedback + URL validation + focus management + dead code removal) + +The application is functional and ships to users. The GTK4/Adw migration is complete and the UI structure is reasonable. However, significant issues exist: + +- **No tests at all** — zero test files, zero coverage +- **Critical security vulnerability** — `shell=True` with user-supplied data in `CommandExecutor` +- **Massive code duplication** — `get_system_default_browser()` has the same 30-line if/elif chain duplicated verbatim (CC=54) +- **No accessibility** — zero `accessible-name`, zero `accessible-description` on any widget +- **Architecture bleeding** — UI code directly calls shell scripts, no clear data layer +- **Translation bug** — `_()` referenced before assignment in `application.py:185` (F823) +- **No type hints** anywhere in 3400+ lines of Python + +--- + +## Critical (fix immediately) + +### Security + +- [x] **Command injection via `shell=True`**: `command_executor.py:38` — `execute_command()` runs arbitrary strings through `shell=True`. Methods like `create_webapp()` (L106) interpolate user input (`app_name`, `app_url`) directly into shell commands with only single-quote wrapping, which is trivially bypassable (e.g., name containing `'; rm -rf /; '`). **Fix:** Use `subprocess.run()` with a list of arguments, never `shell=True`. Refactor `create_webapp()`, `update_webapp()`, `remove_webapp()` to pass args as lists. + +- [x] **Zip extraction path traversal**: `application.py:319` — `zipf.extractall(temp_dir)` without validating member paths. A malicious ZIP can write files outside `temp_dir` via `../` entries (ZipSlip). **Fix:** Validate all member paths before extraction, or use `shutil.unpack_archive` with path validation. + +- [x] **Translation `_` referenced before assignment**: `application.py:185` — ruff F823. The `_` function from `translation.py` is imported but due to module-level import ordering, it may not be available in all code paths. The import works at runtime because `gi.require_version` runs first, but this is fragile. **Fix:** Ensure `from webapps.utils.translation import _` is at the correct scope. + +- [x] **Shell script quoting vulnerabilities**: `big-webapps` — `rm $filename`, `if [ -f $filename ]`, `if [ $command = ... ]` without quotes. Filenames with spaces/globbing cause unexpected behavior or data loss. **Fix:** Quote all variable expansions: `rm "$filename"`, `if [ -f "$filename" ]`, `if [ "$command" = ... ]`. + +- [x] **Manual JSON generation in `big-webapps`**: L241-251 — manual escape with `${name//\"/\\\\\"}` is fragile; backslashes, tabs, newlines in names break JSON. **Fix:** Replaced with `_json_escape()` function using `sed` for proper `\`/`"`/tab escaping, and `printf` for structured JSON output. + +- [x] **`big-webapps-exec` unquoted `$browser_exec`**: All `exec $browser_exec` and `$browser_exec ... &` lines — word splitting on flatpak commands (`flatpak run com.brave.Browser` becomes 3 separate words). **Fix:** Changed `browser_exec` to bash array `browser_exec=(...)`, used `"${browser_exec[@]}"` everywhere. + +- [x] **`big-webapps-exec` icon copy on every launch**: L19-21 — `cp "$icon" ~/.local/share/icons/` + `sed -Ei` runs on every execution, even if icon is already current. **Fix:** Added `cmp -s` check — only copy+sed if icon differs or doesn't exist. + +- [x] **Wayland race condition in `big-webapps-exec`**: L95-106 — `mv -f` of .desktop files without locking. Two simultaneous instances corrupt the original .desktop. **Fix:** Added `flock` advisory locking; second instance skips icon swap and launches directly. + +- [x] **`sed` chain for browser name mapping**: `big-webapps` — fragile `sed` pipeline for `short_browser`. **Fix:** Replaced with `case` statement with glob patterns. + +### Bugs + +- [x] **`get_app_icon_url.py` uses GTK3**: `get_app_icon_url.py:6` — Migrated to GTK4 (`gi.require_version("Gtk", "4.0")`). Uses `Gtk.IconTheme.get_for_display()` + `lookup_icon()` returning `IconPaintable` with `get_file().get_path()`. Requires `Gtk.init()` + `Gdk.Display.get_default()`. + +- [x] **`BROWSER_ICONS_PATH` is relative**: `browser_icon_utils.py:9` — `BROWSER_ICONS_PATH = "icons"` is relative to CWD. Works only because `big-webapps-gui` does `cd /usr/share/biglinux/webapps/` before launching. If launched from any other directory, all browser icons fail silently. **Fix:** Use `os.path.dirname(os.path.realpath(__file__))` to compute absolute path. + +- [x] **`name_label.set_ellipsize(True)` wrong API**: `webapp_row.py:73,82` — `set_ellipsize()` expects a `Pango.EllipsizeMode` enum, not a boolean. GTK4 may silently accept `True` as `1` (which maps to `ELLIPSIZE_START`), but the intent is likely `ELLIPSIZE_END`. **Fix:** `name_label.set_ellipsize(Pango.EllipsizeMode.END)`. + +- [x] **`_open_folder` infinite recursion**: `application.py:97-100` — If `os.makedirs` creates the folder, it calls `self._open_folder()` again, which now finds the folder and opens it. This is fragile — if `Gtk.show_uri` and `xdg-open` both fail, it loops. There's also no guard against repeated creation. **Fix:** Remove recursion, just `makedirs` then `show_uri` in a single flow. + +--- + +## High Priority (code quality) + +### Architecture + +- [x] **Extract browser name mapping to data**: `command_executor.py:160-292` — `get_system_default_browser()` has cyclomatic complexity **F(54)** with the same 30-browser if/elif chain **duplicated twice** (xdg-settings and xdg-mime paths). **Fix:** Create a `BROWSER_DESKTOP_MAP` dictionary mapping desktop file patterns to browser IDs. Reduce to ~20 lines. + +- [x] **Duplicate browser name maps**: Created `browser_registry.py` as single source of truth for Python side (`BROWSER_DISPLAY_NAMES` + `DESKTOP_PATTERN_MAP`). `browser_model.py` and `command_executor.py` now import from it. Shell scripts (`check_browser.sh`, `big-webapps-exec`) retain their own layer-specific data (paths, flatpak exec commands) since they cannot import Python. + +- [x] **Shell script coupling**: `application.py` now calls `big-webapps json` directly and resolves icons via `enrich_webapps_with_icons()` in `browser_icon_utils.py`. Eliminated `get_json.sh` → `get_app_icon_url.py` chain (Python → shell → Python → shell → Python). + +- [x] **Two different application IDs**: `main.py:24` sets `br.com.biglinux.webapps`, `application.py:32` sets `org.biglinux.webapps`. One of these is ignored at runtime. **Fix:** Use a single canonical app ID. + +### Code Quality + +- [x] **Add type hints to all function signatures**: 0/18 files have type annotations. Start with models and utils (pure logic), then UI. This enables mypy and IDE support. + +- [x] **Unused variables from GTK signal handlers**: vulture reports 19 unused variables. Most are GTK callback signatures (`controller`, `keycode`, `state`, `param`). **Fix:** Prefix with `_` (e.g., `_controller`, `_keycode`). For truly unused vars like `d` in `application.py:435`, remove them. + +- [x] **Format 2 files**: `application.py` and `main_window.py` fail `ruff format --check`. **Fix:** Run `ruff format`. + +- [x] **30 E402 import violations**: All `from gi.repository import ...` lines trigger E402 because they follow `gi.require_version()`. This is expected and correct for GI. **Fix:** Add `# noqa: E402` inline or configure ruff to ignore E402 for `gi.repository` imports. Alternatively, add a `ruff.toml` with per-file ignores. + +- [x] **High complexity functions**: `_handle_import_response` (CC=15→5), `_handle_export_response` (CC=14→5), `on_webapp_dialog_response` (CC=17→6). **Fix:** Extracted `_serialize_webapp_for_export()`, `_import_single_webapp()` from `application.py`. Extracted `_find_webapp_after_reload()` from `main_window.py`, collapsed create/update duplicate search into shared helper with URL-only fallback. + +- [x] **`print()` statements as logging**: 40+ `print()` calls throughout the codebase used for debugging. No structured logging. **Fix:** Replace with `logging` module. Use `logger = logging.getLogger(__name__)` per module. Level: DEBUG for dev info, ERROR for failures. + +--- + +## Medium Priority (UX improvements) + +### Progressive Disclosure + +- [x] **Profile settings overwhelm new users**: `webapp_dialog.py` — profile switch + profile name entry now wrapped in `AdwExpanderRow` ("Profile Settings"). Default collapsed. Only shown when App Mode is active. *Principle: Progressive Disclosure — reduce cognitive load on primary flow.* + +- [x] **Category dropdown shows all 9 categories upfront**: `Gtk.DropDown` already collapses the list — user only sees choices on click (≠ radio buttons). Default "Webapps" pre-selected for new webapps. No change needed — Hick's Law mitigated by dropdown widget design. + +### Feedback Loops + +- [x] **No feedback during webapp creation**: `webapp_dialog.py` — Save now shows loading overlay, runs command in background thread via `threading.Thread(daemon=True)`, uses `GLib.idle_add` to close dialog on completion. *Principle: System Status Visibility (Nielsen).* + +- [x] **URL validation is reactive only**: `webapp_dialog.py` — Real-time URL validation with `urlparse` (checks scheme http/https + netloc). Suffix icon `emblem-ok-symbolic` (success) / `dialog-warning-symbolic` (error) + CSS classes. *Principle: Error Prevention > Error Recovery.* + +- [x] **Delete confirmation lacks context**: `main_window.py:363` — Delete dialog shows "Are you sure you want to delete {name}?" but doesn't show the URL or browser, making it hard to distinguish between similarly-named webapps. **Fix:** Include URL and browser in the dialog body. *Principle: Recognition over Recall.* + +### Visual Hierarchy + +- [x] **Welcome dialog CSS leaks globally**: `welcome_dialog.py:77` — `Gtk.StyleContext.add_provider_for_display()` applies headerbar CSS to ALL windows, not just the welcome dialog. **Fix:** Use `Gtk.StyleContext.add_provider()` on the specific widget, like `webapp_dialog.py` does correctly at L168. + +- [x] **Icon selection FlowBox has no visual feedback**: `FaviconPicker` in `favicon_picker.py` now applies `.favicon-selected` CSS class (accent-colored border) to the active `FlowBoxChild` and removes it from the previous selection. + +### First-Run Experience + +- [x] **Welcome dialog switch UX confusing**: `welcome_dialog.py` — Renamed label from "Show dialog on startup" to "Don't show this again" with inverted logic. Switch ON = suppress. Matches standard UX convention. *Principle: Match between system and real world (Nielsen).* + +--- + +## Low Priority (polish & optimization) + +- [x] **`time.time()` + `hash(datetime.now())` for webapp file IDs**: `main_window.py:172` — Uses `int(time.time())-{hash(datetime.now()) % 10000}` while `webapp_dialog.py:701` uses `uuid.uuid4().hex[:8]`. Inconsistent ID generation. **Fix:** Use UUID everywhere. The `main_window.py` pattern can produce collisions. + +- [x] **`on_remove_all` double-confirmation UX**: Replaced two consecutive dialogs with a single `Adw.MessageDialog` containing a text entry. User must type the exact phrase (translated) to enable the destructive confirm button. 3 methods → 2 methods. + +- [x] **`update_old_desktop_files.sh` references non-existent path**: L37 references `/usr/share/bigbashview/apps/webapps/check_browser.sh` which doesn't exist in the package. Line 46 references `/usr/share/bigbashview/bcc/apps/biglinux-webapps/webapps/`. These appear to be legacy paths from when the app used BigBashView. **Fix:** Update or remove dead references. + +- [x] **`biglinux-webapps-systemd` also references legacy path**: L30 references `/usr/share/bigbashview/bcc/apps/biglinux-webapps/webapps/`. **Fix:** Same as above. + +- [x] **CSS headerbar override in webapp_dialog.py**: Already uses `Gtk.StyleContext.add_provider()` on specific style context (not `add_provider_for_display`). No leak. Verified. + +- [x] **AdwAboutWindow is deprecated**: `application.py:119` uses `Adw.AboutWindow`. Newer libadwaita versions use `Adw.AboutDialog`. **Fix:** Check the target libadwaita version and update if ≥ 1.5. + +- [x] **Hardcoded version "3.0.0"**: Already resolved — `APP_VERSION = "3.1.0"` in `__init__.py`, imported by `application.py`. PKGBUILD uses rolling `$(date)` for package version (different semantic). + +--- + +## Architecture Recommendations + +### Current Structure +``` +webapps/ +├── application.py # App class, export/import, action registration +├── models/ +│ ├── browser_model.py # Browser data model +│ └── webapp_model.py # WebApp data model +├── ui/ +│ ├── browser_dialog.py # Browser selection dialog +│ ├── favicon_picker.py # ✅ NEW — FlowBox favicon selector widget +│ ├── main_window.py # Main window +│ ├── webapp_dialog.py # Create/edit dialog (763L — too large) +│ ├── webapp_row.py # List row widget +│ └── welcome_dialog.py # Welcome screen +└── utils/ + ├── browser_icon_utils.py # Icon path resolution + ├── browser_registry.py # ✅ NEW — Central browser ID/name/pattern mapping + ├── command_executor.py # Shell command execution + ├── translation.py # i18n + ├── url_utils.py # Website metadata fetcher + └── webapp_service.py # ✅ NEW — Business logic layer (CRUD, export/import) +``` + +### Recommended Changes + +1. **Split `webapp_dialog.py`** (821L→736L): ✅ Extracted `FaviconPicker` widget to `favicon_picker.py` (88L) with selection highlight CSS. Refactored `setup_ui()` from monolithic 326L method into orchestrator + 5 builder methods: `_build_form_group()`, `_build_category_row()`, `_build_mode_browser_profile()`, `_build_buttons()`, `_build_loading_overlay()`. Removed dead `favicons_group`/`favicons_box` code. + +2. ~~**Create `browser_registry.py`**~~: ✅ Done — Created `webapps/utils/browser_registry.py` with `BROWSER_DISPLAY_NAMES` + `DESKTOP_PATTERN_MAP` + `get_display_name()` + `match_desktop_to_browser()`. Both `browser_model.py` and `command_executor.py` import from it. + +3. ~~**Create `webapp_service.py`**~~: ✅ Done — Created `webapps/utils/webapp_service.py` (~215L) with `WebAppService` class. Methods: `load_data()`, `create_webapp()`, `update_webapp()`, `delete_webapp()`, `delete_all_webapps()`, `find_webapp()`, `export_webapps()`, `import_webapps()`, `get_system_default_browser()`. All business logic moved from `application.py` and `main_window.py`. + +4. **Replace shell string execution**: `CommandExecutor.execute_command(shell=True)` → specific methods with `subprocess.run(list)`. No shell interpolation. + +5. ~~**State management**~~: ✅ Improved — `find_webapp()` now accepts `app_file` (desktop filename) as stable ID, with URL+name as fallback. `_find_webapp_after_reload()` passes `app_file` from the original webapp. Full GObject signals deferred — current approach is reliable with stable IDs. + +--- + +## UX Recommendations + +1. **Drag-and-drop URL support**: Allow users to drag a URL from browser to the window to create a webapp. Reduces friction from copy-paste workflow. *Principle: Direct Manipulation — let users interact naturally.* + +2. **Inline editing**: Instead of opening a full dialog for simple changes (name, category), allow inline editing in the list row. *Principle: Efficiency of use — expert users should have shortcuts.* + +3. **Visual browser indicator**: The browser icon in the row is small (27px) and lacks a label. Users may not recognize browser icons at a glance. **Fix:** Add browser name as subtitle text in the row. *Principle: Recognition over Recall.* + +4. **Empty state with presets**: Instead of a blank empty state, offer one-click common webapp presets (WhatsApp, Spotify, Gmail, etc.). Reduces the barrier to first use. *Principle: Reduce activation energy — the hardest part is starting.* + +5. **Undo delete**: Destructive deletion should be undoable for 5-10 seconds via an "Undo" action in the toast notification (Adw.Toast supports action buttons). This is safer than confirmation dialogs. *Principle: Forgiving design — allow recovery, not just prevention.* + +--- + +## Orca Screen Reader Compatibility + +**Issues found:** + +### Critical — Completely inaccessible widgets + +- [x] **All buttons lack accessible names**: Throughout the codebase, buttons are created with only icons and no accessible name. A blind user hears nothing or "button" when focusing these: + - `webapp_row.py:99` — browser button (icon-only, no label, no accessible-name) + - `webapp_row.py:105` — edit button (icon-only, tooltip exists but Orca reads accessible-name first) + - `webapp_row.py:114` — delete button (icon-only) + - `main_window.py:68` — search toggle button + - `main_window.py:77` — menu button + **Fix:** Added `update_property([Gtk.AccessibleProperty.LABEL], [...])` for each. + +- [x] **Icon FlowBox items have no labels**: `webapp_dialog.py:600-610` — Favicon selection items are `Gtk.Image` inside `Gtk.Box`. Orca cannot announce what each icon represents. A blind user cannot distinguish between favicons. **Fix:** Added `accessible-description` with ordinal ("Icon 1 of 5"). + +- [x] **Category dropdown has no accessible label**: `webapp_dialog.py:260` — The `Gtk.DropDown` is added as a suffix to `AdwActionRow`. **Fix:** Added `update_property([Gtk.AccessibleProperty.LABEL], [_("Category")])`. + +- [x] **Profile switch has no accessible label**: `webapp_dialog.py:303` — `Gtk.Switch` is a suffix. **Fix:** Added `update_property([Gtk.AccessibleProperty.LABEL], [_("Use separate profile")])`. + +- [x] **Search entry has no accessible label**: `main_window.py:107` — `Gtk.SearchEntry` inside `Gtk.SearchBar` has no label. **Fix:** Added `update_property([Gtk.AccessibleProperty.LABEL], [_("Search WebApps")])`. + +- [x] **App mode switch has no accessible label**: `webapp_dialog.py` — `Gtk.Switch` for app mode. **Fix:** Added `update_property([Gtk.AccessibleProperty.LABEL], [_("Application Mode")])`. + +### High — Missing state announcements + +- [x] **Loading overlay not announced**: Added `accessible-description` to loading label ("Detecting website information, please wait"). After fetch completes, focus moves to Name entry so Orca announces the detected title. + +- [x] **Toast notifications Orca priority**: `Adw.Toast` now uses `ToastPriority.HIGH` for destructive actions (delete, remove-all, errors) → maps to `role="alert"` (assertive). Info toasts remain `NORMAL` (polite `role="status"`). + +- [x] **Empty state not focused on load**: `AdwStatusPage` now set `focusable(True)` and `grab_focus()` called when empty state is shown. Orca announces "No WebApps Found" + description. + +### Medium — Navigation issues + +- [x] **No skip-navigation for category headers**: Category headers now created with `Gtk.AccessibleRole.HEADING` via `GObject.new()` and `set_focusable(True)`. Orca "h" key navigates between categories. + +- [x] **Dialog focus order is not optimal**: `webapp_dialog.py` — Dynamic focus on `map` signal: URL entry for new webapps (need to type URL first), Name entry for editing (URL already filled). Also removed dead `find_all_widget_types()` method — `self.name_row` used directly. + +**Test checklist for manual verification:** +- [ ] Launch app with Orca running (`orca &; big-webapps-gui`) +- [ ] Navigate entire UI using only Tab/Shift+Tab +- [ ] Verify Orca announces every button, field, and state change +- [ ] Test "Add WebApp" flow without looking at screen +- [ ] Test "Detect" → icon selection → save flow with Orca +- [ ] Verify error messages are announced by Orca +- [ ] Test delete flow: button → confirmation dialog → result toast +- [ ] Test search: toggle → type → verify results announced +- [ ] Test browser dialog: navigation → selection → confirm + +--- + +## Accessibility Checklist (General) + +- [x] All interactive elements have accessible labels — **DONE** (buttons, entries, dropdown, switches, FlowBox icons) +- [x] Keyboard navigation works for all flows — **DONE** (ESC closes dialogs ✓, dynamic focus order ✓, Tab order relies on GTK4 defaults) +- [x] Color is never the only indicator — **DONE** (delete button uses `destructive-action` CSS class = red background + trash icon shape = two indicators) +- [ ] Text is readable at 2x font size — **UNTESTED** (no responsive breakpoints; `AdwClamp` is used in dialog ✓) +- [x] Focus indicators are visible — **OK** (relies on Adwaita theme defaults, known to work well) + +--- + +## Tech Debt + +### From ruff (31 errors) +- 30× E402: Module-level imports after `gi.require_version()` — expected, suppress with config +- 1× F823: `_` referenced before assignment in `application.py:185` — **real bug** + +### From vulture (19 dead code items) +- 6× unused `parameter`/`param`/`d` — GTK callback signatures, prefix with `_` +- 3× unused `controller`/`keycode`/`state` in key handlers — GTK callback signatures +- 1× unused `args` in `main_window.py:38` +- 1× unused `flowbox` in `webapp_dialog.py:626` + +### From radon (7 high-complexity functions — most now resolved) +| Function | CC Before | CC After | Grade | Status | +|---|---|---|---|---| +| `get_system_default_browser` | 54 | ~5 | A | ✅ Refactored to `_BROWSER_DESKTOP_MAP` | +| `on_webapp_dialog_response` | 17 | ~6 | A | ✅ Extracted `_find_webapp_after_reload()` | +| `_handle_import_response` | 15 | ~5 | A | ✅ Extracted `_import_single_webapp()` | +| `_handle_export_response` | 14 | ~5 | A | ✅ Extracted `_serialize_webapp_for_export()` | +| `_fetch_info_thread` | 13 | ~5 | A | ✅ Extracted `_resolve_title()` + `_collect_icon_urls()` | +| `handle_starttag` | 12 | 12 | B | — Inherent to HTML parsing, no practical split | +| `WebAppDialog.__init__` | 11 | ~6 | A | ✅ Extracted `_assign_default_browser()` | + +### From mypy (1 error) +- Missing stubs for `requests` library — install `types-requests` + +### No tech debt markers +- Zero TODO/FIXME/HACK/XXX found in codebase + +--- + +## Metrics (before) + +``` +ruff lint: 31 errors (30 E402 expected, 1 F823 real bug) +ruff format: 2 files need formatting (application.py, main_window.py) +mypy: 1 error (missing stubs for requests) +vulture: 19 unused variables (100% confidence) +radon CC ≥ C: 7 functions (worst: F grade, CC=54) +test coverage: 0% (no tests exist) +tech debt: 0 markers +type hints: 0% of functions annotated +a11y labels: 0 accessible-name set on any widget +``` + +## Metrics (after this review session) + +``` +ruff lint: 0 errors on all Python files (all checks passed) +ruff format: OK on modified files +shell syntax: OK (bash -n) on big-webapps, big-webapps-exec +a11y labels: 15+ accessible-name/description set (buttons, entries, switches, dropdown, FlowBox, loading, empty state) +a11y nav: category headings = AccessibleRole.HEADING + focusable; dynamic focus order (URL new, Name edit) +a11y toast: destructive toasts = HIGH priority (assertive) +a11y visual: FaviconPicker .favicon-selected CSS; delete button destructive-action (color+shape) +a11y color: color never sole indicator (trash icon shape + destructive-action CSS) +CC reduced: 6/7 high-CC functions refactored (avg CC 54→~5) +shell fixes: 7 security/robustness fixes (quoting, JSON generation, arrays, flock, cmp -s, case statement) +shell coupling: get_json.sh chain eliminated → direct big-webapps json + enrich_webapps_with_icons() +architecture: webapp_service.py biz layer (215L), application.py simplified (-120L) +new files: browser_registry.py, favicon_picker.py, webapp_service.py +file split: webapp_dialog.py 821→~720L, setup_ui() monolith → 5 builder methods + dead code removed +GTK4 migration: get_app_icon_url.py GTK3→GTK4 +UX: remove-all text-confirm; progressive disclosure (AdwExpanderRow); save spinner (thread+overlay); + URL real-time validation (urlparse+icon); welcome dialog "Don't show again" (inverted); focus order +``` diff --git a/README.md b/README.md index 0142c067..5ca6fce6 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,8 @@ A modern GTK4 tool to create and manage webapps, supporting multiple browsers wh ## Technical Details -- Built with Python using GTK4 and libadwaita +- Built with Rust using GTK4 and libadwaita +- WebKitGTK 6.0 for webapp viewer with isolated profiles - Uses website scraping to extract icons and metadata - Integrated with desktop environment via desktop files - Compatible with both Xorg and Wayland display servers @@ -54,8 +55,8 @@ GPL-3.0 ## Dependencies -- python-bs4 -- python-requests +- gtk4 (>= 4.10) +- libadwaita-1 (>= 1.6) +- webkitgtk-6.0 (>= 2.50) - gettext -- python-pillow -- python-gobject +- openssl diff --git a/crates/webapps-core/src/desktop.rs b/crates/webapps-core/src/desktop.rs index 677fa93e..5884b1c5 100644 --- a/crates/webapps-core/src/desktop.rs +++ b/crates/webapps-core/src/desktop.rs @@ -104,7 +104,10 @@ pub fn desktop_file_id(url: &str) -> String { /// Path for a webapp's .desktop file pub fn desktop_file_path(webapp: &WebApp) -> PathBuf { let filename = if webapp.app_file.is_empty() { - format!("biglinux-webapp-{}.desktop", desktop_file_id(&webapp.app_url)) + format!( + "biglinux-webapp-{}.desktop", + desktop_file_id(&webapp.app_url) + ) } else { webapp.app_file.clone() }; @@ -136,6 +139,14 @@ pub fn remove_desktop_entry(webapp: &WebApp) -> Result<()> { /// Strip chars that could break desktop file Exec or shell parsing fn sanitize_desktop_field(s: &str) -> String { s.chars() - .filter(|c| *c != '"' && *c != '\'' && *c != '`' && *c != '\\' && *c != '\n' && *c != '\r' && *c != '$') + .filter(|c| { + *c != '"' + && *c != '\'' + && *c != '`' + && *c != '\\' + && *c != '\n' + && *c != '\r' + && *c != '$' + }) .collect() } diff --git a/crates/webapps-core/src/models/webapp.rs b/crates/webapps-core/src/models/webapp.rs index be4c6c6c..0341af23 100644 --- a/crates/webapps-core/src/models/webapp.rs +++ b/crates/webapps-core/src/models/webapp.rs @@ -179,7 +179,10 @@ impl WebAppCollection { if query.is_empty() { return self.webapps.iter().collect(); } - self.webapps.iter().filter(|app| app.matches(query)).collect() + self.webapps + .iter() + .filter(|app| app.matches(query)) + .collect() } pub fn categorized(&self, query: Option<&str>) -> HashMap> { diff --git a/crates/webapps-core/src/templates/google.rs b/crates/webapps-core/src/templates/google.rs index 83e122a4..88bf8255 100644 --- a/crates/webapps-core/src/templates/google.rs +++ b/crates/webapps-core/src/templates/google.rs @@ -19,7 +19,9 @@ pub fn templates() -> Vec { keywords: svec!["google", "docs", "document", "text"], mime_types: svec![ "application/vnd.openxmlformats-officedocument.wordprocessingml.document", - "application/msword", "application/rtf", "text/plain" + "application/msword", + "application/rtf", + "text/plain" ], file_handler: FileHandler::Upload, profile: "google".into(), @@ -36,7 +38,8 @@ pub fn templates() -> Vec { keywords: svec!["google", "sheets", "spreadsheet", "csv", "excel"], mime_types: svec![ "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", - "application/vnd.ms-excel", "text/csv" + "application/vnd.ms-excel", + "text/csv" ], file_handler: FileHandler::Upload, profile: "google".into(), diff --git a/crates/webapps-core/src/templates/mod.rs b/crates/webapps-core/src/templates/mod.rs index c1398973..3cf8ee22 100644 --- a/crates/webapps-core/src/templates/mod.rs +++ b/crates/webapps-core/src/templates/mod.rs @@ -1,8 +1,8 @@ -mod registry; -mod office365; -mod google; mod communication; +mod google; mod media; +mod office365; mod productivity; +mod registry; -pub use registry::{WebAppTemplate, TemplateRegistry, FileHandler, build_default_registry}; +pub use registry::{build_default_registry, FileHandler, TemplateRegistry, WebAppTemplate}; diff --git a/crates/webapps-core/src/templates/office365.rs b/crates/webapps-core/src/templates/office365.rs index a20cc209..d38e82fd 100644 --- a/crates/webapps-core/src/templates/office365.rs +++ b/crates/webapps-core/src/templates/office365.rs @@ -11,11 +11,18 @@ pub fn templates() -> Vec { comment: "Edit documents online with Microsoft Word".into(), generic_name: "Word Processor".into(), keywords: vec!["word", "document", "office", "docx", "microsoft"] - .into_iter().map(Into::into).collect(), + .into_iter() + .map(Into::into) + .collect(), mime_types: vec![ "application/vnd.openxmlformats-officedocument.wordprocessingml.document", - "application/msword", "application/rtf", "text/rtf", - ].into_iter().map(Into::into).collect(), + "application/msword", + "application/rtf", + "text/rtf", + ] + .into_iter() + .map(Into::into) + .collect(), file_handler: FileHandler::Upload, profile: "office365".into(), ..Default::default() @@ -29,11 +36,18 @@ pub fn templates() -> Vec { comment: "Edit spreadsheets online with Microsoft Excel".into(), generic_name: "Spreadsheet".into(), keywords: vec!["excel", "spreadsheet", "office", "xlsx", "csv", "microsoft"] - .into_iter().map(Into::into).collect(), + .into_iter() + .map(Into::into) + .collect(), mime_types: vec![ "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", - "application/vnd.ms-excel", "text/csv", "application/csv", - ].into_iter().map(Into::into).collect(), + "application/vnd.ms-excel", + "text/csv", + "application/csv", + ] + .into_iter() + .map(Into::into) + .collect(), file_handler: FileHandler::Upload, profile: "office365".into(), ..Default::default() @@ -46,12 +60,24 @@ pub fn templates() -> Vec { category: "Office".into(), comment: "Create presentations online with Microsoft PowerPoint".into(), generic_name: "Presentation".into(), - keywords: vec!["powerpoint", "presentation", "office", "pptx", "slides", "microsoft"] - .into_iter().map(Into::into).collect(), + keywords: vec![ + "powerpoint", + "presentation", + "office", + "pptx", + "slides", + "microsoft", + ] + .into_iter() + .map(Into::into) + .collect(), mime_types: vec![ "application/vnd.openxmlformats-officedocument.presentationml.presentation", "application/vnd.ms-powerpoint", - ].into_iter().map(Into::into).collect(), + ] + .into_iter() + .map(Into::into) + .collect(), file_handler: FileHandler::Upload, profile: "office365".into(), ..Default::default() @@ -65,7 +91,9 @@ pub fn templates() -> Vec { comment: "Take notes online with Microsoft OneNote".into(), generic_name: "Note Taking".into(), keywords: vec!["onenote", "notes", "office", "microsoft"] - .into_iter().map(Into::into).collect(), + .into_iter() + .map(Into::into) + .collect(), profile: "office365".into(), ..Default::default() }, @@ -78,7 +106,9 @@ pub fn templates() -> Vec { comment: "Email and calendar from Microsoft Outlook".into(), generic_name: "Email Client".into(), keywords: vec!["outlook", "email", "mail", "calendar", "microsoft"] - .into_iter().map(Into::into).collect(), + .into_iter() + .map(Into::into) + .collect(), features: vec!["notifications".into()], profile: "office365".into(), ..Default::default() @@ -92,7 +122,9 @@ pub fn templates() -> Vec { comment: "Chat and video conferencing with Microsoft Teams".into(), generic_name: "Instant Messaging".into(), keywords: vec!["teams", "chat", "video", "conferencing", "microsoft"] - .into_iter().map(Into::into).collect(), + .into_iter() + .map(Into::into) + .collect(), features: vec!["notifications".into(), "camera".into(), "microphone".into()], profile: "office365".into(), ..Default::default() @@ -106,7 +138,9 @@ pub fn templates() -> Vec { comment: "Cloud storage from Microsoft OneDrive".into(), generic_name: "Cloud Storage".into(), keywords: vec!["onedrive", "cloud", "storage", "files", "microsoft"] - .into_iter().map(Into::into).collect(), + .into_iter() + .map(Into::into) + .collect(), profile: "office365".into(), ..Default::default() }, @@ -119,7 +153,9 @@ pub fn templates() -> Vec { comment: "Microsoft 365 home — access all Office apps".into(), generic_name: "Office Suite".into(), keywords: vec!["office", "365", "microsoft", "word", "excel", "powerpoint"] - .into_iter().map(Into::into).collect(), + .into_iter() + .map(Into::into) + .collect(), profile: "office365".into(), ..Default::default() }, diff --git a/crates/webapps-core/src/templates/registry.rs b/crates/webapps-core/src/templates/registry.rs index 88290114..8e588a13 100644 --- a/crates/webapps-core/src/templates/registry.rs +++ b/crates/webapps-core/src/templates/registry.rs @@ -50,12 +50,12 @@ impl Default for WebAppTemplate { impl WebAppTemplate { /// Domain extracted from URL for matching pub fn domain(&self) -> Option { - url::Url::parse(&self.url) - .ok() - .and_then(|u| u.host_str().map(|h| { + url::Url::parse(&self.url).ok().and_then(|u| { + u.host_str().map(|h| { let h = h.strip_prefix("www.").unwrap_or(h); h.to_lowercase() - })) + }) + }) } } @@ -91,11 +91,7 @@ impl TemplateRegistry { pub fn get_by_category(&self, category: &str) -> Vec<&WebAppTemplate> { self.by_category .get(category) - .map(|ids| { - ids.iter() - .filter_map(|id| self.templates.get(id)) - .collect() - }) + .map(|ids| ids.iter().filter_map(|id| self.templates.get(id)).collect()) .unwrap_or_default() } @@ -137,3 +133,143 @@ pub fn build_default_registry() -> TemplateRegistry { reg.register_many(super::productivity::templates()); reg } + +#[cfg(test)] +mod tests { + use super::*; + + fn sample_template(id: &str, name: &str, url: &str, category: &str) -> WebAppTemplate { + WebAppTemplate { + template_id: id.into(), + name: name.into(), + url: url.into(), + category: category.into(), + keywords: vec![name.to_lowercase()], + ..Default::default() + } + } + + #[test] + fn register_and_get() { + let mut reg = TemplateRegistry::default(); + reg.register(sample_template( + "gmail", + "Gmail", + "https://mail.google.com", + "Communication", + )); + assert!(reg.get("gmail").is_some()); + assert_eq!(reg.get("gmail").unwrap().name, "Gmail"); + assert!(reg.get("nonexistent").is_none()); + } + + #[test] + fn categories_sorted() { + let mut reg = TemplateRegistry::default(); + reg.register(sample_template("c", "C", "https://c.com", "Zebra")); + reg.register(sample_template("a", "A", "https://a.com", "Alpha")); + let cats = reg.categories(); + assert_eq!(cats, vec!["Alpha", "Zebra"]); + } + + #[test] + fn get_by_category() { + let mut reg = TemplateRegistry::default(); + reg.register(sample_template( + "g", + "Gmail", + "https://mail.google.com", + "Communication", + )); + reg.register(sample_template( + "s", + "Spotify", + "https://spotify.com", + "Media", + )); + let comms = reg.get_by_category("Communication"); + assert_eq!(comms.len(), 1); + assert_eq!(comms[0].name, "Gmail"); + assert!(reg.get_by_category("Nonexistent").is_empty()); + } + + #[test] + fn match_url_finds_template() { + let mut reg = TemplateRegistry::default(); + reg.register(sample_template( + "yt", + "YouTube", + "https://www.youtube.com", + "Media", + )); + let found = reg.match_url("https://youtube.com/watch?v=123"); + assert!(found.is_some()); + assert_eq!(found.unwrap().template_id, "yt"); + } + + #[test] + fn match_url_no_match() { + let mut reg = TemplateRegistry::default(); + reg.register(sample_template( + "yt", + "YouTube", + "https://www.youtube.com", + "Media", + )); + assert!(reg.match_url("https://example.com").is_none()); + } + + #[test] + fn search_by_name() { + let mut reg = TemplateRegistry::default(); + reg.register(sample_template( + "g", + "Gmail", + "https://mail.google.com", + "Communication", + )); + reg.register(sample_template( + "s", + "Spotify", + "https://spotify.com", + "Media", + )); + let results = reg.search("gmail"); + assert_eq!(results.len(), 1); + assert_eq!(results[0].name, "Gmail"); + } + + #[test] + fn search_by_category() { + let mut reg = TemplateRegistry::default(); + reg.register(sample_template( + "g", + "Gmail", + "https://mail.google.com", + "Communication", + )); + let results = reg.search("communication"); + assert_eq!(results.len(), 1); + } + + #[test] + fn search_empty_query() { + let reg = build_default_registry(); + let results = reg.search(""); + // empty query matches everything + assert!(!results.is_empty()); + } + + #[test] + fn default_registry_has_templates() { + let reg = build_default_registry(); + assert!(reg.get_all().len() > 30); + assert!(!reg.categories().is_empty()); + } + + #[test] + fn domain_extraction() { + let tpl = sample_template("t", "Test", "https://www.example.com/path", "X"); + assert_eq!(tpl.domain(), Some("example.com".into())); + } +} diff --git a/crates/webapps-manager/src/browser_dialog.rs b/crates/webapps-manager/src/browser_dialog.rs index aeb4ec0f..10b4953e 100644 --- a/crates/webapps-manager/src/browser_dialog.rs +++ b/crates/webapps-manager/src/browser_dialog.rs @@ -16,7 +16,7 @@ pub fn show( on_selected: impl Fn(String) + 'static, ) { let win = adw::Window::builder() - .title(&gettext("Select Browser")) + .title(gettext("Select Browser")) .default_width(400) .default_height(450) .modal(true) diff --git a/crates/webapps-manager/src/favicon.rs b/crates/webapps-manager/src/favicon.rs index cbf12833..5be84f0a 100644 --- a/crates/webapps-manager/src/favicon.rs +++ b/crates/webapps-manager/src/favicon.rs @@ -18,11 +18,21 @@ pub fn fetch_site_info(url: &str) -> Result { url.to_string() }; + // security: only allow http/https schemes → prevent file:// / ftp:// / data: SSRF + let parsed = url::Url::parse(&url)?; + match parsed.scheme() { + "http" | "https" => {} + other => anyhow::bail!("Blocked scheme: {other}"), + } + let client = reqwest::blocking::Client::builder() .user_agent("Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 Chrome/120.0.0.0") .timeout(std::time::Duration::from_secs(10)) .build() - .map_err(|e| { log::error!("TLS client init: {e:?}"); e })?; + .map_err(|e| { + log::error!("TLS client init: {e:?}"); + e + })?; let resp = client.get(&url).send()?; let html_text = resp.text()?; @@ -46,7 +56,11 @@ pub fn fetch_site_info(url: &str) -> Result { // try /favicon.ico fallback if icon_paths.is_empty() { if let Ok(base) = url::Url::parse(&url) { - let favicon_url = format!("{}://{}/favicon.ico", base.scheme(), base.host_str().unwrap_or("")); + let favicon_url = format!( + "{}://{}/favicon.ico", + base.scheme(), + base.host_str().unwrap_or("") + ); if let Ok(path) = download_icon(&client, &favicon_url, &cache, 99) { icon_paths.push(path); } @@ -175,3 +189,108 @@ fn guess_extension(url: &str, bytes: &[u8]) -> &'static str { } "png" } + +#[cfg(test)] +mod tests { + use super::*; + + #[test] + fn extract_title_basic() { + let html = Html::parse_document("My Site"); + assert_eq!(extract_title(&html), Some("My Site".into())); + } + + #[test] + fn extract_title_empty() { + let html = Html::parse_document(""); + assert_eq!(extract_title(&html), None); + } + + #[test] + fn extract_title_missing() { + let html = Html::parse_document(""); + assert_eq!(extract_title(&html), None); + } + + #[test] + fn extract_title_whitespace() { + let html = Html::parse_document(" Hello World "); + assert_eq!(extract_title(&html), Some("Hello World".into())); + } + + #[test] + fn extract_icon_urls_link_rel() { + let html = Html::parse_document( + r#""#, + ); + let urls = extract_icon_urls(&html, "https://example.com"); + assert_eq!(urls, vec!["https://example.com/favicon.png"]); + } + + #[test] + fn extract_icon_urls_absolute() { + let html = Html::parse_document( + r#""#, + ); + let urls = extract_icon_urls(&html, "https://example.com"); + assert_eq!(urls, vec!["https://cdn.example.com/icon.png"]); + } + + #[test] + fn extract_icon_urls_og_image() { + let html = Html::parse_document( + r#""#, + ); + let urls = extract_icon_urls(&html, "https://example.com"); + assert_eq!(urls, vec!["https://example.com/og.png"]); + } + + #[test] + fn resolve_url_absolute() { + let base = url::Url::parse("https://example.com").ok(); + assert_eq!( + resolve_url("https://cdn.example.com/icon.png", &base), + Some("https://cdn.example.com/icon.png".into()) + ); + } + + #[test] + fn resolve_url_relative() { + let base = url::Url::parse("https://example.com/page/").ok(); + assert_eq!( + resolve_url("../favicon.ico", &base), + Some("https://example.com/favicon.ico".into()) + ); + } + + #[test] + fn resolve_url_no_base() { + assert_eq!(resolve_url("/favicon.ico", &None), None); + } + + #[test] + fn guess_extension_png_magic() { + assert_eq!(guess_extension("https://x.com/img", b"\x89PNG\r\n"), "png"); + } + + #[test] + fn guess_extension_svg_magic() { + assert_eq!(guess_extension("https://x.com/img", b" bool { pub fn detect_browsers() -> BrowserCollection { let known_browsers = [ ("firefox", "/usr/bin/firefox"), - ("firefox-developer-edition", "/usr/bin/firefox-developer-edition"), + ( + "firefox-developer-edition", + "/usr/bin/firefox-developer-edition", + ), ("librewolf", "/usr/bin/librewolf"), ("google-chrome-stable", "/usr/bin/google-chrome-stable"), ("google-chrome-beta", "/usr/bin/google-chrome-beta"), @@ -320,9 +323,10 @@ pub fn import_webapps(zip_path: &Path) -> Result<(usize, usize)> { let mut duplicates = 0usize; for app in imported_apps { - let is_dup = existing.webapps.iter().any(|e| { - e.app_name == app.app_name && e.app_url == app.app_url - }); + let is_dup = existing + .webapps + .iter() + .any(|e| e.app_name == app.app_name && e.app_url == app.app_url); if is_dup { duplicates += 1; continue; @@ -395,13 +399,17 @@ pub fn migrate_legacy_desktops() -> usize { /// Parse a legacy .desktop file into WebApp struct fn parse_legacy_desktop(filename: &str, content: &str) -> Option { - let mut app = WebApp::default(); - app.app_file = filename.to_string(); + let mut app = WebApp { + app_file: filename.to_string(), + ..Default::default() + }; for line in content.lines() { let line = line.trim(); // stop at Desktop Action sections — only parse [Desktop Entry] - if line.starts_with("[Desktop Action") || (line.starts_with('[') && line != "[Desktop Entry]" && !line.starts_with("#")) { + if line.starts_with("[Desktop Action") + || (line.starts_with('[') && line != "[Desktop Entry]" && !line.starts_with("#")) + { if !app.app_name.is_empty() { break; } @@ -517,9 +525,7 @@ pub fn generate_app_file(browser: &str, url: &str) -> String { }; // url → path component: strip scheme, strip query, / → __ - let cleaned = url - .replace("https://", "") - .replace("http://", ""); + let cleaned = url.replace("https://", "").replace("http://", ""); let cleaned = cleaned.split('?').next().unwrap_or(&cleaned); let cleaned = cleaned.replace('/', "__"); @@ -607,3 +613,91 @@ pub fn mark_welcome_shown() { let _ = fs::create_dir_all(&dir); let _ = fs::write(dir.join("welcome_shown.json"), "true"); } + +#[cfg(test)] +mod tests { + use super::*; + + #[test] + fn shell_split_simple_tokens() { + assert_eq!(shell_split("a b c"), vec!["a", "b", "c"]); + } + + #[test] + fn shell_split_quoted_strings() { + assert_eq!( + shell_split(r#"cmd --opt="hello world" arg"#), + vec!["cmd", "--opt=hello world", "arg"] + ); + } + + #[test] + fn shell_split_single_quotes() { + assert_eq!( + shell_split("cmd 'one two' three"), + vec!["cmd", "one two", "three"] + ); + } + + #[test] + fn shell_split_empty_input() { + assert!(shell_split("").is_empty()); + } + + #[test] + fn shell_split_extra_spaces() { + assert_eq!(shell_split(" a b "), vec!["a", "b"]); + } + + #[test] + fn parse_exec_viewer_mode() { + let exec = r#"big-webapps-viewer --url="https://youtube.com" --name="YouTube" --icon="/path/icon.png" --app-id="yt""#; + let mut app = WebApp::default(); + parse_exec_line(exec, &mut app); + assert_eq!(app.app_mode, webapps_core::models::AppMode::App); + assert_eq!(app.browser, "__viewer__"); + assert_eq!(app.app_url, "https://youtube.com"); + assert_eq!(app.app_icon, "/path/icon.png"); + } + + #[test] + fn parse_exec_browser_mode() { + let exec = r#"big-webapps-exec filename="test.desktop" google-chrome --class="WebApp" --profile-directory=Profile1 --app="https://gmail.com""#; + let mut app = WebApp::default(); + parse_exec_line(exec, &mut app); + assert_eq!(app.app_mode, webapps_core::models::AppMode::Browser); + assert_eq!(app.browser, "google-chrome"); + assert_eq!(app.app_url, "https://gmail.com"); + assert_eq!(app.app_profile, "Profile1"); + assert_eq!(app.app_file, "test.desktop"); + } + + #[test] + fn parse_exec_unknown_prefix() { + let exec = "some-other-command --url=test"; + let mut app = WebApp::default(); + parse_exec_line(exec, &mut app); + // should not modify app + assert_eq!(app.app_url, ""); + assert_eq!(app.browser, ""); + } + + #[test] + fn parse_legacy_desktop_basic() { + let content = "[Desktop Entry]\nName=Test App\nIcon=test-icon\nCategories=Network;\nExec=big-webapps-viewer --url=\"https://example.com\"\n"; + let app = parse_legacy_desktop("test.desktop", content).unwrap(); + assert_eq!(app.app_name, "Test App"); + assert_eq!(app.app_icon, "test-icon"); + assert_eq!(app.app_categories, "Network;"); + assert_eq!(app.app_url, "https://example.com"); + assert_eq!(app.app_file, "test.desktop"); + } + + #[test] + fn parse_legacy_desktop_missing_name() { + let content = "[Desktop Entry]\nIcon=test-icon\nExec=big-webapps-viewer --url=\"https://example.com\"\n"; + // should return None — name is empty + let result = parse_legacy_desktop("test.desktop", content); + assert!(result.is_none() || result.unwrap().app_name.is_empty()); + } +} diff --git a/crates/webapps-manager/src/template_gallery.rs b/crates/webapps-manager/src/template_gallery.rs index 0ad9d9e9..1e1b21c6 100644 --- a/crates/webapps-manager/src/template_gallery.rs +++ b/crates/webapps-manager/src/template_gallery.rs @@ -13,7 +13,7 @@ pub fn show(parent: &impl IsA, on_selected: impl Fn(String) + 'stat let callback: Rc = Rc::new(on_selected); let win = adw::Window::builder() - .title(&gettext("Choose a Template")) + .title(gettext("Choose a Template")) .default_width(600) .default_height(500) .modal(true) @@ -115,7 +115,13 @@ fn populate_search( container.append(&label); return; } - add_category_section(container, &gettext("Search Results"), &results, callback, win); + add_category_section( + container, + &gettext("Search Results"), + &results, + callback, + win, + ); } fn add_category_section( @@ -129,6 +135,7 @@ fn add_category_section( header.set_halign(gtk::Align::Start); header.add_css_class("title-4"); header.set_margin_top(8); + header.set_accessible_role(gtk::AccessibleRole::Heading); container.append(&header); let listbox = gtk::ListBox::new(); diff --git a/crates/webapps-manager/src/webapp_dialog.rs b/crates/webapps-manager/src/webapp_dialog.rs index 5a701443..a2b12246 100644 --- a/crates/webapps-manager/src/webapp_dialog.rs +++ b/crates/webapps-manager/src/webapp_dialog.rs @@ -42,7 +42,11 @@ pub fn show( ) { let webapp_cell = Rc::new(RefCell::new(webapp)); - let dialog_title = if is_new { gettext("New WebApp") } else { gettext("Edit WebApp") }; + let dialog_title = if is_new { + gettext("New WebApp") + } else { + gettext("Edit WebApp") + }; let win = adw::Window::builder() .title(&dialog_title) .default_width(680) @@ -59,6 +63,7 @@ pub fn show( let tmpl_btn = if is_new { let btn = gtk::Button::from_icon_name("view-grid-symbolic"); btn.set_tooltip_text(Some(&gettext("Templates"))); + btn.update_property(&[gtk::accessible::Property::Label(&gettext("Templates"))]); header.pack_start(&btn); Some(btn) } else { @@ -90,17 +95,18 @@ pub fn show( let clamp = adw::Clamp::new(); clamp.set_maximum_size(600); - let form = gtk::Box::new(gtk::Orientation::Vertical, 0); - form.set_margin_top(16); - form.set_margin_bottom(16); - form.set_margin_start(16); - form.set_margin_end(16); + let form = gtk::Box::new(gtk::Orientation::Vertical, 16); + form.set_margin_top(24); + form.set_margin_bottom(24); + form.set_margin_start(24); + form.set_margin_end(24); - let group = adw::PreferencesGroup::new(); + // ── Card 1: Website ────────────────────────────────────── + let group_website = adw::PreferencesGroup::new(); + group_website.set_title(&gettext("Website")); - // -- URL row -- let url_row = adw::EntryRow::builder() - .title(&gettext("URL")) + .title(gettext("URL")) .text(&webapp_cell.borrow().app_url) .build(); let detect_img = gtk::Image::from_icon_name("emblem-web-symbolic"); @@ -108,20 +114,29 @@ pub fn show( let detect_btn = gtk::Button::new(); detect_btn.set_child(Some(&detect_img)); detect_btn.set_tooltip_text(Some(&gettext("Detect name and icon from website"))); + detect_btn.update_property(&[gtk::accessible::Property::Label(&gettext( + "Detect name and icon from website", + ))]); detect_btn.set_valign(gtk::Align::Center); detect_btn.add_css_class("flat"); url_row.add_suffix(&detect_btn); - group.add(&url_row); + group_website.add(&url_row); - // -- Name row -- let name_row = adw::EntryRow::builder() - .title(&gettext("Name")) + .title(gettext("Name")) .text(&webapp_cell.borrow().app_name) .build(); - group.add(&name_row); + group_website.add(&name_row); + + // ── Card 2: Appearance ─────────────────────────────────── + let group_appearance = adw::PreferencesGroup::new(); + group_appearance.set_title(&gettext("Appearance")); + group_appearance.set_description(Some(&gettext("Icon and application category"))); - // -- Icon row -- - let icon_row = adw::ActionRow::builder().title(&gettext("Icon")).build(); + let icon_row = adw::ActionRow::builder() + .title(gettext("Icon")) + .subtitle(gettext("Choose an icon for the webapp")) + .build(); let icon_preview = gtk::Image::new(); icon_preview.set_pixel_size(32); crate::webapp_row::load_icon(&icon_preview, &webapp_cell.borrow().app_icon); @@ -129,9 +144,9 @@ pub fn show( let icon_btn = gtk::Button::with_label(&gettext("Select")); icon_btn.set_valign(gtk::Align::Center); icon_row.add_suffix(&icon_btn); - group.add(&icon_row); + group_appearance.add(&icon_row); - // -- Favicon picker area (initially hidden) -- + // favicon picker (initially hidden) let favicon_flow = gtk::FlowBox::new(); favicon_flow.set_max_children_per_line(6); favicon_flow.set_min_children_per_line(3); @@ -139,32 +154,39 @@ pub fn show( favicon_flow.set_selection_mode(gtk::SelectionMode::Single); favicon_flow.set_visible(false); - // -- Category dropdown -- let cat_model = gtk::StringList::new(CATEGORIES); let cat_dropdown = gtk::DropDown::new(Some(cat_model), gtk::Expression::NONE); let current_cat = webapp_cell.borrow().main_category().to_string(); if let Some(pos) = CATEGORIES.iter().position(|c| *c == current_cat) { cat_dropdown.set_selected(pos as u32); } - let cat_row = adw::ActionRow::builder().title(&gettext("Category")).build(); + let cat_row = adw::ActionRow::builder() + .title(gettext("Category")) + .subtitle(gettext("Application menu category")) + .build(); cat_dropdown.set_valign(gtk::Align::Center); cat_row.add_suffix(&cat_dropdown); - group.add(&cat_row); + group_appearance.add(&cat_row); + + // ── Card 3: Behavior ───────────────────────────────────── + let group_behavior = adw::PreferencesGroup::new(); + group_behavior.set_title(&gettext("Behavior")); + group_behavior.set_description(Some(&gettext("How the webapp opens and runs"))); - // -- App mode switch -- let mode_switch = gtk::Switch::new(); mode_switch.set_valign(gtk::Align::Center); mode_switch.set_active(webapp_cell.borrow().app_mode == AppMode::App); let mode_row = adw::ActionRow::builder() - .title(&gettext("App Mode")) - .subtitle(&gettext("Opens as a native window without browser interface")) + .title(gettext("App Mode")) + .subtitle(gettext( + "Opens as a native window without browser interface", + )) .build(); mode_row.add_suffix(&mode_switch); mode_row.set_activatable_widget(Some(&mode_switch)); - group.add(&mode_row); + group_behavior.add(&mode_row); - // -- Browser row (hidden in app mode) -- - let browser_row = adw::ActionRow::builder().title(&gettext("Browser")).build(); + let browser_row = adw::ActionRow::builder().title(gettext("Browser")).build(); { let br = browsers.borrow(); let bid = &webapp_cell.borrow().browser; @@ -178,37 +200,36 @@ pub fn show( browser_btn.set_valign(gtk::Align::Center); browser_row.add_suffix(&browser_btn); browser_row.set_visible(webapp_cell.borrow().app_mode != AppMode::App); - group.add(&browser_row); + group_behavior.add(&browser_row); - // -- Profile row (hidden in app mode or firefox) -- let profile_switch = gtk::Switch::new(); profile_switch.set_valign(gtk::Align::Center); let has_custom_profile = webapp_cell.borrow().app_profile != "Default" && webapp_cell.borrow().app_profile != "Browser"; profile_switch.set_active(has_custom_profile); let profile_row = adw::ExpanderRow::builder() - .title(&gettext("Separate Profile")) - .subtitle(&gettext("Allows independent cookies and sessions")) + .title(gettext("Separate Profile")) + .subtitle(gettext("Allows independent cookies and sessions")) .show_enable_switch(true) .enable_expansion(has_custom_profile) .build(); let profile_entry = adw::EntryRow::builder() - .title(&gettext("Profile Name")) + .title(gettext("Profile Name")) .text(&webapp_cell.borrow().app_profile) .build(); profile_row.add_row(&profile_entry); profile_row.set_visible(webapp_cell.borrow().app_mode != AppMode::App); - group.add(&profile_row); + group_behavior.add(&profile_row); - form.append(&group); - - // favicon picker below group + form.append(&group_website); + form.append(&group_appearance); form.append(&favicon_flow); + form.append(&group_behavior); // -- buttons -- let btn_box = gtk::Box::new(gtk::Orientation::Horizontal, 8); btn_box.set_halign(gtk::Align::End); - btn_box.set_margin_top(16); + btn_box.set_margin_top(8); let cancel_btn = gtk::Button::with_label(&gettext("Cancel")); let save_label = gettext("Save"); @@ -300,7 +321,11 @@ pub fn show( let br = browser_row.clone(); let pr = profile_row.clone(); mode_switch.connect_state_set(move |_, active| { - wc.borrow_mut().app_mode = if active { AppMode::App } else { AppMode::Browser }; + wc.borrow_mut().app_mode = if active { + AppMode::App + } else { + AppMode::Browser + }; br.set_visible(!active); pr.set_visible(!active); glib::Propagation::Proceed @@ -393,7 +418,7 @@ pub fn show( let ffr = ff.clone(); let ipr = ip.clone(); let sbr = sb.clone(); - glib::timeout_add_local(std::time::Duration::from_millis(100), move || { + glib::timeout_add_local(std::time::Duration::from_millis(250), move || { match rx.try_recv() { Ok(info) => { sbr.set_visible(false); @@ -465,16 +490,20 @@ pub fn show( let wcx = wc.clone(); let ipx = ip.clone(); - dialog.open(Some(&w), gio::Cancellable::NONE, move |result: Result| { - if let Ok(file) = result { - if let Some(path) = file.path() { - let ps = path.to_string_lossy().to_string(); - ipx.set_from_file(Some(&path)); - wcx.borrow_mut().app_icon = ps.clone(); - wcx.borrow_mut().app_icon_url = ps; + dialog.open( + Some(&w), + gio::Cancellable::NONE, + move |result: Result| { + if let Ok(file) = result { + if let Some(path) = file.path() { + let ps = path.to_string_lossy().to_string(); + ipx.set_from_file(Some(&path)); + wcx.borrow_mut().app_icon = ps.clone(); + wcx.borrow_mut().app_icon_url = ps; + } } - } - }); + }, + ); }); } @@ -498,7 +527,10 @@ pub fn show( // validate URL format let url_str = app.app_url.trim(); - let test_url = if !url_str.starts_with("http://") && !url_str.starts_with("https://") && !url_str.starts_with("file://") { + let test_url = if !url_str.starts_with("http://") + && !url_str.starts_with("https://") + && !url_str.starts_with("file://") + { format!("https://{url_str}") } else { url_str.to_string() diff --git a/crates/webapps-manager/src/webapp_row.rs b/crates/webapps-manager/src/webapp_row.rs index 4829394d..c7e50907 100644 --- a/crates/webapps-manager/src/webapp_row.rs +++ b/crates/webapps-manager/src/webapp_row.rs @@ -75,21 +75,31 @@ pub fn build_row(webapp: &WebApp, callbacks: &std::rc::Rc) -> gtk: actions.set_valign(gtk::Align::Center); // browser indicator — resolve through same icon pipeline + // in App mode: show indicator only (not clickable) since viewer is fixed let browser_btn = gtk::Button::new(); let browser_img = gtk::Image::new(); browser_img.set_pixel_size(24); if webapp.app_mode == AppMode::App { browser_img.set_icon_name(Some("application-x-executable-symbolic")); browser_btn.set_tooltip_text(Some(&gettext("App mode"))); + browser_btn.set_sensitive(false); } else { let browser_icon = webapps_core::models::Browser { browser_id: webapp.browser.clone(), is_default: false, - }.icon_name(); + } + .icon_name(); load_icon(&browser_img, &browser_icon); browser_btn.set_tooltip_text(Some(&gettext("Change browser"))); } browser_btn.set_child(Some(&browser_img)); + browser_btn.update_property(&[gtk::accessible::Property::Label(&if webapp.app_mode + == AppMode::App + { + gettext("App mode") + } else { + gettext("Change browser") + })]); browser_btn.add_css_class("flat"); browser_btn.add_css_class("action-btn"); { @@ -102,6 +112,7 @@ pub fn build_row(webapp: &WebApp, callbacks: &std::rc::Rc) -> gtk: // edit button let edit_btn = gtk::Button::from_icon_name("document-edit-symbolic"); edit_btn.set_tooltip_text(Some(&gettext("Edit"))); + edit_btn.update_property(&[gtk::accessible::Property::Label(&gettext("Edit"))]); edit_btn.add_css_class("flat"); edit_btn.add_css_class("action-btn"); { @@ -114,6 +125,7 @@ pub fn build_row(webapp: &WebApp, callbacks: &std::rc::Rc) -> gtk: // delete button let del_btn = gtk::Button::from_icon_name("user-trash-symbolic"); del_btn.set_tooltip_text(Some(&gettext("Delete"))); + del_btn.update_property(&[gtk::accessible::Property::Label(&gettext("Delete"))]); del_btn.add_css_class("flat"); del_btn.add_css_class("action-btn"); del_btn.add_css_class("error"); diff --git a/crates/webapps-manager/src/welcome_dialog.rs b/crates/webapps-manager/src/welcome_dialog.rs index 7a304daf..a55c2715 100644 --- a/crates/webapps-manager/src/welcome_dialog.rs +++ b/crates/webapps-manager/src/welcome_dialog.rs @@ -17,7 +17,7 @@ pub fn show_if_needed(parent: &adw::ApplicationWindow) { fn build_dialog(parent: &adw::ApplicationWindow) -> adw::Window { let dialog = adw::Window::builder() - .title(&gettext("Welcome to WebApps Manager")) + .title(gettext("Welcome to WebApps Manager")) .transient_for(parent) .modal(true) .destroy_with_parent(true) @@ -44,9 +44,7 @@ fn build_dialog(parent: &adw::ApplicationWindow) -> adw::Window { let main_box = gtk::Box::new(gtk::Orientation::Vertical, 0); // flat headerbar - let headerbar = adw::HeaderBar::builder() - .show_title(false) - .build(); + let headerbar = adw::HeaderBar::builder().show_title(false).build(); headerbar.add_css_class("flat"); main_box.append(&headerbar); @@ -67,7 +65,10 @@ fn build_dialog(parent: &adw::ApplicationWindow) -> adw::Window { content.append(&icon); let title = gtk::Label::builder() - .label(&format!("{}", gettext("Welcome to WebApps Manager"))) + .label(format!( + "{}", + gettext("Welcome to WebApps Manager") + )) .use_markup(true) .halign(gtk::Align::Center) .build(); @@ -75,7 +76,7 @@ fn build_dialog(parent: &adw::ApplicationWindow) -> adw::Window { // explanation let explanation = gtk::Label::builder() - .label(&format!( + .label(format!( "{}\n\n{}\n\n{}\n\n\ \u{2022} {}: {}\n\ \u{2022} {}: {}\n\ @@ -109,7 +110,7 @@ fn build_dialog(parent: &adw::ApplicationWindow) -> adw::Window { .build(); let switch_label = gtk::Label::builder() - .label(&gettext("Don't show this again")) + .label(gettext("Don't show this again")) .xalign(0.0) .hexpand(true) .build(); @@ -124,7 +125,7 @@ fn build_dialog(parent: &adw::ApplicationWindow) -> adw::Window { // "Let's Start" button let btn = gtk::Button::builder() - .label(&gettext("Let's Start")) + .label(gettext("Let's Start")) .halign(gtk::Align::Center) .margin_top(24) .build(); diff --git a/crates/webapps-manager/src/window.rs b/crates/webapps-manager/src/window.rs index 1aa78183..c50f31d6 100644 --- a/crates/webapps-manager/src/window.rs +++ b/crates/webapps-manager/src/window.rs @@ -34,7 +34,7 @@ pub fn build(app: &adw::Application) { let win = adw::ApplicationWindow::builder() .application(app) - .title(&gettext("WebApps Manager")) + .title(gettext("WebApps Manager")) .default_width(800) .default_height(650) .build(); @@ -51,19 +51,27 @@ pub fn build(app: &adw::Application) { let search_btn = gtk::ToggleButton::new(); search_btn.set_icon_name("system-search-symbolic"); search_btn.set_tooltip_text(Some(&gettext("Search WebApps"))); + search_btn.update_property(&[gtk::accessible::Property::Label(&gettext("Search WebApps"))]); header.pack_start(&search_btn); // add button let add_btn = gtk::Button::from_icon_name("list-add-symbolic"); add_btn.set_tooltip_text(Some(&gettext("Add WebApp"))); + add_btn.update_property(&[gtk::accessible::Property::Label(&gettext("Add WebApp"))]); header.pack_start(&add_btn); // menu let menu = gio::Menu::new(); menu.append(Some(&gettext("Import WebApps")), Some("win.import")); menu.append(Some(&gettext("Export WebApps")), Some("win.export")); - menu.append(Some(&gettext("Browse Applications Folder")), Some("win.browse-apps")); - menu.append(Some(&gettext("Browse Profiles Folder")), Some("win.browse-profiles")); + menu.append( + Some(&gettext("Browse Applications Folder")), + Some("win.browse-apps"), + ); + menu.append( + Some(&gettext("Browse Profiles Folder")), + Some("win.browse-profiles"), + ); let danger = gio::Menu::new(); danger.append(Some(&gettext("Remove All WebApps")), Some("win.remove-all")); @@ -76,6 +84,7 @@ pub fn build(app: &adw::Application) { let menu_btn = gtk::MenuButton::new(); menu_btn.set_icon_name("open-menu-symbolic"); menu_btn.set_menu_model(Some(&menu)); + menu_btn.update_property(&[gtk::accessible::Property::Label(&gettext("Main Menu"))]); header.pack_end(&menu_btn); main_box.append(&header); @@ -86,7 +95,8 @@ pub fn build(app: &adw::Application) { search_entry.set_hexpand(true); search_bar.set_child(Some(&search_entry)); search_bar.connect_entry(&search_entry); - search_btn.bind_property("active", &search_bar, "search-mode-enabled") + search_btn + .bind_property("active", &search_bar, "search-mode-enabled") .bidirectional() .build(); main_box.append(&search_bar); @@ -110,6 +120,12 @@ pub fn build(app: &adw::Application) { main_box.append(&scroll); + // a11y live region → announce search result count to screen readers + let status_label = gtk::Label::new(None); + status_label.set_visible(false); + status_label.set_accessible_role(gtk::AccessibleRole::Status); + main_box.append(&status_label); + toast_overlay.set_child(Some(&main_box)); win.set_content(Some(&toast_overlay)); @@ -117,6 +133,7 @@ pub fn build(app: &adw::Application) { let content_ref = Rc::new(content_box); let toast_ref = Rc::new(toast_overlay); let win_rc = Rc::new(win); + let status_ref = Rc::new(status_label); populate_list( &content_ref, @@ -124,6 +141,7 @@ pub fn build(app: &adw::Application) { &browsers, &win_rc, &toast_ref, + &status_ref, ); // -- search handler -- @@ -133,9 +151,10 @@ pub fn build(app: &adw::Application) { let br = browsers.clone(); let wr = win_rc.clone(); let tr = toast_ref.clone(); + let sr = status_ref.clone(); search_entry.connect_search_changed(move |entry| { st.borrow_mut().filter_text = entry.text().to_string(); - populate_list(&cr, &st, &br, &wr, &tr); + populate_list(&cr, &st, &br, &wr, &tr, &sr); }); } @@ -146,6 +165,7 @@ pub fn build(app: &adw::Application) { let cr = content_ref.clone(); let wr = win_rc.clone(); let tr = toast_ref.clone(); + let sr = status_ref.clone(); add_btn.connect_clicked(move |_| { let mut new_app = WebApp::default(); new_app.app_file = service::generate_app_file(&new_app.browser, &new_app.app_url); @@ -157,10 +177,11 @@ pub fn build(app: &adw::Application) { let crx = cr.clone(); let wrx = wr.clone(); let trx = tr.clone(); + let srx = sr.clone(); webapp_dialog::show(&*wr, new_app, br.clone(), true, move |result| { if result.saved { refresh_state(&stx); - populate_list(&crx, &stx, &brx, &wrx, &trx); + populate_list(&crx, &stx, &brx, &wrx, &trx, &srx); show_toast(&trx, &gettext("WebApp created successfully")); } }); @@ -175,7 +196,7 @@ pub fn build(app: &adw::Application) { let w = win_rc.clone(); about_action.connect_activate(move |_, _| { let about = adw::AboutDialog::builder() - .application_name(&gettext("WebApps Manager")) + .application_name(gettext("WebApps Manager")) .application_icon("big-webapps") .developer_name("BigLinux") .version(config::APP_VERSION) @@ -195,6 +216,7 @@ pub fn build(app: &adw::Application) { let cr = content_ref.clone(); let br = browsers.clone(); let tr = toast_ref.clone(); + let sr = status_ref.clone(); import_action.connect_activate(move |_, _| { let dialog = gtk::FileDialog::new(); dialog.set_title(&gettext("Import WebApps")); @@ -210,23 +232,31 @@ pub fn build(app: &adw::Application) { let brx = br.clone(); let wrx = w.clone(); let trx = tr.clone(); - dialog.open(Some(&*w), gio::Cancellable::NONE, move |result: Result| { - if let Ok(file) = result { - if let Some(path) = file.path() { - match service::import_webapps(&path) { - Ok((imported, dups)) => { - refresh_state(&stx); - populate_list(&crx, &stx, &brx, &wrx, &trx); - let msg = gettext("Imported {imported}, skipped {dups} duplicates").replace("{imported}", &imported.to_string()).replace("{dups}", &dups.to_string()); - show_toast(&trx, &msg); - } - Err(e) => { - show_toast(&trx, &format!("{}: {e}", gettext("Import failed"))); + let srx = sr.clone(); + dialog.open( + Some(&*w), + gio::Cancellable::NONE, + move |result: Result| { + if let Ok(file) = result { + if let Some(path) = file.path() { + match service::import_webapps(&path) { + Ok((imported, dups)) => { + refresh_state(&stx); + populate_list(&crx, &stx, &brx, &wrx, &trx, &srx); + let msg = + gettext("Imported {imported}, skipped {dups} duplicates") + .replace("{imported}", &imported.to_string()) + .replace("{dups}", &dups.to_string()); + show_toast(&trx, &msg); + } + Err(e) => { + show_toast(&trx, &format!("{}: {e}", gettext("Import failed"))); + } } } } - } - }); + }, + ); }); } win_rc.add_action(&import_action); @@ -254,7 +284,9 @@ pub fn build(app: &adw::Application) { }; show_toast(&trx, &msg); } - Err(e) => show_toast(&trx, &format!("{}: {e}", gettext("Export failed"))), + Err(e) => { + show_toast(&trx, &format!("{}: {e}", gettext("Export failed"))) + } } } } @@ -288,10 +320,11 @@ pub fn build(app: &adw::Application) { let br = browsers.clone(); let w = win_rc.clone(); let tr = toast_ref.clone(); + let sr = status_ref.clone(); remove_all_action.connect_activate(move |_, _| { let dialog = adw::AlertDialog::builder() - .heading(&gettext("Remove All WebApps")) - .body(&gettext("This will delete all webapps and their desktop entries. This cannot be undone.")) + .heading(gettext("Remove All WebApps")) + .body(gettext("This will delete all webapps and their desktop entries. This cannot be undone.")) .build(); dialog.add_response("cancel", &gettext("Cancel")); dialog.add_response("delete", &gettext("Remove All")); @@ -302,13 +335,14 @@ pub fn build(app: &adw::Application) { let brx = br.clone(); let wrx = w.clone(); let trx = tr.clone(); + let srx = sr.clone(); dialog.connect_response(None, move |_, response| { if response == "delete" { if let Err(e) = service::delete_all_webapps() { show_toast(&trx, &format!("{}: {e}", gettext("Failed to remove all WebApps"))); } else { refresh_state(&stx); - populate_list(&crx, &stx, &brx, &wrx, &trx); + populate_list(&crx, &stx, &brx, &wrx, &trx, &srx); show_toast(&trx, &gettext("All WebApps have been removed")); } } @@ -377,6 +411,7 @@ fn populate_list( browsers: &Rc>, win: &Rc, toast: &Rc, + status: &Rc, ) { // clear while let Some(child) = content.first_child() { @@ -391,16 +426,22 @@ fn populate_list( }; let categorized = s.webapps.categorized(filter); + // a11y: announce result count to screen readers via live region + let total: usize = categorized.values().map(|v| v.len()).sum(); + if filter.is_some() { + status.set_label(&format!("{total} webapps")); + } + if categorized.is_empty() { // empty state - let status = adw::StatusPage::builder() + let status_page = adw::StatusPage::builder() .icon_name("big-webapps") - .title(&gettext("No WebApps")) - .description(&gettext("Press + to create your first webapp")) + .title(gettext("No WebApps")) + .description(gettext("Press + to create your first webapp")) .vexpand(true) .build(); - status.add_css_class("empty-state-icon"); - content.append(&status); + status_page.add_css_class("empty-state-icon"); + content.append(&status_page); return; } @@ -418,6 +459,7 @@ fn populate_list( header.set_halign(gtk::Align::Start); header.add_css_class("title-4"); header.add_css_class("category-header"); + header.set_accessible_role(gtk::AccessibleRole::Heading); content.append(&header); // listbox @@ -448,26 +490,22 @@ fn populate_list( let cr = Rc::new(content.as_ref().clone()); let wr = wr.clone(); let tr = tr.clone(); + let sr = status.clone(); Box::new(move |app: &WebApp| { let stx = st.clone(); let brx = br.clone(); let crx = cr.clone(); let wrx = wr.clone(); let trx = tr.clone(); + let srx = sr.clone(); let cr2 = Rc::new(crx.as_ref().clone()); - webapp_dialog::show( - &*wr, - app.clone(), - br.clone(), - false, - move |result| { - if result.saved { - refresh_state(&stx); - populate_list(&cr2, &stx, &brx, &wrx, &trx); - show_toast(&trx, &gettext("WebApp updated successfully")); - } - }, - ); + webapp_dialog::show(&*wr, app.clone(), br.clone(), false, move |result| { + if result.saved { + refresh_state(&stx); + populate_list(&cr2, &stx, &brx, &wrx, &trx, &srx); + show_toast(&trx, &gettext("WebApp updated successfully")); + } + }); }) }, on_browser: { @@ -476,6 +514,7 @@ fn populate_list( let cr = Rc::new(content.as_ref().clone()); let wr = wr2.clone(); let tr = tr2.clone(); + let sr = status.clone(); Box::new(move |app: &WebApp| { let app_cell = Rc::new(RefCell::new(app.clone())); let stx = st.clone(); @@ -483,23 +522,19 @@ fn populate_list( let crx = cr.clone(); let wrx = wr.clone(); let trx = tr.clone(); + let srx = sr.clone(); let cr2 = Rc::new(crx.as_ref().clone()); - browser_dialog::show( - &*wr, - &br.borrow(), - &app.browser, - move |new_id| { - app_cell.borrow_mut().browser = new_id; - let updated = app_cell.borrow().clone(); - if let Err(e) = service::update_webapp(&updated) { - show_toast(&trx, &format!("Failed: {e}")); - } else { - refresh_state(&stx); - populate_list(&cr2, &stx, &brx, &wrx, &trx); - show_toast(&trx, &gettext("Browser changed")); - } - }, - ); + browser_dialog::show(&*wr, &br.borrow(), &app.browser, move |new_id| { + app_cell.borrow_mut().browser = new_id; + let updated = app_cell.borrow().clone(); + if let Err(e) = service::update_webapp(&updated) { + show_toast(&trx, &format!("Failed: {e}")); + } else { + refresh_state(&stx); + populate_list(&cr2, &stx, &brx, &wrx, &trx, &srx); + show_toast(&trx, &gettext("Browser changed")); + } + }); }) }, on_delete: { @@ -508,9 +543,10 @@ fn populate_list( let cr = Rc::new(content.as_ref().clone()); let wr = wr3.clone(); let tr = tr3.clone(); + let sr = status.clone(); Box::new(move |app: &WebApp| { let dialog = adw::AlertDialog::builder() - .heading(&gettext("Delete WebApp")) + .heading(gettext("Delete WebApp")) .body(format!("{}\n{}", app.app_name, app.app_url)) .build(); dialog.add_response("cancel", &gettext("Cancel")); @@ -521,13 +557,15 @@ fn populate_list( ); let shared = !service::profile_shared(app); - let has_profile = app.app_profile != "Default" - && app.app_profile != "Browser"; + let has_profile = + app.app_profile != "Default" && app.app_profile != "Browser"; // add checkbox for profile deletion if applicable let del_profile = Rc::new(RefCell::new(false)); if has_profile && shared { - let check = gtk::CheckButton::with_label(&gettext("Also delete configuration folder")); + let check = gtk::CheckButton::with_label(&gettext( + "Also delete configuration folder", + )); let dp = del_profile.clone(); check.connect_toggled(move |c| { *dp.borrow_mut() = c.is_active(); @@ -541,6 +579,7 @@ fn populate_list( let crx = cr.clone(); let wrx = wr.clone(); let trx = tr.clone(); + let srx = sr.clone(); let cr2 = Rc::new(crx.as_ref().clone()); dialog.connect_response(None, move |_, response| { if response == "delete" { @@ -549,7 +588,7 @@ fn populate_list( show_toast(&trx, &format!("Failed: {e}")); } else { refresh_state(&stx); - populate_list(&cr2, &stx, &brx, &wrx, &trx); + populate_list(&cr2, &stx, &brx, &wrx, &trx, &srx); show_toast(&trx, &gettext("WebApp deleted successfully")); } } diff --git a/crates/webapps-viewer/src/main.rs b/crates/webapps-viewer/src/main.rs index c6cb83c4..1e2dde98 100644 --- a/crates/webapps-viewer/src/main.rs +++ b/crates/webapps-viewer/src/main.rs @@ -39,7 +39,7 @@ fn main() -> glib::ExitCode { } let app = adw::Application::builder() - .application_id(&format!("br.com.biglinux.webapp.{}", cli.app_id)) + .application_id(format!("br.com.biglinux.webapp.{}", cli.app_id)) .build(); let name = cli.name.clone(); diff --git a/crates/webapps-viewer/src/window.rs b/crates/webapps-viewer/src/window.rs index 13bcb9c5..e4c71980 100644 --- a/crates/webapps-viewer/src/window.rs +++ b/crates/webapps-viewer/src/window.rs @@ -2,14 +2,12 @@ use std::cell::Cell; use std::path::PathBuf; use std::rc::Rc; +#[allow(unused_imports)] +use adw::prelude::*; +use gettextrs::gettext; use glib::clone; use gtk4 as gtk; -use gtk::prelude::*; -use gdk4; -use gettextrs::gettext; use libadwaita as adw; -#[allow(unused_imports)] -use adw::prelude::*; use webkit6 as webkit; use webkit6::prelude::*; @@ -36,6 +34,8 @@ pub fn build( // persist cookies in WebKitGTK format + allow third-party (auth flows) // NOTE: existing "Cookies" file = legacy Chromium format, not used by WebKitGTK6 + // ITP disabled → allow cross-site cookies for login persistence + // (YouTube, Spotify etc use third-party auth flows that break with ITP) session.set_itp_enabled(false); if let Some(cm) = session.cookie_manager() { let cookie_db = data_dir.join("webkit-cookies.db"); @@ -47,9 +47,7 @@ pub fn build( } // --- webview --- - let webview = webkit::WebView::builder() - .network_session(&session) - .build(); + let webview = webkit::WebView::builder().network_session(&session).build(); configure_settings(&webview); inject_resize_block(&webview); @@ -63,16 +61,20 @@ pub fn build( let back_btn = gtk::Button::from_icon_name("go-previous-symbolic"); back_btn.set_sensitive(false); back_btn.set_tooltip_text(Some(&gettext("Back"))); + back_btn.update_property(&[gtk::accessible::Property::Label(&gettext("Back"))]); let fwd_btn = gtk::Button::from_icon_name("go-next-symbolic"); fwd_btn.set_sensitive(false); fwd_btn.set_tooltip_text(Some(&gettext("Forward"))); + fwd_btn.update_property(&[gtk::accessible::Property::Label(&gettext("Forward"))]); let reload_btn = gtk::Button::from_icon_name("view-refresh-symbolic"); reload_btn.set_tooltip_text(Some(&gettext("Reload"))); + reload_btn.update_property(&[gtk::accessible::Property::Label(&gettext("Reload"))]); let fullscreen_btn = gtk::Button::from_icon_name("view-fullscreen-symbolic"); fullscreen_btn.set_tooltip_text(Some(&gettext("Fullscreen"))); + fullscreen_btn.update_property(&[gtk::accessible::Property::Label(&gettext("Fullscreen"))]); let menu_btn = build_menu_button(); @@ -87,7 +89,7 @@ pub fn build( // --- URL bar (hidden by default, toggled via Ctrl+L) --- let url_entry = gtk::Entry::builder() - .placeholder_text(&gettext("Enter URL…")) + .placeholder_text(gettext("Enter URL…")) .hexpand(true) .build(); url_entry.set_text(url); @@ -100,12 +102,17 @@ pub fn build( // Enter → navigate + hide bar url_entry.connect_activate(clone!( - #[weak] webview, - #[weak] url_bar, + #[weak] + webview, + #[weak] + url_bar, move |entry| { let mut text = entry.text().to_string(); if !text.is_empty() { - if !text.starts_with("http://") && !text.starts_with("https://") && !text.starts_with("file://") { + if !text.starts_with("http://") + && !text.starts_with("https://") + && !text.starts_with("file://") + { text = format!("https://{text}"); } webview.load_uri(&text); @@ -117,8 +124,10 @@ pub fn build( // Escape while focused → hide bar let key_ctrl = gtk::EventControllerKey::new(); key_ctrl.connect_key_pressed(clone!( - #[weak] url_bar, - #[upgrade_or] glib::Propagation::Proceed, + #[weak] + url_bar, + #[upgrade_or] + glib::Propagation::Proceed, move |_, key, _, _| { if key == gdk4::Key::Escape { url_bar.set_reveal_child(false); @@ -158,22 +167,33 @@ pub fn build( // --- wire navigation --- back_btn.connect_clicked(clone!( - #[weak] webview, - move |_| { webview.go_back(); } + #[weak] + webview, + move |_| { + webview.go_back(); + } )); fwd_btn.connect_clicked(clone!( - #[weak] webview, - move |_| { webview.go_forward(); } + #[weak] + webview, + move |_| { + webview.go_forward(); + } )); reload_btn.connect_clicked(clone!( - #[weak] webview, - move |_| { webview.reload(); } + #[weak] + webview, + move |_| { + webview.reload(); + } )); // --- title changed --- webview.connect_title_notify(clone!( - #[weak] title_widget, - #[weak] window, + #[weak] + title_widget, + #[weak] + window, move |wv| { if let Some(title) = wv.title() { let t = title.to_string(); @@ -187,9 +207,12 @@ pub fn build( // --- URI changed → update subtitle + nav buttons --- webview.connect_uri_notify(clone!( - #[weak] title_widget, - #[weak] back_btn, - #[weak] fwd_btn, + #[weak] + title_widget, + #[weak] + back_btn, + #[weak] + fwd_btn, move |wv| { if let Some(uri) = wv.uri() { title_widget.set_subtitle(&uri); @@ -201,8 +224,10 @@ pub fn build( // --- load changed → update nav state --- webview.connect_load_changed(clone!( - #[weak] back_btn, - #[weak] fwd_btn, + #[weak] + back_btn, + #[weak] + fwd_btn, move |wv, _event| { back_btn.set_sensitive(wv.can_go_back()); fwd_btn.set_sensitive(wv.can_go_forward()); @@ -213,10 +238,14 @@ pub fn build( let is_fullscreen = Rc::new(Cell::new(false)); webview.connect_enter_fullscreen(clone!( - #[weak] window, - #[weak] toolbar, - #[strong] is_fullscreen, - #[upgrade_or] false, + #[weak] + window, + #[weak] + toolbar, + #[strong] + is_fullscreen, + #[upgrade_or] + false, move |_| { is_fullscreen.set(true); toolbar.set_reveal_top_bars(false); @@ -226,10 +255,14 @@ pub fn build( )); webview.connect_leave_fullscreen(clone!( - #[weak] window, - #[weak] toolbar, - #[strong] is_fullscreen, - #[upgrade_or] false, + #[weak] + window, + #[weak] + toolbar, + #[strong] + is_fullscreen, + #[upgrade_or] + false, move |_| { is_fullscreen.set(false); toolbar.set_reveal_top_bars(true); @@ -239,9 +272,12 @@ pub fn build( )); fullscreen_btn.connect_clicked(clone!( - #[weak] window, - #[weak] toolbar, - #[strong] is_fullscreen, + #[weak] + window, + #[weak] + toolbar, + #[strong] + is_fullscreen, move |_| { if is_fullscreen.get() { is_fullscreen.set(false); @@ -257,7 +293,8 @@ pub fn build( // --- downloads --- session.connect_download_started(clone!( - #[weak] window, + #[weak] + window, move |_session, download| { handle_download(&window, download); } @@ -265,8 +302,10 @@ pub fn build( // --- notifications --- webview.connect_show_notification(clone!( - #[weak] window, - #[upgrade_or] false, + #[weak] + window, + #[upgrade_or] + false, move |_wv, notification| { show_notification(&window, notification); true @@ -274,8 +313,10 @@ pub fn build( )); // --- permission requests --- + // auto-grant all → webapp UX expectation; webapps are user-trusted apps + // TODO: consider per-webapp permission preferences for untrusted sites webview.connect_permission_request(|_wv, request| { - // auto-grant camera, microphone, notifications + log::info!("Permission auto-granted: {:?}", request.type_()); request.allow(); true }); @@ -294,11 +335,19 @@ pub fn build( setup_context_menu(&webview); // --- keyboard shortcuts --- - setup_shortcuts(&window, &webview, &toolbar, &is_fullscreen, &url_bar, &url_entry); + setup_shortcuts( + &window, + &webview, + &toolbar, + &is_fullscreen, + &url_bar, + &url_entry, + ); // --- save geometry on close --- window.connect_close_request(clone!( - #[strong] config_path, + #[strong] + config_path, move |win| { save_geometry(win, &config_path); glib::Propagation::Proceed @@ -323,12 +372,18 @@ fn configure_settings(webview: &webkit::WebView) { s.set_enable_encrypted_media(true); s.set_enable_smooth_scrolling(true); s.set_enable_back_forward_navigation_gestures(true); + // spoof Chrome UA → sites like Spotify/Teams reject unknown browsers + s.set_user_agent(Some( + "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36", + )); } } /// Inject JS to block web content from resizing/moving the window fn inject_resize_block(webview: &webkit::WebView) { - let ucm = webview.user_content_manager().unwrap(); + let ucm = webview + .user_content_manager() + .expect("WebView must have UserContentManager"); let script = webkit::UserScript::new( concat!( "window.resizeTo=function(){};", @@ -355,8 +410,9 @@ fn build_menu_button() -> gtk::MenuButton { let btn = gtk::MenuButton::builder() .icon_name("open-menu-symbolic") .menu_model(&menu) - .tooltip_text(&gettext("Menu")) + .tooltip_text(gettext("Menu")) .build(); + btn.update_property(&[gtk::accessible::Property::Label(&gettext("Menu"))]); btn } @@ -374,13 +430,18 @@ fn setup_context_menu(webview: &webkit::WebView) { action.connect_activate(move |_, _| { let _ = gio::AppInfo::launch_default_for_uri(&u, gio::AppLaunchContext::NONE); }); - wv.insert_action_group("ctx", Some(&{ - let group = gio::SimpleActionGroup::new(); - group.add_action(&action); - group - })); + wv.insert_action_group( + "ctx", + Some(&{ + let group = gio::SimpleActionGroup::new(); + group.add_action(&action); + group + }), + ); let item = webkit::ContextMenuItem::from_gaction( - &action, &gettext("Open Link in Browser"), None, + &action, + &gettext("Open Link in Browser"), + None, ); menu.append(&item); } @@ -399,7 +460,8 @@ fn handle_download(window: &adw::ApplicationWindow, download: &webkit::Download) // notify on completion download.connect_finished(clone!( - #[weak] window, + #[weak] + window, move |dl| { let dest = dl.destination().map(|g| g.to_string()).unwrap_or_default(); let fname = std::path::Path::new(&dest) @@ -415,7 +477,7 @@ fn handle_download(window: &adw::ApplicationWindow, download: &webkit::Download) )); let dialog = gtk::FileDialog::builder() - .title(&gettext("Save File")) + .title(gettext("Save File")) .initial_name(&suggested) .build(); @@ -423,7 +485,8 @@ fn handle_download(window: &adw::ApplicationWindow, download: &webkit::Download) Some(window), gio::Cancellable::NONE, clone!( - #[strong] download, + #[strong] + download, move |result: Result| { if let Ok(file) = result { if let Some(path) = file.path() { @@ -440,8 +503,14 @@ fn handle_download(window: &adw::ApplicationWindow, download: &webkit::Download) /// Bridge webkit notification → system notification fn show_notification(window: &adw::ApplicationWindow, notification: &webkit::Notification) { - let title = notification.title().map(|g| g.to_string()).unwrap_or_default(); - let body = notification.body().map(|g| g.to_string()).unwrap_or_default(); + let title = notification + .title() + .map(|g| g.to_string()) + .unwrap_or_default(); + let body = notification + .body() + .map(|g| g.to_string()) + .unwrap_or_default(); let notif = gio::Notification::new(&title); notif.set_body(Some(&body)); @@ -460,14 +529,19 @@ fn setup_shortcuts( url_bar: >k::Revealer, url_entry: >k::Entry, ) { - let app = window.application().unwrap(); + let app = window + .application() + .expect("Window must belong to an Application"); // F11 → fullscreen toggle let action_fs = gio::SimpleAction::new("toggle-fullscreen", None); action_fs.connect_activate(clone!( - #[weak] window, - #[weak] toolbar, - #[strong] is_fullscreen, + #[weak] + window, + #[weak] + toolbar, + #[strong] + is_fullscreen, move |_, _| { if is_fullscreen.get() { is_fullscreen.set(false); @@ -486,9 +560,12 @@ fn setup_shortcuts( // Escape → exit fullscreen let action_esc = gio::SimpleAction::new("exit-fullscreen", None); action_esc.connect_activate(clone!( - #[weak] window, - #[weak] toolbar, - #[strong] is_fullscreen, + #[weak] + window, + #[weak] + toolbar, + #[strong] + is_fullscreen, move |_, _| { if is_fullscreen.get() { is_fullscreen.set(false); @@ -503,8 +580,11 @@ fn setup_shortcuts( // Ctrl+R / F5 → reload let action_reload = gio::SimpleAction::new("reload", None); action_reload.connect_activate(clone!( - #[weak] webview, - move |_, _| { webview.reload(); } + #[weak] + webview, + move |_, _| { + webview.reload(); + } )); window.add_action(&action_reload); app.set_accels_for_action("win.reload", &["r", "F5"]); @@ -512,8 +592,11 @@ fn setup_shortcuts( // Alt+Left → back let action_back = gio::SimpleAction::new("go-back", None); action_back.connect_activate(clone!( - #[weak] webview, - move |_, _| { webview.go_back(); } + #[weak] + webview, + move |_, _| { + webview.go_back(); + } )); window.add_action(&action_back); app.set_accels_for_action("win.go-back", &["Left"]); @@ -521,8 +604,11 @@ fn setup_shortcuts( // Alt+Right → forward let action_fwd = gio::SimpleAction::new("go-forward", None); action_fwd.connect_activate(clone!( - #[weak] webview, - move |_, _| { webview.go_forward(); } + #[weak] + webview, + move |_, _| { + webview.go_forward(); + } )); window.add_action(&action_fwd); app.set_accels_for_action("win.go-forward", &["Right"]); @@ -530,8 +616,11 @@ fn setup_shortcuts( // Ctrl+W → close let action_close = gio::SimpleAction::new("close-window", None); action_close.connect_activate(clone!( - #[weak] window, - move |_, _| { window.close(); } + #[weak] + window, + move |_, _| { + window.close(); + } )); window.add_action(&action_close); app.set_accels_for_action("win.close-window", &["w"]); @@ -539,7 +628,8 @@ fn setup_shortcuts( // Zoom in/out/reset let action_zin = gio::SimpleAction::new("zoom-in", None); action_zin.connect_activate(clone!( - #[weak] webview, + #[weak] + webview, move |_, _| { let level = webview.zoom_level(); webview.set_zoom_level(level + 0.1); @@ -550,7 +640,8 @@ fn setup_shortcuts( let action_zout = gio::SimpleAction::new("zoom-out", None); action_zout.connect_activate(clone!( - #[weak] webview, + #[weak] + webview, move |_, _| { let level = webview.zoom_level(); webview.set_zoom_level((level - 0.1).max(0.3)); @@ -561,8 +652,11 @@ fn setup_shortcuts( let action_zreset = gio::SimpleAction::new("zoom-reset", None); action_zreset.connect_activate(clone!( - #[weak] webview, - move |_, _| { webview.set_zoom_level(1.0); } + #[weak] + webview, + move |_, _| { + webview.set_zoom_level(1.0); + } )); window.add_action(&action_zreset); app.set_accels_for_action("win.zoom-reset", &["0"]); @@ -570,7 +664,8 @@ fn setup_shortcuts( // Ctrl+Shift+I → devtools let action_dev = gio::SimpleAction::new("devtools", None); action_dev.connect_activate(clone!( - #[weak] webview, + #[weak] + webview, move |_, _| { if let Some(inspector) = webview.inspector() { inspector.show(); @@ -583,9 +678,12 @@ fn setup_shortcuts( // Ctrl+L → focus URL bar let action_url = gio::SimpleAction::new("focus-url", None); action_url.connect_activate(clone!( - #[weak] url_bar, - #[weak] url_entry, - #[weak] webview, + #[weak] + url_bar, + #[weak] + url_entry, + #[weak] + webview, move |_, _| { url_bar.set_reveal_child(true); if let Some(uri) = webview.uri() { @@ -608,8 +706,10 @@ fn setup_fullscreen_reveal(toolbar: &adw::ToolbarView, is_fullscreen: &Rc(&data) { + let data = match std::fs::read_to_string(config_path) { + Ok(d) => d, + Err(_) => return, // no config yet → use defaults + }; + match serde_json::from_str::(&data) { + Ok(geo) => { let w = geo.get("width").and_then(|v| v.as_i64()).unwrap_or(1024) as i32; let h = geo.get("height").and_then(|v| v.as_i64()).unwrap_or(720) as i32; window.set_default_size(w, h); - if geo.get("maximized").and_then(|v| v.as_bool()).unwrap_or(false) { + if geo + .get("maximized") + .and_then(|v| v.as_bool()) + .unwrap_or(false) + { window.maximize(); } } + Err(e) => log::warn!("Geometry parse fail: {e}"), } } From 5f67e02027d108d04a0575fdb339a5f3739350a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tales=20A=2E=20Mendon=C3=A7a?= Date: Thu, 16 Apr 2026 14:17:42 -0300 Subject: [PATCH 09/15] =?UTF-8?q?=F0=9F=90=9B=20fix:=20fix:=20browser=20de?= =?UTF-8?q?tection,=20mode=20switch=20persistence,=20UX=20polish?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Browser detection: - Add multi-path probe: /usr/bin/brave, brave-browser, brave-browser-stable - Normalize browser_id to "brave" (match BigLinux convention) - Fix xdg-settings mapping: brave-browser.desktop → "brave" Mode switch (App ↔ Browser): - Preserve browser field on App mode toggle (no __viewer__ override) - Update browser_row subtitle on mode change - Rewrite same .desktop file on mode switch (no duplicate entries) - Call update-desktop-database after install/remove Version: - APP_VERSION reads from Cargo.toml via env!("CARGO_PKG_VERSION") UI/UX: - Globe icon → "Detect" text button with auto-detect on URL change (800ms debounce) - "+" icon → "Add" text button with suggested-action styling - Template icon → "Templates" text button with suggested-action styling - App mode icon: big-webapps colorful SVG (not grey symbolic) - System accent color (blue) on action buttons via suggested-action CSS - Dialog: 3 PreferencesGroup cards (Website, Appearance, Behavior) Translations (pt-BR): - "Modo do App" → "Modo App" - Add "Adicionar", Detect "Detectar" Viewer: - Chrome 131 User-Agent string (fix Spotify WebKitGTK block) Fixes: - RefCell panic: Rc>> for debounce timer - URL normalization: prepend https:// if missing scheme - Icon resolution: hostname fallback + Google Favicon API - Cookie persistence: ephemeral → default data manager - Desktop entry: sanitize fields, proper WM class derivation --- biglinux-webapps/locale/pt-BR.po | 10 +- .../pt_BR/LC_MESSAGES/biglinux-webapps.mo | Bin 5509 -> 5549 bytes crates/webapps-core/src/config.rs | 2 +- crates/webapps-core/src/desktop.rs | 20 ++++ crates/webapps-manager/src/favicon.rs | 46 +++++++- crates/webapps-manager/src/service.rs | 68 +++++++----- crates/webapps-manager/src/webapp_dialog.rs | 101 +++++++++++++----- crates/webapps-manager/src/webapp_row.rs | 13 +-- crates/webapps-manager/src/window.rs | 4 +- 9 files changed, 196 insertions(+), 68 deletions(-) diff --git a/biglinux-webapps/locale/pt-BR.po b/biglinux-webapps/locale/pt-BR.po index 724e5895..3f6e6c4a 100644 --- a/biglinux-webapps/locale/pt-BR.po +++ b/biglinux-webapps/locale/pt-BR.po @@ -98,7 +98,7 @@ msgstr "Categoria" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:171 msgid "App Mode" -msgstr "Modo do App" +msgstr "Modo App" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:172 msgid "Opens as a native window without browser interface" @@ -352,3 +352,11 @@ msgstr "Download Concluído" #: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-viewer/src/window.rs:406 msgid "Save File" msgstr "Salvar Arquivo" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/window.rs:58 +msgid "Add" +msgstr "Adicionar" + +#: /home/talesam/Servidor/GitHub/biglinux-webapps/crates/webapps-manager/src/webapp_dialog.rs:112 +msgid "Detect" +msgstr "Detectar" diff --git a/biglinux-webapps/usr/share/locale/pt_BR/LC_MESSAGES/biglinux-webapps.mo b/biglinux-webapps/usr/share/locale/pt_BR/LC_MESSAGES/biglinux-webapps.mo index 8d92c307f62b54404a5ab1e8383c026e36ab23ff..9310f7fe10ff829bfaf5a88dc3acbd9a8055536f 100644 GIT binary patch delta 1864 zcmXxkOGs346vy#njn90HkD5yJk)@`k<|ES{W;Nz3OO1*OdSJHbVNos$YKU?ZZ9)uM zM1+JZk(vmqUAQm^YLiA*NDDK~i<7VGh?fQS%MpQVgS>e~TM&0)4D+ z39)8NxRHYKn2B1j2(>^Bsxl3zN}NU|d=^!S%cx&?1C`h<)bn>x&p*Io97H8BhFWhL z<5=HjIne}jP9L*s;#g-Irf{8w?2eUT8dhQ%HlY%~j`?^8mB=&X&t7uS^CRwh9JSte z46&yD;6xe!b}BuUGzm3PF6#3_{^V>*VN@14I;TM|vSy%>n6 z{%W3w-0+$My%J$L_oq<{WKc(yJP+A6E5@`4vnte}Jr1C{x&oEZ0o26Zs1ja9J$TpM??)y4$bJ44mFNhvhP}fzIDvXj z*=0g3YQ2IGCn{ACRq~U#4SP_Dg^?d=uaG%x6#27H9Msi6QQba=+S44e(L#C1ZdwUy zo*GnQb*SeXQO}2taH1x`ADkbNZM4ts^C?`;^(?A66DU&v{kRDW zQ1cx}HRlCXV)v2xL-v>xO)!l5;wUQPad-U<`A1ihJcr$==KO*ya1t~0{{Q7fO&DMnEmVnv*n--tScv;B3O8dj(w}x4RjGT< zM@Vnl2BMWvKh+Ulbuf=m;+k9Qd!vn`vewXIs)U9TS{SNQi@WfeiSu@%%H7+A1;l=L zE%b{!-1S~;ChFaF8HP$Z=oL~EX_OFZknMzioyKmWl2D^+sB^WK#f0{H3!yDh6;*O| zyoO%EBBGYqN9-gT361shguK^G4b?P%!`mCZ0csvK-ohy4M14VZy;o6Nv4hZHhrFS8 zTU(=7ww!1nG^&XjBAd{tAhr^FRIk;#<3`ZAap6YYsqUUDR@d1Xo{H*<2nS>S`1+0} TO!rkMKJA-H{1=`~dJ_2`qjic> delta 1858 zcmZwHOGs2v9LMofS!zB;Eh{T^d}U>$DsWA<>Z8;a(+ZD#BJBcgt1IFT4jK&CmW0KK{c07Uscn%j~djGO@-;0{C z9~r{jMI}6h9(9K4Xe-B11AVl64AhAp@O+byqJ4xo-?1Uqm7 zRWsFOubQ~1{r7DV4>EY*MNKe?+VW}SG|V^5UP3LPiZPR{l~5igVL96I6mG_D+=7ph zIn5MmVP8;3`vXjKN9N zM9NY-6OG#8T-=EjsD!#abW}9m$UCMF`7;AtRK?Fx)jf_n!=I?c=8#h{{$!_S^BWi+ksP{Wj-|Isqd~f02V}|JHAHuNpg$ZPAGmRSP532eD*grjwMy(_bwc>oN z$5K==KENn^h&qB%RME|%<_Tf2eoVv|{r*SjB=BGw`Hr!%Z#kHN)SEemT1lN{8&ZqD zceD~El}BjxI-37Ajhp??2SxNth<*C~tAc&Sg84)_p_OZUb@r-c7qQsV=_nx`lXgNC zua>!h@2Zs^AhdEVqJUUzY^bRuSg-NKbI~@c`qgw+YP*QNgo?>dIEfv^CV~y{HPwx( zd$Fa_NwIEHaVw#ksUnJrJ%pN$Nk8L4{r}flsqH7q2>pCiVES3=7#u_?v7K0Kxpdst zO$O>GrKSSgMpO`qgxYT6AQ4NLg6gKTEvBHR#(ucAx}dq)3~us2x@533V8$=Ls?u?& ywzcj|T~ni@_(V%>p55hiWjUOgj&!#@-JR!j_nZ#-)KeSU-xFw?9}ExcUH%siPM@Rz diff --git a/crates/webapps-core/src/config.rs b/crates/webapps-core/src/config.rs index 2e91df29..a6e9b0ba 100644 --- a/crates/webapps-core/src/config.rs +++ b/crates/webapps-core/src/config.rs @@ -1,6 +1,6 @@ use std::path::PathBuf; -pub const APP_VERSION: &str = "4.0.0"; +pub const APP_VERSION: &str = env!("CARGO_PKG_VERSION"); pub const APP_ID: &str = "br.com.biglinux.webapps"; /// Config dir: ~/.config/biglinux-webapps/ diff --git a/crates/webapps-core/src/desktop.rs b/crates/webapps-core/src/desktop.rs index 5884b1c5..4f4087f9 100644 --- a/crates/webapps-core/src/desktop.rs +++ b/crates/webapps-core/src/desktop.rs @@ -123,6 +123,7 @@ pub fn install_desktop_entry(webapp: &WebApp) -> Result<()> { let content = generate_desktop_entry(webapp); fs::write(&path, content)?; log::info!("Installed desktop entry: {}", path.display()); + refresh_desktop_database(); Ok(()) } @@ -132,10 +133,29 @@ pub fn remove_desktop_entry(webapp: &WebApp) -> Result<()> { if path.exists() { fs::remove_file(&path)?; log::info!("Removed desktop entry: {}", path.display()); + refresh_desktop_database(); } Ok(()) } +/// Remove a desktop file by filename directly +pub fn remove_desktop_file(filename: &str) -> Result<()> { + let path = config::applications_dir().join(filename); + if path.exists() { + fs::remove_file(&path)?; + log::info!("Removed old desktop entry: {}", path.display()); + } + Ok(()) +} + +/// Notify desktop environment of .desktop changes +fn refresh_desktop_database() { + let apps_dir = config::applications_dir(); + let _ = std::process::Command::new("update-desktop-database") + .arg(&apps_dir) + .spawn(); +} + /// Strip chars that could break desktop file Exec or shell parsing fn sanitize_desktop_field(s: &str) -> String { s.chars() diff --git a/crates/webapps-manager/src/favicon.rs b/crates/webapps-manager/src/favicon.rs index 5be84f0a..fb1827f8 100644 --- a/crates/webapps-manager/src/favicon.rs +++ b/crates/webapps-manager/src/favicon.rs @@ -38,7 +38,26 @@ pub fn fetch_site_info(url: &str) -> Result { let html_text = resp.text()?; let doc = Html::parse_document(&html_text); - let title = extract_title(&doc).unwrap_or_default(); + let mut title = extract_title(&doc).unwrap_or_default(); + + // fallback: if title is empty/generic (SPA stub), derive from hostname + let generic_titles = ["ok", "loading", "redirect", "please wait", ""]; + if generic_titles + .iter() + .any(|g| title.trim().to_lowercase() == *g) + || title.len() < 3 + { + if let Some(host) = parsed.host_str() { + // strip www. prefix, capitalize first letter + let clean = host.strip_prefix("www.").unwrap_or(host); + let mut chars = clean.chars(); + title = match chars.next() { + Some(c) => c.to_uppercase().to_string() + chars.as_str(), + None => clean.to_string(), + }; + } + } + let icon_urls = extract_icon_urls(&doc, &url); // download icons to cache @@ -67,6 +86,17 @@ pub fn fetch_site_info(url: &str) -> Result { } } + // last resort: Google favicon service + if icon_paths.is_empty() { + if let Some(host) = parsed.host_str() { + let google_url = + format!("https://www.google.com/s2/favicons?domain={host}&sz=128"); + if let Ok(path) = download_icon(&client, &google_url, &cache, 100) { + icon_paths.push(path); + } + } + } + Ok(SiteInfo { title, icon_paths }) } @@ -135,6 +165,20 @@ fn download_icon( anyhow::bail!("HTTP {}", resp.status()); } + // reject non-image content types (e.g. HTML redirect pages) + if let Some(ct) = resp.headers().get(reqwest::header::CONTENT_TYPE) { + if let Ok(ct_str) = ct.to_str() { + let ct_lower = ct_str.to_lowercase(); + if !ct_lower.starts_with("image/") + && !ct_lower.contains("svg") + && !ct_lower.contains("icon") + && !ct_lower.contains("octet-stream") + { + anyhow::bail!("Not an image: {ct_str}"); + } + } + } + // check content-length before downloading if let Some(cl) = resp.content_length() { if cl as usize > MAX_ICON_BYTES { diff --git a/crates/webapps-manager/src/service.rs b/crates/webapps-manager/src/service.rs index a53e6d87..6da2a221 100644 --- a/crates/webapps-manager/src/service.rs +++ b/crates/webapps-manager/src/service.rs @@ -42,10 +42,18 @@ pub fn save_webapps(collection: &WebAppCollection) -> Result<()> { } pub fn create_webapp(webapp: &WebApp) -> Result<()> { + let mut app = webapp.clone(); + // ensure app_file is populated → needed for update/remove by file + if app.app_file.is_empty() { + app.app_file = format!( + "biglinux-webapp-{}.desktop", + desktop::desktop_file_id(&app.app_url) + ); + } let mut col = load_webapps(); - col.add(webapp.clone()); + col.add(app.clone()); save_webapps(&col)?; - desktop::install_desktop_entry(webapp)?; + desktop::install_desktop_entry(&app)?; Ok(()) } @@ -122,32 +130,46 @@ pub fn profile_shared(webapp: &WebApp) -> bool { // -- browser detection -- pub fn detect_browsers() -> BrowserCollection { - let known_browsers = [ - ("firefox", "/usr/bin/firefox"), + // (browser_id, [candidate_paths]) — first existing path wins + let known_browsers: &[(&str, &[&str])] = &[ + ("firefox", &["/usr/bin/firefox"]), ( "firefox-developer-edition", - "/usr/bin/firefox-developer-edition", + &["/usr/bin/firefox-developer-edition"], + ), + ("librewolf", &["/usr/bin/librewolf"]), + ("google-chrome-stable", &["/usr/bin/google-chrome-stable"]), + ("google-chrome-beta", &["/usr/bin/google-chrome-beta"]), + ("google-chrome-unstable", &["/usr/bin/google-chrome-unstable"]), + ("chromium", &["/usr/bin/chromium"]), + ( + "brave", + &[ + "/usr/bin/brave", + "/usr/bin/brave-browser", + "/usr/bin/brave-browser-stable", + ], + ), + ( + "brave-beta", + &["/usr/bin/brave-browser-beta", "/usr/bin/brave-beta"], + ), + ( + "brave-nightly", + &["/usr/bin/brave-browser-nightly", "/usr/bin/brave-nightly"], ), - ("librewolf", "/usr/bin/librewolf"), - ("google-chrome-stable", "/usr/bin/google-chrome-stable"), - ("google-chrome-beta", "/usr/bin/google-chrome-beta"), - ("google-chrome-unstable", "/usr/bin/google-chrome-unstable"), - ("chromium", "/usr/bin/chromium"), - ("brave-browser", "/usr/bin/brave-browser-stable"), - ("brave-browser-beta", "/usr/bin/brave-browser-beta"), - ("brave-browser-nightly", "/usr/bin/brave-browser-nightly"), - ("microsoft-edge-stable", "/usr/bin/microsoft-edge-stable"), - ("microsoft-edge-beta", "/usr/bin/microsoft-edge-beta"), - ("vivaldi-stable", "/usr/bin/vivaldi-stable"), - ("vivaldi-beta", "/usr/bin/vivaldi-beta"), - ("vivaldi-snapshot", "/usr/bin/vivaldi-snapshot"), - ("ungoogled-chromium", "/usr/bin/ungoogled-chromium"), + ("microsoft-edge-stable", &["/usr/bin/microsoft-edge-stable"]), + ("microsoft-edge-beta", &["/usr/bin/microsoft-edge-beta"]), + ("vivaldi-stable", &["/usr/bin/vivaldi-stable"]), + ("vivaldi-beta", &["/usr/bin/vivaldi-beta"]), + ("vivaldi-snapshot", &["/usr/bin/vivaldi-snapshot"]), + ("ungoogled-chromium", &["/usr/bin/ungoogled-chromium"]), ]; let mut browsers: Vec = Vec::new(); - for (id, path) in &known_browsers { - if Path::new(path).exists() { + for (id, paths) in known_browsers { + if paths.iter().any(|p| Path::new(p).exists()) { browsers.push(Browser { browser_id: id.to_string(), is_default: false, @@ -215,9 +237,7 @@ fn match_desktop_to_browser(desktop: &str) -> Option { ("google-chrome-beta", "google-chrome-beta"), ("google-chrome-unstable", "google-chrome-unstable"), ("chromium", "chromium"), - ("brave-browser-stable", "brave-browser"), - ("brave-browser-beta", "brave-browser-beta"), - ("brave-browser-nightly", "brave-browser-nightly"), + ("brave", "brave"), ("microsoft-edge-stable", "microsoft-edge-stable"), ("microsoft-edge-beta", "microsoft-edge-beta"), ("vivaldi-stable", "vivaldi-stable"), diff --git a/crates/webapps-manager/src/webapp_dialog.rs b/crates/webapps-manager/src/webapp_dialog.rs index a2b12246..53ad04ad 100644 --- a/crates/webapps-manager/src/webapp_dialog.rs +++ b/crates/webapps-manager/src/webapp_dialog.rs @@ -61,9 +61,9 @@ pub fn show( let header = adw::HeaderBar::new(); // placeholder for template button — will be wired after widgets exist let tmpl_btn = if is_new { - let btn = gtk::Button::from_icon_name("view-grid-symbolic"); - btn.set_tooltip_text(Some(&gettext("Templates"))); - btn.update_property(&[gtk::accessible::Property::Label(&gettext("Templates"))]); + let btn = gtk::Button::with_label(&gettext("Templates")); + btn.set_tooltip_text(Some(&gettext("Choose from templates"))); + btn.add_css_class("suggested-action"); header.pack_start(&btn); Some(btn) } else { @@ -109,16 +109,9 @@ pub fn show( .title(gettext("URL")) .text(&webapp_cell.borrow().app_url) .build(); - let detect_img = gtk::Image::from_icon_name("emblem-web-symbolic"); - detect_img.set_pixel_size(24); - let detect_btn = gtk::Button::new(); - detect_btn.set_child(Some(&detect_img)); + let detect_btn = gtk::Button::with_label(&gettext("Detect")); detect_btn.set_tooltip_text(Some(&gettext("Detect name and icon from website"))); - detect_btn.update_property(&[gtk::accessible::Property::Label(&gettext( - "Detect name and icon from website", - ))]); detect_btn.set_valign(gtk::Align::Center); - detect_btn.add_css_class("flat"); url_row.add_suffix(&detect_btn); group_website.add(&url_row); @@ -288,11 +281,33 @@ pub fn show( }); } - // URL changed + // URL changed → update model + auto-detect with debounce + let debounce_handle: Rc>> = Rc::new(RefCell::new(None)); { let wc = webapp_cell.clone(); + let db_handle = debounce_handle.clone(); + let detect_btn_ref = detect_btn.clone(); url_row.connect_changed(move |row| { wc.borrow_mut().app_url = row.text().to_string(); + // cancel previous debounce + if let Some(id) = db_handle.borrow_mut().take() { + id.remove(); + } + // schedule auto-detect after 800ms idle + let btn = detect_btn_ref.clone(); + let handle = db_handle.clone(); + let text = row.text().to_string(); + let source = glib::timeout_add_local_once( + std::time::Duration::from_millis(800), + move || { + handle.borrow_mut().take(); + // only trigger if URL looks valid (has a dot) + if text.contains('.') && text.len() > 3 { + btn.emit_clicked(); + } + }, + ); + *db_handle.borrow_mut() = Some(source); }); } @@ -320,12 +335,30 @@ pub fn show( let wc = webapp_cell.clone(); let br = browser_row.clone(); let pr = profile_row.clone(); + let brs = browsers.clone(); + let brow = browser_row.clone(); mode_switch.connect_state_set(move |_, active| { - wc.borrow_mut().app_mode = if active { - AppMode::App + let mut app = wc.borrow_mut(); + if active { + app.app_mode = AppMode::App; + // keep browser field unchanged → restored on switch back } else { - AppMode::Browser - }; + app.app_mode = AppMode::Browser; + // if browser was __viewer__ (legacy data), pick default + if app.browser == "__viewer__" || app.browser.is_empty() { + if let Some(def) = brs.borrow().default_browser() { + app.browser = def.browser_id.clone(); + } + } + // update browser row subtitle + let name = brs + .borrow() + .get_by_id(&app.browser) + .map(|b| b.display_name().to_string()) + .unwrap_or_else(|| app.browser.clone()); + brow.set_subtitle(&name); + } + drop(app); br.set_visible(!active); pr.set_visible(!active); glib::Propagation::Proceed @@ -518,35 +551,47 @@ pub fn show( let wc = webapp_cell.clone(); let w = win.clone(); save_btn.connect_clicked(move |_| { - let app = wc.borrow().clone(); + let mut app = wc.borrow().clone(); // validate if app.app_name.trim().is_empty() || app.app_url.trim().is_empty() { return; } - // validate URL format - let url_str = app.app_url.trim(); - let test_url = if !url_str.starts_with("http://") + // normalize URL: prepend https:// if missing scheme + let url_str = app.app_url.trim().to_string(); + if !url_str.starts_with("http://") && !url_str.starts_with("https://") && !url_str.starts_with("file://") { - format!("https://{url_str}") + app.app_url = format!("https://{url_str}"); } else { - url_str.to_string() - }; - if url::Url::parse(&test_url).is_err() { + app.app_url = url_str; + } + + // validate URL format + if url::Url::parse(&app.app_url).is_err() { return; } - let ok = if is_new { - service::create_webapp(&app).is_ok() + let result = if is_new { + service::create_webapp(&app) } else { - service::update_webapp(&app).is_ok() + service::update_webapp(&app) }; + + match &result { + Ok(()) => log::info!( + "Saved webapp '{}' mode={:?}", + app.app_name, + app.app_mode + ), + Err(e) => log::error!("Save webapp failed: {e}"), + } + w.close(); on_done(DialogResult { - saved: ok, + saved: result.is_ok(), webapp: app, }); }); diff --git a/crates/webapps-manager/src/webapp_row.rs b/crates/webapps-manager/src/webapp_row.rs index c7e50907..82df187a 100644 --- a/crates/webapps-manager/src/webapp_row.rs +++ b/crates/webapps-manager/src/webapp_row.rs @@ -75,14 +75,12 @@ pub fn build_row(webapp: &WebApp, callbacks: &std::rc::Rc) -> gtk: actions.set_valign(gtk::Align::Center); // browser indicator — resolve through same icon pipeline - // in App mode: show indicator only (not clickable) since viewer is fixed let browser_btn = gtk::Button::new(); let browser_img = gtk::Image::new(); browser_img.set_pixel_size(24); if webapp.app_mode == AppMode::App { - browser_img.set_icon_name(Some("application-x-executable-symbolic")); - browser_btn.set_tooltip_text(Some(&gettext("App mode"))); - browser_btn.set_sensitive(false); + load_icon(&browser_img, "big-webapps"); + browser_btn.set_tooltip_text(Some(&gettext("App mode (built-in viewer)"))); } else { let browser_icon = webapps_core::models::Browser { browser_id: webapp.browser.clone(), @@ -93,13 +91,6 @@ pub fn build_row(webapp: &WebApp, callbacks: &std::rc::Rc) -> gtk: browser_btn.set_tooltip_text(Some(&gettext("Change browser"))); } browser_btn.set_child(Some(&browser_img)); - browser_btn.update_property(&[gtk::accessible::Property::Label(&if webapp.app_mode - == AppMode::App - { - gettext("App mode") - } else { - gettext("Change browser") - })]); browser_btn.add_css_class("flat"); browser_btn.add_css_class("action-btn"); { diff --git a/crates/webapps-manager/src/window.rs b/crates/webapps-manager/src/window.rs index c50f31d6..e05507bb 100644 --- a/crates/webapps-manager/src/window.rs +++ b/crates/webapps-manager/src/window.rs @@ -55,9 +55,9 @@ pub fn build(app: &adw::Application) { header.pack_start(&search_btn); // add button - let add_btn = gtk::Button::from_icon_name("list-add-symbolic"); + let add_btn = gtk::Button::with_label(&gettext("Add")); add_btn.set_tooltip_text(Some(&gettext("Add WebApp"))); - add_btn.update_property(&[gtk::accessible::Property::Label(&gettext("Add WebApp"))]); + add_btn.add_css_class("suggested-action"); header.pack_start(&add_btn); // menu From 8a781c74db56ecddb2cc4efddc65444993816e7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tales=20A=2E=20Mendon=C3=A7a?= Date: Thu, 16 Apr 2026 17:11:06 -0300 Subject: [PATCH 10/15] =?UTF-8?q?=F0=9F=90=9B=20fix:=20Fix=20Browser=20mod?= =?UTF-8?q?e:=20standalone=20window=20+=20correct=20WM=5FCLASS?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit big-webapps-exec: always pass --user-data-dir for all profiles. Previously "Browser" profile skipped it → Brave reused existing instance → --app= flag ignored → URL opened as regular tab. desktop.rs: derive_wm_class now generates correct StartupWMClass for Browser mode matching Chrome/Brave convention: {browser_prefix}-{url_class}-Default (e.g. brave-www.deezer.com__-Default). Add browser_wm_prefix() mapping browser binaries to WM_CLASS prefixes. Add browser_url_class() using url::Url::parse for proper path normalization. --- biglinux-webapps/usr/bin/big-webapps-exec | 18 ++------- crates/webapps-core/src/desktop.rs | 48 ++++++++++++++++++++--- 2 files changed, 45 insertions(+), 21 deletions(-) diff --git a/biglinux-webapps/usr/bin/big-webapps-exec b/biglinux-webapps/usr/bin/big-webapps-exec index da860b34..ec4986da 100755 --- a/biglinux-webapps/usr/bin/big-webapps-exec +++ b/biglinux-webapps/usr/bin/big-webapps-exec @@ -101,22 +101,14 @@ if grep -q '\-BigWebApp' <<< "$filename" && [[ $XDG_SESSION_TYPE == 'wayland' ]] cp "$filename" "$filename_orig" # Wait to system detect updated icon sleep 2 - if [[ "$profile" == "Browser" ]]; then - "${browser_exec[@]}" --no-default-browser-check --app="$url" & - else - "${browser_exec[@]}" --no-default-browser-check --user-data-dir="$HOME/.bigwebapps/$browser/$profile" --app="$url" & - fi + "${browser_exec[@]}" --no-default-browser-check --user-data-dir="$HOME/.bigwebapps/$browser/$profile" --app="$url" & sleep 2 mv -f "$filename_orig_bkp" "$filename_orig" flock -u 9 else # another instance holds lock → just launch without icon swap - if [[ "$profile" == "Browser" ]]; then - "${browser_exec[@]}" --no-default-browser-check --app="$url" & - else - "${browser_exec[@]}" --no-default-browser-check --user-data-dir="$HOME/.bigwebapps/$browser/$profile" --app="$url" & - fi + "${browser_exec[@]}" --no-default-browser-check --user-data-dir="$HOME/.bigwebapps/$browser/$profile" --app="$url" & fi rm -f "$lockfile" else @@ -128,9 +120,5 @@ else mv -f "$filename_bkp" "$filename" fi - if [[ "$profile" == "Browser" ]]; then - "${browser_exec[@]}" --no-default-browser-check --app="$url" & - else - "${browser_exec[@]}" --no-default-browser-check --user-data-dir="$HOME/.bigwebapps/$browser/$profile" --app="$url" & - fi + "${browser_exec[@]}" --no-default-browser-check --user-data-dir="$HOME/.bigwebapps/$browser/$profile" --app="$url" & fi diff --git a/crates/webapps-core/src/desktop.rs b/crates/webapps-core/src/desktop.rs index 4f4087f9..d095ad12 100644 --- a/crates/webapps-core/src/desktop.rs +++ b/crates/webapps-core/src/desktop.rs @@ -7,7 +7,7 @@ use std::path::PathBuf; /// Generate .desktop file content for a webapp pub fn generate_desktop_entry(webapp: &WebApp) -> String { let app_id = desktop_file_id(&webapp.app_url); - let wm_class = derive_wm_class(&webapp.app_url, &webapp.app_mode); + let wm_class = derive_wm_class(webapp); let has_mime = !webapp.mime_types.is_empty(); let file_arg = if has_mime { " %f" } else { "" }; @@ -69,11 +69,14 @@ pub fn generate_desktop_entry(webapp: &WebApp) -> String { lines.join("\n") + "\n" } -/// Derive WM class from URL + mode (matches original big-webapps script) -fn derive_wm_class(url: &str, mode: &AppMode) -> String { - match mode { +/// Derive WM class — must match what the browser/viewer actually sets. +/// App mode → custom Freedesktop reverse-DNS. +/// Browser mode → `{browser_prefix}-{url_class}-{profile}` (Chrome/Brave convention). +fn derive_wm_class(webapp: &WebApp) -> String { + match webapp.app_mode { AppMode::App => { - let app_id = url + let app_id = webapp + .app_url .replace("https://", "") .replace("http://", "") .replace('/', "_") @@ -82,7 +85,40 @@ fn derive_wm_class(url: &str, mode: &AppMode) -> String { .collect::(); format!("br.com.biglinux.webapp.{app_id}") } - AppMode::Browser => derive_class_from_url(url), + AppMode::Browser => { + let url_class = browser_url_class(&webapp.app_url); + let prefix = browser_wm_prefix(&webapp.browser); + // --user-data-dir always creates "Default" profile internally + format!("{prefix}-{url_class}-Default") + } + } +} + +/// Map browser binary/id → WM_CLASS prefix that Chrome/Brave/Chromium actually use. +fn browser_wm_prefix(browser: &str) -> &str { + let b = browser + .strip_prefix("flatpak-") + .unwrap_or(browser); + match b { + "brave" | "brave-browser" => "brave", + "google-chrome" | "google-chrome-stable" => "google-chrome", + "chromium" | "chromium-browser" => "chromium", + "microsoft-edge" | "microsoft-edge-stable" => "microsoft-edge", + "vivaldi" | "vivaldi-stable" => "vivaldi", + other => other, + } +} + +/// URL → class matching Chrome/Brave convention: strip scheme, replace / → __. +/// Ensures trailing slash for root paths so `deezer.com` → `deezer.com__`. +fn browser_url_class(url: &str) -> String { + if let Ok(parsed) = url::Url::parse(url) { + let host = parsed.host_str().unwrap_or(""); + let path = parsed.path(); + let path_class = path.replace('/', "__"); + format!("{host}{path_class}") + } else { + derive_class_from_url(url) } } From 7801f3d00563f8a39f14a4e8467232c7f1864f77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tales=20A=2E=20Mendon=C3=A7a?= Date: Thu, 16 Apr 2026 22:08:54 -0300 Subject: [PATCH 11/15] =?UTF-8?q?=F0=9F=90=9B=20fix:=20Fix=20template=20ic?= =?UTF-8?q?ons=20+=20force=20Browser=20mode=20for=20DRM=20templates?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Template icon fixes → map to existing GTK icon names: messenger→messenger-indicator, signal→signal-desktop, twitch→twitch-indicator, prime-video→amazon, disney-plus→video-television, ms-teams→teams, onedrive→skydrive, canva→applications-graphics, chatgpt→applications-internet, claude→applications-internet, linkedin→applications-internet, google-calendar→calendar DRM handling → WebKitGTK lacks Widevine CDM backend, force Browser mode for DRM-dependent services: - Add requires_drm field to WebAppTemplate - Mark 7 media templates: spotify, youtube-music, netflix, prime-video, disney-plus, tidal, deezer - Lock mode switch + show DRM notice in webapp dialog - Add DRM badge in template gallery - URL-based DRM detection fallback for non-template webapps --- .serena/.gitignore | 2 + .serena/project.yml | 154 ++++++++++++++++++ crates/webapps-core/src/models/webapp.rs | 5 + .../src/templates/communication.rs | 4 +- crates/webapps-core/src/templates/google.rs | 2 +- crates/webapps-core/src/templates/media.rs | 13 +- .../webapps-core/src/templates/office365.rs | 4 +- .../src/templates/productivity.rs | 8 +- crates/webapps-core/src/templates/registry.rs | 13 ++ .../webapps-manager/src/template_gallery.rs | 9 + crates/webapps-manager/src/webapp_dialog.rs | 45 ++++- 11 files changed, 244 insertions(+), 15 deletions(-) create mode 100644 .serena/.gitignore create mode 100644 .serena/project.yml diff --git a/.serena/.gitignore b/.serena/.gitignore new file mode 100644 index 00000000..2e510aff --- /dev/null +++ b/.serena/.gitignore @@ -0,0 +1,2 @@ +/cache +/project.local.yml diff --git a/.serena/project.yml b/.serena/project.yml new file mode 100644 index 00000000..f0483b81 --- /dev/null +++ b/.serena/project.yml @@ -0,0 +1,154 @@ +# the name by which the project can be referenced within Serena +project_name: "biglinux-webapps" + + +# list of languages for which language servers are started; choose from: +# al bash clojure cpp csharp +# csharp_omnisharp dart elixir elm erlang +# fortran fsharp go groovy haskell +# haxe java julia kotlin lua +# markdown +# matlab nix pascal perl php +# php_phpactor powershell python python_jedi r +# rego ruby ruby_solargraph rust scala +# swift terraform toml typescript typescript_vts +# vue yaml zig +# (This list may be outdated. For the current list, see values of Language enum here: +# https://github.com/oraios/serena/blob/main/src/solidlsp/ls_config.py +# For some languages, there are alternative language servers, e.g. csharp_omnisharp, ruby_solargraph.) +# Note: +# - For C, use cpp +# - For JavaScript, use typescript +# - For Free Pascal/Lazarus, use pascal +# Special requirements: +# Some languages require additional setup/installations. +# See here for details: https://oraios.github.io/serena/01-about/020_programming-languages.html#language-servers +# When using multiple languages, the first language server that supports a given file will be used for that file. +# The first language is the default language and the respective language server will be used as a fallback. +# Note that when using the JetBrains backend, language servers are not used and this list is correspondingly ignored. +languages: +- rust + +# the encoding used by text files in the project +# For a list of possible encodings, see https://docs.python.org/3.11/library/codecs.html#standard-encodings +encoding: "utf-8" + +# line ending convention to use when writing source files. +# Possible values: unset (use global setting), "lf", "crlf", or "native" (platform default) +# This does not affect Serena's own files (e.g. memories and configuration files), which always use native line endings. +line_ending: + +# The language backend to use for this project. +# If not set, the global setting from serena_config.yml is used. +# Valid values: LSP, JetBrains +# Note: the backend is fixed at startup. If a project with a different backend +# is activated post-init, an error will be returned. +language_backend: + +# whether to use project's .gitignore files to ignore files +ignore_all_files_in_gitignore: true + +# advanced configuration option allowing to configure language server-specific options. +# Maps the language key to the options. +# Have a look at the docstring of the constructors of the LS implementations within solidlsp (e.g., for C# or PHP) to see which options are available. +# No documentation on options means no options are available. +ls_specific_settings: {} + +# list of additional paths to ignore in this project. +# Same syntax as gitignore, so you can use * and **. +# Note: global ignored_paths from serena_config.yml are also applied additively. +ignored_paths: [] + +# whether the project is in read-only mode +# If set to true, all editing tools will be disabled and attempts to use them will result in an error +# Added on 2025-04-18 +read_only: false + +# list of tool names to exclude. +# This extends the existing exclusions (e.g. from the global configuration) +# +# Below is the complete list of tools for convenience. +# To make sure you have the latest list of tools, and to view their descriptions, +# execute `uv run scripts/print_tool_overview.py`. +# +# * `activate_project`: Activates a project based on the project name or path. +# * `check_onboarding_performed`: Checks whether project onboarding was already performed. +# * `create_text_file`: Creates/overwrites a file in the project directory. +# * `delete_memory`: Delete a memory file. Should only happen if a user asks for it explicitly, +# for example by saying that the information retrieved from a memory file is no longer correct +# or no longer relevant for the project. +# * `edit_memory`: Replaces content matching a regular expression in a memory. +# * `execute_shell_command`: Executes a shell command. +# * `find_file`: Finds files in the given relative paths +# * `find_referencing_symbols`: Finds symbols that reference the given symbol using the language server backend +# * `find_symbol`: Performs a global (or local) search using the language server backend. +# * `get_current_config`: Prints the current configuration of the agent, including the active and available projects, tools, contexts, and modes. +# * `get_symbols_overview`: Gets an overview of the top-level symbols defined in a given file. +# * `initial_instructions`: Provides instructions Serena usage (i.e. the 'Serena Instructions Manual') +# for clients that do not read the initial instructions when the MCP server is connected. +# * `insert_after_symbol`: Inserts content after the end of the definition of a given symbol. +# * `insert_before_symbol`: Inserts content before the beginning of the definition of a given symbol. +# * `list_dir`: Lists files and directories in the given directory (optionally with recursion). +# * `list_memories`: List available memories. Any memory can be read using the `read_memory` tool. +# * `onboarding`: Performs onboarding (identifying the project structure and essential tasks, e.g. for testing or building). +# * `read_file`: Reads a file within the project directory. +# * `read_memory`: Read the content of a memory file. This tool should only be used if the information +# is relevant to the current task. You can infer whether the information +# is relevant from the memory file name. +# You should not read the same memory file multiple times in the same conversation. +# * `rename_memory`: Renames or moves a memory. Moving between project and global scope is supported +# (e.g., renaming "global/foo" to "bar" moves it from global to project scope). +# * `rename_symbol`: Renames a symbol throughout the codebase using language server refactoring capabilities. +# For JB, we use a separate tool. +# * `replace_content`: Replaces content in a file (optionally using regular expressions). +# * `replace_symbol_body`: Replaces the full definition of a symbol using the language server backend. +# * `safe_delete_symbol`: +# * `search_for_pattern`: Performs a search for a pattern in the project. +# * `write_memory`: Write some information (utf-8-encoded) about this project that can be useful for future tasks to a memory in md format. +# The memory name should be meaningful. +excluded_tools: [] + +# list of tools to include that would otherwise be disabled (particularly optional tools that are disabled by default). +# This extends the existing inclusions (e.g. from the global configuration). +included_optional_tools: [] + +# fixed set of tools to use as the base tool set (if non-empty), replacing Serena's default set of tools. +# This cannot be combined with non-empty excluded_tools or included_optional_tools. +fixed_tools: [] + +# list of mode names to that are always to be included in the set of active modes +# The full set of modes to be activated is base_modes + default_modes. +# If the setting is undefined, the base_modes from the global configuration (serena_config.yml) apply. +# Otherwise, this setting overrides the global configuration. +# Set this to [] to disable base modes for this project. +# Set this to a list of mode names to always include the respective modes for this project. +base_modes: + +# list of mode names that are to be activated by default. +# The full set of modes to be activated is base_modes + default_modes. +# If the setting is undefined, the default_modes from the global configuration (serena_config.yml) apply. +# Otherwise, this overrides the setting from the global configuration (serena_config.yml). +# This setting can, in turn, be overridden by CLI parameters (--mode). +default_modes: + +# initial prompt for the project. It will always be given to the LLM upon activating the project +# (contrary to the memories, which are loaded on demand). +initial_prompt: "" + +# time budget (seconds) per tool call for the retrieval of additional symbol information +# such as docstrings or parameter information. +# This overrides the corresponding setting in the global configuration; see the documentation there. +# If null or missing, use the setting from the global configuration. +symbol_info_budget: + +# list of regex patterns which, when matched, mark a memory entry as read‑only. +# Extends the list from the global configuration, merging the two lists. +read_only_memory_patterns: [] + +# list of regex patterns for memories to completely ignore. +# Matching memories will not appear in list_memories or activate_project output +# and cannot be accessed via read_memory or write_memory. +# To access ignored memory files, use the read_file tool on the raw file path. +# Extends the list from the global configuration, merging the two lists. +# Example: ["_archive/.*", "_episodes/.*"] +ignored_memory_patterns: [] diff --git a/crates/webapps-core/src/models/webapp.rs b/crates/webapps-core/src/models/webapp.rs index 0341af23..359d16d8 100644 --- a/crates/webapps-core/src/models/webapp.rs +++ b/crates/webapps-core/src/models/webapp.rs @@ -131,6 +131,11 @@ impl WebApp { self.app_icon_url = tpl.icon.clone(); self.app_categories = tpl.category.clone(); + // DRM sites require browser engine (Widevine) → force Browser mode + if tpl.requires_drm { + self.app_mode = AppMode::Browser; + } + if !tpl.mime_types.is_empty() { self.mime_types = format!("{};", tpl.mime_types.join(";")); } diff --git a/crates/webapps-core/src/templates/communication.rs b/crates/webapps-core/src/templates/communication.rs index 0353276b..6e2ca8a8 100644 --- a/crates/webapps-core/src/templates/communication.rs +++ b/crates/webapps-core/src/templates/communication.rs @@ -59,7 +59,7 @@ pub fn templates() -> Vec { template_id: "messenger".into(), name: "Messenger".into(), url: "https://www.messenger.com".into(), - icon: "messenger".into(), + icon: "messenger-indicator".into(), category: "Network".into(), comment: "Messaging from Facebook Messenger".into(), generic_name: "Instant Messaging".into(), @@ -83,7 +83,7 @@ pub fn templates() -> Vec { template_id: "signal".into(), name: "Signal".into(), url: "https://signal.org/".into(), - icon: "signal".into(), + icon: "signal-desktop".into(), category: "Network".into(), comment: "Private messaging from Signal".into(), generic_name: "Instant Messaging".into(), diff --git a/crates/webapps-core/src/templates/google.rs b/crates/webapps-core/src/templates/google.rs index 88bf8255..ee6071a2 100644 --- a/crates/webapps-core/src/templates/google.rs +++ b/crates/webapps-core/src/templates/google.rs @@ -92,7 +92,7 @@ pub fn templates() -> Vec { template_id: "google-calendar".into(), name: "Google Calendar".into(), url: "https://calendar.google.com".into(), - icon: "google-calendar".into(), + icon: "calendar".into(), category: "Office".into(), comment: "Calendar and scheduling from Google".into(), generic_name: "Calendar".into(), diff --git a/crates/webapps-core/src/templates/media.rs b/crates/webapps-core/src/templates/media.rs index c7abb869..866c5424 100644 --- a/crates/webapps-core/src/templates/media.rs +++ b/crates/webapps-core/src/templates/media.rs @@ -17,6 +17,7 @@ pub fn templates() -> Vec { keywords: svec!["spotify", "music", "streaming", "audio", "playlist"], features: svec!["notifications", "media-keys"], url_schemes: svec!["spotify"], + requires_drm: true, ..Default::default() }, WebAppTemplate { @@ -30,6 +31,7 @@ pub fn templates() -> Vec { keywords: svec!["youtube", "music", "streaming", "google"], features: svec!["notifications", "media-keys"], profile: "google".into(), + requires_drm: true, ..Default::default() }, WebAppTemplate { @@ -41,28 +43,31 @@ pub fn templates() -> Vec { comment: "Watch movies and TV shows on Netflix".into(), generic_name: "Video Player".into(), keywords: svec!["netflix", "streaming", "movies", "series"], + requires_drm: true, ..Default::default() }, WebAppTemplate { template_id: "prime-video".into(), name: "Amazon Prime Video".into(), url: "https://www.primevideo.com".into(), - icon: "prime-video".into(), + icon: "amazon".into(), category: "AudioVideo".into(), comment: "Watch movies and TV shows on Prime Video".into(), generic_name: "Video Player".into(), keywords: svec!["amazon", "prime", "video", "streaming", "movies"], + requires_drm: true, ..Default::default() }, WebAppTemplate { template_id: "disney-plus".into(), name: "Disney+".into(), url: "https://www.disneyplus.com".into(), - icon: "disney-plus".into(), + icon: "video-television".into(), category: "AudioVideo".into(), comment: "Watch Disney, Marvel, Star Wars and more".into(), generic_name: "Video Player".into(), keywords: svec!["disney", "streaming", "movies", "marvel", "star wars"], + requires_drm: true, ..Default::default() }, WebAppTemplate { @@ -75,6 +80,7 @@ pub fn templates() -> Vec { generic_name: "Music Player".into(), keywords: svec!["tidal", "music", "hifi", "streaming", "lossless"], features: svec!["media-keys"], + requires_drm: true, ..Default::default() }, WebAppTemplate { @@ -87,13 +93,14 @@ pub fn templates() -> Vec { generic_name: "Music Player".into(), keywords: svec!["deezer", "music", "streaming"], features: svec!["media-keys"], + requires_drm: true, ..Default::default() }, WebAppTemplate { template_id: "twitch".into(), name: "Twitch".into(), url: "https://www.twitch.tv".into(), - icon: "twitch".into(), + icon: "twitch-indicator".into(), category: "AudioVideo".into(), comment: "Live streaming platform".into(), generic_name: "Streaming".into(), diff --git a/crates/webapps-core/src/templates/office365.rs b/crates/webapps-core/src/templates/office365.rs index d38e82fd..e52724f2 100644 --- a/crates/webapps-core/src/templates/office365.rs +++ b/crates/webapps-core/src/templates/office365.rs @@ -117,7 +117,7 @@ pub fn templates() -> Vec { template_id: "office365-teams".into(), name: "Microsoft Teams".into(), url: "https://teams.microsoft.com".into(), - icon: "ms-teams".into(), + icon: "teams".into(), category: "Network".into(), comment: "Chat and video conferencing with Microsoft Teams".into(), generic_name: "Instant Messaging".into(), @@ -133,7 +133,7 @@ pub fn templates() -> Vec { template_id: "office365-onedrive".into(), name: "Microsoft OneDrive".into(), url: "https://onedrive.live.com".into(), - icon: "onedrive".into(), + icon: "skydrive".into(), category: "Network".into(), comment: "Cloud storage from Microsoft OneDrive".into(), generic_name: "Cloud Storage".into(), diff --git a/crates/webapps-core/src/templates/productivity.rs b/crates/webapps-core/src/templates/productivity.rs index d2abdf9e..c08827a8 100644 --- a/crates/webapps-core/src/templates/productivity.rs +++ b/crates/webapps-core/src/templates/productivity.rs @@ -57,7 +57,7 @@ pub fn templates() -> Vec { template_id: "canva".into(), name: "Canva".into(), url: "https://www.canva.com".into(), - icon: "canva".into(), + icon: "applications-graphics".into(), category: "Graphics".into(), comment: "Online graphic design tool".into(), generic_name: "Design Tool".into(), @@ -92,7 +92,7 @@ pub fn templates() -> Vec { template_id: "chatgpt".into(), name: "ChatGPT".into(), url: "https://chatgpt.com".into(), - icon: "chatgpt".into(), + icon: "applications-internet".into(), category: "Utility".into(), comment: "AI assistant from OpenAI".into(), generic_name: "AI Assistant".into(), @@ -103,7 +103,7 @@ pub fn templates() -> Vec { template_id: "claude".into(), name: "Claude".into(), url: "https://claude.ai".into(), - icon: "claude".into(), + icon: "applications-internet".into(), category: "Utility".into(), comment: "AI assistant from Anthropic".into(), generic_name: "AI Assistant".into(), @@ -114,7 +114,7 @@ pub fn templates() -> Vec { template_id: "linkedin".into(), name: "LinkedIn".into(), url: "https://www.linkedin.com".into(), - icon: "linkedin".into(), + icon: "applications-internet".into(), category: "Network".into(), comment: "Professional networking platform".into(), generic_name: "Social Network".into(), diff --git a/crates/webapps-core/src/templates/registry.rs b/crates/webapps-core/src/templates/registry.rs index 8e588a13..29bafc29 100644 --- a/crates/webapps-core/src/templates/registry.rs +++ b/crates/webapps-core/src/templates/registry.rs @@ -25,6 +25,8 @@ pub struct WebAppTemplate { pub generic_name: String, pub keywords: Vec, pub file_handler: FileHandler, + /// Site needs DRM (Widevine) → force Browser mode + pub requires_drm: bool, } impl Default for WebAppTemplate { @@ -43,6 +45,7 @@ impl Default for WebAppTemplate { generic_name: String::new(), keywords: Vec::new(), file_handler: FileHandler::None, + requires_drm: false, } } } @@ -121,6 +124,16 @@ impl TemplateRegistry { }) .collect() } + + /// Check if a webapp needs DRM — match by template_id or URL domain + pub fn requires_drm(&self, template_id: &str, url: &str) -> bool { + if let Some(tpl) = self.templates.get(template_id) { + return tpl.requires_drm; + } + self.match_url(url) + .map(|tpl| tpl.requires_drm) + .unwrap_or(false) + } } /// Build registry with all bundled templates diff --git a/crates/webapps-manager/src/template_gallery.rs b/crates/webapps-manager/src/template_gallery.rs index 1e1b21c6..71b1a889 100644 --- a/crates/webapps-manager/src/template_gallery.rs +++ b/crates/webapps-manager/src/template_gallery.rs @@ -153,6 +153,15 @@ fn add_category_section( crate::webapp_row::load_icon(&icon, &tpl.icon); row.add_prefix(&icon); + // DRM badge → indicate Browser mode required + if tpl.requires_drm { + let drm_icon = gtk::Image::from_icon_name("web-browser-symbolic"); + drm_icon.set_pixel_size(16); + drm_icon.set_tooltip_text(Some(&gettext("Requires Browser mode (DRM)"))); + drm_icon.add_css_class("dim-label"); + row.add_suffix(&drm_icon); + } + // fire callback immediately, then close gallery let cb = callback.clone(); let tid = tpl.template_id.clone(); diff --git a/crates/webapps-manager/src/webapp_dialog.rs b/crates/webapps-manager/src/webapp_dialog.rs index 53ad04ad..6693ea8f 100644 --- a/crates/webapps-manager/src/webapp_dialog.rs +++ b/crates/webapps-manager/src/webapp_dialog.rs @@ -169,11 +169,26 @@ pub fn show( let mode_switch = gtk::Switch::new(); mode_switch.set_valign(gtk::Align::Center); mode_switch.set_active(webapp_cell.borrow().app_mode == AppMode::App); + + // DRM check for existing webapps → lock to Browser mode + let is_drm = { + let data = webapp_cell.borrow(); + let reg = build_default_registry(); + reg.requires_drm(&data.template_id, &data.app_url) + }; + if is_drm { + mode_switch.set_active(false); + mode_switch.set_sensitive(false); + webapp_cell.borrow_mut().app_mode = AppMode::Browser; + } + let mode_row = adw::ActionRow::builder() .title(gettext("App Mode")) - .subtitle(gettext( - "Opens as a native window without browser interface", - )) + .subtitle(if is_drm { + gettext("This service requires DRM — Browser mode is mandatory") + } else { + gettext("Opens as a native window without browser interface") + }) .build(); mode_row.add_suffix(&mode_switch); mode_row.set_activatable_widget(Some(&mode_switch)); @@ -248,17 +263,26 @@ pub fn show( let nr = name_row.clone(); let ip = icon_preview.clone(); let cd = cat_dropdown.clone(); + let ms = mode_switch.clone(); + let mr = mode_row.clone(); + let br_row = browser_row.clone(); + let pr_row = profile_row.clone(); tb.connect_clicked(move |_| { let wc2 = wc.clone(); let ur2 = ur.clone(); let nr2 = nr.clone(); let ip2 = ip.clone(); let cd2 = cd.clone(); + let ms2 = ms.clone(); + let mr2 = mr.clone(); + let br2 = br_row.clone(); + let pr2 = pr_row.clone(); template_gallery::show(&w, move |template_id| { log::info!("Template callback received: {}", &template_id); let reg = build_default_registry(); if let Some(tpl) = reg.get(&template_id) { log::info!("Template found: {} url={}", &tpl.name, &tpl.url); + let drm = tpl.requires_drm; wc2.borrow_mut().apply_template(tpl); // clone data before dropping borrow — set_text triggers connect_changed let (url, name, icon, cat) = { @@ -276,6 +300,21 @@ pub fn show( if let Some(pos) = CATEGORIES.iter().position(|c| *c == cat) { cd2.set_selected(pos as u32); } + // DRM → force Browser mode, lock switch + if drm { + ms2.set_active(false); + ms2.set_sensitive(false); + mr2.set_subtitle(&gettext( + "This service requires DRM — Browser mode is mandatory", + )); + br2.set_visible(true); + pr2.set_visible(true); + } else { + ms2.set_sensitive(true); + mr2.set_subtitle(&gettext( + "Opens as a native window without browser interface", + )); + } } }); }); From adac987d945ebd824e4fb0fc0019782d637201e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tales=20A=2E=20Mendon=C3=A7a?= Date: Sat, 18 Apr 2026 18:38:30 -0300 Subject: [PATCH 12/15] =?UTF-8?q?=F0=9F=94=A8=20refactor:=20refactor:=20se?= =?UTF-8?q?curity=20+=20UX=20improvements=20+=20module=20split?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Phase 2 fixes: - SEC-02: zip bomb protection in import - QUALITY-02: signal handler leak fix - QUALITY-06: atomic JSON writes (tmp + rename) - UX-01: validation feedback CSS - UX-02: save error Banner display - UX-05: skip auto-detect on template selection - POLISH-03: geometry save accuracy (non-maximized dimensions) - POLISH-05: cancel debounce on dialog close - POLISH-06: context menu action group reuse High priority: - 2.6: permission prompt system — camera/mic/geolocation prompt via AlertDialog, decisions persisted in permissions.json; non-sensitive perms (notifications, clipboard, DRM) auto-granted - 2.3: import/export on background threads via std::thread::spawn + glib::timeout_add_local polling (non-blocking UI) Medium priority: - 3.5: collapse Behavior section for new webapps — "Advanced Settings..." button reveals on click - 3.9: split service.rs (735L) into service/ module directory — mod.rs (249L), browser.rs (126L), io.rs (130L), migration.rs (255L) Build: zero warnings (build + clippy), 35/35 tests pass. --- PLANNING.md | 42 +- crates/webapps-manager/src/service.rs | 723 ------------------ crates/webapps-manager/src/service/browser.rs | 126 +++ crates/webapps-manager/src/service/io.rs | 130 ++++ .../webapps-manager/src/service/migration.rs | 255 ++++++ crates/webapps-manager/src/service/mod.rs | 249 ++++++ crates/webapps-manager/src/webapp_dialog.rs | 122 ++- crates/webapps-manager/src/window.rs | 79 +- crates/webapps-viewer/src/window.rs | 179 ++++- 9 files changed, 1097 insertions(+), 808 deletions(-) delete mode 100644 crates/webapps-manager/src/service.rs create mode 100644 crates/webapps-manager/src/service/browser.rs create mode 100644 crates/webapps-manager/src/service/io.rs create mode 100644 crates/webapps-manager/src/service/migration.rs create mode 100644 crates/webapps-manager/src/service/mod.rs diff --git a/PLANNING.md b/PLANNING.md index 5aadaa29..8ee58bf5 100644 --- a/PLANNING.md +++ b/PLANNING.md @@ -1,6 +1,6 @@ # PLANNING.md — BigLinux WebApps v4.0.0 Full Audit -> Generated: 2025-06-23 | Updated: 2025-06-24 (post-fix) +> Generated: 2025-06-23 | Updated: 2025-06-25 (Phase 2 fixes applied) > Codebase: 26 .rs files, ~5100 LOC, 3 crates > Tooling: cargo clippy, cargo fmt, cargo audit, manual review, GTK4/Adwaita audit, Orca a11y audit @@ -453,3 +453,43 @@ A11y issues: ~20 → target 0 (Phase A+B+C) - **Browser detection caching:** `detect_browsers()` spawns external processes (flatpak list, xdg-settings). Results should be cached for the app session since installed browsers don't change during a single run. - **shell_split() limitations:** Custom tokenizer doesn't handle escaped quotes (`\"`) or heredoc-style strings. Document this or switch to `shell-words` crate. - **ZIP path traversal:** Current `canonicalize()` check is correct but `canonicalize()` requires the path to exist. Consider using `Path::components()` check for `..` segments as additional defense. + +--- + +## 11. Phase 2 Fixes Applied (2025-06-25) + +All changes verified: cargo build ✅, cargo clippy 0 warnings ✅, 35/35 tests ✅ + +### Security +| ID | Fix | File | Details | +|----|-----|------|---------| +| SEC-02 | ✅ Zip bomb protection | service.rs | `Read::take(50MB)` limit per extracted file + cleanup on oversize | + +### Code Quality +| ID | Fix | File | Details | +|----|-----|------|---------| +| QUALITY-02 | ✅ Signal handler leak | webapp_dialog.rs | `favicon_flow.connect_child_activated` moved out of detect handler → wired once | +| QUALITY-06 | ✅ Atomic JSON writes | service.rs | Write `.json.tmp` → `fs::rename()` → no corruption on crash | + +### UX +| ID | Fix | File | Details | +|----|-----|------|---------| +| UX-01 | ✅ Validation feedback | webapp_dialog.rs | Error CSS class + `grab_focus()` on empty/invalid fields | +| UX-02 | ✅ Save error display | webapp_dialog.rs | `adw::Banner` error message, dialog stays open | +| UX-05 | ✅ Skip auto-detect on template | webapp_dialog.rs | `skip_auto_detect` Cell flag → no redundant favicon fetch | + +### Polish +| ID | Fix | File | Details | +|----|-----|------|---------| +| POLISH-03 | ✅ Geometry save accuracy | viewer/window.rs | Use `window.width()/height()` for non-maximized, `default_size()` fallback for maximized | +| POLISH-05 | ✅ Cancel debounce on close | webapp_dialog.rs | `connect_destroy` cancels pending `SourceId` timer | +| POLISH-06 | ✅ Context menu action group leak | viewer/window.rs | Action group created once, action takes URI as `String` param → reused per right-click | + +### Phase 3 — High+Medium Priority (2025-06-25) + +| ID | Fix | File | Details | +|----|-----|------|---------| +| 2.6 | ✅ Permission prompt system | viewer/window.rs | Camera/mic/geolocation → `adw::AlertDialog` prompt, decision persisted in `permissions.json`, other perms auto-granted | +| 2.3 | ✅ Background I/O threads | manager/window.rs | Import/export run on `std::thread::spawn`, result polled via `glib::timeout_add_local` | +| 3.5 | ✅ Collapse Behavior section | webapp_dialog.rs | New webapps: Behavior group hidden, "Advanced Settings…" button reveals it | +| 3.9 | ✅ Split service.rs | service/ | 735L monolith → 4 modules: mod.rs(249), browser.rs(126), io.rs(130), migration.rs(255) | diff --git a/crates/webapps-manager/src/service.rs b/crates/webapps-manager/src/service.rs deleted file mode 100644 index 6da2a221..00000000 --- a/crates/webapps-manager/src/service.rs +++ /dev/null @@ -1,723 +0,0 @@ -use anyhow::{Context, Result}; -use std::fs; -use std::io::{Read, Write}; -use std::path::{Path, PathBuf}; -use webapps_core::config; -use webapps_core::desktop; -use webapps_core::models::{Browser, BrowserCollection, WebApp, WebAppCollection}; - -/// Persistent storage file for webapps list -fn webapps_json_path() -> PathBuf { - config::data_dir().join("webapps.json") -} - -// -- webapp CRUD -- - -pub fn load_webapps() -> WebAppCollection { - let path = webapps_json_path(); - if !path.exists() { - return WebAppCollection::default(); - } - match fs::read_to_string(&path) { - Ok(data) => match serde_json::from_str::>(&data) { - Ok(vals) => WebAppCollection::load_from_json(&vals), - Err(e) => { - log::error!("Parse webapps.json: {e}"); - WebAppCollection::default() - } - }, - Err(e) => { - log::error!("Read webapps.json: {e}"); - WebAppCollection::default() - } - } -} - -pub fn save_webapps(collection: &WebAppCollection) -> Result<()> { - let dir = config::data_dir(); - fs::create_dir_all(&dir)?; - let json = serde_json::to_string_pretty(&collection.webapps)?; - fs::write(webapps_json_path(), json)?; - Ok(()) -} - -pub fn create_webapp(webapp: &WebApp) -> Result<()> { - let mut app = webapp.clone(); - // ensure app_file is populated → needed for update/remove by file - if app.app_file.is_empty() { - app.app_file = format!( - "biglinux-webapp-{}.desktop", - desktop::desktop_file_id(&app.app_url) - ); - } - let mut col = load_webapps(); - col.add(app.clone()); - save_webapps(&col)?; - desktop::install_desktop_entry(&app)?; - Ok(()) -} - -pub fn update_webapp(webapp: &WebApp) -> Result<()> { - let mut col = load_webapps(); - col.remove_by_file(&webapp.app_file); - col.add(webapp.clone()); - save_webapps(&col)?; - desktop::install_desktop_entry(webapp)?; - Ok(()) -} - -pub fn delete_webapp(webapp: &WebApp, delete_profile: bool) -> Result<()> { - let mut col = load_webapps(); - col.remove_by_file(&webapp.app_file); - save_webapps(&col)?; - desktop::remove_desktop_entry(webapp)?; - - if delete_profile { - cleanup_profile(webapp); - } - // cleanup viewer data if app mode - if webapp.app_mode == webapps_core::models::AppMode::App { - cleanup_viewer_data(&webapp.app_url); - } - Ok(()) -} - -pub fn delete_all_webapps() -> Result<()> { - let col = load_webapps(); - for app in &col.webapps { - let _ = desktop::remove_desktop_entry(app); - if app.app_mode == webapps_core::models::AppMode::App { - cleanup_viewer_data(&app.app_url); - } - } - save_webapps(&WebAppCollection::default())?; - Ok(()) -} - -fn cleanup_viewer_data(url: &str) { - let app_id = desktop::desktop_file_id(url); - // geometry config - let geom = config::config_dir().join(format!("{app_id}.json")); - let _ = fs::remove_file(geom); - // session data - let data = config::data_dir().join(&app_id); - let _ = fs::remove_dir_all(data); - // cache - let cache = config::cache_dir().join(&app_id); - let _ = fs::remove_dir_all(cache); -} - -fn cleanup_profile(webapp: &WebApp) { - let profile_dir = config::profiles_dir() - .join(&webapp.browser) - .join(&webapp.app_profile); - if profile_dir.exists() { - let _ = fs::remove_dir_all(&profile_dir); - log::info!("Removed profile: {}", profile_dir.display()); - } -} - -/// Check if any other webapp shares same browser+profile -pub fn profile_shared(webapp: &WebApp) -> bool { - let col = load_webapps(); - col.webapps.iter().any(|a| { - a.app_file != webapp.app_file - && a.browser == webapp.browser - && a.app_profile == webapp.app_profile - }) -} - -// -- browser detection -- - -pub fn detect_browsers() -> BrowserCollection { - // (browser_id, [candidate_paths]) — first existing path wins - let known_browsers: &[(&str, &[&str])] = &[ - ("firefox", &["/usr/bin/firefox"]), - ( - "firefox-developer-edition", - &["/usr/bin/firefox-developer-edition"], - ), - ("librewolf", &["/usr/bin/librewolf"]), - ("google-chrome-stable", &["/usr/bin/google-chrome-stable"]), - ("google-chrome-beta", &["/usr/bin/google-chrome-beta"]), - ("google-chrome-unstable", &["/usr/bin/google-chrome-unstable"]), - ("chromium", &["/usr/bin/chromium"]), - ( - "brave", - &[ - "/usr/bin/brave", - "/usr/bin/brave-browser", - "/usr/bin/brave-browser-stable", - ], - ), - ( - "brave-beta", - &["/usr/bin/brave-browser-beta", "/usr/bin/brave-beta"], - ), - ( - "brave-nightly", - &["/usr/bin/brave-browser-nightly", "/usr/bin/brave-nightly"], - ), - ("microsoft-edge-stable", &["/usr/bin/microsoft-edge-stable"]), - ("microsoft-edge-beta", &["/usr/bin/microsoft-edge-beta"]), - ("vivaldi-stable", &["/usr/bin/vivaldi-stable"]), - ("vivaldi-beta", &["/usr/bin/vivaldi-beta"]), - ("vivaldi-snapshot", &["/usr/bin/vivaldi-snapshot"]), - ("ungoogled-chromium", &["/usr/bin/ungoogled-chromium"]), - ]; - - let mut browsers: Vec = Vec::new(); - - for (id, paths) in known_browsers { - if paths.iter().any(|p| Path::new(p).exists()) { - browsers.push(Browser { - browser_id: id.to_string(), - is_default: false, - }); - } - } - - // detect flatpak browsers - if let Ok(output) = std::process::Command::new("flatpak") - .args(["list", "--app", "--columns=application"]) - .output() - { - let stdout = String::from_utf8_lossy(&output.stdout); - let flatpak_map = [ - ("org.mozilla.firefox", "flatpak-firefox"), - ("com.google.Chrome", "flatpak-google-chrome-stable"), - ("org.chromium.Chromium", "flatpak-chromium"), - ("com.brave.Browser", "flatpak-brave-browser"), - ("com.microsoft.Edge", "flatpak-microsoft-edge-stable"), - ("com.vivaldi.Vivaldi", "flatpak-vivaldi-stable"), - ("io.gitlab.librewolf-community", "flatpak-librewolf"), - ]; - for (flatpak_id, browser_id) in &flatpak_map { - if stdout.lines().any(|l| l.trim() == *flatpak_id) { - browsers.push(Browser { - browser_id: browser_id.to_string(), - is_default: false, - }); - } - } - } - - // detect system default - let default_id = detect_default_browser(); - - let mut col = BrowserCollection { - browsers, - default_id: None, - }; - if let Some(id) = default_id { - col.set_default(&id); - } - col -} - -fn detect_default_browser() -> Option { - let output = std::process::Command::new("xdg-settings") - .args(["get", "default-web-browser"]) - .output() - .ok()?; - let desktop_name = String::from_utf8_lossy(&output.stdout).trim().to_string(); - if desktop_name.is_empty() { - return None; - } - match_desktop_to_browser(&desktop_name) -} - -fn match_desktop_to_browser(desktop: &str) -> Option { - let d = desktop.to_lowercase(); - let mappings = [ - ("firefox", "firefox"), - ("firefox-developer", "firefox-developer-edition"), - ("librewolf", "librewolf"), - ("google-chrome-stable", "google-chrome-stable"), - ("google-chrome-beta", "google-chrome-beta"), - ("google-chrome-unstable", "google-chrome-unstable"), - ("chromium", "chromium"), - ("brave", "brave"), - ("microsoft-edge-stable", "microsoft-edge-stable"), - ("microsoft-edge-beta", "microsoft-edge-beta"), - ("vivaldi-stable", "vivaldi-stable"), - ("vivaldi-beta", "vivaldi-beta"), - ("vivaldi-snapshot", "vivaldi-snapshot"), - ]; - for (pattern, id) in &mappings { - if d.contains(pattern) { - return Some(id.to_string()); - } - } - None -} - -// -- export / import -- - -pub fn export_webapps(zip_path: &Path) -> Result { - let col = load_webapps(); - if col.webapps.is_empty() { - return Ok("no_webapps".into()); - } - - let file = fs::File::create(zip_path).context("Create zip file")?; - let mut zip = zip::ZipWriter::new(file); - let options = zip::write::SimpleFileOptions::default() - .compression_method(zip::CompressionMethod::Deflated); - - // write manifest - let manifest = serde_json::to_string_pretty(&col.webapps)?; - zip.start_file("webapps.json", options)?; - zip.write_all(manifest.as_bytes())?; - - // copy icons - for app in &col.webapps { - if app.app_icon_url.is_empty() { - continue; - } - let icon_path = Path::new(&app.app_icon_url); - if icon_path.is_file() { - let fname = icon_path - .file_name() - .map(|n| n.to_string_lossy().to_string()) - .unwrap_or_default(); - if !fname.is_empty() { - zip.start_file(format!("icons/{fname}"), options)?; - let mut f = fs::File::open(icon_path)?; - let mut buf = Vec::new(); - f.read_to_end(&mut buf)?; - zip.write_all(&buf)?; - } - } - } - - zip.finish()?; - Ok("ok".into()) -} - -pub fn import_webapps(zip_path: &Path) -> Result<(usize, usize)> { - let file = fs::File::open(zip_path).context("Open zip file")?; - let mut archive = zip::ZipArchive::new(file)?; - - // read manifest - let manifest = { - let mut entry = archive.by_name("webapps.json")?; - let mut buf = String::new(); - entry.read_to_string(&mut buf)?; - buf - }; - let imported_apps: Vec = serde_json::from_str(&manifest)?; - - // extract icons - let icons_dir = config::data_dir().join("icons"); - fs::create_dir_all(&icons_dir)?; - let icons_canonical = icons_dir.canonicalize()?; - for i in 0..archive.len() { - let mut entry = archive.by_index(i)?; - let name = entry.name().to_string(); - if name.starts_with("icons/") { - let fname = name.strip_prefix("icons/").unwrap_or(&name); - // strict filename: must be non-empty, no path separators, no .. - if fname.is_empty() - || fname.contains('/') - || fname.contains('\\') - || fname.contains("..") - { - continue; - } - let dest = icons_dir.join(fname); - // verify dest stays within icons_dir - if let Ok(canonical) = dest.parent().map(|p| p.canonicalize()).transpose() { - if canonical.as_deref() != Some(icons_canonical.as_path()) { - continue; - } - } - let mut out = fs::File::create(&dest)?; - std::io::copy(&mut entry, &mut out)?; - } - } - - // import webapps, skip duplicates - let existing = load_webapps(); - let mut imported = 0usize; - let mut duplicates = 0usize; - - for app in imported_apps { - let is_dup = existing - .webapps - .iter() - .any(|e| e.app_name == app.app_name && e.app_url == app.app_url); - if is_dup { - duplicates += 1; - continue; - } - // generate new app_file - let mut new_app = app; - new_app.app_file = generate_app_file(&new_app.browser, &new_app.app_url); - if let Err(e) = create_webapp(&new_app) { - log::error!("Import webapp {}: {e}", new_app.app_name); - } else { - imported += 1; - } - } - - Ok((imported, duplicates)) -} - -/// Migrate existing .desktop files from legacy big-webapps into webapps.json. -/// Scans ~/.local/share/applications/ for files matching pattern: -/// `{browser}-*.desktop` with `Exec=big-webapps-exec` or `Exec=big-webapps-viewer`. -/// Returns count of migrated apps. -pub fn migrate_legacy_desktops() -> usize { - let json_path = webapps_json_path(); - if json_path.exists() { - // already has data — skip migration - return 0; - } - - let apps_dir = config::applications_dir(); - let entries = match fs::read_dir(&apps_dir) { - Ok(e) => e, - Err(_) => return 0, - }; - - let mut webapps: Vec = Vec::new(); - - for entry in entries.flatten() { - let fname = entry.file_name().to_string_lossy().to_string(); - if !fname.ends_with(".desktop") { - continue; - } - - let content = match fs::read_to_string(entry.path()) { - Ok(c) => c, - Err(_) => continue, - }; - - // only import big-webapps desktop files - if !content.contains("big-webapps-exec") && !content.contains("big-webapps-viewer") { - continue; - } - - if let Some(app) = parse_legacy_desktop(&fname, &content) { - webapps.push(app); - } - } - - let count = webapps.len(); - if count > 0 { - let col = WebAppCollection { webapps }; - if let Err(e) = save_webapps(&col) { - log::error!("Save migrated webapps: {e}"); - return 0; - } - log::info!("Migrated {count} legacy webapps"); - } - - count -} - -/// Parse a legacy .desktop file into WebApp struct -fn parse_legacy_desktop(filename: &str, content: &str) -> Option { - let mut app = WebApp { - app_file: filename.to_string(), - ..Default::default() - }; - - for line in content.lines() { - let line = line.trim(); - // stop at Desktop Action sections — only parse [Desktop Entry] - if line.starts_with("[Desktop Action") - || (line.starts_with('[') && line != "[Desktop Entry]" && !line.starts_with("#")) - { - if !app.app_name.is_empty() { - break; - } - continue; - } - if let Some(val) = line.strip_prefix("Name=") { - app.app_name = val.to_string(); - } else if let Some(val) = line.strip_prefix("Icon=") { - app.app_icon = val.to_string(); - } else if let Some(val) = line.strip_prefix("Categories=") { - app.app_categories = val.to_string(); - } else if let Some(val) = line.strip_prefix("MimeType=") { - app.mime_types = val.to_string(); - } else if let Some(val) = line.strip_prefix("Comment=") { - app.comment = val.to_string(); - } else if let Some(val) = line.strip_prefix("Exec=") { - parse_exec_line(val, &mut app); - } - } - - // minimal validation - if app.app_name.is_empty() || app.app_url.is_empty() { - return None; - } - - Some(app) -} - -/// Extract browser, url, profile, mode from Exec= line -fn parse_exec_line(exec: &str, app: &mut WebApp) { - if exec.starts_with("big-webapps-viewer") { - app.app_mode = webapps_core::models::AppMode::App; - app.browser = "__viewer__".to_string(); - - // --url="..." --name="..." --icon="..." --app-id="..." - for part in shell_split(exec) { - if let Some(val) = part.strip_prefix("--url=") { - app.app_url = val.trim_matches('"').to_string(); - } else if let Some(val) = part.strip_prefix("--icon=") { - let icon = val.trim_matches('"'); - if !icon.is_empty() { - app.app_icon = icon.to_string(); - } - } - } - } else if exec.starts_with("big-webapps-exec") { - app.app_mode = webapps_core::models::AppMode::Browser; - - let parts = shell_split(exec); - // format: big-webapps-exec filename="..." browser --class="..." --profile-directory=X --app="URL" - for (i, part) in parts.iter().enumerate() { - if let Some(val) = part.strip_prefix("filename=") { - app.app_file = val.trim_matches('"').to_string(); - } else if let Some(val) = part.strip_prefix("--app=") { - app.app_url = val.trim_matches('"').to_string(); - } else if let Some(val) = part.strip_prefix("--profile-directory=") { - app.app_profile = val.trim_matches('"').to_string(); - } else if i == 2 && !part.starts_with('-') && !part.contains('=') { - // browser name is the 3rd token (index 2) - app.browser = part.to_string(); - } - } - } -} - -/// Simple tokenizer that respects quotes in Exec lines -fn shell_split(s: &str) -> Vec { - let mut tokens = Vec::new(); - let mut current = String::new(); - let mut in_quote = false; - let mut quote_char = ' '; - - for ch in s.chars() { - match ch { - '"' | '\'' if !in_quote => { - in_quote = true; - quote_char = ch; - } - c if c == quote_char && in_quote => { - in_quote = false; - } - ' ' if !in_quote => { - if !current.is_empty() { - tokens.push(std::mem::take(&mut current)); - } - } - _ => current.push(ch), - } - } - if !current.is_empty() { - tokens.push(current); - } - tokens -} - -pub fn generate_app_file(browser: &str, url: &str) -> String { - // short browser name — matches original big-webapps script - let short = if browser == "__viewer__" { - "viewer" - } else { - let b = browser.to_lowercase(); - if b.contains("chrom") { - "chrome" - } else if b.contains("brave") { - "brave" - } else if b.contains("edge") { - "msedge" - } else if b.contains("vivaldi") { - "vivaldi" - } else { - browser - } - }; - - // url → path component: strip scheme, strip query, / → __ - let cleaned = url.replace("https://", "").replace("http://", ""); - let cleaned = cleaned.split('?').next().unwrap_or(&cleaned); - let cleaned = cleaned.replace('/', "__"); - - // keep first __ occurrence, replace subsequent with _ - let mut filename = format!("{short}-{cleaned}-Default.desktop"); - if !filename.contains("__") { - filename = filename.replace("-Default", "__-Default"); - } - - // dedup: check existing files - let apps_dir = webapps_core::config::applications_dir(); - if apps_dir.join(&filename).exists() { - let base = filename.clone(); - let mut i = 2; - loop { - filename = base.replace(".desktop", &format!("-BigWebApp{i}.desktop")); - if !apps_dir.join(&filename).exists() { - break; - } - i += 1; - } - } - - filename -} - -// -- icon resolution -- - -/// Resolve icon to display path. Checks: absolute path → user icons → hicolor → system → theme name -pub fn resolve_icon_path(icon: &str) -> String { - if icon.is_empty() { - return "webapp-manager-generic".into(); - } - // absolute path - let p = Path::new(icon); - if p.is_absolute() && p.exists() { - return icon.to_string(); - } - // user-local icons (flat) - let local_icons = dirs::data_dir() - .unwrap_or_else(|| PathBuf::from("/tmp")) - .join("icons"); - for ext in &["png", "svg", "xpm"] { - let candidate = local_icons.join(format!("{icon}.{ext}")); - if candidate.exists() { - return candidate.to_string_lossy().to_string(); - } - } - // user-local hicolor — return icon name so GTK theme renders SVG at correct size - let hicolor_user = local_icons.join("hicolor/scalable/apps"); - for ext in &["svg", "png"] { - let candidate = hicolor_user.join(format!("{icon}.{ext}")); - if candidate.exists() { - return icon.to_string(); - } - } - // system hicolor — return icon name for GTK theme lookup - let hicolor_sys = PathBuf::from("/usr/share/icons/hicolor/scalable/apps"); - for ext in &["svg", "png"] { - let candidate = hicolor_sys.join(format!("{icon}.{ext}")); - if candidate.exists() { - return icon.to_string(); - } - } - // system icons dir (biglinux-specific) - let sys = config::system_icons_dir(); - for ext in &["svg", "png"] { - let candidate = sys.join(format!("{icon}.{ext}")); - if candidate.exists() { - return candidate.to_string_lossy().to_string(); - } - } - // fallback: return as icon-name for GTK theme lookup - icon.to_string() -} - -/// Check if welcome dialog should show (first run) -pub fn should_show_welcome() -> bool { - let flag = config::config_dir().join("welcome_shown.json"); - !flag.exists() -} - -pub fn mark_welcome_shown() { - let dir = config::config_dir(); - let _ = fs::create_dir_all(&dir); - let _ = fs::write(dir.join("welcome_shown.json"), "true"); -} - -#[cfg(test)] -mod tests { - use super::*; - - #[test] - fn shell_split_simple_tokens() { - assert_eq!(shell_split("a b c"), vec!["a", "b", "c"]); - } - - #[test] - fn shell_split_quoted_strings() { - assert_eq!( - shell_split(r#"cmd --opt="hello world" arg"#), - vec!["cmd", "--opt=hello world", "arg"] - ); - } - - #[test] - fn shell_split_single_quotes() { - assert_eq!( - shell_split("cmd 'one two' three"), - vec!["cmd", "one two", "three"] - ); - } - - #[test] - fn shell_split_empty_input() { - assert!(shell_split("").is_empty()); - } - - #[test] - fn shell_split_extra_spaces() { - assert_eq!(shell_split(" a b "), vec!["a", "b"]); - } - - #[test] - fn parse_exec_viewer_mode() { - let exec = r#"big-webapps-viewer --url="https://youtube.com" --name="YouTube" --icon="/path/icon.png" --app-id="yt""#; - let mut app = WebApp::default(); - parse_exec_line(exec, &mut app); - assert_eq!(app.app_mode, webapps_core::models::AppMode::App); - assert_eq!(app.browser, "__viewer__"); - assert_eq!(app.app_url, "https://youtube.com"); - assert_eq!(app.app_icon, "/path/icon.png"); - } - - #[test] - fn parse_exec_browser_mode() { - let exec = r#"big-webapps-exec filename="test.desktop" google-chrome --class="WebApp" --profile-directory=Profile1 --app="https://gmail.com""#; - let mut app = WebApp::default(); - parse_exec_line(exec, &mut app); - assert_eq!(app.app_mode, webapps_core::models::AppMode::Browser); - assert_eq!(app.browser, "google-chrome"); - assert_eq!(app.app_url, "https://gmail.com"); - assert_eq!(app.app_profile, "Profile1"); - assert_eq!(app.app_file, "test.desktop"); - } - - #[test] - fn parse_exec_unknown_prefix() { - let exec = "some-other-command --url=test"; - let mut app = WebApp::default(); - parse_exec_line(exec, &mut app); - // should not modify app - assert_eq!(app.app_url, ""); - assert_eq!(app.browser, ""); - } - - #[test] - fn parse_legacy_desktop_basic() { - let content = "[Desktop Entry]\nName=Test App\nIcon=test-icon\nCategories=Network;\nExec=big-webapps-viewer --url=\"https://example.com\"\n"; - let app = parse_legacy_desktop("test.desktop", content).unwrap(); - assert_eq!(app.app_name, "Test App"); - assert_eq!(app.app_icon, "test-icon"); - assert_eq!(app.app_categories, "Network;"); - assert_eq!(app.app_url, "https://example.com"); - assert_eq!(app.app_file, "test.desktop"); - } - - #[test] - fn parse_legacy_desktop_missing_name() { - let content = "[Desktop Entry]\nIcon=test-icon\nExec=big-webapps-viewer --url=\"https://example.com\"\n"; - // should return None — name is empty - let result = parse_legacy_desktop("test.desktop", content); - assert!(result.is_none() || result.unwrap().app_name.is_empty()); - } -} diff --git a/crates/webapps-manager/src/service/browser.rs b/crates/webapps-manager/src/service/browser.rs new file mode 100644 index 00000000..d374dc7e --- /dev/null +++ b/crates/webapps-manager/src/service/browser.rs @@ -0,0 +1,126 @@ +use std::path::Path; + +use webapps_core::models::{Browser, BrowserCollection}; + +pub fn detect_browsers() -> BrowserCollection { + // (browser_id, [candidate_paths]) — first existing path wins + let known_browsers: &[(&str, &[&str])] = &[ + ("firefox", &["/usr/bin/firefox"]), + ( + "firefox-developer-edition", + &["/usr/bin/firefox-developer-edition"], + ), + ("librewolf", &["/usr/bin/librewolf"]), + ("google-chrome-stable", &["/usr/bin/google-chrome-stable"]), + ("google-chrome-beta", &["/usr/bin/google-chrome-beta"]), + ("google-chrome-unstable", &["/usr/bin/google-chrome-unstable"]), + ("chromium", &["/usr/bin/chromium"]), + ( + "brave", + &[ + "/usr/bin/brave", + "/usr/bin/brave-browser", + "/usr/bin/brave-browser-stable", + ], + ), + ( + "brave-beta", + &["/usr/bin/brave-browser-beta", "/usr/bin/brave-beta"], + ), + ( + "brave-nightly", + &["/usr/bin/brave-browser-nightly", "/usr/bin/brave-nightly"], + ), + ("microsoft-edge-stable", &["/usr/bin/microsoft-edge-stable"]), + ("microsoft-edge-beta", &["/usr/bin/microsoft-edge-beta"]), + ("vivaldi-stable", &["/usr/bin/vivaldi-stable"]), + ("vivaldi-beta", &["/usr/bin/vivaldi-beta"]), + ("vivaldi-snapshot", &["/usr/bin/vivaldi-snapshot"]), + ("ungoogled-chromium", &["/usr/bin/ungoogled-chromium"]), + ]; + + let mut browsers: Vec = Vec::new(); + + for (id, paths) in known_browsers { + if paths.iter().any(|p| Path::new(p).exists()) { + browsers.push(Browser { + browser_id: id.to_string(), + is_default: false, + }); + } + } + + // detect flatpak browsers + if let Ok(output) = std::process::Command::new("flatpak") + .args(["list", "--app", "--columns=application"]) + .output() + { + let stdout = String::from_utf8_lossy(&output.stdout); + let flatpak_map = [ + ("org.mozilla.firefox", "flatpak-firefox"), + ("com.google.Chrome", "flatpak-google-chrome-stable"), + ("org.chromium.Chromium", "flatpak-chromium"), + ("com.brave.Browser", "flatpak-brave-browser"), + ("com.microsoft.Edge", "flatpak-microsoft-edge-stable"), + ("com.vivaldi.Vivaldi", "flatpak-vivaldi-stable"), + ("io.gitlab.librewolf-community", "flatpak-librewolf"), + ]; + for (flatpak_id, browser_id) in &flatpak_map { + if stdout.lines().any(|l| l.trim() == *flatpak_id) { + browsers.push(Browser { + browser_id: browser_id.to_string(), + is_default: false, + }); + } + } + } + + // detect system default + let default_id = detect_default_browser(); + + let mut col = BrowserCollection { + browsers, + default_id: None, + }; + if let Some(id) = default_id { + col.set_default(&id); + } + col +} + +fn detect_default_browser() -> Option { + let output = std::process::Command::new("xdg-settings") + .args(["get", "default-web-browser"]) + .output() + .ok()?; + let desktop_name = String::from_utf8_lossy(&output.stdout).trim().to_string(); + if desktop_name.is_empty() { + return None; + } + match_desktop_to_browser(&desktop_name) +} + +fn match_desktop_to_browser(desktop: &str) -> Option { + let d = desktop.to_lowercase(); + let mappings = [ + ("firefox", "firefox"), + ("firefox-developer", "firefox-developer-edition"), + ("librewolf", "librewolf"), + ("google-chrome-stable", "google-chrome-stable"), + ("google-chrome-beta", "google-chrome-beta"), + ("google-chrome-unstable", "google-chrome-unstable"), + ("chromium", "chromium"), + ("brave", "brave"), + ("microsoft-edge-stable", "microsoft-edge-stable"), + ("microsoft-edge-beta", "microsoft-edge-beta"), + ("vivaldi-stable", "vivaldi-stable"), + ("vivaldi-beta", "vivaldi-beta"), + ("vivaldi-snapshot", "vivaldi-snapshot"), + ]; + for (pattern, id) in &mappings { + if d.contains(pattern) { + return Some(id.to_string()); + } + } + None +} diff --git a/crates/webapps-manager/src/service/io.rs b/crates/webapps-manager/src/service/io.rs new file mode 100644 index 00000000..0bd663ab --- /dev/null +++ b/crates/webapps-manager/src/service/io.rs @@ -0,0 +1,130 @@ +use anyhow::{Context, Result}; +use std::fs; +use std::io::{Read, Write}; +use std::path::Path; + +use webapps_core::config; +use webapps_core::models::WebApp; + +use super::{create_webapp, generate_app_file, load_webapps}; + +/// Max size per extracted file from import zip → prevent decompression bombs +const MAX_EXTRACTED_FILE_BYTES: u64 = 50 * 1024 * 1024; // 50 MB + +pub fn export_webapps(zip_path: &Path) -> Result { + let col = load_webapps(); + if col.webapps.is_empty() { + return Ok("no_webapps".into()); + } + + let file = fs::File::create(zip_path).context("Create zip file")?; + let mut zip = zip::ZipWriter::new(file); + let options = zip::write::SimpleFileOptions::default() + .compression_method(zip::CompressionMethod::Deflated); + + // write manifest + let manifest = serde_json::to_string_pretty(&col.webapps)?; + zip.start_file("webapps.json", options)?; + zip.write_all(manifest.as_bytes())?; + + // copy icons + for app in &col.webapps { + if app.app_icon_url.is_empty() { + continue; + } + let icon_path = Path::new(&app.app_icon_url); + if icon_path.is_file() { + let fname = icon_path + .file_name() + .map(|n| n.to_string_lossy().to_string()) + .unwrap_or_default(); + if !fname.is_empty() { + zip.start_file(format!("icons/{fname}"), options)?; + let mut f = fs::File::open(icon_path)?; + let mut buf = Vec::new(); + f.read_to_end(&mut buf)?; + zip.write_all(&buf)?; + } + } + } + + zip.finish()?; + Ok("ok".into()) +} + +pub fn import_webapps(zip_path: &Path) -> Result<(usize, usize)> { + let file = fs::File::open(zip_path).context("Open zip file")?; + let mut archive = zip::ZipArchive::new(file)?; + + // read manifest + let manifest = { + let mut entry = archive.by_name("webapps.json")?; + let mut buf = String::new(); + entry.read_to_string(&mut buf)?; + buf + }; + let imported_apps: Vec = serde_json::from_str(&manifest)?; + + // extract icons + let icons_dir = config::data_dir().join("icons"); + fs::create_dir_all(&icons_dir)?; + let icons_canonical = icons_dir.canonicalize()?; + for i in 0..archive.len() { + let mut entry = archive.by_index(i)?; + let name = entry.name().to_string(); + if name.starts_with("icons/") { + let fname = name.strip_prefix("icons/").unwrap_or(&name); + // strict filename: must be non-empty, no path separators, no .. + if fname.is_empty() + || fname.contains('/') + || fname.contains('\\') + || fname.contains("..") + { + continue; + } + let dest = icons_dir.join(fname); + // verify dest stays within icons_dir + if let Ok(canonical) = dest.parent().map(|p| p.canonicalize()).transpose() { + if canonical.as_deref() != Some(icons_canonical.as_path()) { + continue; + } + } + let mut out = fs::File::create(&dest)?; + // cap extracted size → prevent decompression bombs + let copied = + std::io::copy(&mut entry.by_ref().take(MAX_EXTRACTED_FILE_BYTES), &mut out)?; + if copied >= MAX_EXTRACTED_FILE_BYTES { + log::warn!( + "Skipped oversized zip entry: {fname} (>{MAX_EXTRACTED_FILE_BYTES} bytes)" + ); + let _ = fs::remove_file(&dest); + } + } + } + + // import webapps, skip duplicates + let existing = load_webapps(); + let mut imported = 0usize; + let mut duplicates = 0usize; + + for app in imported_apps { + let is_dup = existing + .webapps + .iter() + .any(|e| e.app_name == app.app_name && e.app_url == app.app_url); + if is_dup { + duplicates += 1; + continue; + } + // generate new app_file + let mut new_app = app; + new_app.app_file = generate_app_file(&new_app.browser, &new_app.app_url); + if let Err(e) = create_webapp(&new_app) { + log::error!("Import webapp {}: {e}", new_app.app_name); + } else { + imported += 1; + } + } + + Ok((imported, duplicates)) +} diff --git a/crates/webapps-manager/src/service/migration.rs b/crates/webapps-manager/src/service/migration.rs new file mode 100644 index 00000000..84df4e7a --- /dev/null +++ b/crates/webapps-manager/src/service/migration.rs @@ -0,0 +1,255 @@ +use std::fs; + +use webapps_core::config; +use webapps_core::models::{WebApp, WebAppCollection}; + +use super::{save_webapps, webapps_json_path}; + +/// Migrate existing .desktop files from legacy big-webapps into webapps.json. +/// Scans ~/.local/share/applications/ for files matching pattern: +/// `{browser}-*.desktop` with `Exec=big-webapps-exec` or `Exec=big-webapps-viewer`. +/// Returns count of migrated apps. +pub fn migrate_legacy_desktops() -> usize { + let json_path = webapps_json_path(); + if json_path.exists() { + // already has data — skip migration + return 0; + } + + let apps_dir = config::applications_dir(); + let entries = match fs::read_dir(&apps_dir) { + Ok(e) => e, + Err(_) => return 0, + }; + + let mut webapps: Vec = Vec::new(); + + for entry in entries.flatten() { + let fname = entry.file_name().to_string_lossy().to_string(); + if !fname.ends_with(".desktop") { + continue; + } + + let content = match fs::read_to_string(entry.path()) { + Ok(c) => c, + Err(_) => continue, + }; + + // only import big-webapps desktop files + if !content.contains("big-webapps-exec") && !content.contains("big-webapps-viewer") { + continue; + } + + if let Some(app) = parse_legacy_desktop(&fname, &content) { + webapps.push(app); + } + } + + let count = webapps.len(); + if count > 0 { + let col = WebAppCollection { webapps }; + if let Err(e) = save_webapps(&col) { + log::error!("Save migrated webapps: {e}"); + return 0; + } + log::info!("Migrated {count} legacy webapps"); + } + + count +} + +/// Parse a legacy .desktop file into WebApp struct +fn parse_legacy_desktop(filename: &str, content: &str) -> Option { + let mut app = WebApp { + app_file: filename.to_string(), + ..Default::default() + }; + + for line in content.lines() { + let line = line.trim(); + // stop at Desktop Action sections — only parse [Desktop Entry] + if line.starts_with("[Desktop Action") + || (line.starts_with('[') && line != "[Desktop Entry]" && !line.starts_with("#")) + { + if !app.app_name.is_empty() { + break; + } + continue; + } + if let Some(val) = line.strip_prefix("Name=") { + app.app_name = val.to_string(); + } else if let Some(val) = line.strip_prefix("Icon=") { + app.app_icon = val.to_string(); + } else if let Some(val) = line.strip_prefix("Categories=") { + app.app_categories = val.to_string(); + } else if let Some(val) = line.strip_prefix("MimeType=") { + app.mime_types = val.to_string(); + } else if let Some(val) = line.strip_prefix("Comment=") { + app.comment = val.to_string(); + } else if let Some(val) = line.strip_prefix("Exec=") { + parse_exec_line(val, &mut app); + } + } + + // minimal validation + if app.app_name.is_empty() || app.app_url.is_empty() { + return None; + } + + Some(app) +} + +/// Extract browser, url, profile, mode from Exec= line +fn parse_exec_line(exec: &str, app: &mut WebApp) { + if exec.starts_with("big-webapps-viewer") { + app.app_mode = webapps_core::models::AppMode::App; + app.browser = "__viewer__".to_string(); + + // --url="..." --name="..." --icon="..." --app-id="..." + for part in shell_split(exec) { + if let Some(val) = part.strip_prefix("--url=") { + app.app_url = val.trim_matches('"').to_string(); + } else if let Some(val) = part.strip_prefix("--icon=") { + let icon = val.trim_matches('"'); + if !icon.is_empty() { + app.app_icon = icon.to_string(); + } + } + } + } else if exec.starts_with("big-webapps-exec") { + app.app_mode = webapps_core::models::AppMode::Browser; + + let parts = shell_split(exec); + // format: big-webapps-exec filename="..." browser --class="..." --profile-directory=X --app="URL" + for (i, part) in parts.iter().enumerate() { + if let Some(val) = part.strip_prefix("filename=") { + app.app_file = val.trim_matches('"').to_string(); + } else if let Some(val) = part.strip_prefix("--app=") { + app.app_url = val.trim_matches('"').to_string(); + } else if let Some(val) = part.strip_prefix("--profile-directory=") { + app.app_profile = val.trim_matches('"').to_string(); + } else if i == 2 && !part.starts_with('-') && !part.contains('=') { + // browser name is the 3rd token (index 2) + app.browser = part.to_string(); + } + } + } +} + +/// Simple tokenizer that respects quotes in Exec lines +fn shell_split(s: &str) -> Vec { + let mut tokens = Vec::new(); + let mut current = String::new(); + let mut in_quote = false; + let mut quote_char = ' '; + + for ch in s.chars() { + match ch { + '"' | '\'' if !in_quote => { + in_quote = true; + quote_char = ch; + } + c if c == quote_char && in_quote => { + in_quote = false; + } + ' ' if !in_quote => { + if !current.is_empty() { + tokens.push(std::mem::take(&mut current)); + } + } + _ => current.push(ch), + } + } + if !current.is_empty() { + tokens.push(current); + } + tokens +} + +#[cfg(test)] +mod tests { + use super::*; + + #[test] + fn shell_split_simple_tokens() { + assert_eq!(shell_split("a b c"), vec!["a", "b", "c"]); + } + + #[test] + fn shell_split_quoted_strings() { + assert_eq!( + shell_split(r#"cmd --opt="hello world" arg"#), + vec!["cmd", "--opt=hello world", "arg"] + ); + } + + #[test] + fn shell_split_single_quotes() { + assert_eq!( + shell_split("cmd 'one two' three"), + vec!["cmd", "one two", "three"] + ); + } + + #[test] + fn shell_split_empty_input() { + assert!(shell_split("").is_empty()); + } + + #[test] + fn shell_split_extra_spaces() { + assert_eq!(shell_split(" a b "), vec!["a", "b"]); + } + + #[test] + fn parse_exec_viewer_mode() { + let exec = r#"big-webapps-viewer --url="https://youtube.com" --name="YouTube" --icon="/path/icon.png" --app-id="yt""#; + let mut app = WebApp::default(); + parse_exec_line(exec, &mut app); + assert_eq!(app.app_mode, webapps_core::models::AppMode::App); + assert_eq!(app.browser, "__viewer__"); + assert_eq!(app.app_url, "https://youtube.com"); + assert_eq!(app.app_icon, "/path/icon.png"); + } + + #[test] + fn parse_exec_browser_mode() { + let exec = r#"big-webapps-exec filename="test.desktop" google-chrome --class="WebApp" --profile-directory=Profile1 --app="https://gmail.com""#; + let mut app = WebApp::default(); + parse_exec_line(exec, &mut app); + assert_eq!(app.app_mode, webapps_core::models::AppMode::Browser); + assert_eq!(app.browser, "google-chrome"); + assert_eq!(app.app_url, "https://gmail.com"); + assert_eq!(app.app_profile, "Profile1"); + assert_eq!(app.app_file, "test.desktop"); + } + + #[test] + fn parse_exec_unknown_prefix() { + let exec = "some-other-command --url=test"; + let mut app = WebApp::default(); + parse_exec_line(exec, &mut app); + // should not modify app + assert_eq!(app.app_url, ""); + assert_eq!(app.browser, ""); + } + + #[test] + fn parse_legacy_desktop_basic() { + let content = "[Desktop Entry]\nName=Test App\nIcon=test-icon\nCategories=Network;\nExec=big-webapps-viewer --url=\"https://example.com\"\n"; + let app = parse_legacy_desktop("test.desktop", content).unwrap(); + assert_eq!(app.app_name, "Test App"); + assert_eq!(app.app_icon, "test-icon"); + assert_eq!(app.app_categories, "Network;"); + assert_eq!(app.app_url, "https://example.com"); + assert_eq!(app.app_file, "test.desktop"); + } + + #[test] + fn parse_legacy_desktop_missing_name() { + let content = "[Desktop Entry]\nIcon=test-icon\nExec=big-webapps-viewer --url=\"https://example.com\"\n"; + // should return None — name is empty + let result = parse_legacy_desktop("test.desktop", content); + assert!(result.is_none() || result.unwrap().app_name.is_empty()); + } +} diff --git a/crates/webapps-manager/src/service/mod.rs b/crates/webapps-manager/src/service/mod.rs new file mode 100644 index 00000000..dce1d215 --- /dev/null +++ b/crates/webapps-manager/src/service/mod.rs @@ -0,0 +1,249 @@ +mod browser; +mod io; +mod migration; + +pub use browser::detect_browsers; +pub use io::{export_webapps, import_webapps}; +pub use migration::migrate_legacy_desktops; + +use anyhow::Result; +use std::fs; +use std::path::{Path, PathBuf}; + +use webapps_core::config; +use webapps_core::desktop; +use webapps_core::models::{WebApp, WebAppCollection}; + +/// Persistent storage file for webapps list +fn webapps_json_path() -> PathBuf { + config::data_dir().join("webapps.json") +} + +// -- webapp CRUD -- + +pub fn load_webapps() -> WebAppCollection { + let path = webapps_json_path(); + if !path.exists() { + return WebAppCollection::default(); + } + match fs::read_to_string(&path) { + Ok(data) => match serde_json::from_str::>(&data) { + Ok(vals) => WebAppCollection::load_from_json(&vals), + Err(e) => { + log::error!("Parse webapps.json: {e}"); + WebAppCollection::default() + } + }, + Err(e) => { + log::error!("Read webapps.json: {e}"); + WebAppCollection::default() + } + } +} + +pub fn save_webapps(collection: &WebAppCollection) -> Result<()> { + let dir = config::data_dir(); + fs::create_dir_all(&dir)?; + let json = serde_json::to_string_pretty(&collection.webapps)?; + // atomic write: tmp file + rename → prevent corruption on crash + let path = webapps_json_path(); + let tmp = path.with_extension("json.tmp"); + fs::write(&tmp, &json)?; + fs::rename(&tmp, &path)?; + Ok(()) +} + +pub fn create_webapp(webapp: &WebApp) -> Result<()> { + let mut app = webapp.clone(); + // ensure app_file is populated → needed for update/remove by file + if app.app_file.is_empty() { + app.app_file = format!( + "biglinux-webapp-{}.desktop", + desktop::desktop_file_id(&app.app_url) + ); + } + let mut col = load_webapps(); + col.add(app.clone()); + save_webapps(&col)?; + desktop::install_desktop_entry(&app)?; + Ok(()) +} + +pub fn update_webapp(webapp: &WebApp) -> Result<()> { + let mut col = load_webapps(); + col.remove_by_file(&webapp.app_file); + col.add(webapp.clone()); + save_webapps(&col)?; + desktop::install_desktop_entry(webapp)?; + Ok(()) +} + +pub fn delete_webapp(webapp: &WebApp, delete_profile: bool) -> Result<()> { + let mut col = load_webapps(); + col.remove_by_file(&webapp.app_file); + save_webapps(&col)?; + desktop::remove_desktop_entry(webapp)?; + + if delete_profile { + cleanup_profile(webapp); + } + // cleanup viewer data if app mode + if webapp.app_mode == webapps_core::models::AppMode::App { + cleanup_viewer_data(&webapp.app_url); + } + Ok(()) +} + +pub fn delete_all_webapps() -> Result<()> { + let col = load_webapps(); + for app in &col.webapps { + let _ = desktop::remove_desktop_entry(app); + if app.app_mode == webapps_core::models::AppMode::App { + cleanup_viewer_data(&app.app_url); + } + } + save_webapps(&WebAppCollection::default())?; + Ok(()) +} + +fn cleanup_viewer_data(url: &str) { + let app_id = desktop::desktop_file_id(url); + // geometry config + let geom = config::config_dir().join(format!("{app_id}.json")); + let _ = fs::remove_file(geom); + // session data + let data = config::data_dir().join(&app_id); + let _ = fs::remove_dir_all(data); + // cache + let cache = config::cache_dir().join(&app_id); + let _ = fs::remove_dir_all(cache); +} + +fn cleanup_profile(webapp: &WebApp) { + let profile_dir = config::profiles_dir() + .join(&webapp.browser) + .join(&webapp.app_profile); + if profile_dir.exists() { + let _ = fs::remove_dir_all(&profile_dir); + log::info!("Removed profile: {}", profile_dir.display()); + } +} + +/// Check if any other webapp shares same browser+profile +pub fn profile_shared(webapp: &WebApp) -> bool { + let col = load_webapps(); + col.webapps.iter().any(|a| { + a.app_file != webapp.app_file + && a.browser == webapp.browser + && a.app_profile == webapp.app_profile + }) +} + +pub fn generate_app_file(browser: &str, url: &str) -> String { + // short browser name — matches original big-webapps script + let short = if browser == "__viewer__" { + "viewer" + } else { + let b = browser.to_lowercase(); + if b.contains("chrom") { + "chrome" + } else if b.contains("brave") { + "brave" + } else if b.contains("edge") { + "msedge" + } else if b.contains("vivaldi") { + "vivaldi" + } else { + browser + } + }; + + // url → path component: strip scheme, strip query, / → __ + let cleaned = url.replace("https://", "").replace("http://", ""); + let cleaned = cleaned.split('?').next().unwrap_or(&cleaned); + let cleaned = cleaned.replace('/', "__"); + + // keep first __ occurrence, replace subsequent with _ + let mut filename = format!("{short}-{cleaned}-Default.desktop"); + if !filename.contains("__") { + filename = filename.replace("-Default", "__-Default"); + } + + // dedup: check existing files + let apps_dir = webapps_core::config::applications_dir(); + if apps_dir.join(&filename).exists() { + let base = filename.clone(); + let mut i = 2; + loop { + filename = base.replace(".desktop", &format!("-BigWebApp{i}.desktop")); + if !apps_dir.join(&filename).exists() { + break; + } + i += 1; + } + } + + filename +} + +// -- icon resolution -- + +/// Resolve icon to display path. Checks: absolute path → user icons → hicolor → system → theme name +pub fn resolve_icon_path(icon: &str) -> String { + if icon.is_empty() { + return "webapp-manager-generic".into(); + } + // absolute path + let p = Path::new(icon); + if p.is_absolute() && p.exists() { + return icon.to_string(); + } + // user-local icons (flat) + let local_icons = dirs::data_dir() + .unwrap_or_else(|| PathBuf::from("/tmp")) + .join("icons"); + for ext in &["png", "svg", "xpm"] { + let candidate = local_icons.join(format!("{icon}.{ext}")); + if candidate.exists() { + return candidate.to_string_lossy().to_string(); + } + } + // user-local hicolor — return icon name so GTK theme renders SVG at correct size + let hicolor_user = local_icons.join("hicolor/scalable/apps"); + for ext in &["svg", "png"] { + let candidate = hicolor_user.join(format!("{icon}.{ext}")); + if candidate.exists() { + return icon.to_string(); + } + } + // system hicolor — return icon name for GTK theme lookup + let hicolor_sys = PathBuf::from("/usr/share/icons/hicolor/scalable/apps"); + for ext in &["svg", "png"] { + let candidate = hicolor_sys.join(format!("{icon}.{ext}")); + if candidate.exists() { + return icon.to_string(); + } + } + // system icons dir (biglinux-specific) + let sys = config::system_icons_dir(); + for ext in &["svg", "png"] { + let candidate = sys.join(format!("{icon}.{ext}")); + if candidate.exists() { + return candidate.to_string_lossy().to_string(); + } + } + // fallback: return as icon-name for GTK theme lookup + icon.to_string() +} + +/// Check if welcome dialog should show (first run) +pub fn should_show_welcome() -> bool { + let flag = config::config_dir().join("welcome_shown.json"); + !flag.exists() +} + +pub fn mark_welcome_shown() { + let dir = config::config_dir(); + let _ = fs::create_dir_all(&dir); + let _ = fs::write(dir.join("welcome_shown.json"), "true"); +} diff --git a/crates/webapps-manager/src/webapp_dialog.rs b/crates/webapps-manager/src/webapp_dialog.rs index 6693ea8f..154fe180 100644 --- a/crates/webapps-manager/src/webapp_dialog.rs +++ b/crates/webapps-manager/src/webapp_dialog.rs @@ -5,7 +5,7 @@ use adw::prelude::*; use gettextrs::gettext; use gtk::gio; use gtk::glib; -use std::cell::RefCell; +use std::cell::{Cell, RefCell}; use std::rc::Rc; use webapps_core::models::{AppMode, BrowserCollection, WebApp}; use webapps_core::templates::build_default_registry; @@ -232,6 +232,21 @@ pub fn show( form.append(&group_website); form.append(&group_appearance); form.append(&favicon_flow); + + // collapse behavior for new webapps → progressive disclosure + if is_new { + group_behavior.set_visible(false); + let advanced_btn = gtk::Button::with_label(&gettext("Advanced Settings…")); + advanced_btn.add_css_class("flat"); + advanced_btn.set_halign(gtk::Align::Start); + advanced_btn.set_margin_top(4); + let gb = group_behavior.clone(); + advanced_btn.connect_clicked(move |btn| { + gb.set_visible(true); + btn.set_visible(false); + }); + form.append(&advanced_btn); + } form.append(&group_behavior); // -- buttons -- @@ -255,6 +270,9 @@ pub fn show( // -- wire up signals -- + // skip auto-detect when template populates URL (already has name+icon) + let skip_auto_detect: Rc> = Rc::new(Cell::new(false)); + // Template button → populate URL, name, icon, category after selection if let Some(ref tb) = tmpl_btn { let wc = webapp_cell.clone(); @@ -267,6 +285,7 @@ pub fn show( let mr = mode_row.clone(); let br_row = browser_row.clone(); let pr_row = profile_row.clone(); + let skip_flag = skip_auto_detect.clone(); tb.connect_clicked(move |_| { let wc2 = wc.clone(); let ur2 = ur.clone(); @@ -277,6 +296,7 @@ pub fn show( let mr2 = mr.clone(); let br2 = br_row.clone(); let pr2 = pr_row.clone(); + let skip2 = skip_flag.clone(); template_gallery::show(&w, move |template_id| { log::info!("Template callback received: {}", &template_id); let reg = build_default_registry(); @@ -294,6 +314,8 @@ pub fn show( data.main_category().to_string(), ) }; + // skip auto-detect → template already has name+icon + skip2.set(true); ur2.set_text(&url); nr2.set_text(&name); crate::webapp_row::load_icon(&ip2, &icon); @@ -326,12 +348,17 @@ pub fn show( let wc = webapp_cell.clone(); let db_handle = debounce_handle.clone(); let detect_btn_ref = detect_btn.clone(); + let skip_flag = skip_auto_detect.clone(); url_row.connect_changed(move |row| { wc.borrow_mut().app_url = row.text().to_string(); // cancel previous debounce if let Some(id) = db_handle.borrow_mut().take() { id.remove(); } + // skip if template just set the URL + if skip_flag.replace(false) { + return; + } // schedule auto-detect after 800ms idle let btn = detect_btn_ref.clone(); let handle = db_handle.clone(); @@ -526,20 +553,22 @@ pub fn show( } } }); + }); + } - // favicon picker selection - let wcc = wc.clone(); - let ipc = ip.clone(); - ff.connect_child_activated(move |_, child| { - if let Some(img) = child.child().and_then(|c| c.downcast::().ok()) { - if let Some(file) = img.file() { - let path = file.to_string(); - ipc.set_from_file(Some(&*path)); - wcc.borrow_mut().app_icon = path.clone(); - wcc.borrow_mut().app_icon_url = path; - } + // favicon picker selection — wired once, ≠ inside detect handler + { + let wc = webapp_cell.clone(); + let ip = icon_preview.clone(); + favicon_flow.connect_child_activated(move |_, child| { + if let Some(img) = child.child().and_then(|c| c.downcast::().ok()) { + if let Some(file) = img.file() { + let path = file.to_string(); + ip.set_from_file(Some(&*path)); + wc.borrow_mut().app_icon = path.clone(); + wc.borrow_mut().app_icon_url = path; } - }); + } }); } @@ -589,11 +618,26 @@ pub fn show( { let wc = webapp_cell.clone(); let w = win.clone(); + let ur = url_row.clone(); + let nr = name_row.clone(); save_btn.connect_clicked(move |_| { let mut app = wc.borrow().clone(); - // validate - if app.app_name.trim().is_empty() || app.app_url.trim().is_empty() { + // clear previous error states + ur.remove_css_class("error"); + nr.remove_css_class("error"); + + // validate name + if app.app_name.trim().is_empty() { + nr.add_css_class("error"); + nr.grab_focus(); + return; + } + + // validate url + if app.app_url.trim().is_empty() { + ur.add_css_class("error"); + ur.grab_focus(); return; } @@ -610,6 +654,8 @@ pub fn show( // validate URL format if url::Url::parse(&app.app_url).is_err() { + ur.add_css_class("error"); + ur.grab_focus(); return; } @@ -620,19 +666,31 @@ pub fn show( }; match &result { - Ok(()) => log::info!( - "Saved webapp '{}' mode={:?}", - app.app_name, - app.app_mode - ), - Err(e) => log::error!("Save webapp failed: {e}"), + Ok(()) => { + log::info!( + "Saved webapp '{}' mode={:?}", + app.app_name, + app.app_mode + ); + w.close(); + on_done(DialogResult { + saved: true, + webapp: app, + }); + } + Err(e) => { + log::error!("Save webapp failed: {e}"); + // show error inline via banner-like label + let banner = adw::Banner::new(&gettext("Failed to save webapp")); + banner.set_revealed(true); + if let Some(content) = w.content() { + if let Ok(bx) = content.downcast::() { + // insert after headerbar (index 1) + bx.insert_child_after(&banner, bx.first_child().as_ref()); + } + } + } } - - w.close(); - on_done(DialogResult { - saved: result.is_ok(), - webapp: app, - }); }); } @@ -651,6 +709,16 @@ pub fn show( } win.add_controller(esc); + // cancel debounce timer on window close → prevent firing on destroyed widgets + { + let db = debounce_handle.clone(); + win.connect_destroy(move |_| { + if let Some(id) = db.borrow_mut().take() { + id.remove(); + } + }); + } + win.present(); // focus URL if new, name if edit diff --git a/crates/webapps-manager/src/window.rs b/crates/webapps-manager/src/window.rs index e05507bb..e59678cb 100644 --- a/crates/webapps-manager/src/window.rs +++ b/crates/webapps-manager/src/window.rs @@ -239,20 +239,37 @@ pub fn build(app: &adw::Application) { move |result: Result| { if let Ok(file) = result { if let Some(path) = file.path() { - match service::import_webapps(&path) { - Ok((imported, dups)) => { - refresh_state(&stx); - populate_list(&crx, &stx, &brx, &wrx, &trx, &srx); - let msg = - gettext("Imported {imported}, skipped {dups} duplicates") - .replace("{imported}", &imported.to_string()) - .replace("{dups}", &dups.to_string()); - show_toast(&trx, &msg); - } - Err(e) => { - show_toast(&trx, &format!("{}: {e}", gettext("Import failed"))); + // run import on background thread → ≠ block UI + let (tx, rx) = std::sync::mpsc::channel(); + std::thread::spawn(move || { + tx.send(service::import_webapps(&path)).ok(); + }); + let stx2 = stx.clone(); + let crx2 = crx.clone(); + let brx2 = brx.clone(); + let wrx2 = wrx.clone(); + let trx2 = trx.clone(); + let srx2 = srx.clone(); + glib::timeout_add_local(std::time::Duration::from_millis(100), move || { + match rx.try_recv() { + Ok(Ok((imported, dups))) => { + refresh_state(&stx2); + populate_list(&crx2, &stx2, &brx2, &wrx2, &trx2, &srx2); + let msg = + gettext("Imported {imported}, skipped {dups} duplicates") + .replace("{imported}", &imported.to_string()) + .replace("{dups}", &dups.to_string()); + show_toast(&trx2, &msg); + glib::ControlFlow::Break + } + Ok(Err(e)) => { + show_toast(&trx2, &format!("{}: {e}", gettext("Import failed"))); + glib::ControlFlow::Break + } + Err(std::sync::mpsc::TryRecvError::Empty) => glib::ControlFlow::Continue, + Err(std::sync::mpsc::TryRecvError::Disconnected) => glib::ControlFlow::Break, } - } + }); } } }, @@ -275,19 +292,31 @@ pub fn build(app: &adw::Application) { dialog.save(Some(&*w), gio::Cancellable::NONE, move |result| { if let Ok(file) = result { if let Some(path) = file.path() { - match service::export_webapps(&path) { - Ok(status) => { - let msg = if status == "no_webapps" { - gettext("No WebApps") - } else { - gettext("WebApps exported successfully") - }; - show_toast(&trx, &msg); - } - Err(e) => { - show_toast(&trx, &format!("{}: {e}", gettext("Export failed"))) + // run export on background thread → ≠ block UI + let (tx, rx) = std::sync::mpsc::channel(); + std::thread::spawn(move || { + tx.send(service::export_webapps(&path)).ok(); + }); + let trx2 = trx.clone(); + glib::timeout_add_local(std::time::Duration::from_millis(100), move || { + match rx.try_recv() { + Ok(Ok(status)) => { + let msg = if status == "no_webapps" { + gettext("No WebApps") + } else { + gettext("WebApps exported successfully") + }; + show_toast(&trx2, &msg); + glib::ControlFlow::Break + } + Ok(Err(e)) => { + show_toast(&trx2, &format!("{}: {e}", gettext("Export failed"))); + glib::ControlFlow::Break + } + Err(std::sync::mpsc::TryRecvError::Empty) => glib::ControlFlow::Continue, + Err(std::sync::mpsc::TryRecvError::Disconnected) => glib::ControlFlow::Break, } - } + }); } } }); diff --git a/crates/webapps-viewer/src/window.rs b/crates/webapps-viewer/src/window.rs index e4c71980..f80bd0d2 100644 --- a/crates/webapps-viewer/src/window.rs +++ b/crates/webapps-viewer/src/window.rs @@ -1,5 +1,6 @@ use std::cell::Cell; -use std::path::PathBuf; +use std::collections::HashMap; +use std::path::{Path, PathBuf}; use std::rc::Rc; #[allow(unused_imports)] @@ -313,13 +314,47 @@ pub fn build( )); // --- permission requests --- - // auto-grant all → webapp UX expectation; webapps are user-trusted apps - // TODO: consider per-webapp permission preferences for untrusted sites - webview.connect_permission_request(|_wv, request| { - log::info!("Permission auto-granted: {:?}", request.type_()); - request.allow(); - true - }); + // sensitive perms (camera/mic/geolocation) → prompt + remember + // other perms → auto-grant (webapp UX expectation) + let perm_path = data_dir.join("permissions.json"); + webview.connect_permission_request(clone!( + #[weak] + window, + #[upgrade_or] + false, + move |_wv, request| { + match sensitive_perm_key(request) { + None => { + // non-sensitive → auto-grant + request.allow(); + } + Some(perm_key) => { + let stored = load_permissions(&perm_path); + match stored.get(perm_key) { + Some(true) => request.allow(), + Some(false) => request.deny(), + None => { + // first time → prompt user + let req = request.clone(); + let pp = perm_path.clone(); + let pk = perm_key.to_string(); + prompt_permission(&window, perm_key, move |granted| { + if granted { + req.allow(); + } else { + req.deny(); + } + let mut perms = load_permissions(&pp); + perms.insert(pk, granted); + save_permissions(&pp, &perms); + }); + } + } + } + } + true + } + )); // --- new window requests → open in same view --- webview.connect_create(|wv, action| { @@ -418,34 +453,29 @@ fn build_menu_button() -> gtk::MenuButton { /// Custom context menu — add "Open in Browser" action for links fn setup_context_menu(webview: &webkit::WebView) { - webview.connect_context_menu(|wv, menu, hit| { - // add "Open in Browser" for links + // create action group once → reuse across context menus, ≠ leak per right-click + let ctx_group = gio::SimpleActionGroup::new(); + let action = gio::SimpleAction::new("open-link-browser", Some(glib::VariantTy::STRING)); + action.connect_activate(|_, param| { + if let Some(uri) = param.and_then(|p| p.str()) { + let _ = gio::AppInfo::launch_default_for_uri(uri, gio::AppLaunchContext::NONE); + } + }); + ctx_group.add_action(&action); + webview.insert_action_group("ctx", Some(&ctx_group)); + + let action_ref = action; + webview.connect_context_menu(move |_wv, menu, hit| { if let Some(uri) = hit.link_uri() { - let uri_str = uri.to_string(); - // add separator + custom item menu.append(&webkit::ContextMenuItem::new_separator()); - - let action = gio::SimpleAction::new("open-link-browser", None); - let u = uri_str.clone(); - action.connect_activate(move |_, _| { - let _ = gio::AppInfo::launch_default_for_uri(&u, gio::AppLaunchContext::NONE); - }); - wv.insert_action_group( - "ctx", - Some(&{ - let group = gio::SimpleActionGroup::new(); - group.add_action(&action); - group - }), - ); + let target = uri.to_variant(); let item = webkit::ContextMenuItem::from_gaction( - &action, + &action_ref, &gettext("Open Link in Browser"), - None, + Some(&target), ); menu.append(&item); } - false }); } @@ -750,10 +780,17 @@ fn save_geometry(window: &adw::ApplicationWindow, config_path: &PathBuf) { return; } - let (w, h) = window.default_size(); + // use actual allocation → default_size() only returns initial set value + let (w, h) = if window.is_maximized() { + // when maximized, fall back to default_size (last unmaximized value) + let (dw, dh) = window.default_size(); + (if dw > 0 { dw } else { 1024 }, if dh > 0 { dh } else { 720 }) + } else { + (window.width().max(200), window.height().max(200)) + }; let geo = serde_json::json!({ - "width": if w > 0 { w } else { 1024 }, - "height": if h > 0 { h } else { 720 }, + "width": w, + "height": h, "maximized": window.is_maximized(), }); @@ -764,3 +801,81 @@ fn save_geometry(window: &adw::ApplicationWindow, config_path: &PathBuf) { log::error!("Failed to save geometry: {e}"); } } + +// --- permission management --- + +/// Return permission key for sensitive requests that need user prompt. +/// Returns None for non-sensitive perms (auto-grant). +fn sensitive_perm_key(request: &webkit::PermissionRequest) -> Option<&'static str> { + if request.is::() { + let umr = request.downcast_ref::().unwrap(); + if webkit6::functions::user_media_permission_is_for_video_device(umr) { + Some("camera") + } else { + Some("microphone") + } + } else if request.is::() { + Some("geolocation") + } else { + None + } +} + +fn load_permissions(path: &Path) -> HashMap { + std::fs::read_to_string(path) + .ok() + .and_then(|s| serde_json::from_str(&s).ok()) + .unwrap_or_default() +} + +fn save_permissions(path: &Path, perms: &HashMap) { + if let Ok(data) = serde_json::to_string_pretty(perms) { + std::fs::write(path, data).ok(); + } +} + +/// Show permission prompt dialog, call `on_result` with user decision +fn prompt_permission( + window: &adw::ApplicationWindow, + perm_key: &str, + on_result: F, +) { + let (title, body) = match perm_key { + "camera" => ( + gettext("Camera Access"), + gettext("This webapp wants to use your camera. Allow?"), + ), + "microphone" => ( + gettext("Microphone Access"), + gettext("This webapp wants to use your microphone. Allow?"), + ), + "geolocation" => ( + gettext("Location Access"), + gettext("This webapp wants to access your location. Allow?"), + ), + _ => ( + gettext("Permission Request"), + gettext("This webapp is requesting a special permission. Allow?"), + ), + }; + + let dialog = adw::AlertDialog::builder() + .heading(title) + .body(body) + .build(); + dialog.add_response("deny", &gettext("Deny")); + dialog.add_response("allow", &gettext("Allow")); + dialog.set_response_appearance("deny", adw::ResponseAppearance::Destructive); + dialog.set_response_appearance("allow", adw::ResponseAppearance::Suggested); + dialog.set_default_response(Some("deny")); + + // wrap FnOnce → Fn(connect_response requires Fn), only fire once + let on_result = std::cell::RefCell::new(Some(on_result)); + dialog.connect_response(None, move |_dlg, response| { + if let Some(f) = on_result.borrow_mut().take() { + f(response == "allow"); + } + }); + + dialog.present(Some(window)); +} From ac1879d794cb9f7834f022f9fe903b445877dfd9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tales=20A=2E=20Mendon=C3=A7a?= Date: Sat, 18 Apr 2026 22:50:03 -0300 Subject: [PATCH 13/15] =?UTF-8?q?=F0=9F=90=9B=20fix:=20fix:=20category=20+?= =?UTF-8?q?=20Chrome=20session=20+=20desktop=20spec=20compliance?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Manager .desktop: Categories=GTK;Utility → Categories=GTK;Webapps (appears in Webapps folder instead of Utilities) - big-webapps-exec: Default/Browser profile → use native Chrome --profile-directory=Default (keeps user logins/cookies); custom profiles → isolated --user-data-dir (separate session) - desktop.rs: ensure trailing semicolon in Categories= field (freedesktop spec compliance, required for GNOME app-folder matching) fix: align app-folder category filter with desktop files - categories=['WebApps'] → categories=['Webapps'] (matches Categories=Webapps; in generated .desktop files) --- biglinux-webapps/usr/bin/big-webapps-exec | 22 ++++++++++++++----- .../br.com.biglinux.webapps.desktop | 2 +- crates/webapps-core/src/desktop.rs | 9 +++++++- 3 files changed, 26 insertions(+), 7 deletions(-) diff --git a/biglinux-webapps/usr/bin/big-webapps-exec b/biglinux-webapps/usr/bin/big-webapps-exec index ec4986da..671ef5c4 100755 --- a/biglinux-webapps/usr/bin/big-webapps-exec +++ b/biglinux-webapps/usr/bin/big-webapps-exec @@ -57,8 +57,6 @@ case $browser in esac -mkdir -p "$HOME/.bigwebapps/$browser" - # Permission for flatpak browser if [[ $browser =~ flatpak ]]; then flatpak override --user --filesystem="$HOME/.bigwebapps/$browser" "${browser_exec[2]}" @@ -79,6 +77,20 @@ if [[ $browser =~ (firefox|librewolf|flatpak-firefox) ]]; then fi +# Build browser launch args based on profile type +# Default/Browser → use native Chrome profile (keeps user logins/cookies) +# Custom profile → use isolated --user-data-dir (separate session) +build_browser_args() { + if [[ $profile == "Default" || $profile == "Browser" ]]; then + browser_args=(--no-default-browser-check --profile-directory=Default --app="$url") + else + mkdir -p "$HOME/.bigwebapps/$browser/$profile" + browser_args=(--no-default-browser-check --user-data-dir="$HOME/.bigwebapps/$browser/$profile" --app="$url") + fi +} + +build_browser_args + # If the big-webapp-version is set and using wayland, we change desktop file temporarily if grep -q '\-BigWebApp' <<< "$filename" && [[ $XDG_SESSION_TYPE == 'wayland' ]]; then filename_orig="$HOME/.local/share/applications/${filename//-BigWebApp[0-9]*/}.desktop" @@ -101,14 +113,14 @@ if grep -q '\-BigWebApp' <<< "$filename" && [[ $XDG_SESSION_TYPE == 'wayland' ]] cp "$filename" "$filename_orig" # Wait to system detect updated icon sleep 2 - "${browser_exec[@]}" --no-default-browser-check --user-data-dir="$HOME/.bigwebapps/$browser/$profile" --app="$url" & + "${browser_exec[@]}" "${browser_args[@]}" & sleep 2 mv -f "$filename_orig_bkp" "$filename_orig" flock -u 9 else # another instance holds lock → just launch without icon swap - "${browser_exec[@]}" --no-default-browser-check --user-data-dir="$HOME/.bigwebapps/$browser/$profile" --app="$url" & + "${browser_exec[@]}" "${browser_args[@]}" & fi rm -f "$lockfile" else @@ -120,5 +132,5 @@ else mv -f "$filename_bkp" "$filename" fi - "${browser_exec[@]}" --no-default-browser-check --user-data-dir="$HOME/.bigwebapps/$browser/$profile" --app="$url" & + "${browser_exec[@]}" "${browser_args[@]}" & fi diff --git a/biglinux-webapps/usr/share/applications/br.com.biglinux.webapps.desktop b/biglinux-webapps/usr/share/applications/br.com.biglinux.webapps.desktop index e39e649b..b6da7862 100644 --- a/biglinux-webapps/usr/share/applications/br.com.biglinux.webapps.desktop +++ b/biglinux-webapps/usr/share/applications/br.com.biglinux.webapps.desktop @@ -31,6 +31,6 @@ Name[zh]=添加和删除 Web 应用 Icon=big-webapps Exec=big-webapps-gui StartupWMClass=br.com.biglinux.webapps -Categories=GTK;Utility; +Categories=GTK;Webapps; Terminal=false StartupNotify=true diff --git a/crates/webapps-core/src/desktop.rs b/crates/webapps-core/src/desktop.rs index d095ad12..b80a797d 100644 --- a/crates/webapps-core/src/desktop.rs +++ b/crates/webapps-core/src/desktop.rs @@ -40,7 +40,14 @@ pub fn generate_desktop_entry(webapp: &WebApp) -> String { format!("Exec={}", exec), format!("Icon={}", webapp.app_icon), format!("StartupWMClass={}", wm_class), - format!("Categories={}", webapp.app_categories), + format!( + "Categories={}", + if webapp.app_categories.ends_with(';') { + webapp.app_categories.clone() + } else { + format!("{};", webapp.app_categories) + } + ), ]; if !webapp.mime_types.is_empty() { From 42d2a17c0fe02095e72528173ce26596b90764c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tales=20A=2E=20Mendon=C3=A7a?= Date: Sat, 18 Apr 2026 23:03:47 -0300 Subject: [PATCH 14/15] =?UTF-8?q?=F0=9F=90=9B=20fix:=20fix:=20category,=20?= =?UTF-8?q?Chrome=20session,=20GNOME=20app-folder=20integration?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Manager .desktop: Categories=GTK;Utility → Categories=GTK;Webapps - big-webapps-exec: Default/Browser profile → native Chrome --profile-directory=Default (keeps user logins/cookies); custom profiles → isolated --user-data-dir - desktop.rs: ensure trailing semicolon in Categories= field - desktop.rs: reset GNOME app-picker-layout on desktop file change (GNOME Shell caches app positions, preventing category changes from moving apps to correct folder) --- crates/webapps-core/src/desktop.rs | 12 + crates/webapps-manager/src/service.rs | 735 ++++++++++++++++++++++++++ 2 files changed, 747 insertions(+) create mode 100644 crates/webapps-manager/src/service.rs diff --git a/crates/webapps-core/src/desktop.rs b/crates/webapps-core/src/desktop.rs index b80a797d..0631f6cb 100644 --- a/crates/webapps-core/src/desktop.rs +++ b/crates/webapps-core/src/desktop.rs @@ -197,6 +197,18 @@ fn refresh_desktop_database() { let _ = std::process::Command::new("update-desktop-database") .arg(&apps_dir) .spawn(); + + // GNOME Shell caches app positions in app-picker-layout. + // Reset it so apps move to correct folder after category change. + if std::env::var("XDG_CURRENT_DESKTOP") + .unwrap_or_default() + .to_lowercase() + .contains("gnome") + { + let _ = std::process::Command::new("dconf") + .args(["reset", "/org/gnome/shell/app-picker-layout"]) + .spawn(); + } } /// Strip chars that could break desktop file Exec or shell parsing diff --git a/crates/webapps-manager/src/service.rs b/crates/webapps-manager/src/service.rs new file mode 100644 index 00000000..d6da1dcf --- /dev/null +++ b/crates/webapps-manager/src/service.rs @@ -0,0 +1,735 @@ +use anyhow::{Context, Result}; +use std::fs; +use std::io::{Read, Write}; +use std::path::{Path, PathBuf}; +use webapps_core::config; +use webapps_core::desktop; +use webapps_core::models::{Browser, BrowserCollection, WebApp, WebAppCollection}; + +/// Max size per extracted file from import zip → prevent decompression bombs +const MAX_EXTRACTED_FILE_BYTES: u64 = 50 * 1024 * 1024; // 50 MB + +/// Persistent storage file for webapps list +fn webapps_json_path() -> PathBuf { + config::data_dir().join("webapps.json") +} + +// -- webapp CRUD -- + +pub fn load_webapps() -> WebAppCollection { + let path = webapps_json_path(); + if !path.exists() { + return WebAppCollection::default(); + } + match fs::read_to_string(&path) { + Ok(data) => match serde_json::from_str::>(&data) { + Ok(vals) => WebAppCollection::load_from_json(&vals), + Err(e) => { + log::error!("Parse webapps.json: {e}"); + WebAppCollection::default() + } + }, + Err(e) => { + log::error!("Read webapps.json: {e}"); + WebAppCollection::default() + } + } +} + +pub fn save_webapps(collection: &WebAppCollection) -> Result<()> { + let dir = config::data_dir(); + fs::create_dir_all(&dir)?; + let json = serde_json::to_string_pretty(&collection.webapps)?; + // atomic write: tmp file + rename → prevent corruption on crash + let path = webapps_json_path(); + let tmp = path.with_extension("json.tmp"); + fs::write(&tmp, &json)?; + fs::rename(&tmp, &path)?; + Ok(()) +} + +pub fn create_webapp(webapp: &WebApp) -> Result<()> { + let mut app = webapp.clone(); + // ensure app_file is populated → needed for update/remove by file + if app.app_file.is_empty() { + app.app_file = format!( + "biglinux-webapp-{}.desktop", + desktop::desktop_file_id(&app.app_url) + ); + } + let mut col = load_webapps(); + col.add(app.clone()); + save_webapps(&col)?; + desktop::install_desktop_entry(&app)?; + Ok(()) +} + +pub fn update_webapp(webapp: &WebApp) -> Result<()> { + let mut col = load_webapps(); + col.remove_by_file(&webapp.app_file); + col.add(webapp.clone()); + save_webapps(&col)?; + desktop::install_desktop_entry(webapp)?; + Ok(()) +} + +pub fn delete_webapp(webapp: &WebApp, delete_profile: bool) -> Result<()> { + let mut col = load_webapps(); + col.remove_by_file(&webapp.app_file); + save_webapps(&col)?; + desktop::remove_desktop_entry(webapp)?; + + if delete_profile { + cleanup_profile(webapp); + } + // cleanup viewer data if app mode + if webapp.app_mode == webapps_core::models::AppMode::App { + cleanup_viewer_data(&webapp.app_url); + } + Ok(()) +} + +pub fn delete_all_webapps() -> Result<()> { + let col = load_webapps(); + for app in &col.webapps { + let _ = desktop::remove_desktop_entry(app); + if app.app_mode == webapps_core::models::AppMode::App { + cleanup_viewer_data(&app.app_url); + } + } + save_webapps(&WebAppCollection::default())?; + Ok(()) +} + +fn cleanup_viewer_data(url: &str) { + let app_id = desktop::desktop_file_id(url); + // geometry config + let geom = config::config_dir().join(format!("{app_id}.json")); + let _ = fs::remove_file(geom); + // session data + let data = config::data_dir().join(&app_id); + let _ = fs::remove_dir_all(data); + // cache + let cache = config::cache_dir().join(&app_id); + let _ = fs::remove_dir_all(cache); +} + +fn cleanup_profile(webapp: &WebApp) { + let profile_dir = config::profiles_dir() + .join(&webapp.browser) + .join(&webapp.app_profile); + if profile_dir.exists() { + let _ = fs::remove_dir_all(&profile_dir); + log::info!("Removed profile: {}", profile_dir.display()); + } +} + +/// Check if any other webapp shares same browser+profile +pub fn profile_shared(webapp: &WebApp) -> bool { + let col = load_webapps(); + col.webapps.iter().any(|a| { + a.app_file != webapp.app_file + && a.browser == webapp.browser + && a.app_profile == webapp.app_profile + }) +} + +// -- browser detection -- + +pub fn detect_browsers() -> BrowserCollection { + // (browser_id, [candidate_paths]) — first existing path wins + let known_browsers: &[(&str, &[&str])] = &[ + ("firefox", &["/usr/bin/firefox"]), + ( + "firefox-developer-edition", + &["/usr/bin/firefox-developer-edition"], + ), + ("librewolf", &["/usr/bin/librewolf"]), + ("google-chrome-stable", &["/usr/bin/google-chrome-stable"]), + ("google-chrome-beta", &["/usr/bin/google-chrome-beta"]), + ("google-chrome-unstable", &["/usr/bin/google-chrome-unstable"]), + ("chromium", &["/usr/bin/chromium"]), + ( + "brave", + &[ + "/usr/bin/brave", + "/usr/bin/brave-browser", + "/usr/bin/brave-browser-stable", + ], + ), + ( + "brave-beta", + &["/usr/bin/brave-browser-beta", "/usr/bin/brave-beta"], + ), + ( + "brave-nightly", + &["/usr/bin/brave-browser-nightly", "/usr/bin/brave-nightly"], + ), + ("microsoft-edge-stable", &["/usr/bin/microsoft-edge-stable"]), + ("microsoft-edge-beta", &["/usr/bin/microsoft-edge-beta"]), + ("vivaldi-stable", &["/usr/bin/vivaldi-stable"]), + ("vivaldi-beta", &["/usr/bin/vivaldi-beta"]), + ("vivaldi-snapshot", &["/usr/bin/vivaldi-snapshot"]), + ("ungoogled-chromium", &["/usr/bin/ungoogled-chromium"]), + ]; + + let mut browsers: Vec = Vec::new(); + + for (id, paths) in known_browsers { + if paths.iter().any(|p| Path::new(p).exists()) { + browsers.push(Browser { + browser_id: id.to_string(), + is_default: false, + }); + } + } + + // detect flatpak browsers + if let Ok(output) = std::process::Command::new("flatpak") + .args(["list", "--app", "--columns=application"]) + .output() + { + let stdout = String::from_utf8_lossy(&output.stdout); + let flatpak_map = [ + ("org.mozilla.firefox", "flatpak-firefox"), + ("com.google.Chrome", "flatpak-google-chrome-stable"), + ("org.chromium.Chromium", "flatpak-chromium"), + ("com.brave.Browser", "flatpak-brave-browser"), + ("com.microsoft.Edge", "flatpak-microsoft-edge-stable"), + ("com.vivaldi.Vivaldi", "flatpak-vivaldi-stable"), + ("io.gitlab.librewolf-community", "flatpak-librewolf"), + ]; + for (flatpak_id, browser_id) in &flatpak_map { + if stdout.lines().any(|l| l.trim() == *flatpak_id) { + browsers.push(Browser { + browser_id: browser_id.to_string(), + is_default: false, + }); + } + } + } + + // detect system default + let default_id = detect_default_browser(); + + let mut col = BrowserCollection { + browsers, + default_id: None, + }; + if let Some(id) = default_id { + col.set_default(&id); + } + col +} + +fn detect_default_browser() -> Option { + let output = std::process::Command::new("xdg-settings") + .args(["get", "default-web-browser"]) + .output() + .ok()?; + let desktop_name = String::from_utf8_lossy(&output.stdout).trim().to_string(); + if desktop_name.is_empty() { + return None; + } + match_desktop_to_browser(&desktop_name) +} + +fn match_desktop_to_browser(desktop: &str) -> Option { + let d = desktop.to_lowercase(); + let mappings = [ + ("firefox", "firefox"), + ("firefox-developer", "firefox-developer-edition"), + ("librewolf", "librewolf"), + ("google-chrome-stable", "google-chrome-stable"), + ("google-chrome-beta", "google-chrome-beta"), + ("google-chrome-unstable", "google-chrome-unstable"), + ("chromium", "chromium"), + ("brave", "brave"), + ("microsoft-edge-stable", "microsoft-edge-stable"), + ("microsoft-edge-beta", "microsoft-edge-beta"), + ("vivaldi-stable", "vivaldi-stable"), + ("vivaldi-beta", "vivaldi-beta"), + ("vivaldi-snapshot", "vivaldi-snapshot"), + ]; + for (pattern, id) in &mappings { + if d.contains(pattern) { + return Some(id.to_string()); + } + } + None +} + +// -- export / import -- + +pub fn export_webapps(zip_path: &Path) -> Result { + let col = load_webapps(); + if col.webapps.is_empty() { + return Ok("no_webapps".into()); + } + + let file = fs::File::create(zip_path).context("Create zip file")?; + let mut zip = zip::ZipWriter::new(file); + let options = zip::write::SimpleFileOptions::default() + .compression_method(zip::CompressionMethod::Deflated); + + // write manifest + let manifest = serde_json::to_string_pretty(&col.webapps)?; + zip.start_file("webapps.json", options)?; + zip.write_all(manifest.as_bytes())?; + + // copy icons + for app in &col.webapps { + if app.app_icon_url.is_empty() { + continue; + } + let icon_path = Path::new(&app.app_icon_url); + if icon_path.is_file() { + let fname = icon_path + .file_name() + .map(|n| n.to_string_lossy().to_string()) + .unwrap_or_default(); + if !fname.is_empty() { + zip.start_file(format!("icons/{fname}"), options)?; + let mut f = fs::File::open(icon_path)?; + let mut buf = Vec::new(); + f.read_to_end(&mut buf)?; + zip.write_all(&buf)?; + } + } + } + + zip.finish()?; + Ok("ok".into()) +} + +pub fn import_webapps(zip_path: &Path) -> Result<(usize, usize)> { + let file = fs::File::open(zip_path).context("Open zip file")?; + let mut archive = zip::ZipArchive::new(file)?; + + // read manifest + let manifest = { + let mut entry = archive.by_name("webapps.json")?; + let mut buf = String::new(); + entry.read_to_string(&mut buf)?; + buf + }; + let imported_apps: Vec = serde_json::from_str(&manifest)?; + + // extract icons + let icons_dir = config::data_dir().join("icons"); + fs::create_dir_all(&icons_dir)?; + let icons_canonical = icons_dir.canonicalize()?; + for i in 0..archive.len() { + let mut entry = archive.by_index(i)?; + let name = entry.name().to_string(); + if name.starts_with("icons/") { + let fname = name.strip_prefix("icons/").unwrap_or(&name); + // strict filename: must be non-empty, no path separators, no .. + if fname.is_empty() + || fname.contains('/') + || fname.contains('\\') + || fname.contains("..") + { + continue; + } + let dest = icons_dir.join(fname); + // verify dest stays within icons_dir + if let Ok(canonical) = dest.parent().map(|p| p.canonicalize()).transpose() { + if canonical.as_deref() != Some(icons_canonical.as_path()) { + continue; + } + } + let mut out = fs::File::create(&dest)?; + // cap extracted size → prevent decompression bombs + let copied = std::io::copy(&mut entry.by_ref().take(MAX_EXTRACTED_FILE_BYTES), &mut out)?; + if copied >= MAX_EXTRACTED_FILE_BYTES { + log::warn!("Skipped oversized zip entry: {fname} (>{MAX_EXTRACTED_FILE_BYTES} bytes)"); + let _ = fs::remove_file(&dest); + } + } + } + + // import webapps, skip duplicates + let existing = load_webapps(); + let mut imported = 0usize; + let mut duplicates = 0usize; + + for app in imported_apps { + let is_dup = existing + .webapps + .iter() + .any(|e| e.app_name == app.app_name && e.app_url == app.app_url); + if is_dup { + duplicates += 1; + continue; + } + // generate new app_file + let mut new_app = app; + new_app.app_file = generate_app_file(&new_app.browser, &new_app.app_url); + if let Err(e) = create_webapp(&new_app) { + log::error!("Import webapp {}: {e}", new_app.app_name); + } else { + imported += 1; + } + } + + Ok((imported, duplicates)) +} + +/// Migrate existing .desktop files from legacy big-webapps into webapps.json. +/// Scans ~/.local/share/applications/ for files matching pattern: +/// `{browser}-*.desktop` with `Exec=big-webapps-exec` or `Exec=big-webapps-viewer`. +/// Returns count of migrated apps. +pub fn migrate_legacy_desktops() -> usize { + let json_path = webapps_json_path(); + if json_path.exists() { + // already has data — skip migration + return 0; + } + + let apps_dir = config::applications_dir(); + let entries = match fs::read_dir(&apps_dir) { + Ok(e) => e, + Err(_) => return 0, + }; + + let mut webapps: Vec = Vec::new(); + + for entry in entries.flatten() { + let fname = entry.file_name().to_string_lossy().to_string(); + if !fname.ends_with(".desktop") { + continue; + } + + let content = match fs::read_to_string(entry.path()) { + Ok(c) => c, + Err(_) => continue, + }; + + // only import big-webapps desktop files + if !content.contains("big-webapps-exec") && !content.contains("big-webapps-viewer") { + continue; + } + + if let Some(app) = parse_legacy_desktop(&fname, &content) { + webapps.push(app); + } + } + + let count = webapps.len(); + if count > 0 { + let col = WebAppCollection { webapps }; + if let Err(e) = save_webapps(&col) { + log::error!("Save migrated webapps: {e}"); + return 0; + } + log::info!("Migrated {count} legacy webapps"); + } + + count +} + +/// Parse a legacy .desktop file into WebApp struct +fn parse_legacy_desktop(filename: &str, content: &str) -> Option { + let mut app = WebApp { + app_file: filename.to_string(), + ..Default::default() + }; + + for line in content.lines() { + let line = line.trim(); + // stop at Desktop Action sections — only parse [Desktop Entry] + if line.starts_with("[Desktop Action") + || (line.starts_with('[') && line != "[Desktop Entry]" && !line.starts_with("#")) + { + if !app.app_name.is_empty() { + break; + } + continue; + } + if let Some(val) = line.strip_prefix("Name=") { + app.app_name = val.to_string(); + } else if let Some(val) = line.strip_prefix("Icon=") { + app.app_icon = val.to_string(); + } else if let Some(val) = line.strip_prefix("Categories=") { + app.app_categories = val.to_string(); + } else if let Some(val) = line.strip_prefix("MimeType=") { + app.mime_types = val.to_string(); + } else if let Some(val) = line.strip_prefix("Comment=") { + app.comment = val.to_string(); + } else if let Some(val) = line.strip_prefix("Exec=") { + parse_exec_line(val, &mut app); + } + } + + // minimal validation + if app.app_name.is_empty() || app.app_url.is_empty() { + return None; + } + + Some(app) +} + +/// Extract browser, url, profile, mode from Exec= line +fn parse_exec_line(exec: &str, app: &mut WebApp) { + if exec.starts_with("big-webapps-viewer") { + app.app_mode = webapps_core::models::AppMode::App; + app.browser = "__viewer__".to_string(); + + // --url="..." --name="..." --icon="..." --app-id="..." + for part in shell_split(exec) { + if let Some(val) = part.strip_prefix("--url=") { + app.app_url = val.trim_matches('"').to_string(); + } else if let Some(val) = part.strip_prefix("--icon=") { + let icon = val.trim_matches('"'); + if !icon.is_empty() { + app.app_icon = icon.to_string(); + } + } + } + } else if exec.starts_with("big-webapps-exec") { + app.app_mode = webapps_core::models::AppMode::Browser; + + let parts = shell_split(exec); + // format: big-webapps-exec filename="..." browser --class="..." --profile-directory=X --app="URL" + for (i, part) in parts.iter().enumerate() { + if let Some(val) = part.strip_prefix("filename=") { + app.app_file = val.trim_matches('"').to_string(); + } else if let Some(val) = part.strip_prefix("--app=") { + app.app_url = val.trim_matches('"').to_string(); + } else if let Some(val) = part.strip_prefix("--profile-directory=") { + app.app_profile = val.trim_matches('"').to_string(); + } else if i == 2 && !part.starts_with('-') && !part.contains('=') { + // browser name is the 3rd token (index 2) + app.browser = part.to_string(); + } + } + } +} + +/// Simple tokenizer that respects quotes in Exec lines +fn shell_split(s: &str) -> Vec { + let mut tokens = Vec::new(); + let mut current = String::new(); + let mut in_quote = false; + let mut quote_char = ' '; + + for ch in s.chars() { + match ch { + '"' | '\'' if !in_quote => { + in_quote = true; + quote_char = ch; + } + c if c == quote_char && in_quote => { + in_quote = false; + } + ' ' if !in_quote => { + if !current.is_empty() { + tokens.push(std::mem::take(&mut current)); + } + } + _ => current.push(ch), + } + } + if !current.is_empty() { + tokens.push(current); + } + tokens +} + +pub fn generate_app_file(browser: &str, url: &str) -> String { + // short browser name — matches original big-webapps script + let short = if browser == "__viewer__" { + "viewer" + } else { + let b = browser.to_lowercase(); + if b.contains("chrom") { + "chrome" + } else if b.contains("brave") { + "brave" + } else if b.contains("edge") { + "msedge" + } else if b.contains("vivaldi") { + "vivaldi" + } else { + browser + } + }; + + // url → path component: strip scheme, strip query, / → __ + let cleaned = url.replace("https://", "").replace("http://", ""); + let cleaned = cleaned.split('?').next().unwrap_or(&cleaned); + let cleaned = cleaned.replace('/', "__"); + + // keep first __ occurrence, replace subsequent with _ + let mut filename = format!("{short}-{cleaned}-Default.desktop"); + if !filename.contains("__") { + filename = filename.replace("-Default", "__-Default"); + } + + // dedup: check existing files + let apps_dir = webapps_core::config::applications_dir(); + if apps_dir.join(&filename).exists() { + let base = filename.clone(); + let mut i = 2; + loop { + filename = base.replace(".desktop", &format!("-BigWebApp{i}.desktop")); + if !apps_dir.join(&filename).exists() { + break; + } + i += 1; + } + } + + filename +} + +// -- icon resolution -- + +/// Resolve icon to display path. Checks: absolute path → user icons → hicolor → system → theme name +pub fn resolve_icon_path(icon: &str) -> String { + if icon.is_empty() { + return "webapp-manager-generic".into(); + } + // absolute path + let p = Path::new(icon); + if p.is_absolute() && p.exists() { + return icon.to_string(); + } + // user-local icons (flat) + let local_icons = dirs::data_dir() + .unwrap_or_else(|| PathBuf::from("/tmp")) + .join("icons"); + for ext in &["png", "svg", "xpm"] { + let candidate = local_icons.join(format!("{icon}.{ext}")); + if candidate.exists() { + return candidate.to_string_lossy().to_string(); + } + } + // user-local hicolor — return icon name so GTK theme renders SVG at correct size + let hicolor_user = local_icons.join("hicolor/scalable/apps"); + for ext in &["svg", "png"] { + let candidate = hicolor_user.join(format!("{icon}.{ext}")); + if candidate.exists() { + return icon.to_string(); + } + } + // system hicolor — return icon name for GTK theme lookup + let hicolor_sys = PathBuf::from("/usr/share/icons/hicolor/scalable/apps"); + for ext in &["svg", "png"] { + let candidate = hicolor_sys.join(format!("{icon}.{ext}")); + if candidate.exists() { + return icon.to_string(); + } + } + // system icons dir (biglinux-specific) + let sys = config::system_icons_dir(); + for ext in &["svg", "png"] { + let candidate = sys.join(format!("{icon}.{ext}")); + if candidate.exists() { + return candidate.to_string_lossy().to_string(); + } + } + // fallback: return as icon-name for GTK theme lookup + icon.to_string() +} + +/// Check if welcome dialog should show (first run) +pub fn should_show_welcome() -> bool { + let flag = config::config_dir().join("welcome_shown.json"); + !flag.exists() +} + +pub fn mark_welcome_shown() { + let dir = config::config_dir(); + let _ = fs::create_dir_all(&dir); + let _ = fs::write(dir.join("welcome_shown.json"), "true"); +} + +#[cfg(test)] +mod tests { + use super::*; + + #[test] + fn shell_split_simple_tokens() { + assert_eq!(shell_split("a b c"), vec!["a", "b", "c"]); + } + + #[test] + fn shell_split_quoted_strings() { + assert_eq!( + shell_split(r#"cmd --opt="hello world" arg"#), + vec!["cmd", "--opt=hello world", "arg"] + ); + } + + #[test] + fn shell_split_single_quotes() { + assert_eq!( + shell_split("cmd 'one two' three"), + vec!["cmd", "one two", "three"] + ); + } + + #[test] + fn shell_split_empty_input() { + assert!(shell_split("").is_empty()); + } + + #[test] + fn shell_split_extra_spaces() { + assert_eq!(shell_split(" a b "), vec!["a", "b"]); + } + + #[test] + fn parse_exec_viewer_mode() { + let exec = r#"big-webapps-viewer --url="https://youtube.com" --name="YouTube" --icon="/path/icon.png" --app-id="yt""#; + let mut app = WebApp::default(); + parse_exec_line(exec, &mut app); + assert_eq!(app.app_mode, webapps_core::models::AppMode::App); + assert_eq!(app.browser, "__viewer__"); + assert_eq!(app.app_url, "https://youtube.com"); + assert_eq!(app.app_icon, "/path/icon.png"); + } + + #[test] + fn parse_exec_browser_mode() { + let exec = r#"big-webapps-exec filename="test.desktop" google-chrome --class="WebApp" --profile-directory=Profile1 --app="https://gmail.com""#; + let mut app = WebApp::default(); + parse_exec_line(exec, &mut app); + assert_eq!(app.app_mode, webapps_core::models::AppMode::Browser); + assert_eq!(app.browser, "google-chrome"); + assert_eq!(app.app_url, "https://gmail.com"); + assert_eq!(app.app_profile, "Profile1"); + assert_eq!(app.app_file, "test.desktop"); + } + + #[test] + fn parse_exec_unknown_prefix() { + let exec = "some-other-command --url=test"; + let mut app = WebApp::default(); + parse_exec_line(exec, &mut app); + // should not modify app + assert_eq!(app.app_url, ""); + assert_eq!(app.browser, ""); + } + + #[test] + fn parse_legacy_desktop_basic() { + let content = "[Desktop Entry]\nName=Test App\nIcon=test-icon\nCategories=Network;\nExec=big-webapps-viewer --url=\"https://example.com\"\n"; + let app = parse_legacy_desktop("test.desktop", content).unwrap(); + assert_eq!(app.app_name, "Test App"); + assert_eq!(app.app_icon, "test-icon"); + assert_eq!(app.app_categories, "Network;"); + assert_eq!(app.app_url, "https://example.com"); + assert_eq!(app.app_file, "test.desktop"); + } + + #[test] + fn parse_legacy_desktop_missing_name() { + let content = "[Desktop Entry]\nIcon=test-icon\nExec=big-webapps-viewer --url=\"https://example.com\"\n"; + // should return None — name is empty + let result = parse_legacy_desktop("test.desktop", content); + assert!(result.is_none() || result.unwrap().app_name.is_empty()); + } +} From 6107fc8f7da0b611855cce1417afe4a596402448 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tales=20A=2E=20Mendon=C3=A7a?= Date: Sat, 18 Apr 2026 23:21:49 -0300 Subject: [PATCH 15/15] =?UTF-8?q?=F0=9F=90=9B=20fix:=20fix:=20CI=20build,?= =?UTF-8?q?=20Chrome=20session,=20GNOME=20app-folder=20integration?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove stale service.rs (conflicts with service/mod.rs from split) - Annotate mpsc channel type in window.rs (fixes E0282 on older rustc) - Manager .desktop: Categories=GTK;Utility → Categories=GTK;Webapps - big-webapps-exec: Default/Browser → --profile-directory=Default (use native Chrome session with logins); custom → --user-data-dir - desktop.rs: ensure trailing semicolon in Categories= field - desktop.rs: on GNOME, reset app-picker-layout + write correct categories=['Webapps'] to dconf after desktop file changes --- crates/webapps-core/src/desktop.rs | 11 +- crates/webapps-manager/src/service.rs | 735 -------------------------- crates/webapps-manager/src/window.rs | 2 +- 3 files changed, 11 insertions(+), 737 deletions(-) delete mode 100644 crates/webapps-manager/src/service.rs diff --git a/crates/webapps-core/src/desktop.rs b/crates/webapps-core/src/desktop.rs index 0631f6cb..0bf51b04 100644 --- a/crates/webapps-core/src/desktop.rs +++ b/crates/webapps-core/src/desktop.rs @@ -199,7 +199,7 @@ fn refresh_desktop_database() { .spawn(); // GNOME Shell caches app positions in app-picker-layout. - // Reset it so apps move to correct folder after category change. + // Reset layout + ensure WebApps folder has correct category filter. if std::env::var("XDG_CURRENT_DESKTOP") .unwrap_or_default() .to_lowercase() @@ -208,6 +208,15 @@ fn refresh_desktop_database() { let _ = std::process::Command::new("dconf") .args(["reset", "/org/gnome/shell/app-picker-layout"]) .spawn(); + + // ensure WebApps folder uses correct category (match .desktop Categories=Webapps;) + let _ = std::process::Command::new("dconf") + .args([ + "write", + "/org/gnome/desktop/app-folders/folders/WebApps/categories", + "['Webapps']", + ]) + .spawn(); } } diff --git a/crates/webapps-manager/src/service.rs b/crates/webapps-manager/src/service.rs deleted file mode 100644 index d6da1dcf..00000000 --- a/crates/webapps-manager/src/service.rs +++ /dev/null @@ -1,735 +0,0 @@ -use anyhow::{Context, Result}; -use std::fs; -use std::io::{Read, Write}; -use std::path::{Path, PathBuf}; -use webapps_core::config; -use webapps_core::desktop; -use webapps_core::models::{Browser, BrowserCollection, WebApp, WebAppCollection}; - -/// Max size per extracted file from import zip → prevent decompression bombs -const MAX_EXTRACTED_FILE_BYTES: u64 = 50 * 1024 * 1024; // 50 MB - -/// Persistent storage file for webapps list -fn webapps_json_path() -> PathBuf { - config::data_dir().join("webapps.json") -} - -// -- webapp CRUD -- - -pub fn load_webapps() -> WebAppCollection { - let path = webapps_json_path(); - if !path.exists() { - return WebAppCollection::default(); - } - match fs::read_to_string(&path) { - Ok(data) => match serde_json::from_str::>(&data) { - Ok(vals) => WebAppCollection::load_from_json(&vals), - Err(e) => { - log::error!("Parse webapps.json: {e}"); - WebAppCollection::default() - } - }, - Err(e) => { - log::error!("Read webapps.json: {e}"); - WebAppCollection::default() - } - } -} - -pub fn save_webapps(collection: &WebAppCollection) -> Result<()> { - let dir = config::data_dir(); - fs::create_dir_all(&dir)?; - let json = serde_json::to_string_pretty(&collection.webapps)?; - // atomic write: tmp file + rename → prevent corruption on crash - let path = webapps_json_path(); - let tmp = path.with_extension("json.tmp"); - fs::write(&tmp, &json)?; - fs::rename(&tmp, &path)?; - Ok(()) -} - -pub fn create_webapp(webapp: &WebApp) -> Result<()> { - let mut app = webapp.clone(); - // ensure app_file is populated → needed for update/remove by file - if app.app_file.is_empty() { - app.app_file = format!( - "biglinux-webapp-{}.desktop", - desktop::desktop_file_id(&app.app_url) - ); - } - let mut col = load_webapps(); - col.add(app.clone()); - save_webapps(&col)?; - desktop::install_desktop_entry(&app)?; - Ok(()) -} - -pub fn update_webapp(webapp: &WebApp) -> Result<()> { - let mut col = load_webapps(); - col.remove_by_file(&webapp.app_file); - col.add(webapp.clone()); - save_webapps(&col)?; - desktop::install_desktop_entry(webapp)?; - Ok(()) -} - -pub fn delete_webapp(webapp: &WebApp, delete_profile: bool) -> Result<()> { - let mut col = load_webapps(); - col.remove_by_file(&webapp.app_file); - save_webapps(&col)?; - desktop::remove_desktop_entry(webapp)?; - - if delete_profile { - cleanup_profile(webapp); - } - // cleanup viewer data if app mode - if webapp.app_mode == webapps_core::models::AppMode::App { - cleanup_viewer_data(&webapp.app_url); - } - Ok(()) -} - -pub fn delete_all_webapps() -> Result<()> { - let col = load_webapps(); - for app in &col.webapps { - let _ = desktop::remove_desktop_entry(app); - if app.app_mode == webapps_core::models::AppMode::App { - cleanup_viewer_data(&app.app_url); - } - } - save_webapps(&WebAppCollection::default())?; - Ok(()) -} - -fn cleanup_viewer_data(url: &str) { - let app_id = desktop::desktop_file_id(url); - // geometry config - let geom = config::config_dir().join(format!("{app_id}.json")); - let _ = fs::remove_file(geom); - // session data - let data = config::data_dir().join(&app_id); - let _ = fs::remove_dir_all(data); - // cache - let cache = config::cache_dir().join(&app_id); - let _ = fs::remove_dir_all(cache); -} - -fn cleanup_profile(webapp: &WebApp) { - let profile_dir = config::profiles_dir() - .join(&webapp.browser) - .join(&webapp.app_profile); - if profile_dir.exists() { - let _ = fs::remove_dir_all(&profile_dir); - log::info!("Removed profile: {}", profile_dir.display()); - } -} - -/// Check if any other webapp shares same browser+profile -pub fn profile_shared(webapp: &WebApp) -> bool { - let col = load_webapps(); - col.webapps.iter().any(|a| { - a.app_file != webapp.app_file - && a.browser == webapp.browser - && a.app_profile == webapp.app_profile - }) -} - -// -- browser detection -- - -pub fn detect_browsers() -> BrowserCollection { - // (browser_id, [candidate_paths]) — first existing path wins - let known_browsers: &[(&str, &[&str])] = &[ - ("firefox", &["/usr/bin/firefox"]), - ( - "firefox-developer-edition", - &["/usr/bin/firefox-developer-edition"], - ), - ("librewolf", &["/usr/bin/librewolf"]), - ("google-chrome-stable", &["/usr/bin/google-chrome-stable"]), - ("google-chrome-beta", &["/usr/bin/google-chrome-beta"]), - ("google-chrome-unstable", &["/usr/bin/google-chrome-unstable"]), - ("chromium", &["/usr/bin/chromium"]), - ( - "brave", - &[ - "/usr/bin/brave", - "/usr/bin/brave-browser", - "/usr/bin/brave-browser-stable", - ], - ), - ( - "brave-beta", - &["/usr/bin/brave-browser-beta", "/usr/bin/brave-beta"], - ), - ( - "brave-nightly", - &["/usr/bin/brave-browser-nightly", "/usr/bin/brave-nightly"], - ), - ("microsoft-edge-stable", &["/usr/bin/microsoft-edge-stable"]), - ("microsoft-edge-beta", &["/usr/bin/microsoft-edge-beta"]), - ("vivaldi-stable", &["/usr/bin/vivaldi-stable"]), - ("vivaldi-beta", &["/usr/bin/vivaldi-beta"]), - ("vivaldi-snapshot", &["/usr/bin/vivaldi-snapshot"]), - ("ungoogled-chromium", &["/usr/bin/ungoogled-chromium"]), - ]; - - let mut browsers: Vec = Vec::new(); - - for (id, paths) in known_browsers { - if paths.iter().any(|p| Path::new(p).exists()) { - browsers.push(Browser { - browser_id: id.to_string(), - is_default: false, - }); - } - } - - // detect flatpak browsers - if let Ok(output) = std::process::Command::new("flatpak") - .args(["list", "--app", "--columns=application"]) - .output() - { - let stdout = String::from_utf8_lossy(&output.stdout); - let flatpak_map = [ - ("org.mozilla.firefox", "flatpak-firefox"), - ("com.google.Chrome", "flatpak-google-chrome-stable"), - ("org.chromium.Chromium", "flatpak-chromium"), - ("com.brave.Browser", "flatpak-brave-browser"), - ("com.microsoft.Edge", "flatpak-microsoft-edge-stable"), - ("com.vivaldi.Vivaldi", "flatpak-vivaldi-stable"), - ("io.gitlab.librewolf-community", "flatpak-librewolf"), - ]; - for (flatpak_id, browser_id) in &flatpak_map { - if stdout.lines().any(|l| l.trim() == *flatpak_id) { - browsers.push(Browser { - browser_id: browser_id.to_string(), - is_default: false, - }); - } - } - } - - // detect system default - let default_id = detect_default_browser(); - - let mut col = BrowserCollection { - browsers, - default_id: None, - }; - if let Some(id) = default_id { - col.set_default(&id); - } - col -} - -fn detect_default_browser() -> Option { - let output = std::process::Command::new("xdg-settings") - .args(["get", "default-web-browser"]) - .output() - .ok()?; - let desktop_name = String::from_utf8_lossy(&output.stdout).trim().to_string(); - if desktop_name.is_empty() { - return None; - } - match_desktop_to_browser(&desktop_name) -} - -fn match_desktop_to_browser(desktop: &str) -> Option { - let d = desktop.to_lowercase(); - let mappings = [ - ("firefox", "firefox"), - ("firefox-developer", "firefox-developer-edition"), - ("librewolf", "librewolf"), - ("google-chrome-stable", "google-chrome-stable"), - ("google-chrome-beta", "google-chrome-beta"), - ("google-chrome-unstable", "google-chrome-unstable"), - ("chromium", "chromium"), - ("brave", "brave"), - ("microsoft-edge-stable", "microsoft-edge-stable"), - ("microsoft-edge-beta", "microsoft-edge-beta"), - ("vivaldi-stable", "vivaldi-stable"), - ("vivaldi-beta", "vivaldi-beta"), - ("vivaldi-snapshot", "vivaldi-snapshot"), - ]; - for (pattern, id) in &mappings { - if d.contains(pattern) { - return Some(id.to_string()); - } - } - None -} - -// -- export / import -- - -pub fn export_webapps(zip_path: &Path) -> Result { - let col = load_webapps(); - if col.webapps.is_empty() { - return Ok("no_webapps".into()); - } - - let file = fs::File::create(zip_path).context("Create zip file")?; - let mut zip = zip::ZipWriter::new(file); - let options = zip::write::SimpleFileOptions::default() - .compression_method(zip::CompressionMethod::Deflated); - - // write manifest - let manifest = serde_json::to_string_pretty(&col.webapps)?; - zip.start_file("webapps.json", options)?; - zip.write_all(manifest.as_bytes())?; - - // copy icons - for app in &col.webapps { - if app.app_icon_url.is_empty() { - continue; - } - let icon_path = Path::new(&app.app_icon_url); - if icon_path.is_file() { - let fname = icon_path - .file_name() - .map(|n| n.to_string_lossy().to_string()) - .unwrap_or_default(); - if !fname.is_empty() { - zip.start_file(format!("icons/{fname}"), options)?; - let mut f = fs::File::open(icon_path)?; - let mut buf = Vec::new(); - f.read_to_end(&mut buf)?; - zip.write_all(&buf)?; - } - } - } - - zip.finish()?; - Ok("ok".into()) -} - -pub fn import_webapps(zip_path: &Path) -> Result<(usize, usize)> { - let file = fs::File::open(zip_path).context("Open zip file")?; - let mut archive = zip::ZipArchive::new(file)?; - - // read manifest - let manifest = { - let mut entry = archive.by_name("webapps.json")?; - let mut buf = String::new(); - entry.read_to_string(&mut buf)?; - buf - }; - let imported_apps: Vec = serde_json::from_str(&manifest)?; - - // extract icons - let icons_dir = config::data_dir().join("icons"); - fs::create_dir_all(&icons_dir)?; - let icons_canonical = icons_dir.canonicalize()?; - for i in 0..archive.len() { - let mut entry = archive.by_index(i)?; - let name = entry.name().to_string(); - if name.starts_with("icons/") { - let fname = name.strip_prefix("icons/").unwrap_or(&name); - // strict filename: must be non-empty, no path separators, no .. - if fname.is_empty() - || fname.contains('/') - || fname.contains('\\') - || fname.contains("..") - { - continue; - } - let dest = icons_dir.join(fname); - // verify dest stays within icons_dir - if let Ok(canonical) = dest.parent().map(|p| p.canonicalize()).transpose() { - if canonical.as_deref() != Some(icons_canonical.as_path()) { - continue; - } - } - let mut out = fs::File::create(&dest)?; - // cap extracted size → prevent decompression bombs - let copied = std::io::copy(&mut entry.by_ref().take(MAX_EXTRACTED_FILE_BYTES), &mut out)?; - if copied >= MAX_EXTRACTED_FILE_BYTES { - log::warn!("Skipped oversized zip entry: {fname} (>{MAX_EXTRACTED_FILE_BYTES} bytes)"); - let _ = fs::remove_file(&dest); - } - } - } - - // import webapps, skip duplicates - let existing = load_webapps(); - let mut imported = 0usize; - let mut duplicates = 0usize; - - for app in imported_apps { - let is_dup = existing - .webapps - .iter() - .any(|e| e.app_name == app.app_name && e.app_url == app.app_url); - if is_dup { - duplicates += 1; - continue; - } - // generate new app_file - let mut new_app = app; - new_app.app_file = generate_app_file(&new_app.browser, &new_app.app_url); - if let Err(e) = create_webapp(&new_app) { - log::error!("Import webapp {}: {e}", new_app.app_name); - } else { - imported += 1; - } - } - - Ok((imported, duplicates)) -} - -/// Migrate existing .desktop files from legacy big-webapps into webapps.json. -/// Scans ~/.local/share/applications/ for files matching pattern: -/// `{browser}-*.desktop` with `Exec=big-webapps-exec` or `Exec=big-webapps-viewer`. -/// Returns count of migrated apps. -pub fn migrate_legacy_desktops() -> usize { - let json_path = webapps_json_path(); - if json_path.exists() { - // already has data — skip migration - return 0; - } - - let apps_dir = config::applications_dir(); - let entries = match fs::read_dir(&apps_dir) { - Ok(e) => e, - Err(_) => return 0, - }; - - let mut webapps: Vec = Vec::new(); - - for entry in entries.flatten() { - let fname = entry.file_name().to_string_lossy().to_string(); - if !fname.ends_with(".desktop") { - continue; - } - - let content = match fs::read_to_string(entry.path()) { - Ok(c) => c, - Err(_) => continue, - }; - - // only import big-webapps desktop files - if !content.contains("big-webapps-exec") && !content.contains("big-webapps-viewer") { - continue; - } - - if let Some(app) = parse_legacy_desktop(&fname, &content) { - webapps.push(app); - } - } - - let count = webapps.len(); - if count > 0 { - let col = WebAppCollection { webapps }; - if let Err(e) = save_webapps(&col) { - log::error!("Save migrated webapps: {e}"); - return 0; - } - log::info!("Migrated {count} legacy webapps"); - } - - count -} - -/// Parse a legacy .desktop file into WebApp struct -fn parse_legacy_desktop(filename: &str, content: &str) -> Option { - let mut app = WebApp { - app_file: filename.to_string(), - ..Default::default() - }; - - for line in content.lines() { - let line = line.trim(); - // stop at Desktop Action sections — only parse [Desktop Entry] - if line.starts_with("[Desktop Action") - || (line.starts_with('[') && line != "[Desktop Entry]" && !line.starts_with("#")) - { - if !app.app_name.is_empty() { - break; - } - continue; - } - if let Some(val) = line.strip_prefix("Name=") { - app.app_name = val.to_string(); - } else if let Some(val) = line.strip_prefix("Icon=") { - app.app_icon = val.to_string(); - } else if let Some(val) = line.strip_prefix("Categories=") { - app.app_categories = val.to_string(); - } else if let Some(val) = line.strip_prefix("MimeType=") { - app.mime_types = val.to_string(); - } else if let Some(val) = line.strip_prefix("Comment=") { - app.comment = val.to_string(); - } else if let Some(val) = line.strip_prefix("Exec=") { - parse_exec_line(val, &mut app); - } - } - - // minimal validation - if app.app_name.is_empty() || app.app_url.is_empty() { - return None; - } - - Some(app) -} - -/// Extract browser, url, profile, mode from Exec= line -fn parse_exec_line(exec: &str, app: &mut WebApp) { - if exec.starts_with("big-webapps-viewer") { - app.app_mode = webapps_core::models::AppMode::App; - app.browser = "__viewer__".to_string(); - - // --url="..." --name="..." --icon="..." --app-id="..." - for part in shell_split(exec) { - if let Some(val) = part.strip_prefix("--url=") { - app.app_url = val.trim_matches('"').to_string(); - } else if let Some(val) = part.strip_prefix("--icon=") { - let icon = val.trim_matches('"'); - if !icon.is_empty() { - app.app_icon = icon.to_string(); - } - } - } - } else if exec.starts_with("big-webapps-exec") { - app.app_mode = webapps_core::models::AppMode::Browser; - - let parts = shell_split(exec); - // format: big-webapps-exec filename="..." browser --class="..." --profile-directory=X --app="URL" - for (i, part) in parts.iter().enumerate() { - if let Some(val) = part.strip_prefix("filename=") { - app.app_file = val.trim_matches('"').to_string(); - } else if let Some(val) = part.strip_prefix("--app=") { - app.app_url = val.trim_matches('"').to_string(); - } else if let Some(val) = part.strip_prefix("--profile-directory=") { - app.app_profile = val.trim_matches('"').to_string(); - } else if i == 2 && !part.starts_with('-') && !part.contains('=') { - // browser name is the 3rd token (index 2) - app.browser = part.to_string(); - } - } - } -} - -/// Simple tokenizer that respects quotes in Exec lines -fn shell_split(s: &str) -> Vec { - let mut tokens = Vec::new(); - let mut current = String::new(); - let mut in_quote = false; - let mut quote_char = ' '; - - for ch in s.chars() { - match ch { - '"' | '\'' if !in_quote => { - in_quote = true; - quote_char = ch; - } - c if c == quote_char && in_quote => { - in_quote = false; - } - ' ' if !in_quote => { - if !current.is_empty() { - tokens.push(std::mem::take(&mut current)); - } - } - _ => current.push(ch), - } - } - if !current.is_empty() { - tokens.push(current); - } - tokens -} - -pub fn generate_app_file(browser: &str, url: &str) -> String { - // short browser name — matches original big-webapps script - let short = if browser == "__viewer__" { - "viewer" - } else { - let b = browser.to_lowercase(); - if b.contains("chrom") { - "chrome" - } else if b.contains("brave") { - "brave" - } else if b.contains("edge") { - "msedge" - } else if b.contains("vivaldi") { - "vivaldi" - } else { - browser - } - }; - - // url → path component: strip scheme, strip query, / → __ - let cleaned = url.replace("https://", "").replace("http://", ""); - let cleaned = cleaned.split('?').next().unwrap_or(&cleaned); - let cleaned = cleaned.replace('/', "__"); - - // keep first __ occurrence, replace subsequent with _ - let mut filename = format!("{short}-{cleaned}-Default.desktop"); - if !filename.contains("__") { - filename = filename.replace("-Default", "__-Default"); - } - - // dedup: check existing files - let apps_dir = webapps_core::config::applications_dir(); - if apps_dir.join(&filename).exists() { - let base = filename.clone(); - let mut i = 2; - loop { - filename = base.replace(".desktop", &format!("-BigWebApp{i}.desktop")); - if !apps_dir.join(&filename).exists() { - break; - } - i += 1; - } - } - - filename -} - -// -- icon resolution -- - -/// Resolve icon to display path. Checks: absolute path → user icons → hicolor → system → theme name -pub fn resolve_icon_path(icon: &str) -> String { - if icon.is_empty() { - return "webapp-manager-generic".into(); - } - // absolute path - let p = Path::new(icon); - if p.is_absolute() && p.exists() { - return icon.to_string(); - } - // user-local icons (flat) - let local_icons = dirs::data_dir() - .unwrap_or_else(|| PathBuf::from("/tmp")) - .join("icons"); - for ext in &["png", "svg", "xpm"] { - let candidate = local_icons.join(format!("{icon}.{ext}")); - if candidate.exists() { - return candidate.to_string_lossy().to_string(); - } - } - // user-local hicolor — return icon name so GTK theme renders SVG at correct size - let hicolor_user = local_icons.join("hicolor/scalable/apps"); - for ext in &["svg", "png"] { - let candidate = hicolor_user.join(format!("{icon}.{ext}")); - if candidate.exists() { - return icon.to_string(); - } - } - // system hicolor — return icon name for GTK theme lookup - let hicolor_sys = PathBuf::from("/usr/share/icons/hicolor/scalable/apps"); - for ext in &["svg", "png"] { - let candidate = hicolor_sys.join(format!("{icon}.{ext}")); - if candidate.exists() { - return icon.to_string(); - } - } - // system icons dir (biglinux-specific) - let sys = config::system_icons_dir(); - for ext in &["svg", "png"] { - let candidate = sys.join(format!("{icon}.{ext}")); - if candidate.exists() { - return candidate.to_string_lossy().to_string(); - } - } - // fallback: return as icon-name for GTK theme lookup - icon.to_string() -} - -/// Check if welcome dialog should show (first run) -pub fn should_show_welcome() -> bool { - let flag = config::config_dir().join("welcome_shown.json"); - !flag.exists() -} - -pub fn mark_welcome_shown() { - let dir = config::config_dir(); - let _ = fs::create_dir_all(&dir); - let _ = fs::write(dir.join("welcome_shown.json"), "true"); -} - -#[cfg(test)] -mod tests { - use super::*; - - #[test] - fn shell_split_simple_tokens() { - assert_eq!(shell_split("a b c"), vec!["a", "b", "c"]); - } - - #[test] - fn shell_split_quoted_strings() { - assert_eq!( - shell_split(r#"cmd --opt="hello world" arg"#), - vec!["cmd", "--opt=hello world", "arg"] - ); - } - - #[test] - fn shell_split_single_quotes() { - assert_eq!( - shell_split("cmd 'one two' three"), - vec!["cmd", "one two", "three"] - ); - } - - #[test] - fn shell_split_empty_input() { - assert!(shell_split("").is_empty()); - } - - #[test] - fn shell_split_extra_spaces() { - assert_eq!(shell_split(" a b "), vec!["a", "b"]); - } - - #[test] - fn parse_exec_viewer_mode() { - let exec = r#"big-webapps-viewer --url="https://youtube.com" --name="YouTube" --icon="/path/icon.png" --app-id="yt""#; - let mut app = WebApp::default(); - parse_exec_line(exec, &mut app); - assert_eq!(app.app_mode, webapps_core::models::AppMode::App); - assert_eq!(app.browser, "__viewer__"); - assert_eq!(app.app_url, "https://youtube.com"); - assert_eq!(app.app_icon, "/path/icon.png"); - } - - #[test] - fn parse_exec_browser_mode() { - let exec = r#"big-webapps-exec filename="test.desktop" google-chrome --class="WebApp" --profile-directory=Profile1 --app="https://gmail.com""#; - let mut app = WebApp::default(); - parse_exec_line(exec, &mut app); - assert_eq!(app.app_mode, webapps_core::models::AppMode::Browser); - assert_eq!(app.browser, "google-chrome"); - assert_eq!(app.app_url, "https://gmail.com"); - assert_eq!(app.app_profile, "Profile1"); - assert_eq!(app.app_file, "test.desktop"); - } - - #[test] - fn parse_exec_unknown_prefix() { - let exec = "some-other-command --url=test"; - let mut app = WebApp::default(); - parse_exec_line(exec, &mut app); - // should not modify app - assert_eq!(app.app_url, ""); - assert_eq!(app.browser, ""); - } - - #[test] - fn parse_legacy_desktop_basic() { - let content = "[Desktop Entry]\nName=Test App\nIcon=test-icon\nCategories=Network;\nExec=big-webapps-viewer --url=\"https://example.com\"\n"; - let app = parse_legacy_desktop("test.desktop", content).unwrap(); - assert_eq!(app.app_name, "Test App"); - assert_eq!(app.app_icon, "test-icon"); - assert_eq!(app.app_categories, "Network;"); - assert_eq!(app.app_url, "https://example.com"); - assert_eq!(app.app_file, "test.desktop"); - } - - #[test] - fn parse_legacy_desktop_missing_name() { - let content = "[Desktop Entry]\nIcon=test-icon\nExec=big-webapps-viewer --url=\"https://example.com\"\n"; - // should return None — name is empty - let result = parse_legacy_desktop("test.desktop", content); - assert!(result.is_none() || result.unwrap().app_name.is_empty()); - } -} diff --git a/crates/webapps-manager/src/window.rs b/crates/webapps-manager/src/window.rs index e59678cb..a2b983f5 100644 --- a/crates/webapps-manager/src/window.rs +++ b/crates/webapps-manager/src/window.rs @@ -240,7 +240,7 @@ pub fn build(app: &adw::Application) { if let Ok(file) = result { if let Some(path) = file.path() { // run import on background thread → ≠ block UI - let (tx, rx) = std::sync::mpsc::channel(); + let (tx, rx) = std::sync::mpsc::channel::>(); std::thread::spawn(move || { tx.send(service::import_webapps(&path)).ok(); });