Repository: TheAssassin/AppImageLauncher Branch: master Commit: edd4ef418ece Files: 141 Total size: 843.2 KB Directory structure: gitextract_j5tkd942/ ├── .dockerignore ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ ├── config.yml │ │ └── feature_request.yml │ ├── dependabot.yml │ └── workflows/ │ └── main.yml ├── .gitignore ├── .gitmodules ├── .idea/ │ └── codeStyles/ │ ├── Project.xml │ └── codeStyleConfig.xml ├── BUILD.md ├── CMakeLists.txt ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── ci/ │ ├── .dockerignore │ ├── Dockerfile │ ├── build-docker-image.sh │ ├── build-in-docker.sh │ ├── build.sh │ └── install-deps.sh ├── cmake/ │ ├── install.cmake │ ├── modules/ │ │ └── FindINotify.cmake │ ├── reproducible_builds.cmake │ ├── scripts.cmake │ ├── toolchains/ │ │ └── i386-linux-gnu.cmake │ └── versioning.cmake ├── i18n/ │ ├── CMakeLists.txt │ ├── auto-translate.py │ ├── desktopfiles.ast.json │ ├── desktopfiles.cs.json │ ├── desktopfiles.de.json │ ├── desktopfiles.en.json │ ├── desktopfiles.es.json │ ├── desktopfiles.fr.json │ ├── desktopfiles.it.json │ ├── desktopfiles.ko.json │ ├── desktopfiles.nb_NO.json │ ├── desktopfiles.nl.json │ ├── desktopfiles.pl.json │ ├── desktopfiles.pt.json │ ├── desktopfiles.pt_BR.json │ ├── desktopfiles.ru.json │ ├── desktopfiles.tr.json │ ├── desktopfiles.zh_Hans.json │ ├── ui.ast.ts │ ├── ui.cs.ts │ ├── ui.de.ts │ ├── ui.en.ts │ ├── ui.es.ts │ ├── ui.fr.ts │ ├── ui.it.ts │ ├── ui.nb_NO.ts │ ├── ui.nl.ts │ ├── ui.pl.ts │ ├── ui.pt.ts │ ├── ui.pt_BR.ts │ ├── ui.pt_PT.ts │ ├── ui.ru.ts │ ├── ui.tr.ts │ └── ui.zh_Hans.ts ├── resources/ │ ├── AppImageLauncher.1.in │ ├── CMakeLists.txt │ ├── ail-cli.desktop │ ├── appimagelauncher-lite-AppRun.sh │ ├── appimagelauncher-lite-installer-common.sh │ ├── appimagelauncher-lite.desktop │ ├── appimagelauncher.desktop │ ├── appimagelauncherd.desktop │ ├── appimagelauncherd.service.in │ ├── appimagelaunchersettings.desktop │ ├── binfmt.d/ │ │ └── appimagelauncher.conf.in │ ├── fallback-icons/ │ │ └── .gitignore │ ├── icons/ │ │ └── generate-icons.sh │ ├── install-scripts/ │ │ ├── post-install.in │ │ └── post-uninstall.in │ └── mime/ │ └── packages/ │ └── appimage.xml └── src/ ├── CMakeLists.txt ├── binfmt-bypass/ │ ├── CMakeLists.txt │ ├── bypass_main.cpp │ ├── elf.cpp │ ├── elf.h │ ├── fix-preload-library.sh │ ├── interpreter_main.cpp │ ├── lib.cpp │ ├── lib.h │ ├── logging.h │ └── preload.c ├── cli/ │ ├── CMakeLists.txt │ ├── cli_main.cpp │ ├── commands/ │ │ ├── CMakeLists.txt │ │ ├── Command.h │ │ ├── CommandFactory.cpp │ │ ├── CommandFactory.h │ │ ├── IntegrateCommand.cpp │ │ ├── IntegrateCommand.h │ │ ├── UnintegrateCommand.cpp │ │ ├── UnintegrateCommand.h │ │ ├── WouldIntegrateCommand.cpp │ │ ├── WouldIntegrateCommand.h │ │ └── exceptions.h │ └── logging/ │ ├── CMakeLists.txt │ └── logging.h ├── daemon/ │ ├── CMakeLists.txt │ ├── daemon.cpp │ ├── daemon.h │ ├── main.cpp │ ├── worker.cpp │ └── worker.h ├── fswatcher/ │ ├── CMakeLists.txt │ ├── filesystemwatcher.cpp │ └── filesystemwatcher.h ├── i18n/ │ ├── CMakeLists.txt │ ├── translationmanager.cpp │ └── translationmanager.h ├── shared/ │ ├── CMakeLists.txt │ ├── shared.cpp │ ├── shared.h │ ├── types.cpp │ └── types.h ├── trashbin/ │ ├── CMakeLists.txt │ ├── trashbin.cpp │ └── trashbin.h └── ui/ ├── CMakeLists.txt ├── first-run.cpp ├── first-run.h ├── first-run.ui ├── integration_dialog.cpp ├── integration_dialog.h ├── integration_dialog.ui ├── main.cpp ├── remove.ui ├── remove_main.cpp ├── resources.qrc ├── settings_dialog.cpp ├── settings_dialog.h ├── settings_dialog.ui ├── settings_main.cpp ├── update.ui ├── update_main.cpp └── update_spinner.qml ================================================ FILE CONTENTS ================================================ ================================================ FILE: .dockerignore ================================================ # ignore everything but ci/ and lib/AppImageUpdate/ci/ # note that the last line that matches a file decides, so ! rules after * decide which files to include * !ci/ !lib/AppImageUpdate/ci/ ================================================ FILE: .github/ISSUE_TEMPLATE/bug_report.yml ================================================ name: "Bug report" description: "Report a bug to help us improve AppImageLauncher" labels: ["bug", "needs verification"] body: - type: markdown attributes: value: | Thank you for making AppImageLauncher better by reporting a bug. Please fill in as much information as possible about your bog so that we do not have to play "information ping-pong" but can help you immediately. If this is the first time you report a bug, please read https://www.chiark.greenend.org.uk/~sgtatham/bugs.html. Please note: this is an issue tracker. ***Questions may not be asked here.*** Instead, please visit the IRC channel `#appimage` on Libera.Chat. See https://docs.appimage.org/contact.html for more information. - type: checkboxes id: pre-submit-checks attributes: label: Pre-submit checks description: | Before submitting a bug report, please make sure you check the following boxes. Otherwise, your issue will not be processed. options: - label: I [checked for similar issues](https://github.com/TheAssassin/AppImageLauncher/issues?q=) beforehand, but could not find any, not even closed ones. I could not add my bug report to any existing issue. required: true - label: I am going to take the time to to fill in all the required details. I know that the bug report will be dismissed otherwise. required: true - type: textarea id: description attributes: label: Describe the bug description: Please describe the bug as precisely as possible. You cannot add too many details, every information is important! placeholder: While clicking on button [...], the application unexpectedly [...] validations: required: true - type: textarea id: expected-behavior attributes: label: Expected behavior description: Describe what you think should have happened instead as precisely as possible. placeholder: "I expected to see [...]" validations: required: true - type: textarea id: to-reproduce attributes: label: Steps to reproduce the issue description: | We need to reproduce the issue in a neutral environment in order to understand what causes it. Please describe the steps needed to do to trigger the bug as detailedly as possible. placeholder: | 1. Go to [...] 2. Click on [...] 3. Scroll down to [...] 4. See the error message - type: textarea id: screenshots attributes: label: Screenshots description: Please add screenshots if possible that visualize your problem and/or show how to reproduce the bug. placeholder: ![screenshot describing the issue](https://raw.githubusercontent.com/TheAssassin/AppImageLauncher/master/resources/doc/screenshot.png) - type: textarea id: distro attributes: label: Distribution and desktop environment description: | We need precise information about your computer's operating system. Please include version numbers. You can find guides about varying distributions and desktop environments on [this Wiki page](https://github.com/TheAssassin/AppImageLauncher/wiki/Find-information-about-distribution-and-desktop-environment). validations: required: true - type: textarea id: appimagelauncher-version attributes: label: Installed AppImageLauncher version description: Please post the output of `AppImageLauncher --appimagelauncher-version`. placeholder: For example, AppImageLauncher version 2.2.0 (git commit ea0984c), built on 2021-12-22 22:03:21 UTC validations: required: true - type: textarea id: appimages-tried attributes: label: List of AppImages you tried (ideally with URL) description: Please post a list of AppImages you tried (including the information whether they work or not, a version number or filename, ideally also a URL) placeholder: | - FreeCAD 0.19.3 (working), https://github.com/FreeCAD/FreeCAD/releases/download/0.19.3/FreeCAD_0.19.3-Linux-Conda_glibc2.12-x86_64.AppImage - Subsurface Divelog 5.0.5 (broken), using download button on https://subsurface.github.io/de/download/ - type: textarea id: additional-context attributes: label: Additional context description: Any other information you'd like to include. ================================================ FILE: .github/ISSUE_TEMPLATE/config.yml ================================================ blank_issues_enabled: false contact_links: - name: 💬 IRC Webchat url: https://web.libera.chat/#appimage about: Chat with the AppImage community in `#appimage` on the Libera.Chat IRC network - name: 💡 AppImageKit issue tracker url: https://github.com/AppImage/AppImageKit about: Issues regarding AppImages in general need to be opened there. - name: 💡 libappimage issue tracker url: https://github.com/AppImage/libappimage about: The right place to open issues about the desktop integration of AppImages. ================================================ FILE: .github/ISSUE_TEMPLATE/feature_request.yml ================================================ name: "Feature request" description: "Suggest an idea for this project" labels: ["enhancement"] body: - type: markdown attributes: value: | Thank you for making AppImageLauncher better by suggesting a feature. Your ideas are highly welcome! It's a tool for you, the users, after all. Please try to describe your proposal as precisely as possible, including as many details as you can. Please don't hesitate to add screenshots or mockups. Please note: this is an issue tracker. ***Questions may not be asked here.*** Instead, please visit the IRC channel `#appimage` on Libera.Chat. See https://docs.appimage.org/contact.html for more - type: checkboxes id: pre-submit-checks attributes: label: Pre-submit checks description: | Before submitting a bug report, please make sure you check the following boxes. Otherwise, your issue will not be processed. options: - label: I checked for similar issues beforehand, but could not find any. I could not add my proposal to any existing issue. required: true - label: I am going to take the time to to fill in all the required details. I know that the bug report will be dismissed otherwise. required: true - type: textarea id: description attributes: label: Feature description description: Is your feature request to a problem? Please describe your suggestion as detailedly as possible. placeholder: I would like to have another button that [...] validations: required: true - type: textarea id: proposed-solution attributes: label: Proposed solution description: Describe the solution you would like to see. placeholder: Instead of the current blue button, I would like a yellow button that says [...] validations: required: true - type: textarea id: alternatives attributes: label: Alternative solutions you considered description: | Please list alternative solutions or features you considered to cover your use case. Ideally, include their pros and cons. - type: textarea id: additional-context attributes: label: Additional context description: Any other information you'd like to include, for instance, screnshots, mockups, etc. --- **Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] **Describe the solution you'd like** A clear and concise description of what you want to happen. **Describe alternatives you've considered** A clear and concise description of any alternative solutions or features you've considered. **Additional context** Add any other context or screenshots about the feature request here. ================================================ FILE: .github/dependabot.yml ================================================ version: 2 updates: - package-ecosystem: "docker" directory: "/ci" schedule: interval: "weekly" - package-ecosystem: "github-actions" directory: "/" schedule: interval: "weekly" ================================================ FILE: .github/workflows/main.yml ================================================ name: Continuous builds on: [push, pull_request, workflow_dispatch] jobs: build: strategy: fail-fast: false matrix: include: - NAME: Packages x86_64 RUNS_ON: ubuntu-24.04 DOCKER_PLATFORM: linux/amd64 - NAME: Packages aarch64 RUNS_ON: ubuntu-24.04-arm DOCKER_PLATFORM: linux/arm64/v8 - NAME: Packages armhf RUNS_ON: ubuntu-24.04-arm DOCKER_PLATFORM: linux/arm/v7 - NAME: Lite AppImage x86_64 RUNS_ON: ubuntu-24.04 DOCKER_PLATFORM: linux/amd64 BUILD_LITE: 1 - NAME: Lite AppImage aarch64 RUNS_ON: ubuntu-24.04-arm DOCKER_PLATFORM: linux/arm64/v8 BUILD_LITE: 1 - NAME: Lite AppImage armhf RUNS_ON: ubuntu-24.04-arm DOCKER_PLATFORM: linux/arm/v7 BUILD_LITE: 1 name: ${{ matrix.NAME }} env: DOCKER_PLATFORM: ${{ matrix.DOCKER_PLATFORM }} DIST: ${{ matrix.DIST }} BUILD_LITE: ${{ matrix.BUILD_LITE }} runs-on: ${{ matrix.RUNS_ON }} steps: - uses: actions/checkout@v6 with: submodules: 'recursive' - name: Login to GitHub Container Registry uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Build in Docker run: bash -ex ci/build-in-docker.sh - name: Archive artifacts uses: actions/upload-artifact@v6 with: name: build ${{ matrix.NAME }} path: | appimagelauncher*.deb* appimagelauncher*.rpm* appimagelauncher*.tar* appimagelauncher-lite-*.AppImage* upload: name: Create release and upload artifacts needs: - build runs-on: ubuntu-latest steps: - name: Download artifacts uses: actions/download-artifact@v8 - name: Inspect directory after downloading artifacts run: ls -alFR - name: Create release and upload artifacts env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} WEBDAV_URL: ${{ secrets.WEBDAV_URL }} WEBDAV_USER: ${{ secrets.WEBDAV_USER }} WEBDAV_PASSWORD: ${{ secrets.WEBDAV_PASSWORD }} APPIMAGE_EXTRACT_AND_RUN: 1 run: | wget -q https://github.com/TheAssassin/pyuploadtool/releases/download/continuous/pyuploadtool-x86_64.AppImage chmod +x pyuploadtool-x86_64.AppImage ./pyuploadtool-x86_64.AppImage **/appimagelauncher*.{deb,rpm,AppImage*} ================================================ FILE: .gitignore ================================================ cmake-build-*/ build*/ *.AppImage* *.deb* *.tar* cmake/GIT_COMMIT squashfs-root/ *.qm resources/l10n/* *.html *.swp *.rpm* ================================================ FILE: .gitmodules ================================================ ================================================ FILE: .idea/codeStyles/Project.xml ================================================ ================================================ FILE: .idea/codeStyles/codeStyleConfig.xml ================================================ ================================================ FILE: BUILD.md ================================================ # How to build AppImageLauncher **Note:** This file was contributed by a user. It may be out of date. If there are no pre-build binaries for your platform you may consider to build AppImageLauncher yourself. Please follow these instructions. ## Download source This step is only required if you would like to build the source from GitHub. *If you have a local copy, please skip this section.* You can download the source either using Git or by mannually downloading a tarball on the [Releases page](https://github.com/TheAssassin/AppImageLauncher/releases). The branch can be customized by setting the `-b` or `--branch` argument. Select `stable` to download the current stable source or use `master` to get the most current unstable source containing the latest features. ```shell git clone https://github.com/TheAssassin/AppImageLauncher.git -b stable cd AppImageLauncher git submodule update --init --recursive ``` ## Dependencies All dependencies need to be installed as development libraries. Some names may differ on your system. - make - cmake - glib-2 - cairo - librsvg - fuse - libarchive - libXpm - qt5 - libcurl - boost For Ubuntu/Debian systems, this might look like: ```bash sudo apt install make cmake libglib2.0-dev libcairo2-dev librsvg2-dev libfuse-dev libarchive-dev libxpm-dev libcurl4-openssl-dev libboost-all-dev qtbase5-dev qtdeclarative5-dev qttools5-dev-tools patchelf libc6-dev libc6-dev gcc-multilib g++-multilib ``` ## Build Please update the `PREFIX` if you want. The prefix is the location the final application will be installed to. Usual locations may be `/usr/local` (default), `/usr`, `~/.local` or `/opt`. ```shell export PREFIX="/usr/local/" mkdir build cd build cmake .. -DCMAKE_INSTALL_PREFIX="$PREFIX" -DUSE_SYSTEM_BOOST=true # See https://github.com/TheAssassin/AppImageLauncher/issues/251 for more details why this is required make libappimage libappimageupdate libappimageupdate-qt cmake . make ``` Now you may create a distribution package or alternatively install the source for testing purpose. *Note: This may harm your system. It's highly recommended to build and install distribution packages instead.* ```shell sudo make install ``` ================================================ FILE: CMakeLists.txt ================================================ cmake_minimum_required(VERSION 3.5) project(AppImageLauncher) # versioning include(cmake/versioning.cmake) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${PROJECT_SOURCE_DIR}/cmake/modules) include(cmake/scripts.cmake) include(cmake/reproducible_builds.cmake) # support for ccache # call CMake with -DUSE_CCACHE=ON to make use of it option(USE_CCACHE OFF) if(USE_CCACHE) find_program(CCACHE ccache) if(CCACHE) message(STATUS "Using ccache") set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ${CCACHE}) set_property(GLOBAL PROPERTY RULE_LAUNCH_LINK ${CCACHE}) else() message(WARNING "USE_CCACHE set, but could not find ccache") endif() endif() # used by Debian packaging infrastructure include(GNUInstallDirs) # if there's a system libappimage package on the system, we can use that directly option(USE_SYSTEM_LIBAPPIMAGE OFF) # if the system version should be used, import globally _before_ including third-party stuff and own executables/libs if(USE_SYSTEM_LIBAPPIMAGE) find_package(libappimage REQUIRED) endif() include(FetchContent) # AppImageUpdate is needed for the updater UI (and libappimage) FetchContent_Declare(AppImageUpdate GIT_REPOSITORY https://github.com/AppImageCommunity/AppImageUpdate.git GIT_TAG 2.0.0-alpha-1-20251018 EXCLUDE_FROM_ALL ) # work around Wimplicit-function-declaration in ancient squashfuse code set(DEPENDENCIES_CFLAGS "-Wno-implicit-function-declaration" CACHE STRING "" FORCE) option(ENABLE_UPDATE_HELPER ON) if(ENABLE_UPDATE_HELPER) # instruct AppImageUpdate to build the Qt UI set(BUILD_QT_UI ON CACHE BOOL "" FORCE) endif() # note: for the time being, we require AppImageUpdate to be fetched during build, even if only to make libappimage available FetchContent_MakeAvailable(AppImageUpdate) # install resources, bundle libraries privately, etc. # initializes important installation destination variables, therefore must be included before adding subdirectories include(cmake/install.cmake) add_subdirectory(src) # contains install configs for resource files add_subdirectory(resources) # translation management add_subdirectory(i18n) ================================================ FILE: CONTRIBUTING.md ================================================ # Contributing to AppImageLauncher There are many ways how you can help improve the AppImageLauncher project. Everyone with some interest in technology, not just developers, can help make the project better. Any contribution is welcome! ## Translations AppImageLauncher is developed in the English language. If you speak any other language (e.g., your mother language or a foreign language), you can help translate AppImageLauncher into that language. To translate AppImageLauncher, you can use the very good [Weblate](https://weblate.org). We run [our own instance](https://translate.assassinate-you.net/projects/appimagelauncher/). Just sign up there and start translating strings. You can also review and improve existing translations. During development, strings regularly change, and new strings are added while olds are removed. Therefore, you're welcome to check from time to time whether there's new work to be done. We appreciate every contribution. ## Documentation & Tutorials AppImageLauncher is a tool for everyone, not just tech savvy people. However, there is a lack of documentation. We invite every interested user to improve our README, add and edit our [Wiki](https://github.com/TheAssassin/AppImageLauncher/wiki), write articles, make (video) tutorials etc. The only limit is your imagination! The README already links to a lot of articles, videos, podcasts and potentially other media. If you find some more and want them to be added to the list, just send a [pull request](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/about-pull-requests). ## Bug reporting If you encounter a problem and consider it to be a bug, please do not hesitate to [open a new issue](https://github.com/TheAssassin/AppImageLauncher/issues/new). Even if you can't help fix the problem, reporting it is required and the only way for you to receive a solution. Also, if the problem is affecting others, too, others can find the discussion online and find out how to solve the issue. Please make sure to add as many details as possible to your bug report. This way, the developers can focus on finding a solution instead of playing information ping-pong. See also: https://www.chiark.greenend.org.uk/~sgtatham/bugs.html (but please don't send bug reports to Simon Tatham!) ## Feature requests You can also [open a new issue](https://github.com/TheAssassin/AppImageLauncher/issues/new) to request new features. If you have an idea and think it might help the users of the project, please don't hesitate to send it to us. Please describe your idea as detailedly as possible. ## Fix bugs and send pull requests If you encounter a bug and have the skill and ability to find the solution even, please feel free to send us a pull request. Any contribution is welcome! ================================================ FILE: LICENSE.txt ================================================ Copyright (C) 2018-2020 TheAssassin Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: README.md ================================================ # AppImageLauncher makes your Linux desktop AppImage ready™

Integrate AppImages to your application launcher with one click, and manage, update and remove them from there. Double-click AppImages to open them, without having to make them executable first. AppImageLauncher plays well with other applications managing AppImages, for example app stores. However, it doesn't depend on any of those, and can run completely standalone.

> ### :smiley: Info on how to install and use AppImageLauncher on the [wiki](https://github.com/TheAssassin/AppImageLauncher/wiki). AppImageLauncher is a novel and unique solution of integrating with the system. It intercepts all attempts to open an AppImage to provide its integration features. Being the launcher for AppImages, AppImageLauncher can control how the system treats AppImages. It integrates them into the system, provides helpers for updating or removing AppImages, and a lot more. On their first execution (i.e., if they have not been integrated yet), it displays a dialog prompting the user whether to run the AppImage once, or move it to a predefined location and adding it to the application menus, launchers, etc. ## Features ### AppImage desktop integration This core feature allows you to integrate AppImages you download into your application menu or launcher, to make it easier for you to launch them. It also takes care of moving them into a central location, where you can find them later. Furthermore, it sets up the update and removal entries in the launcher for you. AppImages use the term "desktop integration", as they're not "installed" in the traditional sense. They remain single, self-contained executable files. AppImageLauncher and other tools extract and patch the [desktop entry](https://specifications.freedesktop.org/desktop-entry-spec/latest/) as well as the related [icons](https://specifications.freedesktop.org/icon-theme-spec/icon-theme-spec-latest.html) into the relevant locations. More information on desktop integration can be found in the [AppImage docs](https://docs.appimage.org/reference/desktop-integration.html). ### Update management After desktop integration, the context menu of the AppImage's entry in the application launcher will have an "Update" entry that launches a little helper tool to apply updates. ### Remove AppImages from system Click the "Remove" entry in the context menu in the application launcher and the removal tool will ask you to confirm. If you choose to do so, the desktop integration is undone, and the file is removed from your system. ### CLI The packages ship with a CLI tool called `ail-cli`, providing basic operations in the terminal, for automation in scripts etc. As of February 2020, only integration and unintegration are supported. More features planned! ## Differences between regular and Lite version From version 1.4.0, there's a *Lite* edition of AppImageLauncher. It provides all of AppImageLauncher you can get without having root access to your computer. AppImageLauncher Lite is shipped as an AppImage, which can be installed by users from the command-line. Enter `./appimagelauncher-lite...AppImage install`. in a terminal, and it integrates itself in the users' home directory. **Traditional packages are highly recommended *if possible*, as they provide many more features and provide a much better overall experience.** *Note: if you're interested in a GUI installer, please consider sending a pull request. More information in [#243](https://github.com/TheAssassin/AppImageLauncher/issues/243).* ## About Currently, desktop environments consider executables a security risk, and would rather have users use the app stores they include. The ability to easily run them, however, isn't all that's needed to provide a good AppImage desktop experience. Making them accessible from the application menus and launchers is a level of "desktop integration" that can't be provided by the AppImages themselves properly (even though some AppImages ship with a "desktop integration script" prompting the user to do so). There are too many impliciations requiring external software, especially regarding cleanup and removal of AppImages. (If applications are simply made executable, they're still spread all over the users' personal files and folders.) The average user will not find a "Downloads" directory full of AppImages with cryptic filenames friendly. Therefore, system-side ways have been developed to perform the desktop integration. One of the first solutions was [appimaged](https://github.com/AppImage/appimaged), a daemon users could install to perform everything automagically in the background, without notifying the user in any way. It scans a predefined set of directories including `~/Downloads` and `~/.bin`, making recognized AppImages executable and then performing the desktop integration. Those operations and monitoring produced a lot of file I/O, so were rather inefficent. Also, many users don't like the lack of control. The approach also opens attack vectors and thus can be considered a security hazard, as a vulnerability discovered in appimaged recently has shown. ## As seen in ### :movie_camera: Tutorials: * [Eric Adams](https://invidio.us/watch?v=D2WA2zdLvVk) ### :sound: Podcasts: * [DLN Xtend 11h](ttps://dlnxtend.com/11) + [Invidious](https://invidio.us/watch?v=yaZygqyN_KE) * [DLN Xtend 14](https://dlnxtend.com/14) + [Invidious](https://invidio.us/watch?v=QCkJ74kOlGQ) ### :page_facing_up: Articles * [Linux Uprising](https://www.linuxuprising.com/2018/04/easily-run-and-integrate-appimage-files.html) (English) * [Linux-OS.net](https://linux-os.net/appimagelauncher-ejecuta-e-integra-facilmente-aplicaciones-en-appimage/) (Spanish) + Same article also available [here](https://blog.desdelinux.net/appimagelauncher-ejecuta-e-integra-facilmente-aplicaciones-en-appimage/). * [Edvaldo Brito](https://www.edivaldobrito.com.br/integrador-appimagelauncher-no-linux/) (Portuguese) * [przystajnik](https://404.g-net.pl/2018/08/appimagelauncher/) (Polish) * [Linux Mint Magyar Közösség](https://linuxmint.hu/blog/2018/12/appimage) (Hungarian) * [FreeYourDesktop](https://medium.com/@freeyourdesktopblog/install-manage-appimages-with-appimagelauncher-2a2078c55f37) (English) + Please note that AppImageLauncher could *not* be "installed" via AppImage at that time, only recently was a Lite version added, that now can be installed from an AppImage (more info to follow.) * [Pardus forum](https://forum.pardus.org.tr/t/appimagelauncher-tek-tiklama-ile-appimage-sisteminizle-butunlestiriniz/11275) (Turkish) * [Linux Team Vietnam](https://linuxteamvietnam.us/cach-chay-ung-dung-dinh-dang-appimage-tren-linux/) (Vietnamese) + Contains a few wrong assumptions: as soon as AppImageLauncher is installed, you do not have to make AppImages executable, you can just double-click them (or otherwise open them, e.g., from your file- or web-browsers' downloads). * [RealLinuxUser](https://www.reallinuxuser.com/15-best-things-to-do-after-installing-zorin-os-15/) (English) * [manjaro.site](https://manjaro.site/how-to-install-appimage-launcher-on-ubuntu-19-04/) (English) * [CubicleNate's Techpad](https://cubiclenate.com/2020/01/09/appimagelauncher-appimage-manager-on-opensuse/) (English) + See also: [CubicleNate's Techpad](https://cubiclenate.com/2020/01/10/noodlings-lighting-the-emby-server-with-kdenlive/) * [CHRIS R MILLER](https://chrisrmiller.com/2019/05/29/integrate-appimages-into-your-linux-distro/) (English) * [doLys Forum](https://dolys.fr/forums/topic/gerer-les-appimage-sous-linux/) (French) * [LINUXUSER](https://linux-user.gr/t/eykolh-chrhsh-efarmogwn-appimage/2066) (Greek) ## Installation ### System-wide Installation AppImageLauncher integrates deeply into the system. Therefore, an installation via native system packages is the preferred way to install AppImageLauncher. This way, AppImageLauncher's package can perform the necessary steps to have your system use it for all AppImage invocations. Compatibility table (likely incomplete.) Please, feel free to open PRs to add distributions. | Release filename | Build system | Compatible distributions (incomplete) | | ---------------- | ------------ | ------------------------------------- | | `appimagelauncher-.xenial_(amd64,i386).deb` | Ubuntu Xenial | Ubuntu Xenial (16.04), Debian Stretch (9), Netrunner 17.01 | | `appimagelauncher-.bionic_(amd64,i386).deb` | Ubuntu Bionic | Ubuntu Bionic (18.04), Ubuntu Disco (19.04), Ubuntu Eoan (19.10) and newer, Debian buster (10) and newer, Netrunner 19.01, 19.08 and newer, LMDE 6 "Faye" | | ~~`appimagelauncher-.disco_(amd64,i386).deb`~~ | ~~Ubuntu Disco~~ | ~~Ubuntu Disco (19.04)~~ | | ~~`appimagelauncher-.eoan_(amd64,i386).deb`~~ | ~~Ubuntu Eoan~~ | ~~Ubuntu Eoan (19.10) and newer~~ | | ~~`appimagelauncher-.buster_(amd64,i386).deb`~~ | ~~Debian Buster~~ | ~~Debian Buster (10) and newer, Netrunner 19.01 and 19.08~~ | | `appimagelauncher-.(i386,x86_64).rpm` | Ubuntu Xenial | openSUSE Leap 42 and newer, possibly openSUSE Tumbleweed, SUSE Enterprise Linux, RHEL 7, CentOS 7 | - Ubuntu Trusty (14.04) and newer - **Important:** Ubuntu Bionic (and newer) broke with the backwards compatibility of its `libcurl` packages, therefore users of these systems need to install the special `bionic` package - Debian stable (Jessie, 8) and newer - Netrunner 17 and newer - openSUSE Leap 42 and newer - openSUSE Tumbleweed The installation of packages on systems with a set of packages similar to one of the listed ones (e.g., Linux Mint, Fedora, etc.) should work as well. Manjaro and Netrunner Rolling users can install AppImageLauncher with a distribution-provided package called `appimagelauncher`. Arch Linux, Manjaro, Antergos and Netrunner Rolling users can use AUR to install AppImageLauncher by installing [appimagelauncher](https://aur.archlinux.org/packages/appimagelauncher) or [appimagelauncher-git](https://aur.archlinux.org/packages/appimagelauncher-git) (possibly broken, see [#574](https://github.com/TheAssassin/AppImageLauncher/issues/574)) (thanks @NuLogicSystems for setting up the build). Other systems derived from the listed ones, such as for instance Linux Mint (Ubuntu), should support AppImageLauncher as well. If they don't, please don't hesitate to create an issue. **Note:** Feel free to request support for other distributions by [opening an issue](https://github.com/TheAssassin/AppImageLauncher/issues/new). ### Build from source Build instructions in [BUILD.md](BUILD.md). ## Background Technical details about how AppImageLauncher registers itself on [this wiki page](https://github.com/TheAssassin/AppImageLauncher/wiki/Idea). ================================================ FILE: ci/.dockerignore ================================================ * !install-deps.sh ================================================ FILE: ci/Dockerfile ================================================ FROM ubuntu:jammy # tell scripts that we're building in an automated release scenario ENV CI=1 # we re-use the DOCKER_PLATFORM to tell the build scripts about the build target architecture without the need to use uname # the build scripts will have to map the architecture to names Debian/RPM/AppImage support ARG DOCKER_PLATFORM ENV DOCKER_PLATFORM="${DOCKER_PLATFORM}" # we need to provide some writable $HOME for the (random) used ID we use in the build script RUN install -d -m 0777 /home/user ENV HOME=/home/user # let the install script do the heavy lifting (easier than replicating the complex behavior in a Dockerfile) COPY install-deps.sh / RUN bash -xe install-deps.sh ================================================ FILE: ci/build-docker-image.sh ================================================ #! /bin/bash if [[ "$DOCKER_PLATFORM" == "" ]]; then echo "Usage: env DOCKER_PLATFORM=... bash $0" exit 1 fi set -euo pipefail # the other script sources this script, therefore we have to support that use case if [[ "${BASH_SOURCE[*]}" != "" ]]; then this_dir="$(readlink -f "$(dirname "${BASH_SOURCE[0]}")")" else this_dir="$(readlink -f "$(dirname "$0")")" fi # we need a "docker-container" type builder to make use of all the buildx features regarding caching and multi-arch # support builder_name="appimagelauncher-builder" if ! docker buildx inspect "$builder_name" &>/dev/null; then echo "Docker builder $builder_name not found, creating" docker buildx create --name="$builder_name" --driver=docker-container --bootstrap else echo "Using existing Docker builder $builder_name found" fi image=ghcr.io/theassassin/appimagelauncher-build branch="$(git rev-parse --abbrev-ref HEAD | tr -c 'A-Za-z0-9-' '_')" # append platform to Docker image tag since we can't push separate (multi-arch) images to the same name without # creating the manifest manually # see https://github.com/docker/build-push-action/issues/671 platform_suffix="$(echo -n "$DOCKER_PLATFORM" | tr -c 'A-Za-z0-9-' '_')" current_branch_tag="${image}:${branch}_${platform_suffix}" master_branch_tag="${image}:master_${platform_suffix}" docker_command=( docker buildx build --builder "$builder_name" --load # --output=type=docker --pull --platform "$DOCKER_PLATFORM" --build-arg DOCKER_PLATFORM="$DOCKER_PLATFORM" # cache from the current branch's image --cache-from type=registry,ref="$current_branch_tag" # we can always cache from the master branch's image --cache-from type=registry,ref="$master_branch_tag" --tag "$current_branch_tag" ) # if we are building on GitHub actions, we can also push the resulting image # we skip pull request builds, though; regular branch builds will push the built images (if possible) # also, skip Dependabot builds, it is not allowed to push images if [[ "${GITHUB_ACTIONS:-}" != "" ]] && [[ "${GITHUB_EVENT_NAME:-}" != "pull_request" ]] && [[ "${GITHUB_ACTOR:-}" != "dependabot"* ]]; then echo "Going to push built image" docker_command+=( --cache-to type=inline --push ) fi docker_command+=( "$this_dir" ) # using inline cache to speed up builds by fetching the image from the GitHub registry first # this should speed up local builds as well # if the image hasn't changed, this should be a no-op "${docker_command[@]}" ================================================ FILE: ci/build-in-docker.sh ================================================ #! /bin/bash if [[ "$DOCKER_PLATFORM" == "" ]]; then echo "Usage: env DOCKER_PLATFORM=... bash $0" exit 1 fi set -x set -euo pipefail cd "$(readlink -f "$(dirname "${BASH_SOURCE[0]}")")" # sets variables $image, $dockerfile source build-docker-image.sh DOCKER_OPTS=() # fix for https://stackoverflow.com/questions/51195528/rcc-error-in-resource-qrc-cannot-find-file-png if [ "${CI:-}" != "" ]; then DOCKER_OPTS+=("--security-opt" "seccomp:unconfined") fi # only if there's more than 3G of free space in RAM, we can build in a RAM disk if [[ "${GITHUB_ACTIONS:-}" != "" ]]; then echo "Building on GitHub actions, which does not support --tmpfs flag -> building on regular disk" elif [[ "$(env LC_ALL=C free -m | grep "Mem:" | awk '{print $4}')" -gt 3072 ]]; then echo "Host system has enough free memory -> building in RAM disk" DOCKER_OPTS+=("--tmpfs" "/docker-ramdisk:exec,mode=777") else echo "Host system does not have enough free memory -> building on regular disk" fi [[ -t 0 ]] && DOCKER_OPTS+=("-t") # run the build with the current user to # a) make sure root is not required for builds # b) allow the build scripts to "mv" the binaries into the /out directory uid="$(id -u)" # run build docker run --platform "$DOCKER_PLATFORM" -e BUILD_LITE -e DIST -e ARCH -e GITHUB_RUN_NUMBER -e GITHUB_RUN_ID --rm -i --user "$uid" -w /ws -e CI=1 \ "${DOCKER_OPTS[@]}" \ -v "$(readlink -f ..):/ws" \ "$current_branch_tag" \ bash ci/build.sh ================================================ FILE: ci/build.sh ================================================ #! /bin/bash set -euo pipefail # use RAM disk if possible if [ -d /dev/shm ] && mount | grep /dev/shm | grep -v -q noexec; then TEMP_BASE=/dev/shm elif [ -d /docker-ramdisk ]; then TEMP_BASE=/docker-ramdisk else TEMP_BASE=/tmp fi BUILD_DIR="$(mktemp -d -p "$TEMP_BASE" AppImageLauncher-build-XXXXXX)" cleanup () { if [ -d "$BUILD_DIR" ]; then rm -rf "$BUILD_DIR" fi } trap cleanup EXIT # store repo root as variable REPO_ROOT="$(readlink -f "$(dirname "${BASH_SOURCE[0]}")"/..)" OLD_CWD="$(readlink -f .)" pushd "$BUILD_DIR" # list available versions of Qt to be able to choose the right one for the build cat <<\EOF ########################## # Available Qt versions: # ########################## EOF qtchooser -list-versions echo # the Docker images provide a clang/clang++ symlink to the actual clang[++] binaries # see install-deps.sh for more information cmake_args=( "-DCMAKE_C_COMPILER=clang" "-DCMAKE_CXX_COMPILER=clang++" "-DCMAKE_INSTALL_PREFIX=/usr" "-DCMAKE_BUILD_TYPE=RelWithDebInfo" "-DBUILD_TESTING=OFF" "-DCMAKE_BUILD_TYPE=RelWithDebInfo" # TODO: we don't necessarily want to hardcode this here "-DBINFMT_INTERPRETER_PATH_PREPEND_LD_P_NATIVE_PACKAGES_PREFIX=/opt/appimagelauncher.AppDir/" ) if [[ "${BUILD_LITE:-}" == "" ]]; then cmake_args+=("-DENABLE_UPDATE_HELPER=ON") else cmake_args+=("-DBUILD_LITE=ON") fi export QT_SELECT=qt5 cmake "$REPO_ROOT" "${cmake_args[@]}" make -j$(nproc) # prepare AppDir make install DESTDIR=AppDir ARCH="$(dpkg --print-architecture)" # "translate" to linuxdeploy/AppImage architecture # note: linuxdeploy and AppImage differ in i386/i686, but we don't support that any more anyway case "$ARCH" in amd64) ARCH=x86_64 ;; arm64) ARCH=aarch64 ;; esac # build release formats curl -LO https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-"$ARCH".AppImage curl -LO https://github.com/linuxdeploy/linuxdeploy-plugin-qt/releases/download/continuous/linuxdeploy-plugin-qt-"$ARCH".AppImage VERSION=$(src/cli/ail-cli --version | awk '{print $3}') gha_build="${GITHUB_RUN_NUMBER:-}" if [[ "$gha_build" != "" ]]; then VERSION="${VERSION}-gha${gha_build}" else VERSION="${VERSION}-local" fi # should be overwritten for every output plugin below, this is a fallback only export LINUXDEPLOY_OUTPUT_APP_NAME=appimagelauncher LINUXDEPLOY_OUTPUT_VERSION="${VERSION}~$(cd "$REPO_ROOT" && git rev-parse --short HEAD)" export LINUXDEPLOY_OUTPUT_VERSION export APPIMAGE_EXTRACT_AND_RUN=1 linuxdeploy_extra_args=() if [[ "${BUILD_LITE:-}" == "" ]]; then # configure linuxdeploy-plugin-native_packages export LDNP_PACKAGE_NAME=appimagelauncher export LDNP_BUILD="deb rpm" export LDNP_DESCRIPTION="" export LDNP_SHORT_DESCRIPTION="" rpm_lib_suffix="" case "$ARCH" in x86_64) rpm_build_arch=x86_64 rpm_lib_suffix="()(64bit)" deb_build_arch=amd64 ;; i?86) rpm_build_arch=i386 deb_build_arch=i386 ;; aarch64) rpm_build_arch=aarch64 deb_build_arch=arm64 ;; armhf) deb_build_arch=armhf rpm_build_arch=armv7hl ;; *) echo "Unsupported architecture: $ARCH" exit 2 ;; esac # common meta info export LDNP_META_URL="https://github.com/TheAssassin/AppImageLauncher" export LDNP_META_BUG_URL="https://github.com/TheAssassin/AppImageLauncher/issues" export LDNP_META_VENDOR="TheAssassin" export LDNP_META_DEB_DEPENDS="systemd, libgl1, libfontconfig1, libharfbuzz0b, libfribidi0" export LDNP_META_DEB_ARCHITECTURE="$deb_build_arch" export LDNP_META_DEB_PRE_DEPENDS="bash" export LDNP_DEB_EXTRA_DEBIAN_FILES="${BUILD_DIR}/cmake/debian/postinst;${BUILD_DIR}/cmake/debian/postrm" rpm_requires=( "systemd" "libGL.so.1${rpm_lib_suffix}" "libfontconfig.so.1${rpm_lib_suffix}" "libfreetype.so.6${rpm_lib_suffix}" "libfribidi.so.0${rpm_lib_suffix}" "libgpg-error.so.0${rpm_lib_suffix}" "libharfbuzz.so.0${rpm_lib_suffix}" ) export LDNP_META_RPM_REQUIRES="${rpm_requires[*]}" export LDNP_META_RPM_BUILD_ARCH="$rpm_build_arch" export LDNP_RPM_SCRIPTLET_POST="${BUILD_DIR}/cmake/debian/postinst" export LDNP_RPM_SCRIPTLET_PREUN="${BUILD_DIR}/cmake/debian/postrm" # updater is not available for the lite build linuxdeploy_extra_args+=( -e "$(find AppDir/usr/lib/*/appimagelauncher/update | head -n1)" --output native_packages ) # tools like pipx would have side effects on the build host and it's generally a bit overkill for our purpose if which python3.13 &> /dev/null; then # python3.13, installed from the deadsnakes PPA for the Docker builds python3() { python3.13 "$@" } fi python3 -m venv venv venv/bin/pip install git+https://github.com/linuxdeploy/linuxdeploy-plugin-native_packages export PATH="$PWD/venv/bin:$PATH" else linuxdeploy_extra_args+=( --custom-apprun "$REPO_ROOT"/resources/appimagelauncher-lite-AppRun.sh --output appimage ) LDAI_OUTPUT="$(echo appimagelauncher-lite-"$VERSION"-"$ARCH".AppImage | tr '~' -)" export LDAI_OUTPUT # since we extracted common parts from the installer built into the AppRun script, we have to copy the "library" script # before building an AppImage install "$REPO_ROOT"/resources/appimagelauncher-lite-installer-common.sh "$(readlink -f AppDir/)" fi chmod -v +x linuxdeploy*-"$ARCH".AppImage # workaround for QEMU for appimage in *.AppImage; do dd if=/dev/zero bs=1 count=3 seek=8 conv=notrunc of="$appimage" done ldd AppDir/usr/bin/AppImageLauncherSettings ./linuxdeploy-"$ARCH".AppImage -v0 \ --appdir "$(readlink -f AppDir)" \ --plugin qt \ -d AppDir/usr/share/applications/appimagelauncher.desktop \ -e "$(find AppDir/usr/lib/*/appimagelauncher/remove | head -n1)" \ "${linuxdeploy_extra_args[@]}" if [[ "${BUILD_LITE:-}" == "" ]]; then mv "$LDNP_PACKAGE_NAME"*.{rpm,deb} "$OLD_CWD" else mv "$LDAI_OUTPUT" "$OLD_CWD" fi ================================================ FILE: ci/install-deps.sh ================================================ #! /bin/bash set -euo pipefail if [[ "$DOCKER_PLATFORM" == "" ]]; then echo "Usage: env DOCKER_PLATFORM=... bash $0" exit 2 fi if [[ "$CI" == "" ]]; then echo "Caution: this script is supposed to run inside a (disposable) CI environment" echo "It will alter a system, and should not be run on workstations or alike" echo "You can export CI=1 to prevent this error from being shown again" exit 3 fi case "$DOCKER_PLATFORM" in linux/amd64|linux/arm/v7|linux/arm64/v8) ;; *) echo "Error: unsupported architecture: $DOCKER_PLATFORM" exit 4 ;; esac set -x # this array collects all the packages we want to install # running as few operations as possible is a runtime optimization packages=() # install 32-bit build dependencies and multilib/cross compilers for binfmt-bypass's 32-bit preload library # must be done before apt-get update, otherwise the packages cannot be found during installation if [[ "$DOCKER_PLATFORM" == "linux/amd64" ]]; then dpkg --add-architecture i386 packages+=( libc6-dev:i386 ) elif [[ "$DOCKER_PLATFORM" == "linux/arm64/v8" ]]; then dpkg --add-architecture armhf packages+=( libc6-dev:armhf ) fi export DEBIAN_FRONTEND=noninteractive # allow setup of PPA apt-get update apt-get install -y software-properties-common # we depend on the deadsnakes PPA to provide a sufficiently recent Python to linuxdeploy-plugin-native_packages add-apt-repository -y ppa:deadsnakes/ppa packages=( libcurl4-openssl-dev libfuse-dev desktop-file-utils libglib2.0-dev libcairo2-dev libssl-dev ca-certificates libbsd-dev qttools5-dev-tools make build-essential git automake autoconf libtool patch wget curl vim-common desktop-file-utils pkg-config libarchive-dev libboost-filesystem-dev librsvg2-dev librsvg2-bin libssl-dev rpm rpm2cpio liblzma-dev # cross-compiling for 32-bit is only really easy with clang, where we can specify the target as a compiler option # clang -target arm-linux-gnueabihf ... clang qtbase5-dev qt5-qmake qtdeclarative5-dev # libappimage libgcrypt-dev argagg-dev nlohmann-json3-dev libgpgme-dev libzstd-dev # linuxdeploy-plugin-native_packages # see also above re. deadsnakes PPA python3.13-venv ) # headless install export DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install "${packages[@]}" # install more recent CMake and patchelf cmake_arch="$(dpkg --print-architecture)" case "$cmake_arch" in amd64) cmake_arch=x86_64 ;; arm64) cmake_arch=aarch64 ;; armhf) patchelf_arch=armv7l ;; esac patchelf_arch="${patchelf_arch:-$cmake_arch}" curl -L https://artifacts.assassinate-you.net/prebuilt-cmake/cmake-v3.29.6-ubuntu-jammy-"${cmake_arch}".tar.gz | \ tar xz --strip-components=1 -C /usr curl -L https://github.com/NixOS/patchelf/releases/download/0.18.0/patchelf-0.18.0-"$patchelf_arch".tar.gz | tar xz -C/usr/local # g{cc,++}-multilib usually install these dependencies for us # however, as the multilib stuff is not available for ARM, we have to install these dev packages ourselves # we can't really predict the names of the packages (they differ on different distros/releases) # therefore, we have to install the other dependencies first to be able to query them with dpkg -l if [[ "$DOCKER_PLATFORM" == "linux/arm64/v8" ]] || [[ "$DOCKER_PLATFORM" == "linux/amd64" ]]; then if [[ "$DOCKER_PLATFORM" == "linux/amd64" ]]; then arch_32bit=i386 elif [[ "$DOCKER_PLATFORM" == "linux/arm64/v8" ]]; then arch_32bit=armhf else echo "Cannot determine 32-bit architecture matching 64-bit architecture $ARCH" exit 6 fi apt-get install -y \ "$(dpkg -l | grep libgcc | grep dev | awk '{print $2}' | cut -d: -f1 | uniq)":"$arch_32bit" \ "$(dpkg -l | grep libstdc++ | grep dev | awk '{print $2}' | cut -d: -f1 | uniq)":"$arch_32bit" fi ================================================ FILE: cmake/install.cmake ================================================ # required by file(CHMOD ...) cmake_minimum_required(VERSION 3.19) # define private libraries install destination include(GNUInstallDirs) # debugging: libdir should be lib/ message(STATUS "CMAKE_INSTALL_LIBDIR: ${CMAKE_INSTALL_LIBDIR}") if(NOT IS_ABSOLUTE ${CMAKE_INSTALL_LIBDIR}) set(_libdir ${CMAKE_INSTALL_LIBDIR}) else() file(RELATIVE_PATH _libdir ${CMAKE_INSTALL_LIBDIR} ${CMAKE_INSTALL_PREFIX}) endif() set(_private_libdir ${_libdir}/appimagelauncher) # calculate relative path from binary install destination to private library install dir if(NOT IS_ABSOLUTE ${CMAKE_INSTALL_BINDIR}) set(_bindir ${CMAKE_INSTALL_BINDIR}) else() file(RELATIVE_PATH _bindir ${CMAKE_INSTALL_BINDIR} ${CMAKE_INSTALL_PREFIX}) #set(_bindir ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_BINDIR}) endif() set(_abs_bindir ${CMAKE_INSTALL_PREFIX}/${_bindir}) set(_abs_private_libdir ${CMAKE_INSTALL_PREFIX}/${_private_libdir}) file(RELATIVE_PATH _rpath ${_abs_bindir} ${_abs_private_libdir}) set(_rpath "\$ORIGIN/${_rpath}") # install libappimage.so into lib/appimagekit to avoid overwriting a libappimage potentially installed into /usr/lib # or /usr/lib/x86_64-... or wherever the OS puts its libraries install( TARGETS libappimage LIBRARY DESTINATION "${_private_libdir}" COMPONENT APPIMAGELAUNCHER ) if(ENABLE_UPDATE_HELPER) install( TARGETS libappimageupdate libappimageupdate-qt LIBRARY DESTINATION "${_private_libdir}" COMPONENT APPIMAGELAUNCHER ) endif() option(BINFMT_INTERPRETER_PATH_PREPEND_LD_P_NATIVE_PACKAGES_PREFIX "") if(NOT BUILD_LITE) # unfortunately, due to a cyclic dependency, we need to hardcode parts of this variable, which is included in the # install scripts and the binfmt.d config set(BINFMT_INTERPRETER_PATH ${CMAKE_INSTALL_PREFIX}/${_private_libdir}/binfmt-interpreter) if(BINFMT_INTERPRETER_PATH_PREPEND_LD_P_NATIVE_PACKAGES_PREFIX) message(STATUS "Prepending prefix ${BINFMT_INTERPRETER_PATH_PREPEND_LD_P_NATIVE_PACKAGES_PREFIX} to binfmt interpreter path") set(BINFMT_INTERPRETER_PATH "${BINFMT_INTERPRETER_PATH_PREPEND_LD_P_NATIVE_PACKAGES_PREFIX}${BINFMT_INTERPRETER_PATH}") endif() # according to https://www.kernel.org/doc/html/latest/admin-guide/binfmt-misc.html, we must make sure the # interpreter string does not exceed 127 characters set(BINFMT_INTERPRETER_PATH_LENGTH_MAX 127) string(LENGTH BINFMT_INTERPRETER_PATH BINFMT_INTERPRETER_PATH_LENGTH) if(BINFMT_INTERPRETER_PATH_LENGTH GREATER BINFMT_INTERPRETER_PATH_LENGTH_MAX) message(FATAL_ERROR "interpreter path exceeds maximum length of ${BINFMT_INTERPRETER_PATH_LENGTH_MAX}") endif() # binfmt.d config file -- used as a fallback, if update-binfmts is not available configure_file( ${PROJECT_SOURCE_DIR}/resources/binfmt.d/appimagelauncher.conf.in ${PROJECT_BINARY_DIR}/resources/binfmt.d/appimagelauncher.conf @ONLY ) # caution: don't use ${CMAKE_INSTALL_LIBDIR} here, it's really just lib/binfmt.d install( FILES ${PROJECT_BINARY_DIR}/resources/binfmt.d/appimagelauncher.conf DESTINATION lib/binfmt.d COMPONENT APPIMAGELAUNCHER ) # prepare postinst and prerm hooks to Debian package configure_file( ${PROJECT_SOURCE_DIR}/resources/install-scripts/post-install.in ${PROJECT_BINARY_DIR}/cmake/debian/postinst @ONLY ) configure_file( ${PROJECT_SOURCE_DIR}/resources/install-scripts/post-uninstall.in ${PROJECT_BINARY_DIR}/cmake/debian/postrm @ONLY ) endif() # install systemd service configuration for appimagelauncherd configure_file( ${PROJECT_SOURCE_DIR}/resources/appimagelauncherd.service.in ${PROJECT_BINARY_DIR}/resources/appimagelauncherd.service @ONLY ) # caution: don't use ${CMAKE_INSTALL_LIBDIR} here, it's really just lib/systemd/user install( FILES ${PROJECT_BINARY_DIR}/resources/appimagelauncherd.service DESTINATION lib/systemd/user/ COMPONENT APPIMAGELAUNCHER ) ================================================ FILE: cmake/modules/FindINotify.cmake ================================================ find_path(INOTIFY_INCLUDE_DIR sys/inotify.h PATH_SUFFIXES inotify) find_library(INOTIFY_LIBRARY inotify) include(FindPackageHandleStandardArgs) find_package_handle_standard_args(INotify DEFAULT_MSG INOTIFY_INCLUDE_DIR) IF(INOTIFY_FOUND) set(INotify_INCLUDE_DIRS ${INOTIFY_INCLUDE_DIR}) add_library(inotify IMPORTED INTERFACE) set_property(TARGET inotify PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${INOTIFY_INCLUDE_DIRS}) ENDIF(INOTIFY_FOUND) ================================================ FILE: cmake/reproducible_builds.cmake ================================================ # this little snippet makes sure that no absolute paths end up in the binaries built by CMake # it will replace such paths with relative ones # see https://reproducible-builds.org/docs/build-path/ for more information cmake_minimum_required(VERSION 3.5) include(CheckCCompilerFlag) if(CMAKE_BUILD_TYPE STREQUAL Release) message(STATUS "Release build detected, enabling reproducible builds mode") get_filename_component(abs_source_path ${PROJECT_SOURCE_DIR} ABSOLUTE) file(RELATIVE_PATH rel_source_path ${PROJECT_BINARY_DIR} ${PROJECT_SOURCE_DIR}) set(map_fix ${abs_source_path}=${rel_source_path}) # can only add flags when the compiler supports them # known working compilers: GCC >= 8 foreach(type debug macro) set(flag_name -f${type}-prefix-map) set(flags ${flag_name}=${map_fix}) check_c_compiler_flag(${flags} ${type}_prefix_map_flag_available) if(${type}_prefix_map_flag_available) set(extra_flags "${extra_flags} ${flags}") else() message(WARNING "${flag_name} not available, cannot enable full reproducible builds mode") endif() endforeach() set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${extra_flags}") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${extra_flags}") set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${extra_flags}") endif() ================================================ FILE: cmake/scripts.cmake ================================================ # borrowed from libappimage if(NOT COMMAND check_program) function(check_program) set(keywords FORCE_PREFIX) set(oneValueArgs NAME) cmake_parse_arguments(ARG "${keywords}" "${oneValueArgs}" "" "${ARGN}") if(NOT ARG_NAME) message(FATAL_ERROR "NAME argument required for check_program") endif() if(TOOLS_PREFIX) set(prefix ${TOOLS_PREFIX}) endif() message(STATUS "Checking for program ${ARG_NAME}") string(TOUPPER ${ARG_NAME} name_upper) if(prefix) # try prefixed version first find_program(${name_upper} ${prefix}${ARG_NAME}) endif() # try non-prefixed version if(NOT ${name_upper}) if(TOOLS_PREFIX AND ARG_FORCE_PREFIX) message(FATAL_ERROR "TOOLS_PREFIX set, but could not find program with prefix in PATH (FORCE_PREFIX is set)") endif() find_program(${name_upper} ${ARG_NAME}) if(NOT ${name_upper}) message(FATAL_ERROR "Could not find required program ${ARG_NAME}.") endif() endif() message(STATUS "Found program ${ARG_NAME}: ${${name_upper}}") mark_as_advanced(${name_upper}) endfunction() endif() ================================================ FILE: cmake/toolchains/i386-linux-gnu.cmake ================================================ # this toolchain file works for cross compiling on Ubuntu when the following prerequisites are given: # - all dependencies that would be needed for a normal build must be installed as i386 versions # - building XZ/liblzma doesn't work yet, so one has to install liblzma-dev:i386 and set -DUSE_SYSTEM_XZ=ON # - building GTest doesn't work yet, so one has to install libgtest-dev:i386 and set -DUSE_SYSTEM_GTEST=ON # - building libarchive doesn't work yet, so one has to install liblzma-dev:i386 and set -DUSE_SYSTEM_LIBARCHIVE=ON (TODO: link system libarchive statically like liblzma) # some of the packets interfere with their x86_64 version (e.g., libfuse-dev:i386, libglib2-dev:i386), so building on a # normal system will most likely not work, but on systems like Travis it should work fine set(CMAKE_SYSTEM_NAME Linux CACHE STRING "" FORCE) set(CMAKE_SYSTEM_PROCESSOR i386 CACHE STRING "" FORCE) set(CMAKE_C_FLAGS "-m32" CACHE STRING "" FORCE) set(CMAKE_CXX_FLAGS "-m32" CACHE STRING "" FORCE) # CMAKE_SHARED_LINKER_FLAGS, CMAKE_STATIC_LINKER_FLAGS etc. must not be set, but CMAKE_EXE_LINKER_FLAGS is necessary set(CMAKE_EXE_LINKER_FLAGS "-m32" CACHE STRING "" FORCE) set(DEPENDENCIES_CFLAGS "-m32" CACHE STRING "" FORCE) set(DEPENDENCIES_CPPFLAGS "-m32" CACHE STRING "" FORCE) set(DEPENDENCIES_LDFLAGS "-m32" CACHE STRING "" FORCE) # host = target system # build = build system # both must be specified set(EXTRA_CONFIGURE_FLAGS "--host=i686-pc-linux-gnu" "--build=x86_64-pc-linux-gnu" CACHE STRING "" FORCE) # may help with some rare issues set(CMAKE_PREFIX_PATH /usr/lib/i386-linux-gnu CACHE STRING "" FORCE) # makes sure that at least on Ubuntu pkg-config will search for the :i386 packages set(ENV{PKG_CONFIG_PATH} /usr/lib/i386-linux-gnu/pkgconfig/ CACHE STRING "" FORCE) # make qtchooser find qt5 set(ENV{QT_SELECT} qt5 CACHE STRING "" FORCE) ================================================ FILE: cmake/versioning.cmake ================================================ set(V_MAJOR 3) set(V_MINOR 0) set(V_PATCH 0) set(V_SUFFIX "-beta-2") set(APPIMAGELAUNCHER_VERSION ${V_MAJOR}.${V_MINOR}.${V_PATCH}${V_SUFFIX}) # check whether git is available find_program(GIT git) set(GIT_COMMIT_CACHE_FILE "${PROJECT_SOURCE_DIR}/cmake/GIT_COMMIT") if(NOT GIT STREQUAL "GIT-NOTFOUND") # read Git revision ID # WARNING: this value will be stored in the CMake cache # to update it, you will have to reset the CMake cache # (doesn't matter for CI builds like Travis for instance, where there's no permanent CMake cache) execute_process( COMMAND git rev-parse --short HEAD WORKING_DIRECTORY ${PROJECT_SOURCE_DIR} OUTPUT_VARIABLE APPIMAGELAUNCHER_GIT_COMMIT OUTPUT_STRIP_TRAILING_WHITESPACE ERROR_QUIET RESULT_VARIABLE GIT_RESULT ) if(GIT_RESULT EQUAL 0) message(STATUS "Storing git commit ID in cache file") file(WRITE "${GIT_COMMIT_CACHE_FILE}" "${APPIMAGELAUNCHER_GIT_COMMIT}") endif() endif() if(NOT GIT_RESULT EQUAL 0) # git call failed or git hasn't been found, might happen when calling CMake in an extracted source tarball # therefore we try to find the git commit cache file # if it doesn't exist, refuse to configure message(WARNING "Failed to gather commit ID via git command, trying to read cache file") if(EXISTS "${GIT_COMMIT_CACHE_FILE}") file(READ "${GIT_COMMIT_CACHE_FILE}" APPIMAGELAUNCHER_CACHED_GIT_COMMIT) mark_as_advanced(FORCE APPIMAGELAUNCHER_CACHED_GIT_COMMIT) string(REPLACE "\n" "" APPIMAGELAUNCHER_GIT_COMMIT "${APPIMAGELAUNCHER_CACHED_GIT_COMMIT}") else() message(FATAL_ERROR "Could not find git commit cache file, git commit ID not available for versioning") endif() endif() if("${APPIMAGELAUNCHER_GIT_COMMIT}" STREQUAL "") message(FATAL_ERROR "Invalid git commit ID: ${APPIMAGELAUNCHER_GIT_COMMIT}") endif() message(STATUS "Git commit: ${APPIMAGELAUNCHER_GIT_COMMIT}") mark_as_advanced(FORCE APPIMAGELAUNCHER_GIT_COMMIT) # add build number based on GitHub actions build number if possible if("$ENV{GITHUB_RUN_NUMBER}" STREQUAL "") set(APPIMAGELAUNCHER_BUILD_NUMBER "") else() set(APPIMAGELAUNCHER_BUILD_NUMBER "$ENV{GITHUB_RUN_NUMBER}") endif() # get current date execute_process( COMMAND env LC_ALL=C date -u "+%Y-%m-%d %H:%M:%S %Z" OUTPUT_VARIABLE APPIMAGELAUNCHER_BUILD_DATE OUTPUT_STRIP_TRAILING_WHITESPACE ) add_definitions(-DAPPIMAGELAUNCHER_VERSION="${APPIMAGELAUNCHER_VERSION}") add_definitions(-DAPPIMAGELAUNCHER_GIT_COMMIT="${APPIMAGELAUNCHER_GIT_COMMIT}") add_definitions(-DAPPIMAGELAUNCHER_BUILD_NUMBER="${APPIMAGELAUNCHER_BUILD_NUMBER}") add_definitions(-DAPPIMAGELAUNCHER_BUILD_DATE="${APPIMAGELAUNCHER_BUILD_DATE}") ================================================ FILE: i18n/CMakeLists.txt ================================================ # lupdate must be installed and available check_program(NAME lupdate) check_program(NAME lrelease) # create target calling custom commands add_custom_target(i18n) # create/update AppImageLauncher strings function(ail_generate_translations) if(ARGC LESS 2) message(ERROR "ail_generate_translations called with wrong amount of arguments") endif() add_custom_command( TARGET i18n POST_BUILD COMMAND ${LUPDATE} "${ARGV0}" -ts "${ARGV1}" -locations relative WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} ) endfunction() ail_generate_translations(../src/ ui.en.ts) file(GLOB TS_FILES *.ts) foreach(TS_FILE IN LISTS TS_FILES) get_filename_component(TS_FILENAME ${TS_FILE} NAME) ail_generate_translations(../src/ ${TS_FILENAME}) endforeach() add_custom_command( TARGET i18n POST_BUILD COMMAND ./auto-translate.py ui.en.ts WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} ) add_custom_target(l10n ALL) # generate Qt qm files from translation source files function(ail_generate_qm) if(ARGC LESS 2) message(ERROR "ail_generate_translations called with wrong amount of arguments") endif() add_custom_command( TARGET l10n POST_BUILD COMMAND ${LRELEASE} "${ARGV0}" -qm "${ARGV1}" WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} ) endfunction() file(GLOB TS_FILES *.ts) set(target_dir ${CMAKE_CURRENT_BINARY_DIR}/generated/l10n) foreach(TS_FILE IN LISTS TS_FILES) get_filename_component(TS_FILENAME ${TS_FILE} NAME) string(REPLACE .ts .qm QM_FILENAME ${TS_FILENAME}) ail_generate_qm(${TS_FILENAME} ${target_dir}/${QM_FILENAME}) endforeach() # deploy JSON files file(GLOB JSON_FILES *.json) foreach(JSON_FILE IN LISTS JSON_FILES) get_filename_component(JSON_FILENAME ${JSON_FILE} NAME) add_custom_command( TARGET l10n POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy ${JSON_FILENAME} ${target_dir}/${JSON_FILENAME} WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} ) endforeach() # empty directories aren't tracked by Git # therefore the directory needs to be created by CMake file(MAKE_DIRECTORY ${target_dir}) install( DIRECTORY ${target_dir} DESTINATION ${CMAKE_INSTALL_DATADIR}/appimagelauncher COMPONENT APPIMAGELAUNCHER ) ================================================ FILE: i18n/auto-translate.py ================================================ #! /usr/bin/env python3 import sys from xml.etree import ElementTree as ET def copy_sources_to_translations(root: ET.Element): for context in root.findall("context"): for message in context.findall("message"): source = message.find("source") translation = message.find("translation") translation.text = source.text if "type" in translation.attrib: if translation.attrib["type"] in ("", "unfinished"): del translation.attrib["type"] def main(): with open(sys.argv[1]) as f: et = ET.parse(f) root = et.getroot() copy_sources_to_translations(root) with open(sys.argv[1], "wb") as f: f.write(ET.tostring(root)) if __name__ == "__main__": main() ================================================ FILE: i18n/desktopfiles.ast.json ================================================ { "Desktop Action remove/Name": "Desaniciar AppImage del sistema", "Desktop Action update/Name": "Anovar AppImage" } ================================================ FILE: i18n/desktopfiles.cs.json ================================================ { "Desktop Action update/Name": "Aktualizovat AppImage", "Desktop Action remove/Name": "Odebrat AppImage ze systému" } ================================================ FILE: i18n/desktopfiles.de.json ================================================ { "Desktop Action remove/Name": "Dieses AppImage löschen", "Desktop Action update/Name": "Dieses AppImage aktualisieren" } ================================================ FILE: i18n/desktopfiles.en.json ================================================ { "Desktop Action remove/Name": "Delete this AppImage", "Desktop Action update/Name": "Update this AppImage" } ================================================ FILE: i18n/desktopfiles.es.json ================================================ { "Desktop Action remove/Name": "Eliminar Appimage del Sistema", "Desktop Action update/Name": "Actualizar Appimage" } ================================================ FILE: i18n/desktopfiles.fr.json ================================================ { "Desktop Action remove/Name": "Supprimer cette AppImage", "Desktop Action update/Name": "Mettre à jour l'AppImage" } ================================================ FILE: i18n/desktopfiles.it.json ================================================ { "Desktop Action remove/Name": "Rimuovi questa AppImage", "Desktop Action update/Name": "Aggiorna questa AppImage" } ================================================ FILE: i18n/desktopfiles.ko.json ================================================ { "Desktop Action remove/Name": "이 AppImage 삭제", "Desktop Action update/Name": "이 AppImage 업데이트" } ================================================ FILE: i18n/desktopfiles.nb_NO.json ================================================ { "Desktop Action update/Name": "Oppdater AppImage", "Desktop Action remove/Name": "Slett AppImage" } ================================================ FILE: i18n/desktopfiles.nl.json ================================================ { "Desktop Action remove/Name": "AppImage deïnstalleren", "Desktop Action update/Name": "AppImage bijwerken" } ================================================ FILE: i18n/desktopfiles.pl.json ================================================ { "Desktop Action remove/Name": "Usuń AppImage z systemu", "Desktop Action update/Name": "Uaktualnij AppImage" } ================================================ FILE: i18n/desktopfiles.pt.json ================================================ { "Desktop Action remove/Name": "Remover AppImage do sistema", "Desktop Action update/Name": "Atualizar AppImage" } ================================================ FILE: i18n/desktopfiles.pt_BR.json ================================================ { "Desktop Action remove/Name": "Remover AppImage do sistema", "Desktop Action update/Name": "Atualizar AppImage" } ================================================ FILE: i18n/desktopfiles.ru.json ================================================ { "Desktop Action remove/Name": "Удалить AppImage", "Desktop Action update/Name": "Обновить AppImage" } ================================================ FILE: i18n/desktopfiles.tr.json ================================================ { "Desktop Action update/Name": "Bu AppImage uygulamasını güncelle", "Desktop Action remove/Name": "Bu AppImage uygulamasını sil" } ================================================ FILE: i18n/desktopfiles.zh_Hans.json ================================================ { "Desktop Action remove/Name": "删除此 AppImage", "Desktop Action update/Name": "更新此 AppImage" } ================================================ FILE: i18n/ui.ast.ts ================================================ FirstRunDialog First run <html><head/><body><p><span style=" font-size:11pt; font-weight:600;">Welcome to AppImageLauncher!</span></p><p>This little helper is designed to improve your AppImage experience on your computer.</p><p>It appears you have never run AppImageLauncher before. Please take a minute and configure your preferences. You can always change these later on, using the control panel.</p></body></html> Ask me whether to move new AppImages into a central location Integration target destination directory: Customize Choose integration destination dir (default) IntegrationDialog Desktop Integration Icon <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Noto Sans'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">%1 has not been integrated into your system.</p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> <br />Integrating it will move the AppImage into a predefined location, and include it in your application launcher.</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">To remove or update the AppImage, please use the context menu of the application icon in your task bar or launcher. </p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The directory where the integrated AppImages are stored in is currently set to: %2</p></body></html> Integrate and run Run once QMessageBox Warning AppImage %1 has already been integrated, but it is not in the current integration destination directory. Do you want to move it into the new destination? Choosing No will run the AppImage once, and leave the AppImage in its current directory. Failed to unregister AppImage before re-integrating it Could not parse desktop file translations: Could not open file for reading: %1 Could not parse desktop file translations: Invalid syntax: %1 File %1 is owned by another user: %2 Permissions problem Error Failed to run permissions helper, exited with return code %1 Could not find suitable permissions helper, aborting QObject Error AppImageLauncher does not support type %1 AppImages at the moment. Could not make AppImage executable: %1 execv() failed: %1 Usage: %1 [options] <path> Desktop integration helper for AppImages, for use by Linux distributions. Options: Display this help and exit Display version and exit Arguments: Path to AppImage (mandatory) Unexpected result from the integration dialog. Failed to clean up old desktop files Failed to clean up AppImage trash bin: %1 Unknown AppImageLauncher option: %1 Error: no such file or directory: %1 Not an AppImage: %1 The directory the integrated AppImages are stored in is currently set to: %1 Helper to delete integrated AppImages easily, e.g., from the application launcher's context menu Path to AppImage <path> AppImage delete helper error Not an AppImage: %1 Failed to unregister AppImage: %1 Failed to move AppImage into trash bin directory AppImage with same filename has already been integrated. Do you wish to overwrite the existing AppImage? Choosing No will run the AppImage once, and leave the system in its current state. Warning Failed to register AppImage in system via libappimage Failed to find integrated desktop file Couldn't find integrated AppImage's desktop file Failed to load desktop file: AppImage has invalid desktop file Failed to move AppImage to target location. Try to copy AppImage instead? Failed to call stat() on path: %1 Updates AppImages after desktop integration, for use by Linux distributions AppImageLauncher update update helper app name No updates found Could not find updates for AppImage %1 No update information found Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to embed update information to allow for easy updating. Failed to check for updates: %1 An update has been found for the AppImage %1 Do you want to perform the update? Remove old AppImage after successful update Failed to update AppImage: %1 File reported as updated does not exist: %1 Failed to register updated AppImage in system Failed to unregister old AppImage in system Failed to remove old AppImage Tracks AppImages in applications directories (user's, system and other ones). Automatically integrates AppImages moved into those directories and unintegrates ones removed from them. Lists directories watched by this daemon and exit RemoveDialog Delete AppImage <html><head/><body><p>Are you sure you want to delete this AppImage?</p></body></html> %1 SettingsDialog AppImageLauncher Settings Launcher Dialog Ask whether to move AppImage files into the applications directory General settings <html><head/><body><p>When this box is checked, AppImageLauncher automatically starts a daemon called appimagelauncherd.</p><p>This daemon automatically integrates AppImages you copy into the &quot;Applications directory&quot; and the additional directories you configured. When the files are deleted, the daemon will clean up the integration data.</p></body></html> Auto start auto-integration daemon Additional directories to watch Add new directory to list Remove selected directory from list Applications directory path Location where to store your AppImage files to ease their management Available Features updater available for AppImages supporting AppImageUpdate updater unavailable <strong>Note: this is an AppImageLauncher Lite build, only supports a limited set of features</strong><br />Please install the full version via the provided native packages to enjoy the full AppImageLauncher experience Select Applications directory Select additional directory to watch ================================================ FILE: i18n/ui.cs.ts ================================================ FirstRunDialog First run První spuštění <html><head/><body><p><span style=" font-size:11pt; font-weight:600;">Welcome to AppImageLauncher!</span></p><p>This little helper is designed to improve your AppImage experience on your computer.</p><p>It appears you have never run AppImageLauncher before. Please take a minute and configure your preferences. You can always change these later on, using the control panel.</p></body></html> <html><head/><body><p><span style=" font-size:11pt; font-weight:600;">Vítejte v aplikaci AppImageLauncher!</span></p><p>Tento malý pomocník je navržen ke zlepšení vašich zkušeností s AppImage na vašem počítači.</p><p>Zdá se, že jste aplikaci AppImageLauncher nikdy předtím nespustili. Věnujte prosím chvíli nastavení vašich předvoleb. Tato nastavení můžete kdykoliv později změnit pomocí ovládacího panelu.</p></body></html> Ask me whether to move new AppImages into a central location Ptát se, jestli přesunout nové AppImage soubory do určitého umístění Integration target destination directory: Cílový adresář pro integraci: Customize Přizpůsobit Choose integration destination dir Vyberte cílový adresář pro integraci (default) (výchozí) IntegrationDialog Desktop Integration Integrace pracovní plochy Icon <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Noto Sans'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">%1 has not been integrated into your system.</p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> <br />Integrating it will move the AppImage into a predefined location, and include it in your application launcher.</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">To remove or update the AppImage, please use the context menu of the application icon in your task bar or launcher. </p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The directory where the integrated AppImages are stored in is currently set to: %2</p></body></html> Integrate and run Integrovat a spustit Run once Spustit jednou QMessageBox Warning Varování AppImage has already been integrated, but it is not in the current integration destination directory. Do you want to move it into the new destination? Choosing No will run the AppImage once, and leave the AppImage in its current directory. AppImage has already been integrated, but it is not in the current integration destination directory. Do you want to move it into the new destination? Choosing No will run the AppImage once, and leave the AppImage in its current directory. AppImage %1 has already been integrated, but it is not in the current integration destination directory. Do you want to move it into the new destination? Choosing No will run the AppImage once, and leave the AppImage in its current directory. AppImage %1 již byl integrován, ale není v aktuálním cílovém adresáři pro integraci. Chcete jej přesunout do nového cíle? Vybráním Ne bude tento AppImage spuštěn jednou a ponechán ve svém aktuálním adresáři. Error Chyba Failed to unregister AppImage before re-integrating it Selhalo zrušení registrace AppImage před opětovnou integrací Could not parse desktop file translations: Could not open file for reading: %1 Nelze zpracovat překlady desktop souboru: Nelze otevřít soubor pro čtení: %1 Could not parse desktop file translations: Invalid syntax: %1 Nelze zpracovat překlady desktop souboru: Neplatná syntaxe: %1 File %1 is owned by another user: %2 Soubor %1 je vlastněn jiným uživatelem: %2 Permissions problem Problém oprávnění File %1 is owned by another user: %2 Relaunch with their permissions? File %1 is owned by another user: %2 Relaunch with their permissions? Failed to run permissions helper, exited with return code %1 Selhalo spuštění pomocníka oprávnění, ukončen s návratovým kódem %1 Could not find suitable permissions helper, aborting Nelze nalézt vhodný pomocník oprávnění, přerušuje se QObject Error Chyba AppImageLauncher does not support type %1 AppImages at the moment. AppImageLauncher momentálně nepodporuje AppImage soubory typu %1. Could not make AppImage executable: %1 Nelze nastavit soubor AppImage jako spustitelný: %1 Failed to open AppImage for reading: %1 Failed to open AppImage for reading: %1 Failed to create temporary directory Failed to create temporary directory Failed to create temporary copy of type 1 AppImage Failed to create temporary copy of type 1 AppImage Failed to open temporary AppImage copy for writing Failed to open temporary AppImage copy for writing Failed to remove magic bytes from temporary AppImage copy Failed to remove magic bytes from temporary AppImage copy execv() failed: %1 error message execv() failed: %1 runtime not found: no such file or directory: %1 runtime not found: no such file or directory: %1 execv() failed: %1 execv() selhalo: %1 Usage: %1 [options] <path> Použití: %1 [volby] <cesta> Desktop integration helper for AppImages, for use by Linux distributions. Pomocník s integrací pracovní plochy pro soubory AppImage, pro použití v linuxových distribucích. Options: Volby: Display this help and exit Zobrazit tuto nápovědu a skončit Display version and exit Zobrazit verzi a skončit Arguments: Argumenty: Path to AppImage (mandatory) Cesta k AppImage (povinná) Unexpected result from the integration dialog. Failed to clean up old desktop files Selhalo vyčištění starých desktop souborů Failed to register AppImage in AppImageLauncherFS: error while trying to start appimagelauncherfs.service Selhala registrace souboru AppImage v AppImageLauncherFS: chyba během pokusu o spuštění appimagelauncherfs.service Failed to register AppImage in AppImageLauncherFS: failed to register AppImage path %1 Selhala registrace souboru AppImage v AppImageLauncherFS: selhala registrace AppImage cesty %1 Failed to register AppImage in AppImageLauncherFS: could not open map file Selhala registrace souboru AppImage v AppImageLauncherFS: nelze otevřít map soubor Failed to register AppImage in AppImageLauncherFS: could not find virtual file for AppImage Selhala registrace souboru AppImage v AppImageLauncherFS: nelze nalézt virtuální soubor pro AppImage Failed to register AppImage in AppImageLauncherFS: unknown failure Selhala registrace souboru AppImage v AppImageLauncherFS: neznámá chyba Failed to clean up AppImage trash bin: %1 Selhalo vyčištění koše souborů AppImage: %1 Unknown AppImageLauncher option: %1 Neznámá volba AppImageLauncher: %1 Error: no such file or directory: %1 Chyba: neexistující soubor nebo adresář: %1 Not an AppImage: %1 Není soubor AppImage: %1 The directory the integrated AppImages are stored in is currently set to: %1 Adresář pro uložení integrovaných souborů AppImage je aktuálně nastaven na: %1 The directory the integrated AppImages are stored in is currently set to: %1 The directory the integrated AppImages are stored in is currently set to: %1 Integrating it will move the AppImage into a predefined location, and include it in your application launcher. Integrací bude soubor AppImage přesunut do předdefinovaného umístění a zahrnut ve vašem spouštěči aplikací. To remove or update the AppImage, please use the context menu of the application icon in your task bar or launcher. Pro odebrání nebo aktualizaci AppImage prosím použijte kontextové menu ikony aplikace ve vašem panelu úloh nebo spouštěči. The directory the integrated AppImages are stored in is currently set to: Adresář pro uložení integrovaných souborů AppImage je aktuálně nastaven na: %1 has not been integrated into your system. %1 nebylo integrováno do vašeho systému. Desktop Integration Integrace pracovní plochy Integrate and run Integrovat a spustit Run once Spustit jednou Cancel Zrušit Removes AppImages after desktop integration, for use by Linux distributions Removes AppImages after desktop integration, for use by Linux distributions AppImageLauncher remove remove helper app name AppImageLauncher remove Helper to delete integrated AppImages easily, e.g., from the application launcher's context menuz Helper to delete integrated AppImages easily, e.g., from the application launcher's context menuz Helper to delete integrated AppImages easily, e.g., from the application launcher's context menu Pomocník pro jednoduché odebrání integrovaných souborů AppImage, např. z kontextového menu spouštěče aplikací Path to AppImage Cesta k souboru AppImage <path> <cesta> AppImage delete helper error Chyba pomocníka odebrání AppImage AppImage remove helper error AppImage remove helper error Not an AppImage: %1 Není soubor AppImage: %1 Refusing to work on non-integrated AppImage: %1 Refusing to work on non-integrated AppImage: %1 Please confirm Please confirm Are you sure you want to remove this AppImage? Are you sure you want to remove this AppImage? Failed to unregister AppImage: %1 Selhalo zrušení registrace AppImage: %1 Failed to move AppImage into trash bin directory Selhalo přesunutí souboru AppImage do adresáře koše Failed to remove AppImage: %1 Failed to remove AppImage: %1 AppImage with same filename has already been integrated. AppImage se stejným jménem souboru již byl integrován. Do you wish to overwrite the existing AppImage? Přejete si přepsat existující soubor AppImage? Choosing No will run the AppImage once, and leave the system in its current state. Vybráním Ne bude tento AppImage spuštěn jednou a systém bude ponechán ve svém aktuálním stavu. Warning Varování Failed to move AppImage to target location Failed to move AppImage to target location Failed to register AppImage in system via libappimage Selhala registrace AppImage v systému pomocí libappimage Failed to find integrated desktop file Nelze nalézt integrovaný desktop soubor Couldn't find integrated AppImage's desktop file Nebyl nalezen desktop soubor integrovaného AppImage Failed to load desktop file: Nelze načíst desktop soubor: AppImage has invalid desktop file AppImage má neplatný desktop soubor Failed to move AppImage to target location. Try to copy AppImage instead? Selhalo přesunutí souboru AppImage do cílového umístění. Zkusit namísto toho soubor AppImage zkopírovat? Failed to call stat() on path: %1 Selhalo volání stat() na cestě: %1 Failed to copy AppImage to target location Failed to copy AppImage to target location Updates AppImages after desktop integration, for use by Linux distributions Aktualizuje soubory AppImage po jejich integraci s pracovní plochou, pro použití v linuxových distribucích AppImageLauncher update update helper app name AppImageLauncher aktualizace The AppImage hasn't been integrated before. This tool will, however, integrate the updated AppImage. The AppImage hasn't been integrated before. This tool will, however, integrate the updated AppImage. Do you wish to continue? Do you wish to continue? No updates found Nenalezeny žádné aktualizace Could not find updates for AppImage %1 Nebyly nalezeny aktualizace pro AppImage %1 Failed to check for updates. Please check the command line output for details. Failed to check for updates. Please check the command line output for details. No update information found Nebyly nalezeny žádné informace o aktualizaci Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to set update information to allow for easy updating. Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to set update information to allow for easy updating. Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to set upupdate information to allow for easy updating. Nelze nalézt informace o aktualizaci v souboru AppImage: %1 Tento AppImage nepodporuje aktualizace. Požádejte prosím jeho autory, aby nastavili upupdate informace pro umožnění jednoduchých aktualizací. Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to embed update information to allow for easy updating. Failed to check for updates: %1 Selhala kontrola aktualizací: %1 An update has been found for the AppImage %1 Byla nalezena aktualizace pro AppImage %1 Do you want to perform the update? Chcete provést aktualizaci? Remove old AppImage after successful update Odebrat starý soubor AppImage po úspěšné aktualizaci Failed to update AppImage: %1 Selhala aktualizace AppImage: %1 File reported as updated does not exist: %1 Soubor nahlášen jako aktualizovaný neexistuje: %1 Failed to register updated AppImage in system Selhala registrace aktualizovaného AppImage v systému Failed to unregister old AppImage in system Selhalo zrušení registrace starého AppImage v systému Failed to remove old AppImage Selhalo odebrání starého AppImage Tracks AppImages in applications directories (user's, system and other ones). Automatically integrates AppImages moved into those directories and unintegrates ones removed from them. Sleduje soubory AppImage v adresářích aplikací (uživatelských, systémových a dalších). Automaticky integruje soubory AppImage přesunuté do těchto adresářů a ruší integrace těch, které jsou z nich odebrány. Search for AppImages in /Applications directories in suitable mounted filesystems Search for AppImages in /Applications directories in suitable mounted filesystems Search for AppImages in /Applications directories suitable mounted filesystems Search for AppImages in /Applications directories suitable mounted filesystems Lists directories watched by this daemon and exit Vypsat adresáře sledované tímto démonem a skončit RemoveDialog Please confirm Please confirm <html><head/><body><p>Are you sure you want to remove this AppImage?</body></html> <html><head/><body><p>Are you sure you want to remove this AppImage?</body></html> Delete AppImage Odebrat AppImage <html><head/><body><p>Are you sure you want to delete this AppImage?</p></body></html> <html><head/><body><p>Jste si jisti, že chcete odebrat tento AppImage?</p></body></html> %1 %1 <html><head/><body><p>Uncheck to only remove the desktop integration, but leave the file on the system.</p></body></html> <html><head/><body><p>Uncheck to only remove the desktop integration, but leave the file on the system.</p></body></html> Remove AppImage file from system Remove AppImage file from system SettingsDialog AppImageLauncher Settings AppImageLauncher nastavení AppImageLauncher AppImageLauncher Launcher Dialog Dialog spouštěče Ask whether to move AppImage files into the applications directory Ptát se, jestli přesunout soubory AppImage do adresáře aplikací appimagelauncherd appimagelauncherd General settings Obecná nastavení <html><head/><body><p>When this box is checked, AppImageLauncher automatically starts a daemon called appimagelauncherd.</p><p>This daemon automatically integrates AppImages you copy into the &quot;Applications directory&quot; and the additional directories you configured. When the files are deleted, the daemon will clean up the integration data.</p></body></html> <html><head/><body><p>Když je toto políčko zaškrtnuto, AppImageLauncher automaticky spouští démona jménem appimagelauncherd.</p><p>Tento démon automaticky integruje soubory AppImage, které zkopírujete do &quot;Adresáře aplikací&quot; a dalších adresářů, které jste nastavili. Když jsou soubory odebrány, tento démon vyčistí data integrace.</p></body></html> Auto start auto-integration daemon Automaticky spustit auto-integrační démon Additional directories to watch Další adresáře pro sledování Add new directory to list Přidat do seznamu nový adresář Remove selected directory from list Odebrat vybraný adresář ze seznamu - - Applications directory Applications directory <html><head/><body><p>When enabled, the daemon automatically integrates AppImages you copy into the &quot;Applications directory&quot;. When the files are deleted, the daemon will clean up the integration data.</p></body></html> <html><head/><body><p>When enabled, the daemon automatically integrates AppImages you copy into the &quot;Applications directory&quot;. When the files are deleted, the daemon will clean up the integration data.</p></body></html> Applications directory path Cesta k adresáři aplikací Location where to store your AppImage files to ease their management Umístění, kam ukládat vaše soubory AppImage pro zjednodušení jejich správy Location where to store your AppImage files to ease their management using the file manager. Location where to store your AppImage files to ease their management using the file manager. /path /path Enable auto-integration daemon Enable auto-integration daemon Available Features Dostupné vlastnosti updater available for AppImages supporting AppImageUpdate aktualizátor dostupný pro soubory AppImage podporující AppImageUpdate updater unavailable aktualizátor nedostupný <strong>Note: this is an AppImageLauncher Lite build, only supports a limited set of features</strong><br />Please install the full version via the provided native packages to enjoy the full AppImageLauncher experience <strong>Poznámka: toto je sestavení AppImageLauncher Lite, podporuje pouze limitovanou sadu funkcí</strong><br />Nainstalujte prosím plnou verzi pomocí poskytnutých nativních balíčků pro plný zážitek z aplikace AppImageLauncher Select Applications directory Vyberte adresář aplikací Select additional directory to watch Vyberte další adresář pro sledování ================================================ FILE: i18n/ui.de.ts ================================================ FirstRunDialog First run Erste Ausführung <html><head/><body><p><span style=" font-size:11pt; font-weight:600;">Welcome to AppImageLauncher!</span></p><p>This little helper is designed to improve your AppImage experience on your computer.</p><p>It appears you have never run AppImageLauncher before. Please take a minute and configure your preferences. You can always change these later on, using the control panel.</p></body></html> <html><head/><body><p><span style=" font-size:11pt; font-weight:600;">Willkommen bei AppImageLauncher!</span></p><p>Dieses kleine Hilfsprogramm wurde entworfen, um Ihre AppImage-Erfahrung auf Ihrem Computer zu verbessern.</p><p>Es scheint, als hätten Sie AppImageLauncher nie zuvor ausgeführt. Bitte nehmen Sie sich eine Minute zeit und konfigurieren Sie Ihre Einstellungen. Sie können diese jederzeit über den Einstellungsdialog ändern.</p></body></html> Ask me whether to move new AppImages into a central location Frage mich, ob neue AppImages in ein zentrales Verzeichnis verschoben werden sollen Integration target destination directory: Integrations-Zielverzeichnis: Customize Anpassen Choose integration destination dir Wähle Integrations-Zielverzeichnis (default) (Standard) IntegrationDialog Desktop Integration Desktop-Integration Icon Symbol <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Noto Sans'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">%1 has not been integrated into your system.</p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> <br />Integrating it will move the AppImage into a predefined location, and include it in your application launcher.</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">To remove or update the AppImage, please use the context menu of the application icon in your task bar or launcher. </p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The directory where the integrated AppImages are stored in is currently set to: %2</p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Noto Sans'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">%1 wurde noch nicht in Ihr System integriert.</p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> <br />Durch die Integration wird das AppImage in ein vordefiniertes Verzeichnis verschoben, und in das Anwendungsmenü aufgenommen.</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Um das AppImage zu aktualisieren oder zu entfernen, benutzen Sie bitte das Kontextmenü des Anwendungs-Icons in Ihrer Anwendungsleiste oder im Anwendungsmenü. </p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Das Verzeichnis, in dem die integrierten AppImages gespeichert werden, ist derzeit: %2</p></body></html> Integrate and run Integrieren und ausführen Run once Einmalig ausführen QMessageBox Warning Warnung AppImage has already been integrated, but it is not in the current integration destination directory. Do you want to move it into the new destination? Choosing No will run the AppImage once, and leave the AppImage in its current directory. AppImage wurde bereits integriert, aber befindet sich nicht im aktuell gewählten Zielverzeichnis. Möchten Sie es in das neue Verzeichnis verschieben? Sofern Sie Nein wählen, wird das AppImage einmal ausgeführt, und verbleibt in seinem derzeitigen Verzeichnis. AppImage %1 has already been integrated, but it is not in the current integration destination directory. Do you want to move it into the new destination? Choosing No will run the AppImage once, and leave the AppImage in its current directory. Das AppImage %1 wurde bereits integriert, aber befindet sich nicht im derzeit konfigurierten Zielverzeichnis. Möchten Sie es in das neue Zielverzeichnis verschieben? Sollten Sie Nein wählen, wird das AppImage einmalig ausgeführt, und es wird im aktuellen Verzeichnis belassen. Error Fehler Failed to unregister AppImage before re-integrating it Fehler beim Deregistrieren des AppImages vor der Reintegration Could not parse desktop file translations: Could not open file for reading: %1 Konnte Übersetzungen für Desktop-Datei nicht parsen: Konnte Datei nicht zum Lesen öffnen: %1 Could not parse desktop file translations: Invalid syntax: %1 Konnte Übersetzungen für Desktop-Datei nicht parsen: Kaputte Syntax: %1 File %1 is owned by another user: %2 Datei %1 gehört einem anderen Benutzer: %2 Permissions problem Rechte-Problem File %1 is owned by another user: %2 Relaunch with their permissions? Datei %1 gehört anderem Nutzer: %2 Neu starten mit deren Rechten? Failed to run permissions helper, exited with return code %1 Fehler beim Ausführen des Rechte-Hilfsprogramms, beendet mit Rückgabewert %1 Could not find suitable permissions helper, aborting Konnte kein geeignetes Rechte-Hilfsprogramm finden, breche ab QObject Error Fehler AppImageLauncher does not support type %1 AppImages at the moment. AppImageLauncher unterstützt zur Zeit keine AppImages vom Typ %1. Could not make AppImage executable: %1 AppImage konnte nicht ausführbar gemacht werden: %1 Failed to open AppImage for reading: %1 AppImage konnte nicht lesend geöffnet werden: %1 Failed to create temporary directory Fehler beim Erstellen des temporären Verzeichnisses Failed to create temporary copy of type 1 AppImage Temporäre Kopie des Typ-1-AppImages konnte nicht erstellt werden Failed to open temporary AppImage copy for writing AppImage konnte nicht schreibend geöffnet werden: %1 Failed to remove magic bytes from temporary AppImage copy Entfernen der magischen Bytes in der temporären AppImage-Kopie fehlgeschlagen execv() failed: %1 error message execv() fehlgeschlagen: %1 runtime not found: no such file or directory: %1 runtime nicht gefunden: Datei oder Verzeichnis nicht vorhanden: %1 execv() failed: %1 execv() fehlgeschlagen: %1 Usage: %1 [options] <path> Benutzung: %1 [Optionen] <Pfad> Desktop integration helper for AppImages, for use by Linux distributions. Hilfsprogramm zur Desktop-Integration von AppImages, zur Verwendung durch Linux-Distributionen. Options: Optionen: Display this help and exit Hilfetext anzeigen und beenden Display version and exit Version anzeigen und beenden Arguments: Argumente: Path to AppImage (mandatory) Pfad zu AppImage (erforderlich) Unexpected result from the integration dialog. Unerwartetes Ergebnis vom Integrations-Dialog. Failed to clean up old desktop files Fehler beim Aufräumen der alten Desktop-Dateien Failed to register AppImage in AppImageLauncherFS: error while trying to start appimagelauncherfs.service Fehler beim Registrieren des AppImages in AppImageLauncherFS: Fehler beim Starten von appimagelauncherfs.service Failed to register AppImage in AppImageLauncherFS: failed to register AppImage path %1 Fehler beim Registrieren des AppImages in AppImageLauncherFS: Registrieren des AppImage-Pfades %1 fehlgeschlagen Failed to register AppImage in AppImageLauncherFS: could not open map file Fehler beim Registrieren des AppImages in AppImageLauncherFS: konnte Map-Datei nicht öffnen Failed to register AppImage in AppImageLauncherFS: could not find virtual file for AppImage Fehler beim Registrieren des AppImages in AppImageLauncherFS: konnte virtuelle Datei für AppImage nicht finden Failed to register AppImage in AppImageLauncherFS: unknown failure Fehler beim Registrieren des AppImages in AppImageLauncherFS: unbekannter Fehler Failed to clean up AppImage trash bin: %1 Fehler beim Aufräumen des AppImage-Papierkorbs: %1 Unknown AppImageLauncher option: %1 Unbekannte AppImageLauncher-Option: %1 Error: no such file or directory: %1 Fehler: Datei oder Verzeichnis nicht gefunden: %1 Not an AppImage: %1 Datei ist kein AppImage: %1 The directory the integrated AppImages are stored in is currently set to: %1 Das Verzeichnis zum Speichern der integrierten AppImages ist derzeit: %1 The directory the integrated AppImages are stored in is currently set to: %1 Das derzeit konfigurierte Zielverzeichnis für integrierte AppImages ist: %1 Integrating it will move the AppImage into a predefined location, and include it in your application launcher. Durch die Integration wird das AppImage in ein vordefiniertes Verzeichnis verschoben, und in das Applikationsmenü aufgenommen. To remove or update the AppImage, please use the context menu of the application icon in your task bar or launcher. Um das AppImage zu aktualisieren oder zu entfernen, benutzen Sie bitte das Kontextmenü des Anwendungs-Icons in Ihrer Task-Bar oder im Applikationsmenü. The directory the integrated AppImages are stored in is currently set to: Das Verzeichnis, in welchem die integrierten AppImages gespeichert werden, ist derzeit: %1 has not been integrated into your system. %1 wurde noch nicht in Ihr System integriert. Desktop Integration Desktop-Integration Integrate and run Integrieren und ausführen Run once Einmalig ausführen Cancel Abbruch Removes AppImages after desktop integration, for use by Linux distributions Entfernt AppImages nach ihrer Desktop-Integration, zur Verwendung durch Linux-Distributionen AppImageLauncher remove remove helper app name AppImageLauncher Löschhelfer Helper to delete integrated AppImages easily, e.g., from the application launcher's context menu Hilfsprogramm zum einfachen Löschen integrierter AppImages, z.B. durch das Kontextmenü des Programm-Menüs Path to AppImage Pfad zu AppImage <path> <Pfad> AppImage delete helper error AppImage Lösch-Hilfsprogramm Fehler AppImage remove helper error AppImage Löschhelfer Fehler Not an AppImage: %1 Kein AppImage: %1 Refusing to work on non-integrated AppImage: %1 Verweigere Arbeit an nicht integriertem AppImage: %1 Please confirm Bitte bestätigen Are you sure you want to remove this AppImage? Sind Sie sicher, dass Sie dieses AppImage entfernen möchten? Failed to unregister AppImage: %1 Fehler beim Deregistrieren des AppImages: %1 Failed to move AppImage into trash bin directory Fehler beim Verschieben des AppImages in das Papierkorb-Verzeichnis Failed to remove AppImage: %1 Entfernen des AppImages fehlgeschlagen: %1 AppImage with same filename has already been integrated. AppImage mit gleichem Dateinamen wurde bereits integriert. Do you wish to overwrite the existing AppImage? Möchten Sie das existierende AppImage überschreiben? Choosing No will run the AppImage once, and leave the system in its current state. Bei Klick auf Nein wird das AppImage einmalig ausgeführt, und das System in seinem derzeitigen Zustand belassen. Warning Warnung Failed to move AppImage to target location Verschieben des AppImages in Zielverzeichnis fehlgeschlagen Failed to register AppImage in system via libappimage Fehler beim Registrieren des AppImages im System via libappimage Failed to find integrated desktop file Suche nach integrierter Desktop-Datei fehlgeschlagen Couldn't find integrated AppImage's desktop file Konnte Desktop-Datei des integrierten AppImages nicht finden Failed to load desktop file: Fehler beim Laden der Desktop-Datei: AppImage has invalid desktop file AppImage hat ungültige Desktop-Datei Failed to move AppImage to target location. Try to copy AppImage instead? Fehler beim Verschieben des AppImages in Zielverzeichnis. Stattdessen versuchen, das AppImage zu kopieren? Failed to call stat() on path: %1 Aufruf von stat() auf Pfad fehlgeschlagen: %1 Failed to copy AppImage to target location Fehler beim Kopieren des AppImages in Zielverzeichnis Updates AppImages after desktop integration, for use by Linux distributions Aktualisiert AppImages nach Desktop-Integration, zur Verwendung durch Linux-Distributionen AppImageLauncher update update helper app name AppImageLauncher Update The AppImage hasn't been integrated before. This tool will, however, integrate the updated AppImage. Das AppImage wurde bisher noch nicht integriert. Dieses Programm wird aber das aktualisierte AppImage integrieren. Do you wish to continue? Möchten Sie fortfahren? No updates found Keine Aktualisierungen gefunden Could not find updates for AppImage %1 Konnte keine Updates finden für AppImage %1 Failed to check for updates. Please check the command line output for details. Fehler beim Update-Check. Bitte überprüfen Sie den Kommandozeilen-Log für weitere Details. No update information found Keine Update-Informationen gefunden Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to set update information to allow for easy updating. Konnte keine Update-Informationen finden im AppImage: %1 Das AppImage unterstützt keine Updates. Bitte fragen Sie die Autoren, die Update-Informationen zu setzen, um einfaches Aktualisieren zu ermöglichen. Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to set upupdate information to allow for easy updating. Konnte keine Update-Informationen finden im AppImage: %1 Das AppImage unterstützt keine Updates. Bitten Sie die Autoren, die Update-Informationen zu setzen, um einfaches Aktualisieren zu ermöglichen. Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to embed update information to allow for easy updating. Konnte keine Update-Informationen finden im AppImage: %1 Das AppImage unterstützt keine Aktualisierungen. Bitten Sie die Autoren, Update-Informationen einzubetten, um einfaches Aktualisieren zu ermöglichen. Failed to check for updates: %1 Fehler beim Update-Check: %1 An update has been found for the AppImage %1 Eine Aktualisierung wurde gefunden für das AppImage %1 Do you want to perform the update? Möchten Sie die Aktualisierung durchführen? Remove old AppImage after successful update Entferne altes AppImage nach erfolgreicher Aktualisierung Failed to update AppImage: %1 Fehler beim Aktualisieren des AppImages: %1 File reported as updated does not exist: %1 Datei, die als aktualisiert angegeben wurde, existiert nicht: %1 Failed to register updated AppImage in system Fehler beim Registrieren des aktualisierten AppImages im System Failed to unregister old AppImage in system Fehler beim Deregistrieren des alten AppImages im System Failed to remove old AppImage Fehler beim Entfernen des alten AppImages Tracks AppImages in applications directories (user's, system and other ones). Automatically integrates AppImages moved into those directories and unintegrates ones removed from them. Überwacht AppImages in Applikations-Verzeichnissen (dem des Benutzers, des Systems und anderen). Integriert AppImages, die in diese Verzeichnisse verschoben werden, und entfernt die Integration derer, die von dort entfernt werden, automatisch. Search for AppImages in /Applications directories in suitable mounted filesystems Suche nach AppImages in /Applications-Verzeichnis auf geeigneten, eingehängten Dateisystemen Lists directories watched by this daemon and exit Listet Verzeichnisse auf, welche von diesem Dienst überwacht werden, und beendet sich RemoveDialog Please confirm Bitte bestätigen <html><head/><body><p>Are you sure you want to remove this AppImage?</body></html> <html><head/><body><p>Sind Sie sicher, dass Sie dieses AppImage entfernen wollen?</body></html> Delete AppImage AppImage löschen <html><head/><body><p>Are you sure you want to delete this AppImage?</p></body></html> <html><head/><body><p>Sind Sie sicher, dass Sie dieses AppImage löschen möchten?</p></body></html> %1 %1 <html><head/><body><p>Uncheck to only remove the desktop integration, but leave the file on the system.</p></body></html> <html><head/><body><p>Abwählen, um nur die Desktop-Integration zu entfernen, die Datei aber auf dem System zu behalten.</p></body></html> Remove AppImage file from system AppImage vom System entfernen SettingsDialog AppImageLauncher Settings AppImageLauncher-Einstellungen Launcher Dialog Launcher-Dialog Ask whether to move AppImage files into the applications directory Frage, ob AppImages in Applications-Verzeichnis verschoben werden sollen General settings Allgemeine Einstellungen <html><head/><body><p>When this box is checked, AppImageLauncher automatically starts a daemon called appimagelauncherd.</p><p>This daemon automatically integrates AppImages you copy into the &quot;Applications directory&quot; and the additional directories you configured. When the files are deleted, the daemon will clean up the integration data.</p></body></html> <html><head/><body><p>Wird das Kästchen angehakt, wird AppImageLauncher automatisch einen Dienst namens appimagelauncherd starten.</p><p>Dieser Dienst integriert AppImages, die Sie in ihr &quot; -Verzeichnis&quot; und in die anderen überwachten Verzeichnisse kopieren, automatisch. Wenn die Dateien gelöscht werden, wird der Dienst die Integrations-Daten automatisch aufräumen.</p></body></html> Auto start auto-integration daemon Auto-Integrations-Dienst automatisch starten Additional directories to watch Zusätzlich zu überwachende Verzeichnisse Add new directory to list Neues Verzeichnis zur Liste hinzufügen Remove selected directory from list Ausgewähltes Verzeichnis aus Liste entfernen Applications directory Applications-Verzeichnis <html><head/><body><p>When enabled, the daemon automatically integrates AppImages you copy into the &quot;Applications directory&quot;. When the files are deleted, the daemon will clean up the integration data.</p></body></html> <html><head/><body><p>Wenn aktiviert, wird der Dienst automatisch AppImages, die in das &quot;Applikationsverzeichnis&quot; kopiert werden, integrieren. Wenn die Dateien gelöscht werden, wird der Dienst die Integrationsdaten automatisch aufräumen.</p></body></html> Applications directory path Pfad des Applikationsverzeichnisses Location where to store your AppImage files to ease their management Ort zur Speicherung der AppImage-Dateien, um sie leichter handhaben zu können Enable auto-integration daemon Auto-Integrations-Dienst aktivieren Available Features Verfügbare Features updater available for AppImages supporting AppImageUpdate Updater verfügbar für AppImages, die AppImageUpdate unterstützen updater unavailable Updater nicht verfügbar <strong>Note: this is an AppImageLauncher Lite build, only supports a limited set of features</strong><br />Please install the full version via the provided native packages to enjoy the full AppImageLauncher experience <strong>Anmerkung: dies ist ein AppImageLauncher-Lite-Build, welcher nur ein begrenztes Spektrum an Funktionen bietet</strong><br />Bitte installieren Sie die Vollversion mittels der bereitgestellten nativen Pakete, um in den Genuss der vollständigen AppImageLauncher-Erfahrung kommen zu können Select Applications directory Wähle Applications-Verzeichnis Select additional directory to watch Zusätzlich zu überwachendes Verzeichnis auswählen ================================================ FILE: i18n/ui.en.ts ================================================ FirstRunDialog First run First run <html><head/><body><p><span style=" font-size:11pt; font-weight:600;">Welcome to AppImageLauncher!</span></p><p>This little helper is designed to improve your AppImage experience on your computer.</p><p>It appears you have never run AppImageLauncher before. Please take a minute and configure your preferences. You can always change these later on, using the control panel.</p></body></html> <html><head/><body><p><span style=" font-size:11pt; font-weight:600;">Welcome to AppImageLauncher!</span></p><p>This little helper is designed to improve your AppImage experience on your computer.</p><p>It appears you have never run AppImageLauncher before. Please take a minute and configure your preferences. You can always change these later on, using the control panel.</p></body></html> Ask me whether to move new AppImages into a central location Ask me whether to move new AppImages into a central location Integration target destination directory: Integration target destination directory: Customize Customize Choose integration destination dir Choose integration destination dir (default) (default) IntegrationDialog Desktop Integration Desktop Integration Icon Icon <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Noto Sans'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">%1 has not been integrated into your system.</p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> <br />Integrating it will move the AppImage into a predefined location, and include it in your application launcher.</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">To remove or update the AppImage, please use the context menu of the application icon in your task bar or launcher. </p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The directory where the integrated AppImages are stored in is currently set to: %2</p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Noto Sans'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">%1 has not been integrated into your system.</p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> <br />Integrating it will move the AppImage into a predefined location, and include it in your application launcher.</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">To remove or update the AppImage, please use the context menu of the application icon in your task bar or launcher. </p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The directory where the integrated AppImages are stored in is currently set to: %2</p></body></html> Integrate and run Integrate and run Run once Run once QMessageBox Warning Warning AppImage has already been integrated, but it is not in the current integration destination directory. Do you want to move it into the new destination? Choosing No will run the AppImage once, and leave the AppImage in its current directory. AppImage has already been integrated, but it is not in the current integration destination directory. Do you want to move it into the new destination? Choosing No will run the AppImage once, and leave the AppImage in its current directory. AppImage %1 has already been integrated, but it is not in the current integration destination directory. Do you want to move it into the new destination? Choosing No will run the AppImage once, and leave the AppImage in its current directory. AppImage %1 has already been integrated, but it is not in the current integration destination directory. Do you want to move it into the new destination? Choosing No will run the AppImage once, and leave the AppImage in its current directory. Error Error Failed to unregister AppImage before re-integrating it Failed to unregister AppImage before re-integrating it Could not parse desktop file translations: Could not open file for reading: %1 Could not parse desktop file translations: Could not open file for reading: %1 Could not parse desktop file translations: Invalid syntax: %1 Could not parse desktop file translations: Invalid syntax: %1 File %1 is owned by another user: %2 File %1 is owned by another user: %2 Permissions problem Permissions problem File %1 is owned by another user: %2 Relaunch with their permissions? File %1 is owned by another user: %2 Relaunch with their permissions? Failed to run permissions helper, exited with return code %1 Failed to run permissions helper, exited with return code %1 Could not find suitable permissions helper, aborting Could not find suitable permissions helper, aborting QObject Error Error AppImageLauncher does not support type %1 AppImages at the moment. AppImageLauncher does not support type %1 AppImages at the moment. Could not make AppImage executable: %1 Could not make AppImage executable: %1 Failed to open AppImage for reading: %1 Failed to open AppImage for reading: %1 Failed to create temporary directory Failed to create temporary directory Failed to create temporary copy of type 1 AppImage Failed to create temporary copy of type 1 AppImage Failed to open temporary AppImage copy for writing Failed to open temporary AppImage copy for writing Failed to remove magic bytes from temporary AppImage copy Failed to remove magic bytes from temporary AppImage copy execv() failed: %1 error message execv() failed: %1 runtime not found: no such file or directory: %1 runtime not found: no such file or directory: %1 execv() failed: %1 execv() failed: %1 Usage: %1 [options] <path> Usage: %1 [options] <path> Desktop integration helper for AppImages, for use by Linux distributions. Desktop integration helper for AppImages, for use by Linux distributions. Options: Options: Display this help and exit Display this help and exit Display version and exit Display version and exit Arguments: Arguments: Path to AppImage (mandatory) Path to AppImage (mandatory) Unexpected result from the integration dialog. Unexpected result from the integration dialog. Failed to clean up old desktop files Failed to clean up old desktop files Failed to register AppImage in AppImageLauncherFS: error while trying to start appimagelauncherfs.service Failed to register AppImage in AppImageLauncherFS: error while trying to start appimagelauncherfs.service Failed to register AppImage in AppImageLauncherFS: failed to register AppImage path %1 Failed to register AppImage in AppImageLauncherFS: failed to register AppImage path %1 Failed to register AppImage in AppImageLauncherFS: could not open map file Failed to register AppImage in AppImageLauncherFS: could not open map file Failed to register AppImage in AppImageLauncherFS: could not find virtual file for AppImage Failed to register AppImage in AppImageLauncherFS: could not find virtual file for AppImage Failed to register AppImage in AppImageLauncherFS: unknown failure Failed to register AppImage in AppImageLauncherFS: unknown failure Failed to clean up AppImage trash bin: %1 Failed to clean up AppImage trash bin: %1 Unknown AppImageLauncher option: %1 Unknown AppImageLauncher option: %1 Error: no such file or directory: %1 Error: no such file or directory: %1 Not an AppImage: %1 Not an AppImage: %1 The directory the integrated AppImages are stored in is currently set to: %1 The directory the integrated AppImages are stored in is currently set to: %1 The directory the integrated AppImages are stored in is currently set to: %1 The directory the integrated AppImages are stored in is currently set to: %1 Integrating it will move the AppImage into a predefined location, and include it in your application launcher. Integrating it will move the AppImage into a predefined location, and include it in your application launcher. To remove or update the AppImage, please use the context menu of the application icon in your task bar or launcher. To remove or update the AppImage, please use the context menu of the application icon in your task bar or launcher. The directory the integrated AppImages are stored in is currently set to: The directory the integrated AppImages are stored in is currently set to: %1 has not been integrated into your system. %1 has not been integrated into your system. Desktop Integration Desktop Integration Integrate and run Integrate and run Run once Run once Cancel Cancel Removes AppImages after desktop integration, for use by Linux distributions Removes AppImages after desktop integration, for use by Linux distributions AppImageLauncher remove remove helper app name AppImageLauncher remove Helper to delete integrated AppImages easily, e.g., from the application launcher's context menuz Helper to delete integrated AppImages easily, e.g., from the application launcher's context menuz Helper to delete integrated AppImages easily, e.g., from the application launcher's context menu Helper to delete integrated AppImages easily, e.g., from the application launcher's context menu Path to AppImage Path to AppImage <path> <path> AppImage delete helper error AppImage delete helper error AppImage remove helper error AppImage remove helper error Not an AppImage: %1 Not an AppImage: %1 Refusing to work on non-integrated AppImage: %1 Refusing to work on non-integrated AppImage: %1 Please confirm Please confirm Are you sure you want to remove this AppImage? Are you sure you want to remove this AppImage? Failed to unregister AppImage: %1 Failed to unregister AppImage: %1 Failed to move AppImage into trash bin directory Failed to move AppImage into trash bin directory Failed to remove AppImage: %1 Failed to remove AppImage: %1 AppImage with same filename has already been integrated. AppImage with same filename has already been integrated. Do you wish to overwrite the existing AppImage? Do you wish to overwrite the existing AppImage? Choosing No will run the AppImage once, and leave the system in its current state. Choosing No will run the AppImage once, and leave the system in its current state. Warning Warning Failed to move AppImage to target location Failed to move AppImage to target location Failed to register AppImage in system via libappimage Failed to register AppImage in system via libappimage Failed to find integrated desktop file Failed to find integrated desktop file Couldn't find integrated AppImage's desktop file Couldn't find integrated AppImage's desktop file Failed to load desktop file: Failed to load desktop file: AppImage has invalid desktop file AppImage has invalid desktop file Failed to move AppImage to target location. Try to copy AppImage instead? Failed to move AppImage to target location. Try to copy AppImage instead? Failed to call stat() on path: %1 Failed to call stat() on path: %1 Failed to copy AppImage to target location Failed to copy AppImage to target location Updates AppImages after desktop integration, for use by Linux distributions Updates AppImages after desktop integration, for use by Linux distributions AppImageLauncher update update helper app name AppImageLauncher update The AppImage hasn't been integrated before. This tool will, however, integrate the updated AppImage. The AppImage hasn't been integrated before. This tool will, however, integrate the updated AppImage. Do you wish to continue? Do you wish to continue? No updates found No updates found Could not find updates for AppImage %1 Could not find updates for AppImage %1 Failed to check for updates. Please check the command line output for details. Failed to check for updates. Please check the command line output for details. No update information found No update information found Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to set update information to allow for easy updating. Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to set update information to allow for easy updating. Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to set upupdate information to allow for easy updating. Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to set upupdate information to allow for easy updating. Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to embed update information to allow for easy updating. Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to embed update information to allow for easy updating. Failed to check for updates: %1 Failed to check for updates: %1 An update has been found for the AppImage %1 An update has been found for the AppImage %1 Do you want to perform the update? Do you want to perform the update? Remove old AppImage after successful update Remove old AppImage after successful update Failed to update AppImage: %1 Failed to update AppImage: %1 File reported as updated does not exist: %1 File reported as updated does not exist: %1 Failed to register updated AppImage in system Failed to register updated AppImage in system Failed to unregister old AppImage in system Failed to unregister old AppImage in system Failed to remove old AppImage Failed to remove old AppImage Tracks AppImages in applications directories (user's, system and other ones). Automatically integrates AppImages moved into those directories and unintegrates ones removed from them. Tracks AppImages in applications directories (user's, system and other ones). Automatically integrates AppImages moved into those directories and unintegrates ones removed from them. Search for AppImages in /Applications directories in suitable mounted filesystems Search for AppImages in /Applications directories in suitable mounted filesystems Search for AppImages in /Applications directories suitable mounted filesystems Search for AppImages in /Applications directories suitable mounted filesystems Lists directories watched by this daemon and exit Lists directories watched by this daemon and exit RemoveDialog Please confirm Please confirm <html><head/><body><p>Are you sure you want to remove this AppImage?</body></html> <html><head/><body><p>Are you sure you want to remove this AppImage?</body></html> Delete AppImage Delete AppImage <html><head/><body><p>Are you sure you want to delete this AppImage?</p></body></html> <html><head/><body><p>Are you sure you want to delete this AppImage?</p></body></html> %1 %1 <html><head/><body><p>Uncheck to only remove the desktop integration, but leave the file on the system.</p></body></html> <html><head/><body><p>Uncheck to only remove the desktop integration, but leave the file on the system.</p></body></html> Remove AppImage file from system Remove AppImage file from system SettingsDialog AppImageLauncher Settings AppImageLauncher Settings AppImageLauncher AppImageLauncher Launcher Dialog Launcher Dialog Ask whether to move AppImage files into the applications directory Ask whether to move AppImage files into the applications directory appimagelauncherd appimagelauncherd General settings General settings <html><head/><body><p>When this box is checked, AppImageLauncher automatically starts a daemon called appimagelauncherd.</p><p>This daemon automatically integrates AppImages you copy into the &quot;Applications directory&quot; and the additional directories you configured. When the files are deleted, the daemon will clean up the integration data.</p></body></html> <html><head/><body><p>When this box is checked, AppImageLauncher automatically starts a daemon called appimagelauncherd.</p><p>This daemon automatically integrates AppImages you copy into the &quot;Applications directory&quot; and the additional directories you configured. When the files are deleted, the daemon will clean up the integration data.</p></body></html> Auto start auto-integration daemon Auto start auto-integration daemon Additional directories to watch Additional directories to watch Add new directory to list Add new directory to list Remove selected directory from list Remove selected directory from list - - Applications directory Applications directory <html><head/><body><p>When enabled, the daemon automatically integrates AppImages you copy into the &quot;Applications directory&quot;. When the files are deleted, the daemon will clean up the integration data.</p></body></html> <html><head/><body><p>When enabled, the daemon automatically integrates AppImages you copy into the &quot;Applications directory&quot;. When the files are deleted, the daemon will clean up the integration data.</p></body></html> Applications directory path Applications directory path Location where to store your AppImage files to ease their management Location where to store your AppImage files to ease their management Location where to store your AppImage files to ease their management using the file manager. Location where to store your AppImage files to ease their management using the file manager. /path /path Enable auto-integration daemon Enable auto-integration daemon Available Features Available Features updater available for AppImages supporting AppImageUpdate updater available for AppImages supporting AppImageUpdate updater unavailable updater unavailable <strong>Note: this is an AppImageLauncher Lite build, only supports a limited set of features</strong><br />Please install the full version via the provided native packages to enjoy the full AppImageLauncher experience <strong>Note: this is an AppImageLauncher Lite build, only supports a limited set of features</strong><br />Please install the full version via the provided native packages to enjoy the full AppImageLauncher experience Select Applications directory Select Applications directory Select additional directory to watch Select additional directory to watch ================================================ FILE: i18n/ui.es.ts ================================================ FirstRunDialog First run Primera ejecución <html><head/><body><p><span style=" font-size:11pt; font-weight:600;">Welcome to AppImageLauncher!</span></p><p>This little helper is designed to improve your AppImage experience on your computer.</p><p>It appears you have never run AppImageLauncher before. Please take a minute and configure your preferences. You can always change these later on, using the control panel.</p></body></html> <html><head/><body><p><span style=" font-size:11pt; font-weight:600;">Le damos la bienvenida al AppImageLauncher.</span></p><p>Este auxiliar se ha diseñado para mejorar la experiencia con AppImage en su equipo.</p><p>Parece que no ha ejecutado AppImageLauncher antes. Tómese un momento para configurarlo. Siempre podrá modificar sus preferencias mediante el panel de control.</p></body></html> Ask me whether to move new AppImages into a central location Preguntarme si deben moverse las AppImages nuevas a una ubicación central Integration target destination directory: Directorio de destino para imágenes integradas: Customize Personalizar Choose integration destination dir Elija el directorio de destino de integración (default) (predeterminado) IntegrationDialog Desktop Integration Integración de escritorio Icon <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Noto Sans'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">%1 has not been integrated into your system.</p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> <br />Integrating it will move the AppImage into a predefined location, and include it in your application launcher.</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">To remove or update the AppImage, please use the context menu of the application icon in your task bar or launcher. </p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The directory where the integrated AppImages are stored in is currently set to: %2</p></body></html> Integrate and run Integrar y ejecutar Run once Ejecutar una vez QMessageBox Warning Atención AppImage %1 has already been integrated, but it is not in the current integration destination directory. Do you want to move it into the new destination? Choosing No will run the AppImage once, and leave the AppImage in its current directory. La AppImage %1 ya se ha integrado pero no se encuentra en el directorio de destino de integración actual. ¿Quiere trasladarlo al destino nuevo? Si elige «No» se ejecutará la AppImage una vez y se dejará en el directorio donde se encuentra ahora. Error Error Failed to unregister AppImage before re-integrating it No se pudo cancelar el registro de la AppImage antes de reintegrarla Could not parse desktop file translations: Could not open file for reading: %1 No se pudieron analizar las traducciones de archivos de escritorio: No se pudo abrir el archivo para leerlo: %1 Could not parse desktop file translations: Invalid syntax: %1 No se pudieron analizar las traducciones de archivos de escritorio: La sintaxis no es válida: %1 File %1 is owned by another user: %2 El archivo «%1» es propiedad de otro usuario: %2 Permissions problem Problema de permisos Failed to run permissions helper, exited with return code %1 No se pudo ejecutar el auxiliar de permisos; se salió con el código %1 Could not find suitable permissions helper, aborting No se pudo encontrar un auxiliar de permisos adecuado; se interrumpe la operación AppImage has already been integrated, but it is not in the current integration destination directory. Do you want to move it into the new destination? Choosing No will run the AppImage once, and leave the AppImage in its current directory. Este AppImage ya fue integrado pero no se encuentra ubicado en el "directorio de aplicaciones". Desea mover el archivo a dicho directorio? Si elije "No" se ejecutara la aplicación de manera normal y el archivo permanecerá en su ubicación actual. QObject Error AppImageLauncher does not support type %1 AppImages at the moment. Por ahora, AppImageLauncher no admite AppImages de tipo %1. Could not make AppImage executable: %1 No se pudo hacer que la AppImage sea ejecutable: %1 Failed to open AppImage for reading: %1 Error al abrir AppImage para leer: %1 Failed to create temporary directory Error al crear el directorio temporal Failed to create temporary copy of type 1 AppImage Error al crear una copia temporal del tipo 1 AppImage Failed to open temporary AppImage copy for writing Error al abrir la copia temporal de AppImage para escribir Failed to remove magic bytes from temporary AppImage copy Error al eliminar los bytes mágicos de la copia temporal de AppImage execv() failed: %1 error message Execv () falló: %1 runtime not found: no such file or directory: %1 tiempo de ejecución no encontrado: no hay tal archivo o directorio: %1 execv() failed: %1 execv() falló: %1 Usage: %1 [options] <path> Uso: %1 [opciones] <ruta> Desktop integration helper for AppImages, for use by Linux distributions. Auxiliar de integración con el escritorio para AppImages destinado a distribuciones Linux. Options: Opciones: Display this help and exit Mostrar esta ayuda y salir Display version and exit Mostrar la versión y salir Arguments: Argumentos: Path to AppImage (mandatory) Ruta a la AppImage (obligatoria) Unexpected result from the integration dialog. Failed to clean up old desktop files No se pudieron quitar los archivos .desktop antiguos Failed to register AppImage in AppImageLauncherFS: error while trying to start appimagelauncherfs.service Error al registrar AppImage en AppImageLauncherFS: error al intentar iniciar appimagelauncherfs.service Failed to register AppImage in AppImageLauncherFS: failed to register AppImage path %1 Error al registrar AppImage en AppImageLauncherFS: no se pudo registrar la ruta de AppImage %1 Failed to register AppImage in AppImageLauncherFS: could not open map file Error al registrar AppImage en AppImageLauncherFS: no se pudo abrir el archivo de mapa Failed to register AppImage in AppImageLauncherFS: could not find virtual file for AppImage Error al registrar AppImage en AppImageLauncherFS: no se pudo encontrar el archivo virtual para AppImage Failed to register AppImage in AppImageLauncherFS: unknown failure Error al registrar AppImage en AppImageLauncherFS: error desconocido Failed to clean up AppImage trash bin: %1 Fallo al limpiar la papelera de AppImage: %1 Unknown AppImageLauncher option: %1 Opción de AppImageLauncher desconocida: %1 Error: no such file or directory: %1 Error: no hay tal archivo o directorio: %1 Not an AppImage: %1 No es una AppImage: %1 The directory the integrated AppImages are stored in is currently set to: %1 Las AppImages integradas en el sistema son guardadas en: %1 The directory the integrated AppImages are stored in is currently set to: %1 El directorio en el que están almacenadas las AppImages integradas actualmente está configurado en: %1 Integrating it will move the AppImage into a predefined location, and include it in your application launcher. Integrarlo moverá el AppImage a una ubicación predefinida, y lo incluirá en su iniciador de aplicaciones. To remove or update the AppImage, please use the context menu of the application icon in your task bar or launcher. Para eliminar o actualizar AppImage, utilice el menú contextual del icono de la aplicación en su barra de tareas o iniciador. The directory the integrated AppImages are stored in is currently set to: El directorio en el que están almacenados los AppImages integrados está actualmente configurado para: %1 has not been integrated into your system. %1 no se ha integrado en su sistema. Desktop Integration Integración de escritorio Integrate and run Integrar y ejecutar Run once Ejecutar una vez Cancel Cancelar Removes AppImages after desktop integration, for use by Linux distributions Elimina AppImages después de la integración del escritorio, para ser utilizado por las distribuciones de Linux AppImageLauncher remove remove helper app name AppImageLauncher eliminar Helper to delete integrated AppImages easily, e.g., from the application launcher's context menu Path to AppImage Ruta hacia AppImage <path> <ruta> AppImage delete helper error Error en el auxiliar de eliminación de AppImages AppImage remove helper error AppImage eliminar error de ayuda Not an AppImage: %1 No es una AppImage: %1 Refusing to work on non-integrated AppImage: %1 Negándose a trabajar en AppImage no integrado: %1 Please confirm Por favor confirmar Are you sure you want to remove this AppImage? Seguro que desea eliminar esta AppImage? Failed to unregister AppImage: %1 Error al anular el registro de AppImage: %1 Failed to move AppImage into trash bin directory No se pudo mover la AppImage a la papelera Failed to remove AppImage: %1 Error al eliminar AppImage: %1 AppImage with same filename has already been integrated. AppImage con el mismo nombre de archivo ha sido actualmente integrado. Do you wish to overwrite the existing AppImage? Desea sobreescribir la AppImage existente? Choosing No will run the AppImage once, and leave the system in its current state. Elegir No ejecutará AppImage una vez y dejará el sistema en su estado actual. Warning Advertencia Failed to move AppImage to target location Error al mover AppImage a la ubicación de destino Failed to register AppImage in system via libappimage Error al registrar AppImage en el sistema a través de libappimage Failed to find integrated desktop file Error al encontrar el archivo de escritorio integrado Couldn't find integrated AppImage's desktop file No se pudo encontrar el archivo de escritorio de AppImage integrado Failed to load desktop file: Error al cargar el archivo de escritorio: AppImage has invalid desktop file AppImage tiene un archivo de escritorio no válido Failed to move AppImage to target location. Try to copy AppImage instead? Error al mover AppImage a la ubicación de destino. Intenta copiar AppImage en su lugar? Failed to call stat() on path: %1 Error al llamar a stat () en la ruta: %1 Failed to copy AppImage to target location Error al copiar AppImage en la ubicación de destino Updates AppImages after desktop integration, for use by Linux distributions Actualiza AppImages después de la integración del escritorio, para ser utilizado por las distribuciones de Linux AppImageLauncher update update helper app name Actualización de AppImageLauncher The AppImage hasn't been integrated before. This tool will, however, integrate the updated AppImage. La AppImage no se ha integrado antes. Esta herramienta, sin embargo, integrará la AppImage actualizada. Do you wish to continue? Desea continuar? No updates found No se encontraron actualizaciones Could not find updates for AppImage %1 No se pudieron encontrar las actualizaciones para AppImage %1 No update information found No se encontraron actualizaciones Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to set update information to allow for easy updating. No se encontró la información de actualización en la AppImage: %1 Este AppImage no soporta actualizaciones. Por favor solicite al autor que incluya la información de actualizaciones. Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to set upupdate information to allow for easy updating. No se pudo encontrar la información de actualización en AppImage: %1 AppImage no admite la actualización. Solicite a los autores que configuren información actualizada para permitir una fácil actualización. Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to embed update information to allow for easy updating. Failed to check for updates: %1 Error al buscar actualizaciones: %1 An update has been found for the AppImage %1 Se ha encontrado una actualización para AppImage %1 Do you want to perform the update? Desea realizar la actualización? Remove old AppImage after successful update Eliminar AppImage anterior después de una actualización exitosa Failed to update AppImage: %1 Error al actualizar AppImage: %1 File reported as updated does not exist: %1 El archivo informado como actualizado no existe: %1 Failed to register updated AppImage in system Error al registrar AppImage actualizado en el sistema Failed to unregister old AppImage in system Error al anular el registro de AppImage anterior en el sistema Failed to remove old AppImage Error al eliminar la antigua AppImage Failed to check for updates. Please check the command line output for details. No se pudo comprobar la existencia de actualizaciones. Para más detalles consulte los mensajes en la linea de comandos . Tracks AppImages in applications directories (user's, system and other ones). Automatically integrates AppImages moved into those directories and unintegrates ones removed from them. Lists directories watched by this daemon and exit RemoveDialog Please confirm Por favor confirmar <html><head/><body><p>Are you sure you want to remove this AppImage?</body></html> <html><head/><body><p>Estás seguro de que quieres eliminar esta AppImage?</body></html> Delete AppImage Eliminar AppImage <html><head/><body><p>Are you sure you want to delete this AppImage?</p></body></html> <html><head/><body><p>¿Confirma que quiere eliminar esta AppImage?</p></body></html> %1 %1 <html><head/><body><p>Uncheck to only remove the desktop integration, but leave the file on the system.</p></body></html> <html><head/><body><p>Desmarque solo eliminar la integración de escritorio, pero deje el archivo en el sistema.</p></body></html> Remove AppImage file from system Eliminar el archivo AppImage del sistema SettingsDialog AppImageLauncher Settings Configuración de AppImageLauncher Launcher Dialog Diálogo de iniciador Ask whether to move AppImage files into the applications directory Preguntar si mover archivos de AppImage en el directorio de aplicaciones General settings Configuración general <html><head/><body><p>When this box is checked, AppImageLauncher automatically starts a daemon called appimagelauncherd.</p><p>This daemon automatically integrates AppImages you copy into the &quot;Applications directory&quot; and the additional directories you configured. When the files are deleted, the daemon will clean up the integration data.</p></body></html> Auto start auto-integration daemon Iniciar automáticamente demonio de integración autom. Additional directories to watch Add new directory to list Remove selected directory from list Applications directory Directorio de aplicaciones <html><head/><body><p>When enabled, the daemon automatically integrates AppImages you copy into the &quot;Applications directory&quot;. When the files are deleted, the daemon will clean up the integration data.</p></body></html> <html><head/><body><p>Cuando está habilitado, el daemon integra automáticamente AppImages que copia en el&quot;Directorio de aplicaciones&quot;.Cuando los archivos se eliminan, el demonio limpiará los datos de integración.</p></body></html> Applications directory path Ruta del directorio de aplicaciones Location where to store your AppImage files to ease their management Ubicación donde almacenar sus archivos de AppImage para facilitar su gestión Enable auto-integration daemon Habilitar demonio de autointegración Available Features Características disponibles updater available for AppImages supporting AppImageUpdate actualizador disponible para AppImages soportando AppImageUpdate updater unavailable actualizador no disponible <strong>Note: this is an AppImageLauncher Lite build, only supports a limited set of features</strong><br />Please install the full version via the provided native packages to enjoy the full AppImageLauncher experience <strong>Nota: esta es una compilación de AppImageLauncher Lite, solo admite un conjunto limitado de características</strong><br />Instale la versión completa a través de los paquetes nativos provistos para disfrutar de la experiencia completa de AppImageLauncher Select Applications directory Seleccione el directorio de aplicaciones Select additional directory to watch ================================================ FILE: i18n/ui.fr.ts ================================================ FirstRunDialog First run Premier lancement <html><head/><body><p><span style=" font-size:11pt; font-weight:600;">Welcome to AppImageLauncher!</span></p><p>This little helper is designed to improve your AppImage experience on your computer.</p><p>It appears you have never run AppImageLauncher before. Please take a minute and configure your preferences. You can always change these later on, using the control panel.</p></body></html> <html><head/><body><p><span style=" font-size:11pt; font-weight:600;">Bienvenue dans AppImageLauncher  !</span></p><p>Cet outil est conçu pour améliorer votre expérience avec les applications AppImage.</p><p>Il semblerait que vous n'ayez jamais lancé AppImageLauncher auparavant. Prenez une minute pour configurer vos préférences. Vous pourrez toujours les changer plus tard en utilisant le panneau de configuration.</p></body></html> Ask me whether to move new AppImages into a central location Demandez-moi si je veux déplacer le nouvel AppImage dans un répertoire centralisé Integration target destination directory: Répertoire de destination des AppImages : Customize Personnalisez Choose integration destination dir Choisissez le répertoire de destination des AppImages (default) (par défaut) IntegrationDialog Desktop Integration Intégration bureau Icon <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Noto Sans'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">%1 has not been integrated into your system.</p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> <br />Integrating it will move the AppImage into a predefined location, and include it in your application launcher.</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">To remove or update the AppImage, please use the context menu of the application icon in your task bar or launcher. </p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The directory where the integrated AppImages are stored in is currently set to: %2</p></body></html> Integrate and run Intégrer et lancer Run once Lancer une fois QMessageBox Warning Avertissement AppImage has already been integrated, but it is not in the current integration destination directory. Do you want to move it into the new destination? Choosing No will run the AppImage once, and leave the AppImage in its current directory. L'AppImage a déjà été intégrée mais n'est pas dans le répertoire d'intégration actuel. Voulez-vous la déplacer vers le nouveau répertoire ? Sélectionner « Non » lancera l'AppImage une fois et la laissera dans son répertoire actuel. AppImage %1 has already been integrated, but it is not in the current integration destination directory. Do you want to move it into the new destination? Choosing No will run the AppImage once, and leave the AppImage in its current directory. L'AppImage %1 a déjà été intégrée, mais elle n'est pas dans le répertoire de destination des intégrations actuel. Voulez-vous la déplacer vers la nouvelle destination ? Sélectionner Non lancera l'AppImage une fois et laissera l'AppImage dans son répertoire actuel. Error Erreur Failed to unregister AppImage before re-integrating it Impossible de désenregistrer l'AppImage avant de la réintégrer Could not parse desktop file translations: Could not open file for reading: %1 Impossible d'analyser les traductions contenues dans le fichier « desktop » : Impossible d'ouvrir le fichier pour lecture : %1 Could not parse desktop file translations: Invalid syntax: %1 Impossible d'analyser les traductions contenues dans le fichier « desktop » : Syntaxe invalide : %1 File %1 is owned by another user: %2 Le fichier %1 appartient à un autre utilisateur : %2 Permissions problem Problèmes de permissions Failed to run permissions helper, exited with return code %1 Echec de l'exécution de l'aide aux autorisations, quitté avec le code de retour %1 Could not find suitable permissions helper, aborting N'a pas trouvé les aides de permissions appropriées, abandon QObject Error Erreur AppImageLauncher does not support type %1 AppImages at the moment. AppImageLauncher ne prend pas en charge actuellement les AppImages de type %1. Could not make AppImage executable: %1 Impossible de rendre l'AppImage exécutable : %1 Failed to open AppImage for reading: %1 Impossible de lire l'AppImage : %1 Failed to create temporary directory Impossible de créer un répertoire temporaire Failed to create temporary copy of type 1 AppImage Impossible de créer une copie temporaire d'une AppImage de type 1 Failed to open temporary AppImage copy for writing Impossible d'ouvrir une copie temporaire de l'AppImage pour écriture Failed to remove magic bytes from temporary AppImage copy Impossible de supprimer les octets magiques de la copie temporaire de l'AppImage execv() failed: %1 error message execv() a échoué : %1 runtime not found: no such file or directory: %1 runtime non trouvé : pas de tel fichier ou répertoire : %1 execv() failed: %1 execv() a échoué : %1 Usage: %1 [options] <path> Utilisation : %1 [options] <chemin> Desktop integration helper for AppImages, for use by Linux distributions. Assistant d'intégration au bureau d'AppImages, destiné à être utilisé par les distributions Linux. Options: Options : Display this help and exit Afficher cette aide et quitter Display version and exit Afficher la version et quitter Arguments: Paramètres : Path to AppImage (mandatory) Chemin vers l'AppImage (requis) Unexpected result from the integration dialog. Failed to clean up old desktop files Impossible de nettoyer les anciens fichiers « desktop » Failed to register AppImage in AppImageLauncherFS: error while trying to start appimagelauncherfs.service Echec de l'enregistrement de l'AppImage dans AppImageLauncherFS : erreur lors de l'essai de lancement de appimagelauncherfs.service Failed to register AppImage in AppImageLauncherFS: failed to register AppImage path %1 Echec de l'enregistrement de l'AppImage dans AppImageLauncherFS : echec de l'enregistrement dans le dossier AppImage 1% Failed to register AppImage in AppImageLauncherFS: could not open map file Impossible d'enregistrer l'AppImage dans AppImageLauncherFS : impossible d'ouvrir le fichier de la carte Failed to register AppImage in AppImageLauncherFS: could not find virtual file for AppImage Impossible d'enregistrer 'AppImage dans AppImageLauncherFS : impossible de trouver un fichier virtuel pour AppImage Failed to register AppImage in AppImageLauncherFS: unknown failure Impossible d'enregistrer l'AppImage dans AppImageLauncherFS : impossible de trouver un fichier virtuel pour AppImage Failed to clean up AppImage trash bin: %1 Impossible de nettoyer la corbeille à AppImages : %1 Unknown AppImageLauncher option: %1 Option non reconnue par AppImageLauncher : %1 Error: no such file or directory: %1 Erreur : pas de tel fichier ou répertoire : %1 Not an AppImage: %1 Pas une AppImage : %1 The directory the integrated AppImages are stored in is currently set to: %1 Le répertoire où sont stockées les AppImages intégrées est actuellement défini à : %1 The directory the integrated AppImages are stored in is currently set to: %1 Le répertoire de destination des intégrations d'AppImage est actuellement défini à : %1 Integrating it will move the AppImage into a predefined location, and include it in your application launcher. L'intégrer va déplacer l'AppImage dans un endroit prédéterminé et l'inclure dans votre lanceur d'application. To remove or update the AppImage, please use the context menu of the application icon in your task bar or launcher. Pour supprimer ou mettre à jour l'AppImage, utilisez le menu contextuel de l'icône d'application dans votre barre de tâches ou lanceur d'application. The directory the integrated AppImages are stored in is currently set to: Le répertoire où les AppImages intégrées sont stockées est actuellement : %1 has not been integrated into your system. %1 n'a pas été intégré à votre système. Desktop Integration Intégration bureau Integrate and run Intégrer et lancer Run once Lancer une fois Cancel Annuler Removes AppImages after desktop integration, for use by Linux distributions Supprime les AppImages après l'intégration au bureau, destiné à être utilisé par les distributions Linux AppImageLauncher remove remove helper app name Suppression par AppImageLauncher Helper to delete integrated AppImages easily, e.g., from the application launcher's context menu Aide pour supprimer facilement les AppImages intégrées, par exemple dans le menu contextuel du lanceur d'application Path to AppImage Chemin vers l'AppImage <path> <chemin> AppImage delete helper error Erreur de l'aide à la suppression de l'AppImage AppImage remove helper error Erreur de l'assistant de suppression d'AppImage Not an AppImage: %1 N'est pas une AppImage %1 Please confirm Veuillez confirmer Are you sure you want to remove this AppImage? Voulez-vous vraiment supprimer cette AppImage ? Failed to unregister AppImage: %1 Impossible de désenregistrer l'AppImage : %1 Failed to move AppImage into trash bin directory Impossible de déplacer l'AppImage vers le répertoire de corbeille Failed to remove AppImage: %1 Impossible de supprimer l'AppImage : %1 AppImage with same filename has already been integrated. Une AppImage avec le même nom de fichier a déjà été intégrée. Do you wish to overwrite the existing AppImage? Voulez-vous supprimer l'AppImage déjà existante ? Choosing No will run the AppImage once, and leave the system in its current state. Sélectionner Non lancera l'AppImage une fois et laissera votre système dans son état actuel. Warning Avertissement Failed to move AppImage to target location Impossible de déplacer l'AppImage vers son répertoire cible Failed to register AppImage in system via libappimage Impossible d'enregistrer l'AppImage dans le système via libappimage Failed to find integrated desktop file Impossible de trouver le fichier « desktop » intégré Couldn't find integrated AppImage's desktop file Impossible de trouver le fichier « desktop » de l'AppImage intégrée Failed to load desktop file: Impossible de charger le fichier «desktop» : AppImage has invalid desktop file L'AppImage a un fichier « desktop » invalide Failed to move AppImage to target location. Try to copy AppImage instead? Impossible de déplacer l'AppImage vers le répertoire cible. Essayer plutôt de la copier ? Failed to call stat() on path: %1 Impossible d'appeler stat() sur le chemin : %1 Failed to copy AppImage to target location Impossible de copier l'AppImage vers le répertoire cible Updates AppImages after desktop integration, for use by Linux distributions Met à jour les AppImages après l'intégration au bureau, destiné à être utilisé par les distributions Linux AppImageLauncher update update helper app name Mise à jour par AppImageLauncher The AppImage hasn't been integrated before. This tool will, however, integrate the updated AppImage. L'AppImage n'a pas été intégrée auparavant. Cependant, cet outil intégrera l'AppImage mise à jour. Do you wish to continue? Voulez-vous continuer ? No updates found Pas de mises à jour trouvées Could not find updates for AppImage %1 Impossible de trouver des mises à jour pour l'AppImage %1 Failed to check for updates. Please check the command line output for details. Impossible de vérifier les mises à jour. Vérifiez la sortie en ligne de commandes pour plus d'informations. No update information found Aucune information de mise à jour trouvée Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to set update information to allow for easy updating. Impossible de trouver des informations de mise à jour dans l'AppImage : %1 Cette AppImage ne prend pas en charge les mises à jour. Veuillez contacter les auteurs pour qu'ils définissent des informations de mise à jour, ce qui permet les mises à jour automatiques. Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to set upupdate information to allow for easy updating. Impossible de trouver des informations de mises à jours dans AppImage : %1 L'AppImage ne prend pas en charge la mise à jour. Veuillez demander aux auteurs de configurer les informations de mise à jour pour permettre une mise à jour facile. Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to embed update information to allow for easy updating. Failed to check for updates: %1 Impossible de vérifier la disponibilité de mises à jour : %1 An update has been found for the AppImage %1 Une mise à jour a été trouvée pour l'AppImage %1 Do you want to perform the update? Voulez-vous effectuer la mise à jour ? Remove old AppImage after successful update Supprimer l'ancienne AppImage après une mise à jour réussie Failed to update AppImage: %1 La mise à jour de l'AppImage a échoué : %1 File reported as updated does not exist: %1 Le fichier signalé comme mis à jour n'existe pas : %1 Failed to register updated AppImage in system Impossible d'enregistrer l'AppImage mise à jour dans le système Failed to unregister old AppImage in system Impossible de désenregistrer l'ancienne AppImage du système Failed to remove old AppImage Impossible de supprimer l'ancienne AppImage Tracks AppImages in applications directories (user's, system and other ones). Automatically integrates AppImages moved into those directories and unintegrates ones removed from them. Suit les AppImages dans les répertoires d'applications (utilisateur, système et autres). Intègre automatiquement les AppImages déplacées dans ces répertoires et désintégre celles qui en ont été retirées. Lists directories watched by this daemon and exit Liste les répertoires surveillés par ce démon et quitter RemoveDialog Please confirm Veuillez confirmer Delete AppImage Supprimer l'AppImage <html><head/><body><p>Are you sure you want to delete this AppImage?</p></body></html> <html><head/><body><p>Etes vous sur de vouloir supprimer cette AppImage ?</p></body></html> %1 %1 SettingsDialog AppImageLauncher Settings Paramètres de AppImageLauncher Launcher Dialog Dialogue avec le lanceur Ask whether to move AppImage files into the applications directory Demandez s'il faut déplacer les fichiers AppImage dans le répertoire des applications General settings Paramètres généraux <html><head/><body><p>When this box is checked, AppImageLauncher automatically starts a daemon called appimagelauncherd.</p><p>This daemon automatically integrates AppImages you copy into the &quot;Applications directory&quot; and the additional directories you configured. When the files are deleted, the daemon will clean up the integration data.</p></body></html> <html><head/><body><p>Lorsque cette case est cochée, AppImageLauncher lance automatiquement un démon appelé appimagelauncherd.</p><p>Ce démon intègre automatiquement les AppImages que vous copiez dans le répertoire &quot;Applications et les répertoires supplémentaires que vous avez configurés. Lorsque les fichiers sont supprimés, le démon nettoie les données d'intégration.</p></body></html> Auto start auto-integration daemon Démarrage automatique du démon d'auto-intégration Additional directories to watch Autres répertoires à consulter Add new directory to list Ajouter un nouveau répertoire à la liste Remove selected directory from list Supprimer le répertoire sélectionné de la liste Applications directory path Chemin d'accès au répertoire des applications Location where to store your AppImage files to ease their management Emplacement où stocker vos fichiers AppImage pour faciliter leur gestion Available Features Fonctionnalités disponibles updater available for AppImages supporting AppImageUpdate Mise à jour disponible pour les AppImages supportant AppImageUpdate updater unavailable mise à jour non disponible <strong>Note: this is an AppImageLauncher Lite build, only supports a limited set of features</strong><br />Please install the full version via the provided native packages to enjoy the full AppImageLauncher experience <strong>Note : il s'agit d'une version AppImageLauncher Lite, qui ne supporte qu'un ensemble limité de fonctionnalités</strong><br />Veuillez installer la version complète via les paquets natifs fournis pour profiter pleinement de l'expérience d'AppImageLauncher Select Applications directory Selectionner le répertoire d'applications Select additional directory to watch Sélectionner un répertoire supplémentaire à voir ================================================ FILE: i18n/ui.it.ts ================================================ FirstRunDialog First run Primo avvio <html><head/><body><p><span style=" font-size:11pt; font-weight:600;">Welcome to AppImageLauncher!</span></p><p>This little helper is designed to improve your AppImage experience on your computer.</p><p>It appears you have never run AppImageLauncher before. Please take a minute and configure your preferences. You can always change these later on, using the control panel.</p></body></html> <html><head/><body><p><span style=" font-size:11pt; font-weight:600;">Benvenuto su AppImageLauncher!</span></p><p>Questo piccolo assistente è progettato per migliorare la tua esperienza con le AppImage sul tuo computer.</p><p>Sembra che tu non abbia mai eseguito AppImageLauncher prima. Ti preghiamo di dedicare un minuto e configurare le tue preferenze. Puoi sempre modificarle in seguito, utilizzando il pannello di controllo.</p></body></html> Ask me whether to move new AppImages into a central location Chiedimi se spostare le nuove AppImage in una posizione centrale Integration target destination directory: Directory di destinazione per l'integrazione: Customize Personalizza Choose integration destination dir Scegliere la directory di destinazione per l'integrazione (default) (predefinito) IntegrationDialog Desktop Integration Integrazione Desktop Icon <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Noto Sans'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">%1 has not been integrated into your system.</p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> <br />Integrating it will move the AppImage into a predefined location, and include it in your application launcher.</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">To remove or update the AppImage, please use the context menu of the application icon in your task bar or launcher. </p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The directory where the integrated AppImages are stored in is currently set to: %2</p></body></html> Integrate and run Integra e avvia Run once Avvia una volta QMessageBox Warning Avviso AppImage has already been integrated, but it is not in the current integration destination directory. Do you want to move it into the new destination? Choosing No will run the AppImage once, and leave the AppImage in its current directory. AppImage è già stato integrato, ma non si trova nella directory di destinazione dell'integrazione corrente. Vuoi spostarlo nella nuova destinazione? Scegliendo No verrà eseguito l'AppImage una volta e lascerà l'AppImage nella sua directory corrente. AppImage %1 has already been integrated, but it is not in the current integration destination directory. Do you want to move it into the new destination? Choosing No will run the AppImage once, and leave the AppImage in its current directory. L'AppImage %1 è già stata integrata, ma non si trova nella directory di integrazione corrente. Vuoi spostarla nella nuova destinazione? Scegliendo No verrà eseguita l'AppImage una volta e verrà lasciata l'AppImage nella sua directory corrente. Error Errore Failed to unregister AppImage before re-integrating it Impossibile annullare la registrazione dell'AppImage per reintegrarla Could not parse desktop file translations: Could not open file for reading: %1 Impossibile analizzare le traduzioni dei file desktop: Impossibile aprire il file per la lettura: %1 Could not parse desktop file translations: Invalid syntax: %1 Impossibile analizzare le traduzioni dei file desktop: Sintassi non valida: %1 File %1 is owned by another user: %2 Il file %1 è di proprietà di un altro utente: %2 Permissions problem Problema con i permessi File %1 is owned by another user: %2 Relaunch with their permissions? Il file %1 è di proprietà di un altro utente: %2 Rilanciare con i loro permessi? Failed to run permissions helper, exited with return code %1 Impossibile eseguire l'assistente dei permessi, terminato con il codice di ritorno %1 Could not find suitable permissions helper, aborting Impossibile trovare un assistente dei permessi adeguato, interrotto QObject Error Errore AppImageLauncher does not support type %1 AppImages at the moment. AppImageLauncher non supporta AppImage di tipo %1 al momento. Could not make AppImage executable: %1 Impossibile rendere eseguibile l'AppImage: %1 Failed to open AppImage for reading: %1 Impossibile aprire AppImage per la lettura: %1 Failed to create temporary directory Impossibile creare la directory temporanea Failed to create temporary copy of type 1 AppImage Impossibile creare una copia temporanea di AppImage di tipo 1 Failed to open temporary AppImage copy for writing Impossibile aprire la copia temporanea di AppImage per la scrittura Failed to remove magic bytes from temporary AppImage copy Impossibile rimuovere i byte magici dalla copia temporanea di AppImage execv() failed: %1 error message execv() fallito: %1 runtime not found: no such file or directory: %1 runtime non trovato: nessun file o directory:% 1 execv() failed: %1 execv() fallito: %1 Usage: %1 [options] <path> Uso: %1 [opzioni] <percorso> Desktop integration helper for AppImages, for use by Linux distributions. Assistente di integrazione desktop per AppImage, per l'utilizzo da parte di distribuzioni Linux. Options: Opzioni: Display this help and exit Visualizza questa guida ed esce Display version and exit Visualizza la versione ed esce Arguments: Argomenti: Path to AppImage (mandatory) Percorso dell'AppImage (obbligatorio) Unexpected result from the integration dialog. Failed to clean up old desktop files Impossibile ripulire i vecchi file desktop Failed to register AppImage in AppImageLauncherFS: error while trying to start appimagelauncherfs.service Impossibile registrare AppImage in AppImageLauncherFS: errore durante il tentativo di avviare appimagelauncherfs.service Failed to register AppImage in AppImageLauncherFS: failed to register AppImage path %1 Impossibile registrare AppImage in AppImageLauncherFS: impossibile registrare il percorso AppImage %1 Failed to register AppImage in AppImageLauncherFS: could not open map file Impossibile registrare AppImage in AppImageLauncherFS: impossibile aprire la mappa del file Failed to register AppImage in AppImageLauncherFS: could not find virtual file for AppImage Impossibile registrare AppImage in AppImageLauncherFS: impossibile trovare il file virtuale per AppImage Failed to register AppImage in AppImageLauncherFS: unknown failure Impossibile registrare AppImage in AppImageLauncherFS: errore sconosciuto Failed to clean up AppImage trash bin: %1 Impossibile ripulire il cestino delle AppImage: %1 Unknown AppImageLauncher option: %1 Opzione AppImageLauncher sconosciuta: %1 Error: no such file or directory: %1 Errore: file o directory non esistente: %1 Not an AppImage: %1 Non un'AppImage: %1 The directory the integrated AppImages are stored in is currently set to: %1 La directory in cui sono archiviate le AppImage integrate è attualmente impostata su: %1 The directory the integrated AppImages are stored in is currently set to: %1 La directory in cui sono archiviati gli AppImages integrati è attualmente impostata: %1 Integrating it will move the AppImage into a predefined location, and include it in your application launcher. Integrandola, l'AppImage verrà spostata in una posizione predefinita e verrà inclusa nel launcher delle applicazioni. To remove or update the AppImage, please use the context menu of the application icon in your task bar or launcher. Per rimuovere o aggiornare un'AppImage, utilizzare il menu di scelta rapida sull'icona dell'applicazione nella barra delle applicazioni o nel launcher delle applicazioni. The directory the integrated AppImages are stored in is currently set to: La directory in cui sono archiviate le AppImage integrate è attualmente impostata su: %1 has not been integrated into your system. %1 non è stata integrata nel tuo sistema. Desktop Integration Integrazione Desktop Integrate and run Integra e avvia Run once Avvia una volta Cancel Annulla Removes AppImages after desktop integration, for use by Linux distributions Rimuove AppImages dopo l'integrazione desktop, per l'utilizzo da parte delle distribuzioni Linux AppImageLauncher remove remove helper app name Rimuovi AppImageLauncher Helper to delete integrated AppImages easily, e.g., from the application launcher's context menu Aiuta ad eliminare facilmente le AppImage integrate, ad es. dal menu contestuale del launcher delle applicazioni Path to AppImage Percorso dell'AppImage <path> <percorso> AppImage delete helper error Errore assistente di rimozione AppImage AppImage remove helper error AppImage rimuove l'errore dell'helper Not an AppImage: %1 Non è un'AppImage: %1 Refusing to work on non-integrated AppImage: %1 Rifiuto di lavorare su un AppImage non integrato: %1 Please confirm Si prega di confermare Are you sure you want to remove this AppImage? Sei sicuro di voler rimuovere questa AppImage? Failed to unregister AppImage: %1 Impossibile annullare la registrazione dell'AppImage: %1 Failed to move AppImage into trash bin directory Impossibile spostare AppImage nel cestino Failed to remove AppImage: %1 Impossibile rimuovere AppImage: %1 AppImage with same filename has already been integrated. Un'AppImage con lo stesso nome è già stata integrata. Do you wish to overwrite the existing AppImage? Desideri sovrascrivere l'AppImage esistente? Choosing No will run the AppImage once, and leave the system in its current state. Scegliendo No, l'AppImage verrà eseguita una volta e il sistema sarà lasciato nel suo stato corrente. Warning Avviso Failed to move AppImage to target location Impossibile spostare AppImage nella posizione di destinazione Failed to register AppImage in system via libappimage Impossibile registrare AppImage nel sistema tramite libappimage Failed to find integrated desktop file Impossibile trovare il file desktop integrato Couldn't find integrated AppImage's desktop file Impossibile trovare il file desktop dell'AppImage integrata Failed to load desktop file: Caricamento del file desktop non riuscito: AppImage has invalid desktop file L'AppImage ha un file desktop non valido Failed to move AppImage to target location. Try to copy AppImage instead? Impossibile spostare l'AppImage nella posizione di destinazione. Provare invece a copiare l'AppImage? Failed to call stat() on path: %1 Impossibile invocare stat() sul percorso: %1 Failed to copy AppImage to target location Impossibile copiare AppImage nella posizione di destinazione Updates AppImages after desktop integration, for use by Linux distributions Aggiorna le AppImage dopo l'integrazione desktop, per l'utilizzo da parte delle distribuzioni Linux AppImageLauncher update update helper app name Aggiornare AppImageLauncher The AppImage hasn't been integrated before. This tool will, however, integrate the updated AppImage. AppImage non è stato integrato prima. Questo strumento, tuttavia, integrerà l'AppImage aggiornato. Do you wish to continue? Vuoi continuare? No updates found Nessun aggiornamento trovato Could not find updates for AppImage %1 Impossibile trovare aggiornamenti per l'AppImage %1 Failed to check for updates. Please check the command line output for details. Impossibile controllare gli aggiornamenti. Controllare l'output della riga di comando per i dettagli. No update information found Nessuna informazione di aggiornamento trovata Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to set update information to allow for easy updating. Impossibile trovare le informazioni di aggiornamento in AppImage: %1 AppImage non supporta l'aggiornamento. Si prega di chiedere agli autori di impostare le informazioni di aggiornamento per consentire un facile aggiornamento. Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to set upupdate information to allow for easy updating. Impossibile trovare le informazioni di aggiornamento in AppImage: %1 AppImage non supporta l'aggiornamento. Si prega di chiedere agli autori di impostare informazioni aggiornate per consentire un facile aggiornamento. Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to embed update information to allow for easy updating. Impossibile trovare le informazioni di aggiornamento nell'AppImage: %1 L'AppImage non supporta gli aggiornamenti. Per favore chiedi agli autori di includere le informazioni di aggiornamento per facilitare gli aggiornamenti. Failed to check for updates: %1 Impossibile controllare gli aggiornamenti: %1 An update has been found for the AppImage %1 È stato trovato un aggiornamento per l'AppImage %1 Do you want to perform the update? Vuoi eseguire l'aggiornamento? Remove old AppImage after successful update Rimuovere la vecchia AppImage dopo un aggiornamento riuscito Failed to update AppImage: %1 Impossibile aggiornare l'AppImage: %1 File reported as updated does not exist: %1 Il file segnalato come aggiornato non esiste: %1 Failed to register updated AppImage in system Impossibile registrare l'AppImage aggiornata nel sistema Failed to unregister old AppImage in system Impossibile annullare la registrazione della vecchia AppImage dal sistema Failed to remove old AppImage Impossibile rimuovere la vecchia AppImage Tracks AppImages in applications directories (user's, system and other ones). Automatically integrates AppImages moved into those directories and unintegrates ones removed from them. Tiene traccia delle AppImage nelle directory delle applicazioni (dell'utente, di sistema e altre). Integra le AppImage spostate in queste directory e deintegra quelle rimosse automaticamente. Lists directories watched by this daemon and exit Elenca le directory monitorate da questo demone ed esce RemoveDialog Please confirm Si prega di confermare <html><head/><body><p>Are you sure you want to remove this AppImage?</body></html> <html><head/><body><p>Sei sicuro di voler rimuovere questa AppImage?</body></html> Delete AppImage Elimina AppImage <html><head/><body><p>Are you sure you want to delete this AppImage?</p></body></html> <html><head/><body><p>Sei sicuro di voler eliminare questa AppImage?</p></body></html> %1 %1 <html><head/><body><p>Uncheck to only remove the desktop integration, but leave the file on the system.</p></body></html> <html><head/><body><p>Deseleziona per rimuovere solo l'integrazione desktop, ma lascia il file sul sistema.</p></body></html> Remove AppImage file from system Rimuovere il file AppImage dal sistema SettingsDialog AppImageLauncher Settings Impostazioni AppImageLauncher Launcher Dialog Finestra di dialogo del launcher Ask whether to move AppImage files into the applications directory Chiedere se spostare i file AppImage nella directory delle applicazioni General settings Impostazioni generali <html><head/><body><p>When this box is checked, AppImageLauncher automatically starts a daemon called appimagelauncherd.</p><p>This daemon automatically integrates AppImages you copy into the &quot;Applications directory&quot; and the additional directories you configured. When the files are deleted, the daemon will clean up the integration data.</p></body></html> <html><head/><body><p>Quando questa checkbox è spuntata, AppImageLauncher avvia automaticamente un demone chiamato appimagelauncherd.</p><p>Questo demone integra automaticamente le AppImage che vengono copiate nella "directory delle applicazioni" e nelle directory aggiuntive configurate. Quando i file vengono eliminati, il demone pulisce automaticamente i dati d'integrazione.</p></body></html> Auto start auto-integration daemon Avviare il demone di auto-integrazione automaticamente Additional directories to watch Directory aggiuntive da monitorare Add new directory to list Aggiungi nuova directory all'elenco Remove selected directory from list Rimuovi directory selezionata dall'elenco Applications directory Directory delle applicazioni <html><head/><body><p>When enabled, the daemon automatically integrates AppImages you copy into the &quot;Applications directory&quot;. When the files are deleted, the daemon will clean up the integration data.</p></body></html> <html><head/><body><p>Se abilitato, il demone integra automaticamente le AppImages copiate dentro nel &quot;Directory delle applicazioni&quot;. Quando i file vengono eliminati, il demone pulirà i dati di integrazione.</p></body></html> Applications directory path Percorso della directory delle applicazioni Location where to store your AppImage files to ease their management Posizione in cui archiviare i file AppImage per facilitarne la gestione Enable auto-integration daemon Abilita il demone di integrazione automatica Available Features Funzionalità disponibili updater available for AppImages supporting AppImageUpdate aggiornamenti disponibili per le AppImage che supportano AppImageUpdate updater unavailable aggiornamenti non disponibili <strong>Note: this is an AppImageLauncher Lite build, only supports a limited set of features</strong><br />Please install the full version via the provided native packages to enjoy the full AppImageLauncher experience <strong>Nota: questa è una build di AppImageLauncher Lite, supporta solo un set limitato di funzionalità</strong><br />Installa la versione completa tramite i pacchetti nativi forniti per usufruire dell'esperienza AppImageLauncher completa Select Applications directory Seleziona la directory Applicazioni Select additional directory to watch Seleziona directory aggiuntive da monitorare ================================================ FILE: i18n/ui.nb_NO.ts ================================================ FirstRunDialog First run Førstegangs bruk <html><head/><body><p><span style=" font-size:11pt; font-weight:600;">Welcome to AppImageLauncher!</span></p><p>This little helper is designed to improve your AppImage experience on your computer.</p><p>It appears you have never run AppImageLauncher before. Please take a minute and configure your preferences. You can always change these later on, using the control panel.</p></body></html> <html><head/><body><p><span style=" font-size:11pt; font-weight:600;">Velkommen til AppImageLauncher.</span></p><p>Denne lille hjelperen er designet for å forbedre din AppImage-opplevelse på din datamaskin.</p><p>Det ser ut til at du aldri har kjørt AppImageLauncher før. Bruk litt tid på å sette opp innstillingene dine. Du kan alltid endre disse senere, ved bruk av kontrollpanelet.</p></body></html> Ask me whether to move new AppImages into a central location Spør hvorvidt flytting til sentral plassering skal utføres for ethvert nytt AppImage Integration target destination directory: Integrasjonsmål for målmappe: Customize Tilpass Choose integration destination dir Velg integrasjonsmålmappe (default) (forvalg) IntegrationDialog Desktop Integration Skrivebordsintegrasjon Icon <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Noto Sans'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">%1 has not been integrated into your system.</p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> <br />Integrating it will move the AppImage into a predefined location, and include it in your application launcher.</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">To remove or update the AppImage, please use the context menu of the application icon in your task bar or launcher. </p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The directory where the integrated AppImages are stored in is currently set to: %2</p></body></html> Integrate and run Integrer og kjør Run once Kjør én gang QMessageBox Warning Advarsel AppImage has already been integrated, but it is not in the current integration destination directory. Do you want to move it into the new destination? Choosing No will run the AppImage once, and leave the AppImage in its current directory. AppImage has already been integrated, but it is not in the current integration destination directory. Do you want to move it into the new destination? Choosing No will run the AppImage once, and leave the AppImage in its current directory. AppImage %1 has already been integrated, but it is not in the current integration destination directory. Do you want to move it into the new destination? Choosing No will run the AppImage once, and leave the AppImage in its current directory. AppImage %1 har allerede blitt integrert, men det er ikke å finne i nåværende integrasjonsmålmapppe. Ønsker du å flytte det til den nye mappen? Å velge "Nei" vil kjøre AppImage én gang, og levne det i sin nåværende mappe. Error Feil Failed to unregister AppImage before re-integrating it Klarte ikke å avregistrere AppImage før re-integrering av det Could not parse desktop file translations: Could not open file for reading: %1 Kunne ikke tolke skrivebordsfiloversettelser: Kunne ikke åpne fil for lesing: %1 Could not parse desktop file translations: Invalid syntax: %1 Kunne ikke tolke skrivebordsfiloversettelser: Ugyldig syntaks: %1 File %1 is owned by another user: %2 Filen %1 eies av en annen bruker: %2 Permissions problem Tilgangsproblem File %1 is owned by another user: %2 Relaunch with their permissions? File %1 is owned by another user: %2 Relaunch with their permissions? Failed to run permissions helper, exited with return code %1 Klarte ikke å kjøre tilgangshjelper, avsluttet med returkode %1 Could not find suitable permissions helper, aborting Fant ikke passende tilgangshjelper, avbryter QObject Error Feil AppImageLauncher does not support type %1 AppImages at the moment. AppImageLauncher støtter ikke AppImage av %1-type for øyeblikket. Could not make AppImage executable: %1 Kunne ikke gjøre AppImage kjørbar: %1 Failed to open AppImage for reading: %1 Failed to open AppImage for reading: %1 Failed to create temporary directory Failed to create temporary directory Failed to create temporary copy of type 1 AppImage Failed to create temporary copy of type 1 AppImage Failed to open temporary AppImage copy for writing Failed to open temporary AppImage copy for writing Failed to remove magic bytes from temporary AppImage copy Failed to remove magic bytes from temporary AppImage copy execv() failed: %1 error message execv() failed: %1 runtime not found: no such file or directory: %1 runtime not found: no such file or directory: %1 execv() failed: %1 execv() mislyktes: %1 Usage: %1 [options] <path> Bruk: %1 [tilvalg] <sti> Desktop integration helper for AppImages, for use by Linux distributions. Skrivebordsintegrasjonshjelper for AppImage-filer for bruk i Linux-distribusjoner. Options: Tilvalg: Display this help and exit Vis denne hjelpen og avslutt Display version and exit Vis versjon og avslutt Arguments: Argumenter: Path to AppImage (mandatory) Sti til AppImage (påkrevd) Unexpected result from the integration dialog. Failed to clean up old desktop files Klarte ikke å tømme gamle skrivebordsfiler Failed to register AppImage in AppImageLauncherFS: error while trying to start appimagelauncherfs.service Failed to register AppImage in AppImageLauncherFS: error while trying to start appimagelauncherfs.service Failed to register AppImage in AppImageLauncherFS: failed to register AppImage path %1 Failed to register AppImage in AppImageLauncherFS: failed to register AppImage path %1 Failed to register AppImage in AppImageLauncherFS: could not open map file Failed to register AppImage in AppImageLauncherFS: could not open map file Failed to register AppImage in AppImageLauncherFS: could not find virtual file for AppImage Failed to register AppImage in AppImageLauncherFS: could not find virtual file for AppImage Failed to register AppImage in AppImageLauncherFS: unknown failure Failed to register AppImage in AppImageLauncherFS: unknown failure Failed to clean up AppImage trash bin: %1 Klarte ikke å tømme papirkurv tilhørende AppImage: %1 Unknown AppImageLauncher option: %1 Ukjent AppImageLauncher-valg: %1 Error: no such file or directory: %1 Feil: Ingen slik fil eller mappe: %1 Not an AppImage: %1 Ikke et AppImage: %1 The directory the integrated AppImages are stored in is currently set to: %1 Mappen integrerte AppImage-filer lagres i er satt til: %1 The directory the integrated AppImages are stored in is currently set to: %1 The directory the integrated AppImages are stored in is currently set to: %1 Integrating it will move the AppImage into a predefined location, and include it in your application launcher. Integrasjon vil flytte AppImage til predefinert plassering, og inkludere det i din programstarter. To remove or update the AppImage, please use the context menu of the application icon in your task bar or launcher. For å flytte eller oppdatere AppImage, bruk bindeleddsmenyen til programikonet i ditt oppgavelinje eller programstarter. The directory the integrated AppImages are stored in is currently set to: Mappen integrerte AppImage-filer lagres i er satt til: %1 has not been integrated into your system. %1 har ikke blitt integrert i systemet ditt. Desktop Integration Skrivebordsintegrasjon Integrate and run Integrer og kjør Run once Kjør én gang Cancel Avbryt Removes AppImages after desktop integration, for use by Linux distributions Removes AppImages after desktop integration, for use by Linux distributions AppImageLauncher remove remove helper app name AppImageLauncher remove Helper to delete integrated AppImages easily, e.g., from the application launcher's context menuz Helper to delete integrated AppImages easily, e.g., from the application launcher's context menuz Helper to delete integrated AppImages easily, e.g., from the application launcher's context menu Hjelper for å slette integrerte AppImage-filer enkelt, fra programoppstarterens bindeleddsmeny Path to AppImage Sti til AppImage <path> <sti> AppImage delete helper error Slettingsfeil for AppImage-hjelperen AppImage remove helper error AppImage remove helper error Not an AppImage: %1 Ikke et AppImage: %1 Refusing to work on non-integrated AppImage: %1 Refusing to work on non-integrated AppImage: %1 Please confirm Please confirm Are you sure you want to remove this AppImage? Are you sure you want to remove this AppImage? Failed to unregister AppImage: %1 Klarte ikke å avregistrere AppImage: %1 Failed to move AppImage into trash bin directory Klarte ikke å flytte AppImage til papirkurvsmappe Failed to remove AppImage: %1 Failed to remove AppImage: %1 AppImage with same filename has already been integrated. AppImage med samme filnavn allerede integrert. Do you wish to overwrite the existing AppImage? Ønsker du å overskrive eksisterende AppImage? Choosing No will run the AppImage once, and leave the system in its current state. Å velge "Nei" vil kjøre AppImage én gang, og levne systemet i nåværende tilstand. Warning Advarsel Failed to move AppImage to target location Failed to move AppImage to target location Failed to register AppImage in system via libappimage Klarte ikke å registrere AppImage i system via libappimage Failed to find integrated desktop file Klarte ikke å finne integrert skrivebordsfil Couldn't find integrated AppImage's desktop file Kunne ikke finne den integrerte skrivebordsfilen tilhørende AppImage Failed to load desktop file: Klarte ikke å laste inn skrivebordsfil: AppImage has invalid desktop file AppImage har ugyldig skrivebordsfil Failed to move AppImage to target location. Try to copy AppImage instead? Klarte ikke å flytte AppImage til målmappe. Prøve å kopiere AppImage istedenfor? Failed to call stat() on path: %1 Klarte ikke å kalle stat() i sti: %1 Failed to copy AppImage to target location Failed to copy AppImage to target location Updates AppImages after desktop integration, for use by Linux distributions Oppdaterer AppImage-filer etter skrivebordsintegrasjon, for bruk i Linux-distribusjoner AppImageLauncher update update helper app name AppImageLauncher-oppdatering The AppImage hasn't been integrated before. This tool will, however, integrate the updated AppImage. The AppImage hasn't been integrated before. This tool will, however, integrate the updated AppImage. Do you wish to continue? Do you wish to continue? No updates found Fant ingen oppdateringer Could not find updates for AppImage %1 Fant ingen oppdateringer for %1-AppImage Failed to check for updates. Please check the command line output for details. Failed to check for updates. Please check the command line output for details. No update information found Fant ingen oppdateringsinfo Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to set update information to allow for easy updating. Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to set update information to allow for easy updating. Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to set upupdate information to allow for easy updating. Kunne ikke finne oppdateringsinfo i AppImage: %1 AppImage støtter ikke oppdatering. Sprøv utviklerne om å sette upupdate-info for enkel oppdatering. Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to embed update information to allow for easy updating. Failed to check for updates: %1 Klarte ikke å sjekke oppdateringer: %1 An update has been found for the AppImage %1 Oppdatering tilgjengelig for AppImage %1 Do you want to perform the update? Ønsker du å utføre oppdateringen? Remove old AppImage after successful update Fjern gammelt AppImage etter oppdatering Failed to update AppImage: %1 Klarte ikke å oppdatere AppImage: %1 File reported as updated does not exist: %1 Fil rapporter som oppdatert finnes ikke: %1 Failed to register updated AppImage in system Klarte ikke å registrere oppdatert AppImage i system Failed to unregister old AppImage in system Klarte ikke å avregistrere gammelt AppImage i system Failed to remove old AppImage Klarte ikke å fjerne gammelt AppImage Tracks AppImages in applications directories (user's, system and other ones). Automatically integrates AppImages moved into those directories and unintegrates ones removed from them. Sporer AppImage-filer i programmapper (brukerens, systemet og andre). Integrerer AppImage-filer flyttet til disse mappene automatisk, og avintegrerer de som flyttes fra dem. Search for AppImages in /Applications directories in suitable mounted filesystems Search for AppImages in /Applications directories in suitable mounted filesystems Search for AppImages in /Applications directories suitable mounted filesystems Search for AppImages in /Applications directories suitable mounted filesystems Lists directories watched by this daemon and exit List opp mapper denne nissen holder oppsyn med og avslutt RemoveDialog Please confirm Please confirm <html><head/><body><p>Are you sure you want to remove this AppImage?</body></html> <html><head/><body><p>Are you sure you want to remove this AppImage?</body></html> Delete AppImage Slett AppImage <html><head/><body><p>Are you sure you want to delete this AppImage?</p></body></html> <html><head/><body><p>Er du sikker på at du vil slette valgt AppImage?</p></body></html> %1 %1 <html><head/><body><p>Uncheck to only remove the desktop integration, but leave the file on the system.</p></body></html> <html><head/><body><p>Uncheck to only remove the desktop integration, but leave the file on the system.</p></body></html> Remove AppImage file from system Remove AppImage file from system SettingsDialog AppImageLauncher Settings AppImageLauncher-innstillinger AppImageLauncher AppImageLauncher Launcher Dialog Oppstarter-dialog Ask whether to move AppImage files into the applications directory Spør hvorvidt AppImage-filer skal flyttes til programmappen appimagelauncherd appimagelauncherd General settings Generelle innstillinger <html><head/><body><p>When this box is checked, AppImageLauncher automatically starts a daemon called appimagelauncherd.</p><p>This daemon automatically integrates AppImages you copy into the &quot;Applications directory&quot; and the additional directories you configured. When the files are deleted, the daemon will clean up the integration data.</p></body></html> <html><head/><body><p>AppImageLauncher starter en nisse ved navn appimagelauncherd automatisk.</p><p>Denne nissen integrerer AppImage-filer du kopierer inn i &quot;Programmappen&quot; og ytterligere mapper du har satt opp. Når filer slettes, vil nissen renske opp i integrasjonsdataen.</p></body></html> Auto start auto-integration daemon Start auto-integrasjonsnissen automatisk Additional directories to watch Ytterligere mapper å holde oppsyn med Add new directory to list Legg til ny mappe i listen Remove selected directory from list Fjern valgt mappe fra listen - - Applications directory Applications directory <html><head/><body><p>When enabled, the daemon automatically integrates AppImages you copy into the &quot;Applications directory&quot;. When the files are deleted, the daemon will clean up the integration data.</p></body></html> <html><head/><body><p>When enabled, the daemon automatically integrates AppImages you copy into the &quot;Applications directory&quot;. When the files are deleted, the daemon will clean up the integration data.</p></body></html> Applications directory path Programmappesti Location where to store your AppImage files to ease their management Plassering du ønsker å lagre dine AppImage-filer for å forenkle håndteringen Location where to store your AppImage files to ease their management using the file manager. Location where to store your AppImage files to ease their management using the file manager. /path /path Enable auto-integration daemon Enable auto-integration daemon Available Features Tilgjengelige funksjoner updater available for AppImages supporting AppImageUpdate oppdaterer tilgjengelig for AppImage-filer som støtter AppImageUpdate updater unavailable oppdaterer utilgjengelig <strong>Note: this is an AppImageLauncher Lite build, only supports a limited set of features</strong><br />Please install the full version via the provided native packages to enjoy the full AppImageLauncher experience <strong>Merk: Dette er et AppImageLauncher Lite-bygg, det støtter kun et begrenset sett funksjoner</strong><br />Installer fullversjonen via tilbudte inngebygde pakker for den beste AppImageLauncher-opplevelsen Select Applications directory Velg programmappe Select additional directory to watch Velg ytterligere mappe å holde oppsyn med ================================================ FILE: i18n/ui.nl.ts ================================================ FirstRunDialog First run Eerste opstart <html><head/><body><p><span style=" font-size:11pt; font-weight:600;">Welcome to AppImageLauncher!</span></p><p>This little helper is designed to improve your AppImage experience on your computer.</p><p>It appears you have never run AppImageLauncher before. Please take a minute and configure your preferences. You can always change these later on, using the control panel.</p></body></html> <html><head/><body><p><span style=" font-size:11pt; font-weight:600;">Welkom bij AppImageLauncher!</span></p><p>Dit hulpprogramma is ontworpen om je AppImage-ervaring te verbeteren.</p><p>Het lijkt er op dat dit de eerste opstart is. Neem een minuutje de tijd om je voorkeuren op te geven. Je kunt alles achteraf nog aanpassen middels het configuratiescherm.</p></body></html> Ask me whether to move new AppImages into a central location Vragen of AppImages moeten worden verplaatst naar een centrale locatie Integration target destination directory: Integratie-doelmap: Customize Aanpassen Choose integration destination dir Kies de integratie-doelmap (default) (standaard) IntegrationDialog Desktop Integration Werkomgevingsintegratie Icon <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Noto Sans'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">%1 has not been integrated into your system.</p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> <br />Integrating it will move the AppImage into a predefined location, and include it in your application launcher.</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">To remove or update the AppImage, please use the context menu of the application icon in your task bar or launcher. </p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The directory where the integrated AppImages are stored in is currently set to: %2</p></body></html> Integrate and run Integreren en starten Run once Eén keer starten QMessageBox Warning Waarschuwing AppImage has already been integrated, but it is not in the current integration destination directory. Do you want to move it into the new destination? Choosing No will run the AppImage once, and leave the AppImage in its current directory. AppImage is al geïntegreerd, maar staat nog niet in de integratiemap. Wil je het daarheen verplaatsen? Kies 'Nee' om de AppImage eenmalig op te starten en in de huidige map te laten. AppImage %1 has already been integrated, but it is not in the current integration destination directory. Do you want to move it into the new destination? Choosing No will run the AppImage once, and leave the AppImage in its current directory. AppImage is al geïntegreerd, maar staat nog niet in de integratiemap. Wil je het daarheen verplaatsen? Kies 'Nee' om de AppImage eenmalig op te starten en in de huidige map te laten. Error Foutmelding Failed to unregister AppImage before re-integrating it Kan AppImage niet weghalen alvorens opnieuw te integreren Could not parse desktop file translations: Could not open file for reading: %1 Kan de vertalingen niet verwerken: Kan het volgende bestand niet uitlezen: %1 Could not parse desktop file translations: Invalid syntax: %1 Kan de vertalingen niet verwerken: Ongeldige syntax: %1 File %1 is owned by another user: %2 Het bestand, %1, is eigendom van een andere gebruiker: %2 Permissions problem Machtigingsprobleem File %1 is owned by another user: %2 Relaunch with their permissions? Het bestand, %1, is eigendom van een andere gebruiker: %2 Wil je het openen met zijn/haar machtigingen? Failed to run permissions helper, exited with return code %1 Kan de machtigingshelper niet starten: %1 Could not find suitable permissions helper, aborting Kan geen geschikte machtigingshelper starten QObject Error Foutmelding AppImageLauncher does not support type %1 AppImages at the moment. AppImageLauncher heeft momenteel geen ondersteuning voor %1. Could not make AppImage executable: %1 Kan AppImage niet uitvoerbaar maken: %1 Failed to open AppImage for reading: %1 Kan AppImage niet uitlezen: %1 Failed to create temporary directory Kan geen tijdelijke werkmap maken Failed to create temporary copy of type 1 AppImage Kan geen tijdelijke kopie maken van AppImage type 1 Failed to open temporary AppImage copy for writing Kan geen tijdelijke AppImage-kopie wegschrijven Failed to remove magic bytes from temporary AppImage copy Kan de magische bytes niet weghalen uit de tijdelijke AppImage-kopie execv() failed: %1 error message execv() mislukt: %1 runtime not found: no such file or directory: %1 runtime niet aangetroffen: bestand of map bestaat niet: %1 execv() failed: %1 execv() mislukt: %1 Usage: %1 [options] <path> Gebruik: %1 [opties] <pad> Desktop integration helper for AppImages, for use by Linux distributions. Werkomgevingshelper voor AppImages, voor gebruik door Linux-distributies. Options: Opties: Display this help and exit Toon dit hulpbericht en sluit af Display version and exit Toon de versie en sluit af Arguments: Argumenten: Path to AppImage (mandatory) Pad naar AppImage (vereist) Unexpected result from the integration dialog. Failed to clean up old desktop files Kan de oude .desktop-bestanden niet opruimen Failed to register AppImage in AppImageLauncherFS: error while trying to start appimagelauncherfs.service Kan AppImage niet vastleggen in AppImageLauncherFS: fout tijdens starten van appimagelauncherfs.service Failed to register AppImage in AppImageLauncherFS: failed to register AppImage path %1 Fout tijdens vastleggen van AppImage in AppImageLauncherFS: kan AppImage-pad %1 niet vastleggen Failed to register AppImage in AppImageLauncherFS: could not open map file Kan AppImage niet vastleggen in AppImageLauncherFS: kan kaartbestand niet openen Failed to register AppImage in AppImageLauncherFS: could not find virtual file for AppImage Kan AppImage niet vastleggen in AppImageLauncherFS: kan virtueel bestand van AppImage niet vinden Failed to register AppImage in AppImageLauncherFS: unknown failure Kan AppImage niet vastleggen in AppImageLauncherFS: onbekende fout Failed to clean up AppImage trash bin: %1 Kan de AppImage-prullenbak niet legen: %1 Unknown AppImageLauncher option: %1 Onbekende AppImageLauncher-optie: %1 Error: no such file or directory: %1 Fout: bestand of map bestaat niet: %1 Not an AppImage: %1 Geen AppImage: %1 The directory the integrated AppImages are stored in is currently set to: %1 De map met de opgeslagen geïntegreerde AppImages is momenteel ingesteld op: %1 The directory the integrated AppImages are stored in is currently set to: %1 De map met de opgeslagen geïntegreerde AppImages is momenteel ingesteld op: %1 Integrating it will move the AppImage into a predefined location, and include it in your application launcher. Door AppImages te integreren worden ze verplaatst naar een opgegeven locatie en wordt er een snelkoppeling gemaakt in je programmastarter. To remove or update the AppImage, please use the context menu of the application icon in your task bar or launcher. Wil je een AppImage bijwerken of verwijderen? Gebruik dan het rechtermuisknopmenu van de snelkoppeling in je taakbalk of programmastarter. The directory the integrated AppImages are stored in is currently set to: De map met de opgeslagen geïntegreerde AppImages is momenteel ingesteld op: %1 has not been integrated into your system. %1 is niet geïntegreerd op je systeem. Desktop Integration Werkomgevingsintegratie Integrate and run Integreren en starten Run once Eén keer starten Cancel Annuleren Removes AppImages after desktop integration, for use by Linux distributions Vewijdert AppImages nadat ze zijn geïntegreerd, voor gebruik door Linux-distributies AppImageLauncher remove remove helper app name AppImageLauncher-verwijdering Helper to delete integrated AppImages easily, e.g., from the application launcher's context menuz Hulpprogramma om geïntegreerde AppImages eenvoudig te verwijderen, bijv. uit rechtermuisknopmenu's Helper to delete integrated AppImages easily, e.g., from the application launcher's context menu Hulpprogramma om geïntegreerde AppImages eenvoudig te verwijderen, bijv. uit rechtermuisknopmenu's Path to AppImage Pad naar AppImage <path> <pad> AppImage delete helper error Fout tijdens verwijderen van AppImage AppImage remove helper error Fout tijdens verwijderen van AppImage Not an AppImage: %1 Geen AppImage: %1 Refusing to work on non-integrated AppImage: %1 Er kan niet worden gewerkt met niet-geïntegreerde AppImages: %1 Please confirm Bevestig Are you sure you want to remove this AppImage? Weet je zeker dat je deze AppImage wilt verwijderen? Failed to unregister AppImage: %1 Kan AppImage niet weghalen: %1 Failed to move AppImage into trash bin directory Kan AppImage niet verplaatsen naar de prullenbak Failed to remove AppImage: %1 Kan AppImage niet verwijderen: %1 AppImage with same filename has already been integrated. Er is al een geïntegreerde AppImage met deze naam. Do you wish to overwrite the existing AppImage? Wil je de bestaande AppImage overschrijven? Choosing No will run the AppImage once, and leave the system in its current state. Kies 'Nee' om de AppImage eenmaal te starten en het systeem verder onaangetast te laten. Warning Waarschuwing Failed to move AppImage to target location Kan AppImage niet verplaatsen naar doellocatie Failed to register AppImage in system via libappimage Kan AppImage niet vastleggen in systeem middels libappimage Failed to find integrated desktop file Kan geïntegreerd .desktop-bestand niet vinden Couldn't find integrated AppImage's desktop file Kan AppImage's geïntegreerd .desktop-bestand niet vinden Failed to load desktop file: Kan .desktop-bestand niet laden: AppImage has invalid desktop file AppImage bevat een ongeldig .desktop-bestand Failed to move AppImage to target location. Try to copy AppImage instead? Kan AppImage niet verplaatsen naar de doellocatie. Wil je de AppImage proberen te kopiëren? Failed to call stat() on path: %1 Kan stat() niet aanroepen op pad: %1 Failed to copy AppImage to target location Kan AppImage niet kopiëren naar doellocatie Updates AppImages after desktop integration, for use by Linux distributions Werkt AppImages bij na werkomgevingsintegratie, voor gebruik door Linux-distributies AppImageLauncher update update helper app name AppImageLauncher-bijwerking The AppImage hasn't been integrated before. This tool will, however, integrate the updated AppImage. De AppImage is nog niet geïntegreerd. Met dit hulpmiddel wordt de bijgewerkte AppImage geïntegreerd. Do you wish to continue? Wil je doorgaan? No updates found Geen update beschikbaar Could not find updates for AppImage %1 Geen update beschikbaar voor AppImage %1 Failed to check for updates. Please check the command line output for details. Kan niet controleren op updates. Bekijk de opdrachtregeluitvoer voor meer informatie. No update information found Geen update-informatie aangetroffen Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to set update information to allow for easy updating. Geen update-informatie aangetroffen in AppImage: %1 Deze AppImage heeft geen update-ondersteuning. Vraag de makers om update-informatie in te stellen zodat je makkelijk kunt updaten. Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to set upupdate information to allow for easy updating. Geen update-informatie aangetroffen in AppImage: %1 Deze AppImage heeft geen update-ondersteuning. Vraag de makers om update-informatie in te stellen zodat je makkelijk kunt updaten. Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to embed update information to allow for easy updating. Failed to check for updates: %1 Kan niet controleren op updates: %1 An update has been found for the AppImage %1 Er is een update beschikbaar van AppImage %1 Do you want to perform the update? Wil je de update nu installeren? Remove old AppImage after successful update Oude AppImage verwijderen na installeren van update Failed to update AppImage: %1 Kan AppImage niet bijwerken: %1 File reported as updated does not exist: %1 Bijgewerkt bestand bestaat niet: %1 Failed to register updated AppImage in system Kan bijgewerkte AppImage niet vastleggen op systeem Failed to unregister old AppImage in system Kan oude AppImage niet weghalen van systeem Failed to remove old AppImage Kan oude AppImage niet verwijderen Tracks AppImages in applications directories (user's, system and other ones). Automatically integrates AppImages moved into those directories and unintegrates ones removed from them. Zoekt naar AppImages in programmamappen (gebruikers-, systeem- en andere mappen). Integreert automatisch AppImages die in deze mappen worden geplaatst en maakt de integratie ongedaan als ze worden verwijderd. Search for AppImages in /Applications directories in suitable mounted filesystems Zoekt naar AppImages in de opgegeven /programmamappen op geschikte aangekoppelde bestandssystemen Search for AppImages in /Applications directories suitable mounted filesystems Zoekt naar AppImages in de opgegeven /programmamappen op geschikte aangekoppelde bestandssystemen Lists directories watched by this daemon and exit Toont de door deze dienst bijgehouden mappen en sluit af RemoveDialog Please confirm Bevestig <html><head/><body><p>Are you sure you want to remove this AppImage?</body></html> <html><head/><body><p>Weet je zeker dat je deze AppImage wilt verwijderen?</body></html> Delete AppImage AppImage verwijderen <html><head/><body><p>Are you sure you want to delete this AppImage?</p></body></html> <html><head/><body><p>Weet je zeker dat je deze AppImage wilt verwijderen?</p></body></html> %1 %1 <html><head/><body><p>Uncheck to only remove the desktop integration, but leave the file on the system.</p></body></html> <html><head/><body><p>Vink uit om alleen de werkomgevingsintegratie te verwijderen, maar het bestand te bewaren.</p></body></html> Remove AppImage file from system AppImage-bestand verwijderen van systeem SettingsDialog AppImageLauncher Settings AppImageLauncher-instellingen AppImageLauncher AppImageLauncher Launcher Dialog Startvenster Ask whether to move AppImage files into the applications directory Vragen of AppImage-bestanden verplaatst moeten worden naar de programmamap appimagelauncherd appimagelauncherd General settings Algemene instellingen <html><head/><body><p>When this box is checked, AppImageLauncher automatically starts a daemon called appimagelauncherd.</p><p>This daemon automatically integrates AppImages you copy into the &quot;Applications directory&quot; and the additional directories you configured. When the files are deleted, the daemon will clean up the integration data.</p></body></html> <html><head/><body><p>Kruis dit aan om AppImageLauncher automatisch op te starten als achtergronddienst genaamd appimagelauncherd.</p><p>Deze dienst integreert automatisch AppImages die je kopieert naar de map &quot;Programma's&quot; en andere mappen die je hebt opgegeven. Als de bestanden worden verwijdert, dan schoont de dienst de integratiegegevens op.</p></body></html> Auto start auto-integration daemon Integratiedienst automatisch starten Additional directories to watch Aanvullende bij te houden mappen Add new directory to list Map toevoegen aan lijst Remove selected directory from list Geselecteerde map verwijderen van lijst - - Applications directory Programmamap <html><head/><body><p>When enabled, the daemon automatically integrates AppImages you copy into the &quot;Applications directory&quot;. When the files are deleted, the daemon will clean up the integration data.</p></body></html> <html><head/><body><p>Kruis dit aan om de dienst automatisch AppImages te laten integreren die je kopieert naar de map &quot;Programma's&quot;. Als de bestanden worden verwijdert, dan schoont de dienst de integratiegegevens op.</p></body></html> Applications directory path Pad naar programmamap Location where to store your AppImage files to ease their management Locatie waar je de AppImage-bestanden kunt plaatsen Location where to store your AppImage files to ease their management using the file manager. Locatie waar je de AppImage-bestanden kunt plaatsen middels de bestandsbeheerder. /path /pad Enable auto-integration daemon Integratiedienst gebruiken Available Features Beschikbare functies updater available for AppImages supporting AppImageUpdate updater beschikbaar voor AppImages die ondersteuning hebben voor AppImageUpdate updater unavailable geen updater beschikbaar <strong>Note: this is an AppImageLauncher Lite build, only supports a limited set of features</strong><br />Please install the full version via the provided native packages to enjoy the full AppImageLauncher experience <strong>Let op: dit is de AppImageLauncher Lite-versie. Deze ondersteunt slechts een beperkt aantal functies.</strong><br />Installeer de volledige versie om AppImageLauncher volledig te benutten Select Applications directory Programmamap kiezen Select additional directory to watch Aanvullende bij te houden mappen selecteren ================================================ FILE: i18n/ui.pl.ts ================================================ FirstRunDialog First run Pierwsze uruchomienie <html><head/><body><p><span style=" font-size:11pt; font-weight:600;">Welcome to AppImageLauncher!</span></p><p>This little helper is designed to improve your AppImage experience on your computer.</p><p>It appears you have never run AppImageLauncher before. Please take a minute and configure your preferences. You can always change these later on, using the control panel.</p></body></html> <html><head/><body><p><span style=" font-size:11pt; font-weight:600;">Witaj w AppImageLauncher!</span></p><p>Ten mały program został napisany, aby ułatwić korzystanie z plików AppImage na twoim komputerze.</p><p>Wygląda na to, że nigdy wcześniej nie korzystałeś z AppImageLauncher. Poświęć chwilę i skonfiguruj swoje preferencje. Zawsze możesz je później zmienić za pomocą panelu sterowania.</p></body></html> Ask me whether to move new AppImages into a central location Pytaj czy przenieść nowe pliki AppImages do centralnej lokalizacji Integration target destination directory: Docelowy katalog integracji: Customize Dostosuj Choose integration destination dir Wybierz docelowy katalog do integracji (default) (domyślny) IntegrationDialog Desktop Integration Integracja z pulpitem Icon <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Noto Sans'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">%1 has not been integrated into your system.</p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> <br />Integrating it will move the AppImage into a predefined location, and include it in your application launcher.</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">To remove or update the AppImage, please use the context menu of the application icon in your task bar or launcher. </p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The directory where the integrated AppImages are stored in is currently set to: %2</p></body></html> Integrate and run Zintegruj i uruchom Run once Uruchom jeden raz QMessageBox Warning Ostrzeżenie AppImage has already been integrated, but it is not in the current integration destination directory. Do you want to move it into the new destination? Choosing No will run the AppImage once, and leave the AppImage in its current directory. AppImage został już zintegrowany, ale nie ma go w bieżącym katalogu docelowym integracji. Czy chcesz przenieść go do nowego miejsca docelowego? Wybranie opcji Nie spowoduje uruchomienie AppImage jeden raz i pozostawienie AppImage w bieżącym katalogu. AppImage %1 has already been integrated, but it is not in the current integration destination directory. Do you want to move it into the new destination? Choosing No will run the AppImage once, and leave the AppImage in its current directory. AppImage %1 został już zintegrowany, ale nie ma go w bieżącym docelowym katalogu integracji. Czy chcesz przenieść go do nowego miejsca docelowego? Wybranie opcji Nie spowoduje uruchomienie AppImage jeden raz i pozostawienie AppImage w bieżącym katalogu. Error Błąd Failed to unregister AppImage before re-integrating it Nie udało się wyrejestrować AppImage przed ponownym zintegrowaniem Could not parse desktop file translations: Could not open file for reading: %1 Nie można przeanalizować tłumaczeń plików pulpitu: Nie można otworzyć pliku do odczytu: %1 Could not parse desktop file translations: Invalid syntax: %1 Nie można przeanalizować tłumaczeń plików pulpitu: Niepoprawna składnia: %1 File %1 is owned by another user: %2 Plik %1 jest własnością innego użytkownika: %2 Permissions problem Problem z uprawnieniami File %1 is owned by another user: %2 Relaunch with their permissions? Plik %1 jest własnością innego użytkownika: %2 Uruchomić ponownie z jego uprawnieniami? Failed to run permissions helper, exited with return code %1 Nie udało się uruchomić pomocnika uprawnień, zakończono z błędem %1 Could not find suitable permissions helper, aborting Nie można znaleźć odpowiedniego pomocnika uprawnień, przerywam QObject Error Błąd AppImageLauncher does not support type %1 AppImages at the moment. AppImageLauncher obecnie nie obsługuje plików AppImage typu %1. Could not make AppImage executable: %1 Nie udało się nadać plikowi AppImage: %1 uprawnień do wykonania Failed to open AppImage for reading: %1 Nie można otworzyć AppImage do odczytu: %1 Failed to create temporary directory Nie udało się utworzyć katalogu tymczasowego Failed to create temporary copy of type 1 AppImage Nie udało się utworzyć tymczasowej kopii AppImage typu 1 Failed to open temporary AppImage copy for writing Nie udało się otworzyć tymczasowej kopii AppImage do zapisu Failed to remove magic bytes from temporary AppImage copy Nie udało się usunąć sygnatury z tymczasowej kopii AppImage execv() failed: %1 error message execv() zakończył się błędem: %1 runtime not found: no such file or directory: %1 nie znaleziono środowiska wykonawczego: brak takiego pliku albo katalogu: %1 execv() failed: %1 execv() zakończył się błędem: %1 Usage: %1 [options] <path> Zastosowanie: %1 [opcje] <ścieżka> Desktop integration helper for AppImages, for use by Linux distributions. Pomocnik integracji pulpitu dla plików AppImage dla dystrybucji Linuksa. Options: Opcje: Display this help and exit Wyświetl tę pomoc i zakończ Display version and exit Wyświetl wersję i zakończ Arguments: Argumenty: Path to AppImage (mandatory) Ścieżka do AppImage (obowiązkowa) Unexpected result from the integration dialog. Failed to clean up old desktop files Nie udało się wykasować starych plików pulpitu Failed to register AppImage in AppImageLauncherFS: error while trying to start appimagelauncherfs.service Nie udało się zarejestrować AppImage w AppImageLauncherFS: błąd podczas próby uruchomienia appimagelauncherfs.service Failed to register AppImage in AppImageLauncherFS: failed to register AppImage path %1 Nie udało się zarejestrować AppImage w AppImageLauncherFS: rejestracja ścieżki AppImage %1 nie powiodła się Failed to register AppImage in AppImageLauncherFS: could not open map file Nie udało się zarejestrować AppImage w AppImageLauncherFS: nie można otworzyć pliku map Failed to register AppImage in AppImageLauncherFS: could not find virtual file for AppImage Nie udało się zarejestrować AppImage w AppImageLauncherFS: nie można znaleźć pliku wirtualnego dla AppImage Failed to register AppImage in AppImageLauncherFS: unknown failure Nie udało się zarejestrować AppImage w AppImageLauncherFS: nieznana przyczyna Failed to clean up AppImage trash bin: %1 Nie udało się wyczyścić kosza aplikacji AppImage: %1 Unknown AppImageLauncher option: %1 Nieznana opcja AppImageLauncher: %1 Error: no such file or directory: %1 Błąd: brak takiego pliku lub katalogu: %1 Not an AppImage: %1 To nie jest AppImage: %1 The directory the integrated AppImages are stored in is currently set to: %1 Katalogiem, w którym przechowywane są zintegrowane pliki AppImage, jest obecnie: %1 The directory the integrated AppImages are stored in is currently set to: %1 Katalogiem, w którym przechowywane są zintegrowane pliki AppImage, jest obecnie: %1 Integrating it will move the AppImage into a predefined location, and include it in your application launcher. Integracja tego pliku spowoduje przeniesienie AppImage do predefiniowanego katalogu i dodanie go do menu aplikacji. To remove or update the AppImage, please use the context menu of the application icon in your task bar or launcher. Aby usunąć lub zaktualizować AppImage, użyj menu kontekstowego ikony aplikacji na pasku zadań lub w menu aplikacji. The directory the integrated AppImages are stored in is currently set to: Katalogiem, w którym przechowywane są zintegrowane pliki AppImage, jest obecnie: %1 has not been integrated into your system. %1 nie został zintegrowany z twoim systemem. Desktop Integration Integracja z pulpitem Integrate and run Zintegruj i uruchom Run once Uruchom jeden raz Cancel Anuluj Removes AppImages after desktop integration, for use by Linux distributions Usuwa pliki AppImage po integracji z komputerem, do użytku w systemach Linuks AppImageLauncher remove remove helper app name Usuń AppImageLauncher Helper to delete integrated AppImages easily, e.g., from the application launcher's context menuz Program do łatwego usuwania zintegrowanych plików AppImage, np. z menu kontekstowego aplikacji Helper to delete integrated AppImages easily, e.g., from the application launcher's context menu Program do łatwego usuwania zintegrowanych plików AppImage, np. z menu kontekstowego aplikacji Path to AppImage Ścieżka do AppImage <path> <ścieżka> AppImage delete helper error Błąd programu kasowania AppImage AppImage remove helper error Błąd programu usuwania AppImage Not an AppImage: %1 To nie jest AppImage: %1 Refusing to work on non-integrated AppImage: %1 Odmowa pracy z niezintegrowanym plikiem AppImage: %1 Please confirm Proszę potwierdzić Are you sure you want to remove this AppImage? Czy na pewno chcesz usunąć ten plik AppImage? Failed to unregister AppImage: %1 Nie udało się wyrejestrować AppImage: %1 Failed to move AppImage into trash bin directory Nie udało się przenieść AppImage do katalogu kosza na śmieci Failed to remove AppImage: %1 Nie udało się usunąć pliku AppImage: %1 AppImage with same filename has already been integrated. AppImage z tą samą nazwą pliku został już zintegrowany. Do you wish to overwrite the existing AppImage? Czy chcesz zastąpić istniejący AppImage? Choosing No will run the AppImage once, and leave the system in its current state. Wybranie opcji Nie spowoduje uruchomienie AppImage jeden raz i pozostawienie systemu bez zmian. Warning Ostrzeżenie Failed to move AppImage to target location Nie udało się przenieść AppImage do lokalizacji docelowej Failed to register AppImage in system via libappimage Nie udało się zarejestrować AppImage w systemie via libappimage Failed to find integrated desktop file Nie udało się znaleźć zintegrowanego pliku pulpitu Couldn't find integrated AppImage's desktop file Nie można znaleźć zintegrowanego pliku pulpitu AppImage Failed to load desktop file: Nie udało się załadować pliku pulpitu: AppImage has invalid desktop file AppImage plik pulpitu jest nieprawidłowy Failed to move AppImage to target location. Try to copy AppImage instead? Nie udało się przenieść AppImage do lokalizacji docelowej. Czy zamiast tego spróbować skopiować AppImage? Failed to call stat() on path: %1 Nie można wywołać stat () na ścieżce: %1 Failed to copy AppImage to target location Nie udało się skopiować AppImage do lokalizacji docelowej Updates AppImages after desktop integration, for use by Linux distributions Aktualizuje AppImages po integracji z komputerem, do użytku przez dystrybucje Linuksa AppImageLauncher update update helper app name Aktualizacja AppImageLauncher The AppImage hasn't been integrated before. This tool will, however, integrate the updated AppImage. AppImage nie był wcześniej zintegrowany. To narzędzie zintegruje zaktualizowany AppImage. Do you wish to continue? Czy chcesz kontynuować? No updates found Nie znaleziono aktualizacji Could not find updates for AppImage %1 Nie można znaleźć aktualizacji dla AppImage %1 Failed to check for updates. Please check the command line output for details. Nie udało się sprawdzić aktualizacji. Szczegóły sprawdź w wierszu poleceń. No update information found Nie znaleziono informacji o aktualizacji Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to set update information to allow for easy updating. Nie można znaleźć informacji o aktualizacji w AppImage: %1 AppImage nie obsługuje aktualizacji. Poproś autorów o ich dodanie, aby umożliwić łatwą aktualizację. Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to set upupdate information to allow for easy updating. Nie można znaleźć informacji o aktualizacji w AppImage: %1 AppImage nie obsługuje aktualizacji. Poproś autorów o ich dodanie, aby umożliwić łatwą aktualizację. Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to embed update information to allow for easy updating. Failed to check for updates: %1 Nie udało się sprawdzić aktualizacji: %1 An update has been found for the AppImage %1 Znaleziono aktualizację dla AppImage %1 Do you want to perform the update? Czy chcesz zaktualizować? Remove old AppImage after successful update Usuń starą aplikację AppImage po udanej aktualizacji Failed to update AppImage: %1 Nie udało się zaktualizować AppImage: %1 File reported as updated does not exist: %1 Plik zgłoszony jako zaktualizowany nie istnieje: %1 Failed to register updated AppImage in system Nie udało się zarejestrować zaktualizowanego AppImage w systemie Failed to unregister old AppImage in system Nie udało się wyrejestrować starej aplikacji AppImage z systemu Failed to remove old AppImage Nie udało się usunąć starego AppImage Tracks AppImages in applications directories (user's, system and other ones). Automatically integrates AppImages moved into those directories and unintegrates ones removed from them. Śledzi pliki AppImage w katalogach aplikacji (użytkownika, systemu i innych). Automatycznie integruje pliki AppImage przeniesione do tych katalogów i wyrejestrowuje pliki z nich usunięte. Search for AppImages in /Applications directories in suitable mounted filesystems Wyszukaj pliki AppImage w katalogach /Aplikacje w odpowiednio zamontowanych systemach plików Search for AppImages in /Applications directories suitable mounted filesystems Wyszukaj pliki AppImage w katalogach /Aplikacje odpowiednio zamontowanych systemach plików Lists directories watched by this daemon and exit Wyświetl listę katalogów śledzonych przez proces demona i zakończ działanie RemoveDialog Please confirm Proszę potwierdzić <html><head/><body><p>Are you sure you want to remove this AppImage?</body></html> <html><head/><body><p>Czy na pewno chcesz usunąć ten AppImage?</body></html> Delete AppImage Wykasuj AppImage <html><head/><body><p>Are you sure you want to delete this AppImage?</p></body></html> <html><head/><body><p>Czy na pewno chcesz wykasować ten AppImage?</p></body></html> %1 %1 <html><head/><body><p>Uncheck to only remove the desktop integration, but leave the file on the system.</p></body></html> <html><head/><body><p>Odznacz, aby usunąć tylko integrację pulpitu, ale pozostaw plik w systemie.</p></body></html> Remove AppImage file from system Usuń plik AppImage z systemu SettingsDialog AppImageLauncher Settings Ustawienia AppImageLauncher AppImageLauncher AppImageLauncher Launcher Dialog Okno dialogowe uruchamiania Ask whether to move AppImage files into the applications directory Zapytaj, czy przenieść pliki AppImage do katalogu aplikacji appimagelauncherd appimagelauncherd General settings Ustawienia główne <html><head/><body><p>When this box is checked, AppImageLauncher automatically starts a daemon called appimagelauncherd.</p><p>This daemon automatically integrates AppImages you copy into the &quot;Applications directory&quot; and the additional directories you configured. When the files are deleted, the daemon will clean up the integration data.</p></body></html> <html><head/><body><p>Gdy to pole jest zaznaczone, AppImageLauncher automatycznie uruchamia proces demona o nazwie appimagelauncherd.</p><p>Ten demon automatycznie integruje skopiowane AppImages do &quot;katalogu aplikacji&quot; i skonfigurowanych dodatkowych katalogów. Po usunięciu plików demon wyczyści dane integracji.</p></body></html> Auto start auto-integration daemon Automatycznie uruchamiaj demona integracji Additional directories to watch Dodatkowe katalogi do śledzenia Add new directory to list Dodaj nowy katalog do listy Remove selected directory from list Usuń wybrany katalog z listy - - Applications directory Katalog aplikacji <html><head/><body><p>When enabled, the daemon automatically integrates AppImages you copy into the &quot;Applications directory&quot;. When the files are deleted, the daemon will clean up the integration data.</p></body></html> <html><head/><body><p>Po włączeniu procesu demona automatycznie integruje pliki AppImage, które kopiujesz do &quot;katalogu aplikacji&quot;. Po usunięciu plików demon wyczyści dane integracji.</p></body></html> Applications directory path Ścieżka do katalogu aplikacji Location where to store your AppImage files to ease their management Miejsce przechowywania plików AppImage w celu ułatwienia zarządzania nimi Location where to store your AppImage files to ease their management using the file manager. Miejsce przechowywania plików AppImage w celu ułatwienia zarządzania nimi za pomocą menedżera plików. /path /ścieżka Enable auto-integration daemon Włącz proces demona automatycznej integracji Available Features Dostępne funkcje updater available for AppImages supporting AppImageUpdate aktualizator dostępny dla plików AppImage obsługujących AppImageUpdate updater unavailable aktualizator niedostępny <strong>Note: this is an AppImageLauncher Lite build, only supports a limited set of features</strong><br />Please install the full version via the provided native packages to enjoy the full AppImageLauncher experience <strong>Uwaga: jest to wersja AppImageLauncher Lite, obsługująca tylko ograniczony zestaw funkcji</strong><br />Zainstaluj pełną wersję korzystając z dostępnych programów instalacyjnych, aby cieszyć się pełną funkcjonalnością AppImageLauncher Select Applications directory Wybierz katalog aplikacji Select additional directory to watch Wybierz dodatkowy katalog do śledzenia ================================================ FILE: i18n/ui.pt.ts ================================================ FirstRunDialog First run Primeira execução <html><head/><body><p><span style=" font-size:11pt; font-weight:600;">Welcome to AppImageLauncher!</span></p><p>This little helper is designed to improve your AppImage experience on your computer.</p><p>It appears you have never run AppImageLauncher before. Please take a minute and configure your preferences. You can always change these later on, using the control panel.</p></body></html> <html><head/><body><p><span style=" font-size:11pt; font-weight:600;">Bem-vindo à AppImageLauncher!</span></p><p>Este mini-ajudante foi desenhado para melhorar a sua experiência da AppImage no seu computador.</p><p>Parece que nunca tinha utilizado a AppImageLauncher anteriormente. Por favor, tenha um minuto e configure as suas preferências. Pode sempre alterá-las mais tarde, com o painel de controle.</p></body></html> Ask me whether to move new AppImages into a central location Preguntar se devo mudar as novas AppImages para uma directoria dedicada Integration target destination directory: Directoria para integração das suas AppImages: Customize Personalizar Choose integration destination dir Escolha a directoria de integração das AppImages (default) (padrão) IntegrationDialog Desktop Integration Integração no desktop Icon <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Noto Sans'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">%1 has not been integrated into your system.</p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> <br />Integrating it will move the AppImage into a predefined location, and include it in your application launcher.</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">To remove or update the AppImage, please use the context menu of the application icon in your task bar or launcher. </p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The directory where the integrated AppImages are stored in is currently set to: %2</p></body></html> Integrate and run Integrar e executar Run once Executar Uma Vez QMessageBox Warning Aviso AppImage has already been integrated, but it is not in the current integration destination directory. Do you want to move it into the new destination? Choosing No will run the AppImage once, and leave the AppImage in its current directory. AppImage has already been integrated, but it is not in the current integration destination directory. Do you want to move it into the new destination? Choosing No will run the AppImage once, and leave the AppImage in its current directory. AppImage %1 has already been integrated, but it is not in the current integration destination directory. Do you want to move it into the new destination? Choosing No will run the AppImage once, and leave the AppImage in its current directory. AppImage %1 já foi integrada com o seu ambiente de trabalho, mas não está situada na actual directoria de integração . Quer mudar para uma nova localização ? Escolhendo "Não", a AppImage será executada e deixada na sua localização atual. Error Erro Failed to unregister AppImage before re-integrating it Falha em eliminar todas as partes da integração anterior antes de a reintegrar Could not parse desktop file translations: Could not open file for reading: %1 Não foi possível analisar as traduções do ficheiro no ambiente de trabalho: Não é possível abrir o ficheiro para leitura: %1 Could not parse desktop file translations: Invalid syntax: %1 Não foi possível analisar as traduções de ficheiro no ambiente de trabalho: Sintaxe inválida: %1 File %1 is owned by another user: %2 Ficheiro %1 pertence a outro utilizador: %2 Permissions problem Problema de permissões File %1 is owned by another user: %2 Relaunch with their permissions? File %1 is owned by another user: %2 Relaunch with their permissions? Failed to run permissions helper, exited with return code %1 Falha em executar o ajudante de permissões; sair com o código de retorno %1 Could not find suitable permissions helper, aborting Não foi encontrado um ajudante de permissões adequado, cancelando QObject Error Falha AppImageLauncher does not support type %1 AppImages at the moment. AppImageLauncher não suporta atualmente AppImages do tipo %1. Could not make AppImage executable: %1 Não foi possível tornar a AppImage executável: %1 Failed to open AppImage for reading: %1 Failed to open AppImage for reading: %1 Failed to create temporary directory Failed to create temporary directory Failed to create temporary copy of type 1 AppImage Failed to create temporary copy of type 1 AppImage Failed to open temporary AppImage copy for writing Failed to open temporary AppImage copy for writing Failed to remove magic bytes from temporary AppImage copy Failed to remove magic bytes from temporary AppImage copy execv() failed: %1 error message execv() failed: %1 runtime not found: no such file or directory: %1 runtime not found: no such file or directory: %1 execv() failed: %1 execv() falhou: %1 Usage: %1 [options] <path> Utilização: %1 [opções] <caminho> Desktop integration helper for AppImages, for use by Linux distributions. Ajudante de integração das AppImages, para ser utilizado nas distribuições do Linux. Options: Opções: Display this help and exit Mostrar esta ajuda e sair Display version and exit Mostrar versão e sair Arguments: Argumentos: Path to AppImage (mandatory) Caminho para AppImage (necessário) Unexpected result from the integration dialog. Failed to clean up old desktop files Falha na eliminação de ficheiros antigos do ambiente de trabalho Failed to register AppImage in AppImageLauncherFS: error while trying to start appimagelauncherfs.service Falha ao registar o AppImage no AppImageLauncherFS: erro ao iniciar o serviço systemd de utilizador do appimagelauncherfs Failed to register AppImage in AppImageLauncherFS: failed to register AppImage path %1 Falha ao registar o AppImage no AppImageLauncherFS: incapaz de registar o caminho do AppImage %1 Failed to register AppImage in AppImageLauncherFS: could not open map file Falha ao registar o AppImage no AppImageLauncherFS: não pôde abrir o ficheiro de mapa Failed to register AppImage in AppImageLauncherFS: could not find virtual file for AppImage Falha ao registar o AppImage no AppImageLauncherFS:não foi encontrado o ficheiro virtual para AppImage Failed to register AppImage in AppImageLauncherFS: unknown failure Falha ao registar o AppImage no AppImageLauncherFS: falha desconhecida Failed to clean up AppImage trash bin: %1 Falha em limpar a directoria de reciclagem das AppImages: %1 Unknown AppImageLauncher option: %1 Opção de AppImageLauncher desconhecida: %1 Error: no such file or directory: %1 Erro: ficheiro ou directoria inexistente :%1 Not an AppImage: %1 Não é uma AppImage: %1 The directory the integrated AppImages are stored in is currently set to: %1 A directoria das AppImages integradas esta configurada na seguinte localização: %1 The directory the integrated AppImages are stored in is currently set to: %1 The directory the integrated AppImages are stored in is currently set to: %1 Integrating it will move the AppImage into a predefined location, and include it in your application launcher. integrando ira mover a AppImage para uma localização predefinida, ira incluir no lançador de aplicações. To remove or update the AppImage, please use the context menu of the application icon in your task bar or launcher. Para remover ou actualizar a Appimage, devera utilizar o icone da sua aplicação no menu ou na barra de lançamento. The directory the integrated AppImages are stored in is currently set to: A directoria das AppImages integradas esta configurada para seguinte localização : %1 has not been integrated into your system. Não foi integrado no seu sistema. Desktop Integration Integração no desktop Integrate and run Integrar e executar Run once Executar Uma Vez Cancel Cancelar Removes AppImages after desktop integration, for use by Linux distributions Removes AppImages after desktop integration, for use by Linux distributions AppImageLauncher remove remove helper app name AppImageLauncher remove Helper to delete integrated AppImages easily, e.g., from the application launcher's context menuz Helper to delete integrated AppImages easily, e.g., from the application launcher's context menuz Helper to delete integrated AppImages easily, e.g., from the application launcher's context menu Ajuda para apagar facilmente as AppImages integradas, p. ex., a partir do menu do lançador de aplicativos Path to AppImage Caminho para AppImage <path> <path> AppImage delete helper error Apagar AppImage erro de ajuda AppImage remove helper error AppImage remove helper error Not an AppImage: %1 Não é uma AppImage: %1 Refusing to work on non-integrated AppImage: %1 Refusing to work on non-integrated AppImage: %1 Please confirm Please confirm Are you sure you want to remove this AppImage? Are you sure you want to remove this AppImage? Failed to unregister AppImage: %1 Falha ao cancelar registro AppImage:% 1 Failed to move AppImage into trash bin directory Falha a mover AppImage para a directoria de reciclagem Failed to remove AppImage: %1 Failed to remove AppImage: %1 AppImage with same filename has already been integrated. AppImage com o mesmo nome já foi integrada. Do you wish to overwrite the existing AppImage? Deseja substituir a AppImage existente ? Choosing No will run the AppImage once, and leave the system in its current state. Se escolher "Não" executará a AppImage uma vez , e não ira fazer qualquer alteração no seu sistema. Warning Aviso Failed to move AppImage to target location Failed to move AppImage to target location Failed to register AppImage in system via libappimage Falha ao registrar AppImage no sistema via libappimage Failed to find integrated desktop file Falhou encontrar o ficheiro:integrated desktop Couldn't find integrated AppImage's desktop file Não foi encontrado o ficheiro desktop de integração da Appimage Failed to load desktop file: Falhou a carregar o ficheiro desktop : AppImage has invalid desktop file O ficheiro desktop da AppImage não é valido Failed to move AppImage to target location. Try to copy AppImage instead? Falha em mover a AppImage para localização alvo. Tentar copiar AppImage ? Failed to call stat() on path: %1 Falha em ligar stat() on path: %1 Failed to copy AppImage to target location Failed to copy AppImage to target location Updates AppImages after desktop integration, for use by Linux distributions Actualiza as AppImages depois da integração no ambiente de trabalho , para ser utilizado pelas distribuições Linux AppImageLauncher update update helper app name Actualizar o AppImageLauncher The AppImage hasn't been integrated before. This tool will, however, integrate the updated AppImage. The AppImage hasn't been integrated before. This tool will, however, integrate the updated AppImage. Do you wish to continue? Do you wish to continue? No updates found Não foram encontradas actualizações Could not find updates for AppImage %1 Não foi possível encontrar actualizações para esta AppImage %1 Failed to check for updates. Please check the command line output for details. Failed to check for updates. Please check the command line output for details. No update information found Não foi encontrada informação para actualização Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to set update information to allow for easy updating. Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to set update information to allow for easy updating. Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to embed update information to allow for easy updating. Não foi encontrada informação de atualização dentro da AppImage %1 Esta AppImage não suporta actualização.Peça aos autores para incorporar informações de actualização para permitir uma actualização fácil. Failed to check for updates: %1 Falhou a verificação para actualizações %1 An update has been found for the AppImage %1 Uma actualização foi encontrada para esta AppImage %1 Do you want to perform the update? Deseja realizar a actualização ? Remove old AppImage after successful update Remover antiga AppImage depois da actualização bem sucedida Failed to update AppImage: %1 Falha na actualização da AppImage %1 File reported as updated does not exist: %1 Ficheiro relatado como actualizado não existe: %1 Failed to register updated AppImage in system Falhou a registar actualização da AppImage no sistema Failed to unregister old AppImage in system Falha em remover o registro da atinga AppImage no sistema Failed to remove old AppImage Falha em remover a antiga AppImage Tracks AppImages in applications directories (user's, system and other ones). Automatically integrates AppImages moved into those directories and unintegrates ones removed from them. Procura AppImages em directorias de aplicações (de utilizador , sistema e outras). Integra automaticamente as AppImages transferidas para essas directorias e desintegra as removidas delas. Search for AppImages in /Applications directories in suitable mounted filesystems Search for AppImages in /Applications directories in suitable mounted filesystems Search for AppImages in /Applications directories suitable mounted filesystems Search for AppImages in /Applications directories suitable mounted filesystems Lists directories watched by this daemon and exit Lista directorias observadas por este daemon e sai RemoveDialog Please confirm Please confirm <html><head/><body><p>Are you sure you want to remove this AppImage?</body></html> <html><head/><body><p>Are you sure you want to remove this AppImage?</body></html> Delete AppImage Apagar AppImage <html><head/><body><p>Are you sure you want to delete this AppImage?</p></body></html> <html><head/><body><p>Tem a certeza que quer apagar esta AppImage ?</p></body></html> %1 %1 <html><head/><body><p>Uncheck to only remove the desktop integration, but leave the file on the system.</p></body></html> <html><head/><body><p>Uncheck to only remove the desktop integration, but leave the file on the system.</p></body></html> Remove AppImage file from system Remove AppImage file from system SettingsDialog AppImageLauncher Settings Configurações do AppImageLauncher AppImageLauncher AppImageLauncher Launcher Dialog Guia de iniciação Ask whether to move AppImage files into the applications directory Perguntar se quer deslocar os ficheiros AppImage para a directoria de integração appimagelauncherd appimagelauncherd General settings Configurações gerais <html><head/><body><p>When this box is checked, AppImageLauncher automatically starts a daemon called appimagelauncherd.</p><p>This daemon automatically integrates AppImages you copy into the &quot;Applications directory&quot; and the additional directories you configured. When the files are deleted, the daemon will clean up the integration data.</p></body></html> <html><head/><body><p>Quando esta caixa é marcada, o AppImageLauncher inicia automaticamente um daemon chamado appimagelauncherd.</p><p>Este daemon integra automaticamente AppImages que você copia na &quot;pasta de aplicações&quot; e as pastas adicionais que você configurou. Quando as AppImages são apagadas, o daemon vai limpar os dados de integração.</p></body></html> Auto start auto-integration daemon Iniciar automaticamente o daemon de integração Additional directories to watch Directorias adicionais para observar Add new directory to list Adicionar nova directoria à lista Remove selected directory from list Retirar a directoria seleccionada da lista - - Applications directory Applications directory <html><head/><body><p>When enabled, the daemon automatically integrates AppImages you copy into the &quot;Applications directory&quot;. When the files are deleted, the daemon will clean up the integration data.</p></body></html> <html><head/><body><p>When enabled, the daemon automatically integrates AppImages you copy into the &quot;Applications directory&quot;. When the files are deleted, the daemon will clean up the integration data.</p></body></html> Applications directory path Caminho da directoria de aplicações Location where to store your AppImage files to ease their management Localização para alojar as suas AppImages para facilitar a sua gestão Location where to store your AppImage files to ease their management using the file manager. Location where to store your AppImage files to ease their management using the file manager. /path /path Enable auto-integration daemon Enable auto-integration daemon Available Features Funcionalidades disponíveis updater available for AppImages supporting AppImageUpdate actualizador disponível para AppImages que suporta AppImageUpdate updater unavailable actualizador indisponível <strong>Note: this is an AppImageLauncher Lite build, only supports a limited set of features</strong><br />Please install the full version via the provided native packages to enjoy the full AppImageLauncher experience <strong>Nota: esta é uma versão do AppImageLauncher Lite, que oferece um limitado conjunto de funcionalidades</strong><br />Por favor, instalar a versão completa através do gestor de pacotes do seu sistema para beneficiar da experiência completa do AppImageLauncher Select Applications directory Seleccionar a directoria de Aplicações Select additional directory to watch Seleccionar directoria adicional a observar ================================================ FILE: i18n/ui.pt_BR.ts ================================================ FirstRunDialog First run Primeira execução <html><head/><body><p><span style=" font-size:11pt; font-weight:600;">Welcome to AppImageLauncher!</span></p><p>This little helper is designed to improve your AppImage experience on your computer.</p><p>It appears you have never run AppImageLauncher before. Please take a minute and configure your preferences. You can always change these later on, using the control panel.</p></body></html> <html><head/><body><p><span style=" font-size:11pt; font-weight:600;">Bem-vindo ao AppImageLauncher!</span></p><p>Sou um ajudante projetado para melhorar a experiência do AppImage no seu computador.</p><p>Parece que você nunca executou o AppImageLauncher antes. Por favor, reserve um momento para configurar suas preferências antes de começar a usá-lo. Sempre pode alterá-los novamente usando o painel de controle.</p></body></html> Ask me whether to move new AppImages into a central location Pergunte-me se devo mudar os AppImages para uma localização central Integration target destination directory: Pasta de destino para os AppImages integrados: Customize Personalizar Choose integration destination dir Escolher pasta de destino para integração (default) (padrão) IntegrationDialog Desktop Integration Integração no Ambiente de Trabalho Icon <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Noto Sans'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">%1 has not been integrated into your system.</p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> <br />Integrating it will move the AppImage into a predefined location, and include it in your application launcher.</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">To remove or update the AppImage, please use the context menu of the application icon in your task bar or launcher. </p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The directory where the integrated AppImages are stored in is currently set to: %2</p></body></html> Integrate and run Integrar e executar Run once Executar uma vez QMessageBox Warning Aviso AppImage has already been integrated, but it is not in the current integration destination directory. Do you want to move it into the new destination? Choosing No will run the AppImage once, and leave the AppImage in its current directory. O AppImage já foi integrado, mas não se encontra no atual diretório destinado à integração. Quer move-la para o novo destino? Escolher Não, irá executar o AppImage uma vez e mantê-lo no diretório em que se encontra. AppImage %1 has already been integrated, but it is not in the current integration destination directory. Do you want to move it into the new destination? Choosing No will run the AppImage once, and leave the AppImage in its current directory. A AppImage %1 já foi integrada, mas não se encontra no atual diretória destinado à integração. Quer move-la para a nova directória? Escolher Não, irá executar o AppImage uma vez e mantê-lo no diretório em que se encontra. Error Erro Failed to unregister AppImage before re-integrating it Falha ao desregistrar o AppImage antes de a reintegrar Could not parse desktop file translations: Could not open file for reading: %1 Não foi possível processar as traduções do ficheiro do ambiente de trabalho: Não foi possível abrir o ficheiro para leitura: %1 Could not parse desktop file translations: Invalid syntax: %1 Não foi possível processar as traduções do ficheiro do ambiente de trabalho: Sintaxe inválida: %1 File %1 is owned by another user: %2 Ficheiro %1 é propriedade de outro utilizador: %2 Permissions problem Problema das permissões Failed to run permissions helper, exited with return code %1 A execução do ajudante de permissões falhou com o código de saída %1 Could not find suitable permissions helper, aborting Não foi encontrado um ajudante de permissões adequado, abortando QObject Error Erro AppImageLauncher does not support type %1 AppImages at the moment. AppImageLauncher não suporta o tipo %1 AppImages de momento. Could not make AppImage executable: %1 Não foi possível tornar o AppImage em um executável: %1 Failed to open AppImage for reading: %1 Falha ao abrir o AppImage para leitura: %1 Failed to create temporary directory Falha ao criar o diretório temporário Failed to create temporary copy of type 1 AppImage Falha ao criar uma cópia temporária do AppImage tipo %1 Failed to open temporary AppImage copy for writing Falha ao abrir cópia temporária do AppImage para escrita Failed to remove magic bytes from temporary AppImage copy Falha ao remover bytes mágicos da cópia temporária do AppImage execv() failed: %1 error message execv() falhou: %1 runtime not found: no such file or directory: %1 runtime não encontrado: não existe o ficheiro ou directoria: %1 execv() failed: %1 execv() falhou: %1 Usage: %1 [options] <path> Utilização: %1 [options] <path> Desktop integration helper for AppImages, for use by Linux distributions. Assistente de integração em ambiente de trabalho de AppImages, para utilização em distribuições Linux. Options: Opções: Display this help and exit Mostrar esta ajuda e sair Display version and exit Mostrar versão e sair Arguments: Argumentos: Path to AppImage (mandatory) Caminho para AppImage (mandatário) Unexpected result from the integration dialog. Failed to clean up old desktop files Falha ao limpar ficheiros de ambientes de trabalho antigos Failed to register AppImage in AppImageLauncherFS: error while trying to start appimagelauncherfs.service Falha ao registar AppImage no AppImageLauncherFS: erro no inicio do appimagelauncherfs.service Failed to register AppImage in AppImageLauncherFS: failed to register AppImage path %1 Falha ao registar o AppImage no AppImageLauncherFS: não registou a AppImage caminho %1 Failed to register AppImage in AppImageLauncherFS: could not open map file Falha ao registar o AppImage no AppImageLauncherFS: não pôde abrir o ficheiro do mapa Failed to register AppImage in AppImageLauncherFS: could not find virtual file for AppImage Falha ao registar o AppImage no AppImageLauncherFS: não foi encontrado um ficheiro virtual para o AppImage Failed to register AppImage in AppImageLauncherFS: unknown failure Falha ao registar AppImage no AppImageLauncherFS: falha desconhecida Failed to clean up AppImage trash bin: %1 Falha ao limpar a lixeira AppImage: %1 Unknown AppImageLauncher option: %1 Opção AppImageLauncher desconhecida: %1 Error: no such file or directory: %1 Erro: ficheiro ou diretório não existe: %1 Not an AppImage: %1 Não é um AppImage: %1 The directory the integrated AppImages are stored in is currently set to: %1 O diretório dos AppImages integrados está definida como: %1 The directory the integrated AppImages are stored in is currently set to: %1 O diretório onde os AppImages integrados são armazenadas está actualmente definida como: %1 Integrating it will move the AppImage into a predefined location, and include it in your application launcher. Ao integrar, a AppImage será movida para uma localização predefinida e incluída no seu menu de aplicações. To remove or update the AppImage, please use the context menu of the application icon in your task bar or launcher. Para remover ou atualizar a AppImage, por favor use o menu de contexto do ícone da aplicação existente na barra de tarefas ou no menu de aplicações. The directory the integrated AppImages are stored in is currently set to: A pasta em que os AppImages integradps são armazenados está configurada actualmente: %1 has not been integrated into your system. %1 não foi integrado no seu sistema. Desktop Integration Integração no Ambiente de Trabalho Integrate and run Integrar e executar Run once Executar uma vez Cancel Cancelar Removes AppImages after desktop integration, for use by Linux distributions Remove AppImages após integração no ambiente de trabalho, para usar em distribuições Linux AppImageLauncher remove remove helper app name Remover AppImageLauncher Helper to delete integrated AppImages easily, e.g., from the application launcher's context menu Ajudante para eliminar facilmente os AppImages integrados, por exemplo, do menu de contexto do iniciador de aplicações Path to AppImage Caminho para AppImage <path> AppImage delete helper error Erro do ajudante de eliminação de AppImage AppImage remove helper error Erro no Assistente de Remoção de AppImage Not an AppImage: %1 Não é um AppImage: %1 Please confirm Por favor, confirme Are you sure you want to remove this AppImage? Tem a certeza que deseja remover este AppImage? Failed to unregister AppImage: %1 Falha ao desregistrar AppImage: %1 Failed to move AppImage into trash bin directory Falha ao mover AppImage para o diretório da lixeira Failed to remove AppImage: %1 Falha a remover AppImage: %1 AppImage with same filename has already been integrated. AppImage com o mesmo nome já foi integrado. Do you wish to overwrite the existing AppImage? Pretende sobrescrever o AppImage existente? Choosing No will run the AppImage once, and leave the system in its current state. Escolher Não irá executar o AppImage uma vez e deixar o sistema no seu estado actual. Warning Aviso Failed to move AppImage to target location Falha ao mover o AppImage para a localização de destino Failed to register AppImage in system via libappimage Falha ao registar AppImage no sistema via libappimage Failed to find integrated desktop file Falha ao encontrar ficheiro de ambiente de trabalho integrado Couldn't find integrated AppImage's desktop file Não foi possível encontrar o ficheiro de ambiente de trabalho integrado do AppImage Failed to load desktop file: Falha ao carregar o ficheiro de ambiente de trabalho: AppImage has invalid desktop file AppImage tem um ficheiro de ambiente de trabalho inválido Failed to move AppImage to target location. Try to copy AppImage instead? Falha ao mover AppImage para a localização de destino. Tentar copiar a AppImage em vez disso? Failed to call stat() on path: %1 Falha em ligar stat() no caminho: %1 Failed to copy AppImage to target location Falha ao copiar o AppImage para a localização de destino Updates AppImages after desktop integration, for use by Linux distributions Atualiza AppImages após a integração em ambiente de trabalho, para uso em distribuições Linux AppImageLauncher update update helper app name Atualizar AppImageLauncher The AppImage hasn't been integrated before. This tool will, however, integrate the updated AppImage. O AppImage não foi integrado antes. Esta ferramenta irá, porém, integrar o AppImage atualizado. Do you wish to continue? Pretende continuar? No updates found Não foram encontradas atualizações Could not find updates for AppImage %1 Não existem atualizações para AppImage %1 Failed to check for updates. Please check the command line output for details. Falha ao pesquisar atualizações. por favor verifique o output da linha de comandos para detalhes. No update information found Nenhuma informação de atualizações disponível Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to set update information to allow for easy updating. Não foi possível encontrar informações de atualização no AppImage: %1 Este AppImage não suporta actualização. Por favor, peça aos autores para adicionarem informações necessárias para proporcionar uma atualização mais fácil. Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to set upupdate information to allow for easy updating. As informações de atualização não estão disponíveis no AppImage: %1 Este AppImage não suporta atualização. Por favor, solicitar aos desenvolvedores que adicionem suporte para atualizações automáticas em um próximo lançamento. Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to embed update information to allow for easy updating. Failed to check for updates: %1 Falha a pesquisar por actualizações: %1 An update has been found for the AppImage %1 Uma atualização foi encontrada para o AppImage %1 Do you want to perform the update? Pretende realizar a atualização? Remove old AppImage after successful update Remover o AppImage antigo após uma atualização com sucesso Failed to update AppImage: %1 Falha ao atualizar o AppImage: %1 File reported as updated does not exist: %1 Ficheiro reportado com atualizado não existe: %1 Failed to register updated AppImage in system Falha ao registar o AppImage atualizado no sistema Failed to unregister old AppImage in system Falha a desregistrar o AppImage antigo do sistema Failed to remove old AppImage Falha ao remover o AppImage antigo Tracks AppImages in applications directories (user's, system and other ones). Automatically integrates AppImages moved into those directories and unintegrates ones removed from them. Rastreia AppImages em pastas de aplicações (de usuário, sistema e outras). Integra automaticamente os AppImages transferidos para essas pastas e desintegra os removidos delas. Lists directories watched by this daemon and exit Listar pastas observadas por este daemon e sair RemoveDialog Please confirm Por favor confirme Delete AppImage Apagar AppImage <html><head/><body><p>Are you sure you want to delete this AppImage?</p></body></html> <html><head/><body><p>Tem a certeza que quer apagar este AppImage?</p></body></html> %1 %1 SettingsDialog AppImageLauncher Settings Configurações do AppImageLauncher Launcher Dialog Guia de iniciação Ask whether to move AppImage files into the applications directory Perguntar se quer deslocar os ficheiros AppImage para a pasta de integração General settings Configurações gerais <html><head/><body><p>When this box is checked, AppImageLauncher automatically starts a daemon called appimagelauncherd.</p><p>This daemon automatically integrates AppImages you copy into the &quot;Applications directory&quot; and the additional directories you configured. When the files are deleted, the daemon will clean up the integration data.</p></body></html> <html><head/><body><p>Quando esta caixa é marcada, o AppImageLauncher inicia automaticamente um daemon chamado appimagelauncherd.</p><p>Este daemon integra automaticamente AppImages que você copia na &quot;pasta de aplicações&quot; e as pastas adicionais que você configurou. Quando as AppImages são apagadas, o daemon vai limpar os dados de integração.</p></body></html> Auto start auto-integration daemon Iniciar automaticamente o daemon de integração Additional directories to watch Pastas adicionais para observar Add new directory to list Adicionar nova pasta à lista Remove selected directory from list Retirar a pasta seleccionada da lista Applications directory path Caminho da pasta de aplicações Location where to store your AppImage files to ease their management Localização para armazenar os seus AppImages para facilitar a sua gestão Available Features Funcionalidades disponíveis updater available for AppImages supporting AppImageUpdate atualizadoe disponível para AppImages que suporta AppImageUpdate updater unavailable atualizador indisponível <strong>Note: this is an AppImageLauncher Lite build, only supports a limited set of features</strong><br />Please install the full version via the provided native packages to enjoy the full AppImageLauncher experience <strong>Nota: esta é uma versão do AppImageLauncher Lite, que oferece um limitado conjunto de funcionalidades</strong><br />Por favor, instale a versão completa através do gestor de pacotes do seu sistema para beneficiar a experiência completa do AppImageLauncher Select Applications directory Seleccionar pasta de Aplicações Select additional directory to watch Seleccionar pasta adicional para observar ================================================ FILE: i18n/ui.pt_PT.ts ================================================ FirstRunDialog First run Primeira execução <html><head/><body><p><span style=" font-size:11pt; font-weight:600;">Welcome to AppImageLauncher!</span></p><p>This little helper is designed to improve your AppImage experience on your computer.</p><p>It appears you have never run AppImageLauncher before. Please take a minute and configure your preferences. You can always change these later on, using the control panel.</p></body></html> <html><head/><body><p><span style=" font-size:11pt; font-weight:600;">O AppImageLauncher agora está ativo no seu sistema!</span></p><p>Esperamos que melhore a experiência AppImage no seu computador, ao armazenar as AppImages que instalar numa única pasta e ao adicionar entradas correspondentes ao seu lançador de aplicações.</p><p>Não foi possível encontrar um ficheiro de configuração; será criado um automaticamente com as suas selecções a seguir. Pode sempre alterar estas configurações mais tarde, ao lançar AppImageLauncher Settings.</p></body></html> Ask me whether to move new AppImages into a central location Pedir para mudar as AppImages detectados novamente para a pasta de gestão Integration target destination directory: Pasta para armazenar AppImages geridos: Customize Personalizar Choose integration destination dir Escolher uma pasta para armazenar AppImages geridas (default) (padrão) IntegrationDialog Desktop Integration Icon <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Noto Sans'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">%1 has not been integrated into your system.</p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> <br />Integrating it will move the AppImage into a predefined location, and include it in your application launcher.</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">To remove or update the AppImage, please use the context menu of the application icon in your task bar or launcher. </p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The directory where the integrated AppImages are stored in is currently set to: %2</p></body></html> Integrate and run Run once QMessageBox Warning Aviso AppImage has already been integrated, but it is not in the current integration destination directory. Do you want to move it into the new destination? Choosing No will run the AppImage once, and leave the AppImage in its current directory. AppImage has already been integrated, but it is not in the current integration destination directory. Do you want to move it into the new destination? Choosing No will run the AppImage once, and leave the AppImage in its current directory. AppImage %1 has already been integrated, but it is not in the current integration destination directory. Do you want to move it into the new destination? Choosing No will run the AppImage once, and leave the AppImage in its current directory. O AppImage %1 já foi integrado, mas não se encontra na pasta de armazenamento para AppImages geridos. Quer movê-la para lá agora? Clique Não para evitar AppImageLauncher e iniciar o AppImage diretamente da sua localização atual. Error Erro Failed to unregister AppImage before re-integrating it Falha ao eliminar a integração do sistema para o AppImage antes de o reintegrar Could not parse desktop file translations: Could not open file for reading: %1 Incapaz de analisar as traduções no ficheiro de ambiente de trabalho. Não foi possível abrir o ficheiro: %1 Could not parse desktop file translations: Invalid syntax: %1 Incapaz de analisar as traduções em ficheiro do ambiente de trabalho. Sintaxe inválida: %1 File %1 is owned by another user: %2 O ficheiro %1 pertence a outro utilizador: %2 Permissions problem Erro: Não há permissões necessárias do sistema de ficheiros File %1 is owned by another user: %2 Relaunch with their permissions? File %1 is owned by another user: %2 Relaunch with their permissions? Failed to run permissions helper, exited with return code %1 Falha em executar o ajudante de permissões, saído com o código de retorno %1 Could not find suitable permissions helper, aborting Não foi encontrado um ajudante de permissões adequado, a cancelar QObject Error Falha AppImageLauncher does not support type %1 AppImages at the moment. AppImageLauncher não apoia AppImages do tipo %1 actualmente. Could not make AppImage executable: %1 Não foi possível definir permissão executável para AppImage: %1 Failed to open AppImage for reading: %1 Failed to open AppImage for reading: %1 Failed to create temporary directory Failed to create temporary directory Failed to create temporary copy of type 1 AppImage Failed to create temporary copy of type 1 AppImage Failed to open temporary AppImage copy for writing Failed to open temporary AppImage copy for writing Failed to remove magic bytes from temporary AppImage copy Failed to remove magic bytes from temporary AppImage copy execv() failed: %1 error message execv() failed: %1 runtime not found: no such file or directory: %1 runtime not found: no such file or directory: %1 execv() failed: %1 execv() falhou: %1 Usage: %1 [options] <path> Utilização: %1 [opções] <caminho> Desktop integration helper for AppImages, for use by Linux distributions. Ajudante de integração de ambiente de trabalho para AppImages, para utilização por distribuições Linux. Options: Opções: Display this help and exit Mostrar esta ajuda e sair Display version and exit Mostrar versão e sair Arguments: Argumentos: Path to AppImage (mandatory) Caminho para AppImage (necessário) Unexpected result from the integration dialog. Failed to clean up old desktop files Falha na limpeza de ficheiros de entrada no ambiente de trabalho antigos Failed to register AppImage in AppImageLauncherFS: error while trying to start appimagelauncherfs.service Failed to register AppImage in AppImageLauncherFS: error while trying to start appimagelauncherfs.service Failed to register AppImage in AppImageLauncherFS: failed to register AppImage path %1 Failed to register AppImage in AppImageLauncherFS: failed to register AppImage path %1 Failed to register AppImage in AppImageLauncherFS: could not open map file Failed to register AppImage in AppImageLauncherFS: could not open map file Failed to register AppImage in AppImageLauncherFS: could not find virtual file for AppImage Failed to register AppImage in AppImageLauncherFS: could not find virtual file for AppImage Failed to register AppImage in AppImageLauncherFS: unknown failure Failed to register AppImage in AppImageLauncherFS: unknown failure Failed to clean up AppImage trash bin: %1 Falha na limpeza do caixote do lixo AppImage: %1 Unknown AppImageLauncher option: %1 Opção desconhecida do AppImageLauncher: %1 Error: no such file or directory: %1 Erro: nenhum ficheiro ou pasta: %1 Not an AppImage: %1 Não é um AppImage: %1 The directory the integrated AppImages are stored in is currently set to: %1 Atualmente, os AppImages integrados neste sistema são armazenados na pasta: %1 The directory the integrated AppImages are stored in is currently set to: %1 The directory the integrated AppImages are stored in is currently set to: %1 Removes AppImages after desktop integration, for use by Linux distributions Removes AppImages after desktop integration, for use by Linux distributions AppImageLauncher remove remove helper app name AppImageLauncher remove Helper to delete integrated AppImages easily, e.g., from the application launcher's context menuz Helper to delete integrated AppImages easily, e.g., from the application launcher's context menuz Helper to delete integrated AppImages easily, e.g., from the application launcher's context menu Path to AppImage <path> AppImage delete helper error AppImage remove helper error AppImage remove helper error Not an AppImage: %1 Refusing to work on non-integrated AppImage: %1 Refusing to work on non-integrated AppImage: %1 Please confirm Please confirm Are you sure you want to remove this AppImage? Are you sure you want to remove this AppImage? Failed to unregister AppImage: %1 Failed to move AppImage into trash bin directory Failed to remove AppImage: %1 Failed to remove AppImage: %1 AppImage with same filename has already been integrated. Do you wish to overwrite the existing AppImage? Choosing No will run the AppImage once, and leave the system in its current state. Warning Aviso Failed to move AppImage to target location Failed to move AppImage to target location Failed to register AppImage in system via libappimage Failed to find integrated desktop file Couldn't find integrated AppImage's desktop file Failed to load desktop file: AppImage has invalid desktop file Failed to move AppImage to target location. Try to copy AppImage instead? Failed to call stat() on path: %1 Failed to copy AppImage to target location Failed to copy AppImage to target location Updates AppImages after desktop integration, for use by Linux distributions AppImageLauncher update update helper app name The AppImage hasn't been integrated before. This tool will, however, integrate the updated AppImage. The AppImage hasn't been integrated before. This tool will, however, integrate the updated AppImage. Do you wish to continue? Do you wish to continue? No updates found Could not find updates for AppImage %1 Failed to check for updates. Please check the command line output for details. Failed to check for updates. Please check the command line output for details. No update information found Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to set update information to allow for easy updating. Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to set update information to allow for easy updating. Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to set upupdate information to allow for easy updating. Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to set upupdate information to allow for easy updating. Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to embed update information to allow for easy updating. Failed to check for updates: %1 An update has been found for the AppImage %1 Do you want to perform the update? Remove old AppImage after successful update Failed to update AppImage: %1 File reported as updated does not exist: %1 Failed to register updated AppImage in system Failed to unregister old AppImage in system Failed to remove old AppImage Tracks AppImages in applications directories (user's, system and other ones). Automatically integrates AppImages moved into those directories and unintegrates ones removed from them. Search for AppImages in /Applications directories in suitable mounted filesystems Search for AppImages in /Applications directories in suitable mounted filesystems Search for AppImages in /Applications directories suitable mounted filesystems Search for AppImages in /Applications directories suitable mounted filesystems Lists directories watched by this daemon and exit RemoveDialog Please confirm Please confirm <html><head/><body><p>Are you sure you want to remove this AppImage?</body></html> <html><head/><body><p>Are you sure you want to remove this AppImage?</body></html> Delete AppImage <html><head/><body><p>Are you sure you want to delete this AppImage?</p></body></html> %1 <html><head/><body><p>Uncheck to only remove the desktop integration, but leave the file on the system.</p></body></html> <html><head/><body><p>Uncheck to only remove the desktop integration, but leave the file on the system.</p></body></html> Remove AppImage file from system Remove AppImage file from system SettingsDialog AppImageLauncher Settings AppImageLauncher AppImageLauncher Launcher Dialog Ask whether to move AppImage files into the applications directory appimagelauncherd appimagelauncherd General settings <html><head/><body><p>When this box is checked, AppImageLauncher automatically starts a daemon called appimagelauncherd.</p><p>This daemon automatically integrates AppImages you copy into the &quot;Applications directory&quot; and the additional directories you configured. When the files are deleted, the daemon will clean up the integration data.</p></body></html> Auto start auto-integration daemon Additional directories to watch Add new directory to list Remove selected directory from list - - Applications directory Applications directory <html><head/><body><p>When enabled, the daemon automatically integrates AppImages you copy into the &quot;Applications directory&quot;. When the files are deleted, the daemon will clean up the integration data.</p></body></html> <html><head/><body><p>When enabled, the daemon automatically integrates AppImages you copy into the &quot;Applications directory&quot;. When the files are deleted, the daemon will clean up the integration data.</p></body></html> Applications directory path Location where to store your AppImage files to ease their management Location where to store your AppImage files to ease their management using the file manager. Location where to store your AppImage files to ease their management using the file manager. /path /path Enable auto-integration daemon Enable auto-integration daemon Available Features updater available for AppImages supporting AppImageUpdate updater unavailable <strong>Note: this is an AppImageLauncher Lite build, only supports a limited set of features</strong><br />Please install the full version via the provided native packages to enjoy the full AppImageLauncher experience Select Applications directory Select additional directory to watch ================================================ FILE: i18n/ui.ru.ts ================================================ FirstRunDialog First run Первый запуск <html><head/><body><p><span style=" font-size:11pt; font-weight:600;">Welcome to AppImageLauncher!</span></p><p>This little helper is designed to improve your AppImage experience on your computer.</p><p>It appears you have never run AppImageLauncher before. Please take a minute and configure your preferences. You can always change these later on, using the control panel.</p></body></html> Ask me whether to move new AppImages into a central location Integration target destination directory: Customize Choose integration destination dir (default) (по умолчанию) IntegrationDialog Desktop Integration Интеграция с рабочим столом Icon <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Noto Sans'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">%1 has not been integrated into your system.</p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> <br />Integrating it will move the AppImage into a predefined location, and include it in your application launcher.</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">To remove or update the AppImage, please use the context menu of the application icon in your task bar or launcher. </p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The directory where the integrated AppImages are stored in is currently set to: %2</p></body></html> Integrate and run Интегрировать и запустить Run once Одиночный запуск QMessageBox Warning Предупреждение AppImage %1 has already been integrated, but it is not in the current integration destination directory. Do you want to move it into the new destination? Choosing No will run the AppImage once, and leave the AppImage in its current directory. Error Ошибка Failed to unregister AppImage before re-integrating it Could not parse desktop file translations: Could not open file for reading: %1 Could not parse desktop file translations: Invalid syntax: %1 File %1 is owned by another user: %2 Permissions problem Failed to run permissions helper, exited with return code %1 Could not find suitable permissions helper, aborting QObject Error Ошибка AppImageLauncher does not support type %1 AppImages at the moment. AppImageLauncher в данный момент не поддерживает AppImage %1 типа. Could not make AppImage executable: %1 Невозможно сделать файл AppImage исполняемым: %1 Failed to open AppImage for reading: %1 Не удалось открыть AppImage для чтения: %1 Failed to create temporary directory Не удалось создать временный каталог Failed to create temporary copy of type 1 AppImage Не удалось создать временную копию AppImage 1 типа Failed to open temporary AppImage copy for writing Не удалось открыть временную копию AppImage для записи Failed to remove magic bytes from temporary AppImage copy Не удалось стереть сигнатуру из временной копии AppImage execv() failed: %1 error message execv() не сработал: %1 runtime not found: no such file or directory: %1 рантайм не найден, файл или каталог не существует: %1 execv() failed: %1 execv() не сработал: %1 Usage: %1 [options] <path> Использование: %1 [опции] <путь> Desktop integration helper for AppImages, for use by Linux distributions. Помощник интеграции AppImage-пакетов с рабочим столом, подходит для использования в любом дистрибутиве Linux. Options: Опции: Display this help and exit Показать это сообщение и выйти Display version and exit Показать версию и выйти Arguments: Аргументы: Path to AppImage (mandatory) Путь к AppImage (обязателен) Unexpected result from the integration dialog. Failed to clean up old desktop files Не удалось очистить старые desktop-файлы Failed to clean up AppImage trash bin: %1 Unknown AppImageLauncher option: %1 Неизвестная опция для AppImageLauncher: %1 Error: no such file or directory: %1 Ошибка, файл или каталог не существует: %1 Not an AppImage: %1 Это не AppImage: %1 The directory the integrated AppImages are stored in is currently set to: %1 Integrating it will move the AppImage into a predefined location, and include it in your application launcher. Интеграция переместит файл AppImage в каталог, определённый заранее, и добавит пункт в меню запуска приложений. To remove or update the AppImage, please use the context menu of the application icon in your task bar or launcher. Удалить или обновить AppImage можно в контекстном меню у иконки приложения. The directory the integrated AppImages are stored in is currently set to: В данный момент файлы AppImage хранятся в каталоге: %1 has not been integrated into your system. %1 не был интегрирован с вашей системой. Desktop Integration Интеграция с рабочим столом Integrate and run Интегрировать и запустить Run once Одиночный запуск Cancel Отмена Removes AppImages after desktop integration, for use by Linux distributions Удаляет AppImage-пакеты, интегрированные с рабочим столом AppImageLauncher remove remove helper app name AppImageLauncher удаление Helper to delete integrated AppImages easily, e.g., from the application launcher's context menu Path to AppImage Путь к AppImage <path> <путь> AppImage delete helper error AppImage remove helper error Ошибка средства удаления AppImage Not an AppImage: %1 Please confirm Подтверждение Are you sure you want to remove this AppImage? Вы уверены, что хотите удалить этот AppImage? Failed to unregister AppImage: %1 Не удалось снять регистрацию AppImage: %1 Failed to move AppImage into trash bin directory Failed to remove AppImage: %1 Ошибка при удалении AppImage: %1 AppImage with same filename has already been integrated. AppImage с таким же именем уже был интегрирован. Do you wish to overwrite the existing AppImage? Хотите ли вы перезаписать существующий AppImage? Choosing No will run the AppImage once, and leave the system in its current state. Выбор пункта "Нет" запустит AppImage и оставит систему без изменений. Warning Предупреждение Failed to move AppImage to target location Не удалось переместить AppImage в указанное место Failed to register AppImage in system via libappimage Не удалось зарегистрировать AppImage в системе с помощью libappimage Failed to find integrated desktop file Не удалось найти интегрированный desktop-файл Couldn't find integrated AppImage's desktop file Не удалось найти интегрированный desktop-файл Failed to load desktop file: Не удалось загрузить desktop-файл: AppImage has invalid desktop file У этого AppImage некорректный desktop-файл Failed to move AppImage to target location. Try to copy AppImage instead? Failed to call stat() on path: %1 Updates AppImages after desktop integration, for use by Linux distributions Обновляет AppImage-пакеты, интегрированные с рабочим столом AppImageLauncher update update helper app name AppImageLauncher обновление The AppImage hasn't been integrated before. This tool will, however, integrate the updated AppImage. Этот AppImage ещё не был интегрирован. Это будет сделано с обновлённым AppImage. Do you wish to continue? Хотите ли вы продолжить? No updates found Обновления не найдены Could not find updates for AppImage %1 Не удалось найти обновления для AppImage %1 No update information found Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to embed update information to allow for easy updating. Failed to check for updates: %1 Не удалось проверить обновления: %1 An update has been found for the AppImage %1 Найдено обновление для AppImage %1 Do you want to perform the update? Хотите ли вы совершить обновление? Remove old AppImage after successful update Удалить старый AppImage после успешного обновления Failed to update AppImage: %1 Не удалось обновить AppImage: %1 File reported as updated does not exist: %1 Обновлённый файл не существует: %1 Failed to register updated AppImage in system Не удалось зарегистрировать в системе обновлённый AppImage Failed to unregister old AppImage in system Не удалось снять регистрацию старого AppImage в системе Failed to remove old AppImage Ошибка при удалении старого AppImage Tracks AppImages in applications directories (user's, system and other ones). Automatically integrates AppImages moved into those directories and unintegrates ones removed from them. Lists directories watched by this daemon and exit RemoveDialog Please confirm Подтверждение Delete AppImage Удалить AppImage <html><head/><body><p>Are you sure you want to delete this AppImage?</p></body></html> <html><head/><body><p>Вы уверены, что хотите удалить этот AppImage?</p></body></html> %1 %1 SettingsDialog AppImageLauncher Settings Настройки AppImageLauncher Launcher Dialog Ask whether to move AppImage files into the applications directory General settings <html><head/><body><p>When this box is checked, AppImageLauncher automatically starts a daemon called appimagelauncherd.</p><p>This daemon automatically integrates AppImages you copy into the &quot;Applications directory&quot; and the additional directories you configured. When the files are deleted, the daemon will clean up the integration data.</p></body></html> Auto start auto-integration daemon Additional directories to watch Add new directory to list Remove selected directory from list Applications directory path Location where to store your AppImage files to ease their management Enable auto-integration daemon Включить демон автоматической интеграции Available Features updater available for AppImages supporting AppImageUpdate updater unavailable <strong>Note: this is an AppImageLauncher Lite build, only supports a limited set of features</strong><br />Please install the full version via the provided native packages to enjoy the full AppImageLauncher experience Select Applications directory Выбор директории приложений Select additional directory to watch ================================================ FILE: i18n/ui.tr.ts ================================================ FirstRunDialog First run İlk çalıştırma <html><head/><body><p><span style=" font-size:11pt; font-weight:600;">Welcome to AppImageLauncher!</span></p><p>This little helper is designed to improve your AppImage experience on your computer.</p><p>It appears you have never run AppImageLauncher before. Please take a minute and configure your preferences. You can always change these later on, using the control panel.</p></body></html> <html><head/><body><p><span style=" font-size:11pt; font-weight:600;">AppImageLauncher uygulamasına hoş geldiniz!</span></p><p>Bu küçük yardımcı, bilgisayarınızdaki AppImage deneyiminizi iyileştirmek için tasarlanmıştır.</p><p>Görünüşe göre AppImageLauncher uygulamasını ilk defa çalıştırıyorsunuz. Lütfen bir dakikanızı ayırın ve tercihlerinizi yapılandırın. Bunları daha sonra kontrol panelini kullanarak istediğiniz zaman değiştirebilirsiniz.</p></body></html> Ask me whether to move new AppImages into a central location Yeni AppImages uygulamasının merkezi bir konuma taşınıp taşınmayacağını sor Integration target destination directory: Entegrasyon hedef dizini: Customize Özelleştir Choose integration destination dir Entegrasyon hedef dizinini seçin (default) (varsayılan) IntegrationDialog Desktop Integration Icon <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Noto Sans'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">%1 has not been integrated into your system.</p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> <br />Integrating it will move the AppImage into a predefined location, and include it in your application launcher.</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">To remove or update the AppImage, please use the context menu of the application icon in your task bar or launcher. </p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The directory where the integrated AppImages are stored in is currently set to: %2</p></body></html> Integrate and run Run once QMessageBox Warning Uyarı AppImage has already been integrated, but it is not in the current integration destination directory. Do you want to move it into the new destination? Choosing No will run the AppImage once, and leave the AppImage in its current directory. AppImage has already been integrated, but it is not in the current integration destination directory. Do you want to move it into the new destination? Choosing No will run the AppImage once, and leave the AppImage in its current directory. AppImage %1 has already been integrated, but it is not in the current integration destination directory. Do you want to move it into the new destination? Choosing No will run the AppImage once, and leave the AppImage in its current directory. Error Hata Failed to unregister AppImage before re-integrating it Could not parse desktop file translations: Could not open file for reading: %1 Could not parse desktop file translations: Invalid syntax: %1 File %1 is owned by another user: %2 Permissions problem İzin sorunu File %1 is owned by another user: %2 Relaunch with their permissions? File %1 is owned by another user: %2 Relaunch with their permissions? Failed to run permissions helper, exited with return code %1 Could not find suitable permissions helper, aborting QObject Error Hata AppImageLauncher does not support type %1 AppImages at the moment. Could not make AppImage executable: %1 Failed to open AppImage for reading: %1 Failed to open AppImage for reading: %1 Failed to create temporary directory Failed to create temporary directory Failed to create temporary copy of type 1 AppImage Failed to create temporary copy of type 1 AppImage Failed to open temporary AppImage copy for writing Failed to open temporary AppImage copy for writing Failed to remove magic bytes from temporary AppImage copy Failed to remove magic bytes from temporary AppImage copy execv() failed: %1 error message execv() failed: %1 runtime not found: no such file or directory: %1 runtime not found: no such file or directory: %1 execv() failed: %1 execv() failed: %1 Usage: %1 [options] <path> Desktop integration helper for AppImages, for use by Linux distributions. Options: Display this help and exit Display version and exit Arguments: Path to AppImage (mandatory) Unexpected result from the integration dialog. Failed to clean up old desktop files Failed to register AppImage in AppImageLauncherFS: error while trying to start appimagelauncherfs.service Failed to register AppImage in AppImageLauncherFS: error while trying to start appimagelauncherfs.service Failed to register AppImage in AppImageLauncherFS: failed to register AppImage path %1 Failed to register AppImage in AppImageLauncherFS: failed to register AppImage path %1 Failed to register AppImage in AppImageLauncherFS: could not open map file Failed to register AppImage in AppImageLauncherFS: could not open map file Failed to register AppImage in AppImageLauncherFS: could not find virtual file for AppImage Failed to register AppImage in AppImageLauncherFS: could not find virtual file for AppImage Failed to register AppImage in AppImageLauncherFS: unknown failure Failed to register AppImage in AppImageLauncherFS: unknown failure Failed to clean up AppImage trash bin: %1 Unknown AppImageLauncher option: %1 Error: no such file or directory: %1 Not an AppImage: %1 The directory the integrated AppImages are stored in is currently set to: %1 The directory the integrated AppImages are stored in is currently set to: %1 The directory the integrated AppImages are stored in is currently set to: %1 Removes AppImages after desktop integration, for use by Linux distributions Removes AppImages after desktop integration, for use by Linux distributions AppImageLauncher remove remove helper app name AppImageLauncher remove Helper to delete integrated AppImages easily, e.g., from the application launcher's context menuz Helper to delete integrated AppImages easily, e.g., from the application launcher's context menuz Helper to delete integrated AppImages easily, e.g., from the application launcher's context menu Path to AppImage <path> AppImage delete helper error AppImage remove helper error AppImage remove helper error Not an AppImage: %1 Refusing to work on non-integrated AppImage: %1 Refusing to work on non-integrated AppImage: %1 Please confirm Please confirm Are you sure you want to remove this AppImage? Are you sure you want to remove this AppImage? Failed to unregister AppImage: %1 Failed to move AppImage into trash bin directory Failed to remove AppImage: %1 Failed to remove AppImage: %1 AppImage with same filename has already been integrated. Do you wish to overwrite the existing AppImage? Choosing No will run the AppImage once, and leave the system in its current state. Warning Uyarı Failed to move AppImage to target location Failed to move AppImage to target location Failed to register AppImage in system via libappimage Failed to find integrated desktop file Couldn't find integrated AppImage's desktop file Failed to load desktop file: AppImage has invalid desktop file Failed to move AppImage to target location. Try to copy AppImage instead? Failed to call stat() on path: %1 Failed to copy AppImage to target location Failed to copy AppImage to target location Updates AppImages after desktop integration, for use by Linux distributions AppImageLauncher update update helper app name The AppImage hasn't been integrated before. This tool will, however, integrate the updated AppImage. The AppImage hasn't been integrated before. This tool will, however, integrate the updated AppImage. Do you wish to continue? Do you wish to continue? No updates found Could not find updates for AppImage %1 Failed to check for updates. Please check the command line output for details. Failed to check for updates. Please check the command line output for details. No update information found Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to set update information to allow for easy updating. Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to set update information to allow for easy updating. Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to set upupdate information to allow for easy updating. Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to set upupdate information to allow for easy updating. Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to embed update information to allow for easy updating. Failed to check for updates: %1 An update has been found for the AppImage %1 Do you want to perform the update? Remove old AppImage after successful update Failed to update AppImage: %1 File reported as updated does not exist: %1 Failed to register updated AppImage in system Failed to unregister old AppImage in system Failed to remove old AppImage Tracks AppImages in applications directories (user's, system and other ones). Automatically integrates AppImages moved into those directories and unintegrates ones removed from them. Search for AppImages in /Applications directories in suitable mounted filesystems Search for AppImages in /Applications directories in suitable mounted filesystems Search for AppImages in /Applications directories suitable mounted filesystems Search for AppImages in /Applications directories suitable mounted filesystems Lists directories watched by this daemon and exit RemoveDialog Please confirm Please confirm <html><head/><body><p>Are you sure you want to remove this AppImage?</body></html> <html><head/><body><p>Are you sure you want to remove this AppImage?</body></html> Delete AppImage <html><head/><body><p>Are you sure you want to delete this AppImage?</p></body></html> %1 <html><head/><body><p>Uncheck to only remove the desktop integration, but leave the file on the system.</p></body></html> <html><head/><body><p>Uncheck to only remove the desktop integration, but leave the file on the system.</p></body></html> Remove AppImage file from system Remove AppImage file from system SettingsDialog AppImageLauncher Settings AppImageLauncher AppImageLauncher Launcher Dialog Ask whether to move AppImage files into the applications directory appimagelauncherd appimagelauncherd General settings <html><head/><body><p>When this box is checked, AppImageLauncher automatically starts a daemon called appimagelauncherd.</p><p>This daemon automatically integrates AppImages you copy into the &quot;Applications directory&quot; and the additional directories you configured. When the files are deleted, the daemon will clean up the integration data.</p></body></html> Auto start auto-integration daemon Additional directories to watch Add new directory to list Remove selected directory from list - - Applications directory Applications directory <html><head/><body><p>When enabled, the daemon automatically integrates AppImages you copy into the &quot;Applications directory&quot;. When the files are deleted, the daemon will clean up the integration data.</p></body></html> <html><head/><body><p>When enabled, the daemon automatically integrates AppImages you copy into the &quot;Applications directory&quot;. When the files are deleted, the daemon will clean up the integration data.</p></body></html> Applications directory path Location where to store your AppImage files to ease their management Location where to store your AppImage files to ease their management using the file manager. Location where to store your AppImage files to ease their management using the file manager. /path /path Enable auto-integration daemon Enable auto-integration daemon Available Features updater available for AppImages supporting AppImageUpdate updater unavailable <strong>Note: this is an AppImageLauncher Lite build, only supports a limited set of features</strong><br />Please install the full version via the provided native packages to enjoy the full AppImageLauncher experience Select Applications directory Select additional directory to watch ================================================ FILE: i18n/ui.zh_Hans.ts ================================================ FirstRunDialog First run 首次运行 <html><head/><body><p><span style=" font-size:11pt; font-weight:600;">Welcome to AppImageLauncher!</span></p><p>This little helper is designed to improve your AppImage experience on your computer.</p><p>It appears you have never run AppImageLauncher before. Please take a minute and configure your preferences. You can always change these later on, using the control panel.</p></body></html> <html><head/><body><p><span style=" font-size:11pt; font-weight:600;">欢迎使用 AppImageLauncher!</span></p><p>这个小助手旨在改善您使用 AppImage 的体验。</p><p>看来您以前从未运行过 AppImageLauncher 。请花一点时间配置appimage launcher。您随后可以使用控制面板更改这些内容。</p></body></html> Ask me whether to move new AppImages into a central location 询问我是否要将新的 AppImage 移动到一个中心位置 Integration target destination directory: 存放已集成的目标目录: Customize 自定义 Choose integration destination dir 选择集成后appimage的存放目录 (default) (默认) IntegrationDialog Desktop Integration 桌面集成 Icon <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Noto Sans'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">%1 has not been integrated into your system.</p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> <br />Integrating it will move the AppImage into a predefined location, and include it in your application launcher.</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">To remove or update the AppImage, please use the context menu of the application icon in your task bar or launcher. </p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The directory where the integrated AppImages are stored in is currently set to: %2</p></body></html> Integrate and run 集成并运行 Run once 运行一次 QMessageBox Warning 警告 AppImage has already been integrated, but it is not in the current integration destination directory. Do you want to move it into the new destination? Choosing No will run the AppImage once, and leave the AppImage in its current directory. AppImage 已集成,但它不在当前集成目标文件夹。 你想要将它移至新位置吗? 选择否将运行一次 AppImage ,并将 AppImage 留在当前文件夹。 AppImage %1 has already been integrated, but it is not in the current integration destination directory. Do you want to move it into the new destination? Choosing No will run the AppImage once, and leave the AppImage in its current directory. AppImage %1 已集成,但它不在当前已集成的文件夹内。 你想要将它移至新位置吗? 选择否将运行一次 AppImage ,并将 AppImage 留在当前文件夹。 Error 错误 Failed to unregister AppImage before re-integrating it 未能在重新集成 AppImage 前解除集成 Could not parse desktop file translations: Could not open file for reading: %1 无法解析桌面文件翻译: 无法读取此文件: %1 Could not parse desktop file translations: Invalid syntax: %1 无法解析桌面文件翻译: 无效语法: %1 File %1 is owned by another user: %2 文件 %1 的所有者是:%2 Permissions problem 权限问题 Failed to run permissions helper, exited with return code %1 运行权限助手失败,退出代码 %1 Could not find suitable permissions helper, aborting 未找到合适的权限助手,正在退出 QObject Error 错误 AppImageLauncher does not support type %1 AppImages at the moment. AppImageLauncher 目前不支持 %1 类型的 AppImage 。 Could not make AppImage executable: %1 无法设置 AppImage 为可执行: %1 Failed to open AppImage for reading: %1 未能打开 AppImage 以读取: %1 Failed to create temporary directory 未能创建临时文件夹 Failed to create temporary copy of type 1 AppImage 未能创建 %1 类型 AppImage 的临时副本 Failed to open temporary AppImage copy for writing 未能打开临时 AppImage 副本以写入 Failed to remove magic bytes from temporary AppImage copy 未能从临时AppImage 副本中移除 magic bytes execv() failed: %1 error message execv() 失败: %1 runtime not found: no such file or directory: %1 未找到运行时:无此文件或文件夹: %1 execv() failed: %1 execv() 失败: %1 Usage: %1 [options] <path> 用法: %1 [选项] <路径> Desktop integration helper for AppImages, for use by Linux distributions. AppImage 桌面集成助手,供 Linux 发行版使用。 Options: 选项: Display this help and exit 显示此帮助并退出 Display version and exit 显示版本并退出 Arguments: 参数: Path to AppImage (mandatory) AppImage 路径(强制) Unexpected result from the integration dialog. Failed to clean up old desktop files 清除旧桌面文件失败 Failed to register AppImage in AppImageLauncherFS: error while trying to start appimagelauncherfs.service 在 AppImageLauncherFS 中注册 AppImage 失败:启动 appimagelauncherfs.service 时出错 Failed to register AppImage in AppImageLauncherFS: failed to register AppImage path %1 在 AppImageLauncherFSFailed 中注册 AppImage 失败:注册 AppImage 路径 %1 失败 Failed to register AppImage in AppImageLauncherFS: could not open map file 在 AppImageLauncherFSFailed 中注册 AppImage 失败:无法打开映射文件 Failed to register AppImage in AppImageLauncherFS: could not find virtual file for AppImage 在 AppImageLauncherFSFailed 中注册 AppImage 失败:无法找到 AppImage 虚拟文件 Failed to register AppImage in AppImageLauncherFS: unknown failure 在 AppImageLauncherFSFailed 中注册 AppImage 失败:未知失败 Failed to clean up AppImage trash bin: %1 清空 AppImage 垃圾箱失败: %1 Unknown AppImageLauncher option: %1 未知 AppImageLauncher 选项: %1 Error: no such file or directory: %1 错误:无此文件或文件夹: %1 Not an AppImage: %1 不是 AppImage: %1 The directory the integrated AppImages are stored in is currently set to: %1 存储集成的 AppImage 的文件夹现在被设为: %1 The directory the integrated AppImages are stored in is currently set to: %1 存储集成的 AppImage 的文件夹现在被设为: %1 Integrating it will move the AppImage into a predefined location, and include it in your application launcher. 集成它将会将 AppImage 移动到预设位置,并将它包含进你的应用启动器。 To remove or update the AppImage, please use the context menu of the application icon in your task bar or launcher. 请使用任务栏或启动器中应用图标的上下文菜单移除或更新 AppImage 。 The directory the integrated AppImages are stored in is currently set to: 存储集成的 AppImage 的文件夹现在被设为: %1 has not been integrated into your system. %1 尚未集成到你的系统。 Desktop Integration 桌面集成 Integrate and run 集成并运行 Run once 运行一次 Cancel 取消 Removes AppImages after desktop integration, for use by Linux distributions 桌面集成后移除 AppImage ,供 Linux 发行版使用 AppImageLauncher remove remove helper app name AppImageLauncher 移除 Helper to delete integrated AppImages easily, e.g., from the application launcher's context menu 用于轻松删除集成的 AppImage 的助手,例如,从应用启动器上下文菜单中删除 Path to AppImage AppImage 路径 <path> <路径> AppImage delete helper error AppImage 删除助手错误 AppImage remove helper error AppImage 移除助手错误 Not an AppImage: %1 不是 AppImage: %1 Refusing to work on non-integrated AppImage: %1 拒绝在未集成 AppImage 上工作: %1 Please confirm 请确认 Are you sure you want to remove this AppImage? 你确定要移除此 AppImage 吗? Failed to unregister AppImage: %1 未能注销 AppImage: %1 Failed to move AppImage into trash bin directory 将 AppImage 移入垃圾箱文件夹失败 Failed to remove AppImage: %1 移除 AppImage 失败: %1 AppImage with same filename has already been integrated. 具有相同文件名的 AppImage 已集成。 Do you wish to overwrite the existing AppImage? 你想要覆盖已存在的 AppImage 吗? Choosing No will run the AppImage once, and leave the system in its current state. 选择否将运行一次 AppImage ,并保留当前系统状态。 Warning 警告 Failed to move AppImage to target location 未能将 AppImage 移动到目标位置 Failed to register AppImage in system via libappimage 未能通过 libappimage 在系统中注册 AppImage Failed to find integrated desktop file 未找到已集成桌面文件 Couldn't find integrated AppImage's desktop file 无法找到已集成 AppImage 的桌面文件 Failed to load desktop file: 加载桌面文件失败: AppImage has invalid desktop file AppImage 有无效桌面文件 Failed to move AppImage to target location. Try to copy AppImage instead? 未能移动 AppImage 到目标位置。 改为尝试复制 AppImage 吗? Failed to call stat() on path: %1 在此路径上调用 stat() 失败: %1 Failed to copy AppImage to target location 未能复制 AppImage 到目标位置 Updates AppImages after desktop integration, for use by Linux distributions 桌面集成后更新 AppImage ,供 Linux 发行版使用 AppImageLauncher update update helper app name AppImageLauncher 更新 The AppImage hasn't been integrated before. This tool will, however, integrate the updated AppImage. AppImage 此前未集成。然而此工具将集成更新后的 AppImage 。 Do you wish to continue? 你想继续吗? No updates found 未找到更新 Could not find updates for AppImage %1 无法找到 AppImage %1 的更新 Failed to check for updates. Please check the command line output for details. 检查更新失败。请检查命令行输出获取详细信息。 No update information found 未找到更新信息 Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to set update information to allow for easy updating. AppImage 中未找到更新信息: %1 此 AppImage 不支持更新。请要求作者创建更新信息以便轻松更新。 Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to set upupdate information to allow for easy updating. 无法在 AppImage 中找到更新信息: %1 此 AppImage 不支持更新。请向作者请求设置更新信息以允许轻松更新。 Could not find update information in AppImage: %1 The AppImage doesn't support updating. Please ask the authors to embed update information to allow for easy updating. 无法获取Appimage内的升级信息。 %1 此Appimage不支持升级。为了轻松升级,请联系作者在Appimage内添加升级信息。 Failed to check for updates: %1 检查更新失败: %1 An update has been found for the AppImage %1 已发现 AppImage %1 的一个更新 Do you want to perform the update? 你想要执行更新吗? Remove old AppImage after successful update 更新成功后移除旧 AppImage Failed to update AppImage: %1 更新 AppImage 失败: %1 File reported as updated does not exist: %1 报告为已更新的文件不存在: %1 Failed to register updated AppImage in system 未能在系统中注册已更新 AppImage Failed to unregister old AppImage in system 未能在系统中注销旧 AppImage Failed to remove old AppImage 移除旧 AppImage 失败 Tracks AppImages in applications directories (user's, system and other ones). Automatically integrates AppImages moved into those directories and unintegrates ones removed from them. 在应用程序文件夹(用户,系统和其他目录)中跟踪 AppImage。 自动集成移动到这些文件夹中的 AppImage,并取消集成从其中删除的 AppImage。 Lists directories watched by this daemon and exit 列出此守护程序监视的文件夹并退出 RemoveDialog Please confirm 请确认 <html><head/><body><p>Are you sure you want to remove this AppImage?</body></html> <html><head/><body><p>您确定要移除此 AppImage 吗?</body></html> Delete AppImage 删除 AppImage <html><head/><body><p>Are you sure you want to delete this AppImage?</p></body></html> <html><head/><body><p>您确定要删除此 AppImage 吗?</p></body></html> %1 %1 <html><head/><body><p>Uncheck to only remove the desktop integration, but leave the file on the system.</p></body></html> <html><head/><body><p>取消勾选则仅删除桌面集成,但将文件保留在系统上。</p></body></html> Remove AppImage file from system 从系统中移除 AppImage 文件 SettingsDialog AppImageLauncher Settings AppImageLauncher 设置 Launcher Dialog 启动器对话框 Ask whether to move AppImage files into the applications directory 询问是否将 AppImage 文件移动到应用程序文件夹中 General settings 通用设置 <html><head/><body><p>When this box is checked, AppImageLauncher automatically starts a daemon called appimagelauncherd.</p><p>This daemon automatically integrates AppImages you copy into the &quot;Applications directory&quot; and the additional directories you configured. When the files are deleted, the daemon will clean up the integration data.</p></body></html> <html><head/><body><p>选中此框后,AppImageLauncher 会自动启动一个名为 appimagelauncherd 的守护程序。</p><p>此守护程序自动集成复制到 &quot;Applications 文件夹&quot;及其它您配置的文件夹中的 AppImage。删除文件后,守护程序将清除集成数据。</p></body></html> Auto start auto-integration daemon 自动启动自动集成守护程序 Additional directories to watch 要监视的其文件夹 Add new directory to list 向列表中添加新的文件夹 Remove selected directory from list 从列表中删除选定的文件夹 Applications directory path 应用程序文件夹路径 Location where to store your AppImage files to ease their management 存储 AppImage 文件以简化其管理的位置 Available Features 可用功能 updater available for AppImages supporting AppImageUpdate 可用于支持 AppImageUpdate 的 AppImage 的更新程序 updater unavailable 有可用更新 <strong>Note: this is an AppImageLauncher Lite build, only supports a limited set of features</strong><br />Please install the full version via the provided native packages to enjoy the full AppImageLauncher experience <strong>注意:这是一个 AppImageLauncher Lite 版本,仅支持有限的功能集</strong><br />请通过提供的原生软件包安装完整版,以享受完整的 AppImageLauncher 体验 Select Applications directory 选择应用程序文件夹 Select additional directory to watch 选择监视的其他文件夹 ================================================ FILE: resources/AppImageLauncher.1.in ================================================ .\" Manpage for AppImageLauncher. .\" Contact theassassin@assassinate-you.net to correct errors or typos. .TH man 1 "28 February 2019" "@APPIMAGELAUNCHER_VERSION@" "AppImageLauncher man page" .SH NAME AppImageLauncher \- Desktop integration helper for AppImages, for use by Linux distributions. .SH SYNOPSIS AppImageLauncher [PATH] .SH DESCRIPTION Helper application for Linux distributions serving as a kind of "entry point" for running and integrating AppImages. AppImage provides a way for upstream developers to provide “native” binaries for Linux users just the same way they could do for other operating systems. It allows for packaging applications for any common Linux based operating system, e.g., Debian. AppImages come with all dependencies that cannot be assumed to be part of each target system in a recent enough version and will run on most Linux distributions without further modifications. AppImageLauncher makes your Linux desktop AppImage ready™. You can integrate AppImages with a single mouse click, and manage them from your application launcher. Install AppImageLauncher today for your distribution and enjoy using AppImages as easy as never before! .SH OPTIONS .IP --appimagelauncher-help Display this help and exit .IP --appimagelauncher-version Display version and exit .SH ARGUMENTS Path to AppImage (mandatory) .SH BUGS No known bugs. .SH AUTHOR TheAssassin ================================================ FILE: resources/CMakeLists.txt ================================================ # install configs for resource files # we depend on GNUInstallDirs, so let's make sure it's been loaded include(GNUInstallDirs) # debugging: should be share message(STATUS "CMAKE_INSTALL_DATADIR: ${CMAKE_INSTALL_DATADIR}") install( DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/mime DESTINATION ${CMAKE_INSTALL_DATADIR} COMPONENT APPIMAGELAUNCHER ) install( DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/icons/hicolor DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/ COMPONENT APPIMAGELAUNCHER ) install( FILES ${CMAKE_CURRENT_SOURCE_DIR}/appimagelauncher.desktop ${CMAKE_CURRENT_SOURCE_DIR}/appimagelaunchersettings.desktop ${CMAKE_CURRENT_SOURCE_DIR}/appimagelauncherd.desktop ${CMAKE_CURRENT_SOURCE_DIR}/ail-cli.desktop DESTINATION ${CMAKE_INSTALL_DATADIR}/applications COMPONENT APPIMAGELAUNCHER ) install( DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/fallback-icons DESTINATION ${CMAKE_INSTALL_DATADIR}/appimagelauncher COMPONENT APPIMAGELAUNCHER ) # we also need to copy the files into the binary dir to make their path predictable relative to the binary's location file( COPY "${CMAKE_CURRENT_SOURCE_DIR}/fallback-icons" DESTINATION "${CMAKE_CURRENT_BINARY_DIR}" ) set(INSTALL_MAINTAINER_SCRIPTS OFF CACHE BOOL "") # install maintainer scripts that distro packagers might find useful if (INSTALL_MAINTAINER_SCRIPTS) message(STATUS "Installing maintainer scripts") set(install_maintainer_scripts_dir ${PROJECT_BINARY_DIR}/cmake/install-maintainer-scripts/) configure_file( ${PROJECT_SOURCE_DIR}/resources/install-scripts/post-install.in ${install_maintainer_scripts_dir}/post-install @ONLY ) configure_file( ${PROJECT_SOURCE_DIR}/resources/install-scripts/post-uninstall.in ${install_maintainer_scripts_dir}/post-uninstall @ONLY ) install( FILES ${install_maintainer_scripts_dir}/post-install ${install_maintainer_scripts_dir}/post-uninstall DESTINATION ${CMAKE_INSTALL_DATADIR}/appimagelauncher/maintainer-scripts ) endif() # install man page set(INSTALL_MAN_PAGE ON CACHE BOOL "") if(INSTALL_MAN_PAGE) set(configured_man_page_path ${PROJECT_BINARY_DIR}/cmake/man/AppImageLauncher.1) configure_file( ${PROJECT_SOURCE_DIR}/resources/AppImageLauncher.1.in ${configured_man_page_path} ) install( FILES ${configured_man_page_path} DESTINATION share/man/man1 COMPONENT APPIMAGELAUNCHER ) endif() ================================================ FILE: resources/ail-cli.desktop ================================================ [Desktop Entry] Version=1.0 Type=Application Exec=ail-cli Name=AppImageLauncher CLI Icon=AppImageLauncher Terminal=false Categories=Utility; NoDisplay=true X-AppImage-Integrate=false StartupWMClass=AppImageLauncher ================================================ FILE: resources/appimagelauncher-lite-AppRun.sh ================================================ #! /bin/bash set -e if [[ "$VERBOSE" != "" ]]; then set -x fi # shift does not work if no arguments have been passed, therefore we just handle that situation right now if [[ "$1" == "" ]]; then echo "Error: no option passed, use --help for more information" exit 2 fi firstarg="$1" shift # ensure this important variable is available, as most operations (except for install) can be done without being run # from via AppImage runtime (e.g., while the AppImage is extracted, which is great for testing) export APPDIR=${APPDIR:-$(readlink -f $(dirname "$0"))} # import common script code source "$APPDIR"/appimagelauncher-lite-installer-common.sh print_help() { echo "Usage: $0