Compare commits

..

2 Commits

Author SHA1 Message Date
Geoffrey Coulaud
3df85e9443 Merge pull request #120 from kra-mo/initial-gamepad-support
initial work on controller support
2023-06-29 13:24:31 +02:00
GeoffreyCoulaud
2d72f22bbf 🚧 initial work on controller support 2023-06-29 12:48:51 +02:00
158 changed files with 9885 additions and 25765 deletions

2
.github/FUNDING.yml vendored
View File

@@ -1,2 +0,0 @@
github: [kra-mo]
liberapay: kramo

View File

@@ -23,9 +23,6 @@ A clear and concise description of what you expected to happen.
**Screenshots**
If applicable, add screenshots to help explain your problem.
**Logs**
If applicable, attatch your logs from `Main Menu > About Cartridges > Troubleshooting > Debugging Information` to the issue.
**System (please complete the following information):**
- OS: [e.g. Fedora Linux]
- Installation method [e.g. Flatpak]

View File

@@ -1,99 +0,0 @@
name: CI
on:
push:
branches: [main]
pull_request:
concurrency:
group: release-${{ github.sha }}
jobs:
flatpak:
name: Flatpak
runs-on: ubuntu-latest
container:
image: bilelmoussaoui/flatpak-github-actions:gnome-47
options: --privileged
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Flatpak Builder
uses: flatpak/flatpak-github-actions/flatpak-builder@v6.5
with:
bundle: page.kramo.Cartridges.Devel.flatpak
manifest-path: build-aux/flatpak/page.kramo.Cartridges.Devel.json
windows:
name: Windows
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup MSYS2
uses: msys2/setup-msys2@v2
with:
msystem: UCRT64
update: true
install: mingw-w64-ucrt-x86_64-gtk4 mingw-w64-ucrt-x86_64-libadwaita mingw-w64-ucrt-x86_64-python-gobject mingw-w64-ucrt-x86_64-python-yaml mingw-w64-ucrt-x86_64-python-requests mingw-w64-ucrt-x86_64-python-pillow mingw-w64-ucrt-x86_64-desktop-file-utils mingw-w64-ucrt-x86_64-ca-certificates mingw-w64-ucrt-x86_64-meson git
- name: Compile
shell: msys2 {0}
run: |
meson setup _build
ninja -C _build install
pacman --noconfirm -Rs mingw-w64-ucrt-x86_64-desktop-file-utils mingw-w64-ucrt-x86_64-meson git
- name: Test
shell: msys2 {0}
run: |
set +e
timeout 2 cartridges; [ "$?" -eq "124" ]
- name: Inno Setup
run: iscc ".\_build\build-aux\windows\Cartridges.iss"
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: Windows Installer
path: _build/build-aux/windows/Output/Cartridges Windows.exe
macos:
name: macOS
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Homebrew
id: set-up-homebrew
uses: Homebrew/actions/setup-homebrew@master
- name: Install Dependencies
run: |
brew install meson pygobject3 libadwaita adwaita-icon-theme desktop-file-utils pyinstaller pillow
pip3 install --break-system-packages requests PyYAML
- name: Meson Build
run: |
meson setup _build -Dtiff_compression=jpeg
ninja install -C _build
- name: PyInstaller
env:
PYTHONPATH: /opt/homebrew/opt/homebrew/lib/python3.12/site-packages
run: |
cd build-aux/macos
pyinstaller ./cartridges.spec
- name: Zip
run: |
cd build-aux/macos/dist
zip -yr Cartridges\ macOS.zip Cartridges.app
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
path: build-aux/macos/dist/Cartridges macOS.zip
name: macOS Application

19
.github/workflows/flatpak-builder.yml vendored Normal file
View File

@@ -0,0 +1,19 @@
on:
push:
branches: [main]
pull_request:
name: CI
jobs:
flatpak:
name: "Flatpak"
runs-on: ubuntu-latest
container:
image: bilelmoussaoui/flatpak-github-actions:gnome-44
options: --privileged
steps:
- uses: actions/checkout@v3
- uses: flatpak/flatpak-github-actions/flatpak-builder@v6
with:
bundle: hu.kramo.Cartridges.Devel.flatpak
manifest-path: flatpak/hu.kramo.Cartridges.Devel.json
cache-key: flatpak-builder-${{ github.sha }}

View File

@@ -1,48 +0,0 @@
name: Publish Release
on:
push:
tags: "*"
concurrency:
group: release-${{ github.sha }}
jobs:
publish-release:
name: Publish Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download workflow artifact
uses: dawidd6/action-download-artifact@v9
with:
workflow: ci.yml
commit: ${{ github.sha }}
- name: Get release notes
shell: python
run: |
import re, textwrap
open_file = open("./data/page.kramo.Cartridges.metainfo.xml.in", "r", encoding="utf-8")
string = open_file.read()
open_file.close()
string = re.findall("<release.*>\s*<description.*>\n([\s\S]*?)\s*</description>\s*<\/release>", string)[0]
string = textwrap.dedent(string)
open_file = open("release_notes", "w", encoding="utf-8")
open_file.write(string)
open_file.close()
- name: Get tag name
id: get_tag_name
run: echo tag_name=${GITHUB_REF#refs/tags/} >> $GITHUB_OUTPUT
- name: Publish release
uses: softprops/action-gh-release@v2.2.2
with:
files: |
Windows Installer/Cartridges Windows.exe
macOS Application/Cartridges macOS.zip
fail_on_unmatched_files: true
tag_name: ${{ steps.get_tag_name.outputs.tag_name }}
body_path: release_notes

32
.github/workflows/windows.yml vendored Normal file
View File

@@ -0,0 +1,32 @@
on:
push:
branches: [main]
pull_request:
name: "Build for Windows"
jobs:
windows:
name: "Build"
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: MSYS2
uses: msys2/setup-msys2@v2
with:
msystem: UCRT64
update: true
install: mingw-w64-ucrt-x86_64-gtk4 mingw-w64-ucrt-x86_64-libadwaita mingw-w64-ucrt-x86_64-python-gobject mingw-w64-ucrt-x86_64-python-yaml mingw-w64-ucrt-x86_64-python-requests mingw-w64-ucrt-x86_64-python-pillow mingw-w64-ucrt-x86_64-desktop-file-utils mingw-w64-ucrt-x86_64-ca-certificates mingw-w64-ucrt-x86_64-meson git
- name: Compile
shell: msys2 {0}
run: |
meson setup _build
ninja -C _build install
pacman --noconfirm -Rs mingw-w64-ucrt-x86_64-desktop-file-utils mingw-w64-ucrt-x86_64-meson git
find /ucrt64/share/locale/ -type f ! -name "*cartridges.mo" -delete
- name: "Inno Setup"
run: iscc ".\_build\Cartridges.iss"
- name: "Upload Artifact"
uses: actions/upload-artifact@v3
with:
name: "Installer"
path: "_build/Output/Cartridges Setup.exe"

7
.gitignore vendored
View File

@@ -1,9 +1,4 @@
build-aux/flatpak/page.kramo.Cartridges.json
/subprojects/blueprint-compiler
/build-aux/macos/build
/build-aux/macos/dist
/.flatpak
/.flatpak-builder
/.vscode
.DS_Store
.prettierignore
/.vscode

View File

@@ -1,3 +1,3 @@
The project follows the [GNOME Code of Conduct](https://conduct.gnome.org/).
The project follows the [GNOME Code of Conduct](https://wiki.gnome.org/Foundation/CodeOfConduct).
If you believe that someone is violating the Code of Conduct, or have any other concerns, please contact us via [cartridges-community@kramo.page](mailto:cartridges-community@kramo.page).
If you believe that someone is violating the Code of Conduct, or have any other concerns, please contact us via [cartridges-community@kramo.hu](mailto:cartridges-community@kramo.hu).

View File

@@ -1,14 +1,7 @@
# Contributing
## Code
Be sure to follow the [code style](#code-style) of the project.
### Adding a feature
[Create an issue](https://git.kramo.page/cartridges/issues/new) or join the [Discord](https://discord.gg/yrJfddyt56) to discuss it with the maintainers. We will provide additional guidance.
### Fixing a bug
Fork the repository, make your changes, then create a pull request. Be sure to mention the issue you're fixing if one was already open.
Fork the repository, make your changes, then create a pull request.
## Translations
### Weblate
@@ -24,44 +17,19 @@ The project can be translated on [Weblate](https://hosted.weblate.org/engage/car
# Building
## GNOME Builder
1. Install [GNOME Builder](https://flathub.org/apps/org.gnome.Builder).
2. Click "Clone Repository" with `https://git.kramo.page/cartridges.git` as the URL.
1. Install [GNOME Builder](https://flathub.org/apps/details/org.gnome.Builder).
2. Click "Clone Repository" with `https://github.com/kra-mo/cartridges.git` as the URL.
3. Click on the build button (hammer) at the top.
## For Windows
1. Install [MSYS2](https://www.msys2.org/).
2. From the MSYS2 shell, install the required dependencies listed [here](https://github.com/kra-mo/cartridges/blob/main/.github/workflows/ci.yml).
3. Build it via Meson.
## For macOS
1. Install [Homebrew](https://brew.sh/).
2. Using `brew` and `pip3`, install the required dependencies listed [here](https://github.com/kra-mo/cartridges/blob/main/.github/workflows/ci.yml).
2. From the MSYS2 shell, install the required dependencies listed [here](https://github.com/kra-mo/cartridges/blob/main/.github/workflows/windows.yml).
3. Build it via Meson.
## Meson
```bash
git clone https://git.kramo.page/cartridges.git
git clone https://github.com/kra-mo/cartridges.git
cd cartridges
meson setup build
ninja -C build install
```
# Code style
All code is auto-formatted with [Black](https://github.com/psf/black) and linted with [Pylint](https://github.com/pylint-dev/pylint). Imports are sorted by [isort](https://github.com/pycqa/isort).
VSCode extensions are available for all of these and you can set them up with the following `settings.json` configuration:
```json
"python.formatting.provider": "none",
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
},
"isort.args":["--profile", "black"],
```
For other code editors, you can install them via `pip` and invoke them from the command line.

View File

@@ -1,108 +1,89 @@
[circle-url]: https://circle.gnome.org
[circle-image]: https://circle.gnome.org/assets/button/badge.svg
[weblate-url]: https://hosted.weblate.org/engage/cartridges/
[weblate-image]: https://hosted.weblate.org/widgets/cartridges/-/cartridges/svg-badge.svg
[discord-url]: https://discord.gg/yrJfddyt56
[discord-image]: https://img.shields.io/discord/1088155799299313754?color=%235865F2&label=discord&logo=discord&logoColor=%23FFFFFF&style=for-the-badge
[flathub-url]: https://flathub.org/apps/page.kramo.Cartridges
[flathub-image]: https://img.shields.io/flathub/v/page.kramo.Cartridges?logo=flathub&style=for-the-badge
[installs-image]: https://img.shields.io/flathub/downloads/page.kramo.Cartridges?style=for-the-badge
> [!IMPORTANT]
> Please use [Codeberg](https://codeberg.org/kramo/cartridges) for issues and pull requests.
> The GitHub repository is a [mirror](https://en.wikipedia.org/wiki/Mirror_site).
<div align="center">
<img src="data/icons/hicolor/scalable/apps/page.kramo.Cartridges.svg" width="128" height="128">
<img src="data/icons/hicolor/scalable/apps/hu.kramo.Cartridges.svg" width="128" height="128">
# Cartridges
# Cartridges
A GTK4 + Libadwaita game launcher
A GTK4 + Libadwaita game launcher
[![GNOME Circle][circle-image]][circle-url]
[![Flathub][flathub-image]][flathub-url]
[![Build status][github-actions-image]][github-actions-url]
[![Translation Status][weblate-image]][weblate-url]
[![License][license-image]][license-url]
[![Code style][code-style-image]][code-style-url]
[![Discord][discord-image]][discord-url]
[![GNOME Circle][circle-image]][circle-url]
[![Translation Status][weblate-image]][weblate-url]
[![Flathub][flathub-image]][flathub-url]
[![Discord][discord-image]][discord-url]
[![Installs][installs-image]][flathub-url]
[circle-url]: https://circle.gnome.org
[circle-image]: https://circle.gnome.org/assets/button/badge.svg
[github-actions-url]: https://github.com/kra-mo/cartridges
[github-actions-image]: https://github.com/kra-mo/cartridges/actions/workflows/flatpak-builder.yml/badge.svg
[license-url]: https://github.com/kra-mo/cartridges/blob/main/LICENSE
[license-image]: https://img.shields.io/github/license/kra-mo/cartridges
[code-style-url]: https://github.com/psf/black
[code-style-image]: https://img.shields.io/badge/code%20style-black-000000?style=flat
[weblate-url]: https://hosted.weblate.org/engage/cartridges/
[weblate-image]: https://hosted.weblate.org/widgets/cartridges/-/cartridges/svg-badge.svg
[discord-url]: https://discord.gg/4KSFh3AmQR
[discord-image]: https://img.shields.io/discord/1088155799299313754?color=%235865F2&label=discord&logo=discord&logoColor=%23FFFFFF
[flathub-url]: https://flathub.org/apps/hu.kramo.Cartridges
[flathub-image]: https://img.shields.io/flathub/v/hu.kramo.Cartridges
<img src="data/screenshots/1.png">
</div>
# The Project
Cartridges is an easy-to-use, elegant game launcher written in Python using GTK4 and Libadwaita.
Cartridges is a simple game launcher written in Python using GTK4 and Libadwaita.
## Features
- Manually adding and editing games
- Importing games from various sources:
- Steam
- Lutris
- Heroic
- Bottles
- itch
- Legendary
- RetroArch
- Flatpak
- Desktop Entries
- Filtering games by source
- Searching and sorting by title, date added and last played
- Importing games from Steam, Lutris, Heroic, Bottles and itch
- Support for multiple Steam install locations
- Hiding games
- Searching and sorting by title, date added and last played
- Automatically downloading cover art from [SteamGridDB](https://www.steamgriddb.com/)
- Searching for games on various databases
- Animated covers
- A search provider for GNOME
For updates and questions, join our [Discord server][discord-url]!
## Donations
I accept donations through [GitHub Sponsors](https://github.com/sponsors/kra-mo) and [Liberapay](https://liberapay.com/kramo).
Thank you for your generosity! 💜
# Installation
## Linux
### Flathub
The app is available on Flathub.
<a href=https://flathub.org/apps/page.kramo.Cartridges><img alt='Download on Flathub' src='https://flathub.org/api/badge?svg&locale=en'/></a>
<a href=https://flathub.org/apps/hu.kramo.Cartridges><img width='240' alt='Download on Flathub' src='https://dl.flathub.org/assets/badges/flathub-badge-en.png'/></a>
## Windows
### From Releases
1. Download the latest release from [GitHub Releases](https://github.com/kra-mo/cartridges/releases).
1. Download the latest release from [Releases](https://github.com/kra-mo/cartridges/releases).
2. Run the downloaded installer.
Note: Windows might present you with a warning when trying to install the app. This is expected, just ignore the warning.
### Winget
Install the latest release with the command: `winget install cartridges`.
## macOS
1. Download the latest release from [GitHub Releases](https://github.com/kra-mo/cartridges/releases).
2. Move the app into your Applications folder.
Note: macOS might tell you that the application could not be checked for malicious software or something similar. In this case, open System Settings > Privacy & Security, scroll down, find the warning about Cartridges and click "Open Anyway". More information can be found [here](https://support.apple.com/en-us/102445).
Install the latest release with the command: `winget install cartridges`.
## Building manually
See [Building](https://codeberg.org/kramo/cartridges/src/branch/main/CONTRIBUTING.md#building).
See [Building](https://github.com/kra-mo/cartridges/blob/main/CONTRIBUTING.md#building).
# Contributing
See [CONTRIBUTING.md](https://codeberg.org/kramo/cartridges/src/branch/main/CONTRIBUTING.md).
See [CONTRIBUTING.md](https://github.com/kra-mo/cartridges/blob/main/CONTRIBUTING.md).
Thanks to [Weblate](https://weblate.org/) for hosting our translations!
# Code of Conduct
The project follows the [GNOME Code of Conduct](https://conduct.gnome.org/).
The project follows the [GNOME Code of Conduct](https://wiki.gnome.org/Foundation/CodeOfConduct).
Cartridges' contributors stand with Palestine, Ukraine and all other victims of imperialism and war, and believe trans rights are human rights. If this bothers you, this is probably not the best project for you to contribute to.
See [CODE_OF_CONDUCT.md](https://codeberg.org/kramo/cartridges/src/branch/main/CODE_OF_CONDUCT.md).
See [CODE_OF_CONDUCT.md](https://github.com/kra-mo/cartridges/blob/main/CODE_OF_CONDUCT.md).

View File

@@ -1,122 +0,0 @@
{
"id": "page.kramo.Cartridges.Devel",
"runtime": "org.gnome.Platform",
"runtime-version": "49",
"sdk": "org.gnome.Sdk",
"command": "cartridges",
"finish-args": [
"--share=network",
"--share=ipc",
"--socket=fallback-x11",
"--device=dri",
"--socket=wayland",
"--talk-name=org.freedesktop.Flatpak",
"--filesystem=host",
"--filesystem=~/.var/app/com.valvesoftware.Steam/data/Steam/:ro",
"--filesystem=~/.var/app/net.lutris.Lutris/:ro",
"--filesystem=~/.var/app/com.heroicgameslauncher.hgl/config/heroic/:ro",
"--filesystem=~/.var/app/com.heroicgameslauncher.hgl/config/legendary/:ro",
"--filesystem=~/.var/app/com.usebottles.bottles/data/bottles/:ro",
"--filesystem=~/.var/app/io.itch.itch/config/itch/:ro",
"--filesystem=~/.var/app/org.libretro.RetroArch/config/retroarch/:ro",
"--filesystem=/var/lib/flatpak/app:ro",
"--filesystem=/var/lib/flatpak/exports:ro",
"--filesystem=xdg-data/flatpak/app:ro",
"--filesystem=xdg-data/flatpak/exports:ro"
],
"cleanup": [
"/include",
"/lib/pkgconfig",
"/man",
"/share/doc",
"/share/gtk-doc",
"/share/man",
"/share/pkgconfig",
"*.la",
"*.a"
],
"modules": [
{
"name": "python3-modules",
"buildsystem": "simple",
"build-commands": [],
"modules": [
{
"name": "python3-pyyaml",
"buildsystem": "simple",
"build-commands": [
"pip3 install --verbose --exists-action=i --no-index --find-links=\"file://${PWD}\" --prefix=${FLATPAK_DEST} \"pyyaml\" --no-build-isolation"
],
"sources": [
{
"type": "file",
"url": "https://files.pythonhosted.org/packages/54/ed/79a089b6be93607fa5cdaedf301d7dfb23af5f25c398d5ead2525b063e17/pyyaml-6.0.2.tar.gz",
"sha256": "d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e"
}
]
},
{
"name": "python3-pillow",
"buildsystem": "simple",
"build-commands": [
"pip3 install --verbose --exists-action=i --no-index --find-links=\"file://${PWD}\" --prefix=${FLATPAK_DEST} \"pillow\" --no-build-isolation"
],
"sources": [
{
"type": "file",
"url": "https://files.pythonhosted.org/packages/f3/0d/d0d6dea55cd152ce3d6767bb38a8fc10e33796ba4ba210cbab9354b6d238/pillow-11.3.0.tar.gz",
"sha256": "3828ee7586cd0b2091b6209e5ad53e20d0649bbe87164a459d0676e035e8f523"
}
]
},
{
"name": "python3-requests",
"buildsystem": "simple",
"build-commands": [
"pip3 install --verbose --exists-action=i --no-index --find-links=\"file://${PWD}\" --prefix=${FLATPAK_DEST} \"requests\" --no-build-isolation"
],
"sources": [
{
"type": "file",
"url": "https://files.pythonhosted.org/packages/e5/48/1549795ba7742c948d2ad169c1c8cdbae65bc450d6cd753d124b17c8cd32/certifi-2025.8.3-py3-none-any.whl",
"sha256": "f6c12493cfb1b06ba2ff328595af9350c65d6644968e5d3a2ffd78699af217a5"
},
{
"type": "file",
"url": "https://files.pythonhosted.org/packages/83/2d/5fd176ceb9b2fc619e63405525573493ca23441330fcdaee6bef9460e924/charset_normalizer-3.4.3.tar.gz",
"sha256": "6fce4b8500244f6fcb71465d4a4930d132ba9ab8e71a7859e6a5d59851068d14"
},
{
"type": "file",
"url": "https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl",
"sha256": "946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3"
},
{
"type": "file",
"url": "https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl",
"sha256": "2462f94637a34fd532264295e186976db0f5d453d1cdd31473c85a6a161affb6"
},
{
"type": "file",
"url": "https://files.pythonhosted.org/packages/a7/c2/fe1e52489ae3122415c51f387e221dd0773709bad6c6cdaa599e8a2c5185/urllib3-2.5.0-py3-none-any.whl",
"sha256": "e6b01673c0fa6a13e374b50871808eb3bf7046c4b125b216f6bf1cc604cff0dc"
}
]
}
]
},
{
"name": "cartridges",
"builddir": true,
"buildsystem": "meson",
"run-tests": true,
"config-opts": ["-Dprofile=development"],
"sources": [
{
"type": "dir",
"path": "../.."
}
]
}
]
}

View File

@@ -1,59 +0,0 @@
# -*- mode: python ; coding: utf-8 -*-
a = Analysis(
["../../_build/cartridges/cartridges"],
pathex=[],
binaries=[],
datas=[("../../_build/data/cartridges.gresource", "Resources")],
hiddenimports=[],
hookspath=[],
hooksconfig={
"gi": {
"module-versions": {
"Gtk": "4.0",
},
},
},
runtime_hooks=[],
excludes=[],
noarchive=False,
optimize=0,
)
pyz = PYZ(a.pure)
exe = EXE(
pyz,
a.scripts,
[],
exclude_binaries=True,
name="Cartridges",
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
console=False,
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
)
coll = COLLECT(
exe,
a.binaries,
a.datas,
strip=False,
upx=True,
upx_exclude=[],
name="Cartridges",
)
app = BUNDLE(
coll,
name="Cartridges.app",
icon="./icon.icns",
bundle_identifier="page.kramo.Cartridges",
info_plist={
"LSApplicationCategoryType": "public.app-category.games",
},
)

Binary file not shown.

View File

@@ -1,7 +0,0 @@
configure_file(
input: './Cartridges.iss.in',
output: 'Cartridges.iss',
configuration: conf,
install: true,
install_dir: '.',
)

View File

@@ -11,9 +11,9 @@
Cartridges is a simple game launcher for all of your games. It has support for importing games from Steam, Lutris, Heroic and more with no login necessary. You can sort and hide games or download cover art from SteamGridDB.
</description>
<homepage rdf:resource="https://git.kramo.page/cartridges" />
<download-page rdf:resource="https://git.kramo.page/cartridges" />
<bug-database rdf:resource="https://git.kramo.page/cartridges/issues" />
<homepage rdf:resource="https://github.com/kra-mo/cartridges" />
<download-page rdf:resource="https://github.com/kra-mo/cartridges" />
<bug-database rdf:resource="https://github.com/kra-mo/cartridges/issues" />
<programming-language>Python</programming-language>
<platform>GTK 4</platform>
@@ -22,20 +22,14 @@ Cartridges is a simple game launcher for all of your games. It has support for i
<maintainer>
<foaf:Person>
<foaf:name>kramo</foaf:name>
<foaf:mbox rdf:resource="mailto:contact@kramo.page" />
<foaf:mbox rdf:resource="mailto:contact@kramo.hu" />
<foaf:account>
<foaf:OnlineAccount>
<foaf:accountServiceHomepage rdf:resource="https://github.com"/>
<foaf:accountName>kra-mo</foaf:accountName>
</foaf:OnlineAccount>
</foaf:account>
<foaf:account>
<foaf:OnlineAccount>
<foaf:accountServiceHomepage rdf:resource="https://gitlab.gnome.org"/>
<foaf:accountName>kramo</foaf:accountName>
</foaf:OnlineAccount>
</foaf:account>
</foaf:Person>
</maintainer>
</Project>
</Project>

View File

@@ -1,223 +0,0 @@
# desktop_source.py
#
# Copyright 2023 kramo
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# SPDX-License-Identifier: GPL-3.0-or-later
import os
import shlex
import subprocess
from pathlib import Path
from typing import NamedTuple
from gi.repository import GLib, Gtk
from cartridges import shared
from cartridges.game import Game
from cartridges.importer.source import Source, SourceIterable
class DesktopSourceIterable(SourceIterable):
source: "DesktopSource"
def __iter__(self):
"""Generator method producing games"""
icon_theme = Gtk.IconTheme.new()
search_paths = [
shared.host_data_dir,
"/run/host/usr/local/share",
"/run/host/usr/share",
"/run/host/usr/share/pixmaps",
"/usr/share/pixmaps",
] + GLib.get_system_data_dirs()
for search_path in search_paths:
path = Path(search_path)
if not str(search_path).endswith("/pixmaps"):
path = path / "icons"
if not path.is_dir():
continue
if str(path).startswith("/app/"):
continue
icon_theme.add_search_path(str(path))
launch_command, full_path = self.check_launch_commands()
for path in search_paths:
if str(path).startswith("/app/"):
continue
path = Path(path) / "applications"
if not path.is_dir():
continue
for entry in path.iterdir():
if entry.suffix != ".desktop":
continue
# Skip Lutris games
if str(entry.name).startswith("net.lutris."):
continue
keyfile = GLib.KeyFile.new()
try:
keyfile.load_from_file(str(entry), 0)
if "Game" not in keyfile.get_string_list(
"Desktop Entry", "Categories"
):
continue
name = keyfile.get_string("Desktop Entry", "Name")
executable = keyfile.get_string("Desktop Entry", "Exec").split(
" %"
)[0]
except GLib.Error:
continue
try:
try_exec = "which " + keyfile.get_string("Desktop Entry", "TryExec")
if not self.check_command(try_exec):
continue
except GLib.Error:
pass
# Skip Steam games
if "steam://rungameid/" in executable:
continue
# Skip Heroic games
if "heroic://launch/" in executable:
continue
# Skip Bottles games
if "bottles-cli " in executable:
continue
try:
if keyfile.get_boolean("Desktop Entry", "NoDisplay"):
continue
except GLib.Error:
pass
try:
if keyfile.get_boolean("Desktop Entry", "Hidden"):
continue
except GLib.Error:
pass
# Strip /run/host from Flatpak paths
if entry.is_relative_to(prefix := "/run/host"):
entry = Path("/") / entry.relative_to(prefix)
launch_arg = shlex.quote(str(entry if full_path else entry.stem))
values = {
"source": self.source.source_id,
"added": shared.import_time,
"name": name,
"game_id": f"desktop_{entry.stem}",
"executable": f"{launch_command} {launch_arg}",
}
game = Game(values)
additional_data = {}
try:
icon_str = keyfile.get_string("Desktop Entry", "Icon")
except GLib.Error:
yield game
continue
else:
if "/" in icon_str:
additional_data = {"local_icon_path": Path(icon_str)}
yield (game, additional_data)
continue
try:
if (
icon_path := icon_theme.lookup_icon(
icon_str,
None,
512,
1,
shared.win.get_direction(),
0,
)
.get_file()
.get_path()
):
additional_data = {"local_icon_path": Path(icon_path)}
except GLib.Error:
pass
yield (game, additional_data)
def check_command(self, command) -> bool:
flatpak_str = "flatpak-spawn --host /bin/sh -c "
if os.getenv("FLATPAK_ID") == shared.APP_ID:
command = flatpak_str + shlex.quote(command)
try:
subprocess.run(command, shell=True, check=True)
except subprocess.CalledProcessError:
return False
return True
def check_launch_commands(self) -> (str, bool):
"""Check whether `gio launch` `gtk4-launch` or `gtk-launch` are available on the system"""
commands = (("gio launch", True), ("gtk4-launch", False), ("gtk-launch", False))
for command, full_path in commands:
# Even if `gio` is available, `gio launch` is only available on GLib >= 2.67.2
command_to_check = (
"gio help launch" if command == "gio launch" else f"which {command}"
)
if self.check_command(command_to_check):
return command, full_path
return commands[2]
class DesktopLocations(NamedTuple):
pass
class DesktopSource(Source):
"""Generic Flatpak source"""
source_id = "desktop"
name = _("Desktop Entries")
iterable_class = DesktopSourceIterable
available_on = {"linux"}
locations: DesktopLocations
def __init__(self) -> None:
super().__init__()
self.locations = DesktopLocations()

View File

@@ -1,173 +0,0 @@
# flatpak_source.py
#
# Copyright 2022-2023 kramo
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# SPDX-License-Identifier: GPL-3.0-or-later
from itertools import chain
from pathlib import Path
from typing import NamedTuple
from gi.repository import GLib, Gtk
from cartridges import shared
from cartridges.game import Game
from cartridges.importer.location import Location, LocationSubPath
from cartridges.importer.source import ExecutableFormatSource, SourceIterable
class FlatpakSourceIterable(SourceIterable):
source: "FlatpakSource"
def __iter__(self):
"""Generator method producing games"""
icon_theme = Gtk.IconTheme.new()
if user_data := self.source.locations.user_data["icons"]:
icon_theme.add_search_path(str(user_data))
if system_data := self.source.locations.system_data["icons"]:
icon_theme.add_search_path(str(system_data))
if not (system_data or user_data):
return
blacklist = (
{
"hu.kramo.Cartridges",
"hu.kramo.Cartridges.Devel",
"page.kramo.Cartridges",
"page.kramo.Cartridges.Devel",
}
if shared.schema.get_boolean("flatpak-import-launchers")
else {
"hu.kramo.Cartridges",
"hu.kramo.Cartridges.Devel",
"page.kramo.Cartridges",
"page.kramo.Cartridges.Devel",
"com.valvesoftware.Steam",
"net.lutris.Lutris",
"com.heroicgameslauncher.hgl",
"com.usebottles.Bottles",
"io.itch.itch",
"org.libretro.RetroArch",
}
)
generators = set(
location.iterdir()
for location in (
self.source.locations.user_data["applications"],
self.source.locations.system_data["applications"],
)
if location
)
for entry in chain(*generators):
if entry.suffix != ".desktop":
continue
keyfile = GLib.KeyFile.new()
try:
keyfile.load_from_file(str(entry), 0)
if "Game" not in keyfile.get_string_list("Desktop Entry", "Categories"):
continue
if (
flatpak_id := keyfile.get_string("Desktop Entry", "X-Flatpak")
) in blacklist or flatpak_id != entry.stem:
continue
name = keyfile.get_string("Desktop Entry", "Name")
except GLib.Error:
continue
values = {
"source": self.source.source_id,
"added": shared.import_time,
"name": name,
"game_id": self.source.game_id_format.format(game_id=flatpak_id),
"executable": self.source.make_executable(flatpak_id=flatpak_id),
}
game = Game(values)
additional_data = {}
try:
if (
icon_path := icon_theme.lookup_icon(
keyfile.get_string("Desktop Entry", "Icon"),
None,
512,
1,
shared.win.get_direction(),
0,
)
.get_file()
.get_path()
):
additional_data = {"local_icon_path": Path(icon_path)}
else:
pass
except GLib.Error:
pass
yield (game, additional_data)
class FlatpakLocations(NamedTuple):
system_data: Location
user_data: Location
class FlatpakSource(ExecutableFormatSource):
"""Generic Flatpak source"""
source_id = "flatpak"
name = _("Flatpak")
iterable_class = FlatpakSourceIterable
executable_format = "flatpak run {flatpak_id}"
available_on = {"linux"}
locations: FlatpakLocations
def __init__(self) -> None:
super().__init__()
self.locations = FlatpakLocations(
Location(
schema_key="flatpak-system-location",
candidates=("/var/lib/flatpak/",),
paths={
"applications": LocationSubPath("exports/share/applications", True),
"icons": LocationSubPath("exports/share/icons", True),
},
invalid_subtitle=Location.DATA_INVALID_SUBTITLE,
optional=True,
),
Location(
schema_key="flatpak-user-location",
candidates=(shared.data_dir / "flatpak",),
paths={
"applications": LocationSubPath("exports/share/applications", True),
"icons": LocationSubPath("exports/share/icons", True),
},
invalid_subtitle=Location.DATA_INVALID_SUBTITLE,
optional=True,
),
)

View File

@@ -1,388 +0,0 @@
# heroic_source.py
#
# Copyright 2022-2023 kramo
# Copyright 2023 Geoffrey Coulaud
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# SPDX-License-Identifier: GPL-3.0-or-later
import json
import logging
from abc import abstractmethod
from functools import cached_property
from hashlib import sha256
from json import JSONDecodeError
from pathlib import Path
from typing import Iterable, NamedTuple, Optional, TypedDict
from cartridges import shared
from cartridges.game import Game
from cartridges.importer.location import Location, LocationSubPath
from cartridges.importer.source import (
SourceIterable,
SourceIterationResult,
URLExecutableSource,
)
def path_json_load(path: Path):
"""
Load JSON from the file at the given path
:raises OSError: if the file can't be opened
:raises JSONDecodeError: if the file isn't valid JSON
"""
with path.open("r", encoding="utf-8") as open_file:
return json.load(open_file)
class InvalidLibraryFileError(Exception):
pass
class InvalidInstalledFileError(Exception):
pass
class InvalidStoreFileError(Exception):
pass
class HeroicLibraryEntry(TypedDict):
app_name: str
installed: Optional[bool]
runner: str
title: str
developer: str
art_square: str
class SubSourceIterable(Iterable):
"""Class representing a Heroic sub-source"""
source: "HeroicSource"
source_iterable: "HeroicSourceIterable"
name: str
service: str
image_uri_params: str = ""
relative_library_path: Path
library_json_entries_key: str = "library"
def __init__(self, source, source_iterable) -> None:
self.source = source
self.source_iterable = source_iterable
@cached_property
def library_path(self) -> Path:
path = self.source.locations.config.root / self.relative_library_path
logging.debug("Using Heroic %s library.json path %s", self.name, path)
return path
def process_library_entry(self, entry: HeroicLibraryEntry) -> SourceIterationResult:
"""Build a Game from a Heroic library entry"""
app_name = entry["app_name"]
runner = entry["runner"]
# Build game
values = {
"source": f"{self.source.source_id}_{self.service}",
"added": shared.import_time,
"name": entry["title"],
"developer": entry.get("developer", None),
"game_id": self.source.game_id_format.format(
service=self.service, game_id=app_name
),
"executable": self.source.make_executable(runner=runner, app_name=app_name),
"hidden": self.source_iterable.is_hidden(app_name),
}
game = Game(values)
# Get the image path from the Heroic cache
# Filenames are derived from the URL that Heroic used to get the file
uri: str = entry["art_square"] + self.image_uri_params
digest = sha256(uri.encode()).hexdigest()
image_path = self.source.locations.config.root / "images-cache" / digest
additional_data = {"local_image_path": image_path}
return (game, additional_data)
def __iter__(self):
"""
Iterate through the games with a generator
:raises InvalidLibraryFileError: on initial call if the library file is bad
"""
try:
iterator = iter(
path_json_load(self.library_path)[self.library_json_entries_key]
)
except (OSError, JSONDecodeError, TypeError, KeyError) as error:
raise InvalidLibraryFileError(
f"Invalid {self.library_path.name}"
) from error
for entry in iterator:
try:
yield self.process_library_entry(entry)
except KeyError as error:
logging.warning(
"Skipped invalid %s game %s",
self.name,
entry.get("app_name", "UNKNOWN"),
exc_info=error,
)
continue
class StoreSubSourceIterable(SubSourceIterable):
"""
Class representing a "store" sub source.
Games can be installed or not, this class does the check accordingly.
"""
relative_installed_path: Path
installed_app_names: set[str]
@cached_property
def installed_path(self) -> Path:
path = self.source.locations.config.root / self.relative_installed_path
logging.debug("Using Heroic %s installed.json path %s", self.name, path)
return path
@abstractmethod
def get_installed_app_names(self) -> set[str]:
"""
Get the sub source's installed app names as a set.
:raises InvalidInstalledFileError: if the installed file data cannot be read
Whenever possible, `__cause__` is set with the original exception
"""
def is_installed(self, app_name: str) -> bool:
return app_name in self.installed_app_names
def process_library_entry(self, entry):
# Skip games that are not installed
app_name = entry["app_name"]
if not self.is_installed(app_name):
logging.warning(
"Skipped %s game %s (%s): not installed",
self.service,
entry["title"],
app_name,
)
return None
# Process entry as normal
return super().process_library_entry(entry)
def __iter__(self):
"""
Iterate through the installed games with a generator
:raises InvalidLibraryFileError: on initial call if the library file is bad
:raises InvalidInstalledFileError: on initial call if the installed file is bad
"""
self.installed_app_names = self.get_installed_app_names()
yield from super().__iter__()
class SideloadIterable(SubSourceIterable):
name = "sideload"
service = "sideload"
relative_library_path = Path("sideload_apps") / "library.json"
library_json_entries_key = "games"
class LegendaryIterable(StoreSubSourceIterable):
name = "legendary"
service = "epic"
image_uri_params = "?h=400&resize=1&w=300"
relative_library_path = Path("store_cache") / "legendary_library.json"
# relative_installed_path = (
# Path("legendary") / "legendaryConfig" / "legendary" / "installed.json"
# )
@cached_property
def installed_path(self) -> Path:
"""Get the right path depending on the Heroic version"""
# TODO after Heroic 2.9 has been out for a while
# We should use the commented out relative_installed_path
# and remove this property override.
heroic_config_path = self.source.locations.config.root
# Heroic >= 2.9
if (path := heroic_config_path / "legendaryConfig").is_dir():
logging.debug("Using Heroic >= 2.9 legendary file")
# Heroic <= 2.8
elif heroic_config_path.is_relative_to(shared.flatpak_dir):
# Heroic flatpak
path = shared.flatpak_dir / "com.heroicgameslauncher.hgl" / "config"
logging.debug("Using Heroic flatpak <= 2.8 legendary file")
else:
# Heroic native
logging.debug("Using Heroic native <= 2.8 legendary file")
path = shared.host_config_dir
path = path / "legendary" / "installed.json"
logging.debug("Using Heroic %s installed.json path %s", self.name, path)
return path
def get_installed_app_names(self):
try:
return set(path_json_load(self.installed_path).keys())
except (OSError, JSONDecodeError, AttributeError) as error:
raise InvalidInstalledFileError(
f"Invalid {self.installed_path.name}"
) from error
class GogIterable(StoreSubSourceIterable):
name = "gog"
service = "gog"
library_json_entries_key = "games"
relative_library_path = Path("store_cache") / "gog_library.json"
relative_installed_path = Path("gog_store") / "installed.json"
def get_installed_app_names(self):
try:
return {
app_name
for entry in path_json_load(self.installed_path)["installed"]
if (app_name := entry.get("appName")) is not None
}
except (OSError, JSONDecodeError, KeyError, AttributeError) as error:
raise InvalidInstalledFileError(
f"Invalid {self.installed_path.name}"
) from error
class NileIterable(StoreSubSourceIterable):
name = "nile"
service = "amazon"
relative_library_path = Path("store_cache") / "nile_library.json"
relative_installed_path = Path("nile_config") / "nile" / "installed.json"
def get_installed_app_names(self):
try:
installed_json = path_json_load(self.installed_path)
return {
app_name
for entry in installed_json
if (app_name := entry.get("id")) is not None
}
except (OSError, JSONDecodeError, AttributeError) as error:
raise InvalidInstalledFileError(
f"Invalid {self.installed_path.name}"
) from error
class HeroicSourceIterable(SourceIterable):
source: "HeroicSource"
hidden_app_names: set[str] = set()
def is_hidden(self, app_name: str) -> bool:
return app_name in self.hidden_app_names
def get_hidden_app_names(self) -> set[str]:
"""Get the hidden app names from store/config.json
:raises InvalidStoreFileError: if the store is invalid for some reason
"""
try:
store = path_json_load(self.source.locations.config["store_config.json"])
self.hidden_app_names = {
app_name
for game in store["games"]["hidden"]
if (app_name := game.get("appName")) is not None
}
except KeyError:
logging.warning('No ["games"]["hidden"] key in Heroic store file')
except (OSError, JSONDecodeError, TypeError) as error:
logging.error("Invalid Heroic store file", exc_info=error)
raise InvalidStoreFileError() from error
def __iter__(self):
"""Generator method producing games from all the Heroic sub-sources"""
self.get_hidden_app_names()
# Get games from the sub sources
for sub_source_class in (
SideloadIterable,
LegendaryIterable,
GogIterable,
NileIterable,
):
sub_source = sub_source_class(self.source, self)
if not shared.schema.get_boolean("heroic-import-" + sub_source.service):
logging.debug("Skipping Heroic %s: disabled", sub_source.service)
continue
try:
sub_source_iterable = iter(sub_source)
yield from sub_source_iterable
except (InvalidLibraryFileError, InvalidInstalledFileError) as error:
logging.error(
"Skipping bad Heroic sub-source %s",
sub_source.service,
exc_info=error,
)
continue
class HeroicLocations(NamedTuple):
config: Location
class HeroicSource(URLExecutableSource):
"""Generic Heroic Games Launcher source"""
source_id = "heroic"
name = _("Heroic")
iterable_class = HeroicSourceIterable
url_format = "heroic://launch/{runner}/{app_name}"
available_on = {"linux", "win32", "darwin"}
locations: HeroicLocations
@property
def game_id_format(self) -> str:
"""The string format used to construct game IDs"""
return self.source_id + "_{service}_{game_id}"
def __init__(self) -> None:
super().__init__()
self.locations = HeroicLocations(
Location(
schema_key="heroic-location",
candidates=(
shared.config_dir / "heroic",
shared.host_config_dir / "heroic",
shared.flatpak_dir
/ "com.heroicgameslauncher.hgl"
/ "config"
/ "heroic",
shared.appdata_dir / "heroic",
shared.app_support_dir / "heroic",
),
paths={
"config.json": LocationSubPath("config.json"),
"store_config.json": LocationSubPath("store/config.json"),
},
invalid_subtitle=Location.CONFIG_INVALID_SUBTITLE,
)
)

View File

@@ -1,445 +0,0 @@
# importer.py
#
# Copyright 2022-2023 kramo
# Copyright 2023 Geoffrey Coulaud
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# SPDX-License-Identifier: GPL-3.0-or-later
import logging
from time import time
from typing import Any, Optional
from gi.repository import Adw, Gio, GLib, Gtk
from cartridges import shared
from cartridges.errors.error_producer import ErrorProducer
from cartridges.errors.friendly_error import FriendlyError
from cartridges.game import Game
from cartridges.importer.location import UnresolvableLocationError
from cartridges.importer.source import Source
from cartridges.store.managers.async_manager import AsyncManager
from cartridges.store.pipeline import Pipeline
# pylint: disable=too-many-instance-attributes
class Importer(ErrorProducer):
"""A class in charge of scanning sources for games"""
progressbar: Gtk.ProgressBar
import_statuspage: Adw.StatusPage
import_dialog: Adw.AlertDialog
summary_toast: Optional[Adw.Toast] = None
sources: set[Source]
n_source_tasks_created: int = 0
n_source_tasks_done: int = 0
n_pipelines_done: int = 0
game_pipelines: set[Pipeline]
removed_game_ids: set[str]
imported_game_ids: set[str]
close_attempt_id: int
def __init__(self) -> None:
super().__init__()
shared.import_time = int(time())
# TODO: make this stateful
shared.store.new_game_ids = set()
shared.store.duplicate_game_ids = set()
self.removed_game_ids = set()
self.imported_game_ids = set()
self.game_pipelines = set()
self.sources = set()
@property
def n_games_added(self) -> int:
return sum(
1 if not (pipeline.game.blacklisted or pipeline.game.removed) else 0
for pipeline in self.game_pipelines
)
@property
def pipelines_progress(self) -> float:
progress = sum(pipeline.progress for pipeline in self.game_pipelines)
try:
progress = progress / len(self.game_pipelines)
except ZeroDivisionError:
progress = 0
return progress # type: ignore
@property
def sources_progress(self) -> float:
try:
progress = self.n_source_tasks_done / self.n_source_tasks_created
except ZeroDivisionError:
progress = 0
return progress
@property
def finished(self) -> bool:
return (
self.n_source_tasks_created == self.n_source_tasks_done
and len(self.game_pipelines) == self.n_pipelines_done
)
def add_source(self, source: Source) -> None:
self.sources.add(source)
def run(self) -> None:
"""Use several Gio.Task to import games from added sources"""
shared.win.get_application().state = shared.AppState.IMPORT
if self.__class__.summary_toast:
self.__class__.summary_toast.dismiss()
shared.win.get_application().lookup_action("import").set_enabled(False)
shared.win.get_application().lookup_action("add_game").set_enabled(False)
shared.win.get_application().lookup_action("preferences").set_enabled(False)
self.n_pipelines_done = 0
self.n_source_tasks_done = 0
self.create_dialog()
GLib.timeout_add(100, self.monitor_import)
GLib.timeout_add(100, self.__watchdog)
# Collect all errors and reset the cancellables for the managers
# - Only one importer exists at any given time
# - Every import starts fresh
self.collect_errors()
for manager in shared.store.managers.values():
manager.collect_errors()
if isinstance(manager, AsyncManager):
manager.reset_cancellable()
for source in self.sources:
logging.debug("Importing games from source %s", source.source_id)
task = Gio.Task.new(None, None, self.source_callback, (source,))
self.n_source_tasks_created += 1
task.run_in_thread(
lambda _task,
_obj,
_data,
_cancellable,
src=source: self.source_task_thread_func((src,))
)
# Workaround: Adw bug: Dialog won't close if closed too soon after opening
def __watchdog(self) -> bool:
"""Make sure import dialog closes when import is finished"""
if not self.finished:
return True
self.import_dialog.force_close()
return shared.win.get_visible_dialog() == self.import_dialog
def monitor_import(self) -> bool:
"""Monitor import progress to update dialog and to trigger import cleanup
once the work has finished"""
if not self.finished:
self.update_progressbar()
return True
self.finish_import()
return False
def finish_import(self) -> None:
"""Callback called when importing has finished"""
logging.info("Import done")
self.remove_games()
self.imported_game_ids = shared.store.new_game_ids
shared.store.new_game_ids = set()
shared.store.duplicate_game_ids = set()
# Disconnect the close-attempt signal that closes the main window
self.import_dialog.disconnect(self.close_attempt_id)
# Workaround: Dialog won't close if closed too soon after opening.
self.import_dialog.force_close()
self.__class__.summary_toast = self.create_summary_toast()
self.create_error_dialog()
shared.win.get_application().lookup_action("import").set_enabled(True)
shared.win.get_application().lookup_action("add_game").set_enabled(True)
shared.win.get_application().lookup_action("preferences").set_enabled(True)
shared.win.get_application().state = shared.AppState.DEFAULT
shared.win.create_source_rows()
def remove_games(self) -> None:
"""Set removed to True for missing games"""
if not shared.schema.get_boolean("remove-missing"):
return
keys = shared.schema.list_keys()
for game in shared.store:
if game.removed:
continue
if game.source == "imported":
continue
if (game.base_source in keys) and (
not shared.schema.get_boolean(game.base_source)
):
continue
if game.game_id in shared.store.duplicate_game_ids:
continue
if game.game_id in shared.store.new_game_ids:
continue
logging.debug("Removing missing game %s (%s)", game.name, game.game_id)
game.removed = True
game.save()
game.update()
self.removed_game_ids.add(game.game_id)
"""Import Actions — Threaded; None of this should touch GUI"""
def source_task_thread_func(self, data: tuple) -> None:
"""Source import task code"""
source: Source
source, *_rest = data
# Early exit if not available or not installed
if not source.is_available:
logging.info("Source %s skipped, not available", source.source_id)
return
try:
iterator = iter(source)
except UnresolvableLocationError:
logging.info("Source %s skipped, bad location", source.source_id)
return
# Get games from source
logging.info("Scanning source %s", source.source_id)
while True:
# Handle exceptions raised when iterating
try:
iteration_result = next(iterator)
except StopIteration:
break
except Exception as error: # pylint: disable=broad-exception-caught
logging.exception("%s in %s", type(error).__name__, source.source_id)
self.report_error(error)
continue
# Handle the result depending on its type
if isinstance(iteration_result, Game):
game = iteration_result
additional_data = {}
elif isinstance(iteration_result, tuple):
game, additional_data = iteration_result
elif iteration_result is None:
continue
else:
# Warn source implementers that an invalid type was produced
# Should not happen on production code
logging.warning(
"%s produced an invalid iteration return type %s",
source.source_id,
type(iteration_result),
)
continue
# Register game
pipeline: Pipeline = shared.store.add_game(game, additional_data)
if pipeline is not None:
logging.info("Imported %s (%s)", game.name, game.game_id)
pipeline.connect(
"advanced",
self.pipeline_advanced_callback,
)
self.game_pipelines.add(pipeline)
def source_callback(self, _obj: Any, _result: Any, data: tuple) -> None:
"""Callback executed when a source is fully scanned"""
source, *_rest = data
logging.debug("Import done for source %s", source.source_id)
self.n_source_tasks_done += 1
def pipeline_advanced_callback(self, pipeline: Pipeline) -> None:
"""Callback called when a pipeline for a game has advanced"""
if pipeline.is_done:
self.n_pipelines_done += 1
"""GUI Actions"""
def create_dialog(self) -> None:
"""Create the import dialog"""
self.progressbar = Gtk.ProgressBar(margin_start=12, margin_end=12)
self.import_statuspage = Adw.StatusPage(
title=_("Importing Games…"),
child=self.progressbar,
)
self.import_dialog = Adw.Dialog(
child=self.import_statuspage,
content_width=350,
can_close=False,
)
self.close_attempt_id = self.import_dialog.connect(
"close-attempt", lambda *_: shared.win.close()
)
self.import_dialog.present(shared.win)
def update_progressbar(self) -> None:
"""Update the progressbar to show the overall import progress"""
# Reserve 10% for the sources discovery, the rest is the pipelines
self.progressbar.set_fraction(
(0.1 * self.sources_progress) + (0.9 * self.pipelines_progress)
)
def create_error_dialog(self) -> None:
"""Dialog containing all errors raised by importers"""
# Collect all errors that happened in the importer and the managers
errors = []
errors.extend(self.collect_errors())
for manager in shared.store.managers.values():
errors.extend(manager.collect_errors())
# Filter out non friendly errors
errors = set(
tuple(
(error.title, error.subtitle)
for error in (
filter(lambda error: isinstance(error, FriendlyError), errors)
)
)
)
# No error to display
if not errors:
self.timeout_toast()
return
# Create error dialog
dialog = Adw.AlertDialog()
dialog.set_heading(_("Warning"))
dialog.add_response("close", _("Dismiss"))
dialog.add_response("open_preferences_import", _("Preferences"))
dialog.set_default_response("open_preferences_import")
dialog.connect("response", self.dialog_response_callback)
if len(errors) == 1:
dialog.set_heading((error := next(iter(errors)))[0])
dialog.set_body(error[1])
else:
# Display the errors in a list
list_box = Gtk.ListBox()
list_box.set_selection_mode(Gtk.SelectionMode.NONE)
list_box.set_css_classes(["boxed-list"])
list_box.set_margin_top(9)
for error in errors:
row = Adw.ActionRow.new()
row.set_title(error[0])
row.set_subtitle(error[1])
list_box.append(row)
dialog.set_body(_("The following errors occured during import:"))
dialog.set_extra_child(list_box)
dialog.present(shared.win)
def undo_import(self, *_args: Any) -> None:
for game_id in self.imported_game_ids:
shared.store[game_id].removed = True
shared.store[game_id].update()
shared.store[game_id].save()
for game_id in self.removed_game_ids:
shared.store[game_id].removed = False
shared.store[game_id].update()
shared.store[game_id].save()
self.imported_game_ids = set()
self.removed_game_ids = set()
if self.__class__.summary_toast:
self.__class__.summary_toast.dismiss()
logging.info("Import undone")
def create_summary_toast(self) -> Adw.Toast:
"""N games imported, removed toast"""
toast = Adw.Toast(timeout=0, priority=Adw.ToastPriority.HIGH)
if not self.n_games_added:
toast_title = _("No new games found")
if not self.removed_game_ids:
toast.set_button_label(_("Preferences"))
toast.connect(
"button-clicked",
self.dialog_response_callback,
"open_preferences",
"import",
)
elif self.n_games_added >= 1:
# The variable is the number of games.
toast_title = ngettext(
"{} game imported", "{} games imported", self.n_games_added
).format(self.n_games_added)
if (removed_length := len(self.removed_game_ids)) >= 1:
# The variable is the number of games. This text comes after "{0} games imported".
toast_title += ngettext(
", {} removed", ", {} removed", removed_length
).format(removed_length)
if self.n_games_added or self.removed_game_ids:
toast.set_button_label(_("Undo"))
toast.connect("button-clicked", self.undo_import)
toast.set_title(toast_title)
if not (
self.n_games_added == 0
and removed_length == 0
and shared.schema.get_boolean("auto-import")
):
shared.win.toast_overlay.add_toast(toast)
return toast
def open_preferences(
self,
page_name: Optional[str] = None,
expander_row: Optional[Adw.ExpanderRow] = None,
) -> Adw.PreferencesDialog:
return shared.win.get_application().on_preferences_action(
page_name=page_name, expander_row=expander_row
)
def timeout_toast(self, *_args: Any) -> None:
"""Manually timeout the toast after the user has dismissed all warnings"""
if self.__class__.summary_toast:
GLib.timeout_add_seconds(5, self.__class__.summary_toast.dismiss)
def dialog_response_callback(self, _widget: Any, response: str, *args: Any) -> None:
"""Handle after-import dialogs callback"""
logging.debug("After-import dialog response: %s (%s)", response, str(args))
if response == "open_preferences":
self.open_preferences(*args)
elif response == "open_preferences_import":
self.open_preferences(*args).connect("close-request", self.timeout_toast)
else:
self.timeout_toast()

View File

@@ -1,133 +0,0 @@
# lutris_source.py
#
# Copyright 2022-2024 kramo
# Copyright 2023 Geoffrey Coulaud
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# SPDX-License-Identifier: GPL-3.0-or-later
from shutil import rmtree
from sqlite3 import connect
from typing import NamedTuple
from cartridges import shared
from cartridges.game import Game
from cartridges.importer.location import Location, LocationSubPath
from cartridges.importer.source import SourceIterable, URLExecutableSource
from cartridges.utils.sqlite import copy_db
class LutrisSourceIterable(SourceIterable):
source: "LutrisSource"
def __iter__(self):
"""Generator method producing games"""
# Query the database
request = """
SELECT
games.id,
games.name,
games.slug,
games.runner,
categories.name = ".hidden" as hidden
FROM
games
LEFT JOIN
games_categories ON games_categories.game_id = games.id
FULL JOIN
categories ON games_categories.category_id = categories.id
WHERE
games.name IS NOT NULL
AND games.slug IS NOT NULL
AND games.configPath IS NOT NULL
AND games.installed
AND (games.runner IS NOT "steam" OR :import_steam)
AND (games.runner IS NOT "flatpak" OR :import_flatpak)
;
"""
params = {
"import_steam": shared.schema.get_boolean("lutris-import-steam"),
"import_flatpak": shared.schema.get_boolean("lutris-import-flatpak"),
}
db_path = copy_db(self.source.locations.data["pga.db"])
connection = connect(db_path)
cursor = connection.execute(request, params)
coverart_is_dir = (
coverart_path := self.source.locations.data.root / "coverart"
).is_dir()
# Create games from the DB results
for row in cursor:
# Create game
values = {
"added": shared.import_time,
"hidden": row[4],
"name": row[1],
"source": f"{self.source.source_id}_{row[3]}",
"game_id": self.source.game_id_format.format(
runner=row[3], game_id=row[0]
),
"executable": self.source.make_executable(game_id=row[0]),
}
game = Game(values)
additional_data = {}
# Get official image path
if coverart_is_dir:
image_path = coverart_path / f"{row[2]}.jpg"
additional_data["local_image_path"] = image_path
yield (game, additional_data)
# Cleanup
rmtree(str(db_path.parent))
class LutrisLocations(NamedTuple):
data: Location
class LutrisSource(URLExecutableSource):
"""Generic Lutris source"""
source_id = "lutris"
name = _("Lutris")
iterable_class = LutrisSourceIterable
url_format = "lutris:rungameid/{game_id}"
available_on = {"linux"}
locations: LutrisLocations
@property
def game_id_format(self):
return self.source_id + "_{runner}_{game_id}"
def __init__(self) -> None:
super().__init__()
self.locations = LutrisLocations(
Location(
schema_key="lutris-location",
candidates=(
shared.flatpak_dir / "net.lutris.Lutris" / "data" / "lutris",
shared.data_dir / "lutris",
shared.host_data_dir / "lutris",
),
paths={
"pga.db": LocationSubPath("pga.db"),
},
invalid_subtitle=Location.DATA_INVALID_SUBTITLE,
)
)

View File

@@ -1,255 +0,0 @@
# retroarch_source.py
#
# Copyright 2023 Rilic
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# SPDX-License-Identifier: GPL-3.0-or-later
import json
import logging
import re
from hashlib import md5
from json import JSONDecodeError
from pathlib import Path
from shlex import quote as shell_quote
from typing import NamedTuple
from cartridges import shared
from cartridges.errors.friendly_error import FriendlyError
from cartridges.game import Game
from cartridges.importer.location import (
Location,
LocationSubPath,
UnresolvableLocationError,
)
from cartridges.importer.source import Source, SourceIterable
from cartridges.importer.steam_source import SteamSource
class RetroarchSourceIterable(SourceIterable):
source: "RetroarchSource"
def get_config_value(self, key: str, config_data: str):
for item in re.findall(f'{key}\\s*=\\s*"(.*)"\n', config_data, re.IGNORECASE):
if item.startswith(":"):
item = item.replace(":", str(self.source.locations.config.root))
logging.debug(str(item))
return item
raise KeyError(f"Key not found in RetroArch config: {key}")
def __iter__(self):
bad_playlists = set()
config_file = self.source.locations.config["retroarch.cfg"]
with config_file.open(encoding="utf-8") as open_file:
config_data = open_file.read()
playlist_folder = Path(
self.get_config_value("playlist_directory", config_data)
).expanduser()
thumbnail_folder = Path(
self.get_config_value("thumbnails_directory", config_data)
).expanduser()
# Get all playlist files, ending in .lpl
playlist_files = playlist_folder.glob("*.lpl")
for playlist_file in playlist_files:
logging.debug(playlist_file)
try:
with playlist_file.open(
encoding="utf-8",
) as open_file:
playlist_json = json.load(open_file)
except (JSONDecodeError, OSError):
logging.warning("Cannot read playlist file: %s", str(playlist_file))
continue
for item in playlist_json["items"]:
# Select the core.
# Try the content's core first, then the playlist's default core.
# If none can be used, warn the user and continue.
for core_path in (
item["core_path"],
playlist_json["default_core_path"],
):
if core_path not in ("DETECT", ""):
break
else:
logging.warning("Cannot find core for: %s", str(item["path"]))
bad_playlists.add(playlist_file.stem)
continue
# Build game
game_id = md5(item["path"].encode("utf-8")).hexdigest()
values = {
"source": self.source.source_id,
"added": shared.import_time,
"name": item["label"],
"game_id": self.source.game_id_format.format(game_id=game_id),
"executable": self.source.make_executable(
core_path=core_path,
rom_path=item["path"],
),
}
game = Game(values)
# Get boxart
boxart_image_name = item["label"] + ".png"
boxart_image_name = re.sub(r"[&\*\/:`<>\?\\\|]", "_", boxart_image_name)
boxart_folder_name = playlist_file.stem
image_path = (
thumbnail_folder
/ boxart_folder_name
/ "Named_Boxarts"
/ boxart_image_name
)
additional_data = {"local_image_path": image_path}
yield (game, additional_data)
if bad_playlists:
raise FriendlyError(
_("No RetroArch Core Selected"),
# The variable is a newline separated list of playlists
_("The following playlists have no default core:")
+ "\n\n{}\n\n".format("\n".join(bad_playlists))
+ _("Games with no core selected were not imported"),
)
class RetroarchLocations(NamedTuple):
config: Location
class RetroarchSource(Source):
name = _("RetroArch")
source_id = "retroarch"
available_on = {"linux"}
iterable_class = RetroarchSourceIterable
locations: RetroarchLocations
def __init__(self) -> None:
super().__init__()
self.locations = RetroarchLocations(
Location(
schema_key="retroarch-location",
candidates=[
shared.flatpak_dir
/ "org.libretro.RetroArch"
/ "config"
/ "retroarch",
shared.config_dir / "retroarch",
shared.host_config_dir / "retroarch",
# TODO: Windows support, waiting for executable path setting improvement
# Path("C:\\RetroArch-Win64"),
# Path("C:\\RetroArch-Win32"),
# TODO: UWP support (URL handler - https://github.com/libretro/RetroArch/pull/13563)
# shared.local_appdata_dir
# / "Packages"
# / "1e4cf179-f3c2-404f-b9f3-cb2070a5aad8_8ngdn9a6dx1ma"
# / "LocalState",
],
paths={
"retroarch.cfg": LocationSubPath("retroarch.cfg"),
},
invalid_subtitle=Location.CONFIG_INVALID_SUBTITLE,
)
)
# TODO enable when we get the Steam RetroArch games working
# self.add_steam_location_candidate()
def add_steam_location_candidate(self) -> None:
"""Add the Steam RetroAcrh location to the config candidates"""
try:
self.locations.config.candidates.append(self.get_steam_location())
except (OSError, KeyError, UnresolvableLocationError):
logging.debug("Steam isn't installed")
except ValueError as error:
logging.debug("RetroArch Steam location candiate not found", exc_info=error)
def get_steam_location(self) -> str:
"""
Get the RetroArch installed via Steam location
:raise UnresolvableLocationError: if Steam isn't installed
:raise KeyError: if there is no libraryfolders.vdf subpath
:raise OSError: if libraryfolders.vdf can't be opened
:raise ValueError: if RetroArch isn't installed through Steam
"""
# Find Steam location
libraryfolders = SteamSource().locations.data["libraryfolders.vdf"]
parse_apps = False
with open(libraryfolders, "r", encoding="utf-8") as open_file:
# Search each line for a library path and store it each time a new one is found.
for line in open_file:
if '"path"' in line:
library_path = re.findall(
'"path"\\s+"(.*)"\n', line, re.IGNORECASE
)[0]
elif '"apps"' in line:
parse_apps = True
elif parse_apps and "}" in line:
parse_apps = False
# Stop searching, as the library path directly above the appid has been found.
elif parse_apps and '"1118310"' in line:
return Path(f"{library_path}/steamapps/common/RetroArch")
# Not found
raise ValueError("RetroArch not found in Steam library")
def make_executable(self, core_path: Path, rom_path: Path) -> str:
"""
Generate an executable command from the rom path and core path,
depending on the source's location.
The format depends on RetroArch's installation method,
detected from the source config location
:param Path rom_path: the game's rom path
:param Path core_path: the game's core path
:return str: an executable command
"""
self.locations.config.resolve()
args = ("-L", core_path, rom_path)
# Steam RetroArch
# (Must check before Flatpak, because Steam itself can be installed as one)
# TODO enable when we get Steam RetroArch executable to work
# if self.locations.config.root.parent.parent.name == "steamapps":
# # steam://run exepects args to be url-encoded and separated by spaces.
# args = map(lambda s: url_quote(str(s), safe=""), args)
# args_str = " ".join(args)
# uri = f"steam://run/1118310//{args_str}/"
# return f"xdg-open {shell_quote(uri)}"
# Flatpak RetroArch
args = map(lambda s: shell_quote(str(s)), args)
args_str = " ".join(args)
if self.locations.config.root.is_relative_to(shared.flatpak_dir):
return f"flatpak run org.libretro.RetroArch {args_str}"
# TODO executable override for non-sandboxed sources
# Linux native RetroArch
return f"retroarch {args_str}"
# TODO implement for windows (needs override)

View File

@@ -1,134 +0,0 @@
# source.py
#
# Copyright 2023 Geoffrey Coulaud
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# SPDX-License-Identifier: GPL-3.0-or-later
import sys
from abc import abstractmethod
from collections.abc import Iterable
from typing import Any, Collection, Generator, Optional
from cartridges.game import Game
from cartridges.importer.location import Location, UnresolvableLocationError
# Type of the data returned by iterating on a Source
SourceIterationResult = Optional[Game | tuple[Game, tuple[Any]]]
class SourceIterable(Iterable):
"""Data producer for a source of games"""
source: "Source"
def __init__(self, source: "Source") -> None:
self.source = source
@abstractmethod
def __iter__(self) -> Generator[SourceIterationResult, None, None]:
"""
Method that returns a generator that produces games
* Should be implemented as a generator method
* May yield `None` when an iteration hasn't produced a game
* In charge of handling per-game errors
* Returns when exhausted
"""
class Source(Iterable):
"""Source of games. E.g an installed app with a config file that lists game directories"""
source_id: str
name: str
variant: Optional[str] = None
available_on: set[str] = set()
iterable_class: type[SourceIterable]
# NOTE: Locations must be set at __init__ time, not in the class definition.
# They must not be shared between source instances.
locations: Collection[Location]
@property
def full_name(self) -> str:
"""The source's full name"""
full_name_ = self.name
if self.variant:
full_name_ += f" ({self.variant})"
return full_name_
@property
def game_id_format(self) -> str:
"""The string format used to construct game IDs"""
return self.source_id + "_{game_id}"
@property
def is_available(self) -> bool:
return any(sys.platform.startswith(platform) for platform in self.available_on)
def make_executable(self, *args, **kwargs) -> str:
"""
Create a game executable command.
Should be implemented by child classes.
"""
def __iter__(self) -> Generator[SourceIterationResult, None, None]:
"""
Get an iterator for the source
:raises UnresolvableLocationError: Not iterable
if any of the mandatory locations are unresolvable
"""
for location in self.locations:
try:
location.resolve()
except UnresolvableLocationError as error:
if not error.optional:
raise UnresolvableLocationError from error
return iter(self.iterable_class(self))
class ExecutableFormatSource(Source):
"""Source class that uses a simple executable format to start games"""
@property
@abstractmethod
def executable_format(self) -> str:
"""The executable format used to construct game executables"""
def make_executable(self, *args, **kwargs) -> str:
"""Use the executable format to"""
return self.executable_format.format(*args, **kwargs)
# pylint: disable=abstract-method
class URLExecutableSource(ExecutableFormatSource):
"""Source class that use custom URLs to start games"""
url_format: str
@property
def executable_format(self) -> str:
if sys.platform.startswith("win32"):
return f"start {self.url_format}"
if sys.platform.startswith("linux"):
return f"xdg-open {self.url_format}"
if sys.platform.startswith("darwin"):
return f"open {self.url_format}"
raise NotImplementedError(
f"No URL handler command available for {sys.platform}"
)

View File

@@ -1,140 +0,0 @@
# session_file_handler.py
#
# Copyright 2023 Geoffrey Coulaud
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# SPDX-License-Identifier: GPL-3.0-or-later
import lzma
from io import TextIOWrapper
from logging import StreamHandler
from lzma import FORMAT_XZ, PRESET_DEFAULT
from os import PathLike
from pathlib import Path
from typing import Optional
from cartridges import shared
class SessionFileHandler(StreamHandler):
"""
A logging handler that writes to a new file on every app restart.
The files are compressed and older sessions logs are kept up to a small limit.
"""
NUMBER_SUFFIX_POSITION = 1
backup_count: int
filename: Path
log_file: Optional[TextIOWrapper] = None
def create_dir(self) -> None:
"""Create the log dir if needed"""
self.filename.parent.mkdir(exist_ok=True, parents=True)
def path_is_logfile(self, path: Path) -> bool:
return path.is_file() and path.name.startswith(self.filename.stem)
def path_has_number(self, path: Path) -> bool:
try:
int(path.suffixes[self.NUMBER_SUFFIX_POSITION][1:])
except (ValueError, IndexError):
return False
return True
def get_path_number(self, path: Path) -> int:
"""Get the number extension in the filename as an int"""
suffixes = path.suffixes
number = (
0
if not self.path_has_number(path)
else int(suffixes[self.NUMBER_SUFFIX_POSITION][1:])
)
return number
def set_path_number(self, path: Path, number: int) -> str:
"""Set or add the number extension in the filename"""
suffixes = path.suffixes
if self.path_has_number(path):
suffixes.pop(self.NUMBER_SUFFIX_POSITION)
suffixes.insert(self.NUMBER_SUFFIX_POSITION, f".{number}")
stem = path.name.split(".", maxsplit=1)[0]
new_name = stem + "".join(suffixes)
return new_name
def file_sort_key(self, path: Path) -> int:
"""Key function used to sort files"""
return self.get_path_number(path) if self.path_has_number(path) else 0
def get_logfiles(self) -> list[Path]:
"""Get the log files"""
logfiles = list(filter(self.path_is_logfile, self.filename.parent.iterdir()))
logfiles.sort(key=self.file_sort_key, reverse=True)
return logfiles
def rotate_file(self, path: Path) -> None:
"""Rotate a file's number suffix and remove it if it's too old"""
# If uncompressed, compress
if not path.name.endswith(".xz"):
try:
with open(path, "r", encoding="utf-8") as original_file:
original_data = original_file.read()
except UnicodeDecodeError:
# If the file is corrupted, throw it away
path.unlink()
return
# Compress the file
compressed_path = path.with_suffix(path.suffix + ".xz")
with lzma.open(
compressed_path,
"wt",
format=FORMAT_XZ,
preset=PRESET_DEFAULT,
encoding="utf-8",
) as lzma_file:
lzma_file.write(original_data)
path.unlink()
path = compressed_path
# Rename with new number suffix
new_number = self.get_path_number(path) + 1
new_path_name = self.set_path_number(path, new_number)
path = path.rename(path.with_name(new_path_name))
# Remove older files
if new_number > self.backup_count:
path.unlink()
return
def rotate(self) -> None:
"""Rotate the numbered suffix on the log files and remove old ones"""
for path in self.get_logfiles():
self.rotate_file(path)
def __init__(self, filename: PathLike, backup_count: int = 2) -> None:
self.filename = Path(filename)
self.backup_count = backup_count
self.create_dir()
self.rotate()
self.log_file = open(self.filename, "w", encoding="utf-8")
shared.log_files = self.get_logfiles()
super().__init__(self.log_file)
def close(self) -> None:
if self.log_file:
self.log_file.close()
super().close()

View File

@@ -1,408 +0,0 @@
# main.py
#
# Copyright 2022-2024 kramo
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# SPDX-License-Identifier: GPL-3.0-or-later
import json
import lzma
import shlex
import sys
from time import time
from typing import Any, Optional
from urllib.parse import quote
import gi
gi.require_version("Gtk", "4.0")
gi.require_version("Adw", "1")
# pylint: disable=wrong-import-position
from gi.repository import Adw, Gio, GLib, Gtk
from cartridges import shared
from cartridges.details_dialog import DetailsDialog
from cartridges.game import Game
from cartridges.importer.bottles_source import BottlesSource
from cartridges.importer.desktop_source import DesktopSource
from cartridges.importer.flatpak_source import FlatpakSource
from cartridges.importer.heroic_source import HeroicSource
from cartridges.importer.importer import Importer # yo dawg
from cartridges.importer.itch_source import ItchSource
from cartridges.importer.legendary_source import LegendarySource
from cartridges.importer.lutris_source import LutrisSource
from cartridges.importer.retroarch_source import RetroarchSource
from cartridges.importer.steam_source import SteamSource
from cartridges.logging.setup import log_system_info, setup_logging
from cartridges.preferences import CartridgesPreferences
from cartridges.store.managers.cover_manager import CoverManager
from cartridges.store.managers.display_manager import DisplayManager
from cartridges.store.managers.file_manager import FileManager
from cartridges.store.managers.sgdb_manager import SgdbManager
from cartridges.store.managers.steam_api_manager import SteamAPIManager
from cartridges.store.store import Store
from cartridges.utils.run_executable import run_executable
from cartridges.window import CartridgesWindow
class CartridgesApplication(Adw.Application):
state = shared.AppState.DEFAULT
win: CartridgesWindow
init_search_term: Optional[str] = None
def __init__(self) -> None:
shared.store = Store()
super().__init__(application_id=shared.APP_ID)
search = GLib.OptionEntry()
search.long_name = "search"
search.short_name = ord("s")
search.flags = 0
search.arg = int(GLib.OptionArg.STRING)
search.arg_data = None
search.description = "Open the app with this term in the search entry"
search.arg_description = "TERM"
launch = GLib.OptionEntry()
launch.long_name = "launch"
launch.short_name = ord("l")
launch.flags = int(GLib.OptionFlags.NONE)
launch.arg = int(GLib.OptionArg.STRING)
launch.arg_data = None
launch.description = "Run a game with the given game_id"
launch.arg_description = "GAME_ID"
self.add_main_option_entries((search, launch))
if sys.platform.startswith("darwin"):
if settings := Gtk.Settings.get_default():
settings.props.gtk_decoration_layout = "close,minimize,maximize:"
def do_activate(self) -> None: # pylint: disable=arguments-differ
"""Called on app creation"""
try:
setup_logging()
except ValueError:
pass
log_system_info()
# Create the main window
win = self.props.active_window # pylint: disable=no-member
if not win:
shared.win = win = CartridgesWindow(application=self)
# Save window geometry
shared.state_schema.bind(
"width", shared.win, "default-width", Gio.SettingsBindFlags.DEFAULT
)
shared.state_schema.bind(
"height", shared.win, "default-height", Gio.SettingsBindFlags.DEFAULT
)
shared.state_schema.bind(
"is-maximized", shared.win, "maximized", Gio.SettingsBindFlags.DEFAULT
)
# Load games from disk
shared.store.add_manager(FileManager(), False)
shared.store.add_manager(DisplayManager())
self.state = shared.AppState.LOAD_FROM_DISK
self.load_games_from_disk()
self.state = shared.AppState.DEFAULT
shared.win.create_source_rows()
# Add rest of the managers for game imports
shared.store.add_manager(CoverManager())
shared.store.add_manager(SteamAPIManager())
shared.store.add_manager(SgdbManager())
shared.store.toggle_manager_in_pipelines(FileManager, True)
# Create actions
self.create_actions(
{
("quit", ("<primary>q",)),
("about",),
("preferences", ("<primary>comma",)),
("launch_game",),
("hide_game",),
("edit_game",),
("add_game", ("<primary>n",)),
("import", ("<primary>i",)),
("remove_game_details_view", ("Delete",)),
("remove_game",),
("igdb_search",),
("sgdb_search",),
("protondb_search",),
("pcgw_search",),
("lutris_search",),
("hltb_search",),
("show_sidebar", ("F9",), shared.win),
("show_hidden", ("<primary>h",), shared.win),
("go_to_parent", ("<alt>Up",), shared.win),
("go_home", ("<alt>Home",), shared.win),
("toggle_search", ("<primary>f",), shared.win),
("undo", ("<primary>z",), shared.win),
("open_menu", ("F10",), shared.win),
("close", ("<primary>w",), shared.win),
}
)
sort_action = Gio.SimpleAction.new_stateful(
"sort_by",
GLib.VariantType.new("s"),
sort_mode := GLib.Variant("s", shared.state_schema.get_string("sort-mode")),
)
sort_action.connect("activate", shared.win.on_sort_action)
shared.win.add_action(sort_action)
shared.win.on_sort_action(sort_action, sort_mode)
if self.init_search_term: # For command line activation
shared.win.search_bar.set_search_mode(True)
shared.win.search_entry.set_text(self.init_search_term)
shared.win.search_entry.set_position(-1)
shared.win.present()
if shared.schema.get_boolean("auto-import"):
self.on_import_action()
def do_handle_local_options(self, options: GLib.VariantDict) -> int:
if search := options.lookup_value("search"):
self.init_search_term = search.get_string()
elif game_id := options.lookup_value("launch"):
try:
data = json.load(
(path := shared.games_dir / (game_id.get_string() + ".json")).open(
"r", encoding="utf-8"
)
)
executable = (
shlex.join(data["executable"])
if isinstance(data["executable"], list)
else data["executable"]
)
name = data["name"]
run_executable(executable)
data["last_played"] = int(time())
json.dump(data, path.open("w", encoding="utf-8"))
except (IndexError, KeyError, OSError, json.decoder.JSONDecodeError):
return 1
self.register()
self.send_notification(
"launch", Gio.Notification.new(_("{} launched").format(name))
)
# Sleep for 6 seconds before withdrawing the notification
# The amount a notification stays up is ~5, so leave an extra second for the animation
GLib.usleep(6000000)
self.withdraw_notification("launch")
return 0
return -1
def load_games_from_disk(self) -> None:
if shared.games_dir.is_dir():
for game_file in shared.games_dir.iterdir():
try:
data = json.load(game_file.open())
except (OSError, json.decoder.JSONDecodeError):
continue
game = Game(data)
shared.store.add_game(game, {"skip_save": True})
def get_source_name(self, source_id: str) -> Any:
if source_id == "all":
name = _("All Games")
elif source_id == "imported":
name = _("Added")
else:
try:
name = globals()[f"{source_id.split('_')[0].title()}Source"].name
except KeyError:
return source_id
return name
def on_about_action(self, *_args: Any) -> None:
# Get the debug info from the log files
debug_str = ""
for index, path in enumerate(shared.log_files):
# Add a horizontal line between runs
if index > 0:
debug_str += "" * 37 + "\n"
# Add the run's logs
log_file = (
lzma.open(path, "rt", encoding="utf-8")
if path.name.endswith(".xz")
else open(path, "r", encoding="utf-8")
)
debug_str += log_file.read()
log_file.close()
about = Adw.AboutDialog.new_from_appdata(
shared.PREFIX + "/" + shared.APP_ID + ".metainfo.xml", shared.VERSION
)
about.set_developers(
(
"kramo https://kramo.page",
"Geoffrey Coulaud https://geoffrey-coulaud.fr",
"Rilic https://rilic.red",
"Arcitec https://github.com/Arcitec",
"Paweł Lidwin https://github.com/imLinguin",
"Domenico https://github.com/Domefemia",
"Rafael Mardojai CM https://mardojai.com",
"Clara Hobbs https://github.com/Ratfink",
"Sabri Ünal https://github.com/sabriunal",
)
)
about.set_designers(("kramo https://kramo.page",))
about.set_copyright("© 2022-2024 kramo")
# Translators: Replace this with Your Name, Your Name <your.email@example.com>, or Your Name https://your-site.com for it to show up in the About dialog.
about.set_translator_credits(_("translator-credits"))
about.set_debug_info(debug_str)
about.set_debug_info_filename("cartridges.log")
about.add_legal_section(
"Steam Branding",
"© 2023 Valve Corporation",
Gtk.License.CUSTOM,
"Steam and the Steam logo are trademarks and/or registered trademarks of Valve Corporation in the U.S. and/or other countries.", # pylint: disable=line-too-long
)
about.present(shared.win)
def on_preferences_action(
self,
_action: Any = None,
_parameter: Any = None,
page_name: Optional[str] = None,
expander_row: Optional[str] = None,
) -> Optional[CartridgesPreferences]:
if CartridgesPreferences.is_open:
return
win = CartridgesPreferences()
if page_name:
win.set_visible_page_name(page_name)
if expander_row:
getattr(win, expander_row).set_expanded(True)
win.present(shared.win)
return win
def on_launch_game_action(self, *_args: Any) -> None:
shared.win.active_game.launch()
def on_hide_game_action(self, *_args: Any) -> None:
shared.win.active_game.toggle_hidden()
def on_edit_game_action(self, *_args: Any) -> None:
DetailsDialog(shared.win.active_game).present(shared.win)
def on_add_game_action(self, *_args: Any) -> None:
if DetailsDialog.is_open:
return
DetailsDialog().present(shared.win)
def on_import_action(self, *_args: Any) -> None:
shared.importer = Importer()
if shared.schema.get_boolean("lutris"):
shared.importer.add_source(LutrisSource())
if shared.schema.get_boolean("steam"):
shared.importer.add_source(SteamSource())
if shared.schema.get_boolean("heroic"):
shared.importer.add_source(HeroicSource())
if shared.schema.get_boolean("bottles"):
shared.importer.add_source(BottlesSource())
if shared.schema.get_boolean("flatpak"):
shared.importer.add_source(FlatpakSource())
if shared.schema.get_boolean("desktop"):
shared.importer.add_source(DesktopSource())
if shared.schema.get_boolean("itch"):
shared.importer.add_source(ItchSource())
if shared.schema.get_boolean("legendary"):
shared.importer.add_source(LegendarySource())
if shared.schema.get_boolean("retroarch"):
shared.importer.add_source(RetroarchSource())
shared.importer.run()
def on_remove_game_action(self, *_args: Any) -> None:
shared.win.active_game.remove_game()
def on_remove_game_details_view_action(self, *_args: Any) -> None:
if shared.win.navigation_view.get_visible_page() == shared.win.details_page:
self.on_remove_game_action()
def search(self, uri: str) -> None:
Gio.AppInfo.launch_default_for_uri(f"{uri}{quote(shared.win.active_game.name)}")
def on_igdb_search_action(self, *_args: Any) -> None:
self.search("https://www.igdb.com/search?type=1&q=")
def on_sgdb_search_action(self, *_args: Any) -> None:
self.search("https://www.steamgriddb.com/search/grids?term=")
def on_protondb_search_action(self, *_args: Any) -> None:
self.search("https://www.protondb.com/search?q=")
def on_pcgw_search_action(self, *_args: Any) -> None:
self.search("https://www.pcgamingwiki.com/w/index.php?search=")
def on_lutris_search_action(self, *_args: Any) -> None:
self.search("https://lutris.net/games?q=")
def on_hltb_search_action(self, *_args: Any) -> None:
self.search("https://howlongtobeat.com/?q=")
def on_quit_action(self, *_args: Any) -> None:
self.quit()
def create_actions(self, actions: set) -> None:
for action in actions:
simple_action = Gio.SimpleAction.new(action[0], None)
scope = action[2] if action[2:3] else self
simple_action.connect("activate", getattr(scope, f"on_{action[0]}_action"))
if action[1:2]:
self.set_accels_for_action(
f"app.{action[0]}" if scope == self else f"win.{action[0]}",
(
tuple(s.replace("<primary>", "<meta>") for s in action[1])
if sys.platform.startswith("darwin")
else action[1]
),
)
scope.add_action(simple_action)
def main(_version: int) -> Any:
"""App entry point"""
app = CartridgesApplication()
return app.run(sys.argv)

View File

@@ -1,475 +0,0 @@
# preferences.py
#
# Copyright 2022-2023 kramo
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# SPDX-License-Identifier: GPL-3.0-or-later
# pyright: reportAssignmentType=none
import logging
import re
from pathlib import Path
from shutil import rmtree
from sys import platform
from typing import Any, Callable, Optional
from gi.repository import Adw, Gio, GLib, Gtk
from cartridges import shared
from cartridges.errors.friendly_error import FriendlyError
from cartridges.game import Game
from cartridges.importer.bottles_source import BottlesSource
from cartridges.importer.desktop_source import DesktopSource
from cartridges.importer.flatpak_source import FlatpakSource
from cartridges.importer.heroic_source import HeroicSource
from cartridges.importer.itch_source import ItchSource
from cartridges.importer.legendary_source import LegendarySource
from cartridges.importer.location import UnresolvableLocationError
from cartridges.importer.lutris_source import LutrisSource
from cartridges.importer.retroarch_source import RetroarchSource
from cartridges.importer.source import Source
from cartridges.importer.steam_source import SteamSource
from cartridges.store.managers.sgdb_manager import SgdbManager
from cartridges.utils.create_dialog import create_dialog
@Gtk.Template(resource_path=shared.PREFIX + "/gtk/preferences.ui")
class CartridgesPreferences(Adw.PreferencesDialog):
__gtype_name__ = "CartridgesPreferences"
general_page: Adw.PreferencesPage = Gtk.Template.Child()
import_page: Adw.PreferencesPage = Gtk.Template.Child()
sgdb_page: Adw.PreferencesPage = Gtk.Template.Child()
sources_group: Adw.PreferencesGroup = Gtk.Template.Child()
exit_after_launch_switch: Adw.SwitchRow = Gtk.Template.Child()
cover_launches_game_switch: Adw.SwitchRow = Gtk.Template.Child()
high_quality_images_switch: Adw.SwitchRow = Gtk.Template.Child()
auto_import_switch: Adw.SwitchRow = Gtk.Template.Child()
remove_missing_switch: Adw.SwitchRow = Gtk.Template.Child()
steam_expander_row: Adw.ExpanderRow = Gtk.Template.Child()
steam_data_action_row: Adw.ActionRow = Gtk.Template.Child()
steam_data_file_chooser_button: Gtk.Button = Gtk.Template.Child()
lutris_expander_row: Adw.ExpanderRowClass = Gtk.Template.Child()
lutris_data_action_row: Adw.ActionRow = Gtk.Template.Child()
lutris_data_file_chooser_button: Gtk.Button = Gtk.Template.Child()
lutris_import_steam_switch: Adw.SwitchRow = Gtk.Template.Child()
lutris_import_flatpak_switch: Adw.SwitchRow = Gtk.Template.Child()
heroic_expander_row: Adw.ExpanderRow = Gtk.Template.Child()
heroic_config_action_row: Adw.ActionRow = Gtk.Template.Child()
heroic_config_file_chooser_button: Gtk.Button = Gtk.Template.Child()
heroic_import_epic_switch: Adw.SwitchRow = Gtk.Template.Child()
heroic_import_gog_switch: Adw.SwitchRow = Gtk.Template.Child()
heroic_import_amazon_switch: Adw.SwitchRow = Gtk.Template.Child()
heroic_import_sideload_switch: Adw.SwitchRow = Gtk.Template.Child()
bottles_expander_row: Adw.ExpanderRow = Gtk.Template.Child()
bottles_data_action_row: Adw.ActionRow = Gtk.Template.Child()
bottles_data_file_chooser_button: Gtk.Button = Gtk.Template.Child()
itch_expander_row: Adw.ExpanderRow = Gtk.Template.Child()
itch_config_action_row: Adw.ActionRow = Gtk.Template.Child()
itch_config_file_chooser_button: Gtk.Button = Gtk.Template.Child()
legendary_expander_row: Adw.ExpanderRow = Gtk.Template.Child()
legendary_config_action_row: Adw.ActionRow = Gtk.Template.Child()
legendary_config_file_chooser_button: Gtk.Button = Gtk.Template.Child()
retroarch_expander_row: Adw.ExpanderRow = Gtk.Template.Child()
retroarch_config_action_row: Adw.ActionRow = Gtk.Template.Child()
retroarch_config_file_chooser_button: Gtk.Button = Gtk.Template.Child()
flatpak_expander_row: Adw.ExpanderRow = Gtk.Template.Child()
flatpak_system_data_action_row: Adw.ActionRow = Gtk.Template.Child()
flatpak_system_data_file_chooser_button: Gtk.Button = Gtk.Template.Child()
flatpak_user_data_action_row: Adw.ActionRow = Gtk.Template.Child()
flatpak_user_data_file_chooser_button: Gtk.Button = Gtk.Template.Child()
flatpak_import_launchers_switch: Adw.SwitchRow = Gtk.Template.Child()
desktop_switch: Adw.SwitchRow = Gtk.Template.Child()
sgdb_key_group: Adw.PreferencesGroup = Gtk.Template.Child()
sgdb_key_entry_row: Adw.EntryRow = Gtk.Template.Child()
sgdb_switch: Adw.SwitchRow = Gtk.Template.Child()
sgdb_prefer_switch: Adw.SwitchRow = Gtk.Template.Child()
sgdb_animated_switch: Adw.SwitchRow = Gtk.Template.Child()
sgdb_fetch_button: Gtk.Button = Gtk.Template.Child()
sgdb_stack: Gtk.Stack = Gtk.Template.Child()
sgdb_spinner: Adw.Spinner = Gtk.Template.Child()
danger_zone_group = Gtk.Template.Child()
remove_all_games_button_row = Gtk.Template.Child()
reset_button_row = Gtk.Template.Child()
removed_games: set[Game] = set()
warning_menu_buttons: dict = {}
is_open = False
def __init__(self, **kwargs: Any) -> None:
super().__init__(**kwargs)
# Make it so only one dialog can be open at a time
self.__class__.is_open = True
self.connect("closed", lambda *_: self.set_is_open(False))
self.file_chooser = Gtk.FileDialog()
self.toast = Adw.Toast.new(_("All games removed"))
self.toast.set_button_label(_("Undo"))
self.toast.connect("button-clicked", self.undo_remove_all, None)
self.toast.set_priority(Adw.ToastPriority.HIGH)
(shortcut_controller := Gtk.ShortcutController()).add_shortcut(
Gtk.Shortcut.new(
Gtk.ShortcutTrigger.parse_string("<primary>z"),
Gtk.CallbackAction.new(self.undo_remove_all),
)
)
self.add_controller(shortcut_controller)
# General
self.remove_all_games_button_row.connect("activated", self.remove_all_games)
# Debug
if shared.PROFILE == "development":
self.reset_button_row.set_visible(True)
self.reset_button_row.connect("activated", self.reset_app)
# Sources settings
for source_class in (
BottlesSource,
FlatpakSource,
HeroicSource,
ItchSource,
LegendarySource,
LutrisSource,
RetroarchSource,
SteamSource,
):
source = source_class()
if not source.is_available:
expander_row = getattr(self, f"{source.source_id}_expander_row")
expander_row.set_visible(False)
else:
self.init_source_row(source)
# Special case for the desktop source
if not DesktopSource().is_available:
self.desktop_switch.set_visible(False)
# SteamGridDB
def sgdb_key_changed(*_args: Any) -> None:
shared.schema.set_string("sgdb-key", self.sgdb_key_entry_row.get_text())
self.sgdb_key_entry_row.set_text(shared.schema.get_string("sgdb-key"))
self.sgdb_key_entry_row.connect("changed", sgdb_key_changed)
self.sgdb_key_group.set_description(
_(
"An API key is required to use SteamGridDB. You can generate one {}here{}."
).format(
'<a href="https://www.steamgriddb.com/profile/preferences/api">', "</a>"
)
)
def update_sgdb(*_args: Any) -> None:
counter = 0
games_len = len(shared.store)
sgdb_manager = shared.store.managers[SgdbManager]
sgdb_manager.reset_cancellable()
self.sgdb_spinner.set_visible(True)
self.sgdb_stack.set_visible_child(self.sgdb_spinner)
self.add_toast(download_toast := Adw.Toast.new(_("Downloading covers…")))
def update_cover_callback(manager: SgdbManager) -> None:
nonlocal counter
nonlocal games_len
nonlocal download_toast
counter += 1
if counter != games_len:
return
for error in manager.collect_errors():
if isinstance(error, FriendlyError):
create_dialog(self, error.title, error.subtitle)
break
for game in shared.store:
game.update()
toast = Adw.Toast.new(_("Covers updated"))
toast.set_priority(Adw.ToastPriority.HIGH)
download_toast.dismiss()
self.add_toast(toast)
self.sgdb_spinner.set_visible(False)
self.sgdb_stack.set_visible_child(self.sgdb_fetch_button)
for game in shared.store:
sgdb_manager.process_game(game, {}, update_cover_callback)
self.sgdb_fetch_button.connect("clicked", update_sgdb)
# Switches
self.bind_switches(
{
"exit-after-launch",
"cover-launches-game",
"high-quality-images",
"auto-import",
"remove-missing",
"lutris-import-steam",
"lutris-import-flatpak",
"heroic-import-epic",
"heroic-import-gog",
"heroic-import-amazon",
"heroic-import-sideload",
"flatpak-import-launchers",
"sgdb",
"sgdb-prefer",
"sgdb-animated",
"desktop",
}
)
def set_sgdb_sensitive(widget: Adw.EntryRow) -> None:
if not widget.get_text():
shared.schema.set_boolean("sgdb", False)
self.sgdb_switch.set_sensitive(widget.get_text())
self.sgdb_key_entry_row.connect("changed", set_sgdb_sensitive)
set_sgdb_sensitive(self.sgdb_key_entry_row)
def set_is_open(self, is_open: bool) -> None:
self.__class__.is_open = is_open
def get_switch(self, setting: str) -> Any:
return getattr(self, f'{setting.replace("-", "_")}_switch')
def bind_switches(self, settings: set[str]) -> None:
for setting in settings:
shared.schema.bind(
setting,
self.get_switch(setting),
"active",
Gio.SettingsBindFlags.DEFAULT,
)
def choose_folder(
self, _widget: Any, callback: Callable, callback_data: Optional[str] = None
) -> None:
self.file_chooser.select_folder(shared.win, None, callback, callback_data)
def undo_remove_all(self, *_args: Any) -> bool:
shared.win.get_application().state = shared.AppState.UNDO_REMOVE_ALL_GAMES
for game in self.removed_games:
game.removed = False
game.save()
game.update()
self.removed_games = set()
self.toast.dismiss()
shared.win.get_application().state = shared.AppState.DEFAULT
shared.win.create_source_rows()
return True
def remove_all_games(self, *_args: Any) -> None:
shared.win.get_application().state = shared.AppState.REMOVE_ALL_GAMES
shared.win.row_selected(None, shared.win.all_games_row_box.get_parent())
for game in shared.store:
if not game.removed:
self.removed_games.add(game)
game.removed = True
game.save()
game.update()
if shared.win.navigation_view.get_visible_page() == shared.win.details_page:
shared.win.navigation_view.pop()
self.add_toast(self.toast)
shared.win.get_application().state = shared.AppState.DEFAULT
shared.win.create_source_rows()
def reset_app(self, *_args: Any) -> None:
rmtree(shared.data_dir / "cartridges", True)
rmtree(shared.config_dir / "cartridges", True)
rmtree(shared.cache_dir / "cartridges", True)
for key in (
(settings_schema_source := Gio.SettingsSchemaSource.get_default())
.lookup(shared.APP_ID, True)
.list_keys()
):
shared.schema.reset(key)
for key in settings_schema_source.lookup(
shared.APP_ID + ".State", True
).list_keys():
shared.state_schema.reset(key)
shared.win.get_application().quit()
def update_source_action_row_paths(self, source: Source) -> None:
"""Set the dir subtitle for a source's action rows"""
for location_name, location in source.locations._asdict().items():
# Get the action row to subtitle
action_row = getattr(
self, f"{source.source_id}_{location_name}_action_row", None
)
if not action_row:
continue
subtitle = str(Path(shared.schema.get_string(location.schema_key)))
if platform == "linux":
# Remove the path prefix if picked via Flatpak portal
subtitle = re.sub("/run/user/\\d*/doc/.*/", "", subtitle)
# Replace the home directory with "~"
subtitle = re.sub(f"^{str(shared.home)}", "~", subtitle)
action_row.set_subtitle(subtitle)
def resolve_locations(self, source: Source) -> None:
"""Resolve locations and add a warning if location cannot be found"""
for location_name, location in source.locations._asdict().items():
action_row = getattr(
self, f"{source.source_id}_{location_name}_action_row", None
)
if not action_row:
continue
try:
location.resolve()
except UnresolvableLocationError:
title = _("Installation Not Found")
description = _("Select a valid directory")
format_start = '<span rise="12pt"><b><big>'
format_end = "</big></b></span>\n"
popover = Gtk.Popover(
focusable=True,
child=(
Gtk.Label(
label=format_start + title + format_end + description,
use_markup=True,
wrap=True,
max_width_chars=50,
halign=Gtk.Align.CENTER,
valign=Gtk.Align.CENTER,
justify=Gtk.Justification.CENTER,
margin_top=9,
margin_bottom=9,
margin_start=12,
margin_end=12,
)
),
)
popover.update_property(
(Gtk.AccessibleProperty.LABEL,), (title + description,)
)
def set_a11y_label(widget: Gtk.Popover) -> None:
self.set_focus(widget)
popover.connect("show", set_a11y_label)
menu_button = Gtk.MenuButton(
icon_name="dialog-warning-symbolic",
valign=Gtk.Align.CENTER,
popover=popover,
tooltip_text=_("Warning"),
)
menu_button.add_css_class("warning")
action_row.add_prefix(menu_button)
self.warning_menu_buttons[source.source_id] = menu_button
def init_source_row(self, source: Source) -> None:
"""Initialize a preference row for a source class"""
def set_dir(_widget: Any, result: Gio.Task, location_name: str) -> None:
"""Callback called when a dir picker button is clicked"""
try:
path = Path(self.file_chooser.select_folder_finish(result).get_path())
except GLib.Error:
return
# Good picked location
location = source.locations._asdict()[location_name]
if location.check_candidate(path):
shared.schema.set_string(location.schema_key, str(path))
self.update_source_action_row_paths(source)
if self.warning_menu_buttons.get(source.source_id):
action_row = getattr(
self, f"{source.source_id}_{location_name}_action_row", None
)
action_row.remove( # type: ignore
self.warning_menu_buttons[source.source_id]
)
self.warning_menu_buttons.pop(source.source_id)
logging.debug("User-set value for %s is %s", location.schema_key, path)
# Bad picked location, inform user
else:
title = _("Invalid Directory")
dialog = create_dialog(
self,
title,
location.invalid_subtitle.format(source.name),
"choose_folder",
_("Set Location"),
)
def on_response(widget: Any, response: str) -> None:
if response == "choose_folder":
self.choose_folder(widget, set_dir, location_name)
dialog.connect("response", on_response)
# Bind expander row activation to source being enabled
expander_row = getattr(self, f"{source.source_id}_expander_row")
shared.schema.bind(
source.source_id,
expander_row,
"enable-expansion",
Gio.SettingsBindFlags.DEFAULT,
)
# Connect dir picker buttons
for location_name in source.locations._asdict():
button = getattr(
self, f"{source.source_id}_{location_name}_file_chooser_button", None
)
if button is not None:
button.connect("clicked", self.choose_folder, set_dir, location_name)
# Set the source row subtitles
self.resolve_locations(source)
self.update_source_action_row_paths(source)

View File

@@ -1,84 +0,0 @@
# shared.py.in
#
# Copyright 2022-2023 kramo
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# SPDX-License-Identifier: GPL-3.0-or-later
from enum import IntEnum, auto
from os import getenv
from pathlib import Path
from gi.repository import Gdk, Gio, GLib
class AppState(IntEnum):
DEFAULT = auto()
LOAD_FROM_DISK = auto()
IMPORT = auto()
REMOVE_ALL_GAMES = auto()
UNDO_REMOVE_ALL_GAMES = auto()
APP_ID = "@APP_ID@"
VERSION = "@VERSION@"
PREFIX = "@PREFIX@"
PROFILE = "@PROFILE@"
TIFF_COMPRESSION = "@TIFF_COMPRESSION@"
SPEC_VERSION = 1.5 # The version of the game_id.json spec
schema = Gio.Settings.new(APP_ID)
state_schema = Gio.Settings.new(APP_ID + ".State")
home = Path.home()
data_dir = Path(GLib.get_user_data_dir())
host_data_dir = Path(getenv("HOST_XDG_DATA_HOME", Path.home() / ".local" / "share"))
config_dir = Path(GLib.get_user_config_dir())
host_config_dir = Path(getenv("HOST_XDG_CONFIG_HOME", Path.home() / ".config"))
cache_dir = Path(GLib.get_user_cache_dir())
host_cache_dir = Path(getenv("HOST_XDG_CACHE_HOME", Path.home() / ".cache"))
flatpak_dir = home / ".var" / "app"
games_dir = data_dir / "cartridges" / "games"
covers_dir = data_dir / "cartridges" / "covers"
appdata_dir = Path(getenv("appdata") or r"C:\Users\Default\AppData\Roaming")
local_appdata_dir = Path(
getenv("csidl_local_appdata") or r"C:\Users\Default\AppData\Local"
)
programfiles32_dir = Path(getenv("programfiles(x86)") or r"C:\Program Files (x86)")
app_support_dir = home / "Library" / "Application Support"
try:
scale_factor = max(
monitor.get_scale_factor()
for monitor in Gdk.Display.get_default().get_monitors()
)
except AttributeError: # If shared.py is imported by the search provider
pass
else:
image_size = (200 * scale_factor, 300 * scale_factor)
# pylint: disable=invalid-name
win = None
importer = None
import_time = None
store = None
log_files = []

View File

@@ -1,78 +0,0 @@
# shared.pyi
#
# Copyright 2024 kramo
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# SPDX-License-Identifier: GPL-3.0-or-later
from pathlib import Path
from typing import Optional
from gi.repository import Gio
from cartridges.importer.importer import Importer
from cartridges.store.store import Store
from cartridges.window import CartridgesWindow
class AppState:
DEFAULT: int
LOAD_FROM_DISK: int
IMPORT: int
REMOVE_ALL_GAMES: int
UNDO_REMOVE_ALL_GAMES: int
APP_ID: str
VERSION: str
PREFIX: str
PROFILE: str
TIFF_COMPRESSION: str
SPEC_VERSION: float
schema: Gio.Settings
state_schema: Gio.Settings
home: Path
data_dir: Path
host_data_dir: Path
config_dir: Path
host_config_dir: Path
cache_dir: Path
host_cache_dir: Path
flatpak_dir: Path
games_dir: Path
covers_dir: Path
appdata_dir: Path
local_appdata_dir: Path
programfiles32_dir: Path
app_support_dir: Path
scale_factor: int
image_size: int
win: Optional[CartridgesWindow]
importer: Optional[Importer]
import_time: Optional[int]
store = Optional[Store]
log_files: list[Path]

View File

@@ -1,198 +0,0 @@
# local_cover_manager.py
#
# Copyright 2023 Geoffrey Coulaud
# Copyright 2023 kramo
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# SPDX-License-Identifier: GPL-3.0-or-later
from pathlib import Path
from typing import NamedTuple
import requests
from gi.repository import GdkPixbuf, Gio
from requests.exceptions import HTTPError, SSLError
from cartridges import shared
from cartridges.game import Game
from cartridges.store.managers.manager import Manager
from cartridges.store.managers.steam_api_manager import SteamAPIManager
from cartridges.utils.save_cover import convert_cover, save_cover
class ImageSize(NamedTuple):
width: float = 0
height: float = 0
@property
def aspect_ratio(self) -> float:
return self.width / self.height
def __str__(self):
return f"{self.width}x{self.height}"
def __mul__(self, scale: float | int) -> "ImageSize":
return ImageSize(
self.width * scale,
self.height * scale,
)
def __truediv__(self, divisor: float | int) -> "ImageSize":
return self * (1 / divisor)
def __add__(self, other_size: "ImageSize") -> "ImageSize":
return ImageSize(
self.width + other_size.width,
self.height + other_size.height,
)
def __sub__(self, other_size: "ImageSize") -> "ImageSize":
return self + (other_size * -1)
def element_wise_div(self, other_size: "ImageSize") -> "ImageSize":
"""Divide every element of self by the equivalent in the other size"""
return ImageSize(
self.width / other_size.width,
self.height / other_size.height,
)
def element_wise_mul(self, other_size: "ImageSize") -> "ImageSize":
"""Multiply every element of self by the equivalent in the other size"""
return ImageSize(
self.width * other_size.width,
self.height * other_size.height,
)
def invert(self) -> "ImageSize":
"""Invert the element of self"""
return ImageSize(1, 1).element_wise_div(self)
class CoverManager(Manager):
"""
Manager in charge of adding the cover image of the game
Order of priority is:
1. local cover
2. icon cover
3. online cover
"""
run_after = (SteamAPIManager,)
retryable_on = (HTTPError, SSLError, ConnectionError)
def download_image(self, url: str) -> Path:
image_file = Gio.File.new_tmp()[0]
path = Path(image_file.get_path())
with requests.get(url, timeout=5) as cover:
cover.raise_for_status()
path.write_bytes(cover.content)
return path
def is_stretchable(self, source_size: ImageSize, cover_size: ImageSize) -> bool:
is_taller = source_size.aspect_ratio < cover_size.aspect_ratio
if is_taller:
return True
max_stretch = 0.12
resized_height = (1 / source_size.aspect_ratio) * cover_size.width
stretch = 1 - (resized_height / cover_size.height)
return stretch <= max_stretch
def composite_cover(
self,
image_path: Path,
scale: float = 1,
blur_size: ImageSize = ImageSize(2, 2),
) -> GdkPixbuf.Pixbuf:
"""
Return the image composited with a background blur.
If the image is stretchable, just stretch it.
:param path: Path where the source image is located
:param scale:
Scale of the smalled image side
compared to the corresponding side in the cover
:param blur_size: Size of the downscaled image used for the blur
"""
# Load source image
source = GdkPixbuf.Pixbuf.new_from_file(
str(convert_cover(image_path, resize=False))
)
source_size = ImageSize(source.get_width(), source.get_height())
cover_size = ImageSize._make(shared.image_size)
# Stretch if possible
if scale == 1 and self.is_stretchable(source_size, cover_size):
return source
# Create the blurred cover background
# fmt: off
cover = (
source
.scale_simple(*blur_size, GdkPixbuf.InterpType.BILINEAR)
.scale_simple(*cover_size, GdkPixbuf.InterpType.BILINEAR)
)
# fmt: on
# Scale to fit, apply scaling, then center
uniform_scale = scale * min(cover_size.element_wise_div(source_size))
source_in_cover_size = source_size * uniform_scale
source_in_cover_position = (cover_size - source_in_cover_size) / 2
# Center the scaled source image in the cover
source.composite(
cover,
*source_in_cover_position,
*source_in_cover_size,
*source_in_cover_position,
uniform_scale,
uniform_scale,
GdkPixbuf.InterpType.BILINEAR,
255,
)
return cover
def main(self, game: Game, additional_data: dict) -> None:
if game.blacklisted:
return
for key in (
"local_image_path",
"local_icon_path",
"online_cover_url",
):
# Get an image path
if not (value := additional_data.get(key)):
continue
if key == "online_cover_url":
image_path = self.download_image(value)
else:
image_path = Path(value)
if not image_path.is_file():
continue
# Icon cover
composite_kwargs = {}
if key == "local_icon_path":
composite_kwargs["scale"] = 0.7
composite_kwargs["blur_size"] = ImageSize(1, 2)
save_cover(
game.game_id,
convert_cover(
pixbuf=self.composite_cover(image_path, **composite_kwargs)
),
)

View File

@@ -1,163 +0,0 @@
# store.py
#
# Copyright 2023 Geoffrey Coulaud
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# SPDX-License-Identifier: GPL-3.0-or-later
import logging
from typing import Any, Generator, MutableMapping, Optional
from cartridges import shared
from cartridges.game import Game
from cartridges.store.managers.manager import Manager
from cartridges.store.pipeline import Pipeline
class Store:
"""Class in charge of handling games being added to the app."""
managers: dict[type[Manager], Manager]
pipeline_managers: set[Manager]
pipelines: dict[str, Pipeline]
source_games: MutableMapping[str, MutableMapping[str, Game]]
new_game_ids: set[str]
duplicate_game_ids: set[str]
def __init__(self) -> None:
self.managers = {}
self.pipeline_managers = set()
self.pipelines = {}
self.source_games = {}
self.new_game_ids = set()
self.duplicate_game_ids = set()
def __contains__(self, obj: object) -> bool:
"""Check if the game is present in the store with the `in` keyword"""
if not isinstance(obj, Game):
return False
if not (source_mapping := self.source_games.get(obj.base_source)):
return False
return obj.game_id in source_mapping
def __iter__(self) -> Generator[Game, None, None]:
"""Iterate through the games in the store with `for ... in`"""
for _source_id, games_mapping in self.source_games.items():
for _game_id, game in games_mapping.items():
yield game
def __len__(self) -> int:
"""Get the number of games in the store with the `len` builtin"""
return sum(len(source_mapping) for source_mapping in self.source_games.values())
def __getitem__(self, game_id: str) -> Game:
"""Get a game by its id with `store["game_id_goes_here"]`"""
for game in iter(self):
if game.game_id == game_id:
return game
raise KeyError("Game not found in store")
def get(self, game_id: str, default: Any = None) -> Game | Any:
"""Get a game by its ID, with a fallback if not found"""
try:
game = self[game_id]
return game
except KeyError:
return default
def add_manager(self, manager: Manager, in_pipeline: bool = True) -> None:
"""Add a manager to the store"""
manager_type = type(manager)
self.managers[manager_type] = manager
self.toggle_manager_in_pipelines(manager_type, in_pipeline)
def toggle_manager_in_pipelines(
self, manager_type: type[Manager], enable: bool
) -> None:
"""Change if a manager should run in new pipelines"""
if enable:
self.pipeline_managers.add(self.managers[manager_type])
else:
self.pipeline_managers.discard(self.managers[manager_type])
def cleanup_game(self, game: Game) -> None:
"""Remove a game's files, dismiss any loose toasts"""
for path in (
shared.games_dir / f"{game.game_id}.json",
shared.covers_dir / f"{game.game_id}.tiff",
shared.covers_dir / f"{game.game_id}.gif",
):
path.unlink(missing_ok=True)
# TODO: don't run this if the state is startup
for undo in ("remove", "hide"):
try:
shared.win.toasts[(game, undo)].dismiss()
shared.win.toasts.pop((game, undo))
except KeyError:
pass
def add_game(
self, game: Game, additional_data: dict, run_pipeline: bool = True
) -> Optional[Pipeline]:
"""Add a game to the app"""
# Ignore games from a newer spec version
if game.version > shared.SPEC_VERSION:
return None
# Scanned game is already removed, just clean it up
if game.removed:
self.cleanup_game(game)
return None
# Handle game duplicates
stored_game = self.get(game.game_id)
if not stored_game:
# New game, do as normal
logging.debug("New store game %s (%s)", game.name, game.game_id)
self.new_game_ids.add(game.game_id)
elif stored_game.removed:
# Will replace a removed game, cleanup its remains
logging.debug(
"New store game %s (%s) (replacing a removed one)",
game.name,
game.game_id,
)
self.cleanup_game(stored_game)
self.new_game_ids.add(game.game_id)
else:
# Duplicate game, ignore it
logging.debug("Duplicate store game %s (%s)", game.name, game.game_id)
self.duplicate_game_ids.add(game.game_id)
return None
# Connect signals
for manager in self.managers.values():
for signal in manager.signals:
game.connect(signal, manager.run)
# Add the game to the store
if not game.base_source in self.source_games:
self.source_games[game.base_source] = {}
self.source_games[game.base_source][game.game_id] = game
# Run the pipeline for the game
if not run_pipeline:
return None
pipeline = Pipeline(game, additional_data, self.pipeline_managers)
self.pipelines[game.game_id] = pipeline
pipeline.advance()
return pipeline

View File

@@ -1,537 +0,0 @@
# window.py
#
# Copyright 2022-2023 kramo
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# SPDX-License-Identifier: GPL-3.0-or-later
# pyright: reportAssignmentType=none
from sys import platform
from typing import Any, Optional
from cartridges import shared
from cartridges.game import Game
from cartridges.game_cover import GameCover
from cartridges.utils.relative_date import relative_date
from gi.repository import Adw, Gio, GLib, Gtk, Pango
@Gtk.Template(resource_path=shared.PREFIX + "/gtk/window.ui")
class CartridgesWindow(Adw.ApplicationWindow):
__gtype_name__ = "CartridgesWindow"
overlay_split_view: Adw.OverlaySplitView = Gtk.Template.Child()
navigation_view: Adw.NavigationView = Gtk.Template.Child()
sidebar_navigation_page: Adw.NavigationPage = Gtk.Template.Child()
sidebar: Gtk.ListBox = Gtk.Template.Child()
all_games_row_box: Gtk.Box = Gtk.Template.Child()
all_games_no_label: Gtk.Label = Gtk.Template.Child()
added_row_box: Gtk.Box = Gtk.Template.Child()
added_games_no_label: Gtk.Label = Gtk.Template.Child()
toast_overlay: Adw.ToastOverlay = Gtk.Template.Child()
primary_menu_button: Gtk.MenuButton = Gtk.Template.Child()
show_sidebar_button: Gtk.Button = Gtk.Template.Child()
details_view: Gtk.Overlay = Gtk.Template.Child()
library_page: Adw.NavigationPage = Gtk.Template.Child()
library_view: Adw.ToolbarView = Gtk.Template.Child()
library: Gtk.FlowBox = Gtk.Template.Child()
scrolledwindow: Gtk.ScrolledWindow = Gtk.Template.Child()
library_overlay: Gtk.Overlay = Gtk.Template.Child()
notice_empty: Adw.StatusPage = Gtk.Template.Child()
notice_no_results: Adw.StatusPage = Gtk.Template.Child()
search_bar: Gtk.SearchBar = Gtk.Template.Child()
search_entry: Gtk.SearchEntry = Gtk.Template.Child()
search_button: Gtk.ToggleButton = Gtk.Template.Child()
details_page: Adw.NavigationPage = Gtk.Template.Child()
details_view_toolbar_view: Adw.ToolbarView = Gtk.Template.Child()
details_view_cover: Gtk.Picture = Gtk.Template.Child()
details_view_spinner: Adw.Spinner = Gtk.Template.Child()
details_view_title: Gtk.Label = Gtk.Template.Child()
details_view_blurred_cover: Gtk.Picture = Gtk.Template.Child()
details_view_play_button: Gtk.Button = Gtk.Template.Child()
details_view_developer: Gtk.Label = Gtk.Template.Child()
details_view_added: Gtk.ShortcutLabel = Gtk.Template.Child()
details_view_last_played: Gtk.Label = Gtk.Template.Child()
details_view_hide_button: Gtk.Button = Gtk.Template.Child()
hidden_library_page: Adw.NavigationPage = Gtk.Template.Child()
hidden_primary_menu_button: Gtk.MenuButton = Gtk.Template.Child()
hidden_library: Gtk.FlowBox = Gtk.Template.Child()
hidden_library_view: Adw.ToolbarView = Gtk.Template.Child()
hidden_scrolledwindow: Gtk.ScrolledWindow = Gtk.Template.Child()
hidden_library_overlay: Gtk.Overlay = Gtk.Template.Child()
hidden_notice_empty: Adw.StatusPage = Gtk.Template.Child()
hidden_notice_no_results: Adw.StatusPage = Gtk.Template.Child()
hidden_search_bar: Gtk.SearchBar = Gtk.Template.Child()
hidden_search_entry: Gtk.SearchEntry = Gtk.Template.Child()
hidden_search_button: Gtk.ToggleButton = Gtk.Template.Child()
game_covers: dict = {}
toasts: dict = {}
active_game: Game
details_view_game_cover: Optional[GameCover] = None
sort_state: str = "last_played"
filter_state: str = "all"
source_rows: dict = {}
def create_source_rows(self) -> None:
def get_removed(source_id: str) -> Any:
removed = tuple(
game.removed or game.hidden or game.blacklisted
for game in shared.store.source_games[source_id].values()
)
return (
(count,) if (count := sum(removed)) != len(removed) else False
) # Return a tuple because 0 == False and 1 == True
total_games_no = 0
restored = False
selected_id = (
self.source_rows[selected_row][0]
if (selected_row := self.sidebar.get_selected_row()) in self.source_rows
else None
)
if selected_row == self.added_row_box.get_parent():
self.sidebar.select_row(self.added_row_box.get_parent())
restored = True
if added_missing := (
not shared.store.source_games.get("imported")
or not (removed := get_removed("imported"))
):
self.sidebar.select_row(self.all_games_row_box.get_parent())
else:
games_no = len(shared.store.source_games["imported"]) - removed[0]
self.added_games_no_label.set_label(str(games_no))
total_games_no += games_no
self.added_row_box.get_parent().set_visible(not added_missing)
self.sidebar.get_row_at_index(2).set_visible(False)
while row := self.sidebar.get_row_at_index(3):
self.sidebar.remove(row)
for source_id in shared.store.source_games:
if source_id == "imported":
continue
if not (removed := get_removed(source_id)):
continue
row = Gtk.Box(
margin_top=12,
margin_bottom=12,
margin_start=6,
margin_end=6,
spacing=12,
)
games_no = len(shared.store.source_games[source_id]) - removed[0]
total_games_no += games_no
row.append(
Gtk.Image.new_from_icon_name(
"user-desktop-symbolic"
if (split_id := source_id.split("_")[0]) == "desktop"
else f"{split_id}-source-symbolic"
)
)
row.append(
Gtk.Label(
label=self.get_application().get_source_name(source_id),
halign=Gtk.Align.START,
wrap=True,
wrap_mode=Pango.WrapMode.CHAR,
)
)
row.append(
games_no_label := Gtk.Label(
label=games_no,
hexpand=True,
halign=Gtk.Align.END,
)
)
games_no_label.add_css_class("dim-label")
# Order rows based on the number of games in them
index = 3
while source_row := self.sidebar.get_row_at_index(index):
if self.source_rows[source_row][1] < games_no:
self.sidebar.insert(row, index)
break
index += 1
if not row.get_parent():
self.sidebar.append(row)
self.source_rows[row.get_parent()] = (
source_id,
games_no,
)
if source_id == selected_id:
self.sidebar.select_row(row.get_parent())
restored = True
self.sidebar.get_row_at_index(2).set_visible(True)
self.all_games_no_label.set_label(str(total_games_no))
if not restored:
self.sidebar.select_row(self.all_games_row_box.get_parent())
def row_selected(self, _widget: Any, row: Gtk.ListBoxRow | None) -> None:
if not row:
return
match row.get_child():
case self.all_games_row_box:
value = "all"
case self.added_row_box:
value = "imported"
case _:
value = self.source_rows[row][0]
self.library_page.set_title(self.get_application().get_source_name(value))
self.filter_state = value
self.library.invalidate_filter()
if self.overlay_split_view.get_collapsed():
self.overlay_split_view.set_show_sidebar(False)
def __init__(self, **kwargs: Any) -> None:
super().__init__(**kwargs)
if platform == "darwin":
self.sidebar_navigation_page.set_title("")
self.details_view.set_measure_overlay(self.details_view_toolbar_view, True)
self.details_view.set_clip_overlay(self.details_view_toolbar_view, False)
self.library.set_filter_func(self.filter_func)
self.hidden_library.set_filter_func(self.filter_func)
self.library.set_sort_func(self.sort_func)
self.hidden_library.set_sort_func(self.sort_func)
self.set_library_child()
self.notice_empty.set_icon_name(shared.APP_ID + "-symbolic")
self.overlay_split_view.set_show_sidebar(
shared.state_schema.get_boolean("show-sidebar")
)
self.sidebar.select_row(self.all_games_row_box.get_parent())
if shared.PROFILE == "development":
self.add_css_class("devel")
# Connect search entries
self.search_bar.connect_entry(self.search_entry)
self.hidden_search_bar.connect_entry(self.hidden_search_entry)
# Connect signals
self.search_entry.connect("search-changed", self.search_changed, False)
self.hidden_search_entry.connect("search-changed", self.search_changed, True)
self.search_entry.connect("activate", self.show_details_page_search)
self.hidden_search_entry.connect("activate", self.show_details_page_search)
self.navigation_view.connect("popped", self.set_show_hidden)
self.navigation_view.connect("pushed", self.set_show_hidden)
self.sidebar.connect("row-selected", self.row_selected)
style_manager = Adw.StyleManager.get_default()
style_manager.connect("notify::dark", self.set_details_view_opacity)
style_manager.connect("notify::high-contrast", self.set_details_view_opacity)
# Allow for a custom number of rows for the library
if shared.schema.get_uint("library-rows"):
shared.schema.bind(
"library-rows",
self.library,
"max-children-per-line",
Gio.SettingsBindFlags.DEFAULT,
)
shared.schema.bind(
"library-rows",
self.hidden_library,
"max-children-per-line",
Gio.SettingsBindFlags.DEFAULT,
)
else:
self.library.set_max_children_per_line(10)
self.hidden_library.set_max_children_per_line(10)
def search_changed(self, _widget: Any, hidden: bool) -> None:
# Refresh search filter on keystroke in search box
(self.hidden_library if hidden else self.library).invalidate_filter()
def set_library_child(self) -> None:
child, hidden_child = self.notice_empty, self.hidden_notice_empty
for game in shared.store:
if game.removed or game.blacklisted:
continue
if game.hidden:
if game.filtered and hidden_child:
hidden_child = self.hidden_notice_no_results
continue
hidden_child = None
else:
if game.filtered and child:
child = self.notice_no_results
continue
child = None
def remove_from_overlay(widget: Gtk.Widget) -> None:
if isinstance(widget.get_parent(), Gtk.Overlay):
widget.get_parent().remove_overlay(widget)
if child:
self.library_overlay.add_overlay(child)
else:
remove_from_overlay(self.notice_empty)
remove_from_overlay(self.notice_no_results)
if hidden_child:
self.hidden_library_overlay.add_overlay(hidden_child)
else:
remove_from_overlay(self.hidden_notice_empty)
remove_from_overlay(self.hidden_notice_no_results)
def filter_func(self, child: Gtk.Widget) -> bool:
game = child.get_child()
text = (
(
self.hidden_search_entry
if self.navigation_view.get_visible_page() == self.hidden_library_page
else self.search_entry
)
.get_text()
.lower()
)
filtered = text != "" and not (
text in game.name.lower()
or (text in game.developer.lower() if game.developer else False)
)
if not filtered:
if self.filter_state == "all":
pass
elif game.base_source != self.filter_state:
filtered = True
game.filtered = filtered
self.set_library_child()
return not filtered
def set_active_game(self, _widget: Any, _pspec: Any, game: Game) -> None:
self.active_game = game
def show_details_page(self, game: Game) -> None:
self.active_game = game
self.details_view_cover.set_opacity(int(not game.loading))
self.details_view_spinner.set_visible(game.loading)
self.details_view_developer.set_label(game.developer or "")
self.details_view_developer.set_visible(bool(game.developer))
icon, text = "view-conceal-symbolic", _("Hide")
if game.hidden:
icon, text = "view-reveal-symbolic", _("Unhide")
self.details_view_hide_button.set_icon_name(icon)
self.details_view_hide_button.set_tooltip_text(text)
if self.details_view_game_cover:
self.details_view_game_cover.pictures.remove(self.details_view_cover)
self.details_view_game_cover = game.game_cover
self.details_view_game_cover.add_picture(self.details_view_cover)
self.details_view_blurred_cover.set_paintable(
self.details_view_game_cover.get_blurred()
)
self.details_view_title.set_label(game.name)
self.details_page.set_title(game.name)
date = relative_date(game.added)
self.details_view_added.set_label(
# The variable is the date when the game was added
_("Added: {}").format(date)
)
last_played_date = (
relative_date(game.last_played) if game.last_played else _("Never")
)
self.details_view_last_played.set_label(
# The variable is the date when the game was last played
_("Last played: {}").format(last_played_date)
)
if self.navigation_view.get_visible_page() != self.details_page:
self.navigation_view.push(self.details_page)
self.set_focus(self.details_view_play_button)
self.set_details_view_opacity()
def set_details_view_opacity(self, *_args: Any) -> None:
if self.navigation_view.get_visible_page() != self.details_page:
return
if (
style_manager := Adw.StyleManager.get_default()
).get_high_contrast() or not style_manager.get_system_supports_color_schemes():
self.details_view_blurred_cover.set_opacity(0.3)
return
self.details_view_blurred_cover.set_opacity(
1 - self.details_view_game_cover.luminance[0] # type: ignore
if style_manager.get_dark()
else self.details_view_game_cover.luminance[1] # type: ignore
)
def sort_func(self, child1: Gtk.Widget, child2: Gtk.Widget) -> int:
var, order = "name", True
if self.sort_state in ("newest", "oldest"):
var, order = "added", self.sort_state == "newest"
elif self.sort_state == "last_played":
var = "last_played"
elif self.sort_state == "a-z":
order = False
def get_value(index: int) -> str:
return (
str(getattr((child1.get_child(), child2.get_child())[index], var))
.lower()
.removeprefix("the ")
)
if var != "name" and get_value(0) == get_value(1):
var, order = "name", False
return ((get_value(0) > get_value(1)) ^ order) * 2 - 1
def set_show_hidden(self, navigation_view: Adw.NavigationView, *_args: Any) -> None:
self.lookup_action("show_hidden").set_enabled(
navigation_view.get_visible_page() == self.library_page
)
def on_show_sidebar_action(self, *_args: Any) -> None:
shared.state_schema.set_boolean(
"show-sidebar", (value := not self.overlay_split_view.get_show_sidebar())
)
self.overlay_split_view.set_show_sidebar(value)
def on_go_to_parent_action(self, *_args: Any) -> None:
if self.navigation_view.get_visible_page() == self.details_page:
self.navigation_view.pop()
def on_go_home_action(self, *_args: Any) -> None:
self.navigation_view.pop_to_page(self.library_page)
def on_show_hidden_action(self, *_args: Any) -> None:
if self.navigation_view.get_visible_page() == self.hidden_library_page:
return
self.navigation_view.push(self.hidden_library_page)
def on_sort_action(self, action: Gio.SimpleAction, state: GLib.Variant) -> None:
action.set_state(state)
self.sort_state = str(state).strip("'")
self.library.invalidate_sort()
shared.state_schema.set_string("sort-mode", self.sort_state)
def on_toggle_search_action(self, *_args: Any) -> None:
if self.navigation_view.get_visible_page() == self.library_page:
search_bar = self.search_bar
search_entry = self.search_entry
elif self.navigation_view.get_visible_page() == self.hidden_library_page:
search_bar = self.hidden_search_bar
search_entry = self.hidden_search_entry
else:
return
search_bar.set_search_mode(not (search_mode := search_bar.get_search_mode()))
if not search_mode:
self.set_focus(search_entry)
search_entry.set_text("")
def show_details_page_search(self, widget: Gtk.Widget) -> None:
library = (
self.hidden_library if widget == self.hidden_search_entry else self.library
)
index = 0
while True:
if not (child := library.get_child_at_index(index)):
break
if self.filter_func(child):
self.show_details_page(child.get_child())
break
index += 1
def on_undo_action(
self, _widget: Any, game: Optional[Game] = None, undo: Optional[str] = None
) -> None:
if not game: # If the action was activated via Ctrl + Z
if shared.importer and (
shared.importer.imported_game_ids or shared.importer.removed_game_ids
):
shared.importer.undo_import()
return
try:
game = tuple(self.toasts.keys())[-1][0]
undo = tuple(self.toasts.keys())[-1][1]
except IndexError:
return
if game:
if undo == "hide":
game.toggle_hidden(False)
elif undo == "remove":
game.removed = False
game.save()
game.update()
self.toasts[(game, undo)].dismiss()
self.toasts.pop((game, undo))
def on_open_menu_action(self, *_args: Any) -> None:
if self.navigation_view.get_visible_page() == self.library_page:
self.primary_menu_button.popup()
elif self.navigation_view.get_visible_page() == self.hidden_library_page:
self.hidden_primary_menu_button.popup()
def on_close_action(self, *_args: Any) -> None:
self.close()

View File

@@ -1,24 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<gresources>
<gresource prefix="@PREFIX@">
<file preprocess="xml-stripblanks">@APP_ID@.metainfo.xml</file>
<file preprocess="xml-stripblanks">gtk/details-dialog.ui</file>
<file preprocess="xml-stripblanks">gtk/window.ui</file>
<file preprocess="xml-stripblanks">gtk/help-overlay.ui</file>
<file preprocess="xml-stripblanks">gtk/game.ui</file>
<file preprocess="xml-stripblanks">gtk/preferences.ui</file>
<file preprocess="xml-stripblanks">gtk/window.ui</file>
<file preprocess="xml-stripblanks" alias="shortcuts-dialog.ui">gtk/shortcuts-dialog.ui</file>
<file preprocess="xml-stripblanks">gtk/details-window.ui</file>
<file alias="style.css">gtk/style.css</file>
<file alias="style-dark.css">gtk/style-dark.css</file>
<file>library_placeholder.svg</file>
<file>library_placeholder_small.svg</file>
</gresource>
<gresource prefix="@PREFIX@/icons/scalable/categories/">
<file alias="bottles-source-symbolic.svg">icons/sources/bottles-source-symbolic.svg</file>
<file alias="flatpak-source-symbolic.svg">icons/sources/flatpak-source-symbolic.svg</file>
<file alias="heroic-source-symbolic.svg">icons/sources/heroic-source-symbolic.svg</file>
<file alias="itch-source-symbolic.svg">icons/sources/itch-source-symbolic.svg</file>
<file alias="legendary-source-symbolic.svg">icons/sources/legendary-source-symbolic.svg</file>
<file alias="lutris-source-symbolic.svg">icons/sources/lutris-source-symbolic.svg</file>
<file alias="retroarch-source-symbolic.svg">icons/sources/retroarch-source-symbolic.svg</file>
<file alias="steam-source-symbolic.svg">icons/sources/steam-source-symbolic.svg</file>
</gresource>
</gresources>

View File

@@ -1,145 +0,0 @@
using Gtk 4.0;
using Adw 1;
template $DetailsDialog: Adw.Dialog {
content-width: 480;
Adw.ToolbarView {
[top]
Adw.HeaderBar HeaderBar {
show-start-title-buttons: false;
show-end-title-buttons: false;
[start]
Button cancel_button {
label: _("Cancel");
action-name: "window.close";
}
[end]
Button apply_button {
styles [
"suggested-action"
]
}
}
Adw.PreferencesPage {
Adw.PreferencesGroup cover_group {
Adw.Clamp cover_clamp {
maximum-size: 200;
Overlay {
[overlay]
Adw.Spinner spinner {
visible: false;
}
Overlay cover_overlay {
halign: center;
valign: center;
[overlay]
Button cover_button_edit {
icon-name: "document-edit-symbolic";
tooltip-text: _("New Cover");
halign: end;
valign: end;
margin-bottom: 6;
margin-end: 6;
styles [
"circular",
"osd"
]
}
[overlay]
Revealer cover_button_delete_revealer {
transition-type: crossfade;
margin-end: 40;
Button cover_button_delete {
icon-name: "user-trash-symbolic";
tooltip-text: _("Delete Cover");
halign: end;
valign: end;
margin-bottom: 6;
margin-end: 6;
styles [
"circular",
"osd"
]
}
}
Picture cover {
width-request: 200;
height-request: 300;
styles [
"card"
]
}
}
}
}
}
Adw.PreferencesGroup {
Adw.EntryRow name {
title: _("Title");
}
Adw.EntryRow developer {
title: _("Developer (optional)");
}
}
Adw.PreferencesGroup {
Adw.EntryRow executable {
title: _("Executable");
[suffix]
Button file_chooser_button {
valign: center;
icon-name: "document-open-symbolic";
tooltip-text: _("Select File");
styles [
"flat",
]
}
[suffix]
MenuButton exec_info_button {
valign: center;
icon-name: "help-about-symbolic";
tooltip-text: _("More Info");
popover: Popover exec_info_popover {
focusable: true;
Label exec_info_label {
use-markup: true;
wrap: true;
max-width-chars: 50;
halign: center;
valign: center;
margin-top: 6;
margin-bottom: 6;
margin-start: 6;
margin-end: 6;
}
};
styles [
"flat"
]
}
}
}
}
}
}

161
data/gtk/details-window.blp Normal file
View File

@@ -0,0 +1,161 @@
using Gtk 4.0;
using Adw 1;
template $DetailsWindow : Adw.Window {
default-width: 500;
default-height: -1;
modal: true;
ShortcutController {
Shortcut {
trigger: "Escape";
action: "action(window.close)";
}
}
Box {
orientation: vertical;
Adw.HeaderBar HeaderBar {
show-start-title-buttons: false;
show-end-title-buttons: false;
[start]
Button cancel_button {
label: _("Cancel");
action-name: "window.close";
}
[end]
Button apply_button {
styles [
"suggested-action"
]
}
}
Adw.PreferencesPage {
vexpand: true;
Adw.PreferencesGroup cover_group {
Adw.Clamp cover_clamp {
maximum-size: 200;
Overlay {
[overlay]
Spinner spinner {
margin-start: 72;
margin-end: 72;
}
Overlay cover_overlay {
halign: center;
valign: center;
[overlay]
Button cover_button_edit {
icon-name: "document-edit-symbolic";
tooltip-text: _("New Cover");
halign: end;
valign: end;
margin-bottom: 6;
margin-end: 6;
styles [
"circular", "osd"
]
}
[overlay]
Revealer cover_button_delete_revealer {
transition-type: crossfade;
margin-end: 40;
Button cover_button_delete {
icon-name: "user-trash-symbolic";
tooltip-text: _("Delete Cover");
halign: end;
valign: end;
margin-bottom: 6;
margin-end: 6;
styles [
"circular", "osd"
]
}
}
Picture cover {
width-request: 200;
height-request: 300;
styles [
"card"
]
}
}
}
}
}
Adw.PreferencesGroup title_group {
title: _("Title");
description: _("The title of the game");
Entry name {
accessibility {
label: _("Title");
}
}
}
Adw.PreferencesGroup developer_group {
title: _("Developer");
description: _("The developer or publisher (optional)");
Entry developer {
accessibility {
label: _("Developer");
}
}
}
Adw.PreferencesGroup exec_group {
title: _("Executable");
description: _("File to open or command to run when launching the game");
[header-suffix]
Gtk.MenuButton exec_info_button {
valign: center;
icon-name: "help-about-symbolic";
tooltip-text: _("More Info");
popover: Popover exec_info_popover {
Label exec_info_label {
use-markup: true;
wrap: true;
max-width-chars: 50;
halign: center;
valign: center;
margin-top: 6;
margin-bottom: 6;
margin-start: 6;
margin-end: 6;
selectable: true;
}
};
styles [
"flat"
]
}
Entry executable {
accessibility {
label: _("Executable");
}
}
}
}
}
}

View File

@@ -1,14 +1,13 @@
using Gtk 4.0;
using Adw 1;
template $Game: Box {
template $Game : Box {
orientation: vertical;
halign: center;
valign: start;
Adw.Clamp {
maximum-size: 200;
unit: px;
Overlay {
[overlay]
@@ -64,8 +63,9 @@ template $Game: Box {
Overlay {
[overlay]
Adw.Spinner spinner {
visible: false;
Spinner spinner {
margin-start: 72;
margin-end: 72;
}
Picture cover {
@@ -81,8 +81,8 @@ template $Game: Box {
ellipsize: end;
hexpand: true;
halign: start;
margin-top: 15;
margin-bottom: 15;
margin-top: 14;
margin-bottom: 14;
margin-start: 12;
margin-end: 12;
}
@@ -98,16 +98,38 @@ template $Game: Box {
menu game_options {
section {
item (_("Edit"), "app.edit_game")
item (_("Hide"), "app.hide_game")
item (_("Remove"), "app.remove_game")
item {
label: _("Edit");
action: "app.edit_game";
}
item {
label: _("Hide");
action: "app.hide_game";
}
item {
label: _("Remove");
action: "app.remove_game";
}
}
}
menu hidden_game_options {
section {
item (_("Edit"), "app.edit_game")
item (_("Unhide"), "app.hide_game")
item (_("Remove"), "app.remove_game")
item {
label: _("Edit");
action: "app.edit_game";
}
item {
label: _("Unhide");
action: "app.hide_game";
}
item {
label: _("Remove");
action: "app.remove_game";
}
}
}

68
data/gtk/help-overlay.blp Normal file
View File

@@ -0,0 +1,68 @@
using Gtk 4.0;
ShortcutsWindow help_overlay {
modal: true;
ShortcutsSection {
section-name: "shortcuts";
max-height: 10;
ShortcutsGroup {
title: _("General");
ShortcutsShortcut {
title: _("Quit");
action-name: "app.quit";
}
ShortcutsShortcut {
title: _("Search");
action-name: "win.toggle_search";
}
ShortcutsShortcut {
title: _("Show preferences");
action-name: "app.preferences";
}
ShortcutsShortcut {
title: _("Shortcuts");
action-name: "win.show-help-overlay";
}
ShortcutsShortcut {
title: _("Undo");
action-name: "win.undo";
}
ShortcutsShortcut {
title: _("Open menu");
action-name: "win.open_menu";
}
}
ShortcutsGroup {
title: _("Games");
ShortcutsShortcut {
title: _("Add new game");
action-name: "app.add_game";
}
ShortcutsShortcut {
title: _("Import games");
action-name: "app.import";
}
ShortcutsShortcut {
title: _("Show hidden games");
action-name: "win.show_hidden";
}
ShortcutsShortcut {
title: _("Remove game");
action-name: "app.remove_game_details_view";
}
}
}
}

View File

@@ -1,8 +1,8 @@
using Gtk 4.0;
using Adw 1;
template $CartridgesPreferences: Adw.PreferencesDialog {
search-enabled: true;
template $PreferencesWindow : Adw.PreferencesWindow {
default-height: 500;
Adw.PreferencesPage general_page {
name: "general";
@@ -12,45 +12,71 @@ template $CartridgesPreferences: Adw.PreferencesDialog {
Adw.PreferencesGroup behavior_group {
title: _("Behavior");
Adw.SwitchRow exit_after_launch_switch {
Adw.ActionRow {
title: _("Exit After Launching Games");
activatable-widget: exit_after_launch_switch;
Switch exit_after_launch_switch {
valign: center;
}
}
Adw.SwitchRow cover_launches_game_switch {
Adw.ActionRow {
title: _("Cover Image Launches Game");
subtitle: _("Swaps the behavior of the cover image and the play button");
activatable-widget: cover_launches_game_switch;
Switch cover_launches_game_switch {
valign: center;
}
}
}
Adw.PreferencesGroup images_group {
title: _("Images");
Adw.SwitchRow high_quality_images_switch {
Adw.ActionRow {
title: _("High Quality Images");
subtitle: _("Save game covers losslessly at the cost of storage");
activatable-widget: high_quality_images_switch;
Switch high_quality_images_switch {
valign: center;
}
}
}
Adw.PreferencesGroup danger_zone_group {
title: _("Danger Zone");
separate-rows: true;
Adw.ButtonRow remove_all_games_button_row {
Adw.ActionRow {
title: _("Remove All Games");
styles [
"destructive-action"
]
Button remove_all_games_button {
label: _("Remove");
valign: center;
styles [
"destructive-action",
]
}
}
Adw.ButtonRow reset_button_row {
visible: false;
Adw.ActionRow reset_action_row {
title: "Reset App";
subtitle: "Completely resets and quits Cartridges";
visible: false;
styles [
"destructive-action"
]
Button reset_button {
label: "Reset";
valign: center;
styles [
"destructive-action",
]
}
}
}
}
@@ -59,46 +85,20 @@ template $CartridgesPreferences: Adw.PreferencesDialog {
title: _("Import");
icon-name: "document-save-symbolic";
Adw.PreferencesGroup import_behavior_group {
title: _("Behavior");
Adw.SwitchRow auto_import_switch {
title: _("Import Games Automatically");
}
Adw.SwitchRow remove_missing_switch {
title: _("Remove Uninstalled Games");
}
}
Adw.PreferencesGroup sources_group {
title: _("Sources");
separate-rows: true;
Adw.ExpanderRow steam_expander_row {
title: _("Steam");
show-enable-switch: true;
[prefix]
Image {
icon-name: "steam-source-symbolic";
}
Adw.ActionRow steam_data_action_row {
title: _("Install Location");
Button steam_data_file_chooser_button {
icon-name: "folder-symbolic";
valign: center;
styles [
"flat"
]
}
styles [
"property"
]
}
}
@@ -106,34 +106,31 @@ template $CartridgesPreferences: Adw.PreferencesDialog {
title: _("Lutris");
show-enable-switch: true;
[prefix]
Image {
icon-name: "lutris-source-symbolic";
}
Adw.ActionRow lutris_data_action_row {
title: _("Install Location");
Button lutris_data_file_chooser_button {
icon-name: "folder-symbolic";
valign: center;
styles [
"flat"
]
}
styles [
"property"
]
}
Adw.SwitchRow lutris_import_steam_switch {
Adw.ActionRow lutris_cache_action_row {
title: _("Cache Location");
Button lutris_cache_file_chooser_button {
icon-name: "folder-symbolic";
valign: center;
}
}
Adw.ActionRow {
title: _("Import Steam Games");
}
activatable-widget: lutris_import_steam_switch;
Adw.SwitchRow lutris_import_flatpak_switch {
title: _("Import Flatpak Games");
Switch lutris_import_steam_switch {
valign: center;
}
}
}
@@ -141,42 +138,40 @@ template $CartridgesPreferences: Adw.PreferencesDialog {
title: _("Heroic");
show-enable-switch: true;
[prefix]
Image {
icon-name: "heroic-source-symbolic";
}
Adw.ActionRow heroic_config_action_row {
title: _("Install Location");
Button heroic_config_file_chooser_button {
icon-name: "folder-symbolic";
valign: center;
styles [
"flat"
]
}
styles [
"property"
]
}
Adw.SwitchRow heroic_import_epic_switch {
Adw.ActionRow {
title: _("Import Epic Games");
activatable-widget: heroic_import_epic_switch;
Switch heroic_import_epic_switch {
valign: center;
}
}
Adw.SwitchRow heroic_import_gog_switch {
Adw.ActionRow {
title: _("Import GOG Games");
activatable-widget: heroic_import_gog_switch;
Switch heroic_import_gog_switch {
valign: center;
}
}
Adw.SwitchRow heroic_import_amazon_switch {
title: _("Import Amazon Games");
}
Adw.SwitchRow heroic_import_sideload_switch {
Adw.ActionRow {
title: _("Import Sideloaded Games");
activatable-widget: heroic_import_sideload_switch;
Switch heroic_import_sideload_switch {
valign: center;
}
}
}
@@ -184,26 +179,13 @@ template $CartridgesPreferences: Adw.PreferencesDialog {
title: _("Bottles");
show-enable-switch: true;
[prefix]
Image {
icon-name: "bottles-source-symbolic";
}
Adw.ActionRow bottles_data_action_row {
title: _("Install Location");
Button bottles_data_file_chooser_button {
icon-name: "folder-symbolic";
valign: center;
styles [
"flat"
]
}
styles [
"property"
]
}
}
@@ -211,26 +193,13 @@ template $CartridgesPreferences: Adw.PreferencesDialog {
title: _("itch");
show-enable-switch: true;
[prefix]
Image {
icon-name: "itch-source-symbolic";
}
Adw.ActionRow itch_config_action_row {
title: _("Install Location");
Button itch_config_file_chooser_button {
icon-name: "folder-symbolic";
valign: center;
styles [
"flat"
]
}
styles [
"property"
]
}
}
@@ -238,112 +207,13 @@ template $CartridgesPreferences: Adw.PreferencesDialog {
title: _("Legendary");
show-enable-switch: true;
[prefix]
Image {
icon-name: "legendary-source-symbolic";
}
Adw.ActionRow legendary_config_action_row {
title: _("Install Location");
Button legendary_config_file_chooser_button {
icon-name: "folder-symbolic";
valign: center;
styles [
"flat"
]
}
styles [
"property"
]
}
}
Adw.ExpanderRow retroarch_expander_row {
title: _("RetroArch");
show-enable-switch: true;
[prefix]
Image {
icon-name: "retroarch-source-symbolic";
}
Adw.ActionRow retroarch_config_action_row {
title: _("Install Location");
Button retroarch_config_file_chooser_button {
icon-name: "folder-symbolic";
valign: center;
styles [
"flat"
]
}
styles [
"property"
]
}
}
Adw.ExpanderRow flatpak_expander_row {
title: _("Flatpak");
show-enable-switch: true;
[prefix]
Image {
icon-name: "flatpak-source-symbolic";
}
Adw.ActionRow flatpak_system_data_action_row {
// The location of the system-wide data directory
title: _("System Location");
Button flatpak_system_data_file_chooser_button {
icon-name: "folder-symbolic";
valign: center;
styles [
"flat"
]
}
styles [
"property"
]
}
Adw.ActionRow flatpak_user_data_action_row {
// The location of the user-specific data directory
title: _("User Location");
Button flatpak_user_data_file_chooser_button {
icon-name: "folder-symbolic";
valign: center;
styles [
"flat"
]
}
styles [
"property"
]
}
Adw.SwitchRow flatpak_import_launchers_switch {
title: _("Import Game Launchers");
}
}
Adw.SwitchRow desktop_switch {
title: _("Desktop Entries");
[prefix]
Image {
icon-name: "user-desktop-symbolic";
}
}
}
@@ -365,36 +235,31 @@ template $CartridgesPreferences: Adw.PreferencesDialog {
Adw.PreferencesGroup sgdb_behavior_group {
title: _("Behavior");
Adw.SwitchRow sgdb_switch {
Adw.ActionRow sgdb_switch_row {
title: _("Use SteamGridDB");
subtitle: _("Download images when adding or importing games");
activatable-widget: sgdb_switch;
Switch sgdb_switch {
valign: center;
}
}
Adw.SwitchRow sgdb_prefer_switch {
title: _("Prefer Over Official Images");
}
Adw.SwitchRow sgdb_animated_switch {
title: _("Prefer Animated Images");
}
}
Adw.PreferencesGroup {
Adw.ActionRow {
title: _("Update Covers");
subtitle: _("Fetch covers for games already in your library");
sensitive: bind sgdb_switch.active;
title: _("Prefer Over Official Images");
activatable-widget: sgdb_prefer_switch;
Stack sgdb_stack {
Button sgdb_fetch_button {
label: _("Update");
valign: center;
}
Switch sgdb_prefer_switch {
valign: center;
}
}
Adw.Spinner sgdb_spinner {
visible: false;
valign: center;
}
Adw.ActionRow {
title: _("Prefer Animated Images");
activatable-widget: sgdb_animated_switch;
Switch sgdb_animated_switch {
valign: center;
}
}
}

View File

@@ -1,67 +0,0 @@
using Gtk 4.0;
using Adw 1;
Adw.ShortcutsDialog shortcuts_dialog {
Adw.ShortcutsSection {
title: _("General");
Adw.ShortcutsItem {
title: _("Search");
action-name: "win.toggle_search";
}
Adw.ShortcutsItem {
title: _("Preferences");
action-name: "app.preferences";
}
Adw.ShortcutsItem {
title: _("Keyboard Shortcuts");
action-name: "app.shortcuts";
}
Adw.ShortcutsItem {
title: _("Undo");
action-name: "win.undo";
}
Adw.ShortcutsItem {
title: _("Quit");
action-name: "app.quit";
}
Adw.ShortcutsItem {
title: _("Toggle Sidebar");
action-name: "win.show_sidebar";
}
Adw.ShortcutsItem {
title: _("Main Menu");
action-name: "win.open_menu";
}
}
Adw.ShortcutsSection {
title: _("Games");
Adw.ShortcutsItem {
title: _("Add Game");
action-name: "app.add_game";
}
Adw.ShortcutsItem {
title: _("Import");
action-name: "app.import";
}
Adw.ShortcutsItem {
title: _("Show Hidden Games");
action-name: "win.show_hidden";
}
Adw.ShortcutsItem {
title: _("Remove Game");
action-name: "app.remove_game_details_view";
}
}
}

View File

@@ -1,7 +1,5 @@
:root {
--accent-color: var(--purple-1);
--accent-bg-color: var(--purple-4);
}
@define-color accent_color @purple_1;
@define-color accent_bg_color @purple_4;
#details_view {
background-color: black;
@@ -10,4 +8,4 @@
#details_view_play_button {
color: rgba(0, 0, 0, .8);
background-color: white;
}
}

View File

@@ -1,33 +1,11 @@
:root {
--accent-color: var(--purple-5);
--accent-bg-color: var(--purple-3);
}
.no-hover > flowboxchild:hover {
background-color: transparent;
}
@define-color accent_color @purple_5;
@define-color accent_bg_color @purple_3;
#details_view {
background-color: white;
background-color: white;
}
#details_view_play_button {
color: white;
background-color: rgba(0, 0, 0, 0.8);
}
@media (prefers-color-scheme: dark) {
:root {
--accent-color: var(--purple-1);
--accent-bg-color: var(--purple-4);
}
#details_view {
background-color: black;
}
#details_view_play_button {
color: rgba(0, 0, 0, 0.8);
background-color: white;
}
}
color: white;
background-color: rgba(0, 0, 0, .8);
}

View File

@@ -4,7 +4,7 @@ using Adw 1;
Adw.StatusPage notice_no_results {
icon-name: "system-search-symbolic";
title: _("No Games Found");
description: _("Try a different search");
description: _("Try a different search.");
vexpand: true;
valign: center;
}
@@ -12,14 +12,14 @@ Adw.StatusPage notice_no_results {
Adw.StatusPage hidden_notice_no_results {
icon-name: "system-search-symbolic";
title: _("No Games Found");
description: _("Try a different search");
description: _("Try a different search.");
vexpand: true;
valign: center;
}
Adw.StatusPage notice_empty {
title: _("No Games");
description: _("Use the + button to add games");
description: _("Use the + button to add games.");
vexpand: true;
valign: center;
@@ -38,468 +38,332 @@ Adw.StatusPage notice_empty {
Adw.StatusPage hidden_notice_empty {
icon-name: "view-conceal-symbolic";
title: _("No Hidden Games");
description: _("Games you hide will appear here");
description: _("Games you hide will appear here.");
vexpand: true;
valign: center;
}
template $CartridgesWindow: Adw.ApplicationWindow {
template $CartridgesWindow : Adw.ApplicationWindow {
title: _("Cartridges");
width-request: 360;
height-request: 100;
Adw.Breakpoint {
condition ("max-width: 564px")
setters {
overlay_split_view.collapsed: true;
details_view_box.orientation: vertical;
details_view_box.margin-top: 12;
details_view_box.margin-start: 12;
details_view_box.margin-end: 12;
details_view_details_box.margin-start: 0;
details_view_details_box.margin-end: 0;
details_view_title.margin-top: 30;
details_view_title.halign: center;
details_view_developer.halign: center;
details_view_date_box.halign: center;
details_view_toolbar.halign: center;
details_view_toolbar.orientation: vertical;
details_view_play_button.halign: center;
details_view_toolbar_buttons.margin-start: 0;
}
}
Adw.ToastOverlay toast_overlay {
Adw.NavigationView navigation_view {
Adw.NavigationPage library_page {
title: _("All Games");
Stack stack {
visible-child: library_view;
transition-type: over_left;
Adw.OverlaySplitView overlay_split_view {
sidebar-width-fraction: .2;
Overlay details_view {
name: "details_view";
[sidebar]
Adw.NavigationPage sidebar_navigation_page {
title: _("Cartridges");
[overlay]
Box details_view_box {
orientation: vertical;
Adw.ToolbarView {
[top]
Adw.HeaderBar {
[start]
Button {
icon-name: "sidebar-show-symbolic";
action-name: "win.show_sidebar";
tooltip-text: _("Toggle Sidebar");
}
}
ScrolledWindow {
hscrollbar-policy: never;
ListBox sidebar {
Box all_games_row_box {
margin-top: 12;
margin-bottom: 12;
margin-start: 6;
margin-end: 6;
spacing: 12;
Image {
icon-name: "view-grid-symbolic";
}
Label {
halign: start;
label: _("All Games");
wrap: true;
wrap-mode: char;
}
Label all_games_no_label {
hexpand: true;
halign: end;
styles [
"dim-label",
]
}
}
Box added_row_box {
margin-top: 12;
margin-bottom: 12;
margin-start: 6;
spacing: 12;
Image {
icon-name: "list-add-symbolic";
}
Label {
halign: start;
label: _("Added");
margin-end: 6;
wrap: true;
wrap-mode: char;
}
Label added_games_no_label {
hexpand: true;
halign: end;
margin-end: 6;
styles [
"dim-label",
]
}
}
ListBoxRow {
selectable: false;
activatable: false;
Label {
label: _("Imported");
styles [
"heading",
]
halign: start;
}
}
styles [
"navigation-sidebar",
]
}
}
Adw.HeaderBar {
[start]
Button back_button {
tooltip-text: _("Back");
action-name: "win.go_back";
icon-name: "go-previous-symbolic";
}
[title]
Adw.WindowTitle details_view_header_bar_title {
title: _("Game Details");
}
styles [
"flat",
]
}
Adw.ToolbarView library_view {
[top]
Adw.HeaderBar header_bar {
[start]
Button show_sidebar_button {
icon-name: "sidebar-show-symbolic";
action-name: "win.show_sidebar";
tooltip-text: _("Toggle Sidebar");
visible: bind overlay_split_view.show-sidebar inverted;
}
Adw.Bin {
hexpand: true;
vexpand: true;
[start]
MenuButton {
tooltip-text: _("Add Game");
icon-name: "list-add-symbolic";
menu-model: add_games;
}
[end]
MenuButton primary_menu_button {
tooltip-text: _("Main Menu");
icon-name: "open-menu-symbolic";
menu-model: primary_menu;
}
[end]
ToggleButton search_button {
tooltip-text: _("Search");
icon-name: "system-search-symbolic";
action-name: "win.toggle_search";
}
}
[top]
SearchBar search_bar {
search-mode-enabled: bind search_button.active bidirectional;
key-capture-widget: navigation_view;
Box {
halign: center;
valign: center;
margin-start: 24;
margin-end: 24;
margin-top: 24;
margin-bottom: 24;
Adw.Clamp {
maximum-size: 500;
tightening-threshold: 500;
maximum-size: 200;
SearchEntry search_entry {
placeholder-text: _("Search");
Overlay {
[overlay]
Spinner details_view_spinner {
margin-start: 72;
margin-end: 72;
}
Picture details_view_cover {
halign: end;
valign: start;
width-request: 200;
height-request: 300;
styles [
"card",
]
}
}
}
Box {
orientation: vertical;
margin-start: 48;
vexpand: true;
valign: center;
Label details_view_title {
label: _("Game Title");
hexpand: true;
halign: start;
max-width-chars: 24;
wrap: true;
wrap-mode: word_char;
natural-wrap-mode: word;
ShortcutController {
Shortcut {
trigger: "Escape";
action: "action(win.toggle_search)";
styles [
"title-1",
]
}
Label details_view_developer {
margin-top: 6;
hexpand: true;
halign: start;
max-width-chars: 36;
wrap: true;
wrap-mode: word_char;
natural-wrap-mode: word;
styles [
"heading",
]
}
Box {
orientation: horizontal;
margin-top: 16;
hexpand: true;
halign: start;
Label details_view_added {
wrap: true;
wrap-mode: word_char;
natural-wrap-mode: word;
}
Label details_view_last_played {
margin-start: 12;
wrap: true;
wrap-mode: word_char;
natural-wrap-mode: word;
}
}
Box {
hexpand: true;
vexpand: true;
valign: center;
Button details_view_play_button {
name: "details_view_play_button";
action-name: "app.launch_game";
label: _("Play");
halign: start;
margin-top: 24;
styles [
"opaque",
"pill",
]
}
Box {
halign: start;
valign: center;
margin-top: 24;
margin-start: 9;
Button {
icon-name: "document-edit-symbolic";
action-name: "app.edit_game";
tooltip-text: _("Edit");
styles ["raised", "circular"]
}
Button details_view_hide_button {
action-name: "app.hide_game";
styles ["raised", "circular"]
}
Button {
icon-name: "user-trash-symbolic";
action-name: "app.remove_game";
tooltip-text: _("Remove");
styles ["raised", "circular"]
}
MenuButton {
icon-name: "system-search-symbolic";
menu-model: search;
tooltip-text: _("Search");
styles ["raised", "circular"]
}
styles [
"toolbar",
]
}
}
}
}
Overlay library_overlay {
ScrolledWindow scrolledwindow {
FlowBox library {
homogeneous: true;
halign: center;
valign: start;
column-spacing: 12;
row-spacing: 12;
margin-top: 15;
margin-bottom: 15;
margin-start: 15;
margin-end: 15;
selection-mode: none;
styles [
"no-hover",
]
}
}
}
}
}
}
}
}
}
Adw.NavigationPage hidden_library_page {
title: _("Hidden Games");
Adw.ToolbarView hidden_library_view {
[top]
Adw.HeaderBar hidden_header_bar {
[end]
MenuButton hidden_primary_menu_button {
tooltip-text: _("Main Menu");
icon-name: "open-menu-symbolic";
menu-model: primary_menu;
}
[end]
ToggleButton hidden_search_button {
tooltip-text: _("Search");
icon-name: "system-search-symbolic";
action-name: "win.toggle_search";
}
}
[top]
SearchBar hidden_search_bar {
search-mode-enabled: bind hidden_search_button.active bidirectional;
key-capture-widget: hidden_library_view;
Adw.Clamp {
maximum-size: 500;
tightening-threshold: 500;
SearchEntry hidden_search_entry {
placeholder-text: _("Search");
hexpand: true;
Picture details_view_blurred_cover {
keep-aspect-ratio: false;
}
}
}
Overlay hidden_library_overlay {
ScrolledWindow hidden_scrolledwindow {
FlowBox hidden_library {
homogeneous: true;
halign: center;
valign: start;
column-spacing: 12;
row-spacing: 12;
margin-top: 15;
margin-bottom: 15;
margin-start: 15;
margin-end: 15;
selection-mode: none;
Box library_view {
orientation: vertical;
styles [
"no-hover",
]
Adw.HeaderBar header_bar {
[start]
MenuButton {
tooltip-text: _("Add Game");
icon-name: "list-add-symbolic";
menu-model: add_games;
}
[end]
MenuButton primary_menu_button {
tooltip-text: _("Main Menu");
icon-name: "open-menu-symbolic";
menu-model: primary_menu;
}
[end]
ToggleButton search_button {
tooltip-text: _("Search");
icon-name: "system-search-symbolic";
action-name: "win.toggle_search";
}
}
}
}
styles [
"background",
]
}
}
Adw.NavigationPage details_page {
title: _("Game Details");
Overlay details_view {
name: "details_view";
[overlay]
Adw.ToolbarView details_view_toolbar_view {
[top]
Adw.HeaderBar {}
ScrolledWindow {
Box details_view_box {
halign: center;
valign: center;
margin-start: 24;
margin-end: 24;
margin-top: 24;
margin-bottom: 24;
SearchBar search_bar {
search-mode-enabled: bind-property search_button.active bidirectional;
key-capture-widget: library_view;
Adw.Clamp {
maximum-size: 200;
maximum-size: 500;
tightening-threshold: 500;
Overlay {
[overlay]
Adw.Spinner details_view_spinner {
visible: false;
}
Picture details_view_cover {
halign: end;
valign: start;
width-request: 200;
height-request: 300;
styles [
"card",
]
}
SearchEntry search_entry {
hexpand: true;
}
}
}
Box details_view_details_box {
orientation: vertical;
margin-start: 48;
Adw.Bin library_bin {
ScrolledWindow scrolledwindow {
hexpand: true;
vexpand: true;
valign: center;
Label details_view_title {
label: _("Game Title");
hexpand: true;
halign: start;
max-width-chars: 24;
wrap: true;
wrap-mode: word_char;
natural-wrap-mode: word;
styles [
"title-1",
]
}
Label details_view_developer {
margin-top: 6;
hexpand: true;
halign: start;
max-width-chars: 36;
wrap: true;
wrap-mode: word_char;
natural-wrap-mode: word;
styles [
"heading",
]
}
Box details_view_date_box {
orientation: horizontal;
margin-top: 15;
hexpand: true;
halign: start;
Label details_view_added {
wrap: true;
wrap-mode: word_char;
natural-wrap-mode: word;
justify: center;
}
Label details_view_last_played {
margin-start: 12;
wrap: true;
wrap-mode: word_char;
natural-wrap-mode: word;
justify: center;
}
}
Box details_view_toolbar {
hexpand: true;
vexpand: true;
valign: center;
Button details_view_play_button {
name: "details_view_play_button";
action-name: "app.launch_game";
label: _("Play");
halign: start;
margin-top: 24;
styles [
"opaque",
"pill",
]
}
Box details_view_toolbar_buttons {
halign: start;
valign: center;
margin-top: 24;
margin-start: 9;
Button {
icon-name: "document-edit-symbolic";
action-name: "app.edit_game";
tooltip-text: _("Edit");
styles [
"raised",
"circular",
]
}
Button details_view_hide_button {
action-name: "app.hide_game";
styles [
"raised",
"circular",
]
}
Button {
icon-name: "user-trash-symbolic";
action-name: "app.remove_game";
tooltip-text: _("Remove");
styles [
"raised",
"circular",
]
}
MenuButton {
icon-name: "system-search-symbolic";
menu-model: search;
tooltip-text: _("Search");
styles [
"raised",
"circular",
]
}
styles [
"toolbar",
]
}
FlowBox library {
homogeneous: true;
halign: center;
valign: start;
column-spacing: 12;
row-spacing: 12;
margin-top: 16;
margin-bottom: 16;
margin-start: 16;
margin-end: 16;
selection-mode: none;
}
}
}
}
}
Picture details_view_blurred_cover {
keep-aspect-ratio: false;
Box hidden_library_view {
orientation: vertical;
Adw.HeaderBar hidden_header_bar {
[start]
Button hidden_back_button {
tooltip-text: _("Back");
action-name: "win.go_back";
icon-name: "go-previous-symbolic";
}
[title]
Adw.WindowTitle {
title: _("Hidden Games");
}
[end]
MenuButton hidden_primary_menu_button {
tooltip-text: _("Main Menu");
icon-name: "open-menu-symbolic";
menu-model: primary_menu;
}
[end]
ToggleButton hidden_search_button {
tooltip-text: _("Search");
icon-name: "system-search-symbolic";
action-name: "win.toggle_search";
}
}
SearchBar hidden_search_bar {
search-mode-enabled: bind-property hidden_search_button.active bidirectional;
key-capture-widget: hidden_library_view;
Adw.Clamp {
maximum-size: 500;
tightening-threshold: 500;
SearchEntry hidden_search_entry {
hexpand: true;
}
}
}
Adw.Bin hidden_library_bin {
ScrolledWindow hidden_scrolledwindow {
hexpand: true;
vexpand: true;
FlowBox hidden_library {
homogeneous: true;
halign: center;
valign: start;
column-spacing: 12;
row-spacing: 12;
margin-top: 16;
margin-bottom: 16;
margin-start: 16;
margin-end: 16;
selection-mode: none;
}
}
}
styles [
"background",
]
}
}
}
}
@@ -548,30 +412,66 @@ menu primary_menu {
}
section {
item (_("Preferences"), "app.preferences")
item (_("Keyboard Shortcuts"), "app.shortcuts")
item (_("About Cartridges"), "app.about")
item {
label: _("Preferences");
action: "app.preferences";
}
item {
label: _("Keyboard Shortcuts");
action: "win.show-help-overlay";
}
item {
label: _("About Cartridges");
action: "app.about";
}
}
}
menu add_games {
section {
item (_("Add Game"), "app.add_game")
item {
label: _("Add Game");
action: "app.add_game";
}
}
section {
item (_("Import"), "app.import")
item {
label: _("Import");
action: "app.import";
}
}
}
menu search {
section {
label: _("Search on…");
item (_("IGDB"), "app.igdb_search")
item (_("SteamGridDB"), "app.sgdb_search")
item (_("ProtonDB"), "app.protondb_search")
item (_("PCGamingWiki"), "app.pcgw_search")
item (_("Lutris"), "app.lutris_search")
item (_("HowLongToBeat"), "app.hltb_search")
label: "Search on…";
item {
label: "IGDB";
action: "app.igdb_search";
}
item {
label: "SteamGridDB";
action: "app.sgdb_search";
}
item {
label: "ProtonDB";
action: "app.protondb_search";
}
item {
label: "Lutris";
action: "app.lutris_search";
}
item {
label: "HowLongToBeat";
action: "app.hltb_search";
}
}
}

View File

@@ -0,0 +1,11 @@
[Desktop Entry]
Name=Cartridges
GenericName=Game Launcher
Comment=Launch all your games
Exec=cartridges
Icon=@APP_ID@
Terminal=false
Type=Application
Categories=GNOME;GTK;Game;
Keywords=gaming;launcher;steam;lutris;heroic;bottles;itch;
StartupNotify=true

View File

@@ -1,10 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="cartridges">
<schema id="@APP_ID@" path="@PREFIX@/">
<key name="auto-import" type="b">
<default>false</default>
</key>
<key name="exit-after-launch" type="b">
<default>false</default>
</key>
@@ -14,14 +10,11 @@
<key name="high-quality-images" type="b">
<default>false</default>
</key>
<key name="remove-missing" type="b">
<default>true</default>
</key>
<key name="steam" type="b">
<default>true</default>
</key>
<key name="steam-location" type="s">
<default>"~/.steam/steam"</default>
<default>"~/.steam/"</default>
</key>
<key name="lutris" type="b">
<default>true</default>
@@ -35,9 +28,6 @@
<key name="lutris-import-steam" type="b">
<default>false</default>
</key>
<key name="lutris-import-flatpak" type="b">
<default>false</default>
</key>
<key name="heroic" type="b">
<default>true</default>
</key>
@@ -50,9 +40,6 @@
<key name="heroic-import-gog" type="b">
<default>true</default>
</key>
<key name="heroic-import-amazon" type="b">
<default>true</default>
</key>
<key name="heroic-import-sideload" type="b">
<default>true</default>
</key>
@@ -74,27 +61,6 @@
<key name="legendary-location" type="s">
<default>"~/.config/legendary/"</default>
</key>
<key name="retroarch" type="b">
<default>true</default>
</key>
<key name="retroarch-location" type="s">
<default>"~/.var/app/org.libretro.RetroArch/config/retroarch/"</default>
</key>
<key name="desktop" type="b">
<default>true</default>
</key>
<key name="flatpak" type="b">
<default>true</default>
</key>
<key name="flatpak-system-location" type="s">
<default>"/var/lib/flatpak/"</default>
</key>
<key name="flatpak-user-location" type="s">
<default>"~/.local/share/flatpak/"</default>
</key>
<key name="flatpak-import-launchers" type="b">
<default>false</default>
</key>
<key name="sgdb-key" type="s">
<default>""</default>
</key>
@@ -107,17 +73,13 @@
<key name="sgdb-animated" type="b">
<default>false</default>
</key>
<key name="library-rows" type="u">
<default>0</default>
</key>
</schema>
<schema id="@APP_ID@.State" path="@PREFIX@/State/">
<key name="width" type="i">
<default>1170</default>
<default>1110</default>
</key>
<key name="height" type="i">
<default>795</default>
<default>820</default>
</key>
<key name="is-maximized" type="b">
<default>false</default>
@@ -130,13 +92,10 @@
<choice value="oldest" />
<choice value="last_played" />
</choices>
<default>"last_played"</default>
</key>
<key name="show-sidebar" type="b">
<default>false</default>
<default>"a-z"</default>
</key>
<key name="steam-limiter-tokens-history" type="s">
<default>"[]"</default>
</key>
</schema>
</schemalist>
</schemalist>

View File

@@ -0,0 +1,112 @@
<?xml version="1.0" encoding="UTF-8"?>
<component type="desktop-application">
<id>@APP_ID@.desktop</id>
<metadata_license>CC0-1.0</metadata_license>
<project_license>GPL-3.0-or-later</project_license>
<name>Cartridges</name>
<summary>Launch all your games</summary>
<description>
<p>Cartridges is a simple game launcher for all of your games. It has support for importing games from Steam, Lutris, Heroic and more with no login necessary. You can sort and hide games or download cover art from SteamGridDB.</p>
</description>
<url type="homepage">https://github.com/kra-mo/cartridges</url>
<url type="bugtracker">https://github.com/kra-mo/cartridges/issues</url>
<url type="translate">https://hosted.weblate.org/engage/cartridges/</url>
<url type="contact">https://www.kramo.hu/about/</url>
<url type="vcs-browser">https://github.com/kra-mo/cartridges</url>
<url type="contribute">https://github.com/kra-mo/cartridges/blob/main/CONTRIBUTING.md</url>
<developer_name translatable="no">kramo</developer_name>
<launchable type="desktop-id">@APP_ID@.desktop</launchable>
<supports>
<control>pointing</control>
<control>keyboard</control>
<control>touch</control>
</supports>
<recommends>
<display_length compare="gt">545</display_length>
</recommends>
<screenshots>
<screenshot type="default">
<image>https://raw.githubusercontent.com/kra-mo/cartridges/main/data/screenshots/1.png</image>
<caption>Library</caption>
</screenshot>
<screenshot>
<image>https://raw.githubusercontent.com/kra-mo/cartridges/main/data/screenshots/2.png</image>
<caption>Edit Game Details</caption>
</screenshot>
<screenshot>
<image>https://raw.githubusercontent.com/kra-mo/cartridges/main/data/screenshots/3.png</image>
<caption>Game Details</caption>
</screenshot>
<screenshot>
<image>https://raw.githubusercontent.com/kra-mo/cartridges/main/data/screenshots/4.png</image>
<caption>Preferences</caption>
</screenshot>
</screenshots>
<content_rating type="oars-1.1" />
<releases>
<release version="1.5.6" date="2023-06-19">
<description translatable="no">
<ul>
<li>Fixes an issue with importing Bottles games without covers</li>
<li>Translations since 1.5</li>
</ul>
</description>
</release>
<release version="1.5" date="2023-05-23">
<description translatable="no">
<ul>
<li>Cartridges is now part of GNOME Circle!</li>
<li>Extra Steam libraries are now detected automatically</li>
<li>Executables are now passed directly to the shell</li>
<li>Various UX improvements</li>
<li>Translations since 1.4</li>
</ul>
</description>
</release>
<release version="1.4" date="2023-04-16">
<description translatable="no">
<ul>
<li>Support for animated covers</li>
<li>Redesigned details view</li>
<li>Easily search for games on various databases</li>
<li>Translations since 1.3</li>
</ul>
</description>
</release>
<release version="1.3" date="2023-04-06">
<description translatable="no">
<ul>
<li>Support for importing game covers from SteamGridDB!</li>
<li>New import source: Lutris</li>
<li>New import source: itch</li>
<li>Better feedback for hiding and launching games</li>
<li>UX improvements</li>
<li>Translations since 1.2</li>
</ul>
</description>
</release>
<release version="1.2" date="2023-03-30">
<description translatable="no">
<ul>
<li>Refined the user experience for importing games</li>
<li>Added option to remove all games</li>
<li>Translations since 1.1</li>
</ul>
</description>
</release>
<release version="1.1" date="2023-03-26">
<description translatable="no">
<ul>
<li>Added option to launch games by clicking the cover image</li>
<li>Added option to save cover art losslessly</li>
<li>Translations since 1.0</li>
</ul>
</description>
</release>
<release version="1.0" date="2023-03-25">
<description translatable="no">
<p>First stable release</p>
</description>
</release>
</releases>
</component>

View File

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

View File

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

Before

Width:  |  Height:  |  Size: 618 B

After

Width:  |  Height:  |  Size: 618 B

View File

@@ -1,11 +1,11 @@
scalable_dir = join_paths('hicolor', 'scalable', 'apps')
install_data(
join_paths(scalable_dir, ('@0@.svg').format(app_id)),
install_dir: join_paths(get_option('datadir'), 'icons', scalable_dir),
install_dir: join_paths(get_option('datadir'), 'icons', scalable_dir)
)
symbolic_dir = join_paths('hicolor', 'symbolic', 'apps')
install_data(
join_paths(symbolic_dir, ('@0@-symbolic.svg').format(app_id)),
install_dir: join_paths(get_option('datadir'), 'icons', symbolic_dir),
install_dir: join_paths(get_option('datadir'), 'icons', symbolic_dir)
)

View File

@@ -1 +0,0 @@
<svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.847 0v.616c0 .371-.17.786-.405 1.239C1.812 2.95 1.163 4.02 1.01 5.288L1 16h2l.01-10.712c.153-1.267.802-2.337 1.432-3.433.235-.453.405-.868.405-1.24V0h-2Zm4 0v.616c0 .371-.17.786-.404 1.239C5.812 2.95 5.163 4.02 5.01 5.288L5 16h2.001l.01-10.712c.153-1.267.801-2.337 1.432-3.433.235-.453.405-.868.405-1.24V0h-2Zm4.001 0v.616c-.315 1.678-1.632 3.165-1.837 4.672L9.001 16h5.693l-.008-10.7c-.32-1.815-1.385-3.08-1.838-4.684V0h-2Z" fill="#000"/></svg>

Before

Width:  |  Height:  |  Size: 532 B

View File

@@ -1 +0,0 @@
<svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.805.02a.971.971 0 0 0-.36.148l-6 4A.998.998 0 0 0 1 5v6a1 1 0 0 0 .445.833l6 4c.337.223.774.223 1.11 0l6-4a.998.998 0 0 0 .446-.832V5a.998.998 0 0 0-.445-.832l-6-4a.994.994 0 0 0-.75-.149Zm.196 2.179V9l5-3.332v4.797l-5 3.337V9L3 5.668v-.133L8 2.2Z" fill="#000"/></svg>

Before

Width:  |  Height:  |  Size: 355 B

View File

@@ -1 +0,0 @@
<svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="m7.872 16-3.817-3.083L2 2.79 7.872 0l5.871 2.789-2.055 10.128L7.872 16Zm0-4.257-.294-.293-.88-7.927 1.1-1.908 1.174 1.908-.807 7.927-.293.293Zm-.294.367-.147.367-1.761.294-.294-.66.294-.662 1.761.294.147.367Zm-.073.734-.22 1.541.587.294.587-.294-.22-1.541-.367-.22-.367.22Zm.807-.367-.147-.367.147-.367 1.761-.293.294.66-.294.66-1.761-.293Z" fill="#000"/></svg>

Before

Width:  |  Height:  |  Size: 485 B

View File

@@ -1 +0,0 @@
<svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.965 1.992C1.43 2.08 1 2.58 1 3.115V15.18c0 .534.43.894.965.806l12.066-1.979c.534-.088.964-.588.964-1.122V.82c0-.535-.43-.894-.964-.807L1.964 1.992Zm3.41 3.33c.555-.091.95.204 1.09.722l3.068-.503c.14-.564.532-.988 1.087-1.08.882-.144 1.851.602 2.154 1.659l.723 2.523c.302 1.056-.172 2.04-1.054 2.184-.774.127-1.615-.432-2.014-1.286l-4.863.798c-.399.984-1.24 1.82-2.014 1.946-.882.145-1.356-.683-1.054-1.838l.723-2.76c.303-1.157 1.272-2.22 2.154-2.365ZM7.282 6.58v.986l-.791.13L7.997 9.36 9.505 7.2l-.743.122v-.985l-1.48.243Z" fill="#000"/></svg>

Before

Width:  |  Height:  |  Size: 631 B

View File

@@ -1 +0,0 @@
<svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#a)"><path fill-rule="evenodd" clip-rule="evenodd" d="M0 6.355V1a1 1 0 0 1 1-1h2.893a1 1 0 0 1 .708.293l.645.645a1 1 0 0 0 .707.293h4.094a1 1 0 0 0 .707-.293L11.4.293A1 1 0 0 1 12.107 0H15a1 1 0 0 1 1 1v5.355a1 1 0 0 1-.293.707l-.23.23a1 1 0 0 0 0 1.415l.23.23a1 1 0 0 1 .293.708V15a1 1 0 0 1-1 1h-2.893a1 1 0 0 1-.708-.293l-.645-.645a1 1 0 0 0-.707-.293H5.953a1 1 0 0 0-.707.293l-.645.645a1 1 0 0 1-.708.293H1a1 1 0 0 1-1-1V9.645a1 1 0 0 1 .293-.707l.23-.23a1 1 0 0 0 0-1.415l-.23-.23A1 1 0 0 1 0 6.354ZM8 5a1 1 0 0 0-2 0v5.5a1 1 0 0 0 1 1h3a1 1 0 1 0 0-2H8V5Z" fill="#000"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h16v16H0z"/></clipPath></defs></svg>

Before

Width:  |  Height:  |  Size: 757 B

View File

@@ -1 +0,0 @@
<svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#a)"><path fill-rule="evenodd" clip-rule="evenodd" d="M0 7.937C0 3.554 3.518 0 7.857 0c1.196 0 2.33.27 3.344.753.055-.118.181-.363.301-.371.158-.012.248.09.35.203l.001.002c.102.115.306.287.306.287s.929-.32 1.97.251c1.043.572 1.19.744 1.394 1.144.144.284.14.87.126 1.19a.248.248 0 0 0-.039-.004c-.17 0-.308.174-.308.387 0 .214.138.387.308.387a.256.256 0 0 0 .133-.039c.153.292.233.562.255.806-.05-.348-.544-.586-.544-.586s-.077.135-.243.215c-.025.012-.056.01-.091.006-.063-.007-.138-.014-.21.06-.239.484.345.888.617.877.265-.011.476-.276.475-.512.047.92-.74 1.461-1.495 1.374-.493-.058-.907-.249-1.383-.469a10.262 10.262 0 0 0-1.187-.483c-.951-.307-1.569-.47-2.322-.585-1.486-.227-2.557.12-3.061.424a5.84 5.84 0 0 0-.427.284c.772.15 1.236 1.329 1.25 1.65l.002.013v.007l.001.033c-.021.484-.247.845-.725.83a.823.823 0 0 1-.713-.426c-.014-.024-.028-.049-.044-.072a1.92 1.92 0 0 0-.965-.795c-.46.705-.715 1.548-.715 2.53 0 2.897 2.345 5.052 5.213 5.052.907 0 2.817-.309 4-1.28.226-.207.485-.438.725-.55-.862 2.161-3.479 3.488-6.299 3.403C3.534 15.996 0 12.321 0 7.937ZM13.415 4.02a.596.596 0 0 0 .593-.6.596.596 0 0 0-.593-.599.597.597 0 0 0-.594.6c0 .33.266.6.594.6Z" fill="#000"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h16v16H0z"/></clipPath></defs></svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -1 +0,0 @@
<svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.56 4 5.6 5.28H3.52L3.04 7.2H1.76l.48-1.92H.96L0 9.12h2.56l-.32 1.28h2.24L2.8 12.32h1.88l1.56-1.92h3.52l1.56 1.92h1.88l-1.68-1.92h2.24l-.32-1.28H16l-.96-3.84h-1.28l.48 1.92h-1.28l-.48-1.92H10.4L11.44 4h-1.36L8.96 5.28H7.04L5.92 4H4.56Zm.16 2.56H6v1.28H4.72V6.56Zm5.283 0h1.28v1.28h-1.28V6.56Z" fill="#000"/></svg>

Before

Width:  |  Height:  |  Size: 399 B

View File

@@ -1 +0,0 @@
<svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#a)"><path fill-rule="evenodd" clip-rule="evenodd" d="M9.352 5.1a1.509 1.509 0 1 0 2.51 1.675A1.509 1.509 0 0 0 9.352 5.1Zm2.923-.277a2.009 2.009 0 1 1-3.34 2.231 2.009 2.009 0 0 1 3.34-2.23ZM5.01 12.131l-.983-.407a1.7 1.7 0 0 0 3.108-.103 1.696 1.696 0 0 0-1.213-2.29 1.699 1.699 0 0 0-.966.07l1.015.421a1.249 1.249 0 0 1-.96 2.307v.002ZM2.546 2.121A7.996 7.996 0 0 1 7.966 0l.003.013a7.988 7.988 0 0 1 7.159 4.432 7.996 7.996 0 0 1-4.277 11.018 7.99 7.99 0 0 1-8.274-1.558A7.989 7.989 0 0 1 .279 10.18l3.064 1.267A2.264 2.264 0 0 0 7.823 11v-.107l2.718-1.938h.063A3.016 3.016 0 1 0 7.589 5.94v.031l-1.906 2.76h-.126c-.454 0-.898.138-1.273.395L0 7.354A7.995 7.995 0 0 1 2.546 2.12Z" fill="#000"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h16v16H0z"/></clipPath></defs></svg>

Before

Width:  |  Height:  |  Size: 878 B

View File

@@ -1,28 +1,20 @@
blueprints = custom_target(
'blueprints',
blueprints = custom_target('blueprints',
input: files(
'gtk/details-dialog.blp',
'gtk/help-overlay.blp',
'gtk/window.blp',
'gtk/game.blp',
'gtk/preferences.blp',
'gtk/shortcuts-dialog.blp',
'gtk/window.blp',
'gtk/details-window.blp'
),
output: '.',
command: [
find_program('blueprint-compiler'),
'batch-compile',
'@OUTPUT@',
'@CURRENT_SOURCE_DIR@',
'@INPUT@',
],
command: [find_program('blueprint-compiler'), 'batch-compile', '@OUTPUT@', '@CURRENT_SOURCE_DIR@', '@INPUT@'],
)
gnome.compile_resources(
'cartridges',
gnome.compile_resources('cartridges',
configure_file(
input: 'cartridges.gresource.xml.in',
output: 'cartridges.gresource.xml',
configuration: conf,
configuration: conf
),
gresource_bundle: true,
install: true,
@@ -30,86 +22,55 @@ gnome.compile_resources(
dependencies: blueprints,
)
if host_machine.system() == 'windows'
desktop_file = configure_file(
input: 'page.kramo.Cartridges.desktop.in',
output: app_id + '.desktop.in',
configuration: conf,
install: true,
install_dir: join_paths(get_option('datadir'), 'applications'),
)
else
desktop_file = i18n.merge_file(
input: configure_file(
input: 'page.kramo.Cartridges.desktop.in',
output: app_id + '.desktop.in',
configuration: conf,
),
output: app_id + '.desktop',
type: 'desktop',
po_dir: '../po',
install: true,
install_dir: join_paths(get_option('datadir'), 'applications'),
)
desktop_file = i18n.merge_file(
input: configure_file(
input: 'hu.kramo.Cartridges.desktop.in',
output: app_id + '.desktop.in',
configuration: conf
),
output: app_id + '.desktop',
type: 'desktop',
po_dir: '../po',
install: true,
install_dir: join_paths(get_option('datadir'), 'applications')
)
desktop_utils = find_program('desktop-file-validate', required: false)
if desktop_utils.found()
test('Validate desktop file', desktop_utils, args: [desktop_file])
endif
if host_machine.system() != 'windows'
desktop_utils = find_program('desktop-file-validate', required: false)
if desktop_utils.found()
test('Validate desktop file', desktop_utils, args: [desktop_file])
endif
endif
appstream_file = i18n.merge_file(
input: configure_file(
input: 'hu.kramo.Cartridges.metainfo.xml.in',
output: app_id + '.metainfo.xml.in',
configuration: conf
),
output: app_id + '.metainfo.xml',
po_dir: '../po',
install: true,
install_dir: join_paths(get_option('datadir'), 'metainfo')
)
if host_machine.system() == 'windows'
appstream_file = configure_file(
input: 'page.kramo.Cartridges.metainfo.xml.in',
output: app_id + '.metainfo.xml',
configuration: conf,
install: true,
install_dir: join_paths(get_option('datadir'), 'metainfo'),
)
else
appstream_file = i18n.merge_file(
input: configure_file(
input: 'page.kramo.Cartridges.metainfo.xml.in',
output: app_id + '.metainfo.xml.in',
configuration: conf,
),
output: app_id + '.metainfo.xml',
po_dir: '../po',
install: true,
install_dir: join_paths(get_option('datadir'), 'metainfo'),
)
endif
if host_machine.system() != 'windows'
appstreamcli = find_program('appstreamcli', required: false)
if appstreamcli.found()
test(
'Validate appstream file',
appstreamcli,
args: ['validate', '--no-net', '--explain', appstream_file],
workdir: meson.current_build_dir(),
)
endif
appstream_util = find_program('appstream-util', required: false)
if appstream_util.found()
test('Validate appstream file', appstream_util, args: ['validate', appstream_file])
endif
install_data(
configure_file(
input: 'page.kramo.Cartridges.gschema.xml.in',
input: 'hu.kramo.Cartridges.gschema.xml.in',
output: app_id + '.gschema.xml',
configuration: conf,
configuration: conf
),
install_dir: join_paths(get_option('datadir'), 'glib-2.0/schemas'),
install_dir: join_paths(get_option('datadir'), 'glib-2.0/schemas')
)
compile_schemas = find_program('glib-compile-schemas', required: false)
if compile_schemas.found()
test(
'Validate schema file',
compile_schemas,
args: ['--strict', '--dry-run', meson.current_source_dir()],
)
test('Validate schema file',
compile_schemas,
args: ['--strict', '--dry-run', meson.current_source_dir()])
endif
subdir('icons')

View File

@@ -1,12 +0,0 @@
[Desktop Entry]
Name=Cartridges
GenericName=Game Launcher
Comment=Launch all your games
Exec=cartridges
Icon=@APP_ID@
Terminal=false
Type=Application
Categories=GNOME;GTK;Game;PackageManager;
# Translators: Leave "cartridges" untranslated here.
Keywords=gaming;games;play;cartridges;launch;launcher;steam;lutris;heroic;epic;bottles;itch;legendary;retroarch;
StartupNotify=true

View File

@@ -1,235 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<component type="desktop-application">
<id>@APP_ID@</id>
<replaces>
<id>hu.kramo.Cartridges</id>
</replaces>
<metadata_license>CC0-1.0</metadata_license>
<project_license>GPL-3.0-or-later</project_license>
<name>Cartridges</name>
<summary>Launch all your games</summary>
<description>
<p>Cartridges is a simple game launcher for all of your games. It has support for importing games from Steam, Lutris, Heroic and more with no login necessary. You can sort and hide games or download cover art from SteamGridDB.</p>
</description>
<url type="homepage">https://apps.gnome.org/Cartridges/</url>
<url type="bugtracker">https://git.kramo.page/cartridges/issues</url>
<url type="translate">https://hosted.weblate.org/engage/cartridges/</url>
<url type="contact">https://www.kramo.page/about/</url>
<url type="vcs-browser">https://git.kramo.page/cartridges</url>
<url type="contribute">https://git.kramo.page/cartridges/blob/main/CONTRIBUTING.md</url>
<developer id="page.kramo">
<name translate="no">kramo</name>
</developer>
<launchable type="desktop-id">@APP_ID@.desktop</launchable>
<translation type="gettext">cartridges</translation>
<branding>
<color type="primary" scheme_preference="light">#d5b0e7</color>
<color type="primary" scheme_preference="dark">#501a5c</color>
</branding>
<supports>
<control>pointing</control>
<control>keyboard</control>
<control>touch</control>
</supports>
<requires>
<display_length compare="ge">360</display_length>
</requires>
<screenshots>
<screenshot type="default">
<image>https://codeberg.org/kramo/cartridges/raw/branch/main/data/screenshots/1.png</image>
<caption>Cartridges</caption>
</screenshot>
<screenshot>
<image>https://codeberg.org/kramo/cartridges/raw/branch/main/data/screenshots/2.png</image>
<caption>Game Details</caption>
</screenshot>
<screenshot>
<image>https://codeberg.org/kramo/cartridges/raw/branch/main/data/screenshots/3.png</image>
<caption>Edit Game Details</caption>
</screenshot>
<screenshot>
<image>https://codeberg.org/kramo/cartridges/raw/branch/main/data/screenshots/4.png</image>
<caption>Preferences</caption>
</screenshot>
</screenshots>
<content_rating type="oars-1.1" />
<releases>
<release version="2.13.1" date="2025-09-24">
<description translate="no">
<p>Updated for GNOME 49, using the new keyboard shortcuts dialog.</p>
</description>
</release>
<release version="2.12.1" date="2025-03-23">
<description translate="no">
<p>Removed an option used for debugging that would accidentally show up for all users.</p>
</description>
</release>
<release version="2.12" date="2025-03-19">
<description translate="no">
<p>Updated for GNOME 48</p>
</description>
</release>
<release version="2.11" date="2024-12-21">
<description translate="no">
<ul>
<li>Added the option to import games automatically</li>
<li>Increased the number of games per row on wide screens</li>
<li>Fixed an issue where animated covers would not play</li>
<li>Fixed an issue where the import dialog would stay open</li>
</ul>
</description>
</release>
<release version="2.10" date="2024-09-18">
<description translate="no">
<p>Updated for GNOME 47</p>
</description>
</release>
<release version="2.9" date="2024-07-10">
<description translate="no">
<ul>
<li>Cartridges is now available on macOS! You can download it from GitHub.</li>
<li>Updated translations</li>
</ul>
</description>
</release>
<release version="2.8" date="2024-03-20">
<description translate="no">
<ul>
<li>The app features new adaptive widgets taking advantage of developments in GNOME 46</li>
</ul>
</description>
</release>
<release version="2.7" date="2023-12-12">
<description translate="no">
<ul>
<li>Flatpaks installed for the user and system-wide ones can now be imported separately</li>
</ul>
</description>
</release>
<release version="2.6" date="2023-10-11">
<description translate="no">
<p>You can now search your Cartridges library from GNOME!</p>
<p>To enable the functionality, go to "Search" in the Settings app and toggle "Cartridges" on.</p>
</description>
</release>
<release version="2.5" date="2023-10-06">
<description translate="no">
<ul>
<li>Added the ability to refetch covers from SteamGridDB</li>
<li>Fixed an issue with fractional scaling</li>
<li>Translations since 2.4</li>
</ul>
<p>The project now accepts donations. Thank you so much if you decide to donate! 💜</p>
</description>
</release>
<release version="2.4" date="2023-09-21">
<description translate="no">
<ul>
<li>Cartridges now adapts to smaller screen sizes</li>
<li>You can now filter games by import source</li>
<li>Ported to Libadwaita 1.4</li>
<li>Translations since 2.3</li>
</ul>
</description>
</release>
<release version="2.3" date="2023-08-29">
<description translate="no">
<ul>
<li>New import source: desktop entries</li>
<li>Added the ability to pick executables via the file picker</li>
<li>Manually added covers are now padded if they are too short</li>
<li>Translations since 2.2</li>
</ul>
</description>
</release>
<release version="2.2" date="2023-08-17">
<description translate="no">
<ul>
<li>New import source: RetroArch</li>
<li>Added the option to automatically remove uninstalled games on import</li>
<li>Added the ability to undo an import</li>
<li>Various UX improvements</li>
<li>Translations since 2.1</li>
</ul>
</description>
</release>
<release version="2.1" date="2023-07-25">
<description translate="no">
<ul>
<li>Added support for Amazon Games in the Heroic importer</li>
<li>Translations since 2.0</li>
</ul>
</description>
</release>
<release version="2.0" date="2023-07-05">
<description translate="no">
<p>After months of work, Cartridges 2.0 is here:</p>
<ul>
<li>New import source: Legendary</li>
<li>New import source: Flatpak</li>
<li>Importing games should be much quicker</li>
<li>Error handling has been improved</li>
<li>Various UX improvements</li>
<li>Translations since 1.5</li>
</ul>
<p>Thanks to the new import backend, adding new sources is much easier and a lot more are coming soon!</p>
</description>
</release>
<release version="1.5" date="2023-05-23">
<description translate="no">
<ul>
<li>Cartridges is now part of GNOME Circle!</li>
<li>Extra Steam libraries are now detected automatically</li>
<li>Executables are now passed directly to the shell</li>
<li>Various UX improvements</li>
<li>Translations since 1.4</li>
</ul>
</description>
</release>
<release version="1.4" date="2023-04-16">
<description translate="no">
<ul>
<li>Support for animated covers</li>
<li>Redesigned details view</li>
<li>Easily search for games on various databases</li>
<li>Translations since 1.3</li>
</ul>
</description>
</release>
<release version="1.3" date="2023-04-06">
<description translate="no">
<ul>
<li>Support for importing game covers from SteamGridDB!</li>
<li>New import source: Lutris</li>
<li>New import source: itch</li>
<li>Better feedback for hiding and launching games</li>
<li>UX improvements</li>
<li>Translations since 1.2</li>
</ul>
</description>
</release>
<release version="1.2" date="2023-03-30">
<description translate="no">
<ul>
<li>Refined the user experience for importing games</li>
<li>Added option to remove all games</li>
<li>Translations since 1.1</li>
</ul>
</description>
</release>
<release version="1.1" date="2023-03-26">
<description translate="no">
<ul>
<li>Added option to launch games by clicking the cover image</li>
<li>Added option to save cover art losslessly</li>
<li>Translations since 1.0</li>
</ul>
</description>
</release>
<release version="1.0" date="2023-03-25">
<description translate="no">
<p>First stable release</p>
</description>
</release>
</releases>
</component>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 452 KiB

After

Width:  |  Height:  |  Size: 683 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 247 KiB

After

Width:  |  Height:  |  Size: 142 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 135 KiB

After

Width:  |  Height:  |  Size: 292 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

After

Width:  |  Height:  |  Size: 25 KiB

View File

@@ -35,7 +35,7 @@ Stored as a Unix time stamp.
The executable to run when launching a game.
If the source has a URL handler, using that is preferred. In that case, the value should be `"xdg-open url://example/url"` for Linux, `"start url://example/url"` for Windows and `"open url://example/url"` for macOS.
If the source has a URL handler, using that is preferred. In that case, the value should be `"xdg-open url://example/url"` for Linux and `"start url://example/url"` for Windows.
Stored as either a string (preferred) or an argument vector to be passed to the shell through [subprocess.Popen](https://docs.python.org/3/library/subprocess.html#popen-constructor).
@@ -49,9 +49,9 @@ Stored as a string.
### source
A unique ID for the source of the game in lowercase, without spaces or underscores.
A unique ID for the source of the game in lowercase, without spaces.
If a source provides multiple internal sources, these should be separately labeled, but share a common prefix. eg. `heoic_gog`, `heroic_epic`. This is the only place you should use an underscore.
If a source provides multiple internal sources, these should be separately labeled, but share a common prefix. eg. `heoic_gog`, `heroic_epic`.
Stored as a string.
@@ -113,4 +113,4 @@ The version number of the [game_id].json specification.
Cartridges will set the value for itself. Don't touch it.
Stored as a number.
Stored as a number.

View File

@@ -0,0 +1,197 @@
{
"id" : "hu.kramo.Cartridges.Devel",
"runtime" : "org.gnome.Platform",
"runtime-version" : "44",
"sdk" : "org.gnome.Sdk",
"command" : "cartridges",
"finish-args" : [
"--share=network",
"--share=ipc",
"--socket=fallback-x11",
"--device=dri",
"--socket=wayland",
"--talk-name=org.freedesktop.Flatpak",
"--filesystem=host:ro",
"--filesystem=~/.var/app/com.valvesoftware.Steam/data/Steam/:ro",
"--filesystem=~/.var/app/net.lutris.Lutris/:ro",
"--filesystem=~/.var/app/com.heroicgameslauncher.hgl/config/heroic/:ro",
"--filesystem=~/.var/app/com.usebottles.bottles/data/bottles/:ro",
"--filesystem=~/.var/app/io.itch.itch/config/itch/:ro"
],
"cleanup" : [
"/include",
"/lib/pkgconfig",
"/man",
"/share/doc",
"/share/gtk-doc",
"/share/man",
"/share/pkgconfig",
"*.la",
"*.a"
],
"modules" : [
{
"name": "python3-modules",
"buildsystem": "simple",
"build-commands": [],
"modules": [
{
"name": "python3-pyyaml",
"buildsystem": "simple",
"build-commands": [
"pip3 install --verbose --exists-action=i --no-index --find-links=\"file://${PWD}\" --prefix=${FLATPAK_DEST} \"pyyaml\" --no-build-isolation"
],
"sources": [
{
"type": "file",
"url": "https://files.pythonhosted.org/packages/36/2b/61d51a2c4f25ef062ae3f74576b01638bebad5e045f747ff12643df63844/PyYAML-6.0.tar.gz",
"sha256": "68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"
}
]
},
{
"name": "python3-requests",
"buildsystem": "simple",
"build-commands": [
"pip3 install --verbose --exists-action=i --no-index --find-links=\"file://${PWD}\" --prefix=${FLATPAK_DEST} \"requests\" --no-build-isolation"
],
"sources": [
{
"type": "file",
"url": "https://files.pythonhosted.org/packages/71/4c/3db2b8021bd6f2f0ceb0e088d6b2d49147671f25832fb17970e9b583d742/certifi-2022.12.7-py3-none-any.whl",
"sha256": "4ad3232f5e926d6718ec31cfc1fcadfde020920e278684144551c91769c7bc18"
},
{
"type": "file",
"url": "https://files.pythonhosted.org/packages/ff/d7/8d757f8bd45be079d76309248845a04f09619a7b17d6dfc8c9ff6433cac2/charset-normalizer-3.1.0.tar.gz",
"sha256": "34e0a2f9c370eb95597aae63bf85eb5e96826d81e3dcf88b8886012906f509b5"
},
{
"type": "file",
"url": "https://files.pythonhosted.org/packages/fc/34/3030de6f1370931b9dbb4dad48f6ab1015ab1d32447850b9fc94e60097be/idna-3.4-py3-none-any.whl",
"sha256": "90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"
},
{
"type": "file",
"url": "https://files.pythonhosted.org/packages/d2/f4/274d1dbe96b41cf4e0efb70cbced278ffd61b5c7bb70338b62af94ccb25b/requests-2.28.2-py3-none-any.whl",
"sha256": "64299f4909223da747622c030b781c0d7811e359c37124b4bd368fb8c6518baa"
},
{
"type": "file",
"url": "https://files.pythonhosted.org/packages/7b/f5/890a0baca17a61c1f92f72b81d3c31523c99bec609e60c292ea55b387ae8/urllib3-1.26.15-py2.py3-none-any.whl",
"sha256": "aa751d169e23c7479ce47a0cb0da579e3ede798f994f5816a74e4f4500dcea42"
}
]
},
{
"name": "python3-pillow",
"buildsystem": "simple",
"build-commands": [
"pip3 install --verbose --exists-action=i --no-index --find-links=\"file://${PWD}\" --prefix=${FLATPAK_DEST} \"pillow\" --no-build-isolation"
],
"sources": [
{
"type": "file",
"url": "https://files.pythonhosted.org/packages/00/d5/4903f310765e0ff2b8e91ffe55031ac6af77d982f0156061e20a4d1a8b2d/Pillow-9.5.0.tar.gz",
"sha256": "bf548479d336726d7a0eceb6e767e179fbde37833ae42794602631a070d630f1"
}
]
},
{
"name" : "python3-snegg",
"buildsystem" : "simple",
"build-commands": [
"cd snegg",
"pip3 install --verbose --exists-action=i --no-index --find-links=\"file://${PWD}\" --prefix=${FLATPAK_DEST} . --no-build-isolation"
],
"sources": [
{
"type" : "git",
"url": "https://gitlab.freedesktop.org/libinput/snegg.git",
"tag": "main"
}
]
},
{
"name": "python3-attrs",
"buildsystem": "simple",
"build-commands": [
"pip3 install --verbose --exists-action=i --no-index --find-links=\"file://${PWD}\" --prefix=${FLATPAK_DEST} \"attrs\" --no-build-isolation"
],
"sources": [
{
"type": "file",
"url": "https://files.pythonhosted.org/packages/f0/eb/fcb708c7bf5056045e9e98f62b93bd7467eb718b0202e7698eb11d66416c/attrs-23.1.0-py3-none-any.whl",
"sha256": "1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"
}
]
},
{
"name": "python3-jinja2",
"buildsystem": "simple",
"build-commands": [
"pip3 install --verbose --exists-action=i --no-index --find-links=\"file://${PWD}\" --prefix=${FLATPAK_DEST} \"jinja2\" --no-build-isolation"
],
"sources": [
{
"type": "file",
"url": "https://files.pythonhosted.org/packages/bc/c3/f068337a370801f372f2f8f6bad74a5c140f6fda3d9de154052708dd3c65/Jinja2-3.1.2-py3-none-any.whl",
"sha256": "6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"
},
{
"type": "file",
"url": "https://files.pythonhosted.org/packages/6d/7c/59a3248f411813f8ccba92a55feaac4bf360d29e2ff05ee7d8e1ef2d7dbf/MarkupSafe-2.1.3.tar.gz",
"sha256": "af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"
}
]
}
]
},
{
"name" : "libei",
"buildsystem" : "meson",
"config-opts": [
"-Ddocumentation=[]",
"-Dtests=disabled"
],
"sources" : [
{
"type" : "git",
"url" : "https://gitlab.freedesktop.org/libinput/libei.git",
"tag" : "1.0.0"
}
],
"cleanup" : [
"*"
]
},
{
"name" : "blueprint-compiler",
"buildsystem" : "meson",
"sources" : [
{
"type" : "git",
"url" : "https://gitlab.gnome.org/jwestman/blueprint-compiler",
"tag" : "v0.8.1"
}
],
"cleanup" : [
"*"
]
},
{
"name" : "cartridges",
"builddir" : true,
"buildsystem" : "meson",
"config-opts": [
"-Dprofile=development"
],
"sources" : [
{
"type" : "dir",
"path" : ".."
}
]
}
]
}

View File

@@ -1,64 +1,48 @@
project(
'cartridges',
version: '2.13.1',
meson_version: '>= 0.59.0',
default_options: [
'warning_level=2',
'werror=false',
],
project('cartridges',
version: '1.5.6',
meson_version: '>= 0.59.0',
default_options: [ 'warning_level=2', 'werror=false', ],
)
dependency('gtk4', version: '>= 4.15.0')
dependency('libadwaita-1', version: '>= 1.6.beta')
# Translations are broken on Windows for multiple reasons
# gresources don't work and MSYS2 seems to have also broken the gettext package
if host_machine.system() != 'windows'
i18n = import('i18n')
endif
i18n = import('i18n')
gnome = import('gnome')
python = import('python')
py_installation = python.find_installation('python3')
python_dir = join_paths(get_option('prefix'), py_installation.get_install_dir())
pkgdatadir = join_paths(get_option('prefix'), get_option('datadir'), meson.project_name())
libexecdir = join_paths(get_option('prefix'), get_option('libexecdir'))
profile = get_option('profile')
if profile == 'development'
app_id = 'page.kramo.Cartridges.Devel'
prefix = '/page/kramo/Cartridges/Devel'
elif profile == 'release'
app_id = 'page.kramo.Cartridges'
prefix = '/page/kramo/Cartridges'
app_id = 'hu.kramo.Cartridges.Devel'
prefix = '/hu/kramo/Cartridges/Devel'
elif profile == 'release'
app_id = 'hu.kramo.Cartridges'
prefix = '/hu/kramo/Cartridges'
endif
conf = configuration_data()
conf.set('PYTHON', py_installation.full_path())
conf.set('PYTHON_VERSION', py_installation.language_version())
conf.set('PYTHON', python.find_installation('python3').full_path())
conf.set('PYTHON_VERSION', python.find_installation('python3').language_version())
conf.set('APP_ID', app_id)
conf.set('PREFIX', prefix)
conf.set('VERSION', meson.project_version())
conf.set('PROFILE', profile)
conf.set('TIFF_COMPRESSION', get_option('tiff_compression'))
conf.set('localedir', join_paths(get_option('prefix'), get_option('localedir')))
conf.set('pkgdatadir', pkgdatadir)
conf.set('libexecdir', libexecdir)
subdir('data')
subdir('cartridges')
subdir('src')
subdir('po')
if host_machine.system() == 'windows'
subdir('build-aux/windows')
else
subdir('search-provider')
subdir('po')
endif
configure_file(
input: './windows/Cartridges.iss.in',
output: 'Cartridges.iss',
configuration: conf,
install: true,
install_dir: '.'
)
gnome.post_install(
glib_compile_schemas: true,
gtk_update_icon_cache: true,
glib_compile_schemas: true,
gtk_update_icon_cache: true,
update_desktop_database: true,
)
)

View File

@@ -7,12 +7,3 @@ option(
],
value: 'release'
)
option(
'tiff_compression',
type: 'combo',
choices: [
'webp',
'jpeg',
],
value: 'webp'
)

View File

@@ -19,17 +19,3 @@ pl
sv
tr
el
cs
zh_Hans
be
hr
ca
ja
hi
en_GB
ie
te
ia
nn
eu
kw

View File

@@ -1,34 +1,19 @@
data/page.kramo.Cartridges.desktop.in
data/page.kramo.Cartridges.gschema.xml.in
data/page.kramo.Cartridges.metainfo.xml.in
data/hu.kramo.Cartridges.desktop.in
data/hu.kramo.Cartridges.gschema.xml.in
data/hu.kramo.Cartridges.metainfo.xml.in
data/gtk/details-dialog.blp
data/gtk/details-window.blp
data/gtk/game.blp
data/gtk/help-overlay.blp
data/gtk/preferences.blp
data/gtk/shortcuts-dialog.blp
data/gtk/window.blp
cartridges/main.py
cartridges/window.py
cartridges/details_dialog.py
cartridges/game.py
cartridges/preferences.py
src/main.py
src/window.py
src/details_window.py
src/game.py
src/preferences.py
cartridges/utils/create_dialog.py
cartridges/utils/relative_date.py
cartridges/importer/importer.py
cartridges/importer/source.py
cartridges/importer/location.py
cartridges/importer/location.py
cartridges/importer/bottles_source.py
cartridges/importer/desktop_source.py
cartridges/importer/flatpak_source.py
cartridges/importer/heroic_source.py
cartridges/importer/itch_source.py
cartridges/importer/legendary_source.py
cartridges/importer/lutris_source.py
cartridges/importer/retroarch_source.py
cartridges/importer/steam_source.py
cartridges/store/managers/sgdb_manager.py
src/utils/create_dialog.py
src/importer/sources/source.py
src/store/managers/sgdb_manager.py

673
po/ar.po
View File

@@ -3,17 +3,13 @@
# This file is distributed under the same license as the cartridges package.
# Ali Aljishi <ahj696@hotmail.com>, 2023.
# kramo <contact@kramo.hu>, 2023.
# Ali-98 <ahj696@hotmail.com>, 2023.
# Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org>, 2024.
# "Jadiir M. Aal Jaidaan" <ashrafquatre@gmail.com>, 2024.
# Ahmed Najmawi <iramosu@protonmail.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: cartridges\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-11-05 14:01+0100\n"
"PO-Revision-Date: 2025-08-01 22:02+0000\n"
"Last-Translator: Ahmed Najmawi <iramosu@protonmail.com>\n"
"POT-Creation-Date: 2023-06-26 12:01+0200\n"
"PO-Revision-Date: 2023-05-26 18:10+0000\n"
"Last-Translator: Ali Aljishi <ahj696@hotmail.com>\n"
"Language-Team: Arabic <https://hosted.weblate.org/projects/cartridges/"
"cartridges/ar/>\n"
"Language: ar\n"
@@ -22,31 +18,28 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Generator: Weblate 5.13-dev\n"
"X-Generator: Weblate 4.18-dev\n"
#: data/page.kramo.Cartridges.desktop.in:3
#: data/page.kramo.Cartridges.metainfo.xml.in:9
#: data/page.kramo.Cartridges.metainfo.xml.in:40 data/gtk/window.blp:47
#: data/gtk/window.blp:83
#: data/hu.kramo.Cartridges.desktop.in:3
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:47
#: src/main.py:146
msgid "Cartridges"
msgstr "خراطيش"
#: data/page.kramo.Cartridges.desktop.in:4
#: data/hu.kramo.Cartridges.desktop.in:4
msgid "Game Launcher"
msgstr "مشغِّل ألعاب"
#: data/page.kramo.Cartridges.desktop.in:5
#: data/page.kramo.Cartridges.metainfo.xml.in:10
#: data/hu.kramo.Cartridges.desktop.in:5
#: data/hu.kramo.Cartridges.metainfo.xml.in:7
msgid "Launch all your games"
msgstr "شغِّل كلَّ ألعابك"
#: data/page.kramo.Cartridges.desktop.in:11
msgid ""
"gaming;launcher;steam;lutris;heroic;bottles;itch;flatpak;legendary;retroarch;"
msgstr ""
"لعب;مشغل;ستيم;لوترس;هروك;قوارير;إتش;هيرويك;بوتلز;لجندري;فلاتباك;رتروآرتش;"
#: data/hu.kramo.Cartridges.desktop.in:11
msgid "gaming;launcher;steam;lutris;heroic;bottles;itch;"
msgstr "لعب;مشغل;ستيم;لوترس;هروك;قوارير;إتش;هيرويك;بوتلز;"
#: data/page.kramo.Cartridges.metainfo.xml.in:12
#: data/hu.kramo.Cartridges.metainfo.xml.in:9
msgid ""
"Cartridges is a simple game launcher for all of your games. It has support "
"for importing games from Steam, Lutris, Heroic and more with no login "
@@ -57,66 +50,78 @@ msgstr ""
"وبرامج أخرى، وذلك دون تسجيل دخول. ولك ترتيب وإخفاء الألعاب فيه كيفما شئت، "
"وكذلك تستطيع منه تنزيل غُلُف الألعاب من SteamGridDB."
#: data/page.kramo.Cartridges.metainfo.xml.in:44 data/gtk/window.blp:320
#: cartridges/details_dialog.py:77
msgid "Game Details"
msgstr "تفاصيل اللعبة"
#: data/hu.kramo.Cartridges.metainfo.xml.in:30
msgid "Library"
msgstr "المكتبة"
#: data/page.kramo.Cartridges.metainfo.xml.in:48
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 src/details_window.py:67
msgid "Edit Game Details"
msgstr "حرِّر تفاصيل اللعبة"
#: data/page.kramo.Cartridges.metainfo.xml.in:52 data/gtk/help-overlay.blp:19
#: data/gtk/window.blp:543 cartridges/details_dialog.py:279
#: cartridges/importer/importer.py:319 cartridges/importer/importer.py:369
#: data/hu.kramo.Cartridges.metainfo.xml.in:38 data/gtk/window.blp:71
msgid "Game Details"
msgstr "تفاصيل اللعبة"
#: data/hu.kramo.Cartridges.metainfo.xml.in:42 data/gtk/window.blp:416
#: src/details_window.py:239
msgid "Preferences"
msgstr "التفضيلات"
#: data/gtk/details-dialog.blp:15
#: data/gtk/details-window.blp:25
msgid "Cancel"
msgstr "ألغِ"
#: data/gtk/details-dialog.blp:45
#: data/gtk/details-window.blp:57
msgid "New Cover"
msgstr "غلاف جديد"
#: data/gtk/details-dialog.blp:64
#: data/gtk/details-window.blp:75
msgid "Delete Cover"
msgstr "احذف الغلاف"
#: data/gtk/details-dialog.blp:92 data/gtk/game.blp:80
#: data/gtk/details-window.blp:101 data/gtk/details-window.blp:106
#: data/gtk/game.blp:80
msgid "Title"
msgstr "العنوان"
#: data/gtk/details-dialog.blp:96
msgid "Developer (optional)"
msgstr "المطوِّر (اختياري)"
#: data/gtk/details-window.blp:102
msgid "The title of the game"
msgstr "عنوان اللعبة"
#: data/gtk/details-dialog.blp:102
#: data/gtk/details-window.blp:112 data/gtk/details-window.blp:117
msgid "Developer"
msgstr "المطوِّر"
#: data/gtk/details-window.blp:113
msgid "The developer or publisher (optional)"
msgstr "المطوِّر أو الناشر (اختياري)"
#: data/gtk/details-window.blp:123 data/gtk/details-window.blp:155
msgid "Executable"
msgstr "ملفُّ التنفيذ"
#: data/gtk/details-dialog.blp:108
msgid "Select File"
msgstr "اختر ملفًّا"
#: data/gtk/details-window.blp:124
msgid "File to open or command to run when launching the game"
msgstr "الملفُّ المفتوح أو الأمر المشغَّل عند بدء اللعبة"
#: data/gtk/details-dialog.blp:119
#: data/gtk/details-window.blp:130
msgid "More Info"
msgstr "معلومات أكثر"
#: data/gtk/game.blp:101 data/gtk/game.blp:109 data/gtk/window.blp:444
#: data/gtk/game.blp:102 data/gtk/game.blp:121 data/gtk/window.blp:195
msgid "Edit"
msgstr "حرِّر"
#: data/gtk/game.blp:102 cartridges/window.py:359
#: data/gtk/game.blp:107 src/window.py:169
msgid "Hide"
msgstr "أخفِ"
#: data/gtk/game.blp:103 data/gtk/game.blp:111 data/gtk/window.blp:464
#: data/gtk/game.blp:112 data/gtk/game.blp:131 data/gtk/preferences.blp:56
#: data/gtk/window.blp:209
msgid "Remove"
msgstr "أزل"
#: data/gtk/game.blp:110 cartridges/window.py:361
#: data/gtk/game.blp:126 src/window.py:171
msgid "Unhide"
msgstr "اكشف"
@@ -124,55 +129,52 @@ msgstr "اكشف"
msgid "General"
msgstr "عام"
#: data/gtk/help-overlay.blp:14 data/gtk/window.blp:207 data/gtk/window.blp:223
#: data/gtk/window.blp:274 data/gtk/window.blp:290 data/gtk/window.blp:475
msgid "Search"
msgstr "ابحث"
#: data/gtk/help-overlay.blp:24 data/gtk/window.blp:544
msgid "Keyboard Shortcuts"
msgstr "اختصارات لوحة المفاتيح"
#: data/gtk/help-overlay.blp:29 cartridges/game.py:103
#: cartridges/preferences.py:137 cartridges/importer/importer.py:386
msgid "Undo"
msgstr "تراجع"
#: data/gtk/help-overlay.blp:34
#: data/gtk/help-overlay.blp:14
msgid "Quit"
msgstr "أنهِ"
#: data/gtk/help-overlay.blp:39 data/gtk/window.blp:92 data/gtk/window.blp:187
msgid "Toggle Sidebar"
msgstr "أظهر شريط الجانب"
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:217 data/gtk/window.blp:257
#: data/gtk/window.blp:323
msgid "Search"
msgstr "ابحث"
#: data/gtk/help-overlay.blp:44 data/gtk/window.blp:200 data/gtk/window.blp:267
msgid "Main Menu"
msgstr "القائمة الرئيسة"
#: data/gtk/help-overlay.blp:24
msgid "Show preferences"
msgstr "أظهر التفضيلات"
#: data/gtk/help-overlay.blp:50
#: data/gtk/help-overlay.blp:29
msgid "Shortcuts"
msgstr "الاختصارات"
#: data/gtk/help-overlay.blp:34 src/game.py:105 src/preferences.py:103
msgid "Undo"
msgstr "تراجع"
#: data/gtk/help-overlay.blp:39
msgid "Open menu"
msgstr "افتح القائمة"
#: data/gtk/help-overlay.blp:45
msgid "Games"
msgstr "الألعاب"
#: data/gtk/help-overlay.blp:53 data/gtk/window.blp:193 data/gtk/window.blp:551
msgid "Add Game"
msgstr "أضف لعبةً"
#: data/gtk/help-overlay.blp:48
msgid "Add new game"
msgstr "أضف لعبةً جديدةً"
#: data/gtk/help-overlay.blp:58 data/gtk/preferences.blp:58
#: data/gtk/window.blp:27 data/gtk/window.blp:555
msgid "Import"
msgstr "استورد"
#: data/gtk/help-overlay.blp:53
msgid "Import games"
msgstr "استورد ألعابًا"
#: data/gtk/help-overlay.blp:63
msgid "Show Hidden Games"
#: data/gtk/help-overlay.blp:58
msgid "Show hidden games"
msgstr "أظهر الألعاب المخفية"
#: data/gtk/help-overlay.blp:68
msgid "Remove Game"
#: data/gtk/help-overlay.blp:63
msgid "Remove game"
msgstr "أزل اللعبة"
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:62
#: data/gtk/preferences.blp:365
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:236
msgid "Behavior"
msgstr "السلوك"
@@ -180,321 +182,260 @@ msgstr "السلوك"
msgid "Exit After Launching Games"
msgstr "اخرج بعد بدء الألعاب"
#: data/gtk/preferences.blp:20
#: data/gtk/preferences.blp:25
msgid "Cover Image Launches Game"
msgstr "تبدأ صورة الغلاف اللعبة"
#: data/gtk/preferences.blp:21
#: data/gtk/preferences.blp:26
msgid "Swaps the behavior of the cover image and the play button"
msgstr "يبدِّل سلوك صورة الغلاف وزرِّ «العب»"
#: data/gtk/preferences.blp:26 cartridges/details_dialog.py:91
#: data/gtk/preferences.blp:36 src/details_window.py:81
msgid "Images"
msgstr "الصور"
#: data/gtk/preferences.blp:29
#: data/gtk/preferences.blp:39
msgid "High Quality Images"
msgstr "صور ذات دقَّة عالية"
#: data/gtk/preferences.blp:30
#: data/gtk/preferences.blp:40
msgid "Save game covers losslessly at the cost of storage"
msgstr "احفظ غُلُف الألعاب دون فقد على حساب مساحة التخزين"
#: data/gtk/preferences.blp:35
#: data/gtk/preferences.blp:50
msgid "Danger Zone"
msgstr "منطقة خطر"
#: data/gtk/preferences.blp:39
#: data/gtk/preferences.blp:53
msgid "Remove All Games"
msgstr "أزل كلَّ الألعاب"
#: data/gtk/preferences.blp:65
msgid "Import Games Automatically"
msgstr "استيراد الألعاب تلقائيًا"
#: data/gtk/preferences.blp:85 data/gtk/window.blp:27 data/gtk/window.blp:442
msgid "Import"
msgstr "استورد"
#: data/gtk/preferences.blp:69
msgid "Remove Uninstalled Games"
msgstr "أزل الألعاب المحذوفة"
#: data/gtk/preferences.blp:74
#: data/gtk/preferences.blp:89
msgid "Sources"
msgstr "المصادر"
#: data/gtk/preferences.blp:78 cartridges/importer/steam_source.py:114
#: data/gtk/preferences.blp:92
msgid "Steam"
msgstr "ستيم"
#: data/gtk/preferences.blp:87 data/gtk/preferences.blp:114
#: data/gtk/preferences.blp:149 data/gtk/preferences.blp:192
#: data/gtk/preferences.blp:219 data/gtk/preferences.blp:246
#: data/gtk/preferences.blp:273
#: data/gtk/preferences.blp:96 data/gtk/preferences.blp:110
#: data/gtk/preferences.blp:142 data/gtk/preferences.blp:183
#: data/gtk/preferences.blp:197 data/gtk/preferences.blp:211
#, fuzzy
#| msgid "itch Install Location"
msgid "Install Location"
msgstr "موضع التثبيت"
msgstr "موضع تثبيت إتش"
#: data/gtk/preferences.blp:105 data/gtk/window.blp:565
#: cartridges/importer/lutris_source.py:107
#: data/gtk/preferences.blp:106
msgid "Lutris"
msgstr "لوترس"
#: data/gtk/preferences.blp:131
#: data/gtk/preferences.blp:119
#, fuzzy
#| msgid "Lutris Cache Location"
msgid "Cache Location"
msgstr "موضع ذكرة لوترس المؤقَّتة"
#: data/gtk/preferences.blp:128
msgid "Import Steam Games"
msgstr "استورد ألعابًا من ستيم"
#: data/gtk/preferences.blp:135
msgid "Import Flatpak Games"
msgstr "استورد ألعاب فلاتباك"
#: data/gtk/preferences.blp:140 cartridges/importer/heroic_source.py:355
#: data/gtk/preferences.blp:138
msgid "Heroic"
msgstr "هِرُوِك"
#: data/gtk/preferences.blp:166
#: data/gtk/preferences.blp:151
msgid "Import Epic Games"
msgstr "استورد ألعاب أَبِك"
#: data/gtk/preferences.blp:170
#: data/gtk/preferences.blp:160
msgid "Import GOG Games"
msgstr "استورد ألعاب جي‌أو‌جي"
#: data/gtk/preferences.blp:174
msgid "Import Amazon Games"
msgstr "استورد ألعابًا من أمازون"
#: data/gtk/preferences.blp:178
#: data/gtk/preferences.blp:169
msgid "Import Sideloaded Games"
msgstr "استورد ألعابًا مثبَّتةً بغير متجر"
#: data/gtk/preferences.blp:183 cartridges/importer/bottles_source.py:86
#: data/gtk/preferences.blp:179
msgid "Bottles"
msgstr "قوارير"
#: data/gtk/preferences.blp:210 cartridges/importer/itch_source.py:81
#: data/gtk/preferences.blp:193
msgid "itch"
msgstr "إتش"
#: data/gtk/preferences.blp:237 cartridges/importer/legendary_source.py:97
#: data/gtk/preferences.blp:207
msgid "Legendary"
msgstr "لجندري"
msgstr ""
#: data/gtk/preferences.blp:264 cartridges/importer/retroarch_source.py:142
msgid "RetroArch"
msgstr "رتروآرتش"
#: data/gtk/preferences.blp:291 cartridges/importer/flatpak_source.py:143
msgid "Flatpak"
msgstr "فلاتباك"
#. The location of the system-wide data directory
#: data/gtk/preferences.blp:301
msgid "System Location"
msgstr "موضع النظام"
#. The location of the user-specific data directory
#: data/gtk/preferences.blp:319
msgid "User Location"
msgstr "موضع المستخدم"
#: data/gtk/preferences.blp:336
msgid "Import Game Launchers"
msgstr "استورد مشغِّلات ألعاب"
#: data/gtk/preferences.blp:341 cartridges/importer/desktop_source.py:215
msgid "Desktop Entries"
msgstr "مدخلات سطح المكتب"
#: data/gtk/preferences.blp:353 data/gtk/window.blp:563
#: data/gtk/preferences.blp:224
msgid "SteamGridDB"
msgstr "SteamGridDB"
#: data/gtk/preferences.blp:357
#: data/gtk/preferences.blp:228
msgid "Authentication"
msgstr "الاستيثاق"
#: data/gtk/preferences.blp:360
#: data/gtk/preferences.blp:231
msgid "API Key"
msgstr "مفتاح واجهة البرمجة"
#: data/gtk/preferences.blp:368
#: data/gtk/preferences.blp:239
msgid "Use SteamGridDB"
msgstr "استخدم SteamGridDB"
#: data/gtk/preferences.blp:369
#: data/gtk/preferences.blp:240
msgid "Download images when adding or importing games"
msgstr "نزِّل الصور حينما تنزِّل أو تستورد الألعاب"
#: data/gtk/preferences.blp:373
#: data/gtk/preferences.blp:249
msgid "Prefer Over Official Images"
msgstr "فضِّلها على الصور الرسمية"
#: data/gtk/preferences.blp:377
#: data/gtk/preferences.blp:258
msgid "Prefer Animated Images"
msgstr "فضِّل الصور المتحرِّكة"
#: data/gtk/preferences.blp:383
msgid "Update Covers"
msgstr "حدِّث الغُلُف"
#: data/gtk/preferences.blp:384
msgid "Fetch covers for games already in your library"
msgstr "اجلب غُلُفًا للألعاب التي في المكتبة"
#: data/gtk/preferences.blp:389
msgid "Update"
msgstr "حدِّث"
#: data/gtk/window.blp:6 data/gtk/window.blp:14
msgid "No Games Found"
msgstr "لم يُعثر على ألعاب"
#: data/gtk/window.blp:7 data/gtk/window.blp:15
msgid "Try a different search"
msgstr "جرِّب بحثًا آخر"
msgid "Try a different search."
msgstr "جرِّب بحثًا آخر."
#: data/gtk/window.blp:21
msgid "No Games"
msgstr "لا توجد ألعاب"
#: data/gtk/window.blp:22
msgid "Use the + button to add games"
msgstr "استخدم زرَّ + لتضيف ألعابًا"
msgid "Use the + button to add games."
msgstr "استخدم زرَّ + لتضيف ألعابًا."
#: data/gtk/window.blp:40
msgid "No Hidden Games"
msgstr "لا توجد ألعاب مخفية"
#: data/gtk/window.blp:41
msgid "Games you hide will appear here"
msgstr "هنا يظهر ما أخفيت من ألعاب"
msgid "Games you hide will appear here."
msgstr "هنا يظهر ما أخفيت من ألعاب."
#: data/gtk/window.blp:76 data/gtk/window.blp:113 cartridges/main.py:249
msgid "All Games"
msgstr "كلُّ الألعاب"
#: data/gtk/window.blp:64 data/gtk/window.blp:304
msgid "Back"
msgstr "عد"
#: data/gtk/window.blp:140 cartridges/main.py:251
msgid "Added"
msgstr "أُضيفَت"
#: data/gtk/window.blp:162
msgid "Imported"
msgstr "اُستوردَت"
#: data/gtk/window.blp:260
msgid "Hidden Games"
msgstr "الألعاب المخفية"
#: data/gtk/window.blp:368
#: data/gtk/window.blp:121
msgid "Game Title"
msgstr "عنوان اللعبة"
#: data/gtk/window.blp:425
#: data/gtk/window.blp:176
msgid "Play"
msgstr "العب"
#: data/gtk/window.blp:502
#: data/gtk/window.blp:243 data/gtk/window.blp:435
msgid "Add Game"
msgstr "أضف لعبةً"
#: data/gtk/window.blp:250 data/gtk/window.blp:316
msgid "Main Menu"
msgstr "القائمة الرئيسة"
#: data/gtk/window.blp:311
msgid "Hidden Games"
msgstr "الألعاب المخفية"
#: data/gtk/window.blp:374
msgid "Sort"
msgstr "رتِّب"
#: data/gtk/window.blp:505
#: data/gtk/window.blp:377
msgid "A-Z"
msgstr "أ-ي"
#: data/gtk/window.blp:511
#: data/gtk/window.blp:383
msgid "Z-A"
msgstr "ي-أ"
#: data/gtk/window.blp:517
#: data/gtk/window.blp:389
msgid "Newest"
msgstr "الأجدد"
#: data/gtk/window.blp:523
#: data/gtk/window.blp:395
msgid "Oldest"
msgstr "الأقدم"
#: data/gtk/window.blp:529
#: data/gtk/window.blp:401
msgid "Last Played"
msgstr "لُعبت آخر مرَّة"
#: data/gtk/window.blp:536
#: data/gtk/window.blp:408
msgid "Show Hidden"
msgstr "أظهر ما أخفي"
#: data/gtk/window.blp:545
#: data/gtk/window.blp:421
msgid "Keyboard Shortcuts"
msgstr "اختصارات لوحة المفاتيح"
#: data/gtk/window.blp:426
msgid "About Cartridges"
msgstr "عن «خراطيش»"
#: data/gtk/window.blp:562
msgid "IGDB"
msgstr "IGDB"
#: data/gtk/window.blp:564
msgid "ProtonDB"
msgstr "ProtonDB"
#: data/gtk/window.blp:566
msgid "HowLongToBeat"
msgstr "HowLongToBeat"
#. The variable is the title of the game
#: cartridges/main.py:226 cartridges/game.py:125
msgid "{} launched"
msgstr "بُدئت {}"
#. Translators: Replace this with Your Name, Your Name <your.email@example.com>, or Your Name https://your-site.com for it to show up in the About dialog.
#: cartridges/main.py:291
msgid "translator-credits"
#. Translators: Replace this with your name for it to show up in the about window
#: src/main.py:164
msgid "translator_credits"
msgstr "Ali Aljishi <ahj696@hotmail.com>"
#. The variable is the date when the game was added
#: cartridges/window.py:382
#: src/window.py:192
msgid "Added: {}"
msgstr "أضيفت في: {}"
#: cartridges/window.py:385
#: src/window.py:195
msgid "Never"
msgstr "أبدًا"
#. The variable is the date when the game was last played
#: cartridges/window.py:389
#: src/window.py:199
msgid "Last played: {}"
msgstr "لُعبت آخر مرَّة في: {}"
#: cartridges/details_dialog.py:82
#: src/details_window.py:72
msgid "Apply"
msgstr "طبِّق"
#: cartridges/details_dialog.py:88
#: src/details_window.py:78
msgid "Add New Game"
msgstr "أضف لعبةً جديدةً"
#: cartridges/details_dialog.py:89
msgid "Add"
msgstr "أضف"
#: cartridges/details_dialog.py:102
msgid "Executables"
msgstr "ملفات التنفيذ"
#: src/details_window.py:79
msgid "Confirm"
msgstr "أكِّد"
#. Translate this string as you would translate "file"
#: cartridges/details_dialog.py:117
#: src/details_window.py:91
msgid "file.txt"
msgstr "ملف.txt"
#. As in software
#: cartridges/details_dialog.py:119
#: src/details_window.py:93
msgid "program"
msgstr "البرنامج"
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:124 cartridges/details_dialog.py:126
#: src/details_window.py:98 src/details_window.py:100
msgid "C:\\path\\to\\{}"
msgstr "C:\\المسار\\إلى\\{}"
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:130 cartridges/details_dialog.py:132
#: src/details_window.py:104 src/details_window.py:106
msgid "/path/to/{}"
msgstr "/المسار/إلى/{}"
#: cartridges/details_dialog.py:137
#: src/details_window.py:111
msgid ""
"To launch the executable \"{}\", use the command:\n"
"\n"
@@ -516,243 +457,90 @@ msgstr ""
"\n"
"ولا تنسَ إحاطة المسار بعلامتي تنصيص مزدوجتين حالما تضمَّن مسافات!"
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:185
#: src/details_window.py:146 src/details_window.py:152
msgid "Couldn't Add Game"
msgstr "تعذَّرت إضافة اللعبة"
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:221
#: src/details_window.py:146 src/details_window.py:181
msgid "Game title cannot be empty."
msgstr "لا يجوز كون عنوان اللعبة فارغًا."
#: cartridges/details_dialog.py:185 cartridges/details_dialog.py:229
#: src/details_window.py:152 src/details_window.py:189
msgid "Executable cannot be empty."
msgstr "لا يجوز كون ملفِّ التنفيذ فارغًا."
#: cartridges/details_dialog.py:220 cartridges/details_dialog.py:228
#: src/details_window.py:180 src/details_window.py:188
msgid "Couldn't Apply Preferences"
msgstr "تعذَّر تطبيق التفضيلات"
#. The variable is the title of the game
#: cartridges/game.py:139
#: src/game.py:141
msgid "{} launched"
msgstr "بُدئت {}"
#. The variable is the title of the game
#: src/game.py:154
msgid "{} hidden"
msgstr "أٌخفيت {}"
#: cartridges/game.py:139
#: src/game.py:154
msgid "{} unhidden"
msgstr "أٌظهرت {}"
#. The variable is the title of the game
#: cartridges/game.py:153
#: src/game.py:171
msgid "{} removed"
msgstr "أزيلت {}"
#: cartridges/preferences.py:136
#: src/preferences.py:102
msgid "All games removed"
msgstr "أُزيلت كلُّ الألعاب"
#: cartridges/preferences.py:188
#: src/preferences.py:149
msgid ""
"An API key is required to use SteamGridDB. You can generate one {}here{}."
msgstr ""
"تحتاج مفتاح واجهة برمجة حال ما أردت استخدام SteamGridDB، {}هنا تولِّده{}."
#: cartridges/preferences.py:203
msgid "Downloading covers…"
msgstr "تُنزَّل الغُلُف…"
#: cartridges/preferences.py:222
msgid "Covers updated"
msgstr "حُدِّثت الغُلُف"
#: cartridges/preferences.py:370
msgid "Installation Not Found"
msgstr "لم يُعثر على التثبيت"
#: cartridges/preferences.py:371
msgid "Select a valid directory"
msgstr "حدِّد مجلَّدًا صالحًا"
#: cartridges/preferences.py:407 cartridges/importer/importer.py:317
msgid "Warning"
msgstr "تحذير"
#: cartridges/preferences.py:441
msgid "Invalid Directory"
msgstr "مجلَّد غير صالح"
#: cartridges/preferences.py:447
#: src/preferences.py:289
msgid "Set Location"
msgstr "عيِّن الموضع"
#: cartridges/utils/create_dialog.py:33 cartridges/importer/importer.py:318
#: src/utils/create_dialog.py:25
msgid "Dismiss"
msgstr "تجاهل"
#: cartridges/utils/relative_date.py:30
msgid "Today"
msgstr "اليوم"
#: src/importer/sources/source.py:106
msgid "Data"
msgstr ""
#: cartridges/utils/relative_date.py:32
msgid "Yesterday"
msgstr "أمس"
#: src/importer/sources/source.py:107
msgid "Cache"
msgstr ""
#: cartridges/utils/relative_date.py:36
msgid "Last Week"
msgstr "آخر أسبوع"
#: src/importer/sources/source.py:108
#, fuzzy
#| msgid "Confirm"
msgid "Configuration"
msgstr "أكِّد"
#: cartridges/utils/relative_date.py:38
msgid "This Month"
msgstr "هذا الشهر"
#. The variables are the type of location (eg. cache) and the source's name (eg. Steam)
#: src/importer/sources/source.py:119
msgid "Invalid {} Location for {{}}"
msgstr ""
#: cartridges/utils/relative_date.py:40
msgid "Last Month"
msgstr "الشهر الماضي"
#: src/importer/sources/source.py:120
msgid "Pick a new one or disable the source in preferences"
msgstr ""
#: cartridges/utils/relative_date.py:44
msgid "Last Year"
msgstr "العام الماضي"
#: cartridges/importer/importer.py:144
msgid "Importing Games…"
msgstr "تُستورد الألعاب…"
#: cartridges/importer/importer.py:337
msgid "The following errors occured during import:"
msgstr "طرأ هذا الخطأ أثناء الاستيراد:"
#: cartridges/importer/importer.py:366
msgid "No new games found"
msgstr "لم يُعثر على ألعاب جديدة"
#. The variable is the number of games.
#: cartridges/importer/importer.py:379
msgid "{} game imported"
msgid_plural "{} games imported"
msgstr[0] "لم تستورد لعبة"
msgstr[1] "اُستوردت {} لعبة"
msgstr[2] "اُستوردت لعبتان"
msgstr[3] "اُستوردت {} ألعاب"
msgstr[4] "اُستوردت {} لعبة"
msgstr[5] "اُستوردت {} لعبة"
#. The variable is the number of games. This text comes after "{0} games imported".
#: cartridges/importer/importer.py:383
msgid ", {} removed"
msgid_plural ", {} removed"
msgstr[0] "، ولم تُزل أي لعبة"
msgstr[1] "، وأزيلت لعبة"
msgstr[2] "، وأزيلت لعبتان"
msgstr[3] "، وأزيلت {} ألعاب"
msgstr[4] "، وأزيلت {} لعبة"
msgstr[5] "، وأزيلت {} لعبة"
#. The variable is the name of the source
#: cartridges/importer/location.py:34
msgid "Select the {} cache directory."
msgstr "حدِّد مجلَّد ذاكرة {} المؤقتة."
#. The variable is the name of the source
#: cartridges/importer/location.py:36
msgid "Select the {} configuration directory."
msgstr "حدِّد مجلَّد ضبط {}."
#. The variable is the name of the source
#: cartridges/importer/location.py:38
msgid "Select the {} data directory."
msgstr "حدِّد مجلَّد بيانات {}."
#: cartridges/importer/retroarch_source.py:129
msgid "No RetroArch Core Selected"
msgstr "لم تختر نواة رتروآرتش"
#. The variable is a newline separated list of playlists
#: cartridges/importer/retroarch_source.py:131
msgid "The following playlists have no default core:"
msgstr "ليس للقوائم التالية نواة مبدئية:"
#: cartridges/importer/retroarch_source.py:133
msgid "Games with no core selected were not imported"
msgstr "لم نستورد الألعاب التي لم تختر لها أنويةً"
#: cartridges/store/managers/sgdb_manager.py:46
#: src/store/managers/sgdb_manager.py:47
#, fuzzy
#| msgid "Couldn't Connect to SteamGridDB"
msgid "Couldn't Authenticate SteamGridDB"
msgstr "تعذَّر استيثاق SteamGridDB"
msgstr "تعذَّر الاتصال ب‍ SteamGridDB"
#: cartridges/store/managers/sgdb_manager.py:47
#: src/store/managers/sgdb_manager.py:48
msgid "Verify your API key in preferences"
msgstr "أكِّد مفتاح واجهة البرمجة في التفضيلات"
#, fuzzy
#~ msgid "1 game imported"
#~ msgid_plural "{} games imported"
#~ msgstr[0] "اُستوردت لعبة واحدة"
#~ msgstr[1] "اُستوردت {} لعبة"
#~ msgstr[2] "اُستوردت {} لعبة"
#~ msgstr[3] "اُستوردت {} لعبة"
#~ msgstr[4] "اُستوردت {} لعبة"
#~ msgstr[5] "اُستوردت {} لعبة"
#, fuzzy
#~ msgid "1 removed"
#~ msgid_plural "{} removed"
#~ msgstr[0] "أزيل ١"
#~ msgstr[1] "أزيل {}"
#~ msgstr[2] "أزيل {}"
#~ msgstr[3] "أزيل {}"
#~ msgstr[4] "أزيل {}"
#~ msgstr[5] "أزيل {}"
#~ msgid "Cache Location"
#~ msgstr "موضع الذاكرة المؤقتة"
#~ msgid "Library"
#~ msgstr "المكتبة"
#~ msgid "Show preferences"
#~ msgstr "أظهر التفضيلات"
#~ msgid "Shortcuts"
#~ msgstr "الاختصارات"
#~ msgid "Open menu"
#~ msgstr "افتح القائمة"
#~ msgid "Add new game"
#~ msgstr "أضف لعبةً جديدةً"
#~ msgid "Import games"
#~ msgstr "استورد ألعابًا"
#~ msgid "Back"
#~ msgstr "عد"
#~ msgid "Search games"
#~ msgstr "ابحث عن ألعاب"
#~ msgid "Search hidden games"
#~ msgstr "ابحث في الألعاب المخفية"
#~ msgid "The title of the game"
#~ msgstr "عنوان اللعبة"
#~ msgid "Developer"
#~ msgstr "المطوِّر"
#~ msgid "File to open or command to run when launching the game"
#~ msgstr "الملفُّ المفتوح أو الأمر المشغَّل عند بدء اللعبة"
#~ msgid "Confirm"
#~ msgstr "أكِّد"
#, fuzzy
#~| msgid "The Steam directory cannot be found."
#~ msgid "Directory not Valid"
#~ msgstr "تعذَّر العثور على مجلَّد ستيم."
#, fuzzy
#~| msgid "Confirm"
#~ msgid "Configuration"
#~ msgstr "أكِّد"
msgstr ""
#~ msgid "Steam Install Location"
#~ msgstr "موضع تثبيت ستيم"
@@ -766,12 +554,42 @@ msgstr "أكِّد مفتاح واجهة البرمجة في التفضيلات"
#~ msgid "Bottles Install Location"
#~ msgstr "موضع تثبيت قوارير"
#~ msgid "Today"
#~ msgstr "اليوم"
#~ msgid "Yesterday"
#~ msgstr "أمس"
#~ msgid "Cache Not Found"
#~ msgstr "لم يُعثر على الذاكرة المؤقَّتة"
#~ msgid "Select the Lutris cache directory."
#~ msgstr "حدِّد مجلَّد ذاكرة لوترس المؤقَّتة."
#~ msgid "Installation Not Found"
#~ msgstr "لم يُعثر على التثبيت"
#~ msgid "Select the {} configuration directory."
#~ msgstr "حدِّد مجلَّد ضبط {}."
#~ msgid "Select the {} data directory."
#~ msgstr "حدِّد مجلَّد بيانات {}."
#~ msgid "Importing Games…"
#~ msgstr "تُستورد الألعاب…"
#~ msgid "Importing Covers…"
#~ msgstr "تُستورد الغُلُف…"
#~ msgid "No new games found"
#~ msgstr "لم يُعثر على ألعاب جديدة"
#~ msgid "1 game imported"
#~ msgstr "اُستوردت لعبة واحدة"
#~ msgid "{} games imported"
#~ msgstr "اُستوردت {} لعبة"
#~ msgid "Directory to use when importing games"
#~ msgstr "المجلَّد المستخدم عند استيراد الألعاب"
@@ -877,6 +695,9 @@ msgstr "أكِّد مفتاح واجهة البرمجة في التفضيلات"
#~ msgid "No new games were found in the Steam library."
#~ msgstr "لم يُعثر على ألعاب جديدة في مكتبة ستيم."
#~ msgid "The Steam directory cannot be found."
#~ msgstr "تعذَّر العثور على مجلَّد ستيم."
#~ msgid "Talking to Steam"
#~ msgstr "يُتواصل مع ستيم"

694
po/be.po
View File

@@ -1,694 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR kramo
# This file is distributed under the same license as the Cartridges package.
# Yahor <k1llo2810@gmail.com>, 2023.
# Yahor <g_egor98@tut.by>, 2023.
# Yahor <k1llo2810@protonmail.com>, 2023, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Cartridges\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-11-05 14:01+0100\n"
"PO-Revision-Date: 2025-08-16 12:02+0000\n"
"Last-Translator: Yahor <k1llo2810@protonmail.com>\n"
"Language-Team: Belarusian <https://hosted.weblate.org/projects/cartridges/"
"cartridges/be/>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Weblate 5.13\n"
#: data/page.kramo.Cartridges.desktop.in:3
#: data/page.kramo.Cartridges.metainfo.xml.in:9
#: data/page.kramo.Cartridges.metainfo.xml.in:40 data/gtk/window.blp:47
#: data/gtk/window.blp:83
msgid "Cartridges"
msgstr "Картрыджы"
#: data/page.kramo.Cartridges.desktop.in:4
msgid "Game Launcher"
msgstr "Праграма запуску гульняў"
#: data/page.kramo.Cartridges.desktop.in:5
#: data/page.kramo.Cartridges.metainfo.xml.in:10
msgid "Launch all your games"
msgstr "Запускайце ўсе свае гульні"
#: data/page.kramo.Cartridges.desktop.in:11
msgid ""
"gaming;launcher;steam;lutris;heroic;bottles;itch;flatpak;legendary;retroarch;"
msgstr ""
"гульні;праграма запуску;steam;lutris;heroic;bottles;itch;flatpak;legendary;"
"retroarch;"
#: data/page.kramo.Cartridges.metainfo.xml.in:12
msgid ""
"Cartridges is a simple game launcher for all of your games. It has support "
"for importing games from Steam, Lutris, Heroic and more with no login "
"necessary. You can sort and hide games or download cover art from "
"SteamGridDB."
msgstr ""
"Картрыджы - гэта простая праграма для запуску ўсіх вашых гульняў. Яна "
"падтрымлівае імпарт гульняў з Steam, Lutris, Heroic і іншых без неабходнасці "
"ўваходу ў сістэму. Вы можаце сартаваць і хаваць гульні або спампоўваць "
"вокладку з SteamGridDB."
#: data/page.kramo.Cartridges.metainfo.xml.in:44 data/gtk/window.blp:320
#: cartridges/details_dialog.py:77
msgid "Game Details"
msgstr "Падрабязнасці аб гульні"
#: data/page.kramo.Cartridges.metainfo.xml.in:48
msgid "Edit Game Details"
msgstr "Рэдагаваць падрабязнасці аб гульні"
#: data/page.kramo.Cartridges.metainfo.xml.in:52 data/gtk/help-overlay.blp:19
#: data/gtk/window.blp:543 cartridges/details_dialog.py:279
#: cartridges/importer/importer.py:319 cartridges/importer/importer.py:369
msgid "Preferences"
msgstr "Параметры"
#: data/gtk/details-dialog.blp:15
msgid "Cancel"
msgstr "Скасаваць"
#: data/gtk/details-dialog.blp:45
msgid "New Cover"
msgstr "Новая вокладка"
#: data/gtk/details-dialog.blp:64
msgid "Delete Cover"
msgstr "Выдалиць вокладку"
#: data/gtk/details-dialog.blp:92 data/gtk/game.blp:80
msgid "Title"
msgstr "Назва"
#: data/gtk/details-dialog.blp:96
msgid "Developer (optional)"
msgstr "Распрацоўшчык (неабавязкова)"
#: data/gtk/details-dialog.blp:102
msgid "Executable"
msgstr "Выконваны"
#: data/gtk/details-dialog.blp:108
msgid "Select File"
msgstr "Выбраць файл"
#: data/gtk/details-dialog.blp:119
msgid "More Info"
msgstr "Больш інфармацыі"
#: data/gtk/game.blp:101 data/gtk/game.blp:109 data/gtk/window.blp:444
msgid "Edit"
msgstr "Рэдагаваць"
#: data/gtk/game.blp:102 cartridges/window.py:359
msgid "Hide"
msgstr "Схаваць"
#: data/gtk/game.blp:103 data/gtk/game.blp:111 data/gtk/window.blp:464
msgid "Remove"
msgstr "Выдаліць"
#: data/gtk/game.blp:110 cartridges/window.py:361
msgid "Unhide"
msgstr "Паказаць"
#: data/gtk/help-overlay.blp:11 data/gtk/preferences.blp:9
msgid "General"
msgstr "Агульнае"
#: data/gtk/help-overlay.blp:14 data/gtk/window.blp:207 data/gtk/window.blp:223
#: data/gtk/window.blp:274 data/gtk/window.blp:290 data/gtk/window.blp:475
msgid "Search"
msgstr "Пошук"
#: data/gtk/help-overlay.blp:24 data/gtk/window.blp:544
msgid "Keyboard Shortcuts"
msgstr "Спалучэнні клавіш"
#: data/gtk/help-overlay.blp:29 cartridges/game.py:103
#: cartridges/preferences.py:137 cartridges/importer/importer.py:386
msgid "Undo"
msgstr "Адмяніць"
#: data/gtk/help-overlay.blp:34
msgid "Quit"
msgstr "Выйсці"
#: data/gtk/help-overlay.blp:39 data/gtk/window.blp:92 data/gtk/window.blp:187
msgid "Toggle Sidebar"
msgstr "Пераключыць бакавую панэль"
#: data/gtk/help-overlay.blp:44 data/gtk/window.blp:200 data/gtk/window.blp:267
msgid "Main Menu"
msgstr "Галоўнае меню"
#: data/gtk/help-overlay.blp:50
msgid "Games"
msgstr "Гульні"
#: data/gtk/help-overlay.blp:53 data/gtk/window.blp:193 data/gtk/window.blp:551
msgid "Add Game"
msgstr "Дадаць гульню"
#: data/gtk/help-overlay.blp:58 data/gtk/preferences.blp:58
#: data/gtk/window.blp:27 data/gtk/window.blp:555
msgid "Import"
msgstr "Імпарт"
#: data/gtk/help-overlay.blp:63
msgid "Show Hidden Games"
msgstr "Паказаць схаваныя гульні"
#: data/gtk/help-overlay.blp:68
msgid "Remove Game"
msgstr "Выдаліць гульню"
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:62
#: data/gtk/preferences.blp:365
msgid "Behavior"
msgstr "Паводзіны"
#: data/gtk/preferences.blp:16
msgid "Exit After Launching Games"
msgstr "Выхад пасля запуску гульняў"
#: data/gtk/preferences.blp:20
msgid "Cover Image Launches Game"
msgstr "Выява вокладкі запускае гульню"
#: data/gtk/preferences.blp:21
msgid "Swaps the behavior of the cover image and the play button"
msgstr "Мяняе паводзіны вокладкі і кнопкі запуску"
#: data/gtk/preferences.blp:26 cartridges/details_dialog.py:91
msgid "Images"
msgstr "Відарысы"
#: data/gtk/preferences.blp:29
msgid "High Quality Images"
msgstr "Відарысы высокай якасці"
#: data/gtk/preferences.blp:30
msgid "Save game covers losslessly at the cost of storage"
msgstr "Захаванне вокладак гульняў без страт за кошт сховішча"
#: data/gtk/preferences.blp:35
msgid "Danger Zone"
msgstr "Небяспечная зона"
#: data/gtk/preferences.blp:39
msgid "Remove All Games"
msgstr "Выдаліць усе гульні"
#: data/gtk/preferences.blp:65
msgid "Import Games Automatically"
msgstr "Імпартаваць гульні аўтаматычна"
#: data/gtk/preferences.blp:69
msgid "Remove Uninstalled Games"
msgstr "Выдаляць дэінсталяваныя гульні"
#: data/gtk/preferences.blp:74
msgid "Sources"
msgstr "Крыніцы"
#: data/gtk/preferences.blp:78 cartridges/importer/steam_source.py:114
msgid "Steam"
msgstr "Steam"
#: data/gtk/preferences.blp:87 data/gtk/preferences.blp:114
#: data/gtk/preferences.blp:149 data/gtk/preferences.blp:192
#: data/gtk/preferences.blp:219 data/gtk/preferences.blp:246
#: data/gtk/preferences.blp:273
msgid "Install Location"
msgstr "Месца ўсталёўкі"
#: data/gtk/preferences.blp:105 data/gtk/window.blp:565
#: cartridges/importer/lutris_source.py:107
msgid "Lutris"
msgstr "Lutris"
#: data/gtk/preferences.blp:131
msgid "Import Steam Games"
msgstr "Імпарт гульняў Steam"
#: data/gtk/preferences.blp:135
msgid "Import Flatpak Games"
msgstr "Імпарт гульняў Flatpak"
#: data/gtk/preferences.blp:140 cartridges/importer/heroic_source.py:355
msgid "Heroic"
msgstr "Heroic"
#: data/gtk/preferences.blp:166
msgid "Import Epic Games"
msgstr "Імпарт Epic Games"
#: data/gtk/preferences.blp:170
msgid "Import GOG Games"
msgstr "Імпарт гульняў GOG"
#: data/gtk/preferences.blp:174
msgid "Import Amazon Games"
msgstr "Імпарт гульняў Amazon"
#: data/gtk/preferences.blp:178
msgid "Import Sideloaded Games"
msgstr "Імпарт іншых гульняў"
#: data/gtk/preferences.blp:183 cartridges/importer/bottles_source.py:86
msgid "Bottles"
msgstr "Bottles"
#: data/gtk/preferences.blp:210 cartridges/importer/itch_source.py:81
msgid "itch"
msgstr "itch"
#: data/gtk/preferences.blp:237 cartridges/importer/legendary_source.py:97
msgid "Legendary"
msgstr "Legendary"
#: data/gtk/preferences.blp:264 cartridges/importer/retroarch_source.py:142
msgid "RetroArch"
msgstr "RetroArch"
#: data/gtk/preferences.blp:291 cartridges/importer/flatpak_source.py:143
msgid "Flatpak"
msgstr "Flatpak"
#. The location of the system-wide data directory
#: data/gtk/preferences.blp:301
msgid "System Location"
msgstr "Сістэмнае размяшчэнне"
#. The location of the user-specific data directory
#: data/gtk/preferences.blp:319
msgid "User Location"
msgstr "Карыстальніцкае размяшчэнне"
#: data/gtk/preferences.blp:336
msgid "Import Game Launchers"
msgstr "Імпарт сродкаў запуску гульняў"
#: data/gtk/preferences.blp:341 cartridges/importer/desktop_source.py:215
msgid "Desktop Entries"
msgstr "Запісы працоўнага стала"
#: data/gtk/preferences.blp:353 data/gtk/window.blp:563
msgid "SteamGridDB"
msgstr "SteamGridDB"
#: data/gtk/preferences.blp:357
msgid "Authentication"
msgstr "Аўтэнтыфікацыя"
#: data/gtk/preferences.blp:360
msgid "API Key"
msgstr "Ключ API"
#: data/gtk/preferences.blp:368
msgid "Use SteamGridDB"
msgstr "Выкарыстоўвайць SteamGridDB"
#: data/gtk/preferences.blp:369
msgid "Download images when adding or importing games"
msgstr "Спампоўка відарысаў пры даданні ці імпарце гульняў"
#: data/gtk/preferences.blp:373
msgid "Prefer Over Official Images"
msgstr "Аддавайце перавагу афіцыйным відарысам"
#: data/gtk/preferences.blp:377
msgid "Prefer Animated Images"
msgstr "Аддавайце перавагу аніміраваным відарысам"
#: data/gtk/preferences.blp:383
msgid "Update Covers"
msgstr "Абнавіць вокладкі"
#: data/gtk/preferences.blp:384
msgid "Fetch covers for games already in your library"
msgstr "Атрымаць вокладкі для гульняў, якія ўжо ёсць у вашай бібліятэцы"
#: data/gtk/preferences.blp:389
msgid "Update"
msgstr "Абнавіць"
#: data/gtk/window.blp:6 data/gtk/window.blp:14
msgid "No Games Found"
msgstr "Гульні не знойдзены"
#: data/gtk/window.blp:7 data/gtk/window.blp:15
msgid "Try a different search"
msgstr "Паспрабуйце іншы пошук"
#: data/gtk/window.blp:21
msgid "No Games"
msgstr "Няма гульняў"
#: data/gtk/window.blp:22
msgid "Use the + button to add games"
msgstr "Выкарыстоўвайце кнопку +, каб дадаць гульні"
#: data/gtk/window.blp:40
msgid "No Hidden Games"
msgstr "Няма схаваных гульняў"
#: data/gtk/window.blp:41
msgid "Games you hide will appear here"
msgstr "Гульні, якія вы схаваеце, з'явяцца тут"
#: data/gtk/window.blp:76 data/gtk/window.blp:113 cartridges/main.py:249
msgid "All Games"
msgstr "Усе гульні"
#: data/gtk/window.blp:140 cartridges/main.py:251
msgid "Added"
msgstr "Дададзена"
#: data/gtk/window.blp:162
msgid "Imported"
msgstr "Імпартавана"
#: data/gtk/window.blp:260
msgid "Hidden Games"
msgstr "Схаваныя гульні"
#: data/gtk/window.blp:368
msgid "Game Title"
msgstr "Назва гульні"
#: data/gtk/window.blp:425
msgid "Play"
msgstr "Гуляць"
#: data/gtk/window.blp:502
msgid "Sort"
msgstr "Сартаваць"
#: data/gtk/window.blp:505
msgid "A-Z"
msgstr "А-Я"
#: data/gtk/window.blp:511
msgid "Z-A"
msgstr "Я-А"
#: data/gtk/window.blp:517
msgid "Newest"
msgstr "Найноўшыя"
#: data/gtk/window.blp:523
msgid "Oldest"
msgstr "Старэйшыя"
#: data/gtk/window.blp:529
msgid "Last Played"
msgstr "Апошняя гульня"
#: data/gtk/window.blp:536
msgid "Show Hidden"
msgstr "Паказаць схаваныя"
#: data/gtk/window.blp:545
msgid "About Cartridges"
msgstr "Аб картрыджах"
#: data/gtk/window.blp:562
msgid "IGDB"
msgstr "IGDB"
#: data/gtk/window.blp:564
msgid "ProtonDB"
msgstr "ProtonDB"
#: data/gtk/window.blp:566
msgid "HowLongToBeat"
msgstr "HowLongToBeat"
#. The variable is the title of the game
#: cartridges/main.py:226 cartridges/game.py:125
msgid "{} launched"
msgstr "{} запушчана"
#. Translators: Replace this with Your Name, Your Name <your.email@example.com>, or Your Name https://your-site.com for it to show up in the About dialog.
#: cartridges/main.py:291
msgid "translator-credits"
msgstr "Yahor Haurylenka https://github.com/k1llo"
#. The variable is the date when the game was added
#: cartridges/window.py:382
msgid "Added: {}"
msgstr "Дададзена: {}"
#: cartridges/window.py:385
msgid "Never"
msgstr "Ніколі"
#. The variable is the date when the game was last played
#: cartridges/window.py:389
msgid "Last played: {}"
msgstr "Гулялі апошні раз: {}"
#: cartridges/details_dialog.py:82
msgid "Apply"
msgstr "Ужыць"
#: cartridges/details_dialog.py:88
msgid "Add New Game"
msgstr "Дадаць новую гульню"
#: cartridges/details_dialog.py:89
msgid "Add"
msgstr "Дадаць"
#: cartridges/details_dialog.py:102
msgid "Executables"
msgstr "Выконваныя"
#. Translate this string as you would translate "file"
#: cartridges/details_dialog.py:117
msgid "file.txt"
msgstr "file.txt"
#. As in software
#: cartridges/details_dialog.py:119
msgid "program"
msgstr "праграма"
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:124 cartridges/details_dialog.py:126
msgid "C:\\path\\to\\{}"
msgstr "C:\\шлях\\да\\{}"
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:130 cartridges/details_dialog.py:132
msgid "/path/to/{}"
msgstr "/шлях/да/{}"
#: cartridges/details_dialog.py:137
msgid ""
"To launch the executable \"{}\", use the command:\n"
"\n"
"<tt>\"{}\"</tt>\n"
"\n"
"To open the file \"{}\" with the default application, use:\n"
"\n"
"<tt>{} \"{}\"</tt>\n"
"\n"
"If the path contains spaces, make sure to wrap it in double quotes!"
msgstr ""
"Каб запусціць выкананы файл \"{}\", выканайце каманду:\n"
"\n"
"<tt>\"{}\"</tt>\n"
"\n"
"Каб адкрыць файл \"{}\" з дапамогай праграмы па змаўчанні, выкарыстоўвайце:\n"
"\n"
"<tt>{} \"{}\"</tt>\n"
"\n"
"Калі шлях змяшчае прабелы, абавязкова заключыце яго ў падвойныя двукоссі!"
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:185
msgid "Couldn't Add Game"
msgstr "Не ўдалося дадаць гульню"
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:221
msgid "Game title cannot be empty."
msgstr "Назва гульні не можа быць пустой."
#: cartridges/details_dialog.py:185 cartridges/details_dialog.py:229
msgid "Executable cannot be empty."
msgstr "Выканальны файл не можа быць пустым."
#: cartridges/details_dialog.py:220 cartridges/details_dialog.py:228
msgid "Couldn't Apply Preferences"
msgstr "Не ўдалося прымяніць параметры"
#. The variable is the title of the game
#: cartridges/game.py:139
msgid "{} hidden"
msgstr "{} схаваная"
#: cartridges/game.py:139
msgid "{} unhidden"
msgstr "{} непрыхавана"
#. The variable is the title of the game
#: cartridges/game.py:153
msgid "{} removed"
msgstr "{} выдалена"
#: cartridges/preferences.py:136
msgid "All games removed"
msgstr "Усе гульні выдалены"
#: cartridges/preferences.py:188
msgid ""
"An API key is required to use SteamGridDB. You can generate one {}here{}."
msgstr ""
"Для выкарыстання SteamGridDB патрабуецца ключ API. Вы можаце стварыць яго {}"
"тут{}."
#: cartridges/preferences.py:203
msgid "Downloading covers…"
msgstr "Спампоўка вокладак…"
#: cartridges/preferences.py:222
msgid "Covers updated"
msgstr "Вокладкі абноўлены"
#: cartridges/preferences.py:370
msgid "Installation Not Found"
msgstr "Усталяванне не знойдзена"
#: cartridges/preferences.py:371
msgid "Select a valid directory"
msgstr "Выберыце сапраўдны каталог"
#: cartridges/preferences.py:407 cartridges/importer/importer.py:317
msgid "Warning"
msgstr "Увага"
#: cartridges/preferences.py:441
msgid "Invalid Directory"
msgstr "Няправільны каталог"
#: cartridges/preferences.py:447
msgid "Set Location"
msgstr "Задаць размяшчэнне"
#: cartridges/utils/create_dialog.py:33 cartridges/importer/importer.py:318
msgid "Dismiss"
msgstr "Адхіліць"
#: cartridges/utils/relative_date.py:30
msgid "Today"
msgstr "Сёння"
#: cartridges/utils/relative_date.py:32
msgid "Yesterday"
msgstr "Учора"
#: cartridges/utils/relative_date.py:36
msgid "Last Week"
msgstr "На мінулым тыдні"
#: cartridges/utils/relative_date.py:38
msgid "This Month"
msgstr "У гэтым месяцы"
#: cartridges/utils/relative_date.py:40
msgid "Last Month"
msgstr "У мінулым месяцы"
#: cartridges/utils/relative_date.py:44
msgid "Last Year"
msgstr "У мінулым годзе"
#: cartridges/importer/importer.py:144
msgid "Importing Games…"
msgstr "Імпарт гульняў…"
#: cartridges/importer/importer.py:337
msgid "The following errors occured during import:"
msgstr "Падчас імпарту адбыліся наступныя памылкі:"
#: cartridges/importer/importer.py:366
msgid "No new games found"
msgstr "Новыя гульні не знойдзены"
#. The variable is the number of games.
#: cartridges/importer/importer.py:379
msgid "{} game imported"
msgid_plural "{} games imported"
msgstr[0] "{} гульня імпартавана"
msgstr[1] "{} гульні імпартавана"
msgstr[2] "{} гульняў імпартавана"
#. The variable is the number of games. This text comes after "{0} games imported".
#: cartridges/importer/importer.py:383
msgid ", {} removed"
msgid_plural ", {} removed"
msgstr[0] "{} выдалена"
msgstr[1] "{} выдалена"
msgstr[2] "{} выдалена"
#. The variable is the name of the source
#: cartridges/importer/location.py:34
msgid "Select the {} cache directory."
msgstr "Выберыце каталог кэша {}."
#. The variable is the name of the source
#: cartridges/importer/location.py:36
msgid "Select the {} configuration directory."
msgstr "Выберыце каталог канфігурацыі {}."
#. The variable is the name of the source
#: cartridges/importer/location.py:38
msgid "Select the {} data directory."
msgstr "Выберыце каталог даных {}."
#: cartridges/importer/retroarch_source.py:129
msgid "No RetroArch Core Selected"
msgstr "Ядро RetroArch не выбрана"
#. The variable is a newline separated list of playlists
#: cartridges/importer/retroarch_source.py:131
msgid "The following playlists have no default core:"
msgstr "Наступныя плэйлісты не маюць ядра па змаўчанні:"
#: cartridges/importer/retroarch_source.py:133
msgid "Games with no core selected were not imported"
msgstr "Гульні без выбранага ядра не былі імпартаваныя"
#: cartridges/store/managers/sgdb_manager.py:46
msgid "Couldn't Authenticate SteamGridDB"
msgstr "Немагчыма аўтэнтыфікаваць SteamGridDB"
#: cartridges/store/managers/sgdb_manager.py:47
msgid "Verify your API key in preferences"
msgstr "Праверце свой ключ API ў наладах"
#, fuzzy
#~ msgid "1 game imported"
#~ msgid_plural "{} games imported"
#~ msgstr[0] "Імпартавана 1 гульня"
#~ msgstr[1] "Імпартавана {} гульня"
#~ msgstr[2] "Імпартавана {} гульня"
#, fuzzy
#~ msgid "1 removed"
#~ msgid_plural "{} removed"
#~ msgstr[0] "1 выдалена"
#~ msgstr[1] "{} выдалена"
#~ msgstr[2] "{} выдалена"
#~ msgid "Cache Location"
#~ msgstr "Размяшчэнне кэша"

687
po/ca.po
View File

@@ -1,687 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR kramo
# This file is distributed under the same license as the Cartridges package.
# jolupa <jolupameister@gmail.com>, 2023.
# Moreno <hibarioath@proton.me>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Cartridges\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-11-05 14:01+0100\n"
"PO-Revision-Date: 2025-03-15 04:51+0000\n"
"Last-Translator: Moreno <hibarioath@proton.me>\n"
"Language-Team: Catalan <https://hosted.weblate.org/projects/cartridges/"
"cartridges/ca/>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.11-dev\n"
#: data/page.kramo.Cartridges.desktop.in:3
#: data/page.kramo.Cartridges.metainfo.xml.in:9
#: data/page.kramo.Cartridges.metainfo.xml.in:40 data/gtk/window.blp:47
#: data/gtk/window.blp:83
msgid "Cartridges"
msgstr "Cartridges"
#: data/page.kramo.Cartridges.desktop.in:4
msgid "Game Launcher"
msgstr "Llançador de jocs"
#: data/page.kramo.Cartridges.desktop.in:5
#: data/page.kramo.Cartridges.metainfo.xml.in:10
msgid "Launch all your games"
msgstr "Llança tots els teus jocs"
#: data/page.kramo.Cartridges.desktop.in:11
msgid ""
"gaming;launcher;steam;lutris;heroic;bottles;itch;flatpak;legendary;retroarch;"
msgstr ""
"jocs;llançador;steam;lutris;heroic;bottles;itch;flatpak;legendary;retroarch;"
#: data/page.kramo.Cartridges.metainfo.xml.in:12
msgid ""
"Cartridges is a simple game launcher for all of your games. It has support "
"for importing games from Steam, Lutris, Heroic and more with no login "
"necessary. You can sort and hide games or download cover art from "
"SteamGridDB."
msgstr ""
"Cartridges es un llançador de jocs senzill per tots els teus jocs. Suporta "
"la importació de jocs des de Steam, Lutris, Heroic i molts més sense la "
"necessitat de iniciar sessió. Pots ordenar i amagar els jocs o descarregar "
"l'art de la coberta de SteamGridDB."
#: data/page.kramo.Cartridges.metainfo.xml.in:44 data/gtk/window.blp:320
#: cartridges/details_dialog.py:77
msgid "Game Details"
msgstr "Detalls del joc"
#: data/page.kramo.Cartridges.metainfo.xml.in:48
msgid "Edit Game Details"
msgstr "Editar els detalls del joc"
#: data/page.kramo.Cartridges.metainfo.xml.in:52 data/gtk/help-overlay.blp:19
#: data/gtk/window.blp:543 cartridges/details_dialog.py:279
#: cartridges/importer/importer.py:319 cartridges/importer/importer.py:369
msgid "Preferences"
msgstr "Preferències"
#: data/gtk/details-dialog.blp:15
msgid "Cancel"
msgstr "Cancel·lar"
#: data/gtk/details-dialog.blp:45
msgid "New Cover"
msgstr "Coberta nova"
#: data/gtk/details-dialog.blp:64
msgid "Delete Cover"
msgstr "Eliminar la coberta"
#: data/gtk/details-dialog.blp:92 data/gtk/game.blp:80
msgid "Title"
msgstr "Títol"
#: data/gtk/details-dialog.blp:96
msgid "Developer (optional)"
msgstr "Desenvolupador (opcional)"
#: data/gtk/details-dialog.blp:102
msgid "Executable"
msgstr "Executable"
#: data/gtk/details-dialog.blp:108
msgid "Select File"
msgstr "Seleccionar fitxer"
#: data/gtk/details-dialog.blp:119
msgid "More Info"
msgstr "Més informació"
#: data/gtk/game.blp:101 data/gtk/game.blp:109 data/gtk/window.blp:444
msgid "Edit"
msgstr "Editar"
#: data/gtk/game.blp:102 cartridges/window.py:359
msgid "Hide"
msgstr "Amagar"
#: data/gtk/game.blp:103 data/gtk/game.blp:111 data/gtk/window.blp:464
msgid "Remove"
msgstr "Esborrar"
#: data/gtk/game.blp:110 cartridges/window.py:361
msgid "Unhide"
msgstr "Mostrar"
#: data/gtk/help-overlay.blp:11 data/gtk/preferences.blp:9
msgid "General"
msgstr "General"
#: data/gtk/help-overlay.blp:14 data/gtk/window.blp:207 data/gtk/window.blp:223
#: data/gtk/window.blp:274 data/gtk/window.blp:290 data/gtk/window.blp:475
msgid "Search"
msgstr "Cercar"
#: data/gtk/help-overlay.blp:24 data/gtk/window.blp:544
msgid "Keyboard Shortcuts"
msgstr "Dreceres de teclat"
#: data/gtk/help-overlay.blp:29 cartridges/game.py:103
#: cartridges/preferences.py:137 cartridges/importer/importer.py:386
msgid "Undo"
msgstr "Desfés"
#: data/gtk/help-overlay.blp:34
msgid "Quit"
msgstr "Sortir"
#: data/gtk/help-overlay.blp:39 data/gtk/window.blp:92 data/gtk/window.blp:187
msgid "Toggle Sidebar"
msgstr "Alternar la barra lateral"
#: data/gtk/help-overlay.blp:44 data/gtk/window.blp:200 data/gtk/window.blp:267
msgid "Main Menu"
msgstr "Menú principal"
#: data/gtk/help-overlay.blp:50
msgid "Games"
msgstr "Jocs"
#: data/gtk/help-overlay.blp:53 data/gtk/window.blp:193 data/gtk/window.blp:551
msgid "Add Game"
msgstr "Afegeix joc"
#: data/gtk/help-overlay.blp:58 data/gtk/preferences.blp:58
#: data/gtk/window.blp:27 data/gtk/window.blp:555
msgid "Import"
msgstr "Importar"
#: data/gtk/help-overlay.blp:63
msgid "Show Hidden Games"
msgstr "Mostrar jocs ocults"
#: data/gtk/help-overlay.blp:68
msgid "Remove Game"
msgstr "Eliminar joc"
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:62
#: data/gtk/preferences.blp:365
msgid "Behavior"
msgstr "Comportament"
#: data/gtk/preferences.blp:16
msgid "Exit After Launching Games"
msgstr "Sortir després de llançar el joc"
#: data/gtk/preferences.blp:20
msgid "Cover Image Launches Game"
msgstr "La imatge de la coberta llança el joc"
#: data/gtk/preferences.blp:21
msgid "Swaps the behavior of the cover image and the play button"
msgstr "Canvia el comportament de la imatge de la coberta i el botó de jugar"
#: data/gtk/preferences.blp:26 cartridges/details_dialog.py:91
msgid "Images"
msgstr "Imatges"
#: data/gtk/preferences.blp:29
msgid "High Quality Images"
msgstr "Imatges de qualitat alta"
#: data/gtk/preferences.blp:30
msgid "Save game covers losslessly at the cost of storage"
msgstr "Guarda les cobertes del joc sense pèrdues amb el cost d'emmagatzematge"
#: data/gtk/preferences.blp:35
msgid "Danger Zone"
msgstr "Zona de perill"
#: data/gtk/preferences.blp:39
msgid "Remove All Games"
msgstr "Esborrar tots els jocs"
#: data/gtk/preferences.blp:65
msgid "Import Games Automatically"
msgstr "Importar jocs automàticament"
#: data/gtk/preferences.blp:69
msgid "Remove Uninstalled Games"
msgstr "Esborrar jocs desinstal·lats"
#: data/gtk/preferences.blp:74
msgid "Sources"
msgstr "Fonts"
#: data/gtk/preferences.blp:78 cartridges/importer/steam_source.py:114
msgid "Steam"
msgstr "Steam"
#: data/gtk/preferences.blp:87 data/gtk/preferences.blp:114
#: data/gtk/preferences.blp:149 data/gtk/preferences.blp:192
#: data/gtk/preferences.blp:219 data/gtk/preferences.blp:246
#: data/gtk/preferences.blp:273
msgid "Install Location"
msgstr "Ubicació de la instal·lació"
#: data/gtk/preferences.blp:105 data/gtk/window.blp:565
#: cartridges/importer/lutris_source.py:107
msgid "Lutris"
msgstr "Lutris"
#: data/gtk/preferences.blp:131
msgid "Import Steam Games"
msgstr "Importar jocs de Steam"
#: data/gtk/preferences.blp:135
msgid "Import Flatpak Games"
msgstr "Importar jocs de Flatpak"
#: data/gtk/preferences.blp:140 cartridges/importer/heroic_source.py:355
msgid "Heroic"
msgstr "Heroic"
#: data/gtk/preferences.blp:166
msgid "Import Epic Games"
msgstr "Importar jocs de Epic"
#: data/gtk/preferences.blp:170
msgid "Import GOG Games"
msgstr "Importar jocs de GOG"
#: data/gtk/preferences.blp:174
msgid "Import Amazon Games"
msgstr "Importar jocs de Amazon"
#: data/gtk/preferences.blp:178
msgid "Import Sideloaded Games"
msgstr "Importar jocs no aprovats"
#: data/gtk/preferences.blp:183 cartridges/importer/bottles_source.py:86
msgid "Bottles"
msgstr "Bottles"
#: data/gtk/preferences.blp:210 cartridges/importer/itch_source.py:81
msgid "itch"
msgstr "itch"
#: data/gtk/preferences.blp:237 cartridges/importer/legendary_source.py:97
msgid "Legendary"
msgstr "Legendary"
#: data/gtk/preferences.blp:264 cartridges/importer/retroarch_source.py:142
msgid "RetroArch"
msgstr "RetroArch"
#: data/gtk/preferences.blp:291 cartridges/importer/flatpak_source.py:143
msgid "Flatpak"
msgstr "Flatpak"
#. The location of the system-wide data directory
#: data/gtk/preferences.blp:301
msgid "System Location"
msgstr "Ubicació del sistema"
#. The location of the user-specific data directory
#: data/gtk/preferences.blp:319
msgid "User Location"
msgstr "Ubicació de l'usuari"
#: data/gtk/preferences.blp:336
msgid "Import Game Launchers"
msgstr "Importar llançadors de jocs"
#: data/gtk/preferences.blp:341 cartridges/importer/desktop_source.py:215
msgid "Desktop Entries"
msgstr "Entrades d'escriptori"
#: data/gtk/preferences.blp:353 data/gtk/window.blp:563
msgid "SteamGridDB"
msgstr "SteamGridDB"
#: data/gtk/preferences.blp:357
msgid "Authentication"
msgstr "Autenticació"
#: data/gtk/preferences.blp:360
msgid "API Key"
msgstr "Clau API"
#: data/gtk/preferences.blp:368
msgid "Use SteamGridDB"
msgstr "Fes servir SteamGridDB"
#: data/gtk/preferences.blp:369
msgid "Download images when adding or importing games"
msgstr "Descarregar les imatges al afegir o importar jocs"
#: data/gtk/preferences.blp:373
msgid "Prefer Over Official Images"
msgstr "Prefereix sobre imatges oficials"
#: data/gtk/preferences.blp:377
msgid "Prefer Animated Images"
msgstr "Prefereix imatges animades"
#: data/gtk/preferences.blp:383
msgid "Update Covers"
msgstr "Actualitzar cobertes"
#: data/gtk/preferences.blp:384
msgid "Fetch covers for games already in your library"
msgstr "Descarregar cobertes per a jocs que ja es troben a la teva llibreria"
#: data/gtk/preferences.blp:389
msgid "Update"
msgstr "Actualitzar"
#: data/gtk/window.blp:6 data/gtk/window.blp:14
msgid "No Games Found"
msgstr "No hi han jocs"
#: data/gtk/window.blp:7 data/gtk/window.blp:15
msgid "Try a different search"
msgstr "Prova una cerca diferent"
#: data/gtk/window.blp:21
msgid "No Games"
msgstr "Cap joc"
#: data/gtk/window.blp:22
msgid "Use the + button to add games"
msgstr "Fes servir el botó + per afegir jocs"
#: data/gtk/window.blp:40
msgid "No Hidden Games"
msgstr "No hi han jocs amagats"
#: data/gtk/window.blp:41
msgid "Games you hide will appear here"
msgstr "Els jocs que amaguis sortiran aquí"
#: data/gtk/window.blp:76 data/gtk/window.blp:113 cartridges/main.py:249
msgid "All Games"
msgstr "Tots els jocs"
#: data/gtk/window.blp:140 cartridges/main.py:251
msgid "Added"
msgstr "Afegit"
#: data/gtk/window.blp:162
msgid "Imported"
msgstr "Importat"
#: data/gtk/window.blp:260
msgid "Hidden Games"
msgstr "Jocs amagats"
#: data/gtk/window.blp:368
msgid "Game Title"
msgstr "Títol del joc"
#: data/gtk/window.blp:425
msgid "Play"
msgstr "Jugar"
#: data/gtk/window.blp:502
msgid "Sort"
msgstr "Ordenar"
#: data/gtk/window.blp:505
msgid "A-Z"
msgstr "A-Z"
#: data/gtk/window.blp:511
msgid "Z-A"
msgstr "Z-A"
#: data/gtk/window.blp:517
msgid "Newest"
msgstr "Més recent"
#: data/gtk/window.blp:523
msgid "Oldest"
msgstr "Més antic"
#: data/gtk/window.blp:529
msgid "Last Played"
msgstr "Últim jugat"
#: data/gtk/window.blp:536
msgid "Show Hidden"
msgstr "Mostrar els amagats"
#: data/gtk/window.blp:545
msgid "About Cartridges"
msgstr "Sobre Cartridges"
#: data/gtk/window.blp:562
msgid "IGDB"
msgstr "IGDB"
#: data/gtk/window.blp:564
msgid "ProtonDB"
msgstr "ProtonDB"
#: data/gtk/window.blp:566
msgid "HowLongToBeat"
msgstr "HowLongToBeat"
#. The variable is the title of the game
#: cartridges/main.py:226 cartridges/game.py:125
msgid "{} launched"
msgstr "{} llançat"
#. Translators: Replace this with Your Name, Your Name <your.email@example.com>, or Your Name https://your-site.com for it to show up in the About dialog.
#: cartridges/main.py:291
msgid "translator-credits"
msgstr "jolupa <jolupameister@gmail.com>"
#. The variable is the date when the game was added
#: cartridges/window.py:382
msgid "Added: {}"
msgstr "Afegit: {}"
#: cartridges/window.py:385
msgid "Never"
msgstr "Mai"
#. The variable is the date when the game was last played
#: cartridges/window.py:389
msgid "Last played: {}"
msgstr "Últim jugat: {}"
#: cartridges/details_dialog.py:82
msgid "Apply"
msgstr "Aplicar"
#: cartridges/details_dialog.py:88
msgid "Add New Game"
msgstr "Afegeix joc nou"
#: cartridges/details_dialog.py:89
msgid "Add"
msgstr "Afegir"
#: cartridges/details_dialog.py:102
msgid "Executables"
msgstr "Executables"
#. Translate this string as you would translate "file"
#: cartridges/details_dialog.py:117
msgid "file.txt"
msgstr "fitxer.txt"
#. As in software
#: cartridges/details_dialog.py:119
msgid "program"
msgstr "programa"
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:124 cartridges/details_dialog.py:126
msgid "C:\\path\\to\\{}"
msgstr "C:\\camí\\a\\{}"
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:130 cartridges/details_dialog.py:132
msgid "/path/to/{}"
msgstr "/camí/a/{}"
#: cartridges/details_dialog.py:137
msgid ""
"To launch the executable \"{}\", use the command:\n"
"\n"
"<tt>\"{}\"</tt>\n"
"\n"
"To open the file \"{}\" with the default application, use:\n"
"\n"
"<tt>{} \"{}\"</tt>\n"
"\n"
"If the path contains spaces, make sure to wrap it in double quotes!"
msgstr ""
"Per llançar l'executable \"{}\", fes servir l'ordre:\n"
"\n"
"<tt>\"{}\"</tt>\n"
"\n"
"Per obrir el fitxer \"{}\" amb l'aplicació per defecte, fes servir:\n"
"\n"
"<tt>{} \"{}\"</tt>\n"
"\n"
"Si el camí conté espais, assegurat d'envoltar-lo amb cometes dobles!"
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:185
msgid "Couldn't Add Game"
msgstr "No es pot afegir el joc"
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:221
msgid "Game title cannot be empty."
msgstr "El títol del joc no pot estar buit."
#: cartridges/details_dialog.py:185 cartridges/details_dialog.py:229
msgid "Executable cannot be empty."
msgstr "El executable no pot estar buit."
#: cartridges/details_dialog.py:220 cartridges/details_dialog.py:228
msgid "Couldn't Apply Preferences"
msgstr "No s'han pogut aplicar les preferències"
#. The variable is the title of the game
#: cartridges/game.py:139
msgid "{} hidden"
msgstr "{} amagat"
#: cartridges/game.py:139
msgid "{} unhidden"
msgstr "{} mostrar"
#. The variable is the title of the game
#: cartridges/game.py:153
msgid "{} removed"
msgstr "{} eliminat"
#: cartridges/preferences.py:136
msgid "All games removed"
msgstr "Tots els jocs eliminats"
#: cartridges/preferences.py:188
msgid ""
"An API key is required to use SteamGridDB. You can generate one {}here{}."
msgstr ""
"Es necessita una clau API per poder fer servir SteamGridDB. Pots generar una "
"{}aquí{}."
#: cartridges/preferences.py:203
msgid "Downloading covers…"
msgstr "Descarregant cobertes…"
#: cartridges/preferences.py:222
msgid "Covers updated"
msgstr "Cobertes actualitzades"
#: cartridges/preferences.py:370
msgid "Installation Not Found"
msgstr "No s'ha trobat l'instal·lacióó"
#: cartridges/preferences.py:371
msgid "Select a valid directory"
msgstr "Selecciona un directori vàlid"
#: cartridges/preferences.py:407 cartridges/importer/importer.py:317
msgid "Warning"
msgstr "Avis"
#: cartridges/preferences.py:441
msgid "Invalid Directory"
msgstr "Directori no vàlid"
#: cartridges/preferences.py:447
msgid "Set Location"
msgstr "Escull una ubicació"
#: cartridges/utils/create_dialog.py:33 cartridges/importer/importer.py:318
msgid "Dismiss"
msgstr "Descartar"
#: cartridges/utils/relative_date.py:30
msgid "Today"
msgstr "Avui"
#: cartridges/utils/relative_date.py:32
msgid "Yesterday"
msgstr "Ahir"
#: cartridges/utils/relative_date.py:36
msgid "Last Week"
msgstr "Última setmana"
#: cartridges/utils/relative_date.py:38
msgid "This Month"
msgstr "Aquest mes"
#: cartridges/utils/relative_date.py:40
msgid "Last Month"
msgstr "Últim mes"
#: cartridges/utils/relative_date.py:44
msgid "Last Year"
msgstr "Any passat"
#: cartridges/importer/importer.py:144
msgid "Importing Games…"
msgstr "Important jocs…"
#: cartridges/importer/importer.py:337
msgid "The following errors occured during import:"
msgstr "Han succeït els següents errors al importar:"
#: cartridges/importer/importer.py:366
msgid "No new games found"
msgstr "No s'han trobat jocs nous"
#. The variable is the number of games.
#: cartridges/importer/importer.py:379
msgid "{} game imported"
msgid_plural "{} games imported"
msgstr[0] "{} joc importat"
msgstr[1] "{} jocs importats"
#. The variable is the number of games. This text comes after "{0} games imported".
#: cartridges/importer/importer.py:383
msgid ", {} removed"
msgid_plural ", {} removed"
msgstr[0] "{} eliminat"
msgstr[1] "{} eliminats"
#. The variable is the name of the source
#: cartridges/importer/location.py:34
msgid "Select the {} cache directory."
msgstr "Selecciona el directori per la memòria cau {}."
#. The variable is the name of the source
#: cartridges/importer/location.py:36
msgid "Select the {} configuration directory."
msgstr "Selecciona el directori de configuració {}."
#. The variable is the name of the source
#: cartridges/importer/location.py:38
msgid "Select the {} data directory."
msgstr "Selecciona el directori de dades {}."
#: cartridges/importer/retroarch_source.py:129
msgid "No RetroArch Core Selected"
msgstr "No s'ha seleccionat cap nucli de RetroArch"
#. The variable is a newline separated list of playlists
#: cartridges/importer/retroarch_source.py:131
msgid "The following playlists have no default core:"
msgstr "La següent llista de reproducció no te cap nucli:"
#: cartridges/importer/retroarch_source.py:133
msgid "Games with no core selected were not imported"
msgstr "Els jocs sense cap nucli seleccionat no seran importats"
#: cartridges/store/managers/sgdb_manager.py:46
msgid "Couldn't Authenticate SteamGridDB"
msgstr "No es pot Autenticar a SteamGridDB"
#: cartridges/store/managers/sgdb_manager.py:47
msgid "Verify your API key in preferences"
msgstr "Verifica la teva clau API en les preferències"
#, fuzzy
#~ msgid "1 game imported"
#~ msgid_plural "{} games imported"
#~ msgstr[0] "1 joc importat"
#~ msgstr[1] "{} jocs importats"
#, fuzzy
#~ msgid "1 removed"
#~ msgid_plural "{} removed"
#~ msgstr[0] "1 eliminat"
#~ msgstr[1] "{} eliminats"
#~ msgid "Cache Location"
#~ msgstr "Ubicació de la memòria cau"

View File

@@ -8,38 +8,35 @@ msgid ""
msgstr ""
"Project-Id-Version: Cartridges\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-11-05 14:01+0100\n"
"POT-Creation-Date: 2023-06-26 22:22+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
#: data/page.kramo.Cartridges.desktop.in:3
#: data/page.kramo.Cartridges.metainfo.xml.in:9
#: data/page.kramo.Cartridges.metainfo.xml.in:40 data/gtk/window.blp:47
#: data/gtk/window.blp:83
#: data/hu.kramo.Cartridges.desktop.in:3
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:47
#: src/main.py:153
msgid "Cartridges"
msgstr ""
#: data/page.kramo.Cartridges.desktop.in:4
#: data/hu.kramo.Cartridges.desktop.in:4
msgid "Game Launcher"
msgstr ""
#: data/page.kramo.Cartridges.desktop.in:5
#: data/page.kramo.Cartridges.metainfo.xml.in:10
#: data/hu.kramo.Cartridges.desktop.in:5
#: data/hu.kramo.Cartridges.metainfo.xml.in:7
msgid "Launch all your games"
msgstr ""
#: data/page.kramo.Cartridges.desktop.in:11
msgid ""
"gaming;launcher;steam;lutris;heroic;bottles;itch;flatpak;legendary;retroarch;"
#: data/hu.kramo.Cartridges.desktop.in:11
msgid "gaming;launcher;steam;lutris;heroic;bottles;itch;"
msgstr ""
#: data/page.kramo.Cartridges.metainfo.xml.in:12
#: data/hu.kramo.Cartridges.metainfo.xml.in:9
msgid ""
"Cartridges is a simple game launcher for all of your games. It has support "
"for importing games from Steam, Lutris, Heroic and more with no login "
@@ -47,66 +44,78 @@ msgid ""
"SteamGridDB."
msgstr ""
#: data/page.kramo.Cartridges.metainfo.xml.in:44 data/gtk/window.blp:320
#: cartridges/details_dialog.py:77
msgid "Game Details"
#: data/hu.kramo.Cartridges.metainfo.xml.in:30
msgid "Library"
msgstr ""
#: data/page.kramo.Cartridges.metainfo.xml.in:48
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 src/details_window.py:67
msgid "Edit Game Details"
msgstr ""
#: data/page.kramo.Cartridges.metainfo.xml.in:52 data/gtk/help-overlay.blp:19
#: data/gtk/window.blp:543 cartridges/details_dialog.py:279
#: cartridges/importer/importer.py:319 cartridges/importer/importer.py:369
#: data/hu.kramo.Cartridges.metainfo.xml.in:38 data/gtk/window.blp:71
msgid "Game Details"
msgstr ""
#: data/hu.kramo.Cartridges.metainfo.xml.in:42 data/gtk/window.blp:416
#: src/details_window.py:239
msgid "Preferences"
msgstr ""
#: data/gtk/details-dialog.blp:15
#: data/gtk/details-window.blp:25
msgid "Cancel"
msgstr ""
#: data/gtk/details-dialog.blp:45
#: data/gtk/details-window.blp:57
msgid "New Cover"
msgstr ""
#: data/gtk/details-dialog.blp:64
#: data/gtk/details-window.blp:75
msgid "Delete Cover"
msgstr ""
#: data/gtk/details-dialog.blp:92 data/gtk/game.blp:80
#: data/gtk/details-window.blp:101 data/gtk/details-window.blp:106
#: data/gtk/game.blp:80
msgid "Title"
msgstr ""
#: data/gtk/details-dialog.blp:96
msgid "Developer (optional)"
#: data/gtk/details-window.blp:102
msgid "The title of the game"
msgstr ""
#: data/gtk/details-dialog.blp:102
#: data/gtk/details-window.blp:112 data/gtk/details-window.blp:117
msgid "Developer"
msgstr ""
#: data/gtk/details-window.blp:113
msgid "The developer or publisher (optional)"
msgstr ""
#: data/gtk/details-window.blp:123 data/gtk/details-window.blp:155
msgid "Executable"
msgstr ""
#: data/gtk/details-dialog.blp:108
msgid "Select File"
#: data/gtk/details-window.blp:124
msgid "File to open or command to run when launching the game"
msgstr ""
#: data/gtk/details-dialog.blp:119
#: data/gtk/details-window.blp:130
msgid "More Info"
msgstr ""
#: data/gtk/game.blp:101 data/gtk/game.blp:109 data/gtk/window.blp:444
#: data/gtk/game.blp:102 data/gtk/game.blp:121 data/gtk/window.blp:195
msgid "Edit"
msgstr ""
#: data/gtk/game.blp:102 cartridges/window.py:359
#: data/gtk/game.blp:107 src/window.py:169
msgid "Hide"
msgstr ""
#: data/gtk/game.blp:103 data/gtk/game.blp:111 data/gtk/window.blp:464
#: data/gtk/game.blp:112 data/gtk/game.blp:131 data/gtk/preferences.blp:56
#: data/gtk/window.blp:209
msgid "Remove"
msgstr ""
#: data/gtk/game.blp:110 cartridges/window.py:361
#: data/gtk/game.blp:126 src/window.py:171
msgid "Unhide"
msgstr ""
@@ -114,55 +123,52 @@ msgstr ""
msgid "General"
msgstr ""
#: data/gtk/help-overlay.blp:14 data/gtk/window.blp:207 data/gtk/window.blp:223
#: data/gtk/window.blp:274 data/gtk/window.blp:290 data/gtk/window.blp:475
msgid "Search"
msgstr ""
#: data/gtk/help-overlay.blp:24 data/gtk/window.blp:544
msgid "Keyboard Shortcuts"
msgstr ""
#: data/gtk/help-overlay.blp:29 cartridges/game.py:103
#: cartridges/preferences.py:137 cartridges/importer/importer.py:386
msgid "Undo"
msgstr ""
#: data/gtk/help-overlay.blp:34
#: data/gtk/help-overlay.blp:14
msgid "Quit"
msgstr ""
#: data/gtk/help-overlay.blp:39 data/gtk/window.blp:92 data/gtk/window.blp:187
msgid "Toggle Sidebar"
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:217 data/gtk/window.blp:257
#: data/gtk/window.blp:323
msgid "Search"
msgstr ""
#: data/gtk/help-overlay.blp:44 data/gtk/window.blp:200 data/gtk/window.blp:267
msgid "Main Menu"
#: data/gtk/help-overlay.blp:24
msgid "Show preferences"
msgstr ""
#: data/gtk/help-overlay.blp:50
#: data/gtk/help-overlay.blp:29
msgid "Shortcuts"
msgstr ""
#: data/gtk/help-overlay.blp:34 src/game.py:105 src/preferences.py:103
msgid "Undo"
msgstr ""
#: data/gtk/help-overlay.blp:39
msgid "Open menu"
msgstr ""
#: data/gtk/help-overlay.blp:45
msgid "Games"
msgstr ""
#: data/gtk/help-overlay.blp:53 data/gtk/window.blp:193 data/gtk/window.blp:551
msgid "Add Game"
#: data/gtk/help-overlay.blp:48
msgid "Add new game"
msgstr ""
#: data/gtk/help-overlay.blp:58 data/gtk/preferences.blp:58
#: data/gtk/window.blp:27 data/gtk/window.blp:555
msgid "Import"
#: data/gtk/help-overlay.blp:53
msgid "Import games"
msgstr ""
#: data/gtk/help-overlay.blp:58
msgid "Show hidden games"
msgstr ""
#: data/gtk/help-overlay.blp:63
msgid "Show Hidden Games"
msgid "Remove game"
msgstr ""
#: data/gtk/help-overlay.blp:68
msgid "Remove Game"
msgstr ""
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:62
#: data/gtk/preferences.blp:365
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:236
msgid "Behavior"
msgstr ""
@@ -170,174 +176,126 @@ msgstr ""
msgid "Exit After Launching Games"
msgstr ""
#: data/gtk/preferences.blp:20
#: data/gtk/preferences.blp:25
msgid "Cover Image Launches Game"
msgstr ""
#: data/gtk/preferences.blp:21
#: data/gtk/preferences.blp:26
msgid "Swaps the behavior of the cover image and the play button"
msgstr ""
#: data/gtk/preferences.blp:26 cartridges/details_dialog.py:91
#: data/gtk/preferences.blp:36 src/details_window.py:81
msgid "Images"
msgstr ""
#: data/gtk/preferences.blp:29
#: data/gtk/preferences.blp:39
msgid "High Quality Images"
msgstr ""
#: data/gtk/preferences.blp:30
#: data/gtk/preferences.blp:40
msgid "Save game covers losslessly at the cost of storage"
msgstr ""
#: data/gtk/preferences.blp:35
#: data/gtk/preferences.blp:50
msgid "Danger Zone"
msgstr ""
#: data/gtk/preferences.blp:39
#: data/gtk/preferences.blp:53
msgid "Remove All Games"
msgstr ""
#: data/gtk/preferences.blp:65
msgid "Import Games Automatically"
#: data/gtk/preferences.blp:85 data/gtk/window.blp:27 data/gtk/window.blp:442
msgid "Import"
msgstr ""
#: data/gtk/preferences.blp:69
msgid "Remove Uninstalled Games"
msgstr ""
#: data/gtk/preferences.blp:74
#: data/gtk/preferences.blp:89
msgid "Sources"
msgstr ""
#: data/gtk/preferences.blp:78 cartridges/importer/steam_source.py:114
#: data/gtk/preferences.blp:92
msgid "Steam"
msgstr ""
#: data/gtk/preferences.blp:87 data/gtk/preferences.blp:114
#: data/gtk/preferences.blp:149 data/gtk/preferences.blp:192
#: data/gtk/preferences.blp:219 data/gtk/preferences.blp:246
#: data/gtk/preferences.blp:273
#: data/gtk/preferences.blp:96 data/gtk/preferences.blp:110
#: data/gtk/preferences.blp:142 data/gtk/preferences.blp:183
#: data/gtk/preferences.blp:197 data/gtk/preferences.blp:211
msgid "Install Location"
msgstr ""
#: data/gtk/preferences.blp:105 data/gtk/window.blp:565
#: cartridges/importer/lutris_source.py:107
#: data/gtk/preferences.blp:106
msgid "Lutris"
msgstr ""
#: data/gtk/preferences.blp:131
#: data/gtk/preferences.blp:119
msgid "Cache Location"
msgstr ""
#: data/gtk/preferences.blp:128
msgid "Import Steam Games"
msgstr ""
#: data/gtk/preferences.blp:135
msgid "Import Flatpak Games"
msgstr ""
#: data/gtk/preferences.blp:140 cartridges/importer/heroic_source.py:355
#: data/gtk/preferences.blp:138
msgid "Heroic"
msgstr ""
#: data/gtk/preferences.blp:166
#: data/gtk/preferences.blp:151
msgid "Import Epic Games"
msgstr ""
#: data/gtk/preferences.blp:170
#: data/gtk/preferences.blp:160
msgid "Import GOG Games"
msgstr ""
#: data/gtk/preferences.blp:174
msgid "Import Amazon Games"
msgstr ""
#: data/gtk/preferences.blp:178
#: data/gtk/preferences.blp:169
msgid "Import Sideloaded Games"
msgstr ""
#: data/gtk/preferences.blp:183 cartridges/importer/bottles_source.py:86
#: data/gtk/preferences.blp:179
msgid "Bottles"
msgstr ""
#: data/gtk/preferences.blp:210 cartridges/importer/itch_source.py:81
#: data/gtk/preferences.blp:193
msgid "itch"
msgstr ""
#: data/gtk/preferences.blp:237 cartridges/importer/legendary_source.py:97
#: data/gtk/preferences.blp:207
msgid "Legendary"
msgstr ""
#: data/gtk/preferences.blp:264 cartridges/importer/retroarch_source.py:142
msgid "RetroArch"
msgstr ""
#: data/gtk/preferences.blp:291 cartridges/importer/flatpak_source.py:143
msgid "Flatpak"
msgstr ""
#. The location of the system-wide data directory
#: data/gtk/preferences.blp:301
msgid "System Location"
msgstr ""
#. The location of the user-specific data directory
#: data/gtk/preferences.blp:319
msgid "User Location"
msgstr ""
#: data/gtk/preferences.blp:336
msgid "Import Game Launchers"
msgstr ""
#: data/gtk/preferences.blp:341 cartridges/importer/desktop_source.py:215
msgid "Desktop Entries"
msgstr ""
#: data/gtk/preferences.blp:353 data/gtk/window.blp:563
#: data/gtk/preferences.blp:224
msgid "SteamGridDB"
msgstr ""
#: data/gtk/preferences.blp:357
#: data/gtk/preferences.blp:228
msgid "Authentication"
msgstr ""
#: data/gtk/preferences.blp:360
#: data/gtk/preferences.blp:231
msgid "API Key"
msgstr ""
#: data/gtk/preferences.blp:368
#: data/gtk/preferences.blp:239
msgid "Use SteamGridDB"
msgstr ""
#: data/gtk/preferences.blp:369
#: data/gtk/preferences.blp:240
msgid "Download images when adding or importing games"
msgstr ""
#: data/gtk/preferences.blp:373
#: data/gtk/preferences.blp:249
msgid "Prefer Over Official Images"
msgstr ""
#: data/gtk/preferences.blp:377
#: data/gtk/preferences.blp:258
msgid "Prefer Animated Images"
msgstr ""
#: data/gtk/preferences.blp:383
msgid "Update Covers"
msgstr ""
#: data/gtk/preferences.blp:384
msgid "Fetch covers for games already in your library"
msgstr ""
#: data/gtk/preferences.blp:389
msgid "Update"
msgstr ""
#: data/gtk/window.blp:6 data/gtk/window.blp:14
msgid "No Games Found"
msgstr ""
#: data/gtk/window.blp:7 data/gtk/window.blp:15
msgid "Try a different search"
msgid "Try a different search."
msgstr ""
#: data/gtk/window.blp:21
@@ -345,7 +303,7 @@ msgid "No Games"
msgstr ""
#: data/gtk/window.blp:22
msgid "Use the + button to add games"
msgid "Use the + button to add games."
msgstr ""
#: data/gtk/window.blp:40
@@ -353,138 +311,121 @@ msgid "No Hidden Games"
msgstr ""
#: data/gtk/window.blp:41
msgid "Games you hide will appear here"
msgid "Games you hide will appear here."
msgstr ""
#: data/gtk/window.blp:76 data/gtk/window.blp:113 cartridges/main.py:249
msgid "All Games"
#: data/gtk/window.blp:64 data/gtk/window.blp:304
msgid "Back"
msgstr ""
#: data/gtk/window.blp:140 cartridges/main.py:251
msgid "Added"
msgstr ""
#: data/gtk/window.blp:162
msgid "Imported"
msgstr ""
#: data/gtk/window.blp:260
msgid "Hidden Games"
msgstr ""
#: data/gtk/window.blp:368
#: data/gtk/window.blp:121
msgid "Game Title"
msgstr ""
#: data/gtk/window.blp:425
#: data/gtk/window.blp:176
msgid "Play"
msgstr ""
#: data/gtk/window.blp:502
#: data/gtk/window.blp:243 data/gtk/window.blp:435
msgid "Add Game"
msgstr ""
#: data/gtk/window.blp:250 data/gtk/window.blp:316
msgid "Main Menu"
msgstr ""
#: data/gtk/window.blp:311
msgid "Hidden Games"
msgstr ""
#: data/gtk/window.blp:374
msgid "Sort"
msgstr ""
#: data/gtk/window.blp:505
#: data/gtk/window.blp:377
msgid "A-Z"
msgstr ""
#: data/gtk/window.blp:511
#: data/gtk/window.blp:383
msgid "Z-A"
msgstr ""
#: data/gtk/window.blp:517
#: data/gtk/window.blp:389
msgid "Newest"
msgstr ""
#: data/gtk/window.blp:523
#: data/gtk/window.blp:395
msgid "Oldest"
msgstr ""
#: data/gtk/window.blp:529
#: data/gtk/window.blp:401
msgid "Last Played"
msgstr ""
#: data/gtk/window.blp:536
#: data/gtk/window.blp:408
msgid "Show Hidden"
msgstr ""
#: data/gtk/window.blp:545
#: data/gtk/window.blp:421
msgid "Keyboard Shortcuts"
msgstr ""
#: data/gtk/window.blp:426
msgid "About Cartridges"
msgstr ""
#: data/gtk/window.blp:562
msgid "IGDB"
msgstr ""
#: data/gtk/window.blp:564
msgid "ProtonDB"
msgstr ""
#: data/gtk/window.blp:566
msgid "HowLongToBeat"
msgstr ""
#. The variable is the title of the game
#: cartridges/main.py:226 cartridges/game.py:125
msgid "{} launched"
msgstr ""
#. Translators: Replace this with Your Name, Your Name <your.email@example.com>, or Your Name https://your-site.com for it to show up in the About dialog.
#: cartridges/main.py:291
msgid "translator-credits"
#. Translators: Replace this with your name for it to show up in the about window
#: src/main.py:171
msgid "translator_credits"
msgstr ""
#. The variable is the date when the game was added
#: cartridges/window.py:382
#: src/window.py:192
msgid "Added: {}"
msgstr ""
#: cartridges/window.py:385
#: src/window.py:195
msgid "Never"
msgstr ""
#. The variable is the date when the game was last played
#: cartridges/window.py:389
#: src/window.py:199
msgid "Last played: {}"
msgstr ""
#: cartridges/details_dialog.py:82
#: src/details_window.py:72
msgid "Apply"
msgstr ""
#: cartridges/details_dialog.py:88
#: src/details_window.py:78
msgid "Add New Game"
msgstr ""
#: cartridges/details_dialog.py:89
msgid "Add"
msgstr ""
#: cartridges/details_dialog.py:102
msgid "Executables"
#: src/details_window.py:79
msgid "Confirm"
msgstr ""
#. Translate this string as you would translate "file"
#: cartridges/details_dialog.py:117
#: src/details_window.py:91
msgid "file.txt"
msgstr ""
#. As in software
#: cartridges/details_dialog.py:119
#: src/details_window.py:93
msgid "program"
msgstr ""
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:124 cartridges/details_dialog.py:126
#: src/details_window.py:98 src/details_window.py:100
msgid "C:\\path\\to\\{}"
msgstr ""
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:130 cartridges/details_dialog.py:132
#: src/details_window.py:104 src/details_window.py:106
msgid "/path/to/{}"
msgstr ""
#: cartridges/details_dialog.py:137
#: src/details_window.py:111
msgid ""
"To launch the executable \"{}\", use the command:\n"
"\n"
@@ -497,159 +438,61 @@ msgid ""
"If the path contains spaces, make sure to wrap it in double quotes!"
msgstr ""
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:185
#: src/details_window.py:146 src/details_window.py:152
msgid "Couldn't Add Game"
msgstr ""
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:221
#: src/details_window.py:146 src/details_window.py:181
msgid "Game title cannot be empty."
msgstr ""
#: cartridges/details_dialog.py:185 cartridges/details_dialog.py:229
#: src/details_window.py:152 src/details_window.py:189
msgid "Executable cannot be empty."
msgstr ""
#: cartridges/details_dialog.py:220 cartridges/details_dialog.py:228
#: src/details_window.py:180 src/details_window.py:188
msgid "Couldn't Apply Preferences"
msgstr ""
#. The variable is the title of the game
#: cartridges/game.py:139
msgid "{} hidden"
msgstr ""
#: cartridges/game.py:139
msgid "{} unhidden"
#: src/game.py:141
msgid "{} launched"
msgstr ""
#. The variable is the title of the game
#: cartridges/game.py:153
#: src/game.py:154
msgid "{} hidden"
msgstr ""
#: src/game.py:154
msgid "{} unhidden"
msgstr ""
#: src/game.py:171
msgid "{} removed"
msgstr ""
#: cartridges/preferences.py:136
#: src/preferences.py:102
msgid "All games removed"
msgstr ""
#: cartridges/preferences.py:188
#: src/preferences.py:149
msgid ""
"An API key is required to use SteamGridDB. You can generate one {}here{}."
msgstr ""
#: cartridges/preferences.py:203
msgid "Downloading covers…"
msgstr ""
#: cartridges/preferences.py:222
msgid "Covers updated"
msgstr ""
#: cartridges/preferences.py:370
msgid "Installation Not Found"
msgstr ""
#: cartridges/preferences.py:371
msgid "Select a valid directory"
msgstr ""
#: cartridges/preferences.py:407 cartridges/importer/importer.py:317
msgid "Warning"
msgstr ""
#: cartridges/preferences.py:441
msgid "Invalid Directory"
msgstr ""
#: cartridges/preferences.py:447
#: src/preferences.py:289
msgid "Set Location"
msgstr ""
#: cartridges/utils/create_dialog.py:33 cartridges/importer/importer.py:318
#: src/utils/create_dialog.py:25
msgid "Dismiss"
msgstr ""
#: cartridges/utils/relative_date.py:30
msgid "Today"
msgstr ""
#: cartridges/utils/relative_date.py:32
msgid "Yesterday"
msgstr ""
#: cartridges/utils/relative_date.py:36
msgid "Last Week"
msgstr ""
#: cartridges/utils/relative_date.py:38
msgid "This Month"
msgstr ""
#: cartridges/utils/relative_date.py:40
msgid "Last Month"
msgstr ""
#: cartridges/utils/relative_date.py:44
msgid "Last Year"
msgstr ""
#: cartridges/importer/importer.py:144
msgid "Importing Games…"
msgstr ""
#: cartridges/importer/importer.py:337
msgid "The following errors occured during import:"
msgstr ""
#: cartridges/importer/importer.py:366
msgid "No new games found"
msgstr ""
#. The variable is the number of games.
#: cartridges/importer/importer.py:379
msgid "{} game imported"
msgid_plural "{} games imported"
msgstr[0] ""
msgstr[1] ""
#. The variable is the number of games. This text comes after "{0} games imported".
#: cartridges/importer/importer.py:383
msgid ", {} removed"
msgid_plural ", {} removed"
msgstr[0] ""
msgstr[1] ""
#. The variable is the name of the source
#: cartridges/importer/location.py:34
msgid "Select the {} cache directory."
msgstr ""
#. The variable is the name of the source
#: cartridges/importer/location.py:36
msgid "Select the {} configuration directory."
msgstr ""
#. The variable is the name of the source
#: cartridges/importer/location.py:38
msgid "Select the {} data directory."
msgstr ""
#: cartridges/importer/retroarch_source.py:129
msgid "No RetroArch Core Selected"
msgstr ""
#. The variable is a newline separated list of playlists
#: cartridges/importer/retroarch_source.py:131
msgid "The following playlists have no default core:"
msgstr ""
#: cartridges/importer/retroarch_source.py:133
msgid "Games with no core selected were not imported"
msgstr ""
#: cartridges/store/managers/sgdb_manager.py:46
#: src/store/managers/sgdb_manager.py:47
msgid "Couldn't Authenticate SteamGridDB"
msgstr ""
#: cartridges/store/managers/sgdb_manager.py:47
#: src/store/managers/sgdb_manager.py:48
msgid "Verify your API key in preferences"
msgstr ""

733
po/cs.po
View File

@@ -1,733 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR kramo
# This file is distributed under the same license as the Cartridges package.
# foo expert <deferred_water346@simplelogin.com>, 2023, 2024.
# AsciiWolf <mail@asciiwolf.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Cartridges\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-11-05 14:01+0100\n"
"PO-Revision-Date: 2025-12-29 14:00+0000\n"
"Last-Translator: AsciiWolf <mail@asciiwolf.com>\n"
"Language-Team: Czech <https://hosted.weblate.org/projects/cartridges/"
"cartridges/cs/>\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n"
"X-Generator: Weblate 5.15.1\n"
#: data/page.kramo.Cartridges.desktop.in:3
#: data/page.kramo.Cartridges.metainfo.xml.in:9
#: data/page.kramo.Cartridges.metainfo.xml.in:40 data/gtk/window.blp:47
#: data/gtk/window.blp:83
msgid "Cartridges"
msgstr "Kazety"
#: data/page.kramo.Cartridges.desktop.in:4
msgid "Game Launcher"
msgstr "Spouštěč her"
#: data/page.kramo.Cartridges.desktop.in:5
#: data/page.kramo.Cartridges.metainfo.xml.in:10
msgid "Launch all your games"
msgstr "Spusťte všechny vaše hry"
#: data/page.kramo.Cartridges.desktop.in:11
msgid ""
"gaming;launcher;steam;lutris;heroic;bottles;itch;flatpak;legendary;retroarch;"
msgstr ""
"hraní;spouštěč;steam;lutris;heroic;láhve;itch;flatpak;legendary;retroarch;"
#: data/page.kramo.Cartridges.metainfo.xml.in:12
msgid ""
"Cartridges is a simple game launcher for all of your games. It has support "
"for importing games from Steam, Lutris, Heroic and more with no login "
"necessary. You can sort and hide games or download cover art from "
"SteamGridDB."
msgstr ""
"Kazety jsou jednoduchý spouštěč pro všechny vaše hry. Podporuje importovaní "
"her ze služeb Steam, Lutris, Heroic a dalších bez nutnosti přihlášení. Hry "
"můžete třídit a skrývat nebo stahovat obálky ze služby SteamGridDB."
#: data/page.kramo.Cartridges.metainfo.xml.in:44 data/gtk/window.blp:320
#: cartridges/details_dialog.py:77
msgid "Game Details"
msgstr "Podrobnosti o hře"
#: data/page.kramo.Cartridges.metainfo.xml.in:48
msgid "Edit Game Details"
msgstr "Upravit podrobnosti o hře"
#: data/page.kramo.Cartridges.metainfo.xml.in:52 data/gtk/help-overlay.blp:19
#: data/gtk/window.blp:543 cartridges/details_dialog.py:279
#: cartridges/importer/importer.py:319 cartridges/importer/importer.py:369
msgid "Preferences"
msgstr "Předvolby"
#: data/gtk/details-dialog.blp:15
msgid "Cancel"
msgstr "Zrušit"
#: data/gtk/details-dialog.blp:45
msgid "New Cover"
msgstr "Nový obal"
#: data/gtk/details-dialog.blp:64
msgid "Delete Cover"
msgstr "Odstranit obal"
#: data/gtk/details-dialog.blp:92 data/gtk/game.blp:80
msgid "Title"
msgstr "Název"
#: data/gtk/details-dialog.blp:96
msgid "Developer (optional)"
msgstr "Vývojář (nepovinné)"
#: data/gtk/details-dialog.blp:102
msgid "Executable"
msgstr "Spustitelný soubor"
#: data/gtk/details-dialog.blp:108
msgid "Select File"
msgstr "Vybrat soubor"
#: data/gtk/details-dialog.blp:119
msgid "More Info"
msgstr "Více informací"
#: data/gtk/game.blp:101 data/gtk/game.blp:109 data/gtk/window.blp:444
msgid "Edit"
msgstr "Upravit"
#: data/gtk/game.blp:102 cartridges/window.py:359
msgid "Hide"
msgstr "Skrýt"
#: data/gtk/game.blp:103 data/gtk/game.blp:111 data/gtk/window.blp:464
msgid "Remove"
msgstr "Odstranit"
#: data/gtk/game.blp:110 cartridges/window.py:361
msgid "Unhide"
msgstr "Odkrýt"
#: data/gtk/help-overlay.blp:11 data/gtk/preferences.blp:9
msgid "General"
msgstr "Obecné"
#: data/gtk/help-overlay.blp:14 data/gtk/window.blp:207 data/gtk/window.blp:223
#: data/gtk/window.blp:274 data/gtk/window.blp:290 data/gtk/window.blp:475
msgid "Search"
msgstr "Vyhledávání"
#: data/gtk/help-overlay.blp:24 data/gtk/window.blp:544
msgid "Keyboard Shortcuts"
msgstr "Klávesové zkratky"
#: data/gtk/help-overlay.blp:29 cartridges/game.py:103
#: cartridges/preferences.py:137 cartridges/importer/importer.py:386
msgid "Undo"
msgstr "Zpět"
#: data/gtk/help-overlay.blp:34
msgid "Quit"
msgstr "Ukončit"
#: data/gtk/help-overlay.blp:39 data/gtk/window.blp:92 data/gtk/window.blp:187
msgid "Toggle Sidebar"
msgstr "Přepnout postranní panel"
#: data/gtk/help-overlay.blp:44 data/gtk/window.blp:200 data/gtk/window.blp:267
msgid "Main Menu"
msgstr "Hlavní nabídka"
#: data/gtk/help-overlay.blp:50
msgid "Games"
msgstr "Hry"
#: data/gtk/help-overlay.blp:53 data/gtk/window.blp:193 data/gtk/window.blp:551
msgid "Add Game"
msgstr "Přidat hru"
#: data/gtk/help-overlay.blp:58 data/gtk/preferences.blp:58
#: data/gtk/window.blp:27 data/gtk/window.blp:555
msgid "Import"
msgstr "Import"
#: data/gtk/help-overlay.blp:63
msgid "Show Hidden Games"
msgstr "Zobrazit skryté hry"
#: data/gtk/help-overlay.blp:68
msgid "Remove Game"
msgstr "Odstranit hru"
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:62
#: data/gtk/preferences.blp:365
msgid "Behavior"
msgstr "Chování"
#: data/gtk/preferences.blp:16
msgid "Exit After Launching Games"
msgstr "Ukončit po spuštění her"
#: data/gtk/preferences.blp:20
msgid "Cover Image Launches Game"
msgstr "Obrázek na obálce spouští hru"
#: data/gtk/preferences.blp:21
msgid "Swaps the behavior of the cover image and the play button"
msgstr "Vymění chování obrázku na obálce a tlačítka pro přehrávání"
#: data/gtk/preferences.blp:26 cartridges/details_dialog.py:91
msgid "Images"
msgstr "Obrázky"
#: data/gtk/preferences.blp:29
msgid "High Quality Images"
msgstr "Vysoce kvalitní obrázky"
#: data/gtk/preferences.blp:30
msgid "Save game covers losslessly at the cost of storage"
msgstr "Ukládat obaly her bezztrátově na úkor většího místa na disku"
#: data/gtk/preferences.blp:35
msgid "Danger Zone"
msgstr "Nebezpečná zóna"
#: data/gtk/preferences.blp:39
msgid "Remove All Games"
msgstr "Odstranit všechny hry"
#: data/gtk/preferences.blp:65
msgid "Import Games Automatically"
msgstr "Importovat hry automaticky"
#: data/gtk/preferences.blp:69
msgid "Remove Uninstalled Games"
msgstr "Odstranit odinstalované hry"
#: data/gtk/preferences.blp:74
msgid "Sources"
msgstr "Zdroje"
#: data/gtk/preferences.blp:78 cartridges/importer/steam_source.py:114
msgid "Steam"
msgstr "Steam"
#: data/gtk/preferences.blp:87 data/gtk/preferences.blp:114
#: data/gtk/preferences.blp:149 data/gtk/preferences.blp:192
#: data/gtk/preferences.blp:219 data/gtk/preferences.blp:246
#: data/gtk/preferences.blp:273
msgid "Install Location"
msgstr "Umístění instalace"
#: data/gtk/preferences.blp:105 data/gtk/window.blp:565
#: cartridges/importer/lutris_source.py:107
msgid "Lutris"
msgstr "Lutris"
#: data/gtk/preferences.blp:131
msgid "Import Steam Games"
msgstr "Importovat Steam hry"
#: data/gtk/preferences.blp:135
msgid "Import Flatpak Games"
msgstr "Importovat Flatpak hry"
#: data/gtk/preferences.blp:140 cartridges/importer/heroic_source.py:355
msgid "Heroic"
msgstr "Heroic"
#: data/gtk/preferences.blp:166
msgid "Import Epic Games"
msgstr "Importovat Epic Games hry"
#: data/gtk/preferences.blp:170
msgid "Import GOG Games"
msgstr "Importovat GOG hry"
#: data/gtk/preferences.blp:174
msgid "Import Amazon Games"
msgstr "Importovat Amazon hry"
#: data/gtk/preferences.blp:178
msgid "Import Sideloaded Games"
msgstr "Importovat ručně načtené hry"
#: data/gtk/preferences.blp:183 cartridges/importer/bottles_source.py:86
msgid "Bottles"
msgstr "Láhve"
#: data/gtk/preferences.blp:210 cartridges/importer/itch_source.py:81
msgid "itch"
msgstr "itch"
#: data/gtk/preferences.blp:237 cartridges/importer/legendary_source.py:97
msgid "Legendary"
msgstr "Legendary"
#: data/gtk/preferences.blp:264 cartridges/importer/retroarch_source.py:142
msgid "RetroArch"
msgstr "RetroArch"
#: data/gtk/preferences.blp:291 cartridges/importer/flatpak_source.py:143
msgid "Flatpak"
msgstr "Flatpak"
#. The location of the system-wide data directory
#: data/gtk/preferences.blp:301
msgid "System Location"
msgstr "Systémové umístění"
#. The location of the user-specific data directory
#: data/gtk/preferences.blp:319
msgid "User Location"
msgstr "Uživatelské umístění"
#: data/gtk/preferences.blp:336
msgid "Import Game Launchers"
msgstr "Importovat spouštěče her"
#: data/gtk/preferences.blp:341 cartridges/importer/desktop_source.py:215
msgid "Desktop Entries"
msgstr "Položky na ploše"
#: data/gtk/preferences.blp:353 data/gtk/window.blp:563
msgid "SteamGridDB"
msgstr "SteamGridDB"
#: data/gtk/preferences.blp:357
msgid "Authentication"
msgstr "Ověření"
#: data/gtk/preferences.blp:360
msgid "API Key"
msgstr "Klíč API"
#: data/gtk/preferences.blp:368
msgid "Use SteamGridDB"
msgstr "Používat SteamGridDB"
#: data/gtk/preferences.blp:369
msgid "Download images when adding or importing games"
msgstr "Stahovat obrázky při přidávání nebo importování her"
#: data/gtk/preferences.blp:373
msgid "Prefer Over Official Images"
msgstr "Upřednostnit před oficiálními obrázky"
#: data/gtk/preferences.blp:377
msgid "Prefer Animated Images"
msgstr "Upřednostnit animované obrázky"
#: data/gtk/preferences.blp:383
msgid "Update Covers"
msgstr "Aktualizovat obálky"
#: data/gtk/preferences.blp:384
msgid "Fetch covers for games already in your library"
msgstr "Najít obálky pro hry ve vaší knihovně"
#: data/gtk/preferences.blp:389
msgid "Update"
msgstr "Aktualizovat"
#: data/gtk/window.blp:6 data/gtk/window.blp:14
msgid "No Games Found"
msgstr "Nebyly nalezeny žádné hry"
#: data/gtk/window.blp:7 data/gtk/window.blp:15
msgid "Try a different search"
msgstr "Zkuste hledat něco jiného"
#: data/gtk/window.blp:21
msgid "No Games"
msgstr "Žádné hry"
#: data/gtk/window.blp:22
msgid "Use the + button to add games"
msgstr "Tlačítkem + můžete přidávat hry"
#: data/gtk/window.blp:40
msgid "No Hidden Games"
msgstr "Žádné skryté hry"
#: data/gtk/window.blp:41
msgid "Games you hide will appear here"
msgstr "Hry, které skryjete, se zobrazí zde"
#: data/gtk/window.blp:76 data/gtk/window.blp:113 cartridges/main.py:249
msgid "All Games"
msgstr "Všechny hry"
#: data/gtk/window.blp:140 cartridges/main.py:251
msgid "Added"
msgstr "Přidané"
#: data/gtk/window.blp:162
msgid "Imported"
msgstr "Importované"
#: data/gtk/window.blp:260
msgid "Hidden Games"
msgstr "Skryté hry"
#: data/gtk/window.blp:368
msgid "Game Title"
msgstr "Název hry"
#: data/gtk/window.blp:425
msgid "Play"
msgstr "Hrát"
#: data/gtk/window.blp:502
msgid "Sort"
msgstr "Třídit"
#: data/gtk/window.blp:505
msgid "A-Z"
msgstr "A-Ž"
#: data/gtk/window.blp:511
msgid "Z-A"
msgstr "Ž-A"
#: data/gtk/window.blp:517
msgid "Newest"
msgstr "Nejnovější"
#: data/gtk/window.blp:523
msgid "Oldest"
msgstr "Nejstarší"
#: data/gtk/window.blp:529
msgid "Last Played"
msgstr "Naposledy hráno"
#: data/gtk/window.blp:536
msgid "Show Hidden"
msgstr "Zobrazit Skryté"
#: data/gtk/window.blp:545
msgid "About Cartridges"
msgstr "O Kazetách"
#: data/gtk/window.blp:562
msgid "IGDB"
msgstr "IGDB"
#: data/gtk/window.blp:564
msgid "ProtonDB"
msgstr "ProtonDB"
#: data/gtk/window.blp:566
msgid "HowLongToBeat"
msgstr "HowLongToBeat"
#. The variable is the title of the game
#: cartridges/main.py:226 cartridges/game.py:125
msgid "{} launched"
msgstr "{} spuštěno"
#. Translators: Replace this with Your Name, Your Name <your.email@example.com>, or Your Name https://your-site.com for it to show up in the About dialog.
#: cartridges/main.py:291
msgid "translator-credits"
msgstr "Daniel Rusek <mail@asciiwolf.com>"
#. The variable is the date when the game was added
#: cartridges/window.py:382
msgid "Added: {}"
msgstr "Přidáno: {}"
#: cartridges/window.py:385
msgid "Never"
msgstr "Nikdy"
#. The variable is the date when the game was last played
#: cartridges/window.py:389
msgid "Last played: {}"
msgstr "Naposledy hráno: {}"
#: cartridges/details_dialog.py:82
msgid "Apply"
msgstr "Použít"
#: cartridges/details_dialog.py:88
msgid "Add New Game"
msgstr "Přidat novou hru"
#: cartridges/details_dialog.py:89
msgid "Add"
msgstr "Přidat"
#: cartridges/details_dialog.py:102
msgid "Executables"
msgstr "Spustitelné soubory"
#. Translate this string as you would translate "file"
#: cartridges/details_dialog.py:117
msgid "file.txt"
msgstr "soubor.txt"
#. As in software
#: cartridges/details_dialog.py:119
msgid "program"
msgstr "program"
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:124 cartridges/details_dialog.py:126
msgid "C:\\path\\to\\{}"
msgstr "C:\\cesta\\k\\{}"
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:130 cartridges/details_dialog.py:132
msgid "/path/to/{}"
msgstr "/cesta/k/{}"
#: cartridges/details_dialog.py:137
msgid ""
"To launch the executable \"{}\", use the command:\n"
"\n"
"<tt>\"{}\"</tt>\n"
"\n"
"To open the file \"{}\" with the default application, use:\n"
"\n"
"<tt>{} \"{}\"</tt>\n"
"\n"
"If the path contains spaces, make sure to wrap it in double quotes!"
msgstr ""
"Chcete-li spustit spustitelný soubor \"{}\", použijte příkaz:\n"
"\n"
"<tt>\"{}\"</tt>\n"
"\n"
"Chcete-li otevřít soubor \"{}\" pomocí výchozí aplikace, použijte příkaz:\n"
"\n"
"<tt>{} \"{}\"</tt>\n"
"\n"
"Pokud cesta obsahuje mezery, nezapomeňte ji zabalit do dvojitých uvozovek!"
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:185
msgid "Couldn't Add Game"
msgstr "Nelze přidat hru"
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:221
msgid "Game title cannot be empty."
msgstr "Název hry nemůže být prázdný."
#: cartridges/details_dialog.py:185 cartridges/details_dialog.py:229
msgid "Executable cannot be empty."
msgstr "Spustitelný soubor nemůže být prázdný."
#: cartridges/details_dialog.py:220 cartridges/details_dialog.py:228
msgid "Couldn't Apply Preferences"
msgstr "Nelze použít předvolby"
#. The variable is the title of the game
#: cartridges/game.py:139
msgid "{} hidden"
msgstr "{} skryto"
#: cartridges/game.py:139
msgid "{} unhidden"
msgstr "{} odkryto"
#. The variable is the title of the game
#: cartridges/game.py:153
msgid "{} removed"
msgstr "{} odstraněno"
#: cartridges/preferences.py:136
msgid "All games removed"
msgstr "Všechny hry odstraněny"
#: cartridges/preferences.py:188
msgid ""
"An API key is required to use SteamGridDB. You can generate one {}here{}."
msgstr ""
"K používání služby SteamGridDB je vyžadován klíč API. Můžete si ho "
"vygenerovat {}zde{}."
#: cartridges/preferences.py:203
msgid "Downloading covers…"
msgstr "Stahování obálek…"
#: cartridges/preferences.py:222
msgid "Covers updated"
msgstr "Obálky aktualizovány"
#: cartridges/preferences.py:370
msgid "Installation Not Found"
msgstr "Instalace nebyla nalezena"
#: cartridges/preferences.py:371
msgid "Select a valid directory"
msgstr "Vyberte platný adresář"
#: cartridges/preferences.py:407 cartridges/importer/importer.py:317
msgid "Warning"
msgstr "Pozor"
#: cartridges/preferences.py:441
msgid "Invalid Directory"
msgstr "Neplatný adresář"
#: cartridges/preferences.py:447
msgid "Set Location"
msgstr "Nastavit umístění"
#: cartridges/utils/create_dialog.py:33 cartridges/importer/importer.py:318
msgid "Dismiss"
msgstr "Zahodit"
#: cartridges/utils/relative_date.py:30
msgid "Today"
msgstr "dnes"
#: cartridges/utils/relative_date.py:32
msgid "Yesterday"
msgstr "včera"
#: cartridges/utils/relative_date.py:36
msgid "Last Week"
msgstr "minulý týden"
#: cartridges/utils/relative_date.py:38
msgid "This Month"
msgstr "tento měsíc"
#: cartridges/utils/relative_date.py:40
msgid "Last Month"
msgstr "minulý měsíc"
#: cartridges/utils/relative_date.py:44
msgid "Last Year"
msgstr "minulý rok"
#: cartridges/importer/importer.py:144
msgid "Importing Games…"
msgstr "Přidávání her…"
#: cartridges/importer/importer.py:337
msgid "The following errors occured during import:"
msgstr "Tyto chyby se vyskytly při importu:"
#: cartridges/importer/importer.py:366
msgid "No new games found"
msgstr "Nebyly nalezeny žádné nové hry"
#. The variable is the number of games.
#: cartridges/importer/importer.py:379
msgid "{} game imported"
msgid_plural "{} games imported"
msgstr[0] "Přidána {} hra"
msgstr[1] "Přidány {} hry"
msgstr[2] "Přidáno {} her"
#. The variable is the number of games. This text comes after "{0} games imported".
#: cartridges/importer/importer.py:383
msgid ", {} removed"
msgid_plural ", {} removed"
msgstr[0] ", {} odstraněna"
msgstr[1] ", {} odstraněny"
msgstr[2] ", {} odstraněno"
#. The variable is the name of the source
#: cartridges/importer/location.py:34
msgid "Select the {} cache directory."
msgstr "Vyberte adresář {} mezipaměti."
#. The variable is the name of the source
#: cartridges/importer/location.py:36
msgid "Select the {} configuration directory."
msgstr "Vyberte konfigurační adresář {}."
#. The variable is the name of the source
#: cartridges/importer/location.py:38
msgid "Select the {} data directory."
msgstr "Vyberte datový adresář {}."
#: cartridges/importer/retroarch_source.py:129
msgid "No RetroArch Core Selected"
msgstr "Žádné RetroArch jádro nevybráno"
#. The variable is a newline separated list of playlists
#: cartridges/importer/retroarch_source.py:131
msgid "The following playlists have no default core:"
msgstr "Tyto seznamy her nemají výchozí jádra:"
#: cartridges/importer/retroarch_source.py:133
msgid "Games with no core selected were not imported"
msgstr "Hry bez vybraného jádra nebyly přidány"
#: cartridges/store/managers/sgdb_manager.py:46
msgid "Couldn't Authenticate SteamGridDB"
msgstr "Nelze ověřit SteamGridDB"
#: cartridges/store/managers/sgdb_manager.py:47
msgid "Verify your API key in preferences"
msgstr "Ověřte váš klíč API v předvolbách"
#, fuzzy
#~ msgid "1 game imported"
#~ msgid_plural "{} games imported"
#~ msgstr[0] "Přidána 1 hra"
#~ msgstr[1] "Přidány {} hry"
#~ msgstr[2] "Přidány {} hry"
#, fuzzy
#~ msgid "1 removed"
#~ msgid_plural "{} removed"
#~ msgstr[0] "1 odstraněna"
#~ msgstr[1] "{} odstraněny"
#~ msgstr[2] "{} odstraněny"
#~ msgid "Cache Location"
#~ msgstr "Umístění dočasných souborů"
#~ msgid "Library"
#~ msgstr "Knihovna"
#~ msgid "Show preferences"
#~ msgstr "Zobrazit předvolby"
#~ msgid "Shortcuts"
#~ msgstr "Zkratky"
#~ msgid "Open menu"
#~ msgstr "Otevřít nabídku"
#~ msgid "Add new game"
#~ msgstr "Přidat novou hru"
#~ msgid "Import games"
#~ msgstr "Importovat hry"
#~ msgid "Back"
#~ msgstr "Zpět"
#, fuzzy
#~| msgid "Search"
#~ msgid "Search games"
#~ msgstr "Vyhledávání"
#, fuzzy
#~| msgid "Show hidden games"
#~ msgid "Search hidden games"
#~ msgstr "Zobrazit skryté hry"
#~ msgid "The title of the game"
#~ msgstr "Název hry"
#~ msgid "Developer"
#~ msgstr "Vývojář"
#~ msgid "File to open or command to run when launching the game"
#~ msgstr "Soubor nebo příkaz pro spuštění hry"
#~ msgid "Confirm"
#~ msgstr "Potvrdit"

694
po/de.po

File diff suppressed because it is too large Load Diff

702
po/el.po

File diff suppressed because it is too large Load Diff

View File

@@ -1,689 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR kramo
# This file is distributed under the same license as the Cartridges package.
# kramo <contact@kramo.page>, 2024.
# Bruce Cowan <bruce@bcowan.me.uk>, 2024.
# Andi Chandler <andi@gowling.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Cartridges\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-11-05 14:01+0100\n"
"PO-Revision-Date: 2025-02-20 14:20+0000\n"
"Last-Translator: Andi Chandler <andi@gowling.com>\n"
"Language-Team: English (United Kingdom) <https://hosted.weblate.org/projects/"
"cartridges/cartridges/en_GB/>\n"
"Language: en_GB\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.10.1-dev\n"
#: data/page.kramo.Cartridges.desktop.in:3
#: data/page.kramo.Cartridges.metainfo.xml.in:9
#: data/page.kramo.Cartridges.metainfo.xml.in:40 data/gtk/window.blp:47
#: data/gtk/window.blp:83
msgid "Cartridges"
msgstr "Cartridges"
#: data/page.kramo.Cartridges.desktop.in:4
msgid "Game Launcher"
msgstr "Game Launcher"
#: data/page.kramo.Cartridges.desktop.in:5
#: data/page.kramo.Cartridges.metainfo.xml.in:10
msgid "Launch all your games"
msgstr "Launch all your games"
#: data/page.kramo.Cartridges.desktop.in:11
msgid ""
"gaming;launcher;steam;lutris;heroic;bottles;itch;flatpak;legendary;retroarch;"
msgstr ""
"gaming;launcher;steam;lutris;heroic;bottles;itch;flatpak;legendary;retroarch;"
#: data/page.kramo.Cartridges.metainfo.xml.in:12
msgid ""
"Cartridges is a simple game launcher for all of your games. It has support "
"for importing games from Steam, Lutris, Heroic and more with no login "
"necessary. You can sort and hide games or download cover art from "
"SteamGridDB."
msgstr ""
"Cartridges is a simple game launcher for all of your games. It has support "
"for importing games from Steam, Lutris, Heroic and more with no login "
"necessary. You can sort and hide games or download cover art from "
"SteamGridDB."
#: data/page.kramo.Cartridges.metainfo.xml.in:44 data/gtk/window.blp:320
#: cartridges/details_dialog.py:77
msgid "Game Details"
msgstr "Game Details"
#: data/page.kramo.Cartridges.metainfo.xml.in:48
msgid "Edit Game Details"
msgstr "Edit Game Details"
#: data/page.kramo.Cartridges.metainfo.xml.in:52 data/gtk/help-overlay.blp:19
#: data/gtk/window.blp:543 cartridges/details_dialog.py:279
#: cartridges/importer/importer.py:319 cartridges/importer/importer.py:369
msgid "Preferences"
msgstr "Preferences"
#: data/gtk/details-dialog.blp:15
msgid "Cancel"
msgstr "Cancel"
#: data/gtk/details-dialog.blp:45
msgid "New Cover"
msgstr "New Cover"
#: data/gtk/details-dialog.blp:64
msgid "Delete Cover"
msgstr "Delete Cover"
#: data/gtk/details-dialog.blp:92 data/gtk/game.blp:80
msgid "Title"
msgstr "Title"
#: data/gtk/details-dialog.blp:96
msgid "Developer (optional)"
msgstr "Developer (optional)"
#: data/gtk/details-dialog.blp:102
msgid "Executable"
msgstr "Executable"
#: data/gtk/details-dialog.blp:108
msgid "Select File"
msgstr "Select File"
#: data/gtk/details-dialog.blp:119
msgid "More Info"
msgstr "More Info"
#: data/gtk/game.blp:101 data/gtk/game.blp:109 data/gtk/window.blp:444
msgid "Edit"
msgstr "Edit"
#: data/gtk/game.blp:102 cartridges/window.py:359
msgid "Hide"
msgstr "Hide"
#: data/gtk/game.blp:103 data/gtk/game.blp:111 data/gtk/window.blp:464
msgid "Remove"
msgstr "Remove"
#: data/gtk/game.blp:110 cartridges/window.py:361
msgid "Unhide"
msgstr "Unhide"
#: data/gtk/help-overlay.blp:11 data/gtk/preferences.blp:9
msgid "General"
msgstr "General"
#: data/gtk/help-overlay.blp:14 data/gtk/window.blp:207 data/gtk/window.blp:223
#: data/gtk/window.blp:274 data/gtk/window.blp:290 data/gtk/window.blp:475
msgid "Search"
msgstr "Search"
#: data/gtk/help-overlay.blp:24 data/gtk/window.blp:544
msgid "Keyboard Shortcuts"
msgstr "Keyboard Shortcuts"
#: data/gtk/help-overlay.blp:29 cartridges/game.py:103
#: cartridges/preferences.py:137 cartridges/importer/importer.py:386
msgid "Undo"
msgstr "Undo"
#: data/gtk/help-overlay.blp:34
msgid "Quit"
msgstr "Quit"
#: data/gtk/help-overlay.blp:39 data/gtk/window.blp:92 data/gtk/window.blp:187
msgid "Toggle Sidebar"
msgstr "Toggle Sidebar"
#: data/gtk/help-overlay.blp:44 data/gtk/window.blp:200 data/gtk/window.blp:267
msgid "Main Menu"
msgstr "Main Menu"
#: data/gtk/help-overlay.blp:50
msgid "Games"
msgstr "Games"
#: data/gtk/help-overlay.blp:53 data/gtk/window.blp:193 data/gtk/window.blp:551
msgid "Add Game"
msgstr "Add Game"
#: data/gtk/help-overlay.blp:58 data/gtk/preferences.blp:58
#: data/gtk/window.blp:27 data/gtk/window.blp:555
msgid "Import"
msgstr "Import"
#: data/gtk/help-overlay.blp:63
msgid "Show Hidden Games"
msgstr "Show Hidden Games"
#: data/gtk/help-overlay.blp:68
msgid "Remove Game"
msgstr "Remove Game"
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:62
#: data/gtk/preferences.blp:365
msgid "Behavior"
msgstr "Behaviour"
#: data/gtk/preferences.blp:16
msgid "Exit After Launching Games"
msgstr "Exit After Launching Games"
#: data/gtk/preferences.blp:20
msgid "Cover Image Launches Game"
msgstr "Cover Image Launches Game"
#: data/gtk/preferences.blp:21
msgid "Swaps the behavior of the cover image and the play button"
msgstr "Swaps the behaviour of the cover image and the play button"
#: data/gtk/preferences.blp:26 cartridges/details_dialog.py:91
msgid "Images"
msgstr "Images"
#: data/gtk/preferences.blp:29
msgid "High Quality Images"
msgstr "High Quality Images"
#: data/gtk/preferences.blp:30
msgid "Save game covers losslessly at the cost of storage"
msgstr "Save game covers losslessly at the cost of storage"
#: data/gtk/preferences.blp:35
msgid "Danger Zone"
msgstr "Danger Zone"
#: data/gtk/preferences.blp:39
msgid "Remove All Games"
msgstr "Remove All Games"
#: data/gtk/preferences.blp:65
msgid "Import Games Automatically"
msgstr "Import Games Automatically"
#: data/gtk/preferences.blp:69
msgid "Remove Uninstalled Games"
msgstr "Remove Uninstalled Games"
#: data/gtk/preferences.blp:74
msgid "Sources"
msgstr "Sources"
#: data/gtk/preferences.blp:78 cartridges/importer/steam_source.py:114
msgid "Steam"
msgstr "Steam"
#: data/gtk/preferences.blp:87 data/gtk/preferences.blp:114
#: data/gtk/preferences.blp:149 data/gtk/preferences.blp:192
#: data/gtk/preferences.blp:219 data/gtk/preferences.blp:246
#: data/gtk/preferences.blp:273
msgid "Install Location"
msgstr "Install Location"
#: data/gtk/preferences.blp:105 data/gtk/window.blp:565
#: cartridges/importer/lutris_source.py:107
msgid "Lutris"
msgstr "Lutris"
#: data/gtk/preferences.blp:131
msgid "Import Steam Games"
msgstr "Import Steam Games"
#: data/gtk/preferences.blp:135
msgid "Import Flatpak Games"
msgstr "Import Flatpak Games"
#: data/gtk/preferences.blp:140 cartridges/importer/heroic_source.py:355
msgid "Heroic"
msgstr "Heroic"
#: data/gtk/preferences.blp:166
msgid "Import Epic Games"
msgstr "Import Epic Games"
#: data/gtk/preferences.blp:170
msgid "Import GOG Games"
msgstr "Import GOG Games"
#: data/gtk/preferences.blp:174
msgid "Import Amazon Games"
msgstr "Import Amazon Games"
#: data/gtk/preferences.blp:178
msgid "Import Sideloaded Games"
msgstr "Import Sideloaded Games"
#: data/gtk/preferences.blp:183 cartridges/importer/bottles_source.py:86
msgid "Bottles"
msgstr "Bottles"
#: data/gtk/preferences.blp:210 cartridges/importer/itch_source.py:81
msgid "itch"
msgstr "itch"
#: data/gtk/preferences.blp:237 cartridges/importer/legendary_source.py:97
msgid "Legendary"
msgstr "Legendary"
#: data/gtk/preferences.blp:264 cartridges/importer/retroarch_source.py:142
msgid "RetroArch"
msgstr "RetroArch"
#: data/gtk/preferences.blp:291 cartridges/importer/flatpak_source.py:143
msgid "Flatpak"
msgstr "Flatpak"
#. The location of the system-wide data directory
#: data/gtk/preferences.blp:301
msgid "System Location"
msgstr "System Location"
#. The location of the user-specific data directory
#: data/gtk/preferences.blp:319
msgid "User Location"
msgstr "User Location"
#: data/gtk/preferences.blp:336
msgid "Import Game Launchers"
msgstr "Import Game Launchers"
#: data/gtk/preferences.blp:341 cartridges/importer/desktop_source.py:215
msgid "Desktop Entries"
msgstr "Desktop Entries"
#: data/gtk/preferences.blp:353 data/gtk/window.blp:563
msgid "SteamGridDB"
msgstr "SteamGridDB"
#: data/gtk/preferences.blp:357
msgid "Authentication"
msgstr "Authentication"
#: data/gtk/preferences.blp:360
msgid "API Key"
msgstr "API Key"
#: data/gtk/preferences.blp:368
msgid "Use SteamGridDB"
msgstr "Use SteamGridDB"
#: data/gtk/preferences.blp:369
msgid "Download images when adding or importing games"
msgstr "Download images when adding or importing games"
#: data/gtk/preferences.blp:373
msgid "Prefer Over Official Images"
msgstr "Prefer Over Official Images"
#: data/gtk/preferences.blp:377
msgid "Prefer Animated Images"
msgstr "Prefer Animated Images"
#: data/gtk/preferences.blp:383
msgid "Update Covers"
msgstr "Update Covers"
#: data/gtk/preferences.blp:384
msgid "Fetch covers for games already in your library"
msgstr "Fetch covers for games already in your library"
#: data/gtk/preferences.blp:389
msgid "Update"
msgstr "Update"
#: data/gtk/window.blp:6 data/gtk/window.blp:14
msgid "No Games Found"
msgstr "No Games Found"
#: data/gtk/window.blp:7 data/gtk/window.blp:15
msgid "Try a different search"
msgstr "Try a different search"
#: data/gtk/window.blp:21
msgid "No Games"
msgstr "No Games"
#: data/gtk/window.blp:22
msgid "Use the + button to add games"
msgstr "Use the + button to add games"
#: data/gtk/window.blp:40
msgid "No Hidden Games"
msgstr "No Hidden Games"
#: data/gtk/window.blp:41
msgid "Games you hide will appear here"
msgstr "Games you hide will appear here"
#: data/gtk/window.blp:76 data/gtk/window.blp:113 cartridges/main.py:249
msgid "All Games"
msgstr "All Games"
#: data/gtk/window.blp:140 cartridges/main.py:251
msgid "Added"
msgstr "Added"
#: data/gtk/window.blp:162
msgid "Imported"
msgstr "Imported"
#: data/gtk/window.blp:260
msgid "Hidden Games"
msgstr "Hidden Games"
#: data/gtk/window.blp:368
msgid "Game Title"
msgstr "Game Title"
#: data/gtk/window.blp:425
msgid "Play"
msgstr "Play"
#: data/gtk/window.blp:502
msgid "Sort"
msgstr "Sort"
#: data/gtk/window.blp:505
msgid "A-Z"
msgstr "A-Z"
#: data/gtk/window.blp:511
msgid "Z-A"
msgstr "Z-A"
#: data/gtk/window.blp:517
msgid "Newest"
msgstr "Newest"
#: data/gtk/window.blp:523
msgid "Oldest"
msgstr "Oldest"
#: data/gtk/window.blp:529
msgid "Last Played"
msgstr "Last Played"
#: data/gtk/window.blp:536
msgid "Show Hidden"
msgstr "Show Hidden"
#: data/gtk/window.blp:545
msgid "About Cartridges"
msgstr "About Cartridges"
#: data/gtk/window.blp:562
msgid "IGDB"
msgstr "IGDB"
#: data/gtk/window.blp:564
msgid "ProtonDB"
msgstr "ProtonDB"
#: data/gtk/window.blp:566
msgid "HowLongToBeat"
msgstr "HowLongToBeat"
#. The variable is the title of the game
#: cartridges/main.py:226 cartridges/game.py:125
msgid "{} launched"
msgstr "{} launched"
#. Translators: Replace this with Your Name, Your Name <your.email@example.com>, or Your Name https://your-site.com for it to show up in the About dialog.
#: cartridges/main.py:291
msgid "translator-credits"
msgstr ""
"Bruce Cowan <bruce@bcowan.me.uk>\n"
"Andi Chandler <andi@gowling.com>"
#. The variable is the date when the game was added
#: cartridges/window.py:382
msgid "Added: {}"
msgstr "Added: {}"
#: cartridges/window.py:385
msgid "Never"
msgstr "Never"
#. The variable is the date when the game was last played
#: cartridges/window.py:389
msgid "Last played: {}"
msgstr "Last played: {}"
#: cartridges/details_dialog.py:82
msgid "Apply"
msgstr "Apply"
#: cartridges/details_dialog.py:88
msgid "Add New Game"
msgstr "Add New Game"
#: cartridges/details_dialog.py:89
msgid "Add"
msgstr "Add"
#: cartridges/details_dialog.py:102
msgid "Executables"
msgstr "Executables"
#. Translate this string as you would translate "file"
#: cartridges/details_dialog.py:117
msgid "file.txt"
msgstr "file.txt"
#. As in software
#: cartridges/details_dialog.py:119
msgid "program"
msgstr "program"
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:124 cartridges/details_dialog.py:126
msgid "C:\\path\\to\\{}"
msgstr "C:\\path\\to\\{}"
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:130 cartridges/details_dialog.py:132
msgid "/path/to/{}"
msgstr "/path/to/{}"
#: cartridges/details_dialog.py:137
msgid ""
"To launch the executable \"{}\", use the command:\n"
"\n"
"<tt>\"{}\"</tt>\n"
"\n"
"To open the file \"{}\" with the default application, use:\n"
"\n"
"<tt>{} \"{}\"</tt>\n"
"\n"
"If the path contains spaces, make sure to wrap it in double quotes!"
msgstr ""
"To launch the executable \"{}\", use the command:\n"
"\n"
"<tt>\"{}\"</tt>\n"
"\n"
"To open the file \"{}\" with the default application, use:\n"
"\n"
"<tt>{} \"{}\"</tt>\n"
"\n"
"If the path contains spaces, make sure to wrap it in double quotes!"
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:185
msgid "Couldn't Add Game"
msgstr "Couldn't Add Game"
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:221
msgid "Game title cannot be empty."
msgstr "Game title cannot be empty."
#: cartridges/details_dialog.py:185 cartridges/details_dialog.py:229
msgid "Executable cannot be empty."
msgstr "Executable cannot be empty."
#: cartridges/details_dialog.py:220 cartridges/details_dialog.py:228
msgid "Couldn't Apply Preferences"
msgstr "Couldn't Apply Preferences"
#. The variable is the title of the game
#: cartridges/game.py:139
msgid "{} hidden"
msgstr "{} hidden"
#: cartridges/game.py:139
msgid "{} unhidden"
msgstr "{} unhidden"
#. The variable is the title of the game
#: cartridges/game.py:153
msgid "{} removed"
msgstr "{} removed"
#: cartridges/preferences.py:136
msgid "All games removed"
msgstr "All games removed"
#: cartridges/preferences.py:188
msgid ""
"An API key is required to use SteamGridDB. You can generate one {}here{}."
msgstr ""
"An API key is required to use SteamGridDB. You can generate one {}here{}."
#: cartridges/preferences.py:203
msgid "Downloading covers…"
msgstr "Downloading covers…"
#: cartridges/preferences.py:222
msgid "Covers updated"
msgstr "Covers updated"
#: cartridges/preferences.py:370
msgid "Installation Not Found"
msgstr "Installation Not Found"
#: cartridges/preferences.py:371
msgid "Select a valid directory"
msgstr "Select a valid directory"
#: cartridges/preferences.py:407 cartridges/importer/importer.py:317
msgid "Warning"
msgstr "Warning"
#: cartridges/preferences.py:441
msgid "Invalid Directory"
msgstr "Invalid Directory"
#: cartridges/preferences.py:447
msgid "Set Location"
msgstr "Set Location"
#: cartridges/utils/create_dialog.py:33 cartridges/importer/importer.py:318
msgid "Dismiss"
msgstr "Dismiss"
#: cartridges/utils/relative_date.py:30
msgid "Today"
msgstr "Today"
#: cartridges/utils/relative_date.py:32
msgid "Yesterday"
msgstr "Yesterday"
#: cartridges/utils/relative_date.py:36
msgid "Last Week"
msgstr "Last Week"
#: cartridges/utils/relative_date.py:38
msgid "This Month"
msgstr "This Month"
#: cartridges/utils/relative_date.py:40
msgid "Last Month"
msgstr "Last Month"
#: cartridges/utils/relative_date.py:44
msgid "Last Year"
msgstr "Last Year"
#: cartridges/importer/importer.py:144
msgid "Importing Games…"
msgstr "Importing Games…"
#: cartridges/importer/importer.py:337
msgid "The following errors occured during import:"
msgstr "The following errors occured during import:"
#: cartridges/importer/importer.py:366
msgid "No new games found"
msgstr "No new games found"
#. The variable is the number of games.
#: cartridges/importer/importer.py:379
msgid "{} game imported"
msgid_plural "{} games imported"
msgstr[0] "{} game imported"
msgstr[1] "{} games imported"
#. The variable is the number of games. This text comes after "{0} games imported".
#: cartridges/importer/importer.py:383
msgid ", {} removed"
msgid_plural ", {} removed"
msgstr[0] "{} removed"
msgstr[1] "{} removed"
#. The variable is the name of the source
#: cartridges/importer/location.py:34
msgid "Select the {} cache directory."
msgstr "Select the {} cache directory."
#. The variable is the name of the source
#: cartridges/importer/location.py:36
msgid "Select the {} configuration directory."
msgstr "Select the {} configuration directory."
#. The variable is the name of the source
#: cartridges/importer/location.py:38
msgid "Select the {} data directory."
msgstr "Select the {} data directory."
#: cartridges/importer/retroarch_source.py:129
msgid "No RetroArch Core Selected"
msgstr "No RetroArch Core Selected"
#. The variable is a newline separated list of playlists
#: cartridges/importer/retroarch_source.py:131
msgid "The following playlists have no default core:"
msgstr "The following playlists have no default core:"
#: cartridges/importer/retroarch_source.py:133
msgid "Games with no core selected were not imported"
msgstr "Games with no core selected were not imported"
#: cartridges/store/managers/sgdb_manager.py:46
msgid "Couldn't Authenticate SteamGridDB"
msgstr "Couldn't Authenticate SteamGridDB"
#: cartridges/store/managers/sgdb_manager.py:47
msgid "Verify your API key in preferences"
msgstr "Verify your API key in preferences"
#, fuzzy
#~ msgid "1 game imported"
#~ msgid_plural "{} games imported"
#~ msgstr[0] "1 game imported"
#~ msgstr[1] "1 game imported"
#, fuzzy
#~ msgid "1 removed"
#~ msgid_plural "{} removed"
#~ msgstr[0] "1 removed"
#~ msgstr[1] "1 removed"
#~ msgid "Cache Location"
#~ msgstr "Cache Location"

701
po/es.po

File diff suppressed because it is too large Load Diff

670
po/eu.po
View File

@@ -1,670 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR kramo
# This file is distributed under the same license as the Cartridges package.
# Asier Saratsua Garmendia <asier.sarasua@gmail.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Cartridges\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-11-05 14:01+0100\n"
"PO-Revision-Date: 2025-12-22 20:00+0000\n"
"Last-Translator: Asier Saratsua Garmendia <asier.sarasua@gmail.com>\n"
"Language-Team: Basque <https://hosted.weblate.org/projects/cartridges/"
"cartridges/eu/>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.15.1\n"
#: data/page.kramo.Cartridges.desktop.in:3
#: data/page.kramo.Cartridges.metainfo.xml.in:9
#: data/page.kramo.Cartridges.metainfo.xml.in:40 data/gtk/window.blp:47
#: data/gtk/window.blp:83
msgid "Cartridges"
msgstr "Kartutxoak"
#: data/page.kramo.Cartridges.desktop.in:4
msgid "Game Launcher"
msgstr "Jokoen abiarazlea"
#: data/page.kramo.Cartridges.desktop.in:5
#: data/page.kramo.Cartridges.metainfo.xml.in:10
msgid "Launch all your games"
msgstr "Abiarazi zure jokoak"
#: data/page.kramo.Cartridges.desktop.in:11
msgid ""
"gaming;launcher;steam;lutris;heroic;bottles;itch;flatpak;legendary;retroarch;"
msgstr ""
"jokoak;abiarazlea;steam;lutris;heroic;bottles;itch;flatpak;legendary;retroarch;"
#: data/page.kramo.Cartridges.metainfo.xml.in:12
msgid ""
"Cartridges is a simple game launcher for all of your games. It has support "
"for importing games from Steam, Lutris, Heroic and more with no login "
"necessary. You can sort and hide games or download cover art from "
"SteamGridDB."
msgstr ""
"Kartutxoak aplikazioa jokoak abiarazteko aplikazio sinple bat da. Steam, "
"Lutris, Heroic eta beste hainbat tokitako jokoak inportatu ditzake saioa "
"hasi beharrik gabe. Jokoak ordenatu eta ezkutatu daitezke eta azalak "
"deskargatu daitezke SteamGridDB datu-basetik."
#: data/page.kramo.Cartridges.metainfo.xml.in:44 data/gtk/window.blp:320
#: cartridges/details_dialog.py:77
msgid "Game Details"
msgstr "Joko-xehetasunak"
#: data/page.kramo.Cartridges.metainfo.xml.in:48
msgid "Edit Game Details"
msgstr "Editatu joko-xehetasunak"
#: data/page.kramo.Cartridges.metainfo.xml.in:52 data/gtk/help-overlay.blp:19
#: data/gtk/window.blp:543 cartridges/details_dialog.py:279
#: cartridges/importer/importer.py:319 cartridges/importer/importer.py:369
msgid "Preferences"
msgstr "Hobespenak"
#: data/gtk/details-dialog.blp:15
msgid "Cancel"
msgstr "Utzi"
#: data/gtk/details-dialog.blp:45
msgid "New Cover"
msgstr "Azal berria"
#: data/gtk/details-dialog.blp:64
msgid "Delete Cover"
msgstr "Ezabatu azala"
#: data/gtk/details-dialog.blp:92 data/gtk/game.blp:80
msgid "Title"
msgstr "Titulua"
#: data/gtk/details-dialog.blp:96
msgid "Developer (optional)"
msgstr "Garatzailea (aukerakoa)"
#: data/gtk/details-dialog.blp:102
msgid "Executable"
msgstr "Exekutagarria"
#: data/gtk/details-dialog.blp:108
msgid "Select File"
msgstr "Hautatu fitxategia"
#: data/gtk/details-dialog.blp:119
msgid "More Info"
msgstr "Informazio gehiago"
#: data/gtk/game.blp:101 data/gtk/game.blp:109 data/gtk/window.blp:444
msgid "Edit"
msgstr "Editatu"
#: data/gtk/game.blp:102 cartridges/window.py:359
msgid "Hide"
msgstr "Ezkutatu"
#: data/gtk/game.blp:103 data/gtk/game.blp:111 data/gtk/window.blp:464
msgid "Remove"
msgstr "Kendu"
#: data/gtk/game.blp:110 cartridges/window.py:361
msgid "Unhide"
msgstr "Erakutsi"
#: data/gtk/help-overlay.blp:11 data/gtk/preferences.blp:9
msgid "General"
msgstr "Orokorra"
#: data/gtk/help-overlay.blp:14 data/gtk/window.blp:207 data/gtk/window.blp:223
#: data/gtk/window.blp:274 data/gtk/window.blp:290 data/gtk/window.blp:475
msgid "Search"
msgstr "Bilatu"
#: data/gtk/help-overlay.blp:24 data/gtk/window.blp:544
msgid "Keyboard Shortcuts"
msgstr "Laster-teklak"
#: data/gtk/help-overlay.blp:29 cartridges/game.py:103
#: cartridges/preferences.py:137 cartridges/importer/importer.py:386
msgid "Undo"
msgstr "Desegin"
#: data/gtk/help-overlay.blp:34
msgid "Quit"
msgstr "Irten"
#: data/gtk/help-overlay.blp:39 data/gtk/window.blp:92 data/gtk/window.blp:187
msgid "Toggle Sidebar"
msgstr "Txandakatu alboko barra"
#: data/gtk/help-overlay.blp:44 data/gtk/window.blp:200 data/gtk/window.blp:267
msgid "Main Menu"
msgstr "Menu nagusia"
#: data/gtk/help-overlay.blp:50
msgid "Games"
msgstr "Jokoak"
#: data/gtk/help-overlay.blp:53 data/gtk/window.blp:193 data/gtk/window.blp:551
msgid "Add Game"
msgstr "Gehitu jokoa"
#: data/gtk/help-overlay.blp:58 data/gtk/preferences.blp:58
#: data/gtk/window.blp:27 data/gtk/window.blp:555
msgid "Import"
msgstr "Inportatu"
#: data/gtk/help-overlay.blp:63
msgid "Show Hidden Games"
msgstr "Erakutsi ezkutuko jokoak"
#: data/gtk/help-overlay.blp:68
msgid "Remove Game"
msgstr "Kendu jokoa"
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:62
#: data/gtk/preferences.blp:365
msgid "Behavior"
msgstr "Portaera"
#: data/gtk/preferences.blp:16
msgid "Exit After Launching Games"
msgstr "Irten jokoak abiarazi ondoren"
#: data/gtk/preferences.blp:20
msgid "Cover Image Launches Game"
msgstr "Azaleko irudiak jokoa abiarazten du"
#: data/gtk/preferences.blp:21
msgid "Swaps the behavior of the cover image and the play button"
msgstr "Azaleko irudiaren eta jokatzeko botoiaren portaerak trukatzen ditu"
#: data/gtk/preferences.blp:26 cartridges/details_dialog.py:91
msgid "Images"
msgstr "Irudiak"
#: data/gtk/preferences.blp:29
msgid "High Quality Images"
msgstr "Kalitate altuko irudiak"
#: data/gtk/preferences.blp:30
msgid "Save game covers losslessly at the cost of storage"
msgstr "Gorde jokoen azalak galerarik gabe, biltegian toki gehiago betez"
#: data/gtk/preferences.blp:35
msgid "Danger Zone"
msgstr "Arrisku-gunea"
#: data/gtk/preferences.blp:39
msgid "Remove All Games"
msgstr "Kendu joko guztiak"
#: data/gtk/preferences.blp:65
msgid "Import Games Automatically"
msgstr "Inportatu jokoak automatikoki"
#: data/gtk/preferences.blp:69
msgid "Remove Uninstalled Games"
msgstr "Kendu desinstalatutako jokoak"
#: data/gtk/preferences.blp:74
msgid "Sources"
msgstr "Iturburuak"
#: data/gtk/preferences.blp:78 cartridges/importer/steam_source.py:114
msgid "Steam"
msgstr "Steam"
#: data/gtk/preferences.blp:87 data/gtk/preferences.blp:114
#: data/gtk/preferences.blp:149 data/gtk/preferences.blp:192
#: data/gtk/preferences.blp:219 data/gtk/preferences.blp:246
#: data/gtk/preferences.blp:273
msgid "Install Location"
msgstr "Instalazio-kokalekua"
#: data/gtk/preferences.blp:105 data/gtk/window.blp:565
#: cartridges/importer/lutris_source.py:107
msgid "Lutris"
msgstr "Lutris"
#: data/gtk/preferences.blp:131
msgid "Import Steam Games"
msgstr "Inportatu Steam jokoak"
#: data/gtk/preferences.blp:135
msgid "Import Flatpak Games"
msgstr "Inportatu Flatpak jokoak"
#: data/gtk/preferences.blp:140 cartridges/importer/heroic_source.py:355
msgid "Heroic"
msgstr "Heroic"
#: data/gtk/preferences.blp:166
msgid "Import Epic Games"
msgstr "Inportatu Epic jokoak"
#: data/gtk/preferences.blp:170
msgid "Import GOG Games"
msgstr "Inportatu GOG jokoak"
#: data/gtk/preferences.blp:174
msgid "Import Amazon Games"
msgstr "Inportatu Amazon jokoak"
#: data/gtk/preferences.blp:178
msgid "Import Sideloaded Games"
msgstr "Inportatu albotik kargatutako jokoak"
#: data/gtk/preferences.blp:183 cartridges/importer/bottles_source.py:86
msgid "Bottles"
msgstr "Bottles"
#: data/gtk/preferences.blp:210 cartridges/importer/itch_source.py:81
msgid "itch"
msgstr "itch"
#: data/gtk/preferences.blp:237 cartridges/importer/legendary_source.py:97
msgid "Legendary"
msgstr "Legendary"
#: data/gtk/preferences.blp:264 cartridges/importer/retroarch_source.py:142
msgid "RetroArch"
msgstr "RetroArch"
#: data/gtk/preferences.blp:291 cartridges/importer/flatpak_source.py:143
msgid "Flatpak"
msgstr "Flatpak"
#. The location of the system-wide data directory
#: data/gtk/preferences.blp:301
msgid "System Location"
msgstr "Sistema osorako datu-direktorioaren kokalekua"
#. The location of the user-specific data directory
#: data/gtk/preferences.blp:319
msgid "User Location"
msgstr "Erabiltzaile jakin baterako datu-direktorioaren kokalekua"
#: data/gtk/preferences.blp:336
msgid "Import Game Launchers"
msgstr "Inportatu joko-abiarazleak"
#: data/gtk/preferences.blp:341 cartridges/importer/desktop_source.py:215
msgid "Desktop Entries"
msgstr "Mahaigaineko sarrerak"
#: data/gtk/preferences.blp:353 data/gtk/window.blp:563
msgid "SteamGridDB"
msgstr "SteamGridDB"
#: data/gtk/preferences.blp:357
msgid "Authentication"
msgstr "Autentifikazioa"
#: data/gtk/preferences.blp:360
msgid "API Key"
msgstr "API gakoa"
#: data/gtk/preferences.blp:368
msgid "Use SteamGridDB"
msgstr "Erabili SteamGridDB"
#: data/gtk/preferences.blp:369
msgid "Download images when adding or importing games"
msgstr "Deskargatu irudiak jokoak gehitzean edo inportatzean"
#: data/gtk/preferences.blp:373
msgid "Prefer Over Official Images"
msgstr "Hobetsi irudi ofizialen gainetik"
#: data/gtk/preferences.blp:377
msgid "Prefer Animated Images"
msgstr "Hobetsi irudi animatuak"
#: data/gtk/preferences.blp:383
msgid "Update Covers"
msgstr "Eguneratu azalak"
#: data/gtk/preferences.blp:384
msgid "Fetch covers for games already in your library"
msgstr "Atzitu dagoeneko zure liburutegian dauden jokoen azalak"
#: data/gtk/preferences.blp:389
msgid "Update"
msgstr "Eguneratu"
#: data/gtk/window.blp:6 data/gtk/window.blp:14
msgid "No Games Found"
msgstr "Ez da jokorik aurkitu"
#: data/gtk/window.blp:7 data/gtk/window.blp:15
msgid "Try a different search"
msgstr "Saiatu bestelako bilaketa batekin"
#: data/gtk/window.blp:21
msgid "No Games"
msgstr "Jokorik ez"
#: data/gtk/window.blp:22
msgid "Use the + button to add games"
msgstr "Erabili + botoia jokoak gehitzeko"
#: data/gtk/window.blp:40
msgid "No Hidden Games"
msgstr "Ez dago ezkutuko jokorik"
#: data/gtk/window.blp:41
msgid "Games you hide will appear here"
msgstr "Ezkutatu dituzun jokoak hemen agertuko dira"
#: data/gtk/window.blp:76 data/gtk/window.blp:113 cartridges/main.py:249
msgid "All Games"
msgstr "Joko guztiak"
#: data/gtk/window.blp:140 cartridges/main.py:251
msgid "Added"
msgstr "Gehituta"
#: data/gtk/window.blp:162
msgid "Imported"
msgstr "Inportatuta"
#: data/gtk/window.blp:260
msgid "Hidden Games"
msgstr "Ezkutuko jokoak"
#: data/gtk/window.blp:368
msgid "Game Title"
msgstr "Jokoaren titulua"
#: data/gtk/window.blp:425
msgid "Play"
msgstr "Jokatu"
#: data/gtk/window.blp:502
msgid "Sort"
msgstr "Ordenatu"
#: data/gtk/window.blp:505
msgid "A-Z"
msgstr "A-Z"
#: data/gtk/window.blp:511
msgid "Z-A"
msgstr "Z-A"
#: data/gtk/window.blp:517
msgid "Newest"
msgstr "Berriena"
#: data/gtk/window.blp:523
msgid "Oldest"
msgstr "Zaharrena"
#: data/gtk/window.blp:529
msgid "Last Played"
msgstr "Jokatutako azkena"
#: data/gtk/window.blp:536
msgid "Show Hidden"
msgstr "Erakutsi ezkutukoa"
#: data/gtk/window.blp:545
msgid "About Cartridges"
msgstr "Kartutxoak aplikazioari buruz"
#: data/gtk/window.blp:562
msgid "IGDB"
msgstr "IGDB"
#: data/gtk/window.blp:564
msgid "ProtonDB"
msgstr "ProtonDB"
#: data/gtk/window.blp:566
msgid "HowLongToBeat"
msgstr "ZenbatDenboraIrabazteko"
#. The variable is the title of the game
#: cartridges/main.py:226 cartridges/game.py:125
msgid "{} launched"
msgstr "{} abiarazi da"
#. Translators: Replace this with Your Name, Your Name <your.email@example.com>, or Your Name https://your-site.com for it to show up in the About dialog.
#: cartridges/main.py:291
msgid "translator-credits"
msgstr "Asier Saratsua"
#. The variable is the date when the game was added
#: cartridges/window.py:382
msgid "Added: {}"
msgstr "Gehituta: {}"
#: cartridges/window.py:385
msgid "Never"
msgstr "Inoiz ez"
#. The variable is the date when the game was last played
#: cartridges/window.py:389
msgid "Last played: {}"
msgstr "Jokatutako azkena: {}"
#: cartridges/details_dialog.py:82
msgid "Apply"
msgstr "Aplikatu"
#: cartridges/details_dialog.py:88
msgid "Add New Game"
msgstr "Gehitu joko berria"
#: cartridges/details_dialog.py:89
msgid "Add"
msgstr "Gehitu"
#: cartridges/details_dialog.py:102
msgid "Executables"
msgstr "Exekutagarriak"
#. Translate this string as you would translate "file"
#: cartridges/details_dialog.py:117
msgid "file.txt"
msgstr "fitxategia.txt"
#. As in software
#: cartridges/details_dialog.py:119
msgid "program"
msgstr "programa"
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:124 cartridges/details_dialog.py:126
msgid "C:\\path\\to\\{}"
msgstr "C:\\bidea\\{}"
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:130 cartridges/details_dialog.py:132
msgid "/path/to/{}"
msgstr "/bidea/{}"
#: cartridges/details_dialog.py:137
msgid ""
"To launch the executable \"{}\", use the command:\n"
"\n"
"<tt>\"{}\"</tt>\n"
"\n"
"To open the file \"{}\" with the default application, use:\n"
"\n"
"<tt>{} \"{}\"</tt>\n"
"\n"
"If the path contains spaces, make sure to wrap it in double quotes!"
msgstr ""
"\"{}\" exekutagarria abiarazteko, erabili honako komandoa:\n"
"\n"
"<tt>\"{}\"</tt>\n"
"\n"
"\"{}\" fitxategia aplikazio lehenetsiarekin irekitzeko, erabili:\n"
"\n"
"<tt>{} \"{}\"</tt>\n"
"\n"
"Bide-izenak zuriuneak baditu, ziurtatu komatxo bikoitzez inguratzen duzula."
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:185
msgid "Couldn't Add Game"
msgstr "Ezin da jokoa gehitu"
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:221
msgid "Game title cannot be empty."
msgstr "Jokoaren tituluak ezin du hutsik egon."
#: cartridges/details_dialog.py:185 cartridges/details_dialog.py:229
msgid "Executable cannot be empty."
msgstr "Exekutagarriak ezin du hutsik egon."
#: cartridges/details_dialog.py:220 cartridges/details_dialog.py:228
msgid "Couldn't Apply Preferences"
msgstr "Ezin dira hobespenak aplikatu"
#. The variable is the title of the game
#: cartridges/game.py:139
msgid "{} hidden"
msgstr "{} ezkutuan"
#: cartridges/game.py:139
msgid "{} unhidden"
msgstr "{} agerian"
#. The variable is the title of the game
#: cartridges/game.py:153
msgid "{} removed"
msgstr "{} kenduta"
#: cartridges/preferences.py:136
msgid "All games removed"
msgstr "Joko guztiak kendu dira"
#: cartridges/preferences.py:188
msgid ""
"An API key is required to use SteamGridDB. You can generate one {}here{}."
msgstr ""
"API gako bat behar da SteamGridDB erabiltzeko. {}Hemen{} sortu dezakezu bat."
#: cartridges/preferences.py:203
msgid "Downloading covers…"
msgstr "Azalak deskargatzen…"
#: cartridges/preferences.py:222
msgid "Covers updated"
msgstr "Azalak eguneratu dira"
#: cartridges/preferences.py:370
msgid "Installation Not Found"
msgstr "Instalazioa ez da aurkitu"
#: cartridges/preferences.py:371
msgid "Select a valid directory"
msgstr "Hautatu baliozko direktorio bat"
#: cartridges/preferences.py:407 cartridges/importer/importer.py:317
msgid "Warning"
msgstr "Abisua"
#: cartridges/preferences.py:441
msgid "Invalid Directory"
msgstr "Baliogabeko direktorioa"
#: cartridges/preferences.py:447
msgid "Set Location"
msgstr "Ezarri kokalekua"
#: cartridges/utils/create_dialog.py:33 cartridges/importer/importer.py:318
msgid "Dismiss"
msgstr "Baztertu"
#: cartridges/utils/relative_date.py:30
msgid "Today"
msgstr "Gaur"
#: cartridges/utils/relative_date.py:32
msgid "Yesterday"
msgstr "Atzo"
#: cartridges/utils/relative_date.py:36
msgid "Last Week"
msgstr "Pasa den astean"
#: cartridges/utils/relative_date.py:38
msgid "This Month"
msgstr "Hilabete honetan"
#: cartridges/utils/relative_date.py:40
msgid "Last Month"
msgstr "Pasa den hilabetean"
#: cartridges/utils/relative_date.py:44
msgid "Last Year"
msgstr "Pasa den urtean"
#: cartridges/importer/importer.py:144
msgid "Importing Games…"
msgstr "Jokoak inportatzen…"
#: cartridges/importer/importer.py:337
msgid "The following errors occured during import:"
msgstr "Inportazioan honako erroreak gertatu dira:"
#: cartridges/importer/importer.py:366
msgid "No new games found"
msgstr "Ez da joko berririk aurkitu"
#. The variable is the number of games.
#: cartridges/importer/importer.py:379
msgid "{} game imported"
msgid_plural "{} games imported"
msgstr[0] "Joko {} inportatu da"
msgstr[1] "{} joko inportatu dira"
#. The variable is the number of games. This text comes after "{0} games imported".
#: cartridges/importer/importer.py:383
msgid ", {} removed"
msgid_plural ", {} removed"
msgstr[0] ", {} kendu da"
msgstr[1] ", {} kendu dira"
#. The variable is the name of the source
#: cartridges/importer/location.py:34
msgid "Select the {} cache directory."
msgstr "Hautatu {} cache-direktorioa."
#. The variable is the name of the source
#: cartridges/importer/location.py:36
msgid "Select the {} configuration directory."
msgstr "Hautatu {} konfigurazio-direktorioa."
#. The variable is the name of the source
#: cartridges/importer/location.py:38
msgid "Select the {} data directory."
msgstr "Hautatu {} datu-direktorioa."
#: cartridges/importer/retroarch_source.py:129
msgid "No RetroArch Core Selected"
msgstr "Ez da RetroArch nukleorik hautatu"
#. The variable is a newline separated list of playlists
#: cartridges/importer/retroarch_source.py:131
msgid "The following playlists have no default core:"
msgstr "Honako joko-zerrendak ez du nukleo lehenetsirik:"
#: cartridges/importer/retroarch_source.py:133
msgid "Games with no core selected were not imported"
msgstr "Nukleorik ez duten jokoak ez dira inportatu"
#: cartridges/store/managers/sgdb_manager.py:46
msgid "Couldn't Authenticate SteamGridDB"
msgstr "Ezin da SteamGridDBan autentifikatu"
#: cartridges/store/managers/sgdb_manager.py:47
msgid "Verify your API key in preferences"
msgstr "Egiaztatu hobespenetako zure API gakoa zuzena dela"

735
po/fa.po
View File

@@ -2,15 +2,13 @@
# Copyright (C) YEAR kramo
# This file is distributed under the same license as the Cartridges package.
# سید حسین موسوی فرد <shmf1385@protonmail.com>, 2023.
# Danial Behzadi <dani.behzi@ubuntu.com>, 2023, 2024.
# آوید <avds+git@disroot.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: Cartridges\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-11-05 14:01+0100\n"
"PO-Revision-Date: 2024-11-06 19:00+0000\n"
"Last-Translator: Danial Behzadi <dani.behzi@ubuntu.com>\n"
"POT-Creation-Date: 2023-06-26 12:01+0200\n"
"PO-Revision-Date: 2023-04-22 10:48+0000\n"
"Last-Translator: سید حسین موسوی فرد <shmf1385@protonmail.com>\n"
"Language-Team: Persian <https://hosted.weblate.org/projects/cartridges/"
"cartridges/fa/>\n"
"Language: fa\n"
@@ -18,480 +16,420 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 5.8.2\n"
"X-Generator: Weblate 4.18-dev\n"
#: data/page.kramo.Cartridges.desktop.in:3
#: data/page.kramo.Cartridges.metainfo.xml.in:9
#: data/page.kramo.Cartridges.metainfo.xml.in:40 data/gtk/window.blp:47
#: data/gtk/window.blp:83
#: data/hu.kramo.Cartridges.desktop.in:3
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:47
#: src/main.py:146
msgid "Cartridges"
msgstr "کارتریج‌ها"
#: data/page.kramo.Cartridges.desktop.in:4
#: data/hu.kramo.Cartridges.desktop.in:4
msgid "Game Launcher"
msgstr "اجراگر بازی"
#: data/page.kramo.Cartridges.desktop.in:5
#: data/page.kramo.Cartridges.metainfo.xml.in:10
#: data/hu.kramo.Cartridges.desktop.in:5
#: data/hu.kramo.Cartridges.metainfo.xml.in:7
msgid "Launch all your games"
msgstr "اجرای همهٔ بازی‌هایتان"
msgstr "اجرای همهٔ بازی‌های شما"
#: data/page.kramo.Cartridges.desktop.in:11
msgid ""
"gaming;launcher;steam;lutris;heroic;bottles;itch;flatpak;legendary;retroarch;"
#: data/hu.kramo.Cartridges.desktop.in:11
msgid "gaming;launcher;steam;lutris;heroic;bottles;itch;"
msgstr ""
"gaming;launcher;steam;lutris;heroic;bottles;itch;flatpak;legendary;retroarch;"
"بازی;استیم;لوتریس;هروییک;بطری‌ها;باتلز;ایچ;فلت‌پک;لجندری;رتروآرچ;"
#: data/page.kramo.Cartridges.metainfo.xml.in:12
#: data/hu.kramo.Cartridges.metainfo.xml.in:9
msgid ""
"Cartridges is a simple game launcher for all of your games. It has support "
"for importing games from Steam, Lutris, Heroic and more with no login "
"necessary. You can sort and hide games or download cover art from "
"SteamGridDB."
msgstr ""
"کارتریج یک اجراگر سادهٔ بازی برای همهٔ بازی‌هایتان است. کارتریج می‌تواند بدون "
"نیاز به ورود، بازی‌هایتان را از استیم، لوتریس، هروییک و وارد کند. می‌توانید "
"بازی‌هایتان را نهفته یا طرح جلدشان را از SteamGridDB بگیرید."
"کارتریج یک اجراگر سادهٔ بازی برای همهٔ بازی‌های شماست. کارتریج می‌تواند بدون "
"نیاز به ورود، بازی‌های شما را از استیم، لوتریس، هیروییک و... وارد کند. شما "
"می‌توانید بازی‌های خود را پنهان کنید یا جلدشان را از SteamGridDB بارگیری کنید."
#: data/page.kramo.Cartridges.metainfo.xml.in:44 data/gtk/window.blp:320
#: cartridges/details_dialog.py:77
msgid "Game Details"
msgstr "جزییات بازی"
#: data/hu.kramo.Cartridges.metainfo.xml.in:30
msgid "Library"
msgstr "کتاب‌خانه"
#: data/page.kramo.Cartridges.metainfo.xml.in:48
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 src/details_window.py:67
msgid "Edit Game Details"
msgstr "ویرایش جزییات بازی"
#: data/page.kramo.Cartridges.metainfo.xml.in:52 data/gtk/help-overlay.blp:19
#: data/gtk/window.blp:543 cartridges/details_dialog.py:279
#: cartridges/importer/importer.py:319 cartridges/importer/importer.py:369
#: data/hu.kramo.Cartridges.metainfo.xml.in:38 data/gtk/window.blp:71
msgid "Game Details"
msgstr "جزییات بازی"
#: data/hu.kramo.Cartridges.metainfo.xml.in:42 data/gtk/window.blp:416
#: src/details_window.py:239
msgid "Preferences"
msgstr "ترجیحات"
#: data/gtk/details-dialog.blp:15
#: data/gtk/details-window.blp:25
msgid "Cancel"
msgstr "لغو"
msgstr ""
#: data/gtk/details-dialog.blp:45
#: data/gtk/details-window.blp:57
msgid "New Cover"
msgstr "طرح جلد جدید"
msgstr ""
#: data/gtk/details-dialog.blp:64
#: data/gtk/details-window.blp:75
msgid "Delete Cover"
msgstr "حذف طرح جلد"
msgstr ""
#: data/gtk/details-dialog.blp:92 data/gtk/game.blp:80
#: data/gtk/details-window.blp:101 data/gtk/details-window.blp:106
#: data/gtk/game.blp:80
msgid "Title"
msgstr "عنوان"
#: data/gtk/details-dialog.blp:96
msgid "Developer (optional)"
msgstr "توسعه‌دهنده (اختیاری)"
#: data/gtk/details-window.blp:102
msgid "The title of the game"
msgstr ""
#: data/gtk/details-dialog.blp:102
#: data/gtk/details-window.blp:112 data/gtk/details-window.blp:117
msgid "Developer"
msgstr ""
#: data/gtk/details-window.blp:113
msgid "The developer or publisher (optional)"
msgstr ""
#: data/gtk/details-window.blp:123 data/gtk/details-window.blp:155
msgid "Executable"
msgstr "اجرایی"
msgstr ""
#: data/gtk/details-dialog.blp:108
msgid "Select File"
msgstr "گزینش پرونده"
#: data/gtk/details-window.blp:124
msgid "File to open or command to run when launching the game"
msgstr ""
#: data/gtk/details-dialog.blp:119
#: data/gtk/details-window.blp:130
msgid "More Info"
msgstr "اطلاعات بیشتر"
msgstr ""
#: data/gtk/game.blp:101 data/gtk/game.blp:109 data/gtk/window.blp:444
#: data/gtk/game.blp:102 data/gtk/game.blp:121 data/gtk/window.blp:195
msgid "Edit"
msgstr "ویرایش"
#: data/gtk/game.blp:102 cartridges/window.py:359
#: data/gtk/game.blp:107 src/window.py:169
msgid "Hide"
msgstr "نهفتن"
msgstr "پنهان کردن"
#: data/gtk/game.blp:103 data/gtk/game.blp:111 data/gtk/window.blp:464
#: data/gtk/game.blp:112 data/gtk/game.blp:131 data/gtk/preferences.blp:56
#: data/gtk/window.blp:209
msgid "Remove"
msgstr "برداشتن"
msgstr "حذف"
#: data/gtk/game.blp:110 cartridges/window.py:361
#: data/gtk/game.blp:126 src/window.py:171
msgid "Unhide"
msgstr "نانهفتن"
msgstr "پیدا کردن"
#: data/gtk/help-overlay.blp:11 data/gtk/preferences.blp:9
msgid "General"
msgstr "عمومی"
#: data/gtk/help-overlay.blp:14 data/gtk/window.blp:207 data/gtk/window.blp:223
#: data/gtk/window.blp:274 data/gtk/window.blp:290 data/gtk/window.blp:475
msgid "Search"
msgstr "جست‌وجو"
#: data/gtk/help-overlay.blp:24 data/gtk/window.blp:544
msgid "Keyboard Shortcuts"
msgstr "میان‌برهای صفحه‌کلید"
#: data/gtk/help-overlay.blp:29 cartridges/game.py:103
#: cartridges/preferences.py:137 cartridges/importer/importer.py:386
msgid "Undo"
msgstr "برگردان"
#: data/gtk/help-overlay.blp:34
#: data/gtk/help-overlay.blp:14
msgid "Quit"
msgstr "خروج"
#: data/gtk/help-overlay.blp:39 data/gtk/window.blp:92 data/gtk/window.blp:187
msgid "Toggle Sidebar"
msgstr "تغییر وضعیت نوار کناری"
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:217 data/gtk/window.blp:257
#: data/gtk/window.blp:323
msgid "Search"
msgstr "جست‌وجو"
#: data/gtk/help-overlay.blp:44 data/gtk/window.blp:200 data/gtk/window.blp:267
msgid "Main Menu"
msgstr "فهرست اصلی"
#: data/gtk/help-overlay.blp:24
msgid "Show preferences"
msgstr "نمایش ترجیحات"
#: data/gtk/help-overlay.blp:50
#: data/gtk/help-overlay.blp:29
msgid "Shortcuts"
msgstr "میانبرها"
#: data/gtk/help-overlay.blp:34 src/game.py:105 src/preferences.py:103
msgid "Undo"
msgstr "برگردان"
#: data/gtk/help-overlay.blp:39
msgid "Open menu"
msgstr "گشودن فهرست"
#: data/gtk/help-overlay.blp:45
msgid "Games"
msgstr "بازی‌ها"
#: data/gtk/help-overlay.blp:53 data/gtk/window.blp:193 data/gtk/window.blp:551
msgid "Add Game"
msgstr "افزودن بازی"
#: data/gtk/help-overlay.blp:48
msgid "Add new game"
msgstr "افزدون بازی"
#: data/gtk/help-overlay.blp:58 data/gtk/preferences.blp:58
#: data/gtk/window.blp:27 data/gtk/window.blp:555
msgid "Import"
msgstr "درون‌ریزی"
#: data/gtk/help-overlay.blp:53
msgid "Import games"
msgstr "درون‌ریزی بازی"
#: data/gtk/help-overlay.blp:58
msgid "Show hidden games"
msgstr "نمایش بازی‌های پنهان"
#: data/gtk/help-overlay.blp:63
msgid "Show Hidden Games"
msgstr "نمایش بازی‌های نهفته"
msgid "Remove game"
msgstr "حذف کردن بازی"
#: data/gtk/help-overlay.blp:68
msgid "Remove Game"
msgstr "برداشتن بازی"
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:62
#: data/gtk/preferences.blp:365
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:236
msgid "Behavior"
msgstr "رفتار"
msgstr ""
#: data/gtk/preferences.blp:16
msgid "Exit After Launching Games"
msgstr "خروج پس از اجرا کردن بازی"
#: data/gtk/preferences.blp:20
#: data/gtk/preferences.blp:25
msgid "Cover Image Launches Game"
msgstr "طرح جلد بازی را اجرا می‌کند"
msgstr "عکس جلد بازی را باز می‌کند"
#: data/gtk/preferences.blp:21
#: data/gtk/preferences.blp:26
msgid "Swaps the behavior of the cover image and the play button"
msgstr "تغییر رفتار تصویر جلد و دکمهٔ بازی کردن"
msgstr ""
#: data/gtk/preferences.blp:26 cartridges/details_dialog.py:91
#: data/gtk/preferences.blp:36 src/details_window.py:81
msgid "Images"
msgstr "عکس‌ها"
#: data/gtk/preferences.blp:29
#: data/gtk/preferences.blp:39
msgid "High Quality Images"
msgstr "عکس‌های با کیفیت بالا"
#: data/gtk/preferences.blp:30
#: data/gtk/preferences.blp:40
msgid "Save game covers losslessly at the cost of storage"
msgstr "ذخیرهٔ طرح جلدهای بدون اتلاف به قیمت ذخیره‌سازی"
msgstr ""
#: data/gtk/preferences.blp:35
#: data/gtk/preferences.blp:50
msgid "Danger Zone"
msgstr "منطقهٔ خطر"
#: data/gtk/preferences.blp:39
#: data/gtk/preferences.blp:53
msgid "Remove All Games"
msgstr "حذف کردن همهٔ بازی‌ها"
#: data/gtk/preferences.blp:65
msgid "Import Games Automatically"
msgstr "درون‌ریزی خودکار بازی‌ها"
#: data/gtk/preferences.blp:85 data/gtk/window.blp:27 data/gtk/window.blp:442
msgid "Import"
msgstr "درون‌ریزی"
#: data/gtk/preferences.blp:69
msgid "Remove Uninstalled Games"
msgstr "برداشتن بازی‌های نصب‌نشده"
#: data/gtk/preferences.blp:74
#: data/gtk/preferences.blp:89
msgid "Sources"
msgstr "منبع‌ها"
#: data/gtk/preferences.blp:78 cartridges/importer/steam_source.py:114
#: data/gtk/preferences.blp:92
msgid "Steam"
msgstr "استیم"
#: data/gtk/preferences.blp:87 data/gtk/preferences.blp:114
#: data/gtk/preferences.blp:149 data/gtk/preferences.blp:192
#: data/gtk/preferences.blp:219 data/gtk/preferences.blp:246
#: data/gtk/preferences.blp:273
#: data/gtk/preferences.blp:96 data/gtk/preferences.blp:110
#: data/gtk/preferences.blp:142 data/gtk/preferences.blp:183
#: data/gtk/preferences.blp:197 data/gtk/preferences.blp:211
msgid "Install Location"
msgstr "مکان نصب"
msgstr ""
#: data/gtk/preferences.blp:105 data/gtk/window.blp:565
#: cartridges/importer/lutris_source.py:107
#: data/gtk/preferences.blp:106
msgid "Lutris"
msgstr "لوتریس"
msgstr ""
#: data/gtk/preferences.blp:131
#: data/gtk/preferences.blp:119
msgid "Cache Location"
msgstr ""
#: data/gtk/preferences.blp:128
msgid "Import Steam Games"
msgstr "درون‌ریزی بازی‌های استیم"
msgstr ""
#: data/gtk/preferences.blp:135
msgid "Import Flatpak Games"
msgstr "درون‌ریزی بازی‌های فلت‌پک"
#: data/gtk/preferences.blp:140 cartridges/importer/heroic_source.py:355
#: data/gtk/preferences.blp:138
msgid "Heroic"
msgstr "هروییک"
msgstr ""
#: data/gtk/preferences.blp:166
#: data/gtk/preferences.blp:151
msgid "Import Epic Games"
msgstr "درون‌ریزی بازی‌های اپیک"
msgstr ""
#: data/gtk/preferences.blp:170
#: data/gtk/preferences.blp:160
msgid "Import GOG Games"
msgstr "درون‌ریزی بازی‌های گوگ"
msgstr ""
#: data/gtk/preferences.blp:174
msgid "Import Amazon Games"
msgstr "درون‌ریزی بازی‌های آمازون"
#: data/gtk/preferences.blp:178
#: data/gtk/preferences.blp:169
msgid "Import Sideloaded Games"
msgstr "درون‌ریزی بازی‌های نصب‌شده"
msgstr ""
#: data/gtk/preferences.blp:183 cartridges/importer/bottles_source.py:86
#: data/gtk/preferences.blp:179
msgid "Bottles"
msgstr "بطری‌ها"
msgstr ""
#: data/gtk/preferences.blp:210 cartridges/importer/itch_source.py:81
#: data/gtk/preferences.blp:193
msgid "itch"
msgstr "ایچ"
msgstr ""
#: data/gtk/preferences.blp:237 cartridges/importer/legendary_source.py:97
#: data/gtk/preferences.blp:207
msgid "Legendary"
msgstr "لجندری"
msgstr ""
#: data/gtk/preferences.blp:264 cartridges/importer/retroarch_source.py:142
msgid "RetroArch"
msgstr "رتروآرچ"
#: data/gtk/preferences.blp:291 cartridges/importer/flatpak_source.py:143
msgid "Flatpak"
msgstr "فلت‌پک"
#. The location of the system-wide data directory
#: data/gtk/preferences.blp:301
msgid "System Location"
msgstr "مکان سامانه"
#. The location of the user-specific data directory
#: data/gtk/preferences.blp:319
msgid "User Location"
msgstr "مکان کاربر"
#: data/gtk/preferences.blp:336
msgid "Import Game Launchers"
msgstr "درون‌ریزی اجراگرهای بازی"
#: data/gtk/preferences.blp:341 cartridges/importer/desktop_source.py:215
msgid "Desktop Entries"
msgstr "ورودی‌های میزکار"
#: data/gtk/preferences.blp:353 data/gtk/window.blp:563
#: data/gtk/preferences.blp:224
msgid "SteamGridDB"
msgstr "SteamGridDB"
msgstr ""
#: data/gtk/preferences.blp:357
#: data/gtk/preferences.blp:228
msgid "Authentication"
msgstr "هویت‌سنجی"
msgstr ""
#: data/gtk/preferences.blp:360
#: data/gtk/preferences.blp:231
msgid "API Key"
msgstr "کلید API"
msgstr ""
#: data/gtk/preferences.blp:368
#: data/gtk/preferences.blp:239
msgid "Use SteamGridDB"
msgstr "استفاده از SteamGridDB"
msgstr ""
#: data/gtk/preferences.blp:369
#: data/gtk/preferences.blp:240
msgid "Download images when adding or importing games"
msgstr "بارگیری تصویرها هنگام افزودن یا درون‌ریزی بازی‌ها"
msgstr ""
#: data/gtk/preferences.blp:373
#: data/gtk/preferences.blp:249
msgid "Prefer Over Official Images"
msgstr "ترجیح به تصویرهای رسمی"
msgstr ""
#: data/gtk/preferences.blp:377
#: data/gtk/preferences.blp:258
msgid "Prefer Animated Images"
msgstr "ترجیح تصویرهای پویا"
#: data/gtk/preferences.blp:383
msgid "Update Covers"
msgstr "به‌روزرسانی طرح جلد"
#: data/gtk/preferences.blp:384
msgid "Fetch covers for games already in your library"
msgstr "دریافت طرح جلد بازی‌های کنونی کتاب‌خانه‌تان"
#: data/gtk/preferences.blp:389
msgid "Update"
msgstr "به‌روزرسانی"
msgstr ""
#: data/gtk/window.blp:6 data/gtk/window.blp:14
msgid "No Games Found"
msgstr "هیچ بازی‌ای پیدا نشد"
msgstr ""
#: data/gtk/window.blp:7 data/gtk/window.blp:15
msgid "Try a different search"
msgstr "آزمودن جست‌وجویی دیگر"
msgid "Try a different search."
msgstr ""
#: data/gtk/window.blp:21
msgid "No Games"
msgstr "بدون بازی"
msgstr ""
#: data/gtk/window.blp:22
msgid "Use the + button to add games"
msgstr "استفاده از دکمهٔ + برای افزودن بازی‌ها"
msgid "Use the + button to add games."
msgstr ""
#: data/gtk/window.blp:40
msgid "No Hidden Games"
msgstr "بدون بازی نهفته"
msgstr ""
#: data/gtk/window.blp:41
msgid "Games you hide will appear here"
msgstr "بازی‌هایی که پنهان می‌کنید، این‌جا نمایان خواهند شد"
msgid "Games you hide will appear here."
msgstr ""
#: data/gtk/window.blp:76 data/gtk/window.blp:113 cartridges/main.py:249
msgid "All Games"
msgstr "همهٔ بازی‌ها"
#: data/gtk/window.blp:64 data/gtk/window.blp:304
msgid "Back"
msgstr ""
#: data/gtk/window.blp:140 cartridges/main.py:251
msgid "Added"
msgstr "افزوده"
#: data/gtk/window.blp:162
msgid "Imported"
msgstr "درون‌ریخته"
#: data/gtk/window.blp:260
msgid "Hidden Games"
msgstr "بازی‌های نهفته"
#: data/gtk/window.blp:368
#: data/gtk/window.blp:121
msgid "Game Title"
msgstr "عنوان بازی"
msgstr ""
#: data/gtk/window.blp:425
#: data/gtk/window.blp:176
msgid "Play"
msgstr "بازی کردن"
msgstr ""
#: data/gtk/window.blp:502
#: data/gtk/window.blp:243 data/gtk/window.blp:435
msgid "Add Game"
msgstr ""
#: data/gtk/window.blp:250 data/gtk/window.blp:316
msgid "Main Menu"
msgstr ""
#: data/gtk/window.blp:311
msgid "Hidden Games"
msgstr ""
#: data/gtk/window.blp:374
msgid "Sort"
msgstr "ترتیب"
msgstr ""
#: data/gtk/window.blp:505
#: data/gtk/window.blp:377
msgid "A-Z"
msgstr "آ-ی"
msgstr ""
#: data/gtk/window.blp:511
#: data/gtk/window.blp:383
msgid "Z-A"
msgstr "ی-آ"
msgstr ""
#: data/gtk/window.blp:517
#: data/gtk/window.blp:389
msgid "Newest"
msgstr "جدیدترین"
msgstr ""
#: data/gtk/window.blp:523
#: data/gtk/window.blp:395
msgid "Oldest"
msgstr "قدیمی‌ترین"
msgstr ""
#: data/gtk/window.blp:529
#: data/gtk/window.blp:401
msgid "Last Played"
msgstr "آخرین بازی‌شده"
msgstr ""
#: data/gtk/window.blp:536
#: data/gtk/window.blp:408
msgid "Show Hidden"
msgstr "نمایش نهفته"
msgstr ""
#: data/gtk/window.blp:545
#: data/gtk/window.blp:421
msgid "Keyboard Shortcuts"
msgstr ""
#: data/gtk/window.blp:426
msgid "About Cartridges"
msgstr "دربارهٔ کارتریج‌ها"
msgstr ""
#: data/gtk/window.blp:562
msgid "IGDB"
msgstr "IGDB"
#: data/gtk/window.blp:564
msgid "ProtonDB"
msgstr "ProtonDB"
#: data/gtk/window.blp:566
msgid "HowLongToBeat"
msgstr "HowLongToBeat"
#. The variable is the title of the game
#: cartridges/main.py:226 cartridges/game.py:125
msgid "{} launched"
msgstr "{} اجرا شد"
#. Translators: Replace this with Your Name, Your Name <your.email@example.com>, or Your Name https://your-site.com for it to show up in the About dialog.
#: cartridges/main.py:291
msgid "translator-credits"
msgstr "دانیال بهزادی <dani.behzi@ubuntu.com>"
#. Translators: Replace this with your name for it to show up in the about window
#: src/main.py:164
msgid "translator_credits"
msgstr ""
#. The variable is the date when the game was added
#: cartridges/window.py:382
#: src/window.py:192
msgid "Added: {}"
msgstr "افزوده: {}"
msgstr ""
#: cartridges/window.py:385
#: src/window.py:195
msgid "Never"
msgstr "هرگز"
msgstr ""
#. The variable is the date when the game was last played
#: cartridges/window.py:389
#: src/window.py:199
msgid "Last played: {}"
msgstr "آخرین بازی‌شده: {}"
msgstr ""
#: cartridges/details_dialog.py:82
#: src/details_window.py:72
msgid "Apply"
msgstr "اعمال"
msgstr ""
#: cartridges/details_dialog.py:88
#: src/details_window.py:78
msgid "Add New Game"
msgstr "افزودن بازی جدید"
msgstr ""
#: cartridges/details_dialog.py:89
msgid "Add"
msgstr "افزودن"
#: cartridges/details_dialog.py:102
msgid "Executables"
msgstr "اجرایی‌ها"
#: src/details_window.py:79
msgid "Confirm"
msgstr ""
#. Translate this string as you would translate "file"
#: cartridges/details_dialog.py:117
#: src/details_window.py:91
msgid "file.txt"
msgstr "پرونده.txt"
msgstr ""
#. As in software
#: cartridges/details_dialog.py:119
#: src/details_window.py:93
msgid "program"
msgstr "برنامه"
msgstr ""
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:124 cartridges/details_dialog.py:126
#: src/details_window.py:98 src/details_window.py:100
msgid "C:\\path\\to\\{}"
msgstr "C:\\Path\\to\\{}"
msgstr ""
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:130 cartridges/details_dialog.py:132
#: src/details_window.py:104 src/details_window.py:106
msgid "/path/to/{}"
msgstr "/path/to/{}"
msgstr ""
#: cartridges/details_dialog.py:137
#: src/details_window.py:111
msgid ""
"To launch the executable \"{}\", use the command:\n"
"\n"
@@ -503,213 +441,88 @@ msgid ""
"\n"
"If the path contains spaces, make sure to wrap it in double quotes!"
msgstr ""
"استفاده از این دستور برای اجرای پروندهٔ اجرایی {}:\n"
"\n"
"<tt>\"{}\"</tt>\n"
"\n"
"برای گشودن پروندهٔ {} با برنامهٔ پیش‌گزیده:\n"
"\n"
"<tt>{} \"{}\"</tt>\n"
"\n"
"اگر مسیر فاصله داشت، مطمئن شوید در نقل‌قول گذاشته‌ایدش!"
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:185
#: src/details_window.py:146 src/details_window.py:152
msgid "Couldn't Add Game"
msgstr "نتوانست بازی بیفزاید"
msgstr ""
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:221
#: src/details_window.py:146 src/details_window.py:181
msgid "Game title cannot be empty."
msgstr "عنوان بازی نمی‌تواند خالی باشد."
msgstr ""
#: cartridges/details_dialog.py:185 cartridges/details_dialog.py:229
#: src/details_window.py:152 src/details_window.py:189
msgid "Executable cannot be empty."
msgstr "اجرایی نمی‌تواند خالی باشد."
msgstr ""
#: cartridges/details_dialog.py:220 cartridges/details_dialog.py:228
#: src/details_window.py:180 src/details_window.py:188
msgid "Couldn't Apply Preferences"
msgstr "نتوانست ترجیحات را اعمال کند"
msgstr ""
#. The variable is the title of the game
#: cartridges/game.py:139
#: src/game.py:141
msgid "{} launched"
msgstr ""
#. The variable is the title of the game
#: src/game.py:154
msgid "{} hidden"
msgstr "{} نهفته"
msgstr ""
#: cartridges/game.py:139
#: src/game.py:154
msgid "{} unhidden"
msgstr "{} نانهفته"
msgstr ""
#. The variable is the title of the game
#: cartridges/game.py:153
#: src/game.py:171
msgid "{} removed"
msgstr "{} برداشته شد"
msgstr ""
#: cartridges/preferences.py:136
#: src/preferences.py:102
msgid "All games removed"
msgstr "همهٔ بازی‌ها برداشته شدند"
msgstr ""
#: cartridges/preferences.py:188
#: src/preferences.py:149
msgid ""
"An API key is required to use SteamGridDB. You can generate one {}here{}."
msgstr ""
"برای استفاده از SteamGridDB نیاز به یک کلید API است. می‌توانید {}این‌جا{} یکی "
"بسازید."
#: cartridges/preferences.py:203
msgid "Downloading covers…"
msgstr "در حال دریافت طرح‌های جلد…"
#: cartridges/preferences.py:222
msgid "Covers updated"
msgstr "طرح‌های جلد به‌روزرسانی شد"
#: cartridges/preferences.py:370
msgid "Installation Not Found"
msgstr "نصب پیدا نشد"
#: cartridges/preferences.py:371
msgid "Select a valid directory"
msgstr "گزینش شاخه‌ای معتبر"
#: cartridges/preferences.py:407 cartridges/importer/importer.py:317
msgid "Warning"
msgstr "هشدار"
#: cartridges/preferences.py:441
msgid "Invalid Directory"
msgstr "شاخهٔ نامعتبر"
#: cartridges/preferences.py:447
#: src/preferences.py:289
msgid "Set Location"
msgstr "تنظیم مکان"
msgstr ""
#: cartridges/utils/create_dialog.py:33 cartridges/importer/importer.py:318
#: src/utils/create_dialog.py:25
msgid "Dismiss"
msgstr "رد"
msgstr ""
#: cartridges/utils/relative_date.py:30
msgid "Today"
msgstr "امروز"
#: src/importer/sources/source.py:106
msgid "Data"
msgstr ""
#: cartridges/utils/relative_date.py:32
msgid "Yesterday"
msgstr "دیروز"
#: src/importer/sources/source.py:107
msgid "Cache"
msgstr ""
#: cartridges/utils/relative_date.py:36
msgid "Last Week"
msgstr "هفتهٔ گذشته"
#: src/importer/sources/source.py:108
msgid "Configuration"
msgstr ""
#: cartridges/utils/relative_date.py:38
msgid "This Month"
msgstr "این ماه"
#. The variables are the type of location (eg. cache) and the source's name (eg. Steam)
#: src/importer/sources/source.py:119
msgid "Invalid {} Location for {{}}"
msgstr ""
#: cartridges/utils/relative_date.py:40
msgid "Last Month"
msgstr "ماه گذشته"
#: src/importer/sources/source.py:120
msgid "Pick a new one or disable the source in preferences"
msgstr ""
#: cartridges/utils/relative_date.py:44
msgid "Last Year"
msgstr "پارسال"
#: cartridges/importer/importer.py:144
msgid "Importing Games…"
msgstr "درون‌ریزی بازی‌ها…"
#: cartridges/importer/importer.py:337
msgid "The following errors occured during import:"
msgstr "هنگام درون‌ریزی خطاهای زیر رخ دادند:"
#: cartridges/importer/importer.py:366
msgid "No new games found"
msgstr "هیچ بازی جدیدی پیدا نشد"
#. The variable is the number of games.
#: cartridges/importer/importer.py:379
msgid "{} game imported"
msgid_plural "{} games imported"
msgstr[0] "{} بازی درون‌ریزی شد"
msgstr[1] "{} بازی درون‌ریزی شدند"
#. The variable is the number of games. This text comes after "{0} games imported".
#: cartridges/importer/importer.py:383
msgid ", {} removed"
msgid_plural ", {} removed"
msgstr[0] "، {} بازی برداشته شد"
msgstr[1] "، {} بازی برداشته شدند"
#. The variable is the name of the source
#: cartridges/importer/location.py:34
msgid "Select the {} cache directory."
msgstr "گزینش شاخهٔ انبارهٔ {}."
#. The variable is the name of the source
#: cartridges/importer/location.py:36
msgid "Select the {} configuration directory."
msgstr "گزینش شاخهٔ پیکربندی {}."
#. The variable is the name of the source
#: cartridges/importer/location.py:38
msgid "Select the {} data directory."
msgstr "گزینش شاخهٔ دادهٔ {}."
#: cartridges/importer/retroarch_source.py:129
msgid "No RetroArch Core Selected"
msgstr "هیچ هستهٔ رتروآرچی گزیده نشده"
#. The variable is a newline separated list of playlists
#: cartridges/importer/retroarch_source.py:131
msgid "The following playlists have no default core:"
msgstr "سیاهه‌های بازی کردن زیر هیچ هستهٔ پیش‌گزیده‌ای ندارند:"
#: cartridges/importer/retroarch_source.py:133
msgid "Games with no core selected were not imported"
msgstr "بازی‌های بدون هسته درون‌ریزی نشدند"
#: cartridges/store/managers/sgdb_manager.py:46
#: src/store/managers/sgdb_manager.py:47
msgid "Couldn't Authenticate SteamGridDB"
msgstr "نتوانست در SteamGridDB هویت‌سنجی کند"
msgstr ""
#: cartridges/store/managers/sgdb_manager.py:47
#: src/store/managers/sgdb_manager.py:48
msgid "Verify your API key in preferences"
msgstr "کلید APIتان را در ترجیحات تأیید کنید"
msgstr ""
#, fuzzy
#~ msgid "1 game imported"
#~ msgid_plural "{} games imported"
#~ msgstr[0] "یک بازی درون‌ریخته شد"
#~ msgstr[1] "{} بازی درون‌ریخته شدند"
#, fuzzy
#~ msgid "1 removed"
#~ msgid_plural "{} removed"
#~ msgstr[0] "یکی برداشته شد"
#~ msgstr[1] "{} برداشته شد"
#~ msgid "Cache Location"
#~ msgstr "مکان انباره"
#~ msgid "Library"
#~ msgstr "کتابخانه"
#~ msgid "Show preferences"
#~ msgstr "نمایش ترجیحات"
#~ msgid "Shortcuts"
#~ msgstr "میان‌برها"
#~ msgid "Open menu"
#~ msgstr "گشودن فهرست"
#~ msgid "Add new game"
#~ msgstr "افزودن بازی جدید"
#~ msgid "Import games"
#~ msgstr "درون‌ریزی بازی‌ها"
#~ msgid "Back"
#~ msgstr "بازگشت"
#~ msgid "Search games"
#~ msgstr "جست‌وجوی بازی‌ها"
#~ msgid "Search hidden games"
#~ msgstr "جست‌وجوی بازی‌های نهفته"
#~| msgid "Add new game"
#~ msgid "No new games found"
#~ msgstr "افزدون بازی"

705
po/fi.po

File diff suppressed because it is too large Load Diff

675
po/fr.po

File diff suppressed because it is too large Load Diff

691
po/hi.po
View File

@@ -1,691 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR kramo
# This file is distributed under the same license as the Cartridges package.
# Nitin Khalia <weblate.scrambled777@simplelogin.com>, 2024.
# Scrambled777 <weblate.scrambled777@simplelogin.com>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: Cartridges\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-11-05 14:01+0100\n"
"PO-Revision-Date: 2024-05-07 09:07+0000\n"
"Last-Translator: Scrambled777 <weblate.scrambled777@simplelogin.com>\n"
"Language-Team: Hindi <https://hosted.weblate.org/projects/cartridges/"
"cartridges/hi/>\n"
"Language: hi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 5.5.4-dev\n"
#: data/page.kramo.Cartridges.desktop.in:3
#: data/page.kramo.Cartridges.metainfo.xml.in:9
#: data/page.kramo.Cartridges.metainfo.xml.in:40 data/gtk/window.blp:47
#: data/gtk/window.blp:83
msgid "Cartridges"
msgstr "Cartridges"
#: data/page.kramo.Cartridges.desktop.in:4
msgid "Game Launcher"
msgstr "गेम लॉन्चर"
#: data/page.kramo.Cartridges.desktop.in:5
#: data/page.kramo.Cartridges.metainfo.xml.in:10
msgid "Launch all your games"
msgstr "अपने सभी गेम्स लॉन्च करें"
#: data/page.kramo.Cartridges.desktop.in:11
msgid ""
"gaming;launcher;steam;lutris;heroic;bottles;itch;flatpak;legendary;retroarch;"
msgstr ""
"गेमिंग;लॉन्चर;steam;lutris;heroic;bottles;itch;flatpak;legendary;retroarch;"
#: data/page.kramo.Cartridges.metainfo.xml.in:12
msgid ""
"Cartridges is a simple game launcher for all of your games. It has support "
"for importing games from Steam, Lutris, Heroic and more with no login "
"necessary. You can sort and hide games or download cover art from "
"SteamGridDB."
msgstr ""
"Cartridges आपके सभी गेम के लिए एक सरल गेम लॉन्चर है। इसमें बिना किसी लॉगिन अवश्यक्ता के "
"Steam, Lutris, Heroic और अन्य से गेम आयात करने का समर्थन है। आप गेम को सॉर्ट और छिपा "
"सकते हैं या SteamGridDB से कवर आर्ट डाउनलोड कर सकते हैं।"
#: data/page.kramo.Cartridges.metainfo.xml.in:44 data/gtk/window.blp:320
#: cartridges/details_dialog.py:77
msgid "Game Details"
msgstr "गेम विवरण"
#: data/page.kramo.Cartridges.metainfo.xml.in:48
msgid "Edit Game Details"
msgstr "गेम विवरण संपादन"
#: data/page.kramo.Cartridges.metainfo.xml.in:52 data/gtk/help-overlay.blp:19
#: data/gtk/window.blp:543 cartridges/details_dialog.py:279
#: cartridges/importer/importer.py:319 cartridges/importer/importer.py:369
msgid "Preferences"
msgstr "प्राथमिकताएं"
#: data/gtk/details-dialog.blp:15
msgid "Cancel"
msgstr "रद्द करें"
#: data/gtk/details-dialog.blp:45
msgid "New Cover"
msgstr "नया कवर"
#: data/gtk/details-dialog.blp:64
msgid "Delete Cover"
msgstr "कवर मिटाएं"
#: data/gtk/details-dialog.blp:92 data/gtk/game.blp:80
msgid "Title"
msgstr "शीर्षक"
#: data/gtk/details-dialog.blp:96
msgid "Developer (optional)"
msgstr "विकासकर्ता (वैकल्पिक)"
#: data/gtk/details-dialog.blp:102
msgid "Executable"
msgstr "निष्पादनयोग्य"
#: data/gtk/details-dialog.blp:108
msgid "Select File"
msgstr "फाइल चुनें"
#: data/gtk/details-dialog.blp:119
msgid "More Info"
msgstr "अधिक जानकारी"
#: data/gtk/game.blp:101 data/gtk/game.blp:109 data/gtk/window.blp:444
msgid "Edit"
msgstr "संपादन"
#: data/gtk/game.blp:102 cartridges/window.py:359
msgid "Hide"
msgstr "छुपाएं"
#: data/gtk/game.blp:103 data/gtk/game.blp:111 data/gtk/window.blp:464
msgid "Remove"
msgstr "हटाएं"
#: data/gtk/game.blp:110 cartridges/window.py:361
msgid "Unhide"
msgstr "सामने लाएं"
#: data/gtk/help-overlay.blp:11 data/gtk/preferences.blp:9
msgid "General"
msgstr "सामान्य"
#: data/gtk/help-overlay.blp:14 data/gtk/window.blp:207 data/gtk/window.blp:223
#: data/gtk/window.blp:274 data/gtk/window.blp:290 data/gtk/window.blp:475
msgid "Search"
msgstr "खोजें"
#: data/gtk/help-overlay.blp:24 data/gtk/window.blp:544
msgid "Keyboard Shortcuts"
msgstr "कीबोर्ड शॉर्टकट"
#: data/gtk/help-overlay.blp:29 cartridges/game.py:103
#: cartridges/preferences.py:137 cartridges/importer/importer.py:386
msgid "Undo"
msgstr "पूर्ववत करें"
#: data/gtk/help-overlay.blp:34
msgid "Quit"
msgstr "छोड़ें"
#: data/gtk/help-overlay.blp:39 data/gtk/window.blp:92 data/gtk/window.blp:187
msgid "Toggle Sidebar"
msgstr "पार्श्वपट्टी टॉगल करें"
#: data/gtk/help-overlay.blp:44 data/gtk/window.blp:200 data/gtk/window.blp:267
msgid "Main Menu"
msgstr "मुख्य मेनू"
#: data/gtk/help-overlay.blp:50
msgid "Games"
msgstr "गेम्स"
#: data/gtk/help-overlay.blp:53 data/gtk/window.blp:193 data/gtk/window.blp:551
msgid "Add Game"
msgstr "गेम जोड़ें"
#: data/gtk/help-overlay.blp:58 data/gtk/preferences.blp:58
#: data/gtk/window.blp:27 data/gtk/window.blp:555
msgid "Import"
msgstr "आयात"
#: data/gtk/help-overlay.blp:63
msgid "Show Hidden Games"
msgstr "छिपे हुए गेम्स दिखाएं"
#: data/gtk/help-overlay.blp:68
msgid "Remove Game"
msgstr "गेम हटाएं"
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:62
#: data/gtk/preferences.blp:365
msgid "Behavior"
msgstr "व्यवहार"
#: data/gtk/preferences.blp:16
msgid "Exit After Launching Games"
msgstr "गेम्स लॉन्च करने के बाद बाहर निकलें"
#: data/gtk/preferences.blp:20
msgid "Cover Image Launches Game"
msgstr "कवर छवि गेम लॉन्च करती है"
#: data/gtk/preferences.blp:21
msgid "Swaps the behavior of the cover image and the play button"
msgstr "कवर छवि और प्ले बटन के व्यवहार की अदला-बदली करता है"
#: data/gtk/preferences.blp:26 cartridges/details_dialog.py:91
msgid "Images"
msgstr "छवियां"
#: data/gtk/preferences.blp:29
msgid "High Quality Images"
msgstr "उच्च गुणवत्ता वाली छवियां"
#: data/gtk/preferences.blp:30
msgid "Save game covers losslessly at the cost of storage"
msgstr "स्टोरेज की कीमत पर हानि रहित तरीके से गेम कवर सहेजें"
#: data/gtk/preferences.blp:35
msgid "Danger Zone"
msgstr "खतरनाक क्षेत्र"
#: data/gtk/preferences.blp:39
msgid "Remove All Games"
msgstr "सभी गेम्स हटाएं"
#: data/gtk/preferences.blp:65
msgid "Import Games Automatically"
msgstr ""
#: data/gtk/preferences.blp:69
msgid "Remove Uninstalled Games"
msgstr "अस्थापित गेम्स हटाएं"
#: data/gtk/preferences.blp:74
msgid "Sources"
msgstr "स्रोत"
#: data/gtk/preferences.blp:78 cartridges/importer/steam_source.py:114
msgid "Steam"
msgstr "Steam"
#: data/gtk/preferences.blp:87 data/gtk/preferences.blp:114
#: data/gtk/preferences.blp:149 data/gtk/preferences.blp:192
#: data/gtk/preferences.blp:219 data/gtk/preferences.blp:246
#: data/gtk/preferences.blp:273
msgid "Install Location"
msgstr "इंस्टॉल जगह"
#: data/gtk/preferences.blp:105 data/gtk/window.blp:565
#: cartridges/importer/lutris_source.py:107
msgid "Lutris"
msgstr "Lutris"
#: data/gtk/preferences.blp:131
msgid "Import Steam Games"
msgstr "Steam गेम्स आयात करें"
#: data/gtk/preferences.blp:135
msgid "Import Flatpak Games"
msgstr "Flatpak गेम्स आयात करें"
#: data/gtk/preferences.blp:140 cartridges/importer/heroic_source.py:355
msgid "Heroic"
msgstr "Heroic"
#: data/gtk/preferences.blp:166
msgid "Import Epic Games"
msgstr "Epic गेम्स आयात करें"
#: data/gtk/preferences.blp:170
msgid "Import GOG Games"
msgstr "GOG गेम्स आयात करें"
#: data/gtk/preferences.blp:174
msgid "Import Amazon Games"
msgstr "Amazon गेम्स आयात करें"
#: data/gtk/preferences.blp:178
msgid "Import Sideloaded Games"
msgstr "साइडलोडेड गेम्स आयात करें"
#: data/gtk/preferences.blp:183 cartridges/importer/bottles_source.py:86
msgid "Bottles"
msgstr "Bottles"
#: data/gtk/preferences.blp:210 cartridges/importer/itch_source.py:81
msgid "itch"
msgstr "itch"
#: data/gtk/preferences.blp:237 cartridges/importer/legendary_source.py:97
msgid "Legendary"
msgstr "Legendary"
#: data/gtk/preferences.blp:264 cartridges/importer/retroarch_source.py:142
msgid "RetroArch"
msgstr "RetroArch"
#: data/gtk/preferences.blp:291 cartridges/importer/flatpak_source.py:143
msgid "Flatpak"
msgstr "Flatpak"
#. The location of the system-wide data directory
#: data/gtk/preferences.blp:301
msgid "System Location"
msgstr "सिस्टम की जगह"
#. The location of the user-specific data directory
#: data/gtk/preferences.blp:319
msgid "User Location"
msgstr "उपयोगकर्ता की जगह"
#: data/gtk/preferences.blp:336
msgid "Import Game Launchers"
msgstr "गेम लॉन्चर आयात करें"
#: data/gtk/preferences.blp:341 cartridges/importer/desktop_source.py:215
msgid "Desktop Entries"
msgstr "डेस्कटॉप प्रविष्टियां"
#: data/gtk/preferences.blp:353 data/gtk/window.blp:563
msgid "SteamGridDB"
msgstr "SteamGridDB"
#: data/gtk/preferences.blp:357
msgid "Authentication"
msgstr "प्रमाणीकरण"
#: data/gtk/preferences.blp:360
msgid "API Key"
msgstr "API कुंजी"
#: data/gtk/preferences.blp:368
msgid "Use SteamGridDB"
msgstr "SteamGridDB का प्रयोग करें"
#: data/gtk/preferences.blp:369
msgid "Download images when adding or importing games"
msgstr "गेम जोड़ते या आयात करते समय छवियां डाउनलोड करें"
#: data/gtk/preferences.blp:373
msgid "Prefer Over Official Images"
msgstr "आधिकारिक छवियों से अधिक प्राथमिकता दें"
#: data/gtk/preferences.blp:377
msgid "Prefer Animated Images"
msgstr "सजीव छवियों को प्राथमिकता दें"
#: data/gtk/preferences.blp:383
msgid "Update Covers"
msgstr "कवर अद्यतन करें"
#: data/gtk/preferences.blp:384
msgid "Fetch covers for games already in your library"
msgstr "अपनी लाइब्रेरी में पहले से ही गेम के लिए कवर प्राप्त करें"
#: data/gtk/preferences.blp:389
msgid "Update"
msgstr "अद्यतन"
#: data/gtk/window.blp:6 data/gtk/window.blp:14
msgid "No Games Found"
msgstr "कोई गेम नहीं मिला"
#: data/gtk/window.blp:7 data/gtk/window.blp:15
msgid "Try a different search"
msgstr "भिन्न खोज का प्रयास करें"
#: data/gtk/window.blp:21
msgid "No Games"
msgstr "कोई गेम नहीं"
#: data/gtk/window.blp:22
msgid "Use the + button to add games"
msgstr "गेम जोड़ने के लिए + बटन का उपयोग करें"
#: data/gtk/window.blp:40
msgid "No Hidden Games"
msgstr "कोई छुपे गेम्स नहीं"
#: data/gtk/window.blp:41
msgid "Games you hide will appear here"
msgstr "आपके द्वारा छिपाए गए गेम यहां दिखाई देंगे"
#: data/gtk/window.blp:76 data/gtk/window.blp:113 cartridges/main.py:249
msgid "All Games"
msgstr "सभी गेम्स"
#: data/gtk/window.blp:140 cartridges/main.py:251
msgid "Added"
msgstr "जोड़ा गया"
#: data/gtk/window.blp:162
msgid "Imported"
msgstr "आयातित"
#: data/gtk/window.blp:260
msgid "Hidden Games"
msgstr "छुपे हुए गेम्स"
#: data/gtk/window.blp:368
msgid "Game Title"
msgstr "गेम शीर्षक"
#: data/gtk/window.blp:425
msgid "Play"
msgstr "खेलें"
#: data/gtk/window.blp:502
msgid "Sort"
msgstr "क्रमबद्ध करें"
#: data/gtk/window.blp:505
msgid "A-Z"
msgstr "A-Z"
#: data/gtk/window.blp:511
msgid "Z-A"
msgstr "Z-A"
#: data/gtk/window.blp:517
msgid "Newest"
msgstr "नवीनतम"
#: data/gtk/window.blp:523
msgid "Oldest"
msgstr "सबसे पुराने"
#: data/gtk/window.blp:529
msgid "Last Played"
msgstr "अंतिम बार खेला गया"
#: data/gtk/window.blp:536
msgid "Show Hidden"
msgstr "छुपे हुआ दिखाएं"
#: data/gtk/window.blp:545
msgid "About Cartridges"
msgstr "Cartridges के बारे में"
#: data/gtk/window.blp:562
msgid "IGDB"
msgstr "IGDB"
#: data/gtk/window.blp:564
msgid "ProtonDB"
msgstr "ProtonDB"
#: data/gtk/window.blp:566
msgid "HowLongToBeat"
msgstr "HowLongToBeat"
#. The variable is the title of the game
#: cartridges/main.py:226 cartridges/game.py:125
msgid "{} launched"
msgstr "{} लॉन्च किया गया"
#. Translators: Replace this with Your Name, Your Name <your.email@example.com>, or Your Name https://your-site.com for it to show up in the About dialog.
#: cartridges/main.py:291
msgid "translator-credits"
msgstr "Scrambled777 <weblate.scrambled777@simplelogin.com>"
#. The variable is the date when the game was added
#: cartridges/window.py:382
msgid "Added: {}"
msgstr "जोड़ा गया: {}"
#: cartridges/window.py:385
msgid "Never"
msgstr "कभी नहीं"
#. The variable is the date when the game was last played
#: cartridges/window.py:389
msgid "Last played: {}"
msgstr "अंतिम बार खेला गया: {}"
#: cartridges/details_dialog.py:82
msgid "Apply"
msgstr "लागू करें"
#: cartridges/details_dialog.py:88
msgid "Add New Game"
msgstr "नया गेम जोड़ें"
#: cartridges/details_dialog.py:89
msgid "Add"
msgstr "जोड़ें"
#: cartridges/details_dialog.py:102
msgid "Executables"
msgstr "निष्पादनयोग्य"
#. Translate this string as you would translate "file"
#: cartridges/details_dialog.py:117
msgid "file.txt"
msgstr "फाइल.txt"
#. As in software
#: cartridges/details_dialog.py:119
msgid "program"
msgstr "प्रोग्राम"
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:124 cartridges/details_dialog.py:126
msgid "C:\\path\\to\\{}"
msgstr "C:\\पथ\\को\\{}"
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:130 cartridges/details_dialog.py:132
msgid "/path/to/{}"
msgstr "/पथ/को/{}"
#: cartridges/details_dialog.py:137
msgid ""
"To launch the executable \"{}\", use the command:\n"
"\n"
"<tt>\"{}\"</tt>\n"
"\n"
"To open the file \"{}\" with the default application, use:\n"
"\n"
"<tt>{} \"{}\"</tt>\n"
"\n"
"If the path contains spaces, make sure to wrap it in double quotes!"
msgstr ""
"निष्पादनयोग्य \"{}\" लॉन्च करने के लिए, कमांड का उपयोग करें:\n"
"\n"
"<tt>\"{}\"</tt>\n"
"\n"
"तयशुदा अनुप्रयोग के साथ \"{}\" फाइल खोलने के लिए, इसका उपयोग करें:\n"
"\n"
"<tt>{} \"{}\"</tt>\n"
"\n"
"यदि पथ में रिक्त स्थान हैं, तो इसे दोहरे उद्धरण चिह्नों में लपेटना सुनिश्चित करें!"
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:185
msgid "Couldn't Add Game"
msgstr "गेम नहीं जोड़ा जा सका"
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:221
msgid "Game title cannot be empty."
msgstr "गेम का शीर्षक रिक्त नहीं हो सकता।"
#: cartridges/details_dialog.py:185 cartridges/details_dialog.py:229
msgid "Executable cannot be empty."
msgstr "निष्पादनयोग्य खाली नहीं हो सकता।"
#: cartridges/details_dialog.py:220 cartridges/details_dialog.py:228
msgid "Couldn't Apply Preferences"
msgstr "प्राथमिकताएं लागू नहीं की जा सकी"
#. The variable is the title of the game
#: cartridges/game.py:139
msgid "{} hidden"
msgstr "{} छिपा हुआ"
#: cartridges/game.py:139
msgid "{} unhidden"
msgstr "{} नहीं छिपा हुआ"
#. The variable is the title of the game
#: cartridges/game.py:153
#, fuzzy
msgid "{} removed"
msgstr "{} हटाया हुआ"
#: cartridges/preferences.py:136
msgid "All games removed"
msgstr "सभी गेम्स हटा दिए गए"
#: cartridges/preferences.py:188
msgid ""
"An API key is required to use SteamGridDB. You can generate one {}here{}."
msgstr ""
"SteamGridDB का उपयोग करने के लिए API कुंजी की आवश्यकता होती है। आप {}यहां{} एक "
"उत्पन्न कर सकते हैं।"
#: cartridges/preferences.py:203
msgid "Downloading covers…"
msgstr "कवर डाउनलोड हो रहा है…"
#: cartridges/preferences.py:222
msgid "Covers updated"
msgstr "कवर अद्यतित"
#: cartridges/preferences.py:370
msgid "Installation Not Found"
msgstr "इंस्टालेशन नहीं मिला"
#: cartridges/preferences.py:371
msgid "Select a valid directory"
msgstr "एक मान्य निर्देशिका चुनें"
#: cartridges/preferences.py:407 cartridges/importer/importer.py:317
msgid "Warning"
msgstr "चेतावनी"
#: cartridges/preferences.py:441
msgid "Invalid Directory"
msgstr "अमान्य निर्देशिका"
#: cartridges/preferences.py:447
msgid "Set Location"
msgstr "स्थान तय करें"
#: cartridges/utils/create_dialog.py:33 cartridges/importer/importer.py:318
msgid "Dismiss"
msgstr "खारिज करें"
#: cartridges/utils/relative_date.py:30
msgid "Today"
msgstr ""
#: cartridges/utils/relative_date.py:32
msgid "Yesterday"
msgstr ""
#: cartridges/utils/relative_date.py:36
#, fuzzy
msgid "Last Week"
msgstr "अंतिम बार खेला गया"
#: cartridges/utils/relative_date.py:38
msgid "This Month"
msgstr ""
#: cartridges/utils/relative_date.py:40
msgid "Last Month"
msgstr ""
#: cartridges/utils/relative_date.py:44
#, fuzzy
msgid "Last Year"
msgstr "अंतिम बार खेला गया"
#: cartridges/importer/importer.py:144
msgid "Importing Games…"
msgstr "गेम्स आयात किया जा रहा है…"
#: cartridges/importer/importer.py:337
msgid "The following errors occured during import:"
msgstr "आयात के दौरान निम्नलिखित त्रुटियां हुईं:"
#: cartridges/importer/importer.py:366
msgid "No new games found"
msgstr "कोई नया गेम्स नहीं मिले"
#. The variable is the number of games.
#: cartridges/importer/importer.py:379
#, fuzzy
msgid "{} game imported"
msgid_plural "{} games imported"
msgstr[0] "{} गेम्स आयातित"
msgstr[1] "{} गेम्स आयातित"
#. The variable is the number of games. This text comes after "{0} games imported".
#: cartridges/importer/importer.py:383
#, fuzzy
msgid ", {} removed"
msgid_plural ", {} removed"
msgstr[0] "{} हटाया हुआ"
msgstr[1] "{} हटाया हुआ"
#. The variable is the name of the source
#: cartridges/importer/location.py:34
msgid "Select the {} cache directory."
msgstr "{} कैशे निर्देशिका का चयन करें।"
#. The variable is the name of the source
#: cartridges/importer/location.py:36
msgid "Select the {} configuration directory."
msgstr "{} विन्यास निर्देशिका का चयन करें।"
#. The variable is the name of the source
#: cartridges/importer/location.py:38
msgid "Select the {} data directory."
msgstr "{} डेटा निर्देशिका का चयन करें।"
#: cartridges/importer/retroarch_source.py:129
msgid "No RetroArch Core Selected"
msgstr "कोई RetroArch कोर चयनित नहीं"
#. The variable is a newline separated list of playlists
#: cartridges/importer/retroarch_source.py:131
msgid "The following playlists have no default core:"
msgstr "निम्नलिखित प्लेलिस्ट में कोई तयशुदा कोर नहीं है:"
#: cartridges/importer/retroarch_source.py:133
msgid "Games with no core selected were not imported"
msgstr "बिना कोर के चयनित गेम्स का आयात नहीं किया गया"
#: cartridges/store/managers/sgdb_manager.py:46
msgid "Couldn't Authenticate SteamGridDB"
msgstr "SteamGridDB को प्रमाणित नहीं किया जा सका"
#: cartridges/store/managers/sgdb_manager.py:47
msgid "Verify your API key in preferences"
msgstr "प्राथमिकताओं में अपनी API कुंजी सत्यापित करें"
#, fuzzy
#~ msgid "1 game imported"
#~ msgid_plural "{} games imported"
#~ msgstr[0] "1 गेम आयात किया गया"
#~ msgstr[1] "{} गेम्स आयातित"
#, fuzzy
#~ msgid "1 removed"
#~ msgid_plural "{} removed"
#~ msgstr[0] "1 हटाया गया"
#~ msgstr[1] "{} हटाया गया"
#~ msgid "Cache Location"
#~ msgstr "कैशे की जगह"

692
po/hr.po
View File

@@ -1,692 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR kramo
# This file is distributed under the same license as the Cartridges package.
# Milo Ivir <mail@milotype.de>, 2023, 2024, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Cartridges\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-11-05 14:01+0100\n"
"PO-Revision-Date: 2025-02-08 21:22+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: Croatian <https://hosted.weblate.org/projects/cartridges/"
"cartridges/hr/>\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Weblate 5.10-dev\n"
#: data/page.kramo.Cartridges.desktop.in:3
#: data/page.kramo.Cartridges.metainfo.xml.in:9
#: data/page.kramo.Cartridges.metainfo.xml.in:40 data/gtk/window.blp:47
#: data/gtk/window.blp:83
msgid "Cartridges"
msgstr "Cartridges"
#: data/page.kramo.Cartridges.desktop.in:4
msgid "Game Launcher"
msgstr "Pokretač za igre"
#: data/page.kramo.Cartridges.desktop.in:5
#: data/page.kramo.Cartridges.metainfo.xml.in:10
msgid "Launch all your games"
msgstr "Pokreni sve svoje igre"
#: data/page.kramo.Cartridges.desktop.in:11
msgid ""
"gaming;launcher;steam;lutris;heroic;bottles;itch;flatpak;legendary;retroarch;"
msgstr ""
"igranje;pokretač;para;lutris;heroic;bottles;butelje;itch;flatpak;legendary;"
"retroarch;"
#: data/page.kramo.Cartridges.metainfo.xml.in:12
msgid ""
"Cartridges is a simple game launcher for all of your games. It has support "
"for importing games from Steam, Lutris, Heroic and more with no login "
"necessary. You can sort and hide games or download cover art from "
"SteamGridDB."
msgstr ""
"Cartridges je jednostavan pokretač igri za sve tvoje igre. Podržava uvoz "
"igri sa Steama, Lutrisa, Heroica i drugih bez potrebe za prijavom. Možeš "
"promijeniti redoslijed igri, sakriti igre ili preuzeti naslovnice sa "
"SteamGridDB-a."
#: data/page.kramo.Cartridges.metainfo.xml.in:44 data/gtk/window.blp:320
#: cartridges/details_dialog.py:77
msgid "Game Details"
msgstr "Detalji igre"
#: data/page.kramo.Cartridges.metainfo.xml.in:48
msgid "Edit Game Details"
msgstr "Uredi detalje igre"
#: data/page.kramo.Cartridges.metainfo.xml.in:52 data/gtk/help-overlay.blp:19
#: data/gtk/window.blp:543 cartridges/details_dialog.py:279
#: cartridges/importer/importer.py:319 cartridges/importer/importer.py:369
msgid "Preferences"
msgstr "Postavke"
#: data/gtk/details-dialog.blp:15
msgid "Cancel"
msgstr "Otkaži"
#: data/gtk/details-dialog.blp:45
msgid "New Cover"
msgstr "Nova naslovnica"
#: data/gtk/details-dialog.blp:64
msgid "Delete Cover"
msgstr "Izbriši naslovnicu"
#: data/gtk/details-dialog.blp:92 data/gtk/game.blp:80
msgid "Title"
msgstr "Naslov"
#: data/gtk/details-dialog.blp:96
msgid "Developer (optional)"
msgstr "Programer (opcionalno)"
#: data/gtk/details-dialog.blp:102
msgid "Executable"
msgstr "Izvršna datoteka"
#: data/gtk/details-dialog.blp:108
msgid "Select File"
msgstr "Odaberi datoteku"
#: data/gtk/details-dialog.blp:119
msgid "More Info"
msgstr "Daljnje informacije"
#: data/gtk/game.blp:101 data/gtk/game.blp:109 data/gtk/window.blp:444
msgid "Edit"
msgstr "Uredi"
#: data/gtk/game.blp:102 cartridges/window.py:359
msgid "Hide"
msgstr "Sakrij"
#: data/gtk/game.blp:103 data/gtk/game.blp:111 data/gtk/window.blp:464
msgid "Remove"
msgstr "Ukloni"
#: data/gtk/game.blp:110 cartridges/window.py:361
msgid "Unhide"
msgstr "Prikaži"
#: data/gtk/help-overlay.blp:11 data/gtk/preferences.blp:9
msgid "General"
msgstr "Općenito"
#: data/gtk/help-overlay.blp:14 data/gtk/window.blp:207 data/gtk/window.blp:223
#: data/gtk/window.blp:274 data/gtk/window.blp:290 data/gtk/window.blp:475
msgid "Search"
msgstr "Traži"
#: data/gtk/help-overlay.blp:24 data/gtk/window.blp:544
msgid "Keyboard Shortcuts"
msgstr "Tipkovnički prečaci"
#: data/gtk/help-overlay.blp:29 cartridges/game.py:103
#: cartridges/preferences.py:137 cartridges/importer/importer.py:386
msgid "Undo"
msgstr "Poništi"
#: data/gtk/help-overlay.blp:34
msgid "Quit"
msgstr "Zatvori aplikaciju"
#: data/gtk/help-overlay.blp:39 data/gtk/window.blp:92 data/gtk/window.blp:187
msgid "Toggle Sidebar"
msgstr "Uključi/Isključi bočnu traku"
#: data/gtk/help-overlay.blp:44 data/gtk/window.blp:200 data/gtk/window.blp:267
msgid "Main Menu"
msgstr "Glavni izbornik"
#: data/gtk/help-overlay.blp:50
msgid "Games"
msgstr "Igre"
#: data/gtk/help-overlay.blp:53 data/gtk/window.blp:193 data/gtk/window.blp:551
msgid "Add Game"
msgstr "Dodaj igru"
#: data/gtk/help-overlay.blp:58 data/gtk/preferences.blp:58
#: data/gtk/window.blp:27 data/gtk/window.blp:555
msgid "Import"
msgstr "Uvezi"
#: data/gtk/help-overlay.blp:63
msgid "Show Hidden Games"
msgstr "Prikaži skrivene igre"
#: data/gtk/help-overlay.blp:68
msgid "Remove Game"
msgstr "Ukloni igru"
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:62
#: data/gtk/preferences.blp:365
msgid "Behavior"
msgstr "Ponašanje"
#: data/gtk/preferences.blp:16
msgid "Exit After Launching Games"
msgstr "Izađi nakon pokretanja igri"
#: data/gtk/preferences.blp:20
msgid "Cover Image Launches Game"
msgstr "Slika naslovnice pokreće igru"
#: data/gtk/preferences.blp:21
msgid "Swaps the behavior of the cover image and the play button"
msgstr "Zamjenjuje ponašanje slike naslovnice i gumba za pokretanje igre"
#: data/gtk/preferences.blp:26 cartridges/details_dialog.py:91
msgid "Images"
msgstr "Slike"
#: data/gtk/preferences.blp:29
msgid "High Quality Images"
msgstr "Slike visoke kvalitete"
#: data/gtk/preferences.blp:30
msgid "Save game covers losslessly at the cost of storage"
msgstr "Spremi nalsovnice igri bez gubitka kvalitete nauštrb memorije"
#: data/gtk/preferences.blp:35
msgid "Danger Zone"
msgstr "Opasno područje"
#: data/gtk/preferences.blp:39
msgid "Remove All Games"
msgstr "Ukloni sve igre"
#: data/gtk/preferences.blp:65
msgid "Import Games Automatically"
msgstr "Uvezi igre automatski"
#: data/gtk/preferences.blp:69
msgid "Remove Uninstalled Games"
msgstr "Ukloni deinstalirane igre"
#: data/gtk/preferences.blp:74
msgid "Sources"
msgstr "Izvori"
#: data/gtk/preferences.blp:78 cartridges/importer/steam_source.py:114
msgid "Steam"
msgstr "Steam"
#: data/gtk/preferences.blp:87 data/gtk/preferences.blp:114
#: data/gtk/preferences.blp:149 data/gtk/preferences.blp:192
#: data/gtk/preferences.blp:219 data/gtk/preferences.blp:246
#: data/gtk/preferences.blp:273
msgid "Install Location"
msgstr "Instaliraj lokaciju"
#: data/gtk/preferences.blp:105 data/gtk/window.blp:565
#: cartridges/importer/lutris_source.py:107
msgid "Lutris"
msgstr "Lutris"
#: data/gtk/preferences.blp:131
msgid "Import Steam Games"
msgstr "Uvezi Steam igre"
#: data/gtk/preferences.blp:135
msgid "Import Flatpak Games"
msgstr "Uvezi Flatpak igre"
#: data/gtk/preferences.blp:140 cartridges/importer/heroic_source.py:355
msgid "Heroic"
msgstr "Heroic"
#: data/gtk/preferences.blp:166
msgid "Import Epic Games"
msgstr "Uvezi Epic igre"
#: data/gtk/preferences.blp:170
msgid "Import GOG Games"
msgstr "Uvezi GOG igre"
#: data/gtk/preferences.blp:174
msgid "Import Amazon Games"
msgstr "Uvezi Amazon igre"
#: data/gtk/preferences.blp:178
msgid "Import Sideloaded Games"
msgstr "Uvezi Sideloaded igre"
#: data/gtk/preferences.blp:183 cartridges/importer/bottles_source.py:86
msgid "Bottles"
msgstr "Butelje"
#: data/gtk/preferences.blp:210 cartridges/importer/itch_source.py:81
msgid "itch"
msgstr "itch"
#: data/gtk/preferences.blp:237 cartridges/importer/legendary_source.py:97
msgid "Legendary"
msgstr "Legendary"
#: data/gtk/preferences.blp:264 cartridges/importer/retroarch_source.py:142
msgid "RetroArch"
msgstr "RetroArch"
#: data/gtk/preferences.blp:291 cartridges/importer/flatpak_source.py:143
msgid "Flatpak"
msgstr "Flatpak"
#. The location of the system-wide data directory
#: data/gtk/preferences.blp:301
msgid "System Location"
msgstr "Lokacija sustava"
#. The location of the user-specific data directory
#: data/gtk/preferences.blp:319
msgid "User Location"
msgstr "Lokacija korisnika"
#: data/gtk/preferences.blp:336
msgid "Import Game Launchers"
msgstr "Uvezi pokretače igri"
#: data/gtk/preferences.blp:341 cartridges/importer/desktop_source.py:215
msgid "Desktop Entries"
msgstr "Desktop unosi"
#: data/gtk/preferences.blp:353 data/gtk/window.blp:563
msgid "SteamGridDB"
msgstr "SteamGridDB"
#: data/gtk/preferences.blp:357
msgid "Authentication"
msgstr "Autentifikacija"
#: data/gtk/preferences.blp:360
msgid "API Key"
msgstr "API Ključ"
#: data/gtk/preferences.blp:368
msgid "Use SteamGridDB"
msgstr "Koristi SteamGridDB"
#: data/gtk/preferences.blp:369
msgid "Download images when adding or importing games"
msgstr "Preuzmi slike prilikom dodavanja ili uvoza igri"
#: data/gtk/preferences.blp:373
msgid "Prefer Over Official Images"
msgstr "Preferiraj službene slike"
#: data/gtk/preferences.blp:377
msgid "Prefer Animated Images"
msgstr "Preferiraj animirane slike"
#: data/gtk/preferences.blp:383
msgid "Update Covers"
msgstr "Aktualiziraj naslovnice"
#: data/gtk/preferences.blp:384
msgid "Fetch covers for games already in your library"
msgstr "Preuzmi naslovnice za igre koje se već nalaze u tvojoj knjižnici"
#: data/gtk/preferences.blp:389
msgid "Update"
msgstr "Aktualiziraj"
#: data/gtk/window.blp:6 data/gtk/window.blp:14
msgid "No Games Found"
msgstr "Nije pronađena nijedna igra"
#: data/gtk/window.blp:7 data/gtk/window.blp:15
msgid "Try a different search"
msgstr "Pokušaj drugačiju pretragu"
#: data/gtk/window.blp:21
msgid "No Games"
msgstr "Nema igri"
#: data/gtk/window.blp:22
msgid "Use the + button to add games"
msgstr "Koristi gumb + za dodavanje igri"
#: data/gtk/window.blp:40
msgid "No Hidden Games"
msgstr "Nema skrivenih igri"
#: data/gtk/window.blp:41
msgid "Games you hide will appear here"
msgstr "Igre koje sakriješ će se pojaviti ovdje"
#: data/gtk/window.blp:76 data/gtk/window.blp:113 cartridges/main.py:249
msgid "All Games"
msgstr "Sve igre"
#: data/gtk/window.blp:140 cartridges/main.py:251
msgid "Added"
msgstr "Dodano"
#: data/gtk/window.blp:162
msgid "Imported"
msgstr "Uvezeno"
#: data/gtk/window.blp:260
msgid "Hidden Games"
msgstr "Skrivene igre"
#: data/gtk/window.blp:368
msgid "Game Title"
msgstr "Naslov igre"
#: data/gtk/window.blp:425
msgid "Play"
msgstr "Igraj"
#: data/gtk/window.blp:502
msgid "Sort"
msgstr "Redoslijed"
#: data/gtk/window.blp:505
msgid "A-Z"
msgstr "A-Z"
#: data/gtk/window.blp:511
msgid "Z-A"
msgstr "Z-A"
#: data/gtk/window.blp:517
msgid "Newest"
msgstr "Najnovije"
#: data/gtk/window.blp:523
msgid "Oldest"
msgstr "Najstarije"
#: data/gtk/window.blp:529
msgid "Last Played"
msgstr "Zadnje igrane"
#: data/gtk/window.blp:536
msgid "Show Hidden"
msgstr "Prikaži skrivene"
#: data/gtk/window.blp:545
msgid "About Cartridges"
msgstr "Informacije o Cartridges"
#: data/gtk/window.blp:562
msgid "IGDB"
msgstr "IGDB"
#: data/gtk/window.blp:564
msgid "ProtonDB"
msgstr "ProtonDB"
#: data/gtk/window.blp:566
msgid "HowLongToBeat"
msgstr "HowLongToBeat"
#. The variable is the title of the game
#: cartridges/main.py:226 cartridges/game.py:125
msgid "{} launched"
msgstr "{} pokrenuta"
#. Translators: Replace this with Your Name, Your Name <your.email@example.com>, or Your Name https://your-site.com for it to show up in the About dialog.
#: cartridges/main.py:291
msgid "translator-credits"
msgstr "Milo Ivir <mail@milotype.de>"
#. The variable is the date when the game was added
#: cartridges/window.py:382
msgid "Added: {}"
msgstr "Dodano: {}"
#: cartridges/window.py:385
msgid "Never"
msgstr "Nikada"
#. The variable is the date when the game was last played
#: cartridges/window.py:389
msgid "Last played: {}"
msgstr "Zadnji put igrana: {}"
#: cartridges/details_dialog.py:82
msgid "Apply"
msgstr "Primijeni"
#: cartridges/details_dialog.py:88
msgid "Add New Game"
msgstr "Dodaj novu igru"
#: cartridges/details_dialog.py:89
msgid "Add"
msgstr "Dodaj"
#: cartridges/details_dialog.py:102
msgid "Executables"
msgstr "Izvršne datoteke"
#. Translate this string as you would translate "file"
#: cartridges/details_dialog.py:117
msgid "file.txt"
msgstr "datoteka.txt"
#. As in software
#: cartridges/details_dialog.py:119
msgid "program"
msgstr "program"
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:124 cartridges/details_dialog.py:126
msgid "C:\\path\\to\\{}"
msgstr "C:\\putanja\\do\\{}"
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:130 cartridges/details_dialog.py:132
msgid "/path/to/{}"
msgstr "\\putanja\\do\\{}"
#: cartridges/details_dialog.py:137
msgid ""
"To launch the executable \"{}\", use the command:\n"
"\n"
"<tt>\"{}\"</tt>\n"
"\n"
"To open the file \"{}\" with the default application, use:\n"
"\n"
"<tt>{} \"{}\"</tt>\n"
"\n"
"If the path contains spaces, make sure to wrap it in double quotes!"
msgstr ""
"Za pokretanje izvršne datoteke „{}” koristi naredbu:\n"
"\n"
"<tt>„{}”</tt>\n"
"\n"
"Za otvaranje datoteke „{}” sa zadanom aplikacijom, koristi:\n"
"\n"
"<tt>{} „{}”</tt>\n"
"\n"
"Ako putanja sadrži razmake, obavezno je stavi u navodnike!"
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:185
msgid "Couldn't Add Game"
msgstr "Neuspjelo dodavanje igre"
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:221
msgid "Game title cannot be empty."
msgstr "Naslov igre ne može biti prazan."
#: cartridges/details_dialog.py:185 cartridges/details_dialog.py:229
msgid "Executable cannot be empty."
msgstr "Izvršna datoteka ne može biti prazna."
#: cartridges/details_dialog.py:220 cartridges/details_dialog.py:228
msgid "Couldn't Apply Preferences"
msgstr "Neuspjela primjena postavki"
#. The variable is the title of the game
#: cartridges/game.py:139
msgid "{} hidden"
msgstr "{} skriven"
#: cartridges/game.py:139
msgid "{} unhidden"
msgstr "{} neskriven"
#. The variable is the title of the game
#: cartridges/game.py:153
msgid "{} removed"
msgstr "{} uklonjen"
#: cartridges/preferences.py:136
msgid "All games removed"
msgstr "Sve igre su uklonjene"
#: cartridges/preferences.py:188
msgid ""
"An API key is required to use SteamGridDB. You can generate one {}here{}."
msgstr ""
"Za korištenje SteamGridDB-a je potreban API ključ. Možeš ga generirati {}"
"ovdje{}."
#: cartridges/preferences.py:203
msgid "Downloading covers…"
msgstr "Preuzimanje naslovnica …"
#: cartridges/preferences.py:222
msgid "Covers updated"
msgstr "Naslovnice su aktualizirane"
#: cartridges/preferences.py:370
msgid "Installation Not Found"
msgstr "Instalacija nije pronađena"
#: cartridges/preferences.py:371
msgid "Select a valid directory"
msgstr "Odaberi jedan valjani direktorij"
#: cartridges/preferences.py:407 cartridges/importer/importer.py:317
msgid "Warning"
msgstr "Upozorenje"
#: cartridges/preferences.py:441
msgid "Invalid Directory"
msgstr "Nevaljani direktorij"
#: cartridges/preferences.py:447
msgid "Set Location"
msgstr "Postavi lokaciju"
#: cartridges/utils/create_dialog.py:33 cartridges/importer/importer.py:318
msgid "Dismiss"
msgstr "Odbaci"
#: cartridges/utils/relative_date.py:30
msgid "Today"
msgstr "Danas"
#: cartridges/utils/relative_date.py:32
msgid "Yesterday"
msgstr "Jučer"
#: cartridges/utils/relative_date.py:36
msgid "Last Week"
msgstr "Prošli tjedan"
#: cartridges/utils/relative_date.py:38
msgid "This Month"
msgstr "Ovaj mjesec"
#: cartridges/utils/relative_date.py:40
msgid "Last Month"
msgstr "Prošli mjesec"
#: cartridges/utils/relative_date.py:44
msgid "Last Year"
msgstr "Prošla godina"
#: cartridges/importer/importer.py:144
msgid "Importing Games…"
msgstr "Uvoz igri …"
#: cartridges/importer/importer.py:337
msgid "The following errors occured during import:"
msgstr "Dogodile su se sljedeće greške tijekom uvoza:"
#: cartridges/importer/importer.py:366
msgid "No new games found"
msgstr "Nije pronađena nijedna nova igra"
#. The variable is the number of games.
#: cartridges/importer/importer.py:379
msgid "{} game imported"
msgid_plural "{} games imported"
msgstr[0] "{} igra uvezena"
msgstr[1] "{} igre uvezene"
msgstr[2] "{} igri uvezeno"
#. The variable is the number of games. This text comes after "{0} games imported".
#: cartridges/importer/importer.py:383
msgid ", {} removed"
msgid_plural ", {} removed"
msgstr[0] ", {} uklonjena"
msgstr[1] ", {} uklonjene"
msgstr[2] ", {} uklonjeno"
#. The variable is the name of the source
#: cartridges/importer/location.py:34
msgid "Select the {} cache directory."
msgstr "Odaberi {} direktorij predmemorije."
#. The variable is the name of the source
#: cartridges/importer/location.py:36
msgid "Select the {} configuration directory."
msgstr "Odaberi {} direktorij konfiguracije."
#. The variable is the name of the source
#: cartridges/importer/location.py:38
msgid "Select the {} data directory."
msgstr "Odaberi {} direktorij podataka."
#: cartridges/importer/retroarch_source.py:129
msgid "No RetroArch Core Selected"
msgstr "Nije odabrana RetroArch jezgra"
#. The variable is a newline separated list of playlists
#: cartridges/importer/retroarch_source.py:131
msgid "The following playlists have no default core:"
msgstr "Ovi popisi igri nemaju zadane jezgre:"
#: cartridges/importer/retroarch_source.py:133
msgid "Games with no core selected were not imported"
msgstr "Igre bez odabrane jezgre nisu uvezene"
#: cartridges/store/managers/sgdb_manager.py:46
msgid "Couldn't Authenticate SteamGridDB"
msgstr "Neuspjela autentifikacija SteamGridDB-a"
#: cartridges/store/managers/sgdb_manager.py:47
msgid "Verify your API key in preferences"
msgstr "Potvrdi tvoj API ključ u postavkama"
#, fuzzy
#~ msgid "1 game imported"
#~ msgid_plural "{} games imported"
#~ msgstr[0] "Jedna igra je uvezena"
#~ msgstr[1] "Broj uvezenih igri: {}"
#~ msgstr[2] "Broj uvezenih igri: {}"
#, fuzzy
#~ msgid "1 removed"
#~ msgid_plural "{} removed"
#~ msgstr[0] "Jedna je uklonjena"
#~ msgstr[1] "{} je uklonjena"
#~ msgstr[2] "{} je uklonjena"
#~ msgid "Cache Location"
#~ msgstr "Lokacija predmemorije"

709
po/hu.po

File diff suppressed because it is too large Load Diff

653
po/ia.po
View File

@@ -1,653 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR kramo
# This file is distributed under the same license as the Cartridges package.
# "Emilio S." <emism.translations@gmail.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Cartridges\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-11-05 14:01+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: ia\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
#: data/page.kramo.Cartridges.desktop.in:3
#: data/page.kramo.Cartridges.metainfo.xml.in:9
#: data/page.kramo.Cartridges.metainfo.xml.in:40 data/gtk/window.blp:47
#: data/gtk/window.blp:83
msgid "Cartridges"
msgstr ""
#: data/page.kramo.Cartridges.desktop.in:4
msgid "Game Launcher"
msgstr ""
#: data/page.kramo.Cartridges.desktop.in:5
#: data/page.kramo.Cartridges.metainfo.xml.in:10
msgid "Launch all your games"
msgstr ""
#: data/page.kramo.Cartridges.desktop.in:11
msgid ""
"gaming;launcher;steam;lutris;heroic;bottles;itch;flatpak;legendary;retroarch;"
msgstr ""
#: data/page.kramo.Cartridges.metainfo.xml.in:12
msgid ""
"Cartridges is a simple game launcher for all of your games. It has support "
"for importing games from Steam, Lutris, Heroic and more with no login "
"necessary. You can sort and hide games or download cover art from "
"SteamGridDB."
msgstr ""
#: data/page.kramo.Cartridges.metainfo.xml.in:44 data/gtk/window.blp:320
#: cartridges/details_dialog.py:77
msgid "Game Details"
msgstr ""
#: data/page.kramo.Cartridges.metainfo.xml.in:48
msgid "Edit Game Details"
msgstr ""
#: data/page.kramo.Cartridges.metainfo.xml.in:52 data/gtk/help-overlay.blp:19
#: data/gtk/window.blp:543 cartridges/details_dialog.py:279
#: cartridges/importer/importer.py:319 cartridges/importer/importer.py:369
msgid "Preferences"
msgstr ""
#: data/gtk/details-dialog.blp:15
msgid "Cancel"
msgstr ""
#: data/gtk/details-dialog.blp:45
msgid "New Cover"
msgstr ""
#: data/gtk/details-dialog.blp:64
msgid "Delete Cover"
msgstr ""
#: data/gtk/details-dialog.blp:92 data/gtk/game.blp:80
msgid "Title"
msgstr ""
#: data/gtk/details-dialog.blp:96
msgid "Developer (optional)"
msgstr ""
#: data/gtk/details-dialog.blp:102
msgid "Executable"
msgstr ""
#: data/gtk/details-dialog.blp:108
msgid "Select File"
msgstr ""
#: data/gtk/details-dialog.blp:119
msgid "More Info"
msgstr ""
#: data/gtk/game.blp:101 data/gtk/game.blp:109 data/gtk/window.blp:444
msgid "Edit"
msgstr ""
#: data/gtk/game.blp:102 cartridges/window.py:359
msgid "Hide"
msgstr ""
#: data/gtk/game.blp:103 data/gtk/game.blp:111 data/gtk/window.blp:464
msgid "Remove"
msgstr ""
#: data/gtk/game.blp:110 cartridges/window.py:361
msgid "Unhide"
msgstr ""
#: data/gtk/help-overlay.blp:11 data/gtk/preferences.blp:9
msgid "General"
msgstr ""
#: data/gtk/help-overlay.blp:14 data/gtk/window.blp:207 data/gtk/window.blp:223
#: data/gtk/window.blp:274 data/gtk/window.blp:290 data/gtk/window.blp:475
msgid "Search"
msgstr ""
#: data/gtk/help-overlay.blp:24 data/gtk/window.blp:544
msgid "Keyboard Shortcuts"
msgstr ""
#: data/gtk/help-overlay.blp:29 cartridges/game.py:103
#: cartridges/preferences.py:137 cartridges/importer/importer.py:386
msgid "Undo"
msgstr ""
#: data/gtk/help-overlay.blp:34
msgid "Quit"
msgstr ""
#: data/gtk/help-overlay.blp:39 data/gtk/window.blp:92 data/gtk/window.blp:187
msgid "Toggle Sidebar"
msgstr ""
#: data/gtk/help-overlay.blp:44 data/gtk/window.blp:200 data/gtk/window.blp:267
msgid "Main Menu"
msgstr ""
#: data/gtk/help-overlay.blp:50
msgid "Games"
msgstr ""
#: data/gtk/help-overlay.blp:53 data/gtk/window.blp:193 data/gtk/window.blp:551
msgid "Add Game"
msgstr ""
#: data/gtk/help-overlay.blp:58 data/gtk/preferences.blp:58
#: data/gtk/window.blp:27 data/gtk/window.blp:555
msgid "Import"
msgstr ""
#: data/gtk/help-overlay.blp:63
msgid "Show Hidden Games"
msgstr ""
#: data/gtk/help-overlay.blp:68
msgid "Remove Game"
msgstr ""
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:62
#: data/gtk/preferences.blp:365
msgid "Behavior"
msgstr ""
#: data/gtk/preferences.blp:16
msgid "Exit After Launching Games"
msgstr ""
#: data/gtk/preferences.blp:20
msgid "Cover Image Launches Game"
msgstr ""
#: data/gtk/preferences.blp:21
msgid "Swaps the behavior of the cover image and the play button"
msgstr ""
#: data/gtk/preferences.blp:26 cartridges/details_dialog.py:91
msgid "Images"
msgstr ""
#: data/gtk/preferences.blp:29
msgid "High Quality Images"
msgstr ""
#: data/gtk/preferences.blp:30
msgid "Save game covers losslessly at the cost of storage"
msgstr ""
#: data/gtk/preferences.blp:35
msgid "Danger Zone"
msgstr ""
#: data/gtk/preferences.blp:39
msgid "Remove All Games"
msgstr ""
#: data/gtk/preferences.blp:65
msgid "Import Games Automatically"
msgstr ""
#: data/gtk/preferences.blp:69
msgid "Remove Uninstalled Games"
msgstr ""
#: data/gtk/preferences.blp:74
msgid "Sources"
msgstr ""
#: data/gtk/preferences.blp:78 cartridges/importer/steam_source.py:114
msgid "Steam"
msgstr ""
#: data/gtk/preferences.blp:87 data/gtk/preferences.blp:114
#: data/gtk/preferences.blp:149 data/gtk/preferences.blp:192
#: data/gtk/preferences.blp:219 data/gtk/preferences.blp:246
#: data/gtk/preferences.blp:273
msgid "Install Location"
msgstr ""
#: data/gtk/preferences.blp:105 data/gtk/window.blp:565
#: cartridges/importer/lutris_source.py:107
msgid "Lutris"
msgstr ""
#: data/gtk/preferences.blp:131
msgid "Import Steam Games"
msgstr ""
#: data/gtk/preferences.blp:135
msgid "Import Flatpak Games"
msgstr ""
#: data/gtk/preferences.blp:140 cartridges/importer/heroic_source.py:355
msgid "Heroic"
msgstr ""
#: data/gtk/preferences.blp:166
msgid "Import Epic Games"
msgstr ""
#: data/gtk/preferences.blp:170
msgid "Import GOG Games"
msgstr ""
#: data/gtk/preferences.blp:174
msgid "Import Amazon Games"
msgstr ""
#: data/gtk/preferences.blp:178
msgid "Import Sideloaded Games"
msgstr ""
#: data/gtk/preferences.blp:183 cartridges/importer/bottles_source.py:86
msgid "Bottles"
msgstr ""
#: data/gtk/preferences.blp:210 cartridges/importer/itch_source.py:81
msgid "itch"
msgstr ""
#: data/gtk/preferences.blp:237 cartridges/importer/legendary_source.py:97
msgid "Legendary"
msgstr ""
#: data/gtk/preferences.blp:264 cartridges/importer/retroarch_source.py:142
msgid "RetroArch"
msgstr ""
#: data/gtk/preferences.blp:291 cartridges/importer/flatpak_source.py:143
msgid "Flatpak"
msgstr ""
#. The location of the system-wide data directory
#: data/gtk/preferences.blp:301
msgid "System Location"
msgstr ""
#. The location of the user-specific data directory
#: data/gtk/preferences.blp:319
msgid "User Location"
msgstr ""
#: data/gtk/preferences.blp:336
msgid "Import Game Launchers"
msgstr ""
#: data/gtk/preferences.blp:341 cartridges/importer/desktop_source.py:215
msgid "Desktop Entries"
msgstr ""
#: data/gtk/preferences.blp:353 data/gtk/window.blp:563
msgid "SteamGridDB"
msgstr ""
#: data/gtk/preferences.blp:357
msgid "Authentication"
msgstr ""
#: data/gtk/preferences.blp:360
msgid "API Key"
msgstr ""
#: data/gtk/preferences.blp:368
msgid "Use SteamGridDB"
msgstr ""
#: data/gtk/preferences.blp:369
msgid "Download images when adding or importing games"
msgstr ""
#: data/gtk/preferences.blp:373
msgid "Prefer Over Official Images"
msgstr ""
#: data/gtk/preferences.blp:377
msgid "Prefer Animated Images"
msgstr ""
#: data/gtk/preferences.blp:383
msgid "Update Covers"
msgstr ""
#: data/gtk/preferences.blp:384
msgid "Fetch covers for games already in your library"
msgstr ""
#: data/gtk/preferences.blp:389
msgid "Update"
msgstr ""
#: data/gtk/window.blp:6 data/gtk/window.blp:14
msgid "No Games Found"
msgstr ""
#: data/gtk/window.blp:7 data/gtk/window.blp:15
msgid "Try a different search"
msgstr ""
#: data/gtk/window.blp:21
msgid "No Games"
msgstr ""
#: data/gtk/window.blp:22
msgid "Use the + button to add games"
msgstr ""
#: data/gtk/window.blp:40
msgid "No Hidden Games"
msgstr ""
#: data/gtk/window.blp:41
msgid "Games you hide will appear here"
msgstr ""
#: data/gtk/window.blp:76 data/gtk/window.blp:113 cartridges/main.py:249
msgid "All Games"
msgstr ""
#: data/gtk/window.blp:140 cartridges/main.py:251
msgid "Added"
msgstr ""
#: data/gtk/window.blp:162
msgid "Imported"
msgstr ""
#: data/gtk/window.blp:260
msgid "Hidden Games"
msgstr ""
#: data/gtk/window.blp:368
msgid "Game Title"
msgstr ""
#: data/gtk/window.blp:425
msgid "Play"
msgstr ""
#: data/gtk/window.blp:502
msgid "Sort"
msgstr ""
#: data/gtk/window.blp:505
msgid "A-Z"
msgstr ""
#: data/gtk/window.blp:511
msgid "Z-A"
msgstr ""
#: data/gtk/window.blp:517
msgid "Newest"
msgstr ""
#: data/gtk/window.blp:523
msgid "Oldest"
msgstr ""
#: data/gtk/window.blp:529
msgid "Last Played"
msgstr ""
#: data/gtk/window.blp:536
msgid "Show Hidden"
msgstr ""
#: data/gtk/window.blp:545
msgid "About Cartridges"
msgstr ""
#: data/gtk/window.blp:562
msgid "IGDB"
msgstr ""
#: data/gtk/window.blp:564
msgid "ProtonDB"
msgstr ""
#: data/gtk/window.blp:566
msgid "HowLongToBeat"
msgstr ""
#. The variable is the title of the game
#: cartridges/main.py:226 cartridges/game.py:125
msgid "{} launched"
msgstr ""
#. Translators: Replace this with Your Name, Your Name <your.email@example.com>, or Your Name https://your-site.com for it to show up in the About dialog.
#: cartridges/main.py:291
msgid "translator-credits"
msgstr ""
#. The variable is the date when the game was added
#: cartridges/window.py:382
msgid "Added: {}"
msgstr ""
#: cartridges/window.py:385
msgid "Never"
msgstr ""
#. The variable is the date when the game was last played
#: cartridges/window.py:389
msgid "Last played: {}"
msgstr ""
#: cartridges/details_dialog.py:82
msgid "Apply"
msgstr ""
#: cartridges/details_dialog.py:88
msgid "Add New Game"
msgstr ""
#: cartridges/details_dialog.py:89
msgid "Add"
msgstr ""
#: cartridges/details_dialog.py:102
msgid "Executables"
msgstr ""
#. Translate this string as you would translate "file"
#: cartridges/details_dialog.py:117
msgid "file.txt"
msgstr ""
#. As in software
#: cartridges/details_dialog.py:119
msgid "program"
msgstr ""
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:124 cartridges/details_dialog.py:126
msgid "C:\\path\\to\\{}"
msgstr ""
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:130 cartridges/details_dialog.py:132
msgid "/path/to/{}"
msgstr ""
#: cartridges/details_dialog.py:137
msgid ""
"To launch the executable \"{}\", use the command:\n"
"\n"
"<tt>\"{}\"</tt>\n"
"\n"
"To open the file \"{}\" with the default application, use:\n"
"\n"
"<tt>{} \"{}\"</tt>\n"
"\n"
"If the path contains spaces, make sure to wrap it in double quotes!"
msgstr ""
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:185
msgid "Couldn't Add Game"
msgstr ""
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:221
msgid "Game title cannot be empty."
msgstr ""
#: cartridges/details_dialog.py:185 cartridges/details_dialog.py:229
msgid "Executable cannot be empty."
msgstr ""
#: cartridges/details_dialog.py:220 cartridges/details_dialog.py:228
msgid "Couldn't Apply Preferences"
msgstr ""
#. The variable is the title of the game
#: cartridges/game.py:139
msgid "{} hidden"
msgstr ""
#: cartridges/game.py:139
msgid "{} unhidden"
msgstr ""
#. The variable is the title of the game
#: cartridges/game.py:153
msgid "{} removed"
msgstr ""
#: cartridges/preferences.py:136
msgid "All games removed"
msgstr ""
#: cartridges/preferences.py:188
msgid ""
"An API key is required to use SteamGridDB. You can generate one {}here{}."
msgstr ""
#: cartridges/preferences.py:203
msgid "Downloading covers…"
msgstr ""
#: cartridges/preferences.py:222
msgid "Covers updated"
msgstr ""
#: cartridges/preferences.py:370
msgid "Installation Not Found"
msgstr ""
#: cartridges/preferences.py:371
msgid "Select a valid directory"
msgstr ""
#: cartridges/preferences.py:407 cartridges/importer/importer.py:317
msgid "Warning"
msgstr ""
#: cartridges/preferences.py:441
msgid "Invalid Directory"
msgstr ""
#: cartridges/preferences.py:447
msgid "Set Location"
msgstr ""
#: cartridges/utils/create_dialog.py:33 cartridges/importer/importer.py:318
msgid "Dismiss"
msgstr ""
#: cartridges/utils/relative_date.py:30
msgid "Today"
msgstr ""
#: cartridges/utils/relative_date.py:32
msgid "Yesterday"
msgstr ""
#: cartridges/utils/relative_date.py:36
msgid "Last Week"
msgstr ""
#: cartridges/utils/relative_date.py:38
msgid "This Month"
msgstr ""
#: cartridges/utils/relative_date.py:40
msgid "Last Month"
msgstr ""
#: cartridges/utils/relative_date.py:44
msgid "Last Year"
msgstr ""
#: cartridges/importer/importer.py:144
msgid "Importing Games…"
msgstr ""
#: cartridges/importer/importer.py:337
msgid "The following errors occured during import:"
msgstr ""
#: cartridges/importer/importer.py:366
msgid "No new games found"
msgstr ""
#. The variable is the number of games.
#: cartridges/importer/importer.py:379
msgid "{} game imported"
msgid_plural "{} games imported"
msgstr[0] ""
msgstr[1] ""
#. The variable is the number of games. This text comes after "{0} games imported".
#: cartridges/importer/importer.py:383
msgid ", {} removed"
msgid_plural ", {} removed"
msgstr[0] ""
msgstr[1] ""
#. The variable is the name of the source
#: cartridges/importer/location.py:34
msgid "Select the {} cache directory."
msgstr ""
#. The variable is the name of the source
#: cartridges/importer/location.py:36
msgid "Select the {} configuration directory."
msgstr ""
#. The variable is the name of the source
#: cartridges/importer/location.py:38
msgid "Select the {} data directory."
msgstr ""
#: cartridges/importer/retroarch_source.py:129
msgid "No RetroArch Core Selected"
msgstr ""
#. The variable is a newline separated list of playlists
#: cartridges/importer/retroarch_source.py:131
msgid "The following playlists have no default core:"
msgstr ""
#: cartridges/importer/retroarch_source.py:133
msgid "Games with no core selected were not imported"
msgstr ""
#: cartridges/store/managers/sgdb_manager.py:46
msgid "Couldn't Authenticate SteamGridDB"
msgstr ""
#: cartridges/store/managers/sgdb_manager.py:47
msgid "Verify your API key in preferences"
msgstr ""

686
po/ie.po
View File

@@ -1,686 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR kramo
# This file is distributed under the same license as the Cartridges package.
# OIS <mistresssilvara@hotmail.com>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: Cartridges\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-11-05 14:01+0100\n"
"PO-Revision-Date: 2024-09-13 15:09+0000\n"
"Last-Translator: OIS <mistresssilvara@hotmail.com>\n"
"Language-Team: Occidental <https://hosted.weblate.org/projects/cartridges/"
"cartridges/ie/>\n"
"Language: ie\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.8-dev\n"
#: data/page.kramo.Cartridges.desktop.in:3
#: data/page.kramo.Cartridges.metainfo.xml.in:9
#: data/page.kramo.Cartridges.metainfo.xml.in:40 data/gtk/window.blp:47
#: data/gtk/window.blp:83
msgid "Cartridges"
msgstr "Cartridges"
#: data/page.kramo.Cartridges.desktop.in:4
msgid "Game Launcher"
msgstr "Lansator de ludes"
#: data/page.kramo.Cartridges.desktop.in:5
#: data/page.kramo.Cartridges.metainfo.xml.in:10
msgid "Launch all your games"
msgstr "Lansar vor ludes"
#: data/page.kramo.Cartridges.desktop.in:11
msgid ""
"gaming;launcher;steam;lutris;heroic;bottles;itch;flatpak;legendary;retroarch;"
msgstr ""
"ludes;lansator;steam;lutris;heroic;bottles;itch;flatpak;legendary;retroarch;"
#: data/page.kramo.Cartridges.metainfo.xml.in:12
msgid ""
"Cartridges is a simple game launcher for all of your games. It has support "
"for importing games from Steam, Lutris, Heroic and more with no login "
"necessary. You can sort and hide games or download cover art from "
"SteamGridDB."
msgstr ""
"Cartridges es un simplic lansator por vor ludes. It supporta importation de "
"ludes de Steam, Lutris, Heroic e plu sin inregistration. On posse celar e "
"ordinar ludes o descargar covrimentes de SteamGridDB."
#: data/page.kramo.Cartridges.metainfo.xml.in:44 data/gtk/window.blp:320
#: cartridges/details_dialog.py:77
msgid "Game Details"
msgstr "Detallies del lude"
#: data/page.kramo.Cartridges.metainfo.xml.in:48
msgid "Edit Game Details"
msgstr "Redacter li detallies del lude"
#: data/page.kramo.Cartridges.metainfo.xml.in:52 data/gtk/help-overlay.blp:19
#: data/gtk/window.blp:543 cartridges/details_dialog.py:279
#: cartridges/importer/importer.py:319 cartridges/importer/importer.py:369
msgid "Preferences"
msgstr "Preferenties"
#: data/gtk/details-dialog.blp:15
msgid "Cancel"
msgstr "Anullar"
#: data/gtk/details-dialog.blp:45
msgid "New Cover"
msgstr "Nov covriment"
#: data/gtk/details-dialog.blp:64
msgid "Delete Cover"
msgstr "Remover li covriment"
#: data/gtk/details-dialog.blp:92 data/gtk/game.blp:80
msgid "Title"
msgstr "Titul"
#: data/gtk/details-dialog.blp:96
msgid "Developer (optional)"
msgstr "Developator (facultativ)"
#: data/gtk/details-dialog.blp:102
msgid "Executable"
msgstr "Executibile"
#: data/gtk/details-dialog.blp:108
msgid "Select File"
msgstr "Selecter un file"
#: data/gtk/details-dialog.blp:119
msgid "More Info"
msgstr "Plu information"
#: data/gtk/game.blp:101 data/gtk/game.blp:109 data/gtk/window.blp:444
msgid "Edit"
msgstr "Redacter"
#: data/gtk/game.blp:102 cartridges/window.py:359
msgid "Hide"
msgstr "Celar"
#: data/gtk/game.blp:103 data/gtk/game.blp:111 data/gtk/window.blp:464
msgid "Remove"
msgstr "Remover"
#: data/gtk/game.blp:110 cartridges/window.py:361
msgid "Unhide"
msgstr "Revelar"
#: data/gtk/help-overlay.blp:11 data/gtk/preferences.blp:9
msgid "General"
msgstr "General"
#: data/gtk/help-overlay.blp:14 data/gtk/window.blp:207 data/gtk/window.blp:223
#: data/gtk/window.blp:274 data/gtk/window.blp:290 data/gtk/window.blp:475
msgid "Search"
msgstr "Serchar"
#: data/gtk/help-overlay.blp:24 data/gtk/window.blp:544
msgid "Keyboard Shortcuts"
msgstr "Rapid-tastes"
#: data/gtk/help-overlay.blp:29 cartridges/game.py:103
#: cartridges/preferences.py:137 cartridges/importer/importer.py:386
msgid "Undo"
msgstr "Defar"
#: data/gtk/help-overlay.blp:34
msgid "Quit"
msgstr "Surtir"
#: data/gtk/help-overlay.blp:39 data/gtk/window.blp:92 data/gtk/window.blp:187
msgid "Toggle Sidebar"
msgstr "Panel lateral"
#: data/gtk/help-overlay.blp:44 data/gtk/window.blp:200 data/gtk/window.blp:267
msgid "Main Menu"
msgstr "Menú principal"
#: data/gtk/help-overlay.blp:50
msgid "Games"
msgstr "Ludes"
#: data/gtk/help-overlay.blp:53 data/gtk/window.blp:193 data/gtk/window.blp:551
msgid "Add Game"
msgstr "Adjunter un lude"
#: data/gtk/help-overlay.blp:58 data/gtk/preferences.blp:58
#: data/gtk/window.blp:27 data/gtk/window.blp:555
msgid "Import"
msgstr "Importar"
#: data/gtk/help-overlay.blp:63
msgid "Show Hidden Games"
msgstr "Monstrar celat ludes"
#: data/gtk/help-overlay.blp:68
msgid "Remove Game"
msgstr "Remover li lude"
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:62
#: data/gtk/preferences.blp:365
msgid "Behavior"
msgstr "Conduida"
#: data/gtk/preferences.blp:16
msgid "Exit After Launching Games"
msgstr "Surtir pos que lansar un lude"
#: data/gtk/preferences.blp:20
msgid "Cover Image Launches Game"
msgstr ""
#: data/gtk/preferences.blp:21
msgid "Swaps the behavior of the cover image and the play button"
msgstr ""
#: data/gtk/preferences.blp:26 cartridges/details_dialog.py:91
msgid "Images"
msgstr "Images"
#: data/gtk/preferences.blp:29
msgid "High Quality Images"
msgstr ""
#: data/gtk/preferences.blp:30
msgid "Save game covers losslessly at the cost of storage"
msgstr ""
#: data/gtk/preferences.blp:35
msgid "Danger Zone"
msgstr ""
#: data/gtk/preferences.blp:39
msgid "Remove All Games"
msgstr "Remover omni ludes"
#: data/gtk/preferences.blp:65
msgid "Import Games Automatically"
msgstr ""
#: data/gtk/preferences.blp:69
msgid "Remove Uninstalled Games"
msgstr "Remover desinstallat ludes"
#: data/gtk/preferences.blp:74
msgid "Sources"
msgstr "Orígines"
#: data/gtk/preferences.blp:78 cartridges/importer/steam_source.py:114
msgid "Steam"
msgstr "Steam"
#: data/gtk/preferences.blp:87 data/gtk/preferences.blp:114
#: data/gtk/preferences.blp:149 data/gtk/preferences.blp:192
#: data/gtk/preferences.blp:219 data/gtk/preferences.blp:246
#: data/gtk/preferences.blp:273
msgid "Install Location"
msgstr "Localisation de installation"
#: data/gtk/preferences.blp:105 data/gtk/window.blp:565
#: cartridges/importer/lutris_source.py:107
msgid "Lutris"
msgstr "Lutris"
#: data/gtk/preferences.blp:131
msgid "Import Steam Games"
msgstr "Importar ludes de Steam"
#: data/gtk/preferences.blp:135
msgid "Import Flatpak Games"
msgstr "Importar ludes Flatpak"
#: data/gtk/preferences.blp:140 cartridges/importer/heroic_source.py:355
msgid "Heroic"
msgstr "Heroic"
#: data/gtk/preferences.blp:166
msgid "Import Epic Games"
msgstr "Importar ludes de Epic"
#: data/gtk/preferences.blp:170
msgid "Import GOG Games"
msgstr "Importar ludes de GOG"
#: data/gtk/preferences.blp:174
msgid "Import Amazon Games"
msgstr "Importar ludes de Amazon"
#: data/gtk/preferences.blp:178
msgid "Import Sideloaded Games"
msgstr ""
#: data/gtk/preferences.blp:183 cartridges/importer/bottles_source.py:86
msgid "Bottles"
msgstr "Botelles"
#: data/gtk/preferences.blp:210 cartridges/importer/itch_source.py:81
msgid "itch"
msgstr "itch"
#: data/gtk/preferences.blp:237 cartridges/importer/legendary_source.py:97
msgid "Legendary"
msgstr "Legendary"
#: data/gtk/preferences.blp:264 cartridges/importer/retroarch_source.py:142
msgid "RetroArch"
msgstr "RetroArch"
#: data/gtk/preferences.blp:291 cartridges/importer/flatpak_source.py:143
msgid "Flatpak"
msgstr "Flatpak"
#. The location of the system-wide data directory
#: data/gtk/preferences.blp:301
msgid "System Location"
msgstr "Localisation del sistema"
#. The location of the user-specific data directory
#: data/gtk/preferences.blp:319
msgid "User Location"
msgstr "Localisation del usator"
#: data/gtk/preferences.blp:336
msgid "Import Game Launchers"
msgstr "Importar lansatores de ludes"
#: data/gtk/preferences.blp:341 cartridges/importer/desktop_source.py:215
msgid "Desktop Entries"
msgstr "Files desktop"
#: data/gtk/preferences.blp:353 data/gtk/window.blp:563
msgid "SteamGridDB"
msgstr "SteamGridDB"
#: data/gtk/preferences.blp:357
msgid "Authentication"
msgstr "Autentication"
#: data/gtk/preferences.blp:360
msgid "API Key"
msgstr "Clave de API"
#: data/gtk/preferences.blp:368
msgid "Use SteamGridDB"
msgstr "Usar SteamGridDB"
#: data/gtk/preferences.blp:369
msgid "Download images when adding or importing games"
msgstr "Descargar images quande on adjunte o importa ludes"
#: data/gtk/preferences.blp:373
msgid "Prefer Over Official Images"
msgstr ""
#: data/gtk/preferences.blp:377
msgid "Prefer Animated Images"
msgstr ""
#: data/gtk/preferences.blp:383
msgid "Update Covers"
msgstr "Actualisar covrimentes"
#: data/gtk/preferences.blp:384
msgid "Fetch covers for games already in your library"
msgstr "Obtener covrimentes por ludes in vor biblioteca"
#: data/gtk/preferences.blp:389
msgid "Update"
msgstr "Actualisar"
#: data/gtk/window.blp:6 data/gtk/window.blp:14
msgid "No Games Found"
msgstr "Null ludes trovat"
#: data/gtk/window.blp:7 data/gtk/window.blp:15
msgid "Try a different search"
msgstr "Ples provar un altri sercha"
#: data/gtk/window.blp:21
msgid "No Games"
msgstr "Null ludes"
#: data/gtk/window.blp:22
msgid "Use the + button to add games"
msgstr "Usar li buton + por adjunter ludes"
#: data/gtk/window.blp:40
msgid "No Hidden Games"
msgstr "Null celat ludes"
#: data/gtk/window.blp:41
msgid "Games you hide will appear here"
msgstr "Ludes celat de vos va aparir ci ti"
#: data/gtk/window.blp:76 data/gtk/window.blp:113 cartridges/main.py:249
msgid "All Games"
msgstr "Omni ludes"
#: data/gtk/window.blp:140 cartridges/main.py:251
msgid "Added"
msgstr "Adjuntet"
#: data/gtk/window.blp:162
msgid "Imported"
msgstr "Importat"
#: data/gtk/window.blp:260
msgid "Hidden Games"
msgstr "Celat ludes"
#: data/gtk/window.blp:368
msgid "Game Title"
msgstr "Titul del lude"
#: data/gtk/window.blp:425
msgid "Play"
msgstr "Luder"
#: data/gtk/window.blp:502
msgid "Sort"
msgstr "Ordinar"
#: data/gtk/window.blp:505
msgid "A-Z"
msgstr "A-Z"
#: data/gtk/window.blp:511
msgid "Z-A"
msgstr "Z-A"
#: data/gtk/window.blp:517
msgid "Newest"
msgstr "Plu recent"
#: data/gtk/window.blp:523
msgid "Oldest"
msgstr "Plu old"
#: data/gtk/window.blp:529
msgid "Last Played"
msgstr "Ludet"
#: data/gtk/window.blp:536
msgid "Show Hidden"
msgstr "Revelar celat"
#: data/gtk/window.blp:545
msgid "About Cartridges"
msgstr "Pri Cartridges"
#: data/gtk/window.blp:562
msgid "IGDB"
msgstr "IGDB"
#: data/gtk/window.blp:564
msgid "ProtonDB"
msgstr "ProtonDB"
#: data/gtk/window.blp:566
msgid "HowLongToBeat"
msgstr "HowLongToBeat"
#. The variable is the title of the game
#: cartridges/main.py:226 cartridges/game.py:125
msgid "{} launched"
msgstr "{} ea lansat"
#. Translators: Replace this with Your Name, Your Name <your.email@example.com>, or Your Name https://your-site.com for it to show up in the About dialog.
#: cartridges/main.py:291
msgid "translator-credits"
msgstr "OIS <mistresssilvara@hotmail.com>"
#. The variable is the date when the game was added
#: cartridges/window.py:382
msgid "Added: {}"
msgstr "Adjuntet: {}"
#: cartridges/window.py:385
msgid "Never"
msgstr "Nequande"
#. The variable is the date when the game was last played
#: cartridges/window.py:389
msgid "Last played: {}"
msgstr "Ludet: {}"
#: cartridges/details_dialog.py:82
msgid "Apply"
msgstr "Applicar"
#: cartridges/details_dialog.py:88
msgid "Add New Game"
msgstr "Adjunter un nov lude"
#: cartridges/details_dialog.py:89
msgid "Add"
msgstr "Adjunter"
#: cartridges/details_dialog.py:102
msgid "Executables"
msgstr "Executibiles"
#. Translate this string as you would translate "file"
#: cartridges/details_dialog.py:117
msgid "file.txt"
msgstr "file.txt"
#. As in software
#: cartridges/details_dialog.py:119
msgid "program"
msgstr "programma"
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:124 cartridges/details_dialog.py:126
msgid "C:\\path\\to\\{}"
msgstr "C:\\rute\\a\\{}"
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:130 cartridges/details_dialog.py:132
msgid "/path/to/{}"
msgstr "/rute/a/{}"
#: cartridges/details_dialog.py:137
msgid ""
"To launch the executable \"{}\", use the command:\n"
"\n"
"<tt>\"{}\"</tt>\n"
"\n"
"To open the file \"{}\" with the default application, use:\n"
"\n"
"<tt>{} \"{}\"</tt>\n"
"\n"
"If the path contains spaces, make sure to wrap it in double quotes!"
msgstr ""
"Por lansar li executibile «{}» usa li commande:\n"
"\n"
"<tt>\"{}\"</tt>\n"
"\n"
"Por aperter li file «{}» med li application predefinit, usa:\n"
"\n"
"<tt>{} \"{}\"</tt>\n"
"\n"
"Si li rute contene spacies, metter it in signes de citation (\"\")!"
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:185
msgid "Couldn't Add Game"
msgstr "Ne successat adjunter un lude"
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:221
msgid "Game title cannot be empty."
msgstr "Li titul ne posse esser vacui."
#: cartridges/details_dialog.py:185 cartridges/details_dialog.py:229
msgid "Executable cannot be empty."
msgstr "Li executibile es besonat."
#: cartridges/details_dialog.py:220 cartridges/details_dialog.py:228
msgid "Couldn't Apply Preferences"
msgstr "Ne successat adjunter li preferenties"
#. The variable is the title of the game
#: cartridges/game.py:139
msgid "{} hidden"
msgstr "{} celat"
#: cartridges/game.py:139
msgid "{} unhidden"
msgstr "{} revelat"
#. The variable is the title of the game
#: cartridges/game.py:153
#, fuzzy
msgid "{} removed"
msgstr "{} sta removet"
#: cartridges/preferences.py:136
msgid "All games removed"
msgstr "Omni ludes sta removet"
#: cartridges/preferences.py:188
msgid ""
"An API key is required to use SteamGridDB. You can generate one {}here{}."
msgstr ""
"Un clave de API es besonat por SteamGridDB. Vu posse generar ún {}ci ti{}."
#: cartridges/preferences.py:203
msgid "Downloading covers…"
msgstr "Descarga de covrimentes…"
#: cartridges/preferences.py:222
msgid "Covers updated"
msgstr "Li covrimentes sta actualisat"
#: cartridges/preferences.py:370
msgid "Installation Not Found"
msgstr "Installation ne es trovat"
#: cartridges/preferences.py:371
msgid "Select a valid directory"
msgstr "Ples selecter un valid categorie"
#: cartridges/preferences.py:407 cartridges/importer/importer.py:317
msgid "Warning"
msgstr "Avise"
#: cartridges/preferences.py:441
msgid "Invalid Directory"
msgstr "Ínvalid fólder"
#: cartridges/preferences.py:447
msgid "Set Location"
msgstr "Assignar li localisation"
#: cartridges/utils/create_dialog.py:33 cartridges/importer/importer.py:318
msgid "Dismiss"
msgstr "Demisser"
#: cartridges/utils/relative_date.py:30
msgid "Today"
msgstr ""
#: cartridges/utils/relative_date.py:32
msgid "Yesterday"
msgstr ""
#: cartridges/utils/relative_date.py:36
#, fuzzy
msgid "Last Week"
msgstr "Ludet"
#: cartridges/utils/relative_date.py:38
msgid "This Month"
msgstr ""
#: cartridges/utils/relative_date.py:40
msgid "Last Month"
msgstr ""
#: cartridges/utils/relative_date.py:44
#, fuzzy
msgid "Last Year"
msgstr "Ludet"
#: cartridges/importer/importer.py:144
msgid "Importing Games…"
msgstr "Importation de ludes…"
#: cartridges/importer/importer.py:337
msgid "The following errors occured during import:"
msgstr "Li sequent errorees evenit durante li importation:"
#: cartridges/importer/importer.py:366
msgid "No new games found"
msgstr "Null nov ludes trovat"
#. The variable is the number of games.
#: cartridges/importer/importer.py:379
#, fuzzy
msgid "{} game imported"
msgid_plural "{} games imported"
msgstr[0] "{} ludes sta importat"
msgstr[1] "{} ludes sta importat"
#. The variable is the number of games. This text comes after "{0} games imported".
#: cartridges/importer/importer.py:383
#, fuzzy
msgid ", {} removed"
msgid_plural ", {} removed"
msgstr[0] "{} sta removet"
msgstr[1] "{} sta removet"
#. The variable is the name of the source
#: cartridges/importer/location.py:34
msgid "Select the {} cache directory."
msgstr "Selecte li fólder de cache de {}."
#. The variable is the name of the source
#: cartridges/importer/location.py:36
msgid "Select the {} configuration directory."
msgstr "Selecte li fólder de configuration de {}."
#. The variable is the name of the source
#: cartridges/importer/location.py:38
msgid "Select the {} data directory."
msgstr "Selecte li fólder de data de {}."
#: cartridges/importer/retroarch_source.py:129
msgid "No RetroArch Core Selected"
msgstr "Null nucleos de RetroArch es selectet"
#. The variable is a newline separated list of playlists
#: cartridges/importer/retroarch_source.py:131
msgid "The following playlists have no default core:"
msgstr "Li sequent playlistes ne have un predefinit nucleo:"
#: cartridges/importer/retroarch_source.py:133
msgid "Games with no core selected were not imported"
msgstr "Ludes sin selectet nucleo ne va esser importat"
#: cartridges/store/managers/sgdb_manager.py:46
msgid "Couldn't Authenticate SteamGridDB"
msgstr "Autentication ínvalid de SteamGridDB"
#: cartridges/store/managers/sgdb_manager.py:47
msgid "Verify your API key in preferences"
msgstr "Ples controlar vor clave de API in li preferenties"
#, fuzzy
#~ msgid "1 game imported"
#~ msgid_plural "{} games imported"
#~ msgstr[0] "1 lude sta importat"
#~ msgstr[1] "{} ludes sta importat"
#, fuzzy
#~ msgid "1 removed"
#~ msgid_plural "{} removed"
#~ msgstr[0] "1 removet"
#~ msgstr[1] "{} removet"

693
po/it.po

File diff suppressed because it is too large Load Diff

653
po/ja.po
View File

@@ -1,653 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR kramo
# This file is distributed under the same license as the Cartridges package.
# Scott Anecito <scott.anecito@linux.com>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: Cartridges\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-11-05 14:01+0100\n"
"PO-Revision-Date: 2024-01-16 06:06+0000\n"
"Last-Translator: Scott Anecito <scott.anecito@linux.com>\n"
"Language-Team: Japanese <https://hosted.weblate.org/projects/cartridges/"
"cartridges/ja/>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 5.4-dev\n"
#: data/page.kramo.Cartridges.desktop.in:3
#: data/page.kramo.Cartridges.metainfo.xml.in:9
#: data/page.kramo.Cartridges.metainfo.xml.in:40 data/gtk/window.blp:47
#: data/gtk/window.blp:83
msgid "Cartridges"
msgstr "カートリッジズ"
#: data/page.kramo.Cartridges.desktop.in:4
msgid "Game Launcher"
msgstr ""
#: data/page.kramo.Cartridges.desktop.in:5
#: data/page.kramo.Cartridges.metainfo.xml.in:10
msgid "Launch all your games"
msgstr ""
#: data/page.kramo.Cartridges.desktop.in:11
msgid ""
"gaming;launcher;steam;lutris;heroic;bottles;itch;flatpak;legendary;retroarch;"
msgstr ""
#: data/page.kramo.Cartridges.metainfo.xml.in:12
msgid ""
"Cartridges is a simple game launcher for all of your games. It has support "
"for importing games from Steam, Lutris, Heroic and more with no login "
"necessary. You can sort and hide games or download cover art from "
"SteamGridDB."
msgstr ""
#: data/page.kramo.Cartridges.metainfo.xml.in:44 data/gtk/window.blp:320
#: cartridges/details_dialog.py:77
msgid "Game Details"
msgstr ""
#: data/page.kramo.Cartridges.metainfo.xml.in:48
msgid "Edit Game Details"
msgstr ""
#: data/page.kramo.Cartridges.metainfo.xml.in:52 data/gtk/help-overlay.blp:19
#: data/gtk/window.blp:543 cartridges/details_dialog.py:279
#: cartridges/importer/importer.py:319 cartridges/importer/importer.py:369
msgid "Preferences"
msgstr ""
#: data/gtk/details-dialog.blp:15
msgid "Cancel"
msgstr "キャンセル"
#: data/gtk/details-dialog.blp:45
msgid "New Cover"
msgstr ""
#: data/gtk/details-dialog.blp:64
msgid "Delete Cover"
msgstr ""
#: data/gtk/details-dialog.blp:92 data/gtk/game.blp:80
msgid "Title"
msgstr ""
#: data/gtk/details-dialog.blp:96
msgid "Developer (optional)"
msgstr ""
#: data/gtk/details-dialog.blp:102
msgid "Executable"
msgstr ""
#: data/gtk/details-dialog.blp:108
msgid "Select File"
msgstr ""
#: data/gtk/details-dialog.blp:119
msgid "More Info"
msgstr ""
#: data/gtk/game.blp:101 data/gtk/game.blp:109 data/gtk/window.blp:444
msgid "Edit"
msgstr ""
#: data/gtk/game.blp:102 cartridges/window.py:359
msgid "Hide"
msgstr ""
#: data/gtk/game.blp:103 data/gtk/game.blp:111 data/gtk/window.blp:464
msgid "Remove"
msgstr ""
#: data/gtk/game.blp:110 cartridges/window.py:361
msgid "Unhide"
msgstr ""
#: data/gtk/help-overlay.blp:11 data/gtk/preferences.blp:9
msgid "General"
msgstr ""
#: data/gtk/help-overlay.blp:14 data/gtk/window.blp:207 data/gtk/window.blp:223
#: data/gtk/window.blp:274 data/gtk/window.blp:290 data/gtk/window.blp:475
msgid "Search"
msgstr ""
#: data/gtk/help-overlay.blp:24 data/gtk/window.blp:544
msgid "Keyboard Shortcuts"
msgstr ""
#: data/gtk/help-overlay.blp:29 cartridges/game.py:103
#: cartridges/preferences.py:137 cartridges/importer/importer.py:386
msgid "Undo"
msgstr ""
#: data/gtk/help-overlay.blp:34
msgid "Quit"
msgstr "終了"
#: data/gtk/help-overlay.blp:39 data/gtk/window.blp:92 data/gtk/window.blp:187
msgid "Toggle Sidebar"
msgstr ""
#: data/gtk/help-overlay.blp:44 data/gtk/window.blp:200 data/gtk/window.blp:267
msgid "Main Menu"
msgstr ""
#: data/gtk/help-overlay.blp:50
msgid "Games"
msgstr ""
#: data/gtk/help-overlay.blp:53 data/gtk/window.blp:193 data/gtk/window.blp:551
msgid "Add Game"
msgstr ""
#: data/gtk/help-overlay.blp:58 data/gtk/preferences.blp:58
#: data/gtk/window.blp:27 data/gtk/window.blp:555
msgid "Import"
msgstr ""
#: data/gtk/help-overlay.blp:63
msgid "Show Hidden Games"
msgstr ""
#: data/gtk/help-overlay.blp:68
msgid "Remove Game"
msgstr ""
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:62
#: data/gtk/preferences.blp:365
msgid "Behavior"
msgstr ""
#: data/gtk/preferences.blp:16
msgid "Exit After Launching Games"
msgstr ""
#: data/gtk/preferences.blp:20
msgid "Cover Image Launches Game"
msgstr ""
#: data/gtk/preferences.blp:21
msgid "Swaps the behavior of the cover image and the play button"
msgstr ""
#: data/gtk/preferences.blp:26 cartridges/details_dialog.py:91
msgid "Images"
msgstr ""
#: data/gtk/preferences.blp:29
msgid "High Quality Images"
msgstr ""
#: data/gtk/preferences.blp:30
msgid "Save game covers losslessly at the cost of storage"
msgstr ""
#: data/gtk/preferences.blp:35
msgid "Danger Zone"
msgstr ""
#: data/gtk/preferences.blp:39
msgid "Remove All Games"
msgstr ""
#: data/gtk/preferences.blp:65
msgid "Import Games Automatically"
msgstr ""
#: data/gtk/preferences.blp:69
msgid "Remove Uninstalled Games"
msgstr ""
#: data/gtk/preferences.blp:74
msgid "Sources"
msgstr ""
#: data/gtk/preferences.blp:78 cartridges/importer/steam_source.py:114
msgid "Steam"
msgstr ""
#: data/gtk/preferences.blp:87 data/gtk/preferences.blp:114
#: data/gtk/preferences.blp:149 data/gtk/preferences.blp:192
#: data/gtk/preferences.blp:219 data/gtk/preferences.blp:246
#: data/gtk/preferences.blp:273
msgid "Install Location"
msgstr ""
#: data/gtk/preferences.blp:105 data/gtk/window.blp:565
#: cartridges/importer/lutris_source.py:107
msgid "Lutris"
msgstr ""
#: data/gtk/preferences.blp:131
msgid "Import Steam Games"
msgstr ""
#: data/gtk/preferences.blp:135
msgid "Import Flatpak Games"
msgstr ""
#: data/gtk/preferences.blp:140 cartridges/importer/heroic_source.py:355
msgid "Heroic"
msgstr ""
#: data/gtk/preferences.blp:166
msgid "Import Epic Games"
msgstr ""
#: data/gtk/preferences.blp:170
msgid "Import GOG Games"
msgstr ""
#: data/gtk/preferences.blp:174
msgid "Import Amazon Games"
msgstr ""
#: data/gtk/preferences.blp:178
msgid "Import Sideloaded Games"
msgstr ""
#: data/gtk/preferences.blp:183 cartridges/importer/bottles_source.py:86
msgid "Bottles"
msgstr ""
#: data/gtk/preferences.blp:210 cartridges/importer/itch_source.py:81
msgid "itch"
msgstr ""
#: data/gtk/preferences.blp:237 cartridges/importer/legendary_source.py:97
msgid "Legendary"
msgstr ""
#: data/gtk/preferences.blp:264 cartridges/importer/retroarch_source.py:142
msgid "RetroArch"
msgstr ""
#: data/gtk/preferences.blp:291 cartridges/importer/flatpak_source.py:143
msgid "Flatpak"
msgstr ""
#. The location of the system-wide data directory
#: data/gtk/preferences.blp:301
msgid "System Location"
msgstr ""
#. The location of the user-specific data directory
#: data/gtk/preferences.blp:319
msgid "User Location"
msgstr ""
#: data/gtk/preferences.blp:336
msgid "Import Game Launchers"
msgstr ""
#: data/gtk/preferences.blp:341 cartridges/importer/desktop_source.py:215
msgid "Desktop Entries"
msgstr ""
#: data/gtk/preferences.blp:353 data/gtk/window.blp:563
msgid "SteamGridDB"
msgstr ""
#: data/gtk/preferences.blp:357
msgid "Authentication"
msgstr ""
#: data/gtk/preferences.blp:360
msgid "API Key"
msgstr ""
#: data/gtk/preferences.blp:368
msgid "Use SteamGridDB"
msgstr ""
#: data/gtk/preferences.blp:369
msgid "Download images when adding or importing games"
msgstr ""
#: data/gtk/preferences.blp:373
msgid "Prefer Over Official Images"
msgstr ""
#: data/gtk/preferences.blp:377
msgid "Prefer Animated Images"
msgstr ""
#: data/gtk/preferences.blp:383
msgid "Update Covers"
msgstr ""
#: data/gtk/preferences.blp:384
msgid "Fetch covers for games already in your library"
msgstr ""
#: data/gtk/preferences.blp:389
msgid "Update"
msgstr ""
#: data/gtk/window.blp:6 data/gtk/window.blp:14
msgid "No Games Found"
msgstr ""
#: data/gtk/window.blp:7 data/gtk/window.blp:15
msgid "Try a different search"
msgstr ""
#: data/gtk/window.blp:21
msgid "No Games"
msgstr ""
#: data/gtk/window.blp:22
msgid "Use the + button to add games"
msgstr ""
#: data/gtk/window.blp:40
msgid "No Hidden Games"
msgstr ""
#: data/gtk/window.blp:41
msgid "Games you hide will appear here"
msgstr ""
#: data/gtk/window.blp:76 data/gtk/window.blp:113 cartridges/main.py:249
msgid "All Games"
msgstr ""
#: data/gtk/window.blp:140 cartridges/main.py:251
msgid "Added"
msgstr ""
#: data/gtk/window.blp:162
msgid "Imported"
msgstr ""
#: data/gtk/window.blp:260
msgid "Hidden Games"
msgstr ""
#: data/gtk/window.blp:368
msgid "Game Title"
msgstr ""
#: data/gtk/window.blp:425
msgid "Play"
msgstr ""
#: data/gtk/window.blp:502
msgid "Sort"
msgstr ""
#: data/gtk/window.blp:505
msgid "A-Z"
msgstr ""
#: data/gtk/window.blp:511
msgid "Z-A"
msgstr ""
#: data/gtk/window.blp:517
msgid "Newest"
msgstr ""
#: data/gtk/window.blp:523
msgid "Oldest"
msgstr ""
#: data/gtk/window.blp:529
msgid "Last Played"
msgstr ""
#: data/gtk/window.blp:536
msgid "Show Hidden"
msgstr ""
#: data/gtk/window.blp:545
msgid "About Cartridges"
msgstr ""
#: data/gtk/window.blp:562
msgid "IGDB"
msgstr "IGDB"
#: data/gtk/window.blp:564
msgid "ProtonDB"
msgstr "ProtonDB"
#: data/gtk/window.blp:566
msgid "HowLongToBeat"
msgstr ""
#. The variable is the title of the game
#: cartridges/main.py:226 cartridges/game.py:125
msgid "{} launched"
msgstr ""
#. Translators: Replace this with Your Name, Your Name <your.email@example.com>, or Your Name https://your-site.com for it to show up in the About dialog.
#: cartridges/main.py:291
msgid "translator-credits"
msgstr ""
#. The variable is the date when the game was added
#: cartridges/window.py:382
msgid "Added: {}"
msgstr ""
#: cartridges/window.py:385
msgid "Never"
msgstr ""
#. The variable is the date when the game was last played
#: cartridges/window.py:389
msgid "Last played: {}"
msgstr ""
#: cartridges/details_dialog.py:82
msgid "Apply"
msgstr "適用"
#: cartridges/details_dialog.py:88
msgid "Add New Game"
msgstr ""
#: cartridges/details_dialog.py:89
msgid "Add"
msgstr ""
#: cartridges/details_dialog.py:102
msgid "Executables"
msgstr ""
#. Translate this string as you would translate "file"
#: cartridges/details_dialog.py:117
msgid "file.txt"
msgstr "ファイル.txt"
#. As in software
#: cartridges/details_dialog.py:119
msgid "program"
msgstr ""
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:124 cartridges/details_dialog.py:126
msgid "C:\\path\\to\\{}"
msgstr ""
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:130 cartridges/details_dialog.py:132
msgid "/path/to/{}"
msgstr ""
#: cartridges/details_dialog.py:137
msgid ""
"To launch the executable \"{}\", use the command:\n"
"\n"
"<tt>\"{}\"</tt>\n"
"\n"
"To open the file \"{}\" with the default application, use:\n"
"\n"
"<tt>{} \"{}\"</tt>\n"
"\n"
"If the path contains spaces, make sure to wrap it in double quotes!"
msgstr ""
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:185
msgid "Couldn't Add Game"
msgstr ""
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:221
msgid "Game title cannot be empty."
msgstr ""
#: cartridges/details_dialog.py:185 cartridges/details_dialog.py:229
msgid "Executable cannot be empty."
msgstr ""
#: cartridges/details_dialog.py:220 cartridges/details_dialog.py:228
msgid "Couldn't Apply Preferences"
msgstr ""
#. The variable is the title of the game
#: cartridges/game.py:139
msgid "{} hidden"
msgstr ""
#: cartridges/game.py:139
msgid "{} unhidden"
msgstr ""
#. The variable is the title of the game
#: cartridges/game.py:153
msgid "{} removed"
msgstr ""
#: cartridges/preferences.py:136
msgid "All games removed"
msgstr ""
#: cartridges/preferences.py:188
msgid ""
"An API key is required to use SteamGridDB. You can generate one {}here{}."
msgstr ""
#: cartridges/preferences.py:203
msgid "Downloading covers…"
msgstr ""
#: cartridges/preferences.py:222
msgid "Covers updated"
msgstr ""
#: cartridges/preferences.py:370
msgid "Installation Not Found"
msgstr ""
#: cartridges/preferences.py:371
msgid "Select a valid directory"
msgstr ""
#: cartridges/preferences.py:407 cartridges/importer/importer.py:317
msgid "Warning"
msgstr "警告"
#: cartridges/preferences.py:441
msgid "Invalid Directory"
msgstr ""
#: cartridges/preferences.py:447
msgid "Set Location"
msgstr ""
#: cartridges/utils/create_dialog.py:33 cartridges/importer/importer.py:318
msgid "Dismiss"
msgstr ""
#: cartridges/utils/relative_date.py:30
msgid "Today"
msgstr ""
#: cartridges/utils/relative_date.py:32
msgid "Yesterday"
msgstr ""
#: cartridges/utils/relative_date.py:36
msgid "Last Week"
msgstr ""
#: cartridges/utils/relative_date.py:38
msgid "This Month"
msgstr ""
#: cartridges/utils/relative_date.py:40
msgid "Last Month"
msgstr ""
#: cartridges/utils/relative_date.py:44
msgid "Last Year"
msgstr ""
#: cartridges/importer/importer.py:144
msgid "Importing Games…"
msgstr ""
#: cartridges/importer/importer.py:337
msgid "The following errors occured during import:"
msgstr ""
#: cartridges/importer/importer.py:366
msgid "No new games found"
msgstr ""
#. The variable is the number of games.
#: cartridges/importer/importer.py:379
msgid "{} game imported"
msgid_plural "{} games imported"
msgstr[0] ""
#. The variable is the number of games. This text comes after "{0} games imported".
#: cartridges/importer/importer.py:383
msgid ", {} removed"
msgid_plural ", {} removed"
msgstr[0] ""
#. The variable is the name of the source
#: cartridges/importer/location.py:34
msgid "Select the {} cache directory."
msgstr ""
#. The variable is the name of the source
#: cartridges/importer/location.py:36
msgid "Select the {} configuration directory."
msgstr ""
#. The variable is the name of the source
#: cartridges/importer/location.py:38
msgid "Select the {} data directory."
msgstr ""
#: cartridges/importer/retroarch_source.py:129
msgid "No RetroArch Core Selected"
msgstr ""
#. The variable is a newline separated list of playlists
#: cartridges/importer/retroarch_source.py:131
msgid "The following playlists have no default core:"
msgstr ""
#: cartridges/importer/retroarch_source.py:133
msgid "Games with no core selected were not imported"
msgstr ""
#: cartridges/store/managers/sgdb_manager.py:46
msgid "Couldn't Authenticate SteamGridDB"
msgstr ""
#: cartridges/store/managers/sgdb_manager.py:47
msgid "Verify your API key in preferences"
msgstr ""

763
po/ko.po
View File

@@ -2,14 +2,13 @@
# Copyright (C) YEAR kramo
# This file is distributed under the same license as the Cartridges package.
# MJKim <kmj10727@gmail.com>, 2023.
# Seong-ho Cho <darkcircle.0426@gmail.com>, 2024, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Cartridges\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-11-05 14:01+0100\n"
"PO-Revision-Date: 2025-02-24 14:34+0000\n"
"Last-Translator: Seong-ho Cho <darkcircle.0426@gmail.com>\n"
"POT-Creation-Date: 2023-06-26 12:01+0200\n"
"PO-Revision-Date: 2023-03-28 22:23+0000\n"
"Last-Translator: MJKim <kmj10727@gmail.com>\n"
"Language-Team: Korean <https://hosted.weblate.org/projects/cartridges/"
"cartridges/ko/>\n"
"Language: ko\n"
@@ -17,481 +16,433 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 5.10.1-dev\n"
"X-Generator: Weblate 4.17-dev\n"
#: data/page.kramo.Cartridges.desktop.in:3
#: data/page.kramo.Cartridges.metainfo.xml.in:9
#: data/page.kramo.Cartridges.metainfo.xml.in:40 data/gtk/window.blp:47
#: data/gtk/window.blp:83
#: data/hu.kramo.Cartridges.desktop.in:3
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:47
#: src/main.py:146
msgid "Cartridges"
msgstr "카트리지"
#: data/page.kramo.Cartridges.desktop.in:4
#: data/hu.kramo.Cartridges.desktop.in:4
msgid "Game Launcher"
msgstr "게임 런처"
#: data/page.kramo.Cartridges.desktop.in:5
#: data/page.kramo.Cartridges.metainfo.xml.in:10
#: data/hu.kramo.Cartridges.desktop.in:5
#: data/hu.kramo.Cartridges.metainfo.xml.in:7
msgid "Launch all your games"
msgstr "모든 게임을 실행합니다"
#: data/page.kramo.Cartridges.desktop.in:11
msgid ""
"gaming;launcher;steam;lutris;heroic;bottles;itch;flatpak;legendary;retroarch;"
#: data/hu.kramo.Cartridges.desktop.in:11
msgid "gaming;launcher;steam;lutris;heroic;bottles;itch;"
msgstr ""
"gaming;게임;게이밍;launcher;실행기;실행프로그램;steam;스팀;lutris;루트리스;"
"heroic;히어로익;bottles;보틀즈;itch;잇치;flatpak;플랫팩;legendary;레젠더리;"
"retroarch;레트로아키;"
#: data/page.kramo.Cartridges.metainfo.xml.in:12
#: data/hu.kramo.Cartridges.metainfo.xml.in:9
#, fuzzy
#| msgid ""
#| "Cartridges is a simple game launcher. It has support for importing your "
#| "games from Steam, Heroic and Bottles with organizational features such as "
#| "hiding and sorting by date added or last played."
msgid ""
"Cartridges is a simple game launcher for all of your games. It has support "
"for importing games from Steam, Lutris, Heroic and more with no login "
"necessary. You can sort and hide games or download cover art from "
"SteamGridDB."
msgstr ""
"카트리지는 간단한 게임 실행 프로그램입니다. 스팀, 루트리스, 히어로익 등의 사"
"이트에서 로그인을 하지 않고 게임을 가져올 수 있습니다. 게임을 정리하고 숨기거"
"나, SteamGridDB에서 표지를 다운로드할 수 있습니다."
"카트리지는 간단한 게임 런처입니다. 추가한 날짜 또는 마지막으로 플레이한 날짜"
"별로 게임을 숨기거나 정렬하는 등의 정리 기능을 통해 Steam, Heroic 및 Bottles"
"에서 게임을 가져올 수 있습니다."
#: data/page.kramo.Cartridges.metainfo.xml.in:44 data/gtk/window.blp:320
#: cartridges/details_dialog.py:77
msgid "Game Details"
msgstr "게임 세부 정보"
#: data/hu.kramo.Cartridges.metainfo.xml.in:30
msgid "Library"
msgstr "라이브러리"
#: data/page.kramo.Cartridges.metainfo.xml.in:48
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 src/details_window.py:67
msgid "Edit Game Details"
msgstr "게임 세부 정보 편집"
msgstr ""
#: data/page.kramo.Cartridges.metainfo.xml.in:52 data/gtk/help-overlay.blp:19
#: data/gtk/window.blp:543 cartridges/details_dialog.py:279
#: cartridges/importer/importer.py:319 cartridges/importer/importer.py:369
#: data/hu.kramo.Cartridges.metainfo.xml.in:38 data/gtk/window.blp:71
msgid "Game Details"
msgstr ""
#: data/hu.kramo.Cartridges.metainfo.xml.in:42 data/gtk/window.blp:416
#: src/details_window.py:239
msgid "Preferences"
msgstr "기본 설정"
msgstr ""
#: data/gtk/details-dialog.blp:15
#: data/gtk/details-window.blp:25
msgid "Cancel"
msgstr "취소"
msgstr ""
#: data/gtk/details-dialog.blp:45
#: data/gtk/details-window.blp:57
msgid "New Cover"
msgstr "새 표지"
msgstr ""
#: data/gtk/details-dialog.blp:64
#: data/gtk/details-window.blp:75
msgid "Delete Cover"
msgstr "표지 삭제"
msgstr ""
#: data/gtk/details-dialog.blp:92 data/gtk/game.blp:80
#: data/gtk/details-window.blp:101 data/gtk/details-window.blp:106
#: data/gtk/game.blp:80
msgid "Title"
msgstr "제목"
msgstr ""
#: data/gtk/details-dialog.blp:96
msgid "Developer (optional)"
msgstr "개발자 (옵션)"
#: data/gtk/details-window.blp:102
msgid "The title of the game"
msgstr ""
#: data/gtk/details-dialog.blp:102
#: data/gtk/details-window.blp:112 data/gtk/details-window.blp:117
msgid "Developer"
msgstr ""
#: data/gtk/details-window.blp:113
msgid "The developer or publisher (optional)"
msgstr ""
#: data/gtk/details-window.blp:123 data/gtk/details-window.blp:155
msgid "Executable"
msgstr "실행 가능"
msgstr ""
#: data/gtk/details-dialog.blp:108
msgid "Select File"
msgstr "파일 선택"
#: data/gtk/details-window.blp:124
msgid "File to open or command to run when launching the game"
msgstr ""
#: data/gtk/details-dialog.blp:119
#: data/gtk/details-window.blp:130
msgid "More Info"
msgstr "추가 정보"
msgstr ""
#: data/gtk/game.blp:101 data/gtk/game.blp:109 data/gtk/window.blp:444
#: data/gtk/game.blp:102 data/gtk/game.blp:121 data/gtk/window.blp:195
msgid "Edit"
msgstr "편집"
msgstr ""
#: data/gtk/game.blp:102 cartridges/window.py:359
#: data/gtk/game.blp:107 src/window.py:169
msgid "Hide"
msgstr "숨기기"
msgstr ""
#: data/gtk/game.blp:103 data/gtk/game.blp:111 data/gtk/window.blp:464
#: data/gtk/game.blp:112 data/gtk/game.blp:131 data/gtk/preferences.blp:56
#: data/gtk/window.blp:209
msgid "Remove"
msgstr "제거"
msgstr ""
#: data/gtk/game.blp:110 cartridges/window.py:361
#: data/gtk/game.blp:126 src/window.py:171
msgid "Unhide"
msgstr "숨기기 취소"
msgstr ""
#: data/gtk/help-overlay.blp:11 data/gtk/preferences.blp:9
msgid "General"
msgstr "일반"
msgstr ""
#: data/gtk/help-overlay.blp:14 data/gtk/window.blp:207 data/gtk/window.blp:223
#: data/gtk/window.blp:274 data/gtk/window.blp:290 data/gtk/window.blp:475
msgid "Search"
msgstr "검색"
#: data/gtk/help-overlay.blp:24 data/gtk/window.blp:544
msgid "Keyboard Shortcuts"
msgstr "키보드 바로 가기 키"
#: data/gtk/help-overlay.blp:29 cartridges/game.py:103
#: cartridges/preferences.py:137 cartridges/importer/importer.py:386
msgid "Undo"
msgstr "실행 취소"
#: data/gtk/help-overlay.blp:34
#: data/gtk/help-overlay.blp:14
msgid "Quit"
msgstr "끝내기"
msgstr ""
#: data/gtk/help-overlay.blp:39 data/gtk/window.blp:92 data/gtk/window.blp:187
msgid "Toggle Sidebar"
msgstr "가장 자리 창 표시 전환"
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:217 data/gtk/window.blp:257
#: data/gtk/window.blp:323
msgid "Search"
msgstr ""
#: data/gtk/help-overlay.blp:44 data/gtk/window.blp:200 data/gtk/window.blp:267
msgid "Main Menu"
msgstr "메인 메뉴"
#: data/gtk/help-overlay.blp:24
msgid "Show preferences"
msgstr ""
#: data/gtk/help-overlay.blp:50
#: data/gtk/help-overlay.blp:29
msgid "Shortcuts"
msgstr ""
#: data/gtk/help-overlay.blp:34 src/game.py:105 src/preferences.py:103
msgid "Undo"
msgstr ""
#: data/gtk/help-overlay.blp:39
msgid "Open menu"
msgstr ""
#: data/gtk/help-overlay.blp:45
#, fuzzy
#| msgid "No Games"
msgid "Games"
msgstr "게임"
msgstr "게임이 없습니다"
#: data/gtk/help-overlay.blp:53 data/gtk/window.blp:193 data/gtk/window.blp:551
msgid "Add Game"
msgstr "게임 추가"
#: data/gtk/help-overlay.blp:48
msgid "Add new game"
msgstr ""
#: data/gtk/help-overlay.blp:58 data/gtk/preferences.blp:58
#: data/gtk/window.blp:27 data/gtk/window.blp:555
msgid "Import"
msgstr "가져오기"
#: data/gtk/help-overlay.blp:53
#, fuzzy
#| msgid "No Games"
msgid "Import games"
msgstr "게임이 없습니다"
#: data/gtk/help-overlay.blp:58
msgid "Show hidden games"
msgstr ""
#: data/gtk/help-overlay.blp:63
msgid "Show Hidden Games"
msgstr "숨긴 게임 표시"
#, fuzzy
#| msgid "No Games"
msgid "Remove game"
msgstr "게임이 없습니다"
#: data/gtk/help-overlay.blp:68
msgid "Remove Game"
msgstr "게임 제거"
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:62
#: data/gtk/preferences.blp:365
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:236
msgid "Behavior"
msgstr "동작"
msgstr ""
#: data/gtk/preferences.blp:16
msgid "Exit After Launching Games"
msgstr "게임 실행 후 나가기"
msgstr ""
#: data/gtk/preferences.blp:20
#: data/gtk/preferences.blp:25
msgid "Cover Image Launches Game"
msgstr "표지 그림 선택시 게임 실행"
msgstr ""
#: data/gtk/preferences.blp:21
#: data/gtk/preferences.blp:26
msgid "Swaps the behavior of the cover image and the play button"
msgstr "표지 그림과 게임하기 단추 동작 바꾸기"
msgstr ""
#: data/gtk/preferences.blp:26 cartridges/details_dialog.py:91
#: data/gtk/preferences.blp:36 src/details_window.py:81
msgid "Images"
msgstr "그림"
#: data/gtk/preferences.blp:29
msgid "High Quality Images"
msgstr "고화질 그림"
#: data/gtk/preferences.blp:30
msgid "Save game covers losslessly at the cost of storage"
msgstr "게임 표지를 화질 손실 없도록 저장소를 충분히 할애하여 저장"
#: data/gtk/preferences.blp:35
msgid "Danger Zone"
msgstr "위험 영역"
msgstr ""
#: data/gtk/preferences.blp:39
msgid "High Quality Images"
msgstr ""
#: data/gtk/preferences.blp:40
msgid "Save game covers losslessly at the cost of storage"
msgstr ""
#: data/gtk/preferences.blp:50
msgid "Danger Zone"
msgstr ""
#: data/gtk/preferences.blp:53
msgid "Remove All Games"
msgstr "모든 게임 제거"
msgstr ""
#: data/gtk/preferences.blp:65
msgid "Import Games Automatically"
msgstr "자동으로 게임 가져오기"
#: data/gtk/preferences.blp:85 data/gtk/window.blp:27 data/gtk/window.blp:442
msgid "Import"
msgstr ""
#: data/gtk/preferences.blp:69
msgid "Remove Uninstalled Games"
msgstr "설치 취소한 게임 제거"
#: data/gtk/preferences.blp:74
#: data/gtk/preferences.blp:89
msgid "Sources"
msgstr "공급원"
msgstr ""
#: data/gtk/preferences.blp:78 cartridges/importer/steam_source.py:114
#: data/gtk/preferences.blp:92
msgid "Steam"
msgstr "스팀"
msgstr ""
#: data/gtk/preferences.blp:87 data/gtk/preferences.blp:114
#: data/gtk/preferences.blp:149 data/gtk/preferences.blp:192
#: data/gtk/preferences.blp:219 data/gtk/preferences.blp:246
#: data/gtk/preferences.blp:273
#: data/gtk/preferences.blp:96 data/gtk/preferences.blp:110
#: data/gtk/preferences.blp:142 data/gtk/preferences.blp:183
#: data/gtk/preferences.blp:197 data/gtk/preferences.blp:211
msgid "Install Location"
msgstr "설치 위치"
msgstr ""
#: data/gtk/preferences.blp:105 data/gtk/window.blp:565
#: cartridges/importer/lutris_source.py:107
#: data/gtk/preferences.blp:106
msgid "Lutris"
msgstr "루트리스"
msgstr ""
#: data/gtk/preferences.blp:131
#: data/gtk/preferences.blp:119
msgid "Cache Location"
msgstr ""
#: data/gtk/preferences.blp:128
#, fuzzy
#| msgid "No Games"
msgid "Import Steam Games"
msgstr "스팀 게임 가져오기"
msgstr "게임이 없습니다"
#: data/gtk/preferences.blp:135
msgid "Import Flatpak Games"
msgstr "플랫팩 게임 가져오기"
#: data/gtk/preferences.blp:140 cartridges/importer/heroic_source.py:355
#: data/gtk/preferences.blp:138
msgid "Heroic"
msgstr "히어로익"
msgstr ""
#: data/gtk/preferences.blp:166
#: data/gtk/preferences.blp:151
msgid "Import Epic Games"
msgstr "에픽 게임 가져오기"
msgstr ""
#: data/gtk/preferences.blp:170
#: data/gtk/preferences.blp:160
msgid "Import GOG Games"
msgstr "GOG 게임 가져오기"
msgstr ""
#: data/gtk/preferences.blp:174
msgid "Import Amazon Games"
msgstr "아마존 게임 가져오기"
#: data/gtk/preferences.blp:178
#: data/gtk/preferences.blp:169
msgid "Import Sideloaded Games"
msgstr "사이드로디드 게임 가져오기"
msgstr ""
#: data/gtk/preferences.blp:183 cartridges/importer/bottles_source.py:86
#: data/gtk/preferences.blp:179
msgid "Bottles"
msgstr "보틀즈"
msgstr ""
#: data/gtk/preferences.blp:210 cartridges/importer/itch_source.py:81
#: data/gtk/preferences.blp:193
msgid "itch"
msgstr "잇치"
msgstr ""
#: data/gtk/preferences.blp:237 cartridges/importer/legendary_source.py:97
#: data/gtk/preferences.blp:207
msgid "Legendary"
msgstr "레젠더리"
msgstr ""
#: data/gtk/preferences.blp:264 cartridges/importer/retroarch_source.py:142
msgid "RetroArch"
msgstr "레트로아키"
#: data/gtk/preferences.blp:291 cartridges/importer/flatpak_source.py:143
msgid "Flatpak"
msgstr "플랫팩"
#. The location of the system-wide data directory
#: data/gtk/preferences.blp:301
msgid "System Location"
msgstr "시스템 위치"
#. The location of the user-specific data directory
#: data/gtk/preferences.blp:319
msgid "User Location"
msgstr "사용자 위치"
#: data/gtk/preferences.blp:336
msgid "Import Game Launchers"
msgstr "게임 실행 프로그램 가져오기"
#: data/gtk/preferences.blp:341 cartridges/importer/desktop_source.py:215
msgid "Desktop Entries"
msgstr "데스크톱 항목"
#: data/gtk/preferences.blp:353 data/gtk/window.blp:563
#: data/gtk/preferences.blp:224
msgid "SteamGridDB"
msgstr "SteamGridDB"
msgstr ""
#: data/gtk/preferences.blp:357
#: data/gtk/preferences.blp:228
msgid "Authentication"
msgstr "인증"
msgstr ""
#: data/gtk/preferences.blp:360
#: data/gtk/preferences.blp:231
msgid "API Key"
msgstr "API 키"
msgstr ""
#: data/gtk/preferences.blp:368
#: data/gtk/preferences.blp:239
msgid "Use SteamGridDB"
msgstr "SteamGridDB 활용"
msgstr ""
#: data/gtk/preferences.blp:369
#: data/gtk/preferences.blp:240
msgid "Download images when adding or importing games"
msgstr "게임을 추가하거나 가져올 때 표지 그림 다운로드"
msgstr ""
#: data/gtk/preferences.blp:373
#: data/gtk/preferences.blp:249
msgid "Prefer Over Official Images"
msgstr "공식 그림 우선"
msgstr ""
#: data/gtk/preferences.blp:377
#: data/gtk/preferences.blp:258
msgid "Prefer Animated Images"
msgstr "움직이는 그림 우선"
#: data/gtk/preferences.blp:383
msgid "Update Covers"
msgstr "표지 그림 업데이트"
#: data/gtk/preferences.blp:384
msgid "Fetch covers for games already in your library"
msgstr "라이브러리에 이미 있는 게임 표지 그림 가져오기"
#: data/gtk/preferences.blp:389
msgid "Update"
msgstr "업데이트"
msgstr ""
#: data/gtk/window.blp:6 data/gtk/window.blp:14
msgid "No Games Found"
msgstr "게임 없음"
msgstr ""
#: data/gtk/window.blp:7 data/gtk/window.blp:15
msgid "Try a different search"
msgstr "다른 단어로 검색해보십시오"
msgid "Try a different search."
msgstr ""
#: data/gtk/window.blp:21
msgid "No Games"
msgstr "게임 없"
msgstr "게임습니다"
#: data/gtk/window.blp:22
msgid "Use the + button to add games"
msgstr "게임을 추가하려면 + 단추를 사용하십시오"
msgid "Use the + button to add games."
msgstr ""
#: data/gtk/window.blp:40
msgid "No Hidden Games"
msgstr "숨긴 게임 없음"
msgstr ""
#: data/gtk/window.blp:41
msgid "Games you hide will appear here"
msgstr "숨긴 게임은 이곳에 나타납니다"
msgid "Games you hide will appear here."
msgstr ""
#: data/gtk/window.blp:76 data/gtk/window.blp:113 cartridges/main.py:249
msgid "All Games"
msgstr "모든 게임"
#: data/gtk/window.blp:64 data/gtk/window.blp:304
msgid "Back"
msgstr "뒤로"
#: data/gtk/window.blp:140 cartridges/main.py:251
msgid "Added"
msgstr "추가함"
#: data/gtk/window.blp:162
msgid "Imported"
msgstr "가져옴"
#: data/gtk/window.blp:260
msgid "Hidden Games"
msgstr "숨긴 게임"
#: data/gtk/window.blp:368
#: data/gtk/window.blp:121
msgid "Game Title"
msgstr "게임 제목"
msgstr ""
#: data/gtk/window.blp:425
#: data/gtk/window.blp:176
msgid "Play"
msgstr "게임하기"
msgstr ""
#: data/gtk/window.blp:502
#: data/gtk/window.blp:243 data/gtk/window.blp:435
msgid "Add Game"
msgstr ""
#: data/gtk/window.blp:250 data/gtk/window.blp:316
msgid "Main Menu"
msgstr ""
#: data/gtk/window.blp:311
msgid "Hidden Games"
msgstr ""
#: data/gtk/window.blp:374
msgid "Sort"
msgstr "정렬"
#: data/gtk/window.blp:505
#: data/gtk/window.blp:377
msgid "A-Z"
msgstr "오름차순"
msgstr ""
#: data/gtk/window.blp:511
#: data/gtk/window.blp:383
msgid "Z-A"
msgstr "내림차순"
msgstr ""
#: data/gtk/window.blp:517
#: data/gtk/window.blp:389
msgid "Newest"
msgstr "최신순"
msgstr ""
#: data/gtk/window.blp:523
#: data/gtk/window.blp:395
msgid "Oldest"
msgstr "과거순"
msgstr ""
#: data/gtk/window.blp:529
#: data/gtk/window.blp:401
msgid "Last Played"
msgstr "최근 플레이"
msgstr ""
#: data/gtk/window.blp:536
#: data/gtk/window.blp:408
msgid "Show Hidden"
msgstr "숨긴 게임 표시"
msgstr ""
#: data/gtk/window.blp:545
#: data/gtk/window.blp:421
msgid "Keyboard Shortcuts"
msgstr ""
#: data/gtk/window.blp:426
msgid "About Cartridges"
msgstr "카트리지 정보"
#: data/gtk/window.blp:562
msgid "IGDB"
msgstr "IGDB"
#: data/gtk/window.blp:564
msgid "ProtonDB"
msgstr "ProtonDB"
#: data/gtk/window.blp:566
msgid "HowLongToBeat"
msgstr "HowLongToBeat"
#. The variable is the title of the game
#: cartridges/main.py:226 cartridges/game.py:125
msgid "{} launched"
msgstr "{} 실행함"
#. Translators: Replace this with Your Name, Your Name <your.email@example.com>, or Your Name https://your-site.com for it to show up in the About dialog.
#: cartridges/main.py:291
msgid "translator-credits"
msgstr "조성호 <shcho@gnome.org>"
#. Translators: Replace this with your name for it to show up in the about window
#: src/main.py:164
msgid "translator_credits"
msgstr ""
#. The variable is the date when the game was added
#: cartridges/window.py:382
#: src/window.py:192
msgid "Added: {}"
msgstr "추가: {}"
msgstr ""
#: cartridges/window.py:385
#: src/window.py:195
msgid "Never"
msgstr "안함"
msgstr ""
#. The variable is the date when the game was last played
#: cartridges/window.py:389
#: src/window.py:199
msgid "Last played: {}"
msgstr "최근 플레이: {}"
msgstr ""
#: cartridges/details_dialog.py:82
#: src/details_window.py:72
msgid "Apply"
msgstr "적용"
msgstr ""
#: cartridges/details_dialog.py:88
#: src/details_window.py:78
msgid "Add New Game"
msgstr "새 게임 추가"
msgstr ""
#: cartridges/details_dialog.py:89
msgid "Add"
msgstr "추가"
#: cartridges/details_dialog.py:102
msgid "Executables"
msgstr "실행 파일"
#: src/details_window.py:79
msgid "Confirm"
msgstr ""
#. Translate this string as you would translate "file"
#: cartridges/details_dialog.py:117
#: src/details_window.py:91
msgid "file.txt"
msgstr "file.txt"
msgstr ""
#. As in software
#: cartridges/details_dialog.py:119
#: src/details_window.py:93
msgid "program"
msgstr "프로그램"
msgstr ""
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:124 cartridges/details_dialog.py:126
#: src/details_window.py:98 src/details_window.py:100
msgid "C:\\path\\to\\{}"
msgstr "C:\\디렉터리\\경로\\{}"
msgstr ""
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:130 cartridges/details_dialog.py:132
#: src/details_window.py:104 src/details_window.py:106
msgid "/path/to/{}"
msgstr "/디렉터리/경로/{}"
msgstr ""
#: cartridges/details_dialog.py:137
#: src/details_window.py:111
msgid ""
"To launch the executable \"{}\", use the command:\n"
"\n"
@@ -503,198 +454,86 @@ msgid ""
"\n"
"If the path contains spaces, make sure to wrap it in double quotes!"
msgstr ""
"\"{}\" 실행 파일을 실행하려면, 다음 명령을:\n"
"\n"
"<tt>\"{}\"</tt>\n"
"\n"
"기본 프로그램으로 \"{}\" 파일을 열려면:\n"
"\n"
"<tt>{} \"{}\"</tt>\n"
"\n"
"경로 이름에 공백 문자가 들어가 있을 경우, 경로 이름을 큰 따옴표로 감쌌는지 확"
"인하십시오!"
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:185
#: src/details_window.py:146 src/details_window.py:152
msgid "Couldn't Add Game"
msgstr "게임을 추가할 수 없습니다"
msgstr ""
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:221
#: src/details_window.py:146 src/details_window.py:181
msgid "Game title cannot be empty."
msgstr "게임 제목은 비워둘 수 없습니다."
msgstr ""
#: cartridges/details_dialog.py:185 cartridges/details_dialog.py:229
#: src/details_window.py:152 src/details_window.py:189
msgid "Executable cannot be empty."
msgstr "실행 파일을 비워둘 수 없습니다."
msgstr ""
#: cartridges/details_dialog.py:220 cartridges/details_dialog.py:228
#: src/details_window.py:180 src/details_window.py:188
msgid "Couldn't Apply Preferences"
msgstr "기본 설정을 적용할 수 없습니다"
msgstr ""
#. The variable is the title of the game
#: cartridges/game.py:139
#: src/game.py:141
msgid "{} launched"
msgstr ""
#. The variable is the title of the game
#: src/game.py:154
msgid "{} hidden"
msgstr "{} 숨김"
msgstr ""
#: cartridges/game.py:139
#: src/game.py:154
msgid "{} unhidden"
msgstr "{} 숨김 해제함"
msgstr ""
#. The variable is the title of the game
#: cartridges/game.py:153
#: src/game.py:171
msgid "{} removed"
msgstr "{} 제거함"
msgstr ""
#: cartridges/preferences.py:136
#: src/preferences.py:102
msgid "All games removed"
msgstr "모든 게임을 제거했습니다"
msgstr ""
#: cartridges/preferences.py:188
#: src/preferences.py:149
msgid ""
"An API key is required to use SteamGridDB. You can generate one {}here{}."
msgstr ""
"SteamGridDB를 활용하려면 API 키가 필요합니다. {}여기{}에서 만들 수 있습니다."
#: cartridges/preferences.py:203
msgid "Downloading covers…"
msgstr "표지 그림 다운로드 중…"
#: cartridges/preferences.py:222
msgid "Covers updated"
msgstr "표지 그림을 업데이트했습니다"
#: cartridges/preferences.py:370
msgid "Installation Not Found"
msgstr "설치한 항목이 없습니다"
#: cartridges/preferences.py:371
msgid "Select a valid directory"
msgstr "올바른 디렉터리를 선택하십시오"
#: cartridges/preferences.py:407 cartridges/importer/importer.py:317
msgid "Warning"
msgstr "경고"
#: cartridges/preferences.py:441
msgid "Invalid Directory"
msgstr "부적절한 디렉터리"
#: cartridges/preferences.py:447
#: src/preferences.py:289
msgid "Set Location"
msgstr "위치 설정"
msgstr ""
#: cartridges/utils/create_dialog.py:33 cartridges/importer/importer.py:318
#: src/utils/create_dialog.py:25
msgid "Dismiss"
msgstr "버리기"
msgstr ""
#: cartridges/utils/relative_date.py:30
msgid "Today"
msgstr "오늘"
#: src/importer/sources/source.py:106
msgid "Data"
msgstr ""
#: cartridges/utils/relative_date.py:32
msgid "Yesterday"
msgstr "어제"
#: src/importer/sources/source.py:107
msgid "Cache"
msgstr ""
#: cartridges/utils/relative_date.py:36
msgid "Last Week"
msgstr "지난 주"
#: src/importer/sources/source.py:108
msgid "Configuration"
msgstr ""
#: cartridges/utils/relative_date.py:38
msgid "This Month"
msgstr "이번 달"
#. The variables are the type of location (eg. cache) and the source's name (eg. Steam)
#: src/importer/sources/source.py:119
msgid "Invalid {} Location for {{}}"
msgstr ""
#: cartridges/utils/relative_date.py:40
msgid "Last Month"
msgstr "지난 달"
#: src/importer/sources/source.py:120
msgid "Pick a new one or disable the source in preferences"
msgstr ""
#: cartridges/utils/relative_date.py:44
msgid "Last Year"
msgstr "작년"
#: cartridges/importer/importer.py:144
msgid "Importing Games…"
msgstr "게임 가져오는 중…"
#: cartridges/importer/importer.py:337
msgid "The following errors occured during import:"
msgstr "가져오는 동안 다음 오류가 나타났습니다:"
#: cartridges/importer/importer.py:366
msgid "No new games found"
msgstr "새 게임이 없습니다"
#. The variable is the number of games.
#: cartridges/importer/importer.py:379
msgid "{} game imported"
msgid_plural "{} games imported"
msgstr[0] "게임 {}건을 가져왔습니다"
#. The variable is the number of games. This text comes after "{0} games imported".
#: cartridges/importer/importer.py:383
msgid ", {} removed"
msgid_plural ", {} removed"
msgstr[0] ", {} 제거함"
#. The variable is the name of the source
#: cartridges/importer/location.py:34
msgid "Select the {} cache directory."
msgstr "{} 캐시 디렉터리를 선택하십시오."
#. The variable is the name of the source
#: cartridges/importer/location.py:36
msgid "Select the {} configuration directory."
msgstr "{} 설정 디렉터리를 선택하십시오."
#. The variable is the name of the source
#: cartridges/importer/location.py:38
msgid "Select the {} data directory."
msgstr "{} 데이터 디렉터리를 선택하십시오."
#: cartridges/importer/retroarch_source.py:129
msgid "No RetroArch Core Selected"
msgstr "선택한 레트로아키 코어가 없습니다"
#. The variable is a newline separated list of playlists
#: cartridges/importer/retroarch_source.py:131
msgid "The following playlists have no default core:"
msgstr "다음 플레이 목록에 기본 코어가 없습니다:"
#: cartridges/importer/retroarch_source.py:133
msgid "Games with no core selected were not imported"
msgstr "코어를 선택하지 않은 게임을 가져오지 않았습니다"
#: cartridges/store/managers/sgdb_manager.py:46
#: src/store/managers/sgdb_manager.py:47
msgid "Couldn't Authenticate SteamGridDB"
msgstr "SteamGridDB를 인증할 수 없습니다"
msgstr ""
#: cartridges/store/managers/sgdb_manager.py:47
#: src/store/managers/sgdb_manager.py:48
msgid "Verify your API key in preferences"
msgstr "기본 설정에서 API 키를 검증하십시오"
msgstr ""
#, fuzzy
#~ msgid "1 game imported"
#~ msgid_plural "{} games imported"
#~ msgstr[0] "게임 {}건을 가져왔습니다"
#, fuzzy
#~ msgid "1 removed"
#~ msgid_plural "{} removed"
#~ msgstr[0] "{}건을 제거했습니다"
#~ msgid "Cache Location"
#~ msgstr "캐시 위치"
#~ msgid "Library"
#~ msgstr "라이브러리"
#, fuzzy
#~| msgid "No Games"
#~ msgid "Import games"
#~ msgstr "게임이 없습니다"
#~ msgid "Back"
#~ msgstr "뒤로"
#, fuzzy
#~| msgid "Launch your games"
#~ msgid "Search games"
#~ msgid "Launch your games"
#~ msgstr "게임을 실행합니다"

685
po/kw.po
View File

@@ -1,685 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR kramo
# This file is distributed under the same license as the Cartridges package.
# Flynn <cirilla@tuta.io>, 2025, 2026.
msgid ""
msgstr ""
"Project-Id-Version: Cartridges\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-11-05 14:01+0100\n"
"PO-Revision-Date: 2026-01-10 13:01+0000\n"
"Last-Translator: Flynn <cirilla@tuta.io>\n"
"Language-Team: Cornish <https://hosted.weblate.org/projects/cartridges/"
"cartridges/kw/>\n"
"Language: kw\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ((n == 1) ? 1 : (((n % 100 "
"== 2 || n % 100 == 22 || n % 100 == 42 || n % 100 == 62 || n % 100 == 82) || "
"n % 1000 == 0 && (n % 100000 >= 1000 && n % 100000 <= 20000 || n % 100000 == "
"40000 || n % 100000 == 60000 || n % 100000 == 80000) || n != 0 && n % "
"1000000 == 100000) ? 2 : ((n % 100 == 3 || n % 100 == 23 || n % 100 == 43 || "
"n % 100 == 63 || n % 100 == 83) ? 3 : ((n != 1 && (n % 100 == 1 || n % 100 "
"== 21 || n % 100 == 41 || n % 100 == 61 || n % 100 == 81)) ? 4 : 5))));\n"
"X-Generator: Weblate 5.15.1\n"
#: data/page.kramo.Cartridges.desktop.in:3
#: data/page.kramo.Cartridges.metainfo.xml.in:9
#: data/page.kramo.Cartridges.metainfo.xml.in:40 data/gtk/window.blp:47
#: data/gtk/window.blp:83
msgid "Cartridges"
msgstr "Kartryjennow"
#: data/page.kramo.Cartridges.desktop.in:4
msgid "Game Launcher"
msgstr "Lonchyer Gwariow"
#: data/page.kramo.Cartridges.desktop.in:5
#: data/page.kramo.Cartridges.metainfo.xml.in:10
msgid "Launch all your games"
msgstr "Lonchya oll agas gwariow"
#: data/page.kramo.Cartridges.desktop.in:11
msgid ""
"gaming;launcher;steam;lutris;heroic;bottles;itch;flatpak;legendary;retroarch;"
msgstr ""
"gwariow;lonchyer;steam;lutris;heroic;botellow;itch;flatpak;legendary;retroarch;"
#: data/page.kramo.Cartridges.metainfo.xml.in:12
msgid ""
"Cartridges is a simple game launcher for all of your games. It has support "
"for importing games from Steam, Lutris, Heroic and more with no login "
"necessary. You can sort and hide games or download cover art from "
"SteamGridDB."
msgstr ""
"Kartryjennow yw unn lonchyer simpel rag oll agas gwariow. Y re skoodhyans "
"rag ynporthyans gwariow a-dhia Steam, Lutris, Heroic, ha moy gans omgelm na "
"res. Ty gallos sortya ha kudha gwariow po iskarga artys boks a-dhia "
"SteamGridDB."
#: data/page.kramo.Cartridges.metainfo.xml.in:44 data/gtk/window.blp:320
#: cartridges/details_dialog.py:77
msgid "Game Details"
msgstr "Manylyon Gwari"
#: data/page.kramo.Cartridges.metainfo.xml.in:48
msgid "Edit Game Details"
msgstr "Dyllo Manylyon Gwari"
#: data/page.kramo.Cartridges.metainfo.xml.in:52 data/gtk/help-overlay.blp:19
#: data/gtk/window.blp:543 cartridges/details_dialog.py:279
#: cartridges/importer/importer.py:319 cartridges/importer/importer.py:369
msgid "Preferences"
msgstr "Settyansow"
#: data/gtk/details-dialog.blp:15
msgid "Cancel"
msgstr "Hedhi"
#: data/gtk/details-dialog.blp:45
msgid "New Cover"
msgstr "Art Nowydh"
#: data/gtk/details-dialog.blp:64
msgid "Delete Cover"
msgstr "Dilea Art"
#: data/gtk/details-dialog.blp:92 data/gtk/game.blp:80
msgid "Title"
msgstr "Titel"
#: data/gtk/details-dialog.blp:96
msgid "Developer (optional)"
msgstr "Awtour (a-dhewis)"
#: data/gtk/details-dialog.blp:102
msgid "Executable"
msgstr "Eksekutadow"
#: data/gtk/details-dialog.blp:108
msgid "Select File"
msgstr "Dewis Restren"
#: data/gtk/details-dialog.blp:119
msgid "More Info"
msgstr "Moy Kudhlow"
#: data/gtk/game.blp:101 data/gtk/game.blp:109 data/gtk/window.blp:444
msgid "Edit"
msgstr "Dyllo"
#: data/gtk/game.blp:102 cartridges/window.py:359
msgid "Hide"
msgstr "Kudha"
#: data/gtk/game.blp:103 data/gtk/game.blp:111 data/gtk/window.blp:464
msgid "Remove"
msgstr "Dilea"
#: data/gtk/game.blp:110 cartridges/window.py:361
msgid "Unhide"
msgstr "Diskudha"
#: data/gtk/help-overlay.blp:11 data/gtk/preferences.blp:9
msgid "General"
msgstr "Ollgemmyn"
#: data/gtk/help-overlay.blp:14 data/gtk/window.blp:207 data/gtk/window.blp:223
#: data/gtk/window.blp:274 data/gtk/window.blp:290 data/gtk/window.blp:475
msgid "Search"
msgstr "Hwilas"
#: data/gtk/help-overlay.blp:24 data/gtk/window.blp:544
msgid "Keyboard Shortcuts"
msgstr "Kesunyansow Bysowek"
#: data/gtk/help-overlay.blp:29 cartridges/game.py:103
#: cartridges/preferences.py:137 cartridges/importer/importer.py:386
msgid "Undo"
msgstr "Digelmi"
#: data/gtk/help-overlay.blp:34
msgid "Quit"
msgstr "Kwytya"
#: data/gtk/help-overlay.blp:39 data/gtk/window.blp:92 data/gtk/window.blp:187
msgid "Toggle Sidebar"
msgstr "Dewis Bord Lestri"
#: data/gtk/help-overlay.blp:44 data/gtk/window.blp:200 data/gtk/window.blp:267
msgid "Main Menu"
msgstr "Rol Chif"
#: data/gtk/help-overlay.blp:50
msgid "Games"
msgstr "Gwariow"
#: data/gtk/help-overlay.blp:53 data/gtk/window.blp:193 data/gtk/window.blp:551
msgid "Add Game"
msgstr "Addya Gwari"
#: data/gtk/help-overlay.blp:58 data/gtk/preferences.blp:58
#: data/gtk/window.blp:27 data/gtk/window.blp:555
msgid "Import"
msgstr "Ynperthi"
#: data/gtk/help-overlay.blp:63
msgid "Show Hidden Games"
msgstr "Diskwedhes Gwariow Kudh"
#: data/gtk/help-overlay.blp:68
msgid "Remove Game"
msgstr "Dilea Gwari"
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:62
#: data/gtk/preferences.blp:365
msgid "Behavior"
msgstr "Fara"
#: data/gtk/preferences.blp:16
msgid "Exit After Launching Games"
msgstr "Kwytya Wosa Ow Lonchya Gwariow"
#: data/gtk/preferences.blp:20
msgid "Cover Image Launches Game"
msgstr "Art Lonchys Gwari"
#: data/gtk/preferences.blp:21
msgid "Swaps the behavior of the cover image and the play button"
msgstr "Keschanjys an fara a an art ha an boton gwari"
#: data/gtk/preferences.blp:26 cartridges/details_dialog.py:91
msgid "Images"
msgstr "Imajys"
#: data/gtk/preferences.blp:29
msgid "High Quality Images"
msgstr "Imajys Kwalita Da"
#: data/gtk/preferences.blp:30
msgid "Save game covers losslessly at the cost of storage"
msgstr "Sawya art yn perfyth dhe an kost a dalghuster"
#: data/gtk/preferences.blp:35
msgid "Danger Zone"
msgstr "Kwartron Peryl"
#: data/gtk/preferences.blp:39
msgid "Remove All Games"
msgstr "Dilea Oll Gwariow"
#: data/gtk/preferences.blp:65
msgid "Import Games Automatically"
msgstr "Ynperthi Awtomatek Gwariow"
#: data/gtk/preferences.blp:69
msgid "Remove Uninstalled Games"
msgstr "Dilea Gwariow Disleys"
#: data/gtk/preferences.blp:74
msgid "Sources"
msgstr "Pennfentynnyow"
#: data/gtk/preferences.blp:78 cartridges/importer/steam_source.py:114
msgid "Steam"
msgstr "Steam"
#: data/gtk/preferences.blp:87 data/gtk/preferences.blp:114
#: data/gtk/preferences.blp:149 data/gtk/preferences.blp:192
#: data/gtk/preferences.blp:219 data/gtk/preferences.blp:246
#: data/gtk/preferences.blp:273
msgid "Install Location"
msgstr "Tyller Lea"
#: data/gtk/preferences.blp:105 data/gtk/window.blp:565
#: cartridges/importer/lutris_source.py:107
msgid "Lutris"
msgstr "Lutris"
#: data/gtk/preferences.blp:131
msgid "Import Steam Games"
msgstr "Ynperthi Gwariow Steam"
#: data/gtk/preferences.blp:135
msgid "Import Flatpak Games"
msgstr "Ynperthi Gwariow Flatpak"
#: data/gtk/preferences.blp:140 cartridges/importer/heroic_source.py:355
msgid "Heroic"
msgstr "Heroic"
#: data/gtk/preferences.blp:166
msgid "Import Epic Games"
msgstr "Ynperthi Gwariow Epic"
#: data/gtk/preferences.blp:170
msgid "Import GOG Games"
msgstr "Ynperthi Gwariow GOG"
#: data/gtk/preferences.blp:174
msgid "Import Amazon Games"
msgstr "Ynperthi Gwariow Amazon"
#: data/gtk/preferences.blp:178
msgid "Import Sideloaded Games"
msgstr "Ynperthy Gwariow Amalkargys"
#: data/gtk/preferences.blp:183 cartridges/importer/bottles_source.py:86
msgid "Bottles"
msgstr "Botellow"
#: data/gtk/preferences.blp:210 cartridges/importer/itch_source.py:81
msgid "itch"
msgstr "itch"
#: data/gtk/preferences.blp:237 cartridges/importer/legendary_source.py:97
msgid "Legendary"
msgstr "Legendary"
#: data/gtk/preferences.blp:264 cartridges/importer/retroarch_source.py:142
msgid "RetroArch"
msgstr "RetroArch"
#: data/gtk/preferences.blp:291 cartridges/importer/flatpak_source.py:143
msgid "Flatpak"
msgstr "Flatpak"
#. The location of the system-wide data directory
#: data/gtk/preferences.blp:301
msgid "System Location"
msgstr "Tyller System"
#. The location of the user-specific data directory
#: data/gtk/preferences.blp:319
msgid "User Location"
msgstr "Tyller Usyer"
#: data/gtk/preferences.blp:336
msgid "Import Game Launchers"
msgstr "Ynperthi Lonchyerow Gwari"
#: data/gtk/preferences.blp:341 cartridges/importer/desktop_source.py:215
msgid "Desktop Entries"
msgstr "Enworrans Rol"
#: data/gtk/preferences.blp:353 data/gtk/window.blp:563
msgid "SteamGridDB"
msgstr "SteamGridDB"
#: data/gtk/preferences.blp:357
msgid "Authentication"
msgstr "Omgelmi"
#: data/gtk/preferences.blp:360
msgid "API Key"
msgstr "Ger-Tremena API"
#: data/gtk/preferences.blp:368
msgid "Use SteamGridDB"
msgstr "Gul Devnydh a SteamGridDB"
#: data/gtk/preferences.blp:369
msgid "Download images when adding or importing games"
msgstr "Iskarga imajys p'eur owth addya po owth ynperthya gwariow"
#: data/gtk/preferences.blp:373
msgid "Prefer Over Official Images"
msgstr "Preferya a-ugh dhe Imajys Sodhogel"
#: data/gtk/preferences.blp:377
msgid "Prefer Animated Images"
msgstr "Preferya Imajys Bywhes"
#: data/gtk/preferences.blp:383
msgid "Update Covers"
msgstr "Nowedhi Art"
#: data/gtk/preferences.blp:384
msgid "Fetch covers for games already in your library"
msgstr "Iskarga art rag gwariow seulabrys yn agas lyverva"
#: data/gtk/preferences.blp:389
msgid "Update"
msgstr "Nowedhi"
#: data/gtk/window.blp:6 data/gtk/window.blp:14
msgid "No Games Found"
msgstr "Gwariow Kavos Vyth"
#: data/gtk/window.blp:7 data/gtk/window.blp:15
msgid "Try a different search"
msgstr "Assaya unn hwithrans dihaval"
#: data/gtk/window.blp:21
msgid "No Games"
msgstr "Gwariow Vyth"
#: data/gtk/window.blp:22
msgid "Use the + button to add games"
msgstr "Devnydhya an boton + dhe addya gwariow"
#: data/gtk/window.blp:40
msgid "No Hidden Games"
msgstr "Gwariow Kudh Vyth"
#: data/gtk/window.blp:41
msgid "Games you hide will appear here"
msgstr "Gwariow ty kudha vydh diskwedhes omma"
#: data/gtk/window.blp:76 data/gtk/window.blp:113 cartridges/main.py:249
msgid "All Games"
msgstr "Oll Gwariow"
#: data/gtk/window.blp:140 cartridges/main.py:251
msgid "Added"
msgstr "Addys"
#: data/gtk/window.blp:162
msgid "Imported"
msgstr "Ynperthys"
#: data/gtk/window.blp:260
msgid "Hidden Games"
msgstr "Gwariow Kudh"
#: data/gtk/window.blp:368
msgid "Game Title"
msgstr "Titel Gwari"
#: data/gtk/window.blp:425
msgid "Play"
msgstr "Gwari"
#: data/gtk/window.blp:502
msgid "Sort"
msgstr "Sortya"
#: data/gtk/window.blp:505
msgid "A-Z"
msgstr "A-Z"
#: data/gtk/window.blp:511
msgid "Z-A"
msgstr "Z-A"
#: data/gtk/window.blp:517
msgid "Newest"
msgstr "Nowydh Moggha"
#: data/gtk/window.blp:523
msgid "Oldest"
msgstr "Koth Moggha"
#: data/gtk/window.blp:529
msgid "Last Played"
msgstr "Gwarys a-Dhiwedhes"
#: data/gtk/window.blp:536
msgid "Show Hidden"
msgstr "Diskwedhes Kudh"
#: data/gtk/window.blp:545
msgid "About Cartridges"
msgstr "A-dro Kartryjennow"
#: data/gtk/window.blp:562
msgid "IGDB"
msgstr "IGDB"
#: data/gtk/window.blp:564
msgid "ProtonDB"
msgstr "ProtonDB"
#: data/gtk/window.blp:566
msgid "HowLongToBeat"
msgstr "HowLongToBeat"
#. The variable is the title of the game
#: cartridges/main.py:226 cartridges/game.py:125
msgid "{} launched"
msgstr "{} lonchys"
#. Translators: Replace this with Your Name, Your Name <your.email@example.com>, or Your Name https://your-site.com for it to show up in the About dialog.
#: cartridges/main.py:291
msgid "translator-credits"
msgstr "Flynn"
#. The variable is the date when the game was added
#: cartridges/window.py:382
msgid "Added: {}"
msgstr "Addys: {}"
#: cartridges/window.py:385
msgid "Never"
msgstr "Jammes"
#. The variable is the date when the game was last played
#: cartridges/window.py:389
msgid "Last played: {}"
msgstr "Gwarys a-Dhiwedhes: {}"
#: cartridges/details_dialog.py:82
msgid "Apply"
msgstr "Gweytha"
#: cartridges/details_dialog.py:88
msgid "Add New Game"
msgstr "Addya Gwari Nowydh"
#: cartridges/details_dialog.py:89
msgid "Add"
msgstr "Addya"
#: cartridges/details_dialog.py:102
msgid "Executables"
msgstr "Eksekutadowys"
#. Translate this string as you would translate "file"
#: cartridges/details_dialog.py:117
msgid "file.txt"
msgstr "restren.txt"
#. As in software
#: cartridges/details_dialog.py:119
msgid "program"
msgstr "towlenna"
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:124 cartridges/details_dialog.py:126
msgid "C:\\path\\to\\{}"
msgstr "C:\\tyller\\dhe\\{}"
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:130 cartridges/details_dialog.py:132
msgid "/path/to/{}"
msgstr "/tyller/dhe/{}"
#: cartridges/details_dialog.py:137
msgid ""
"To launch the executable \"{}\", use the command:\n"
"\n"
"<tt>\"{}\"</tt>\n"
"\n"
"To open the file \"{}\" with the default application, use:\n"
"\n"
"<tt>{} \"{}\"</tt>\n"
"\n"
"If the path contains spaces, make sure to wrap it in double quotes!"
msgstr ""
"Rag lonchya an eksekutadow \"{}\", devnydhya an arghadow:\n"
"\n"
"<tt>\"{}</tt>\n"
"\n"
"Rag ygeri an restren \"{}\" gans an app defowt, devnydhya:\n"
"\n"
"<tt>{}\"{}\"</tt>\n"
"\n"
"Mar an tyller kontaynya spassow, maylya y yn \"devynnow dewblek\"!"
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:185
msgid "Couldn't Add Game"
msgstr "Fyllis dhe Addya Gwari"
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:221
msgid "Game title cannot be empty."
msgstr "Titel gwari res bos na gwag."
#: cartridges/details_dialog.py:185 cartridges/details_dialog.py:229
msgid "Executable cannot be empty."
msgstr "Eksekutadow res bos na gwag."
#: cartridges/details_dialog.py:220 cartridges/details_dialog.py:228
msgid "Couldn't Apply Preferences"
msgstr "Fyllis dhe Gweytha Settyansow"
#. The variable is the title of the game
#: cartridges/game.py:139
msgid "{} hidden"
msgstr "{} kudh"
#: cartridges/game.py:139
msgid "{} unhidden"
msgstr "{} diskudh"
#. The variable is the title of the game
#: cartridges/game.py:153
msgid "{} removed"
msgstr "{} removys"
#: cartridges/preferences.py:136
msgid "All games removed"
msgstr "Oll gwariow removys"
#: cartridges/preferences.py:188
msgid ""
"An API key is required to use SteamGridDB. You can generate one {}here{}."
msgstr ""
"Unn ger-tremena API yw res dhe gul devnydh a SteamGridDB. Ty gallos dinythi "
"unn {}omma{}."
#: cartridges/preferences.py:203
msgid "Downloading covers…"
msgstr "Owth iskarga art…"
#: cartridges/preferences.py:222
msgid "Covers updated"
msgstr "Nowedhys artys"
#: cartridges/preferences.py:370
msgid "Installation Not Found"
msgstr "Leyans Na Kavos"
#: cartridges/preferences.py:371
msgid "Select a valid directory"
msgstr "Dewis unn restrenva ewn"
#: cartridges/preferences.py:407 cartridges/importer/importer.py:317
msgid "Warning"
msgstr "Gwarnyans"
#: cartridges/preferences.py:441
msgid "Invalid Directory"
msgstr "Restrenva Anewn"
#: cartridges/preferences.py:447
msgid "Set Location"
msgstr "Dewis Tyller"
#: cartridges/utils/create_dialog.py:33 cartridges/importer/importer.py:318
msgid "Dismiss"
msgstr "Amyttya"
#: cartridges/utils/relative_date.py:30
msgid "Today"
msgstr "Hedhyw"
#: cartridges/utils/relative_date.py:32
msgid "Yesterday"
msgstr "De"
#: cartridges/utils/relative_date.py:36
msgid "Last Week"
msgstr "Seythen yw Passys"
#: cartridges/utils/relative_date.py:38
msgid "This Month"
msgstr "An Mis Ma"
#: cartridges/utils/relative_date.py:40
msgid "Last Month"
msgstr "Mis yw Passys"
#: cartridges/utils/relative_date.py:44
msgid "Last Year"
msgstr "Warlena"
#: cartridges/importer/importer.py:144
msgid "Importing Games…"
msgstr "Owth Ynperthi Gwariow…"
#: cartridges/importer/importer.py:337
msgid "The following errors occured during import:"
msgstr "An errors a sew hwarvosys dres ynporth:"
#: cartridges/importer/importer.py:366
msgid "No new games found"
msgstr "Gwariow nowydh kavos vyth"
#. The variable is the number of games.
#: cartridges/importer/importer.py:379
msgid "{} game imported"
msgid_plural "{} games imported"
msgstr[0] "{} gwariow ynperthys"
msgstr[1] "{} gwari ynperthys"
msgstr[2] "{} gwariow ynperthys"
msgstr[3] "{} gwariow ynperthys"
msgstr[4] "{} gwariow ynperthys"
msgstr[5] "{} gwariow ynperthys"
#. The variable is the number of games. This text comes after "{0} games imported".
#: cartridges/importer/importer.py:383
msgid ", {} removed"
msgid_plural ", {} removed"
msgstr[0] ", {} removys"
msgstr[1] ", {} removys"
msgstr[2] ", {} removys"
msgstr[3] ", {} removys"
msgstr[4] ", {} removys"
msgstr[5] ", {} removys"
#. The variable is the name of the source
#: cartridges/importer/location.py:34
msgid "Select the {} cache directory."
msgstr "Dewis an restrenva sorn {}."
#. The variable is the name of the source
#: cartridges/importer/location.py:36
msgid "Select the {} configuration directory."
msgstr "Dewis an restrenva settyansow {}."
#. The variable is the name of the source
#: cartridges/importer/location.py:38
msgid "Select the {} data directory."
msgstr "Dewis an restrenva data {}."
#: cartridges/importer/retroarch_source.py:129
msgid "No RetroArch Core Selected"
msgstr "RetroArch Core Dewisys Vyth"
#. The variable is a newline separated list of playlists
#: cartridges/importer/retroarch_source.py:131
msgid "The following playlists have no default core:"
msgstr "An rol a media a sew re core defowt vyth:"
#: cartridges/importer/retroarch_source.py:133
msgid "Games with no core selected were not imported"
msgstr "Gwariow heb dewisys core na ynperthys"
#: cartridges/store/managers/sgdb_manager.py:46
msgid "Couldn't Authenticate SteamGridDB"
msgstr "Fyllis dhe omgelmi dhe SteamGridDB"
#: cartridges/store/managers/sgdb_manager.py:47
msgid "Verify your API key in preferences"
msgstr "Gwirhe agas ger-tremena API yn Settyansow"

View File

@@ -1 +1 @@
i18n.gettext('cartridges', preset: 'glib', args: ['--copyright-holder=kramo', '--package-name=Cartridges'])
i18n.gettext('cartridges', preset: 'glib')

File diff suppressed because it is too large Load Diff

666
po/nl.po
View File

@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the cartridges package.
# Philip Goto <philip.goto@gmail.com>, 2023, 2024, 2025.
# Philip Goto <philip.goto@gmail.com>, 2023.
# kramo <contact@kramo.hu>, 2023.
msgid ""
msgstr ""
"Project-Id-Version: cartridges\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-11-05 14:01+0100\n"
"PO-Revision-Date: 2025-02-01 12:02+0000\n"
"POT-Creation-Date: 2023-06-26 12:01+0200\n"
"PO-Revision-Date: 2023-05-29 18:48+0000\n"
"Last-Translator: Philip Goto <philip.goto@gmail.com>\n"
"Language-Team: Dutch <https://hosted.weblate.org/projects/cartridges/"
"cartridges/nl/>\n"
@@ -17,32 +17,30 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.10-dev\n"
"X-Generator: Weblate 4.18-dev\n"
#: data/page.kramo.Cartridges.desktop.in:3
#: data/page.kramo.Cartridges.metainfo.xml.in:9
#: data/page.kramo.Cartridges.metainfo.xml.in:40 data/gtk/window.blp:47
#: data/gtk/window.blp:83
#: data/hu.kramo.Cartridges.desktop.in:3
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:47
#: src/main.py:146
msgid "Cartridges"
msgstr "Cartridges"
#: data/page.kramo.Cartridges.desktop.in:4
#: data/hu.kramo.Cartridges.desktop.in:4
msgid "Game Launcher"
msgstr "Game-launcher"
#: data/page.kramo.Cartridges.desktop.in:5
#: data/page.kramo.Cartridges.metainfo.xml.in:10
#: data/hu.kramo.Cartridges.desktop.in:5
#: data/hu.kramo.Cartridges.metainfo.xml.in:7
msgid "Launch all your games"
msgstr "Start al uw games op"
#: data/page.kramo.Cartridges.desktop.in:11
msgid ""
"gaming;launcher;steam;lutris;heroic;bottles;itch;flatpak;legendary;retroarch;"
#: data/hu.kramo.Cartridges.desktop.in:11
msgid "gaming;launcher;steam;lutris;heroic;bottles;itch;"
msgstr ""
"gaming;launcher;steam;lutris;heroic;bottles;itch;flatpak;legendary;retroarch;"
"spelen;games;starten;opstarten;"
"gaming;launcher;steam;lutris;heroic;bottles;itch;spelen;games;starten;"
"opstarten;"
#: data/page.kramo.Cartridges.metainfo.xml.in:12
#: data/hu.kramo.Cartridges.metainfo.xml.in:9
msgid ""
"Cartridges is a simple game launcher for all of your games. It has support "
"for importing games from Steam, Lutris, Heroic and more with no login "
@@ -54,66 +52,79 @@ msgstr ""
"meer, zonder in te hoeven loggen. U kunt spellen sorteren, verbergen en "
"covers van SteamGridDB downloaden."
#: data/page.kramo.Cartridges.metainfo.xml.in:44 data/gtk/window.blp:320
#: cartridges/details_dialog.py:77
msgid "Game Details"
msgstr "Game-details"
#: data/hu.kramo.Cartridges.metainfo.xml.in:30
msgid "Library"
msgstr "Bibliotheek"
#: data/page.kramo.Cartridges.metainfo.xml.in:48
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 src/details_window.py:67
msgid "Edit Game Details"
msgstr "Game-details bewerken"
#: data/page.kramo.Cartridges.metainfo.xml.in:52 data/gtk/help-overlay.blp:19
#: data/gtk/window.blp:543 cartridges/details_dialog.py:279
#: cartridges/importer/importer.py:319 cartridges/importer/importer.py:369
#: data/hu.kramo.Cartridges.metainfo.xml.in:38 data/gtk/window.blp:71
msgid "Game Details"
msgstr "Game-details"
#: data/hu.kramo.Cartridges.metainfo.xml.in:42 data/gtk/window.blp:416
#: src/details_window.py:239
msgid "Preferences"
msgstr "Voorkeuren"
#: data/gtk/details-dialog.blp:15
#: data/gtk/details-window.blp:25
msgid "Cancel"
msgstr "Annuleren"
#: data/gtk/details-dialog.blp:45
#: data/gtk/details-window.blp:57
msgid "New Cover"
msgstr "Nieuwe cover"
#: data/gtk/details-dialog.blp:64
#: data/gtk/details-window.blp:75
msgid "Delete Cover"
msgstr "Cover verwijderen"
msgstr "Cover verwijderen"
#: data/gtk/details-dialog.blp:92 data/gtk/game.blp:80
#: data/gtk/details-window.blp:101 data/gtk/details-window.blp:106
#: data/gtk/game.blp:80
msgid "Title"
msgstr "Titel"
#: data/gtk/details-dialog.blp:96
msgid "Developer (optional)"
msgstr "Ontwikkelaar (optioneel)"
#: data/gtk/details-window.blp:102
msgid "The title of the game"
msgstr "De titel van de game"
#: data/gtk/details-dialog.blp:102
#: data/gtk/details-window.blp:112 data/gtk/details-window.blp:117
msgid "Developer"
msgstr "Ontwikkelaar"
#: data/gtk/details-window.blp:113
msgid "The developer or publisher (optional)"
msgstr "De ontwikkelaar of uitgever (optioneel)"
#: data/gtk/details-window.blp:123 data/gtk/details-window.blp:155
msgid "Executable"
msgstr "Programmabestand"
#: data/gtk/details-dialog.blp:108
msgid "Select File"
msgstr "Bestand selecteren"
#: data/gtk/details-window.blp:124
msgid "File to open or command to run when launching the game"
msgstr ""
"Te openen bestand of uit te voeren opdracht bij het starten van de game"
#: data/gtk/details-dialog.blp:119
#: data/gtk/details-window.blp:130
msgid "More Info"
msgstr "Meer info"
#: data/gtk/game.blp:101 data/gtk/game.blp:109 data/gtk/window.blp:444
#: data/gtk/game.blp:102 data/gtk/game.blp:121 data/gtk/window.blp:195
msgid "Edit"
msgstr "Bewerken"
#: data/gtk/game.blp:102 cartridges/window.py:359
#: data/gtk/game.blp:107 src/window.py:169
msgid "Hide"
msgstr "Verbergen"
#: data/gtk/game.blp:103 data/gtk/game.blp:111 data/gtk/window.blp:464
#: data/gtk/game.blp:112 data/gtk/game.blp:131 data/gtk/preferences.blp:56
#: data/gtk/window.blp:209
msgid "Remove"
msgstr "Verwijderen"
msgstr "Verwijderen"
#: data/gtk/game.blp:110 cartridges/window.py:361
#: data/gtk/game.blp:126 src/window.py:171
msgid "Unhide"
msgstr "Niet meer verbergen"
@@ -121,55 +132,52 @@ msgstr "Niet meer verbergen"
msgid "General"
msgstr "Algemeen"
#: data/gtk/help-overlay.blp:14 data/gtk/window.blp:207 data/gtk/window.blp:223
#: data/gtk/window.blp:274 data/gtk/window.blp:290 data/gtk/window.blp:475
#: data/gtk/help-overlay.blp:14
msgid "Quit"
msgstr "Sluiten"
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:217 data/gtk/window.blp:257
#: data/gtk/window.blp:323
msgid "Search"
msgstr "Zoeken"
#: data/gtk/help-overlay.blp:24 data/gtk/window.blp:544
msgid "Keyboard Shortcuts"
#: data/gtk/help-overlay.blp:24
msgid "Show preferences"
msgstr "Voorkeuren tonen"
#: data/gtk/help-overlay.blp:29
msgid "Shortcuts"
msgstr "Sneltoetsen"
#: data/gtk/help-overlay.blp:29 cartridges/game.py:103
#: cartridges/preferences.py:137 cartridges/importer/importer.py:386
#: data/gtk/help-overlay.blp:34 src/game.py:105 src/preferences.py:103
msgid "Undo"
msgstr "Ongedaan maken"
#: data/gtk/help-overlay.blp:34
msgid "Quit"
msgstr "Afsluiten"
#: data/gtk/help-overlay.blp:39
msgid "Open menu"
msgstr "Menu openen"
#: data/gtk/help-overlay.blp:39 data/gtk/window.blp:92 data/gtk/window.blp:187
msgid "Toggle Sidebar"
msgstr "Zijbalk omschakelen"
#: data/gtk/help-overlay.blp:44 data/gtk/window.blp:200 data/gtk/window.blp:267
msgid "Main Menu"
msgstr "Hoofdmenu"
#: data/gtk/help-overlay.blp:50
#: data/gtk/help-overlay.blp:45
msgid "Games"
msgstr "Games"
#: data/gtk/help-overlay.blp:53 data/gtk/window.blp:193 data/gtk/window.blp:551
msgid "Add Game"
msgstr "Game toevoegen"
#: data/gtk/help-overlay.blp:48
msgid "Add new game"
msgstr "Nieuwe game toevoegen"
#: data/gtk/help-overlay.blp:58 data/gtk/preferences.blp:58
#: data/gtk/window.blp:27 data/gtk/window.blp:555
msgid "Import"
msgstr "Importeren"
#: data/gtk/help-overlay.blp:53
msgid "Import games"
msgstr "Games importeren"
#: data/gtk/help-overlay.blp:63
msgid "Show Hidden Games"
#: data/gtk/help-overlay.blp:58
msgid "Show hidden games"
msgstr "Verborgen games tonen"
#: data/gtk/help-overlay.blp:68
msgid "Remove Game"
msgstr "Game verwijderen"
#: data/gtk/help-overlay.blp:63
msgid "Remove game"
msgstr "Game verwijderen"
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:62
#: data/gtk/preferences.blp:365
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:236
msgid "Behavior"
msgstr "Gedrag"
@@ -177,175 +185,131 @@ msgstr "Gedrag"
msgid "Exit After Launching Games"
msgstr "Sluiten na starten van game"
#: data/gtk/preferences.blp:20
#: data/gtk/preferences.blp:25
msgid "Cover Image Launches Game"
msgstr "Cover-afbeelding start game"
#: data/gtk/preferences.blp:21
#: data/gtk/preferences.blp:26
msgid "Swaps the behavior of the cover image and the play button"
msgstr "Wisselt het gedrag van de cover-afbeelding en de speelknop om"
#: data/gtk/preferences.blp:26 cartridges/details_dialog.py:91
#: data/gtk/preferences.blp:36 src/details_window.py:81
msgid "Images"
msgstr "Afbeeldingen"
#: data/gtk/preferences.blp:29
#: data/gtk/preferences.blp:39
msgid "High Quality Images"
msgstr "Afbeeldingen van hoge kwaliteit"
#: data/gtk/preferences.blp:30
#: data/gtk/preferences.blp:40
msgid "Save game covers losslessly at the cost of storage"
msgstr ""
"Game-covers zonder kwaliteitsverlies opslaan ten koste van opslagruimte"
#: data/gtk/preferences.blp:35
#: data/gtk/preferences.blp:50
msgid "Danger Zone"
msgstr "Gevarenzone"
#: data/gtk/preferences.blp:39
#: data/gtk/preferences.blp:53
msgid "Remove All Games"
msgstr "Alle games verwijderen"
msgstr "Alle games verwijderen"
#: data/gtk/preferences.blp:65
msgid "Import Games Automatically"
msgstr "Games automatisch importeren"
#: data/gtk/preferences.blp:85 data/gtk/window.blp:27 data/gtk/window.blp:442
msgid "Import"
msgstr "Importeren"
#: data/gtk/preferences.blp:69
msgid "Remove Uninstalled Games"
msgstr "Gedeïnstalleerde games verwijderen"
#: data/gtk/preferences.blp:74
#: data/gtk/preferences.blp:89
msgid "Sources"
msgstr "Bronnen"
#: data/gtk/preferences.blp:78 cartridges/importer/steam_source.py:114
#: data/gtk/preferences.blp:92
msgid "Steam"
msgstr "Steam"
#: data/gtk/preferences.blp:87 data/gtk/preferences.blp:114
#: data/gtk/preferences.blp:149 data/gtk/preferences.blp:192
#: data/gtk/preferences.blp:219 data/gtk/preferences.blp:246
#: data/gtk/preferences.blp:273
#: data/gtk/preferences.blp:96 data/gtk/preferences.blp:110
#: data/gtk/preferences.blp:142 data/gtk/preferences.blp:183
#: data/gtk/preferences.blp:197 data/gtk/preferences.blp:211
#, fuzzy
#| msgid "itch Install Location"
msgid "Install Location"
msgstr "Installatielocatie"
msgstr "Installatielocatie van itch"
#: data/gtk/preferences.blp:105 data/gtk/window.blp:565
#: cartridges/importer/lutris_source.py:107
#: data/gtk/preferences.blp:106
msgid "Lutris"
msgstr "Lutris"
#: data/gtk/preferences.blp:131
#: data/gtk/preferences.blp:119
#, fuzzy
#| msgid "Lutris Cache Location"
msgid "Cache Location"
msgstr "Cache-locatie van Lutris"
#: data/gtk/preferences.blp:128
msgid "Import Steam Games"
msgstr "Steam-games importeren"
#: data/gtk/preferences.blp:135
msgid "Import Flatpak Games"
msgstr "Flatpak-games importeren"
#: data/gtk/preferences.blp:140 cartridges/importer/heroic_source.py:355
#: data/gtk/preferences.blp:138
msgid "Heroic"
msgstr "Heroic"
#: data/gtk/preferences.blp:166
#: data/gtk/preferences.blp:151
msgid "Import Epic Games"
msgstr "Epic-games importeren"
#: data/gtk/preferences.blp:170
#: data/gtk/preferences.blp:160
msgid "Import GOG Games"
msgstr "GOG-games importeren"
#: data/gtk/preferences.blp:174
msgid "Import Amazon Games"
msgstr "Amazon-games importeren"
#: data/gtk/preferences.blp:178
#: data/gtk/preferences.blp:169
msgid "Import Sideloaded Games"
msgstr "Gesideloade games importeren"
#: data/gtk/preferences.blp:183 cartridges/importer/bottles_source.py:86
#: data/gtk/preferences.blp:179
msgid "Bottles"
msgstr "Bottles"
#: data/gtk/preferences.blp:210 cartridges/importer/itch_source.py:81
#: data/gtk/preferences.blp:193
msgid "itch"
msgstr "itch"
#: data/gtk/preferences.blp:237 cartridges/importer/legendary_source.py:97
#: data/gtk/preferences.blp:207
msgid "Legendary"
msgstr "Legendary"
msgstr ""
#: data/gtk/preferences.blp:264 cartridges/importer/retroarch_source.py:142
msgid "RetroArch"
msgstr "RetroArch"
#: data/gtk/preferences.blp:291 cartridges/importer/flatpak_source.py:143
msgid "Flatpak"
msgstr "Flatpak"
#. The location of the system-wide data directory
#: data/gtk/preferences.blp:301
msgid "System Location"
msgstr "Systeem­locatie"
#. The location of the user-specific data directory
#: data/gtk/preferences.blp:319
msgid "User Location"
msgstr "Gebruikers­locatie"
#: data/gtk/preferences.blp:336
msgid "Import Game Launchers"
msgstr "Game-launchers importeren"
#: data/gtk/preferences.blp:341 cartridges/importer/desktop_source.py:215
msgid "Desktop Entries"
msgstr "Lokale apps"
#: data/gtk/preferences.blp:353 data/gtk/window.blp:563
#: data/gtk/preferences.blp:224
msgid "SteamGridDB"
msgstr "SteamGridDB"
#: data/gtk/preferences.blp:357
#: data/gtk/preferences.blp:228
msgid "Authentication"
msgstr "Authenticatie"
#: data/gtk/preferences.blp:360
#: data/gtk/preferences.blp:231
msgid "API Key"
msgstr "API-sleutel"
#: data/gtk/preferences.blp:368
#: data/gtk/preferences.blp:239
msgid "Use SteamGridDB"
msgstr "SteamGridDB gebruiken"
#: data/gtk/preferences.blp:369
#: data/gtk/preferences.blp:240
msgid "Download images when adding or importing games"
msgstr "Afbeeldingen downloaden bij het toevoegen of importeren van games"
msgstr "Afbeeldingen downloaden bij het toevoegen of importeren van games"
#: data/gtk/preferences.blp:373
#: data/gtk/preferences.blp:249
msgid "Prefer Over Official Images"
msgstr "Voorkeur geven boven officiële afbeeldingen"
#: data/gtk/preferences.blp:377
#: data/gtk/preferences.blp:258
msgid "Prefer Animated Images"
msgstr "Voorkeur geven aan geanimeerde afbeeldingen"
#: data/gtk/preferences.blp:383
msgid "Update Covers"
msgstr "Covers bijwerken"
#: data/gtk/preferences.blp:384
msgid "Fetch covers for games already in your library"
msgstr "Haal covers op voor games in uw bibliotheek"
#: data/gtk/preferences.blp:389
msgid "Update"
msgstr "Bijwerken"
#: data/gtk/window.blp:6 data/gtk/window.blp:14
msgid "No Games Found"
msgstr "Geen games gevonden"
#: data/gtk/window.blp:7 data/gtk/window.blp:15
msgid "Try a different search"
msgid "Try a different search."
msgstr "Probeer een andere zoekopdracht"
#: data/gtk/window.blp:21
@@ -353,7 +317,7 @@ msgid "No Games"
msgstr "Geen games"
#: data/gtk/window.blp:22
msgid "Use the + button to add games"
msgid "Use the + button to add games."
msgstr "Gebruik de plusknop om games toe te voegen"
#: data/gtk/window.blp:40
@@ -361,138 +325,121 @@ msgid "No Hidden Games"
msgstr "Geen verborgen games"
#: data/gtk/window.blp:41
msgid "Games you hide will appear here"
msgstr "Games die u verbergt zullen hier verschijnen"
msgid "Games you hide will appear here."
msgstr "Games die u verbergt zullen hier verschijnen"
#: data/gtk/window.blp:76 data/gtk/window.blp:113 cartridges/main.py:249
msgid "All Games"
msgstr "Alle games"
#: data/gtk/window.blp:64 data/gtk/window.blp:304
msgid "Back"
msgstr "Terug"
#: data/gtk/window.blp:140 cartridges/main.py:251
msgid "Added"
msgstr "Toegevoegd"
#: data/gtk/window.blp:162
msgid "Imported"
msgstr "Geïmporteerd"
#: data/gtk/window.blp:260
msgid "Hidden Games"
msgstr "Verborgen games"
#: data/gtk/window.blp:368
#: data/gtk/window.blp:121
msgid "Game Title"
msgstr "Game-titel"
#: data/gtk/window.blp:425
#: data/gtk/window.blp:176
msgid "Play"
msgstr "Spelen"
#: data/gtk/window.blp:502
#: data/gtk/window.blp:243 data/gtk/window.blp:435
msgid "Add Game"
msgstr "Game toevoegen"
#: data/gtk/window.blp:250 data/gtk/window.blp:316
msgid "Main Menu"
msgstr "Hoofdmenu"
#: data/gtk/window.blp:311
msgid "Hidden Games"
msgstr "Verborgen games"
#: data/gtk/window.blp:374
msgid "Sort"
msgstr "Sorteren"
#: data/gtk/window.blp:505
#: data/gtk/window.blp:377
msgid "A-Z"
msgstr "A-Z"
#: data/gtk/window.blp:511
#: data/gtk/window.blp:383
msgid "Z-A"
msgstr "Z-A"
#: data/gtk/window.blp:517
#: data/gtk/window.blp:389
msgid "Newest"
msgstr "Nieuwste"
#: data/gtk/window.blp:523
#: data/gtk/window.blp:395
msgid "Oldest"
msgstr "Oudste"
#: data/gtk/window.blp:529
#: data/gtk/window.blp:401
msgid "Last Played"
msgstr "Laatst gespeeld"
#: data/gtk/window.blp:536
#: data/gtk/window.blp:408
msgid "Show Hidden"
msgstr "Verborgen games tonen"
#: data/gtk/window.blp:545
#: data/gtk/window.blp:421
msgid "Keyboard Shortcuts"
msgstr "Sneltoetsen"
#: data/gtk/window.blp:426
msgid "About Cartridges"
msgstr "Over Cartridges"
#: data/gtk/window.blp:562
msgid "IGDB"
msgstr "IGDB"
#: data/gtk/window.blp:564
msgid "ProtonDB"
msgstr "ProtonDB"
#: data/gtk/window.blp:566
msgid "HowLongToBeat"
msgstr "HowLongToBeat"
#. The variable is the title of the game
#: cartridges/main.py:226 cartridges/game.py:125
msgid "{} launched"
msgstr "{} gestart"
#. Translators: Replace this with Your Name, Your Name <your.email@example.com>, or Your Name https://your-site.com for it to show up in the About dialog.
#: cartridges/main.py:291
msgid "translator-credits"
#. Translators: Replace this with your name for it to show up in the about window
#: src/main.py:164
msgid "translator_credits"
msgstr "Philip Goto https://flipflop97.github.io/"
#. The variable is the date when the game was added
#: cartridges/window.py:382
#: src/window.py:192
msgid "Added: {}"
msgstr "Toegevoegd op {}"
#: cartridges/window.py:385
#: src/window.py:195
msgid "Never"
msgstr "Nooit"
#. The variable is the date when the game was last played
#: cartridges/window.py:389
#: src/window.py:199
msgid "Last played: {}"
msgstr "Laatst gespeeld: {}"
#: cartridges/details_dialog.py:82
#: src/details_window.py:72
msgid "Apply"
msgstr "Toepassen"
#: cartridges/details_dialog.py:88
#: src/details_window.py:78
msgid "Add New Game"
msgstr "Nieuwe game toevoegen"
#: cartridges/details_dialog.py:89
msgid "Add"
msgstr "Toevoegen"
#: cartridges/details_dialog.py:102
msgid "Executables"
msgstr "Programmabestanden"
#: src/details_window.py:79
msgid "Confirm"
msgstr "Bevestigen"
#. Translate this string as you would translate "file"
#: cartridges/details_dialog.py:117
#: src/details_window.py:91
msgid "file.txt"
msgstr "bestand.txt"
#. As in software
#: cartridges/details_dialog.py:119
#: src/details_window.py:93
msgid "program"
msgstr "programma"
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:124 cartridges/details_dialog.py:126
#: src/details_window.py:98 src/details_window.py:100
msgid "C:\\path\\to\\{}"
msgstr "C:\\pad\\naar\\{}"
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:130 cartridges/details_dialog.py:132
#: src/details_window.py:104 src/details_window.py:106
msgid "/path/to/{}"
msgstr "/pad/naar/{}"
#: cartridges/details_dialog.py:137
#: src/details_window.py:111
msgid ""
"To launch the executable \"{}\", use the command:\n"
"\n"
@@ -516,233 +463,91 @@ msgstr ""
"Indien het pad spaties bevat, zorg er dan voor dat er dubbele "
"aanhalingstekens omheen staan!"
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:185
#: src/details_window.py:146 src/details_window.py:152
msgid "Couldn't Add Game"
msgstr "Kon game niet toevoegen"
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:221
#: src/details_window.py:146 src/details_window.py:181
msgid "Game title cannot be empty."
msgstr "Game-titel mag niet leeg zijn."
msgstr "Game-titel mag niet leeg zijn"
#: cartridges/details_dialog.py:185 cartridges/details_dialog.py:229
#: src/details_window.py:152 src/details_window.py:189
msgid "Executable cannot be empty."
msgstr "Programmabestand mag niet leeg zijn."
msgstr "Programmabestand mag niet leeg zijn"
#: cartridges/details_dialog.py:220 cartridges/details_dialog.py:228
#: src/details_window.py:180 src/details_window.py:188
msgid "Couldn't Apply Preferences"
msgstr "Kon voorkeuren niet toepassen"
#. The variable is the title of the game
#: cartridges/game.py:139
#: src/game.py:141
msgid "{} launched"
msgstr "{} gestart"
#. The variable is the title of the game
#: src/game.py:154
msgid "{} hidden"
msgstr "{} verborgen"
#: cartridges/game.py:139
#: src/game.py:154
msgid "{} unhidden"
msgstr "{} hersteld"
#. The variable is the title of the game
#: cartridges/game.py:153
#: src/game.py:171
msgid "{} removed"
msgstr "{} is verwijderd"
msgstr "{} verwijderd"
#: cartridges/preferences.py:136
#: src/preferences.py:102
msgid "All games removed"
msgstr "Alle games verwijderd"
msgstr "Alle games verwijderd"
#: cartridges/preferences.py:188
#: src/preferences.py:149
msgid ""
"An API key is required to use SteamGridDB. You can generate one {}here{}."
msgstr ""
"Een API-sleutel is vereist om SteamGridDB te gebruiken. U kunt er {}hier{} "
"één genereren."
#: cartridges/preferences.py:203
msgid "Downloading covers…"
msgstr "Covers downloaden…"
#: cartridges/preferences.py:222
msgid "Covers updated"
msgstr "Covers bijgewerkt"
#: cartridges/preferences.py:370
msgid "Installation Not Found"
msgstr "Installatie niet gevonden"
#: cartridges/preferences.py:371
msgid "Select a valid directory"
msgstr "Selecteer een geldige map"
#: cartridges/preferences.py:407 cartridges/importer/importer.py:317
msgid "Warning"
msgstr "Waarschuwing"
#: cartridges/preferences.py:441
msgid "Invalid Directory"
msgstr "Ongeldige map"
#: cartridges/preferences.py:447
#: src/preferences.py:289
msgid "Set Location"
msgstr "Locatie instellen"
#: cartridges/utils/create_dialog.py:33 cartridges/importer/importer.py:318
#: src/utils/create_dialog.py:25
msgid "Dismiss"
msgstr "Sluiten"
#: cartridges/utils/relative_date.py:30
msgid "Today"
msgstr "Vandaag"
#: src/importer/sources/source.py:106
msgid "Data"
msgstr ""
#: cartridges/utils/relative_date.py:32
msgid "Yesterday"
msgstr "Gisteren"
#: src/importer/sources/source.py:107
msgid "Cache"
msgstr ""
#: cartridges/utils/relative_date.py:36
msgid "Last Week"
msgstr "Afgelopen week"
#: src/importer/sources/source.py:108
#, fuzzy
#| msgid "Confirm"
msgid "Configuration"
msgstr "Bevestigen"
#: cartridges/utils/relative_date.py:38
msgid "This Month"
msgstr "Deze maand"
#. The variables are the type of location (eg. cache) and the source's name (eg. Steam)
#: src/importer/sources/source.py:119
msgid "Invalid {} Location for {{}}"
msgstr ""
#: cartridges/utils/relative_date.py:40
msgid "Last Month"
msgstr "Afgelopen maand"
#: src/importer/sources/source.py:120
msgid "Pick a new one or disable the source in preferences"
msgstr ""
#: cartridges/utils/relative_date.py:44
msgid "Last Year"
msgstr "Afgelopen jaar"
#: cartridges/importer/importer.py:144
msgid "Importing Games…"
msgstr "Games importeren…"
#: cartridges/importer/importer.py:337
msgid "The following errors occured during import:"
msgstr "De volgende fouten zijn opgetreden tijdens het importeren:"
#: cartridges/importer/importer.py:366
msgid "No new games found"
msgstr "Geen nieuwe games gevonden"
#. The variable is the number of games.
#: cartridges/importer/importer.py:379
msgid "{} game imported"
msgid_plural "{} games imported"
msgstr[0] "{} game geïmporteerd"
msgstr[1] "{} games geïmporteerd"
#. The variable is the number of games. This text comes after "{0} games imported".
#: cartridges/importer/importer.py:383
msgid ", {} removed"
msgid_plural ", {} removed"
msgstr[0] ", {} verwijderd"
msgstr[1] ", {} verwijderd"
#. The variable is the name of the source
#: cartridges/importer/location.py:34
msgid "Select the {} cache directory."
msgstr "Selecteer de cache-map van {}."
#. The variable is the name of the source
#: cartridges/importer/location.py:36
msgid "Select the {} configuration directory."
msgstr "Selecteer de configuratiemap van {}."
#. The variable is the name of the source
#: cartridges/importer/location.py:38
msgid "Select the {} data directory."
msgstr "Selecteer de gegevensmap van {}."
#: cartridges/importer/retroarch_source.py:129
msgid "No RetroArch Core Selected"
msgstr "Geen RetroArch-core geselecteerd"
#. The variable is a newline separated list of playlists
#: cartridges/importer/retroarch_source.py:131
msgid "The following playlists have no default core:"
msgstr "De volgende afspeel­lijsten hebben geen standaard-core:"
#: cartridges/importer/retroarch_source.py:133
msgid "Games with no core selected were not imported"
msgstr "Games zonder geselecteerde core zijn niet geïmporteerd"
#: cartridges/store/managers/sgdb_manager.py:46
#: src/store/managers/sgdb_manager.py:47
#, fuzzy
#| msgid "Couldn't Connect to SteamGridDB"
msgid "Couldn't Authenticate SteamGridDB"
msgstr "Kan SteamGridDB niet authenticeren"
msgstr "Kan geen verbinding maken met SteamGridDB"
#: cartridges/store/managers/sgdb_manager.py:47
#: src/store/managers/sgdb_manager.py:48
msgid "Verify your API key in preferences"
msgstr "Verifieer uw API-sleutel onder voorkeuren"
#, fuzzy
#~ msgid "1 game imported"
#~ msgid_plural "{} games imported"
#~ msgstr[0] "1 game geïmporteerd"
#~ msgstr[1] "{} games geïmporteerd"
#, fuzzy
#~ msgid "1 removed"
#~ msgid_plural "{} removed"
#~ msgstr[0] "1 verwijderd"
#~ msgstr[1] "{} verwijderd"
#~ msgid "Cache Location"
#~ msgstr "Cache-locatie"
#~ msgid "Library"
#~ msgstr "Bibliotheek"
#~ msgid "Show preferences"
#~ msgstr "Voorkeuren tonen"
#~ msgid "Shortcuts"
#~ msgstr "Sneltoetsen"
#~ msgid "Open menu"
#~ msgstr "Menu openen"
#~ msgid "Add new game"
#~ msgstr "Nieuwe game toevoegen"
#~ msgid "Import games"
#~ msgstr "Games importeren"
#~ msgid "Back"
#~ msgstr "Terug"
#, fuzzy
#~| msgid "Search"
#~ msgid "Search games"
#~ msgstr "Zoeken"
#, fuzzy
#~| msgid "Show hidden games"
#~ msgid "Search hidden games"
#~ msgstr "Verborgen games tonen"
#~ msgid "The title of the game"
#~ msgstr "De titel van de game"
#~ msgid "Developer"
#~ msgstr "Ontwikkelaar"
#~ msgid "File to open or command to run when launching the game"
#~ msgstr ""
#~ "Te openen bestand of uit te voeren opdracht bij het starten van de game"
#~ msgid "Confirm"
#~ msgstr "Bevestigen"
#, fuzzy
#~| msgid "The Steam directory cannot be found."
#~ msgid "Directory not Valid"
#~ msgstr "Steam-map kan niet worden gevonden"
#, fuzzy
#~| msgid "Confirm"
#~ msgid "Configuration"
#~ msgstr "Bevestigen"
msgstr ""
#~ msgid "Steam Install Location"
#~ msgstr "Installatielocatie van Steam"
@@ -756,12 +561,42 @@ msgstr "Verifieer uw API-sleutel onder voorkeuren"
#~ msgid "Bottles Install Location"
#~ msgstr "Installatielocatie van Bottles"
#~ msgid "Today"
#~ msgstr "Vandaag"
#~ msgid "Yesterday"
#~ msgstr "Gisteren"
#~ msgid "Cache Not Found"
#~ msgstr "Cache niet gevonden"
#~ msgid "Select the Lutris cache directory."
#~ msgstr "Selecteer de cache-map van Lutris"
#~ msgid "Installation Not Found"
#~ msgstr "Installatie niet gevonden"
#~ msgid "Select the {} configuration directory."
#~ msgstr "Selecteer de configuratiemap van {}"
#~ msgid "Select the {} data directory."
#~ msgstr "Selecteer de gegevensmap van {}"
#~ msgid "Importing Games…"
#~ msgstr "Games importeren…"
#~ msgid "Importing Covers…"
#~ msgstr "Covers importeren…"
#~ msgid "No new games found"
#~ msgstr "Geen nieuwe games gevonden"
#~ msgid "1 game imported"
#~ msgstr "1 game geïmporteerd"
#~ msgid "{} games imported"
#~ msgstr "{} games geïmporteerd"
#~ msgid "Directory to use when importing games"
#~ msgstr "Map om te gebruiken bij het importeren van games"
@@ -869,6 +704,9 @@ msgstr "Verifieer uw API-sleutel onder voorkeuren"
#~ msgid "No new games were found in the Steam library."
#~ msgstr "Geen nieuwe games gevonden in de Steam-bibliotheek"
#~ msgid "The Steam directory cannot be found."
#~ msgstr "Steam-map kan niet worden gevonden"
#~ msgid "Talking to Steam"
#~ msgstr "Steam-bibliotheek aan het ophalen"

671
po/nn.po
View File

@@ -1,671 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR kramo
# This file is distributed under the same license as the Cartridges package.
# Sunniva Løvstad <weblate@turtle.garden>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Cartridges\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-11-05 14:01+0100\n"
"PO-Revision-Date: 2025-08-11 01:03+0000\n"
"Last-Translator: Sunniva Løvstad <weblate@turtle.garden>\n"
"Language-Team: Norwegian Nynorsk <https://hosted.weblate.org/projects/"
"cartridges/cartridges/nn/>\n"
"Language: nn\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.13-dev\n"
#: data/page.kramo.Cartridges.desktop.in:3
#: data/page.kramo.Cartridges.metainfo.xml.in:9
#: data/page.kramo.Cartridges.metainfo.xml.in:40 data/gtk/window.blp:47
#: data/gtk/window.blp:83
msgid "Cartridges"
msgstr "Cartridges"
#: data/page.kramo.Cartridges.desktop.in:4
msgid "Game Launcher"
msgstr "Spelstartar"
#: data/page.kramo.Cartridges.desktop.in:5
#: data/page.kramo.Cartridges.metainfo.xml.in:10
msgid "Launch all your games"
msgstr "Start alle dine spel"
#: data/page.kramo.Cartridges.desktop.in:11
msgid ""
"gaming;launcher;steam;lutris;heroic;bottles;itch;flatpak;legendary;retroarch;"
msgstr ""
"gaming;spelstartar;lansere;steam;lutris;heroic;bottles;flasker;flatpak;legendary;retroarch;itch;"
""
#: data/page.kramo.Cartridges.metainfo.xml.in:12
msgid ""
"Cartridges is a simple game launcher for all of your games. It has support "
"for importing games from Steam, Lutris, Heroic and more with no login "
"necessary. You can sort and hide games or download cover art from "
"SteamGridDB."
msgstr ""
"Cartridges er ein enkel spelstartar for alle dine spel. Han har støtte for "
"importering av spel frå Steam, Lutris, Heroic med fleire utan innlogging. Du "
"kan sortere og gøyme spel eller laste ned omslagsbilete frå SteamGridDB."
#: data/page.kramo.Cartridges.metainfo.xml.in:44 data/gtk/window.blp:320
#: cartridges/details_dialog.py:77
msgid "Game Details"
msgstr "Speldetaljar"
#: data/page.kramo.Cartridges.metainfo.xml.in:48
msgid "Edit Game Details"
msgstr "Brigd speldetaljar"
#: data/page.kramo.Cartridges.metainfo.xml.in:52 data/gtk/help-overlay.blp:19
#: data/gtk/window.blp:543 cartridges/details_dialog.py:279
#: cartridges/importer/importer.py:319 cartridges/importer/importer.py:369
msgid "Preferences"
msgstr "Innstillingar"
#: data/gtk/details-dialog.blp:15
msgid "Cancel"
msgstr "Avbryt"
#: data/gtk/details-dialog.blp:45
msgid "New Cover"
msgstr "Nytt omslag"
#: data/gtk/details-dialog.blp:64
msgid "Delete Cover"
msgstr "Fjern omslag"
#: data/gtk/details-dialog.blp:92 data/gtk/game.blp:80
msgid "Title"
msgstr "Namn"
#: data/gtk/details-dialog.blp:96
msgid "Developer (optional)"
msgstr "Utviklar (valfritt)"
#: data/gtk/details-dialog.blp:102
msgid "Executable"
msgstr "Køyrbar fil"
#: data/gtk/details-dialog.blp:108
msgid "Select File"
msgstr "Vel fil"
#: data/gtk/details-dialog.blp:119
msgid "More Info"
msgstr "Fleire opplysingar"
#: data/gtk/game.blp:101 data/gtk/game.blp:109 data/gtk/window.blp:444
msgid "Edit"
msgstr "Brigd"
#: data/gtk/game.blp:102 cartridges/window.py:359
msgid "Hide"
msgstr "Gøym"
#: data/gtk/game.blp:103 data/gtk/game.blp:111 data/gtk/window.blp:464
msgid "Remove"
msgstr "Fjern"
#: data/gtk/game.blp:110 cartridges/window.py:361
msgid "Unhide"
msgstr "Syn"
#: data/gtk/help-overlay.blp:11 data/gtk/preferences.blp:9
msgid "General"
msgstr "Ålment"
#: data/gtk/help-overlay.blp:14 data/gtk/window.blp:207 data/gtk/window.blp:223
#: data/gtk/window.blp:274 data/gtk/window.blp:290 data/gtk/window.blp:475
msgid "Search"
msgstr "Søk"
#: data/gtk/help-overlay.blp:24 data/gtk/window.blp:544
msgid "Keyboard Shortcuts"
msgstr "Tastatursnarvegar"
#: data/gtk/help-overlay.blp:29 cartridges/game.py:103
#: cartridges/preferences.py:137 cartridges/importer/importer.py:386
msgid "Undo"
msgstr "Angre"
#: data/gtk/help-overlay.blp:34
msgid "Quit"
msgstr "Avslutt"
#: data/gtk/help-overlay.blp:39 data/gtk/window.blp:92 data/gtk/window.blp:187
msgid "Toggle Sidebar"
msgstr "Syn/gøym sidefelt"
#: data/gtk/help-overlay.blp:44 data/gtk/window.blp:200 data/gtk/window.blp:267
msgid "Main Menu"
msgstr "Hovudmeny"
#: data/gtk/help-overlay.blp:50
msgid "Games"
msgstr "Spel"
#: data/gtk/help-overlay.blp:53 data/gtk/window.blp:193 data/gtk/window.blp:551
msgid "Add Game"
msgstr "Legg til spel"
#: data/gtk/help-overlay.blp:58 data/gtk/preferences.blp:58
#: data/gtk/window.blp:27 data/gtk/window.blp:555
msgid "Import"
msgstr "Importer"
#: data/gtk/help-overlay.blp:63
msgid "Show Hidden Games"
msgstr "Syn gøymde spel"
#: data/gtk/help-overlay.blp:68
msgid "Remove Game"
msgstr "Fjern spel"
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:62
#: data/gtk/preferences.blp:365
msgid "Behavior"
msgstr "Åtferd"
#: data/gtk/preferences.blp:16
msgid "Exit After Launching Games"
msgstr "Avslutt etter eit spel vert starta"
#: data/gtk/preferences.blp:20
msgid "Cover Image Launches Game"
msgstr "Omslagsbilete startar spel"
#: data/gtk/preferences.blp:21
msgid "Swaps the behavior of the cover image and the play button"
msgstr "Byttar åtferda for omslagsbiletet og spel-knappen"
#: data/gtk/preferences.blp:26 cartridges/details_dialog.py:91
msgid "Images"
msgstr "bilete"
#: data/gtk/preferences.blp:29
msgid "High Quality Images"
msgstr "Høgkvalitetsbilete"
#: data/gtk/preferences.blp:30
msgid "Save game covers losslessly at the cost of storage"
msgstr "Lagre omslagsbilete utan kvalitetstap på kostnad av lagringsplass"
#: data/gtk/preferences.blp:35
msgid "Danger Zone"
msgstr "Faresone"
#: data/gtk/preferences.blp:39
msgid "Remove All Games"
msgstr "Fjern alle spel"
#: data/gtk/preferences.blp:65
msgid "Import Games Automatically"
msgstr "Importer spel sjølvverkande"
#: data/gtk/preferences.blp:69
msgid "Remove Uninstalled Games"
msgstr "Fjern avinstallerte spel"
#: data/gtk/preferences.blp:74
msgid "Sources"
msgstr "Kjelder"
#: data/gtk/preferences.blp:78 cartridges/importer/steam_source.py:114
msgid "Steam"
msgstr "Steam"
#: data/gtk/preferences.blp:87 data/gtk/preferences.blp:114
#: data/gtk/preferences.blp:149 data/gtk/preferences.blp:192
#: data/gtk/preferences.blp:219 data/gtk/preferences.blp:246
#: data/gtk/preferences.blp:273
msgid "Install Location"
msgstr "Installasjonsstad"
#: data/gtk/preferences.blp:105 data/gtk/window.blp:565
#: cartridges/importer/lutris_source.py:107
msgid "Lutris"
msgstr "Lutris"
#: data/gtk/preferences.blp:131
msgid "Import Steam Games"
msgstr "Importer Steam-spel"
#: data/gtk/preferences.blp:135
msgid "Import Flatpak Games"
msgstr "Importer Flatpak-spel"
#: data/gtk/preferences.blp:140 cartridges/importer/heroic_source.py:355
msgid "Heroic"
msgstr "Heroic"
#: data/gtk/preferences.blp:166
msgid "Import Epic Games"
msgstr "Importer Epic Games-spel"
#: data/gtk/preferences.blp:170
msgid "Import GOG Games"
msgstr "Impoter GOG-spel"
#: data/gtk/preferences.blp:174
msgid "Import Amazon Games"
msgstr "Importer Amazon-spel"
#: data/gtk/preferences.blp:178
msgid "Import Sideloaded Games"
msgstr "Importer sideinnlasta spel"
#: data/gtk/preferences.blp:183 cartridges/importer/bottles_source.py:86
msgid "Bottles"
msgstr "Bottles"
#: data/gtk/preferences.blp:210 cartridges/importer/itch_source.py:81
msgid "itch"
msgstr "itch"
#: data/gtk/preferences.blp:237 cartridges/importer/legendary_source.py:97
msgid "Legendary"
msgstr "Legendary"
#: data/gtk/preferences.blp:264 cartridges/importer/retroarch_source.py:142
msgid "RetroArch"
msgstr "RetroArch"
#: data/gtk/preferences.blp:291 cartridges/importer/flatpak_source.py:143
msgid "Flatpak"
msgstr "Flatpak"
#. The location of the system-wide data directory
#: data/gtk/preferences.blp:301
msgid "System Location"
msgstr "Systemlagringsstad"
#. The location of the user-specific data directory
#: data/gtk/preferences.blp:319
msgid "User Location"
msgstr "Brukarlagringsplass"
#: data/gtk/preferences.blp:336
msgid "Import Game Launchers"
msgstr "Importer spelstartarar"
#: data/gtk/preferences.blp:341 cartridges/importer/desktop_source.py:215
msgid "Desktop Entries"
msgstr "Skrivebordsoppføringar"
#: data/gtk/preferences.blp:353 data/gtk/window.blp:563
msgid "SteamGridDB"
msgstr "SteamGridDB"
#: data/gtk/preferences.blp:357
msgid "Authentication"
msgstr "Legitimasjon"
#: data/gtk/preferences.blp:360
msgid "API Key"
msgstr "API-lykel"
#: data/gtk/preferences.blp:368
msgid "Use SteamGridDB"
msgstr "Nytt SteamGridDB"
#: data/gtk/preferences.blp:369
msgid "Download images when adding or importing games"
msgstr "Last ned bilete når spel vert lagde til eller importerte"
#: data/gtk/preferences.blp:373
msgid "Prefer Over Official Images"
msgstr "Føretrekk framfor offisielle bilete"
#: data/gtk/preferences.blp:377
msgid "Prefer Animated Images"
msgstr "Føretrekk animerte bilete"
#: data/gtk/preferences.blp:383
msgid "Update Covers"
msgstr "Oppdater omslag"
#: data/gtk/preferences.blp:384
msgid "Fetch covers for games already in your library"
msgstr "Hent omslag til spel som allereie finst i samlinga di"
#: data/gtk/preferences.blp:389
msgid "Update"
msgstr "Oppdater"
#: data/gtk/window.blp:6 data/gtk/window.blp:14
msgid "No Games Found"
msgstr "Fann ingen spel"
#: data/gtk/window.blp:7 data/gtk/window.blp:15
msgid "Try a different search"
msgstr "Prøv ein annan søkjeterm"
#: data/gtk/window.blp:21
msgid "No Games"
msgstr "Ingen spel"
#: data/gtk/window.blp:22
msgid "Use the + button to add games"
msgstr "Nytt «+»-knappen for å leggje til spel"
#: data/gtk/window.blp:40
msgid "No Hidden Games"
msgstr "Ingen gøymde spel"
#: data/gtk/window.blp:41
msgid "Games you hide will appear here"
msgstr "Spel som du gøymer, skal synast her"
#: data/gtk/window.blp:76 data/gtk/window.blp:113 cartridges/main.py:249
msgid "All Games"
msgstr "Alle spel"
#: data/gtk/window.blp:140 cartridges/main.py:251
msgid "Added"
msgstr "Tillagde"
#: data/gtk/window.blp:162
msgid "Imported"
msgstr "Importerte"
#: data/gtk/window.blp:260
msgid "Hidden Games"
msgstr "Gøymde spel"
#: data/gtk/window.blp:368
msgid "Game Title"
msgstr "Spelnamn"
#: data/gtk/window.blp:425
msgid "Play"
msgstr "Spel"
#: data/gtk/window.blp:502
msgid "Sort"
msgstr "Skil"
#: data/gtk/window.blp:505
msgid "A-Z"
msgstr "AÅ"
#: data/gtk/window.blp:511
msgid "Z-A"
msgstr "ÅA"
#: data/gtk/window.blp:517
msgid "Newest"
msgstr "Nyaste"
#: data/gtk/window.blp:523
msgid "Oldest"
msgstr "Eldste"
#: data/gtk/window.blp:529
msgid "Last Played"
msgstr "Sist spela"
#: data/gtk/window.blp:536
msgid "Show Hidden"
msgstr "Syn gøymde"
#: data/gtk/window.blp:545
msgid "About Cartridges"
msgstr "Om Cartridges"
#: data/gtk/window.blp:562
msgid "IGDB"
msgstr "IGDB"
#: data/gtk/window.blp:564
msgid "ProtonDB"
msgstr "ProtonDB"
#: data/gtk/window.blp:566
msgid "HowLongToBeat"
msgstr "HowLongToBeat"
#. The variable is the title of the game
#: cartridges/main.py:226 cartridges/game.py:125
msgid "{} launched"
msgstr "{} starta"
#. Translators: Replace this with Your Name, Your Name <your.email@example.com>, or Your Name https://your-site.com for it to show up in the About dialog.
#: cartridges/main.py:291
msgid "translator-credits"
msgstr "Sunniva Løvstad <cartridges@turtle.garden>"
#. The variable is the date when the game was added
#: cartridges/window.py:382
msgid "Added: {}"
msgstr "Tillagt: {}"
#: cartridges/window.py:385
msgid "Never"
msgstr "Aldri"
#. The variable is the date when the game was last played
#: cartridges/window.py:389
msgid "Last played: {}"
msgstr "Sist spela: {}"
#: cartridges/details_dialog.py:82
msgid "Apply"
msgstr "Nytt"
#: cartridges/details_dialog.py:88
msgid "Add New Game"
msgstr "Legg til nytt spel"
#: cartridges/details_dialog.py:89
msgid "Add"
msgstr "Legg til"
#: cartridges/details_dialog.py:102
msgid "Executables"
msgstr "Køyrbare filer"
#. Translate this string as you would translate "file"
#: cartridges/details_dialog.py:117
msgid "file.txt"
msgstr "fil.txt"
#. As in software
#: cartridges/details_dialog.py:119
msgid "program"
msgstr "program"
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:124 cartridges/details_dialog.py:126
msgid "C:\\path\\to\\{}"
msgstr "C:\\søkjesti\\til\\{}"
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:130 cartridges/details_dialog.py:132
msgid "/path/to/{}"
msgstr "/søkjesti/til/{}"
#: cartridges/details_dialog.py:137
msgid ""
"To launch the executable \"{}\", use the command:\n"
"\n"
"<tt>\"{}\"</tt>\n"
"\n"
"To open the file \"{}\" with the default application, use:\n"
"\n"
"<tt>{} \"{}\"</tt>\n"
"\n"
"If the path contains spaces, make sure to wrap it in double quotes!"
msgstr ""
"For å starte den køyrbare fila «{}», nytt komandoen:\n"
"\n"
"<tt>\"{}\"</tt>\n"
"\n"
"For å opne fila «{}» med det standard programmet, nytt kommandoen:\n"
"\n"
"<tt>{} \"{}\"</tt>\n"
"\n"
"Om stien inneheld mellomrom, syrg for at han vert pakka inn av doble "
"engelske sitatteikn!"
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:185
msgid "Couldn't Add Game"
msgstr "Kunne ikkje leggje til spel"
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:221
msgid "Game title cannot be empty."
msgstr "Spelnamnet kan ikkje vera tomt."
#: cartridges/details_dialog.py:185 cartridges/details_dialog.py:229
msgid "Executable cannot be empty."
msgstr "Den køyrbare fila må oppgjevast."
#: cartridges/details_dialog.py:220 cartridges/details_dialog.py:228
msgid "Couldn't Apply Preferences"
msgstr "Kunne ikkje taka i bruk endringar"
#. The variable is the title of the game
#: cartridges/game.py:139
msgid "{} hidden"
msgstr "{} gøymt"
#: cartridges/game.py:139
msgid "{} unhidden"
msgstr "{} avgøymt"
#. The variable is the title of the game
#: cartridges/game.py:153
msgid "{} removed"
msgstr "{} fjerna"
#: cartridges/preferences.py:136
msgid "All games removed"
msgstr "Alle spel fjerna"
#: cartridges/preferences.py:188
msgid ""
"An API key is required to use SteamGridDB. You can generate one {}here{}."
msgstr ""
"Ein API-lykel krevst for å nytte SteamGridDB. Du kan generere ein {}her{}."
#: cartridges/preferences.py:203
msgid "Downloading covers…"
msgstr "Lastar ned omslagsbilete…"
#: cartridges/preferences.py:222
msgid "Covers updated"
msgstr "Omslag oppdaterte"
#: cartridges/preferences.py:370
msgid "Installation Not Found"
msgstr "Fann ikkje installasjon"
#: cartridges/preferences.py:371
msgid "Select a valid directory"
msgstr "Vel ein gyldig katalog"
#: cartridges/preferences.py:407 cartridges/importer/importer.py:317
msgid "Warning"
msgstr "Åtvaring"
#: cartridges/preferences.py:441
msgid "Invalid Directory"
msgstr "Ugyldig katalog"
#: cartridges/preferences.py:447
msgid "Set Location"
msgstr "Fastset lagringsstad"
#: cartridges/utils/create_dialog.py:33 cartridges/importer/importer.py:318
msgid "Dismiss"
msgstr "Avvis"
#: cartridges/utils/relative_date.py:30
msgid "Today"
msgstr "I dag"
#: cartridges/utils/relative_date.py:32
msgid "Yesterday"
msgstr "I går"
#: cartridges/utils/relative_date.py:36
msgid "Last Week"
msgstr "Forrige veke"
#: cartridges/utils/relative_date.py:38
msgid "This Month"
msgstr "Denne månaden"
#: cartridges/utils/relative_date.py:40
msgid "Last Month"
msgstr "Forrige månad"
#: cartridges/utils/relative_date.py:44
msgid "Last Year"
msgstr "I fjor"
#: cartridges/importer/importer.py:144
msgid "Importing Games…"
msgstr "Importerer spel…"
#: cartridges/importer/importer.py:337
msgid "The following errors occured during import:"
msgstr "Dei fylgjande feila oppstod under importering:"
#: cartridges/importer/importer.py:366
msgid "No new games found"
msgstr "Ingen nye spel vart funne"
#. The variable is the number of games.
#: cartridges/importer/importer.py:379
msgid "{} game imported"
msgid_plural "{} games imported"
msgstr[0] "{} spel importert"
msgstr[1] "{} spel importerte"
#. The variable is the number of games. This text comes after "{0} games imported".
#: cartridges/importer/importer.py:383
msgid ", {} removed"
msgid_plural ", {} removed"
msgstr[0] ", {} fjerna"
msgstr[1] ", {} fjerna"
#. The variable is the name of the source
#: cartridges/importer/location.py:34
msgid "Select the {} cache directory."
msgstr "Vel {}-hurtiglagringsmappa."
#. The variable is the name of the source
#: cartridges/importer/location.py:36
msgid "Select the {} configuration directory."
msgstr "Vel {}-oppsettsmappa."
#. The variable is the name of the source
#: cartridges/importer/location.py:38
msgid "Select the {} data directory."
msgstr "Vel {}-datamappa."
#: cartridges/importer/retroarch_source.py:129
msgid "No RetroArch Core Selected"
msgstr "Ingen RetroArch-kjerne vald"
#. The variable is a newline separated list of playlists
#: cartridges/importer/retroarch_source.py:131
msgid "The following playlists have no default core:"
msgstr "Dei fylgjande spelelistene har ikkje ein standardkjerne:"
#: cartridges/importer/retroarch_source.py:133
msgid "Games with no core selected were not imported"
msgstr "Spel med ingen kjerne vald vart ikkje importerte"
#: cartridges/store/managers/sgdb_manager.py:46
msgid "Couldn't Authenticate SteamGridDB"
msgstr "Kunne ikkje legitimerast hjå SteamGridDB"
#: cartridges/store/managers/sgdb_manager.py:47
msgid "Verify your API key in preferences"
msgstr "Stadfest API-lykelen din i Innstillingar"

700
po/pl.po

File diff suppressed because it is too large Load Diff

667
po/pt.po
View File

@@ -5,16 +5,13 @@
# kramo <contact@kramo.hu>, 2023.
# Henrique Machado <henriquecamposrj@gmail.com>, 2023.
# João Alves <joao.2003.couto@gmail.com>, 2023.
# ssantos <ssantos@web.de>, 2024.
# Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org>, 2024.
# Cleverson Cândido <optimuspraimu@gmail.com>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: cartridges\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-11-05 14:01+0100\n"
"PO-Revision-Date: 2024-11-14 23:00+0000\n"
"Last-Translator: Cleverson Cândido <optimuspraimu@gmail.com>\n"
"POT-Creation-Date: 2023-06-26 12:01+0200\n"
"PO-Revision-Date: 2023-06-04 22:47+0000\n"
"Last-Translator: João Alves <joao.2003.couto@gmail.com>\n"
"Language-Team: Portuguese <https://hosted.weblate.org/projects/cartridges/"
"cartridges/pt/>\n"
"Language: pt\n"
@@ -22,32 +19,28 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 5.9-dev\n"
"X-Generator: Weblate 4.18-dev\n"
#: data/page.kramo.Cartridges.desktop.in:3
#: data/page.kramo.Cartridges.metainfo.xml.in:9
#: data/page.kramo.Cartridges.metainfo.xml.in:40 data/gtk/window.blp:47
#: data/gtk/window.blp:83
#: data/hu.kramo.Cartridges.desktop.in:3
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:47
#: src/main.py:146
msgid "Cartridges"
msgstr "Cartridges"
#: data/page.kramo.Cartridges.desktop.in:4
#: data/hu.kramo.Cartridges.desktop.in:4
msgid "Game Launcher"
msgstr "Iniciador de jogos"
#: data/page.kramo.Cartridges.desktop.in:5
#: data/page.kramo.Cartridges.metainfo.xml.in:10
#: data/hu.kramo.Cartridges.desktop.in:5
#: data/hu.kramo.Cartridges.metainfo.xml.in:7
msgid "Launch all your games"
msgstr "Inicie todos os seus jogos"
#: data/page.kramo.Cartridges.desktop.in:11
msgid ""
"gaming;launcher;steam;lutris;heroic;bottles;itch;flatpak;legendary;retroarch;"
msgstr ""
"Jogos;lançador;gaming;launcher;steam;lutris;heroic;bottles;itch;flatpak;"
"legendary;"
#: data/hu.kramo.Cartridges.desktop.in:11
msgid "gaming;launcher;steam;lutris;heroic;bottles;itch;"
msgstr "gaming;iniciador;steam;lutris;heroic;bottles;itch;"
#: data/page.kramo.Cartridges.metainfo.xml.in:12
#: data/hu.kramo.Cartridges.metainfo.xml.in:9
msgid ""
"Cartridges is a simple game launcher for all of your games. It has support "
"for importing games from Steam, Lutris, Heroic and more with no login "
@@ -59,66 +52,78 @@ msgstr ""
"necessidade de login. Você pode classificar e ocultar jogos ou baixar a capa "
"do SteamGridDB."
#: data/page.kramo.Cartridges.metainfo.xml.in:44 data/gtk/window.blp:320
#: cartridges/details_dialog.py:77
msgid "Game Details"
msgstr "Detalhes do jogo"
#: data/hu.kramo.Cartridges.metainfo.xml.in:30
msgid "Library"
msgstr "Biblioteca"
#: data/page.kramo.Cartridges.metainfo.xml.in:48
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 src/details_window.py:67
msgid "Edit Game Details"
msgstr "Editar detalhes do jogo"
#: data/page.kramo.Cartridges.metainfo.xml.in:52 data/gtk/help-overlay.blp:19
#: data/gtk/window.blp:543 cartridges/details_dialog.py:279
#: cartridges/importer/importer.py:319 cartridges/importer/importer.py:369
#: data/hu.kramo.Cartridges.metainfo.xml.in:38 data/gtk/window.blp:71
msgid "Game Details"
msgstr "Detalhes do jogo"
#: data/hu.kramo.Cartridges.metainfo.xml.in:42 data/gtk/window.blp:416
#: src/details_window.py:239
msgid "Preferences"
msgstr "Preferências"
#: data/gtk/details-dialog.blp:15
#: data/gtk/details-window.blp:25
msgid "Cancel"
msgstr "Cancelar"
#: data/gtk/details-dialog.blp:45
#: data/gtk/details-window.blp:57
msgid "New Cover"
msgstr "Nova capa"
#: data/gtk/details-dialog.blp:64
#: data/gtk/details-window.blp:75
msgid "Delete Cover"
msgstr "Apagar capa"
#: data/gtk/details-dialog.blp:92 data/gtk/game.blp:80
#: data/gtk/details-window.blp:101 data/gtk/details-window.blp:106
#: data/gtk/game.blp:80
msgid "Title"
msgstr "Título"
#: data/gtk/details-dialog.blp:96
msgid "Developer (optional)"
msgstr "Programador (opcional)"
#: data/gtk/details-window.blp:102
msgid "The title of the game"
msgstr "O título do jogo"
#: data/gtk/details-dialog.blp:102
#: data/gtk/details-window.blp:112 data/gtk/details-window.blp:117
msgid "Developer"
msgstr "Desenvolvedor"
#: data/gtk/details-window.blp:113
msgid "The developer or publisher (optional)"
msgstr "O desenvolvedor ou publicador (opcional)"
#: data/gtk/details-window.blp:123 data/gtk/details-window.blp:155
msgid "Executable"
msgstr "Executável"
#: data/gtk/details-dialog.blp:108
msgid "Select File"
msgstr "Selecionar ficheiro"
#: data/gtk/details-window.blp:124
msgid "File to open or command to run when launching the game"
msgstr "Arquivo a ser aberto ou comando a ser executado ao iniciar o jogo"
#: data/gtk/details-dialog.blp:119
#: data/gtk/details-window.blp:130
msgid "More Info"
msgstr "Mais informação"
#: data/gtk/game.blp:101 data/gtk/game.blp:109 data/gtk/window.blp:444
#: data/gtk/game.blp:102 data/gtk/game.blp:121 data/gtk/window.blp:195
msgid "Edit"
msgstr "Editar"
#: data/gtk/game.blp:102 cartridges/window.py:359
#: data/gtk/game.blp:107 src/window.py:169
msgid "Hide"
msgstr "Ocultar"
#: data/gtk/game.blp:103 data/gtk/game.blp:111 data/gtk/window.blp:464
#: data/gtk/game.blp:112 data/gtk/game.blp:131 data/gtk/preferences.blp:56
#: data/gtk/window.blp:209
msgid "Remove"
msgstr "Remover"
#: data/gtk/game.blp:110 cartridges/window.py:361
#: data/gtk/game.blp:126 src/window.py:171
msgid "Unhide"
msgstr "Exibir"
@@ -126,55 +131,52 @@ msgstr "Exibir"
msgid "General"
msgstr "Geral"
#: data/gtk/help-overlay.blp:14 data/gtk/window.blp:207 data/gtk/window.blp:223
#: data/gtk/window.blp:274 data/gtk/window.blp:290 data/gtk/window.blp:475
msgid "Search"
msgstr "Buscar"
#: data/gtk/help-overlay.blp:24 data/gtk/window.blp:544
msgid "Keyboard Shortcuts"
msgstr "Atalhos de teclado"
#: data/gtk/help-overlay.blp:29 cartridges/game.py:103
#: cartridges/preferences.py:137 cartridges/importer/importer.py:386
msgid "Undo"
msgstr "Desfazer"
#: data/gtk/help-overlay.blp:34
#: data/gtk/help-overlay.blp:14
msgid "Quit"
msgstr "Sair"
#: data/gtk/help-overlay.blp:39 data/gtk/window.blp:92 data/gtk/window.blp:187
msgid "Toggle Sidebar"
msgstr "Alternar barra lateral"
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:217 data/gtk/window.blp:257
#: data/gtk/window.blp:323
msgid "Search"
msgstr "Buscar"
#: data/gtk/help-overlay.blp:44 data/gtk/window.blp:200 data/gtk/window.blp:267
msgid "Main Menu"
msgstr "Menu principal"
#: data/gtk/help-overlay.blp:24
msgid "Show preferences"
msgstr "Mostrar preferências"
#: data/gtk/help-overlay.blp:50
#: data/gtk/help-overlay.blp:29
msgid "Shortcuts"
msgstr "Atalhos"
#: data/gtk/help-overlay.blp:34 src/game.py:105 src/preferences.py:103
msgid "Undo"
msgstr "Desfazer"
#: data/gtk/help-overlay.blp:39
msgid "Open menu"
msgstr "Abrir menu"
#: data/gtk/help-overlay.blp:45
msgid "Games"
msgstr "Jogos"
#: data/gtk/help-overlay.blp:53 data/gtk/window.blp:193 data/gtk/window.blp:551
msgid "Add Game"
msgstr "Adicionar jogo"
#: data/gtk/help-overlay.blp:48
msgid "Add new game"
msgstr "Adicionar novo jogo"
#: data/gtk/help-overlay.blp:58 data/gtk/preferences.blp:58
#: data/gtk/window.blp:27 data/gtk/window.blp:555
msgid "Import"
msgstr "Importar"
#: data/gtk/help-overlay.blp:53
msgid "Import games"
msgstr "Importar jogos"
#: data/gtk/help-overlay.blp:58
msgid "Show hidden games"
msgstr "Exibir jogos ocultados"
#: data/gtk/help-overlay.blp:63
msgid "Show Hidden Games"
msgstr "Exibir jogos ocultos"
#: data/gtk/help-overlay.blp:68
msgid "Remove Game"
msgid "Remove game"
msgstr "Remover jogo"
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:62
#: data/gtk/preferences.blp:365
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:236
msgid "Behavior"
msgstr "Comportamento"
@@ -182,321 +184,260 @@ msgstr "Comportamento"
msgid "Exit After Launching Games"
msgstr "Fechar Cartridges ao iniciar um jogo"
#: data/gtk/preferences.blp:20
#: data/gtk/preferences.blp:25
msgid "Cover Image Launches Game"
msgstr "Clicar na capa inicia o jogo"
#: data/gtk/preferences.blp:21
#: data/gtk/preferences.blp:26
msgid "Swaps the behavior of the cover image and the play button"
msgstr "Troca o comportamento de clicar na capa do jogo e do botão Jogar"
#: data/gtk/preferences.blp:26 cartridges/details_dialog.py:91
#: data/gtk/preferences.blp:36 src/details_window.py:81
msgid "Images"
msgstr "Imagens"
#: data/gtk/preferences.blp:29
#: data/gtk/preferences.blp:39
msgid "High Quality Images"
msgstr "Imagens de alta qualidade"
#: data/gtk/preferences.blp:30
#: data/gtk/preferences.blp:40
msgid "Save game covers losslessly at the cost of storage"
msgstr "Salva imagens das capas sem perda, consumindo mais armazenamento"
#: data/gtk/preferences.blp:35
#: data/gtk/preferences.blp:50
msgid "Danger Zone"
msgstr "Zona de perigo"
#: data/gtk/preferences.blp:39
#: data/gtk/preferences.blp:53
msgid "Remove All Games"
msgstr "Remover todos os jogos"
#: data/gtk/preferences.blp:65
msgid "Import Games Automatically"
msgstr "Importar jogos automaticamente"
#: data/gtk/preferences.blp:85 data/gtk/window.blp:27 data/gtk/window.blp:442
msgid "Import"
msgstr "Importar"
#: data/gtk/preferences.blp:69
msgid "Remove Uninstalled Games"
msgstr "Remover jogos desinstalados"
#: data/gtk/preferences.blp:74
#: data/gtk/preferences.blp:89
msgid "Sources"
msgstr "Fontes"
#: data/gtk/preferences.blp:78 cartridges/importer/steam_source.py:114
#: data/gtk/preferences.blp:92
msgid "Steam"
msgstr "Steam"
#: data/gtk/preferences.blp:87 data/gtk/preferences.blp:114
#: data/gtk/preferences.blp:149 data/gtk/preferences.blp:192
#: data/gtk/preferences.blp:219 data/gtk/preferences.blp:246
#: data/gtk/preferences.blp:273
#: data/gtk/preferences.blp:96 data/gtk/preferences.blp:110
#: data/gtk/preferences.blp:142 data/gtk/preferences.blp:183
#: data/gtk/preferences.blp:197 data/gtk/preferences.blp:211
#, fuzzy
#| msgid "itch Install Location"
msgid "Install Location"
msgstr "Local de instalação"
msgstr "Local de instalação do itch"
#: data/gtk/preferences.blp:105 data/gtk/window.blp:565
#: cartridges/importer/lutris_source.py:107
#: data/gtk/preferences.blp:106
msgid "Lutris"
msgstr "Lutris"
#: data/gtk/preferences.blp:131
#: data/gtk/preferences.blp:119
#, fuzzy
#| msgid "Lutris Cache Location"
msgid "Cache Location"
msgstr "Local do cache do Lutris"
#: data/gtk/preferences.blp:128
msgid "Import Steam Games"
msgstr "Importar jogos da Steam"
#: data/gtk/preferences.blp:135
msgid "Import Flatpak Games"
msgstr "Importar jogos do Flatpak"
#: data/gtk/preferences.blp:140 cartridges/importer/heroic_source.py:355
#: data/gtk/preferences.blp:138
msgid "Heroic"
msgstr "Heroic"
#: data/gtk/preferences.blp:166
#: data/gtk/preferences.blp:151
msgid "Import Epic Games"
msgstr "Importar jogos da Epic Games"
#: data/gtk/preferences.blp:170
#: data/gtk/preferences.blp:160
msgid "Import GOG Games"
msgstr "Importar jogos do GOG"
#: data/gtk/preferences.blp:174
msgid "Import Amazon Games"
msgstr "Importar jogos da Amazon"
#: data/gtk/preferences.blp:178
#: data/gtk/preferences.blp:169
msgid "Import Sideloaded Games"
msgstr "Importar jogos adicionados manualmente"
#: data/gtk/preferences.blp:183 cartridges/importer/bottles_source.py:86
#: data/gtk/preferences.blp:179
msgid "Bottles"
msgstr "Bottles"
#: data/gtk/preferences.blp:210 cartridges/importer/itch_source.py:81
#: data/gtk/preferences.blp:193
msgid "itch"
msgstr "itch"
#: data/gtk/preferences.blp:237 cartridges/importer/legendary_source.py:97
#: data/gtk/preferences.blp:207
msgid "Legendary"
msgstr "Lendário"
msgstr ""
#: data/gtk/preferences.blp:264 cartridges/importer/retroarch_source.py:142
msgid "RetroArch"
msgstr "RetroArch"
#: data/gtk/preferences.blp:291 cartridges/importer/flatpak_source.py:143
msgid "Flatpak"
msgstr "Flatpak"
#. The location of the system-wide data directory
#: data/gtk/preferences.blp:301
msgid "System Location"
msgstr "Local dos Dados no Sistema"
#. The location of the user-specific data directory
#: data/gtk/preferences.blp:319
msgid "User Location"
msgstr "Local dos Dados de Utilizador"
#: data/gtk/preferences.blp:336
msgid "Import Game Launchers"
msgstr "Importar iniciadores de jogos"
#: data/gtk/preferences.blp:341 cartridges/importer/desktop_source.py:215
msgid "Desktop Entries"
msgstr "Entradas desktop"
#: data/gtk/preferences.blp:353 data/gtk/window.blp:563
#: data/gtk/preferences.blp:224
msgid "SteamGridDB"
msgstr "SteamGridDB"
#: data/gtk/preferences.blp:357
#: data/gtk/preferences.blp:228
msgid "Authentication"
msgstr "Autenticação"
#: data/gtk/preferences.blp:360
#: data/gtk/preferences.blp:231
msgid "API Key"
msgstr "Chave da API"
#: data/gtk/preferences.blp:368
#: data/gtk/preferences.blp:239
msgid "Use SteamGridDB"
msgstr "Usar SteamGridDB"
#: data/gtk/preferences.blp:369
#: data/gtk/preferences.blp:240
msgid "Download images when adding or importing games"
msgstr "Baixa imagens ao adicionar ou importar jogos"
#: data/gtk/preferences.blp:373
#: data/gtk/preferences.blp:249
msgid "Prefer Over Official Images"
msgstr "Preferir mais que as imagens oficiais"
#: data/gtk/preferences.blp:377
#: data/gtk/preferences.blp:258
msgid "Prefer Animated Images"
msgstr "Preferir imagens animadas"
#: data/gtk/preferences.blp:383
msgid "Update Covers"
msgstr "Atualizar capas"
#: data/gtk/preferences.blp:384
msgid "Fetch covers for games already in your library"
msgstr "Obter capas para jogos que já estão na sua biblioteca"
#: data/gtk/preferences.blp:389
msgid "Update"
msgstr "Atualizar"
#: data/gtk/window.blp:6 data/gtk/window.blp:14
msgid "No Games Found"
msgstr "Nenhum jogo encontrado"
#: data/gtk/window.blp:7 data/gtk/window.blp:15
msgid "Try a different search"
msgstr "Tente outra pesquisa"
msgid "Try a different search."
msgstr "Tente outra pesquisa."
#: data/gtk/window.blp:21
msgid "No Games"
msgstr "Sem jogos"
#: data/gtk/window.blp:22
msgid "Use the + button to add games"
msgstr "Use o botão + para adicionar jogos"
msgid "Use the + button to add games."
msgstr "Use o botão + para adicionar jogos."
#: data/gtk/window.blp:40
msgid "No Hidden Games"
msgstr "Sem jogos ocultados"
#: data/gtk/window.blp:41
msgid "Games you hide will appear here"
msgstr "Jogos ocultados vão aparecer aqui"
msgid "Games you hide will appear here."
msgstr "Jogos ocultados vão aparecer aqui."
#: data/gtk/window.blp:76 data/gtk/window.blp:113 cartridges/main.py:249
msgid "All Games"
msgstr "Todos os jogos"
#: data/gtk/window.blp:64 data/gtk/window.blp:304
msgid "Back"
msgstr "Voltar"
#: data/gtk/window.blp:140 cartridges/main.py:251
msgid "Added"
msgstr "Adicionado"
#: data/gtk/window.blp:162
msgid "Imported"
msgstr "Importado"
#: data/gtk/window.blp:260
msgid "Hidden Games"
msgstr "Jogos ocultados"
#: data/gtk/window.blp:368
#: data/gtk/window.blp:121
msgid "Game Title"
msgstr "Título do jogo"
#: data/gtk/window.blp:425
#: data/gtk/window.blp:176
msgid "Play"
msgstr "Jogar"
#: data/gtk/window.blp:502
#: data/gtk/window.blp:243 data/gtk/window.blp:435
msgid "Add Game"
msgstr "Adicionar jogo"
#: data/gtk/window.blp:250 data/gtk/window.blp:316
msgid "Main Menu"
msgstr "Menu principal"
#: data/gtk/window.blp:311
msgid "Hidden Games"
msgstr "Jogos ocultados"
#: data/gtk/window.blp:374
msgid "Sort"
msgstr "Ordenar"
#: data/gtk/window.blp:505
#: data/gtk/window.blp:377
msgid "A-Z"
msgstr "A-Z"
#: data/gtk/window.blp:511
#: data/gtk/window.blp:383
msgid "Z-A"
msgstr "Z-A"
#: data/gtk/window.blp:517
#: data/gtk/window.blp:389
msgid "Newest"
msgstr "Mais novo"
#: data/gtk/window.blp:523
#: data/gtk/window.blp:395
msgid "Oldest"
msgstr "Mais antigo"
#: data/gtk/window.blp:529
#: data/gtk/window.blp:401
msgid "Last Played"
msgstr "Jogou pela última vez"
msgstr "Última vez jogado"
#: data/gtk/window.blp:536
#: data/gtk/window.blp:408
msgid "Show Hidden"
msgstr "Mostrar ocultados"
#: data/gtk/window.blp:545
#: data/gtk/window.blp:421
msgid "Keyboard Shortcuts"
msgstr "Atalhos de teclado"
#: data/gtk/window.blp:426
msgid "About Cartridges"
msgstr "Sobre o Cartuchos"
#: data/gtk/window.blp:562
msgid "IGDB"
msgstr "IGDB"
#: data/gtk/window.blp:564
msgid "ProtonDB"
msgstr "ProtonDB"
#: data/gtk/window.blp:566
msgid "HowLongToBeat"
msgstr "HowLongToBeat"
#. The variable is the title of the game
#: cartridges/main.py:226 cartridges/game.py:125
msgid "{} launched"
msgstr "{} iniciado"
#. Translators: Replace this with Your Name, Your Name <your.email@example.com>, or Your Name https://your-site.com for it to show up in the About dialog.
#: cartridges/main.py:291
msgid "translator-credits"
#. Translators: Replace this with your name for it to show up in the about window
#: src/main.py:164
msgid "translator_credits"
msgstr "Pedro Sader Azevedo"
#. The variable is the date when the game was added
#: cartridges/window.py:382
#: src/window.py:192
msgid "Added: {}"
msgstr "Adicionado: {}"
#: cartridges/window.py:385
#: src/window.py:195
msgid "Never"
msgstr "Nunca"
#. The variable is the date when the game was last played
#: cartridges/window.py:389
#: src/window.py:199
msgid "Last played: {}"
msgstr "Jogou pela última vez: {}"
msgstr "Última vez jogado"
#: cartridges/details_dialog.py:82
#: src/details_window.py:72
msgid "Apply"
msgstr "Aplicar"
#: cartridges/details_dialog.py:88
#: src/details_window.py:78
msgid "Add New Game"
msgstr "Adicionar novo jogo"
#: cartridges/details_dialog.py:89
msgid "Add"
msgstr "Adicionar"
#: cartridges/details_dialog.py:102
msgid "Executables"
msgstr "Executáveis"
#: src/details_window.py:79
msgid "Confirm"
msgstr "Confirmar"
#. Translate this string as you would translate "file"
#: cartridges/details_dialog.py:117
#: src/details_window.py:91
msgid "file.txt"
msgstr "arquivo.txt"
#. As in software
#: cartridges/details_dialog.py:119
#: src/details_window.py:93
msgid "program"
msgstr "programa"
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:124 cartridges/details_dialog.py:126
#: src/details_window.py:98 src/details_window.py:100
msgid "C:\\path\\to\\{}"
msgstr "C:\\caminho\\para\\{}"
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:130 cartridges/details_dialog.py:132
#: src/details_window.py:104 src/details_window.py:106
msgid "/path/to/{}"
msgstr "/caminho/para/{}"
#: cartridges/details_dialog.py:137
#: src/details_window.py:111
msgid ""
"To launch the executable \"{}\", use the command:\n"
"\n"
@@ -518,232 +459,91 @@ msgstr ""
"\n"
"Se o caminho contiver espaços, certifique-se de colocá-lo entre aspas duplas!"
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:185
#: src/details_window.py:146 src/details_window.py:152
msgid "Couldn't Add Game"
msgstr "Não foi possível adicionar o jogo"
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:221
#: src/details_window.py:146 src/details_window.py:181
msgid "Game title cannot be empty."
msgstr "O título do jogo não pode estar vazio."
#: cartridges/details_dialog.py:185 cartridges/details_dialog.py:229
#: src/details_window.py:152 src/details_window.py:189
msgid "Executable cannot be empty."
msgstr "O executável não pode estar vazio."
#: cartridges/details_dialog.py:220 cartridges/details_dialog.py:228
#: src/details_window.py:180 src/details_window.py:188
msgid "Couldn't Apply Preferences"
msgstr "Não foi possível aplicar as preferências"
#. The variable is the title of the game
#: cartridges/game.py:139
#: src/game.py:141
msgid "{} launched"
msgstr "{} iniciado"
#. The variable is the title of the game
#: src/game.py:154
msgid "{} hidden"
msgstr "{} está oculto"
#: cartridges/game.py:139
#: src/game.py:154
msgid "{} unhidden"
msgstr "{} está exposto"
#. The variable is the title of the game
#: cartridges/game.py:153
#: src/game.py:171
msgid "{} removed"
msgstr "{} removido"
#: cartridges/preferences.py:136
#: src/preferences.py:102
msgid "All games removed"
msgstr "Todos os jogos foram removidos"
#: cartridges/preferences.py:188
#: src/preferences.py:149
msgid ""
"An API key is required to use SteamGridDB. You can generate one {}here{}."
msgstr ""
"Uma chave da API é necessária para usar a SteamGridDB. Você pode gerar uma "
"chave {}aqui{}."
#: cartridges/preferences.py:203
msgid "Downloading covers…"
msgstr "A descarregar capas…"
#: cartridges/preferences.py:222
msgid "Covers updated"
msgstr "Capas atualizadas"
#: cartridges/preferences.py:370
msgid "Installation Not Found"
msgstr "Instalação não encontrada"
#: cartridges/preferences.py:371
msgid "Select a valid directory"
msgstr "Selecione um diretório válido"
#: cartridges/preferences.py:407 cartridges/importer/importer.py:317
msgid "Warning"
msgstr "Atenção"
#: cartridges/preferences.py:441
msgid "Invalid Directory"
msgstr "Diretório inválido"
#: cartridges/preferences.py:447
#: src/preferences.py:289
msgid "Set Location"
msgstr "Definir local"
#: cartridges/utils/create_dialog.py:33 cartridges/importer/importer.py:318
#: src/utils/create_dialog.py:25
msgid "Dismiss"
msgstr "Dispensar"
#: cartridges/utils/relative_date.py:30
msgid "Today"
msgstr "Hoje"
#: src/importer/sources/source.py:106
msgid "Data"
msgstr ""
#: cartridges/utils/relative_date.py:32
msgid "Yesterday"
msgstr "Ontem"
#: src/importer/sources/source.py:107
msgid "Cache"
msgstr ""
#: cartridges/utils/relative_date.py:36
msgid "Last Week"
msgstr "Semana passada"
#: src/importer/sources/source.py:108
#, fuzzy
#| msgid "Confirm"
msgid "Configuration"
msgstr "Confirmar"
#: cartridges/utils/relative_date.py:38
msgid "This Month"
msgstr "Este mês"
#. The variables are the type of location (eg. cache) and the source's name (eg. Steam)
#: src/importer/sources/source.py:119
msgid "Invalid {} Location for {{}}"
msgstr ""
#: cartridges/utils/relative_date.py:40
msgid "Last Month"
msgstr "Mês passado"
#: src/importer/sources/source.py:120
msgid "Pick a new one or disable the source in preferences"
msgstr ""
#: cartridges/utils/relative_date.py:44
msgid "Last Year"
msgstr "Ano passado"
#: cartridges/importer/importer.py:144
msgid "Importing Games…"
msgstr "Importando jogos…"
#: cartridges/importer/importer.py:337
msgid "The following errors occured during import:"
msgstr "Ocorreram os seguintes erros durante a importação:"
#: cartridges/importer/importer.py:366
msgid "No new games found"
msgstr "Nenhum jogo novo encontrado"
#. The variable is the number of games.
#: cartridges/importer/importer.py:379
msgid "{} game imported"
msgid_plural "{} games imported"
msgstr[0] "{} jogo importado"
msgstr[1] "{} jogos importados"
#. The variable is the number of games. This text comes after "{0} games imported".
#: cartridges/importer/importer.py:383
msgid ", {} removed"
msgid_plural ", {} removed"
msgstr[0] "{} removido"
msgstr[1] "{} removidos"
#. The variable is the name of the source
#: cartridges/importer/location.py:34
msgid "Select the {} cache directory."
msgstr "Selecione o diretório de cache {}."
#. The variable is the name of the source
#: cartridges/importer/location.py:36
msgid "Select the {} configuration directory."
msgstr "Selecione o diretório de configuração do(a) {}."
#. The variable is the name of the source
#: cartridges/importer/location.py:38
msgid "Select the {} data directory."
msgstr "Selecione o diretório de dados do(a) {}."
#: cartridges/importer/retroarch_source.py:129
msgid "No RetroArch Core Selected"
msgstr "Nenhum núcleo RetroArch selecionado"
#. The variable is a newline separated list of playlists
#: cartridges/importer/retroarch_source.py:131
msgid "The following playlists have no default core:"
msgstr "As seguintes listas de jogos não têm núcleo padrão:"
#: cartridges/importer/retroarch_source.py:133
msgid "Games with no core selected were not imported"
msgstr "Jogos sem núcleo selecionado não foram importados"
#: cartridges/store/managers/sgdb_manager.py:46
#: src/store/managers/sgdb_manager.py:47
#, fuzzy
#| msgid "Couldn't Connect to SteamGridDB"
msgid "Couldn't Authenticate SteamGridDB"
msgstr "Não foi possível autenticar no SteamGridDB"
msgstr "Não foi possível conectar à SteamGridDB"
#: cartridges/store/managers/sgdb_manager.py:47
#: src/store/managers/sgdb_manager.py:48
msgid "Verify your API key in preferences"
msgstr "Verifique a sua chave de API nas preferências"
#, fuzzy
#~ msgid "1 game imported"
#~ msgid_plural "{} games imported"
#~ msgstr[0] "1 jogo importado"
#~ msgstr[1] "{} jogos importados"
#, fuzzy
#~ msgid "1 removed"
#~ msgid_plural "{} removed"
#~ msgstr[0] "1 removido"
#~ msgstr[1] "{} removidos"
#~ msgid "Cache Location"
#~ msgstr "Local do cache"
#~ msgid "Library"
#~ msgstr "Biblioteca"
#~ msgid "Show preferences"
#~ msgstr "Mostrar preferências"
#~ msgid "Shortcuts"
#~ msgstr "Atalhos"
#~ msgid "Open menu"
#~ msgstr "Abrir menu"
#~ msgid "Add new game"
#~ msgstr "Adicionar novo jogo"
#~ msgid "Import games"
#~ msgstr "Importar jogos"
#~ msgid "Back"
#~ msgstr "Voltar"
#, fuzzy
#~| msgid "Search"
#~ msgid "Search games"
#~ msgstr "Buscar"
#, fuzzy
#~| msgid "Show hidden games"
#~ msgid "Search hidden games"
#~ msgstr "Exibir jogos ocultados"
#~ msgid "The title of the game"
#~ msgstr "O título do jogo"
#~ msgid "Developer"
#~ msgstr "Desenvolvedor"
#~ msgid "File to open or command to run when launching the game"
#~ msgstr "Arquivo a ser aberto ou comando a ser executado ao iniciar o jogo"
#~ msgid "Confirm"
#~ msgstr "Confirmar"
#, fuzzy
#~| msgid "The Steam directory cannot be found."
#~ msgid "Directory not Valid"
#~ msgstr "O diretório da Steam não foi encontrado."
#, fuzzy
#~| msgid "Confirm"
#~ msgid "Configuration"
#~ msgstr "Confirmar"
msgstr ""
#~ msgid "Steam Install Location"
#~ msgstr "Local de instalação da Steam"
@@ -757,12 +557,42 @@ msgstr "Verifique a sua chave de API nas preferências"
#~ msgid "Bottles Install Location"
#~ msgstr "Local de instalação do Bottles"
#~ msgid "Today"
#~ msgstr "Hoje"
#~ msgid "Yesterday"
#~ msgstr "Ontem"
#~ msgid "Cache Not Found"
#~ msgstr "Cache não encontrado"
#~ msgid "Select the Lutris cache directory."
#~ msgstr "Selecione o diretório de cache do Lutris."
#~ msgid "Installation Not Found"
#~ msgstr "Instalação não encontrada"
#~ msgid "Select the {} configuration directory."
#~ msgstr "Selecione o diretório de configuração de {}."
#~ msgid "Select the {} data directory."
#~ msgstr "Selecione o diretório de informações de {}."
#~ msgid "Importing Games…"
#~ msgstr "Importando jogos…"
#~ msgid "Importing Covers…"
#~ msgstr "Importando capas…"
#~ msgid "No new games found"
#~ msgstr "Nenhum jogo novo encontrado"
#~ msgid "1 game imported"
#~ msgstr "1 jogo importado"
#~ msgid "{} games imported"
#~ msgstr "{} jogos importados"
#~ msgid "Directory to use when importing games"
#~ msgstr "Diretório para usar ao importar jogos"
@@ -873,5 +703,8 @@ msgstr "Verifique a sua chave de API nas preferências"
#~ msgid "No new games were found in the Steam library."
#~ msgstr "Nenhum jogo novo foi encontrado na biblioteca da Steam."
#~ msgid "The Steam directory cannot be found."
#~ msgstr "O diretório da Steam não foi encontrado."
#~ msgid "Talking to Steam"
#~ msgstr "Falando com a Steam"

View File

@@ -3,18 +3,13 @@
# This file is distributed under the same license as the Cartridges package.
# Henrique Machado <henriquecamposrj@gmail.com>, 2023.
# Vinícius Gama Santos <vinny.stalck@protonmail.com>, 2023.
# Vítor Fernandes Almado <vfalmado@gmail.com>, 2023.
# Rafael Fontenelle <rafaelff@gnome.org>, 2023, 2024.
# Filipe Motta <luiz_filipe_motta@hotmail.com>, 2024.
# Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org>, 2024.
# Maxwel Dantas <maxweldantas@gmail.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Cartridges\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-11-05 14:01+0100\n"
"PO-Revision-Date: 2025-05-08 20:15+0000\n"
"Last-Translator: Maxwel Dantas <maxweldantas@gmail.com>\n"
"POT-Creation-Date: 2023-06-26 12:01+0200\n"
"PO-Revision-Date: 2023-06-02 15:40+0000\n"
"Last-Translator: Vinícius Gama Santos <vinny.stalck@protonmail.com>\n"
"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
"cartridges/cartridges/pt_BR/>\n"
"Language: pt_BR\n"
@@ -22,31 +17,28 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 5.12-dev\n"
"X-Generator: Weblate 4.18-dev\n"
#: data/page.kramo.Cartridges.desktop.in:3
#: data/page.kramo.Cartridges.metainfo.xml.in:9
#: data/page.kramo.Cartridges.metainfo.xml.in:40 data/gtk/window.blp:47
#: data/gtk/window.blp:83
#: data/hu.kramo.Cartridges.desktop.in:3
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:47
#: src/main.py:146
msgid "Cartridges"
msgstr "Cartuchos"
#: data/page.kramo.Cartridges.desktop.in:4
#: data/hu.kramo.Cartridges.desktop.in:4
msgid "Game Launcher"
msgstr "Iniciador de jogos"
#: data/page.kramo.Cartridges.desktop.in:5
#: data/page.kramo.Cartridges.metainfo.xml.in:10
#: data/hu.kramo.Cartridges.desktop.in:5
#: data/hu.kramo.Cartridges.metainfo.xml.in:7
msgid "Launch all your games"
msgstr "Inicie todos os seus jogos"
#: data/page.kramo.Cartridges.desktop.in:11
msgid ""
"gaming;launcher;steam;lutris;heroic;bottles;itch;flatpak;legendary;retroarch;"
msgstr ""
"Jogos;lançador;steam;lutris;heroic;bottles;itch;flatpak;legendary;retroarch;"
#: data/hu.kramo.Cartridges.desktop.in:11
msgid "gaming;launcher;steam;lutris;heroic;bottles;itch;"
msgstr "jogos;gaming;launcher;steam;lutris;heroic;bottles;itch;"
#: data/page.kramo.Cartridges.metainfo.xml.in:12
#: data/hu.kramo.Cartridges.metainfo.xml.in:9
msgid ""
"Cartridges is a simple game launcher for all of your games. It has support "
"for importing games from Steam, Lutris, Heroic and more with no login "
@@ -58,66 +50,78 @@ msgstr ""
"necessidade de login. Você pode ordenar e esconder jogos ou baixar arte de "
"capa do SteamGridDB."
#: data/page.kramo.Cartridges.metainfo.xml.in:44 data/gtk/window.blp:320
#: cartridges/details_dialog.py:77
msgid "Game Details"
msgstr "Detalhes do jogo"
#: data/hu.kramo.Cartridges.metainfo.xml.in:30
msgid "Library"
msgstr "Biblioteca"
#: data/page.kramo.Cartridges.metainfo.xml.in:48
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 src/details_window.py:67
msgid "Edit Game Details"
msgstr "Editar detalhes do jogo"
#: data/page.kramo.Cartridges.metainfo.xml.in:52 data/gtk/help-overlay.blp:19
#: data/gtk/window.blp:543 cartridges/details_dialog.py:279
#: cartridges/importer/importer.py:319 cartridges/importer/importer.py:369
#: data/hu.kramo.Cartridges.metainfo.xml.in:38 data/gtk/window.blp:71
msgid "Game Details"
msgstr "Detalhes do jogo"
#: data/hu.kramo.Cartridges.metainfo.xml.in:42 data/gtk/window.blp:416
#: src/details_window.py:239
msgid "Preferences"
msgstr "Preferências"
#: data/gtk/details-dialog.blp:15
#: data/gtk/details-window.blp:25
msgid "Cancel"
msgstr "Cancelar"
#: data/gtk/details-dialog.blp:45
#: data/gtk/details-window.blp:57
msgid "New Cover"
msgstr "Nova capa"
#: data/gtk/details-dialog.blp:64
#: data/gtk/details-window.blp:75
msgid "Delete Cover"
msgstr "Excluir capa"
#: data/gtk/details-dialog.blp:92 data/gtk/game.blp:80
#: data/gtk/details-window.blp:101 data/gtk/details-window.blp:106
#: data/gtk/game.blp:80
msgid "Title"
msgstr "Título"
#: data/gtk/details-dialog.blp:96
msgid "Developer (optional)"
msgstr "Desenvolvedor (opcional)"
#: data/gtk/details-window.blp:102
msgid "The title of the game"
msgstr "O título do jogo"
#: data/gtk/details-dialog.blp:102
#: data/gtk/details-window.blp:112 data/gtk/details-window.blp:117
msgid "Developer"
msgstr "Desenvolvedor"
#: data/gtk/details-window.blp:113
msgid "The developer or publisher (optional)"
msgstr "O desenvolvedor ou publicador (opcional)"
#: data/gtk/details-window.blp:123 data/gtk/details-window.blp:155
msgid "Executable"
msgstr "Executável"
#: data/gtk/details-dialog.blp:108
msgid "Select File"
msgstr "Selecionar arquivo"
#: data/gtk/details-window.blp:124
msgid "File to open or command to run when launching the game"
msgstr "Arquivo a ser aberto ou comando a ser executado ao iniciar o jogo"
#: data/gtk/details-dialog.blp:119
#: data/gtk/details-window.blp:130
msgid "More Info"
msgstr "Mais informações"
#: data/gtk/game.blp:101 data/gtk/game.blp:109 data/gtk/window.blp:444
#: data/gtk/game.blp:102 data/gtk/game.blp:121 data/gtk/window.blp:195
msgid "Edit"
msgstr "Editar"
#: data/gtk/game.blp:102 cartridges/window.py:359
#: data/gtk/game.blp:107 src/window.py:169
msgid "Hide"
msgstr "Esconder"
#: data/gtk/game.blp:103 data/gtk/game.blp:111 data/gtk/window.blp:464
#: data/gtk/game.blp:112 data/gtk/game.blp:131 data/gtk/preferences.blp:56
#: data/gtk/window.blp:209
msgid "Remove"
msgstr "Remover"
#: data/gtk/game.blp:110 cartridges/window.py:361
#: data/gtk/game.blp:126 src/window.py:171
msgid "Unhide"
msgstr "Exibir"
@@ -125,55 +129,52 @@ msgstr "Exibir"
msgid "General"
msgstr "Geral"
#: data/gtk/help-overlay.blp:14 data/gtk/window.blp:207 data/gtk/window.blp:223
#: data/gtk/window.blp:274 data/gtk/window.blp:290 data/gtk/window.blp:475
msgid "Search"
msgstr "Buscar"
#: data/gtk/help-overlay.blp:24 data/gtk/window.blp:544
msgid "Keyboard Shortcuts"
msgstr "Atalhos de teclado"
#: data/gtk/help-overlay.blp:29 cartridges/game.py:103
#: cartridges/preferences.py:137 cartridges/importer/importer.py:386
msgid "Undo"
msgstr "Desfazer"
#: data/gtk/help-overlay.blp:34
#: data/gtk/help-overlay.blp:14
msgid "Quit"
msgstr "Sair"
#: data/gtk/help-overlay.blp:39 data/gtk/window.blp:92 data/gtk/window.blp:187
msgid "Toggle Sidebar"
msgstr "Alternar barra lateral"
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:217 data/gtk/window.blp:257
#: data/gtk/window.blp:323
msgid "Search"
msgstr "Buscar"
#: data/gtk/help-overlay.blp:44 data/gtk/window.blp:200 data/gtk/window.blp:267
msgid "Main Menu"
msgstr "Menu Principal"
#: data/gtk/help-overlay.blp:24
msgid "Show preferences"
msgstr "Mostrar preferências"
#: data/gtk/help-overlay.blp:50
#: data/gtk/help-overlay.blp:29
msgid "Shortcuts"
msgstr "Atalhos"
#: data/gtk/help-overlay.blp:34 src/game.py:105 src/preferences.py:103
msgid "Undo"
msgstr "Desfazer"
#: data/gtk/help-overlay.blp:39
msgid "Open menu"
msgstr "Abrir menu"
#: data/gtk/help-overlay.blp:45
msgid "Games"
msgstr "Jogos"
#: data/gtk/help-overlay.blp:53 data/gtk/window.blp:193 data/gtk/window.blp:551
msgid "Add Game"
msgstr "Adicionar jogo"
#: data/gtk/help-overlay.blp:48
msgid "Add new game"
msgstr "Adicionar novo jogo"
#: data/gtk/help-overlay.blp:58 data/gtk/preferences.blp:58
#: data/gtk/window.blp:27 data/gtk/window.blp:555
msgid "Import"
msgstr "Importar"
#: data/gtk/help-overlay.blp:53
msgid "Import games"
msgstr "Importar jogos"
#: data/gtk/help-overlay.blp:63
msgid "Show Hidden Games"
#: data/gtk/help-overlay.blp:58
msgid "Show hidden games"
msgstr "Exibir jogos ocultos"
#: data/gtk/help-overlay.blp:68
msgid "Remove Game"
#: data/gtk/help-overlay.blp:63
msgid "Remove game"
msgstr "Remover jogo"
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:62
#: data/gtk/preferences.blp:365
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:236
msgid "Behavior"
msgstr "Comportamento"
@@ -181,325 +182,260 @@ msgstr "Comportamento"
msgid "Exit After Launching Games"
msgstr "Fechar ao iniciar jogos"
#: data/gtk/preferences.blp:20
#: data/gtk/preferences.blp:25
msgid "Cover Image Launches Game"
msgstr "Imagem da capa inicia o jogo"
#: data/gtk/preferences.blp:21
#: data/gtk/preferences.blp:26
msgid "Swaps the behavior of the cover image and the play button"
msgstr "Troca o comportamento da imagem da capa e do botão jogar"
#: data/gtk/preferences.blp:26 cartridges/details_dialog.py:91
#: data/gtk/preferences.blp:36 src/details_window.py:81
msgid "Images"
msgstr "Imagens"
#: data/gtk/preferences.blp:29
#: data/gtk/preferences.blp:39
msgid "High Quality Images"
msgstr "Imagens de alta qualidade"
#: data/gtk/preferences.blp:30
#: data/gtk/preferences.blp:40
msgid "Save game covers losslessly at the cost of storage"
msgstr "Salva capas de jogos sem perdas, consumindo mais armazenamento"
#: data/gtk/preferences.blp:35
#: data/gtk/preferences.blp:50
msgid "Danger Zone"
msgstr "Zona de Perigo"
#: data/gtk/preferences.blp:39
#: data/gtk/preferences.blp:53
msgid "Remove All Games"
msgstr "Remover todos os jogos"
#: data/gtk/preferences.blp:65
msgid "Import Games Automatically"
msgstr "Importar jogos automaticamente"
#: data/gtk/preferences.blp:85 data/gtk/window.blp:27 data/gtk/window.blp:442
msgid "Import"
msgstr "Importar"
#: data/gtk/preferences.blp:69
msgid "Remove Uninstalled Games"
msgstr "Remover jogos desinstalados"
#: data/gtk/preferences.blp:74
#: data/gtk/preferences.blp:89
msgid "Sources"
msgstr "Fontes"
#: data/gtk/preferences.blp:78 cartridges/importer/steam_source.py:114
#: data/gtk/preferences.blp:92
msgid "Steam"
msgstr "Steam"
#: data/gtk/preferences.blp:87 data/gtk/preferences.blp:114
#: data/gtk/preferences.blp:149 data/gtk/preferences.blp:192
#: data/gtk/preferences.blp:219 data/gtk/preferences.blp:246
#: data/gtk/preferences.blp:273
#: data/gtk/preferences.blp:96 data/gtk/preferences.blp:110
#: data/gtk/preferences.blp:142 data/gtk/preferences.blp:183
#: data/gtk/preferences.blp:197 data/gtk/preferences.blp:211
#, fuzzy
#| msgid "itch Install Location"
msgid "Install Location"
msgstr "Local de instalação"
msgstr "Local de instalação do itch"
#: data/gtk/preferences.blp:105 data/gtk/window.blp:565
#: cartridges/importer/lutris_source.py:107
#: data/gtk/preferences.blp:106
msgid "Lutris"
msgstr "Lutris"
#: data/gtk/preferences.blp:131
#: data/gtk/preferences.blp:119
#, fuzzy
#| msgid "Lutris Cache Location"
msgid "Cache Location"
msgstr "Local do cache do Lutris"
#: data/gtk/preferences.blp:128
msgid "Import Steam Games"
msgstr "Importar jogos do Steam"
#: data/gtk/preferences.blp:135
msgid "Import Flatpak Games"
msgstr "Importar jogos do Flatpak"
#: data/gtk/preferences.blp:140 cartridges/importer/heroic_source.py:355
#: data/gtk/preferences.blp:138
msgid "Heroic"
msgstr "Heroic"
#: data/gtk/preferences.blp:166
#: data/gtk/preferences.blp:151
msgid "Import Epic Games"
msgstr "Importar jogos da Epic Games"
#: data/gtk/preferences.blp:170
#: data/gtk/preferences.blp:160
msgid "Import GOG Games"
msgstr "Importar jogos do GOG"
#: data/gtk/preferences.blp:174
msgid "Import Amazon Games"
msgstr "Importar jogos da Amazon"
#: data/gtk/preferences.blp:178
#: data/gtk/preferences.blp:169
msgid "Import Sideloaded Games"
msgstr "Importar jogos adicionados manualmente"
#: data/gtk/preferences.blp:183 cartridges/importer/bottles_source.py:86
#: data/gtk/preferences.blp:179
msgid "Bottles"
msgstr "Garrafas"
#: data/gtk/preferences.blp:210 cartridges/importer/itch_source.py:81
#: data/gtk/preferences.blp:193
msgid "itch"
msgstr "itch"
#: data/gtk/preferences.blp:237 cartridges/importer/legendary_source.py:97
#: data/gtk/preferences.blp:207
msgid "Legendary"
msgstr "Lendário"
msgstr ""
#: data/gtk/preferences.blp:264 cartridges/importer/retroarch_source.py:142
msgid "RetroArch"
msgstr "RetroArch"
#: data/gtk/preferences.blp:291 cartridges/importer/flatpak_source.py:143
msgid "Flatpak"
msgstr "Flatpak"
#. The location of the system-wide data directory
#: data/gtk/preferences.blp:301
msgid "System Location"
msgstr "Local dos Dados no Sistema"
#. The location of the user-specific data directory
#: data/gtk/preferences.blp:319
msgid "User Location"
msgstr "Local dos Dados de Usuário"
#: data/gtk/preferences.blp:336
msgid "Import Game Launchers"
msgstr "Importar iniciadores de jogos"
#: data/gtk/preferences.blp:341 cartridges/importer/desktop_source.py:215
msgid "Desktop Entries"
msgstr "Entradas desktop"
#: data/gtk/preferences.blp:353 data/gtk/window.blp:563
#: data/gtk/preferences.blp:224
msgid "SteamGridDB"
msgstr "SteamGridDB"
#: data/gtk/preferences.blp:357
#: data/gtk/preferences.blp:228
msgid "Authentication"
msgstr "Autenticação"
#: data/gtk/preferences.blp:360
#: data/gtk/preferences.blp:231
msgid "API Key"
msgstr "Chave da API"
#: data/gtk/preferences.blp:368
#: data/gtk/preferences.blp:239
msgid "Use SteamGridDB"
msgstr "Usar SteamGridDB"
#: data/gtk/preferences.blp:369
#: data/gtk/preferences.blp:240
msgid "Download images when adding or importing games"
msgstr "Baixar imagens ao adicionar ou importar jogos"
#: data/gtk/preferences.blp:373
#: data/gtk/preferences.blp:249
msgid "Prefer Over Official Images"
msgstr "Preferir mais que as imagens oficiais"
#: data/gtk/preferences.blp:377
#: data/gtk/preferences.blp:258
msgid "Prefer Animated Images"
msgstr "Preferir imagens animadas"
#: data/gtk/preferences.blp:383
msgid "Update Covers"
msgstr "Atualizar capas"
#: data/gtk/preferences.blp:384
msgid "Fetch covers for games already in your library"
msgstr "Obter capas para jogos que já estão na sua biblioteca"
#: data/gtk/preferences.blp:389
msgid "Update"
msgstr "Atualizar"
#: data/gtk/window.blp:6 data/gtk/window.blp:14
msgid "No Games Found"
msgstr "Nenhum jogo encontrado"
#: data/gtk/window.blp:7 data/gtk/window.blp:15
msgid "Try a different search"
msgstr "Tente uma busca diferente"
msgid "Try a different search."
msgstr "Tente uma busca diferente."
#: data/gtk/window.blp:21
msgid "No Games"
msgstr "Sem jogos"
#: data/gtk/window.blp:22
msgid "Use the + button to add games"
msgstr "Use o botão + para adicionar jogos"
msgid "Use the + button to add games."
msgstr "Use o botão + para adicionar jogos."
#: data/gtk/window.blp:40
msgid "No Hidden Games"
msgstr "Sem jogos ocultos"
#: data/gtk/window.blp:41
msgid "Games you hide will appear here"
msgstr "Os jogos ocultos aparecerão aqui"
msgid "Games you hide will appear here."
msgstr "Os jogos ocultos aparecerão aqui."
#: data/gtk/window.blp:76 data/gtk/window.blp:113 cartridges/main.py:249
msgid "All Games"
msgstr "Todos os jogos"
#: data/gtk/window.blp:64 data/gtk/window.blp:304
msgid "Back"
msgstr "Voltar"
#: data/gtk/window.blp:140 cartridges/main.py:251
msgid "Added"
msgstr "Adicionado"
#: data/gtk/window.blp:162
msgid "Imported"
msgstr "Importado"
#: data/gtk/window.blp:260
msgid "Hidden Games"
msgstr "Jogos ocultos"
#: data/gtk/window.blp:368
#: data/gtk/window.blp:121
msgid "Game Title"
msgstr "Título do jogo"
#: data/gtk/window.blp:425
#: data/gtk/window.blp:176
msgid "Play"
msgstr "Jogar"
#: data/gtk/window.blp:502
#: data/gtk/window.blp:243 data/gtk/window.blp:435
msgid "Add Game"
msgstr "Adicionar jogo"
#: data/gtk/window.blp:250 data/gtk/window.blp:316
msgid "Main Menu"
msgstr "Menu Principal"
#: data/gtk/window.blp:311
msgid "Hidden Games"
msgstr "Jogos ocultos"
#: data/gtk/window.blp:374
msgid "Sort"
msgstr "Ordenar"
#: data/gtk/window.blp:505
#: data/gtk/window.blp:377
msgid "A-Z"
msgstr "A-Z"
#: data/gtk/window.blp:511
#: data/gtk/window.blp:383
msgid "Z-A"
msgstr "Z-A"
#: data/gtk/window.blp:517
#: data/gtk/window.blp:389
msgid "Newest"
msgstr "Mais novo"
#: data/gtk/window.blp:523
#: data/gtk/window.blp:395
msgid "Oldest"
msgstr "Mais antigo"
#: data/gtk/window.blp:529
#: data/gtk/window.blp:401
msgid "Last Played"
msgstr "Última vez jogado"
#: data/gtk/window.blp:536
#: data/gtk/window.blp:408
msgid "Show Hidden"
msgstr "Mostrar ocultados"
#: data/gtk/window.blp:545
#: data/gtk/window.blp:421
msgid "Keyboard Shortcuts"
msgstr "Atalhos de teclado"
#: data/gtk/window.blp:426
msgid "About Cartridges"
msgstr "Sobre o Cartuchos"
#: data/gtk/window.blp:562
msgid "IGDB"
msgstr "IGDB"
#: data/gtk/window.blp:564
msgid "ProtonDB"
msgstr "ProtonDB"
#: data/gtk/window.blp:566
msgid "HowLongToBeat"
msgstr "HowLongToBeat"
#. The variable is the title of the game
#: cartridges/main.py:226 cartridges/game.py:125
msgid "{} launched"
msgstr "{} iniciado"
#. Translators: Replace this with Your Name, Your Name <your.email@example.com>, or Your Name https://your-site.com for it to show up in the About dialog.
#: cartridges/main.py:291
msgid "translator-credits"
msgstr ""
"Pedro Sader Azevedo\n"
"Vinícius \"Stalck\"\n"
"Filipe Motta <luizfilipemotta@gmail.com>\n"
"Rafael Fontenelle <rafaelff@gnome.org>"
#. Translators: Replace this with your name for it to show up in the about window
#: src/main.py:164
msgid "translator_credits"
msgstr "Pedro Sader Azevedo, Vinícius \"Stalck\""
#. The variable is the date when the game was added
#: cartridges/window.py:382
#: src/window.py:192
msgid "Added: {}"
msgstr "Adicionado: {}"
#: cartridges/window.py:385
#: src/window.py:195
msgid "Never"
msgstr "Nunca"
#. The variable is the date when the game was last played
#: cartridges/window.py:389
#: src/window.py:199
msgid "Last played: {}"
msgstr "Jogado pela última vez: {}"
#: cartridges/details_dialog.py:82
#: src/details_window.py:72
msgid "Apply"
msgstr "Aplicar"
#: cartridges/details_dialog.py:88
#: src/details_window.py:78
msgid "Add New Game"
msgstr "Adicionar novo jogo"
#: cartridges/details_dialog.py:89
msgid "Add"
msgstr "Adicionar"
#: cartridges/details_dialog.py:102
msgid "Executables"
msgstr "Executáveis"
#: src/details_window.py:79
msgid "Confirm"
msgstr "Confirmar"
#. Translate this string as you would translate "file"
#: cartridges/details_dialog.py:117
#: src/details_window.py:91
msgid "file.txt"
msgstr "arquivo.txt"
#. As in software
#: cartridges/details_dialog.py:119
#: src/details_window.py:93
msgid "program"
msgstr "programa"
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:124 cartridges/details_dialog.py:126
#: src/details_window.py:98 src/details_window.py:100
msgid "C:\\path\\to\\{}"
msgstr "C:\\caminho\\para\\{}"
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:130 cartridges/details_dialog.py:132
#: src/details_window.py:104 src/details_window.py:106
msgid "/path/to/{}"
msgstr "/caminho/para/{}"
#: cartridges/details_dialog.py:137
#: src/details_window.py:111
msgid ""
"To launch the executable \"{}\", use the command:\n"
"\n"
@@ -521,228 +457,91 @@ msgstr ""
"\n"
"Se o caminho contiver espaços, certifique-se de colocá-lo entre aspas duplas!"
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:185
#: src/details_window.py:146 src/details_window.py:152
msgid "Couldn't Add Game"
msgstr "Não foi possível adicionar o jogo"
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:221
#: src/details_window.py:146 src/details_window.py:181
msgid "Game title cannot be empty."
msgstr "O título do jogo não pode estar vazio."
#: cartridges/details_dialog.py:185 cartridges/details_dialog.py:229
#: src/details_window.py:152 src/details_window.py:189
msgid "Executable cannot be empty."
msgstr "O executável não pode estar vazio."
#: cartridges/details_dialog.py:220 cartridges/details_dialog.py:228
#: src/details_window.py:180 src/details_window.py:188
msgid "Couldn't Apply Preferences"
msgstr "Não foi possível aplicar as preferências"
#. The variable is the title of the game
#: cartridges/game.py:139
#: src/game.py:141
msgid "{} launched"
msgstr "{} iniciado"
#. The variable is the title of the game
#: src/game.py:154
msgid "{} hidden"
msgstr "{} ocultado"
#: cartridges/game.py:139
#: src/game.py:154
msgid "{} unhidden"
msgstr "{} exibido"
#. The variable is the title of the game
#: cartridges/game.py:153
#: src/game.py:171
msgid "{} removed"
msgstr "{} removido"
#: cartridges/preferences.py:136
#: src/preferences.py:102
msgid "All games removed"
msgstr "Todos os jogos foram removidos"
#: cartridges/preferences.py:188
#: src/preferences.py:149
msgid ""
"An API key is required to use SteamGridDB. You can generate one {}here{}."
msgstr ""
"Uma chave de API é necessária para utilizar o SteamGridDB. Você pode gerar "
"uma {}aqui{}."
#: cartridges/preferences.py:203
msgid "Downloading covers…"
msgstr "Baixando capas…"
#: cartridges/preferences.py:222
msgid "Covers updated"
msgstr "Capas atualizadas"
#: cartridges/preferences.py:370
msgid "Installation Not Found"
msgstr "Instalação não encontrada"
#: cartridges/preferences.py:371
msgid "Select a valid directory"
msgstr "Selecione um diretório válido"
#: cartridges/preferences.py:407 cartridges/importer/importer.py:317
msgid "Warning"
msgstr "Atenção"
#: cartridges/preferences.py:441
msgid "Invalid Directory"
msgstr "Diretório inválido"
#: cartridges/preferences.py:447
#: src/preferences.py:289
msgid "Set Location"
msgstr "Definir local"
#: cartridges/utils/create_dialog.py:33 cartridges/importer/importer.py:318
#: src/utils/create_dialog.py:25
msgid "Dismiss"
msgstr "Dispensar"
#: cartridges/utils/relative_date.py:30
msgid "Today"
msgstr "Hoje"
#: src/importer/sources/source.py:106
msgid "Data"
msgstr ""
#: cartridges/utils/relative_date.py:32
msgid "Yesterday"
msgstr "Ontem"
#: src/importer/sources/source.py:107
msgid "Cache"
msgstr ""
#: cartridges/utils/relative_date.py:36
msgid "Last Week"
msgstr "Semana passada"
#: src/importer/sources/source.py:108
#, fuzzy
#| msgid "Confirm"
msgid "Configuration"
msgstr "Confirmar"
#: cartridges/utils/relative_date.py:38
msgid "This Month"
msgstr "Este mês"
#. The variables are the type of location (eg. cache) and the source's name (eg. Steam)
#: src/importer/sources/source.py:119
msgid "Invalid {} Location for {{}}"
msgstr ""
#: cartridges/utils/relative_date.py:40
msgid "Last Month"
msgstr "Mês passado"
#: src/importer/sources/source.py:120
msgid "Pick a new one or disable the source in preferences"
msgstr ""
#: cartridges/utils/relative_date.py:44
msgid "Last Year"
msgstr "Ano passado"
#: cartridges/importer/importer.py:144
msgid "Importing Games…"
msgstr "Importando jogos…"
#: cartridges/importer/importer.py:337
msgid "The following errors occured during import:"
msgstr "Ocorreram os seguintes erros durante a importação:"
#: cartridges/importer/importer.py:366
msgid "No new games found"
msgstr "Nenhum jogo novo encontrado"
#. The variable is the number of games.
#: cartridges/importer/importer.py:379
msgid "{} game imported"
msgid_plural "{} games imported"
msgstr[0] "{} jogo importado"
msgstr[1] "{} jogos importados"
#. The variable is the number of games. This text comes after "{0} games imported".
#: cartridges/importer/importer.py:383
msgid ", {} removed"
msgid_plural ", {} removed"
msgstr[0] "{} removido"
msgstr[1] "{} removidos"
#. The variable is the name of the source
#: cartridges/importer/location.py:34
msgid "Select the {} cache directory."
msgstr "Selecione o diretório de cache {}."
#. The variable is the name of the source
#: cartridges/importer/location.py:36
msgid "Select the {} configuration directory."
msgstr "Selecione o diretório de configuração do(a) {}."
#. The variable is the name of the source
#: cartridges/importer/location.py:38
msgid "Select the {} data directory."
msgstr "Selecione o diretório de dados do(a) {}."
#: cartridges/importer/retroarch_source.py:129
msgid "No RetroArch Core Selected"
msgstr "Nenhum núcleo RetroArch selecionado"
#. The variable is a newline separated list of playlists
#: cartridges/importer/retroarch_source.py:131
msgid "The following playlists have no default core:"
msgstr "As seguintes listas de jogos não têm núcleo padrão:"
#: cartridges/importer/retroarch_source.py:133
msgid "Games with no core selected were not imported"
msgstr "Jogos sem núcleo selecionado não foram importados"
#: cartridges/store/managers/sgdb_manager.py:46
#: src/store/managers/sgdb_manager.py:47
#, fuzzy
#| msgid "Couldn't Connect to SteamGridDB"
msgid "Couldn't Authenticate SteamGridDB"
msgstr "Não foi possível autenticar no SteamGridDB"
msgstr "Não foi possível conectar-se ao SteamGridDB"
#: cartridges/store/managers/sgdb_manager.py:47
#: src/store/managers/sgdb_manager.py:48
msgid "Verify your API key in preferences"
msgstr "Verifique sua chave de API nas preferências"
#, fuzzy
#~ msgid "1 game imported"
#~ msgid_plural "{} games imported"
#~ msgstr[0] "1 jogo importado"
#~ msgstr[1] "{} jogos importados"
#, fuzzy
#~ msgid "1 removed"
#~ msgid_plural "{} removed"
#~ msgstr[0] "1 removido"
#~ msgstr[1] "{} removidos"
#~ msgid "Cache Location"
#~ msgstr "Local do cache"
#~ msgid "Library"
#~ msgstr "Biblioteca"
#~ msgid "Show preferences"
#~ msgstr "Mostrar preferências"
#~ msgid "Shortcuts"
#~ msgstr "Atalhos"
#~ msgid "Open menu"
#~ msgstr "Abrir menu"
#~ msgid "Add new game"
#~ msgstr "Adicionar novo jogo"
#~ msgid "Import games"
#~ msgstr "Importar jogos"
#~ msgid "Back"
#~ msgstr "Voltar"
#~ msgid "Search games"
#~ msgstr "Buscar jogos"
#~ msgid "Search hidden games"
#~ msgstr "Buscar jogos ocultos"
#~ msgid "The title of the game"
#~ msgstr "O título do jogo"
#~ msgid "Developer"
#~ msgstr "Desenvolvedor"
#~ msgid "File to open or command to run when launching the game"
#~ msgstr "Arquivo a ser aberto ou comando a ser executado ao iniciar o jogo"
#~ msgid "Confirm"
#~ msgstr "Confirmar"
#, fuzzy
#~| msgid "Cache Not Found"
#~ msgid "Directory not Valid"
#~ msgstr "Cache não encontrado"
#, fuzzy
#~| msgid "Confirm"
#~ msgid "Configuration"
#~ msgstr "Confirmar"
msgstr ""
#~ msgid "Steam Install Location"
#~ msgstr "Local de instalação do Steam"
@@ -756,9 +555,42 @@ msgstr "Verifique sua chave de API nas preferências"
#~ msgid "Bottles Install Location"
#~ msgstr "Local de instalação do Garrafas"
#~ msgid "Today"
#~ msgstr "Hoje"
#~ msgid "Yesterday"
#~ msgstr "Ontem"
#~ msgid "Cache Not Found"
#~ msgstr "Cache não encontrado"
#~ msgid "Select the Lutris cache directory."
#~ msgstr "Selecione o diretório de cache do Lutris."
#~ msgid "Installation Not Found"
#~ msgstr "Instalação não encontrada"
#~ msgid "Select the {} configuration directory."
#~ msgstr "Selecione o diretório de configuração do(a) {}."
#~ msgid "Select the {} data directory."
#~ msgstr "Selecione o diretório de dados do(a) {}."
#~ msgid "Importing Games…"
#~ msgstr "Importando jogos…"
#~ msgid "Importing Covers…"
#~ msgstr "Importando capas…"
#~ msgid "No new games found"
#~ msgstr "Nenhum jogo novo encontrado"
#~ msgid "1 game imported"
#~ msgstr "1 jogo importado"
#~ msgid "{} games imported"
#~ msgstr "{} jogos importados"
#~ msgid "Directory to use when importing games"
#~ msgstr "Diretório para usar ao importar jogos"

769
po/ro.po
View File

@@ -2,14 +2,13 @@
# Copyright (C) YEAR kramo
# This file is distributed under the same license as the Cartridges package.
# Matt C <matei.gurzu@gmail.com>, 2023.
# Remus-Gabriel Chelu <remusgabriel.chelu@disroot.org>, 2024, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Cartridges\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-11-05 14:01+0100\n"
"PO-Revision-Date: 2025-02-06 08:01+0000\n"
"Last-Translator: Remus-Gabriel Chelu <remusgabriel.chelu@disroot.org>\n"
"POT-Creation-Date: 2023-06-26 12:01+0200\n"
"PO-Revision-Date: 2023-04-04 17:12+0000\n"
"Last-Translator: Matt C <matei.gurzu@gmail.com>\n"
"Language-Team: Romanian <https://hosted.weblate.org/projects/cartridges/"
"cartridges/ro/>\n"
"Language: ro\n"
@@ -18,486 +17,425 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
"20)) ? 1 : 2;\n"
"X-Generator: Weblate 5.10-dev\n"
"X-Generator: Weblate 4.17-dev\n"
#: data/page.kramo.Cartridges.desktop.in:3
#: data/page.kramo.Cartridges.metainfo.xml.in:9
#: data/page.kramo.Cartridges.metainfo.xml.in:40 data/gtk/window.blp:47
#: data/gtk/window.blp:83
#: data/hu.kramo.Cartridges.desktop.in:3
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:47
#: src/main.py:146
msgid "Cartridges"
msgstr "Cartușe"
#: data/page.kramo.Cartridges.desktop.in:4
#: data/hu.kramo.Cartridges.desktop.in:4
msgid "Game Launcher"
msgstr "Lansator de jocuri"
#: data/page.kramo.Cartridges.desktop.in:5
#: data/page.kramo.Cartridges.metainfo.xml.in:10
#: data/hu.kramo.Cartridges.desktop.in:5
#: data/hu.kramo.Cartridges.metainfo.xml.in:7
msgid "Launch all your games"
msgstr "Lansați toate jocurile dvs."
msgstr "Lansați toate jocurile dvs"
#: data/page.kramo.Cartridges.desktop.in:11
msgid ""
"gaming;launcher;steam;lutris;heroic;bottles;itch;flatpak;legendary;retroarch;"
#: data/hu.kramo.Cartridges.desktop.in:11
msgid "gaming;launcher;steam;lutris;heroic;bottles;itch;"
msgstr ""
"jocuri;lansator;gaming;launcher;steam;lutris;heroic;bottles;itch;flatpak;"
"legendary;retroarch;"
#: data/page.kramo.Cartridges.metainfo.xml.in:12
#: data/hu.kramo.Cartridges.metainfo.xml.in:9
#, fuzzy
#| msgid ""
#| "Cartridges is a simple game launcher. It has support for importing your "
#| "games from Steam, Heroic and Bottles with organizational features such as "
#| "hiding and sorting by date added or last played."
msgid ""
"Cartridges is a simple game launcher for all of your games. It has support "
"for importing games from Steam, Lutris, Heroic and more with no login "
"necessary. You can sort and hide games or download cover art from "
"SteamGridDB."
msgstr ""
"Cartușe este un lansator de jocuri simplu pentru toate jocurile tale. Acesta "
"are suport pentru importul de jocuri de pe Steam, Lutris, Heroic și multe "
"altele, fără a fi necesară autentificarea. Puteți sorta și ascunde jocurile "
"sau descărca coperta jocului din SteamGridDB."
"Cartridges este un simplu lansator de jocuri. Are suport pentru importarea "
"jocurilor dvs. din Steam, Heroic și Bottles cu funcții de organizare, cum ar "
"fi ascunderea și sortarea după data adăugată sau ultima dată jucată."
#: data/page.kramo.Cartridges.metainfo.xml.in:44 data/gtk/window.blp:320
#: cartridges/details_dialog.py:77
msgid "Game Details"
msgstr "Detalii joc"
#: data/hu.kramo.Cartridges.metainfo.xml.in:30
msgid "Library"
msgstr "Bibliotecă"
#: data/page.kramo.Cartridges.metainfo.xml.in:48
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 src/details_window.py:67
msgid "Edit Game Details"
msgstr "Editați detaliile jocului"
#: data/page.kramo.Cartridges.metainfo.xml.in:52 data/gtk/help-overlay.blp:19
#: data/gtk/window.blp:543 cartridges/details_dialog.py:279
#: cartridges/importer/importer.py:319 cartridges/importer/importer.py:369
#: data/hu.kramo.Cartridges.metainfo.xml.in:38 data/gtk/window.blp:71
msgid "Game Details"
msgstr "Detalii joc"
#: data/hu.kramo.Cartridges.metainfo.xml.in:42 data/gtk/window.blp:416
#: src/details_window.py:239
msgid "Preferences"
msgstr "Preferințe"
#: data/gtk/details-dialog.blp:15
#: data/gtk/details-window.blp:25
msgid "Cancel"
msgstr "Anulare"
msgstr ""
#: data/gtk/details-dialog.blp:45
#: data/gtk/details-window.blp:57
msgid "New Cover"
msgstr "Copertă nouă"
msgstr ""
#: data/gtk/details-dialog.blp:64
#: data/gtk/details-window.blp:75
msgid "Delete Cover"
msgstr "Șterge coperta"
msgstr ""
#: data/gtk/details-dialog.blp:92 data/gtk/game.blp:80
#: data/gtk/details-window.blp:101 data/gtk/details-window.blp:106
#: data/gtk/game.blp:80
msgid "Title"
msgstr "Titlu"
msgstr ""
#: data/gtk/details-dialog.blp:96
msgid "Developer (optional)"
msgstr "Dezvoltator (opțional)"
#: data/gtk/details-window.blp:102
msgid "The title of the game"
msgstr ""
#: data/gtk/details-dialog.blp:102
#: data/gtk/details-window.blp:112 data/gtk/details-window.blp:117
msgid "Developer"
msgstr ""
#: data/gtk/details-window.blp:113
msgid "The developer or publisher (optional)"
msgstr ""
#: data/gtk/details-window.blp:123 data/gtk/details-window.blp:155
msgid "Executable"
msgstr "Executabil"
msgstr ""
#: data/gtk/details-dialog.blp:108
msgid "Select File"
msgstr "Selectare fișier"
#: data/gtk/details-window.blp:124
msgid "File to open or command to run when launching the game"
msgstr ""
#: data/gtk/details-dialog.blp:119
#: data/gtk/details-window.blp:130
msgid "More Info"
msgstr "Mai multe informații"
msgstr ""
#: data/gtk/game.blp:101 data/gtk/game.blp:109 data/gtk/window.blp:444
#: data/gtk/game.blp:102 data/gtk/game.blp:121 data/gtk/window.blp:195
msgid "Edit"
msgstr "Editare"
msgstr ""
#: data/gtk/game.blp:102 cartridges/window.py:359
#: data/gtk/game.blp:107 src/window.py:169
msgid "Hide"
msgstr "Ascunde"
msgstr ""
#: data/gtk/game.blp:103 data/gtk/game.blp:111 data/gtk/window.blp:464
#: data/gtk/game.blp:112 data/gtk/game.blp:131 data/gtk/preferences.blp:56
#: data/gtk/window.blp:209
msgid "Remove"
msgstr "Elimină"
msgstr ""
#: data/gtk/game.blp:110 cartridges/window.py:361
#: data/gtk/game.blp:126 src/window.py:171
msgid "Unhide"
msgstr "Afișează"
msgstr ""
#: data/gtk/help-overlay.blp:11 data/gtk/preferences.blp:9
msgid "General"
msgstr "General"
msgstr ""
#: data/gtk/help-overlay.blp:14 data/gtk/window.blp:207 data/gtk/window.blp:223
#: data/gtk/window.blp:274 data/gtk/window.blp:290 data/gtk/window.blp:475
#: data/gtk/help-overlay.blp:14
msgid "Quit"
msgstr ""
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:217 data/gtk/window.blp:257
#: data/gtk/window.blp:323
msgid "Search"
msgstr "Căutare"
#: data/gtk/help-overlay.blp:24 data/gtk/window.blp:544
msgid "Keyboard Shortcuts"
msgstr "Taste de comenzi rapide"
#: data/gtk/help-overlay.blp:24
msgid "Show preferences"
msgstr ""
#: data/gtk/help-overlay.blp:29 cartridges/game.py:103
#: cartridges/preferences.py:137 cartridges/importer/importer.py:386
#: data/gtk/help-overlay.blp:29
msgid "Shortcuts"
msgstr ""
#: data/gtk/help-overlay.blp:34 src/game.py:105 src/preferences.py:103
msgid "Undo"
msgstr "Anulează"
msgstr ""
#: data/gtk/help-overlay.blp:34
msgid "Quit"
msgstr "Ieșire"
#: data/gtk/help-overlay.blp:39
msgid "Open menu"
msgstr ""
#: data/gtk/help-overlay.blp:39 data/gtk/window.blp:92 data/gtk/window.blp:187
msgid "Toggle Sidebar"
msgstr "Afișează/ascunde bara laterală"
#: data/gtk/help-overlay.blp:44 data/gtk/window.blp:200 data/gtk/window.blp:267
msgid "Main Menu"
msgstr "Meniu principal"
#: data/gtk/help-overlay.blp:50
#: data/gtk/help-overlay.blp:45
msgid "Games"
msgstr "Jocuri"
msgstr ""
#: data/gtk/help-overlay.blp:53 data/gtk/window.blp:193 data/gtk/window.blp:551
msgid "Add Game"
msgstr "Adăugați joc"
#: data/gtk/help-overlay.blp:48
msgid "Add new game"
msgstr ""
#: data/gtk/help-overlay.blp:58 data/gtk/preferences.blp:58
#: data/gtk/window.blp:27 data/gtk/window.blp:555
msgid "Import"
msgstr "Import"
#: data/gtk/help-overlay.blp:53
msgid "Import games"
msgstr ""
#: data/gtk/help-overlay.blp:58
msgid "Show hidden games"
msgstr ""
#: data/gtk/help-overlay.blp:63
msgid "Show Hidden Games"
msgstr "Afișează jocurile ascunse"
msgid "Remove game"
msgstr ""
#: data/gtk/help-overlay.blp:68
msgid "Remove Game"
msgstr "Elimină jocul"
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:62
#: data/gtk/preferences.blp:365
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:236
msgid "Behavior"
msgstr "Comportament"
msgstr ""
#: data/gtk/preferences.blp:16
msgid "Exit After Launching Games"
msgstr "Ieșire din program după lansarea jocurilor"
msgstr ""
#: data/gtk/preferences.blp:20
#: data/gtk/preferences.blp:25
msgid "Cover Image Launches Game"
msgstr "Imaginea de copertă lansează jocul"
msgstr ""
#: data/gtk/preferences.blp:21
#: data/gtk/preferences.blp:26
msgid "Swaps the behavior of the cover image and the play button"
msgstr ""
"Interschimbă comportamentul imaginii de copertă și al butonului de redare"
#: data/gtk/preferences.blp:26 cartridges/details_dialog.py:91
#: data/gtk/preferences.blp:36 src/details_window.py:81
msgid "Images"
msgstr "Imagini"
#: data/gtk/preferences.blp:29
msgid "High Quality Images"
msgstr "Imagini de înaltă calitate"
#: data/gtk/preferences.blp:30
msgid "Save game covers losslessly at the cost of storage"
msgstr ""
"Salvează coperțile jocurilor fără pierderi, dar ocupă mai mult spațiu de "
"stocare"
#: data/gtk/preferences.blp:35
msgid "Danger Zone"
msgstr "Zonă periculoasă"
#: data/gtk/preferences.blp:39
msgid "High Quality Images"
msgstr ""
#: data/gtk/preferences.blp:40
msgid "Save game covers losslessly at the cost of storage"
msgstr ""
#: data/gtk/preferences.blp:50
msgid "Danger Zone"
msgstr ""
#: data/gtk/preferences.blp:53
msgid "Remove All Games"
msgstr "Elimină toate jocurile"
msgstr ""
#: data/gtk/preferences.blp:65
msgid "Import Games Automatically"
msgstr "Importă automat jocuri"
#: data/gtk/preferences.blp:85 data/gtk/window.blp:27 data/gtk/window.blp:442
msgid "Import"
msgstr ""
#: data/gtk/preferences.blp:69
msgid "Remove Uninstalled Games"
msgstr "Elimină jocurile dezinstalate"
#: data/gtk/preferences.blp:74
#: data/gtk/preferences.blp:89
msgid "Sources"
msgstr "Surse"
msgstr ""
#: data/gtk/preferences.blp:78 cartridges/importer/steam_source.py:114
#: data/gtk/preferences.blp:92
msgid "Steam"
msgstr "Steam"
msgstr ""
#: data/gtk/preferences.blp:87 data/gtk/preferences.blp:114
#: data/gtk/preferences.blp:149 data/gtk/preferences.blp:192
#: data/gtk/preferences.blp:219 data/gtk/preferences.blp:246
#: data/gtk/preferences.blp:273
#: data/gtk/preferences.blp:96 data/gtk/preferences.blp:110
#: data/gtk/preferences.blp:142 data/gtk/preferences.blp:183
#: data/gtk/preferences.blp:197 data/gtk/preferences.blp:211
msgid "Install Location"
msgstr "Locația de instalare"
msgstr ""
#: data/gtk/preferences.blp:105 data/gtk/window.blp:565
#: cartridges/importer/lutris_source.py:107
#: data/gtk/preferences.blp:106
msgid "Lutris"
msgstr "Lutris"
msgstr ""
#: data/gtk/preferences.blp:131
#: data/gtk/preferences.blp:119
msgid "Cache Location"
msgstr ""
#: data/gtk/preferences.blp:128
msgid "Import Steam Games"
msgstr "Importă jocuri din Steam"
msgstr ""
#: data/gtk/preferences.blp:135
msgid "Import Flatpak Games"
msgstr "Importă jocuri din Flatpak"
#: data/gtk/preferences.blp:140 cartridges/importer/heroic_source.py:355
#: data/gtk/preferences.blp:138
msgid "Heroic"
msgstr "Heroic"
msgstr ""
#: data/gtk/preferences.blp:166
#: data/gtk/preferences.blp:151
msgid "Import Epic Games"
msgstr "Importă jocuri din Epic"
msgstr ""
#: data/gtk/preferences.blp:170
#: data/gtk/preferences.blp:160
msgid "Import GOG Games"
msgstr "Importă jocuri din GOG"
msgstr ""
#: data/gtk/preferences.blp:174
msgid "Import Amazon Games"
msgstr "Importă jocuri din Amazon"
#: data/gtk/preferences.blp:178
#: data/gtk/preferences.blp:169
msgid "Import Sideloaded Games"
msgstr "Importă jocuri descărcate manual"
msgstr ""
#: data/gtk/preferences.blp:183 cartridges/importer/bottles_source.py:86
#: data/gtk/preferences.blp:179
msgid "Bottles"
msgstr "Bottles"
msgstr ""
#: data/gtk/preferences.blp:210 cartridges/importer/itch_source.py:81
#: data/gtk/preferences.blp:193
msgid "itch"
msgstr "itch"
msgstr ""
#: data/gtk/preferences.blp:237 cartridges/importer/legendary_source.py:97
#: data/gtk/preferences.blp:207
msgid "Legendary"
msgstr "Legendary"
msgstr ""
#: data/gtk/preferences.blp:264 cartridges/importer/retroarch_source.py:142
msgid "RetroArch"
msgstr "RetroArch"
#: data/gtk/preferences.blp:291 cartridges/importer/flatpak_source.py:143
msgid "Flatpak"
msgstr "Flatpak"
#. The location of the system-wide data directory
#: data/gtk/preferences.blp:301
msgid "System Location"
msgstr "Locația directorului de date la nivel de sistem"
#. The location of the user-specific data directory
#: data/gtk/preferences.blp:319
msgid "User Location"
msgstr "Locația directorului de date specific utilizatorului"
#: data/gtk/preferences.blp:336
msgid "Import Game Launchers"
msgstr "Importare lansatoare de jocuri"
#: data/gtk/preferences.blp:341 cartridges/importer/desktop_source.py:215
msgid "Desktop Entries"
msgstr "Elemente de acces direct, pe birou"
#: data/gtk/preferences.blp:353 data/gtk/window.blp:563
#: data/gtk/preferences.blp:224
msgid "SteamGridDB"
msgstr "SteamGridDB"
msgstr ""
#: data/gtk/preferences.blp:357
#: data/gtk/preferences.blp:228
msgid "Authentication"
msgstr "Autentificare"
msgstr ""
#: data/gtk/preferences.blp:360
#: data/gtk/preferences.blp:231
msgid "API Key"
msgstr "Cheie API"
msgstr ""
#: data/gtk/preferences.blp:368
#: data/gtk/preferences.blp:239
msgid "Use SteamGridDB"
msgstr "Utilizează SteamGridDB"
msgstr ""
#: data/gtk/preferences.blp:369
#: data/gtk/preferences.blp:240
msgid "Download images when adding or importing games"
msgstr "Descarcă imagini atunci când se adaugă sau se importă jocuri"
msgstr ""
#: data/gtk/preferences.blp:373
#: data/gtk/preferences.blp:249
msgid "Prefer Over Official Images"
msgstr "Preferă mai mult decât imaginile oficiale"
msgstr ""
#: data/gtk/preferences.blp:377
#: data/gtk/preferences.blp:258
msgid "Prefer Animated Images"
msgstr "Preferă imaginile animate"
#: data/gtk/preferences.blp:383
msgid "Update Covers"
msgstr "Actualizare coperți"
#: data/gtk/preferences.blp:384
msgid "Fetch covers for games already in your library"
msgstr "Obține coperți pentru jocurile aflate deja în colecție"
#: data/gtk/preferences.blp:389
msgid "Update"
msgstr "Actualizare"
msgstr ""
#: data/gtk/window.blp:6 data/gtk/window.blp:14
msgid "No Games Found"
msgstr "Nu s-au găsit jocuri"
#: data/gtk/window.blp:7 data/gtk/window.blp:15
msgid "Try a different search"
msgstr "Încercați o altă căutare"
msgid "Try a different search."
msgstr "Încercați o altă căutare."
#: data/gtk/window.blp:21
msgid "No Games"
msgstr "Fără jocuri"
#: data/gtk/window.blp:22
msgid "Use the + button to add games"
msgstr "Folosiți butonul + pentru a adăuga jocuri"
msgid "Use the + button to add games."
msgstr "Folosiți butonul + pentru a adăuga jocuri."
#: data/gtk/window.blp:40
msgid "No Hidden Games"
msgstr "Fără jocuri ascunse"
#: data/gtk/window.blp:41
msgid "Games you hide will appear here"
msgstr "Jocurile pe care le ascundeți vor apărea aici"
msgid "Games you hide will appear here."
msgstr "Jocurile pe care le ascundeți vor apărea aici."
#: data/gtk/window.blp:76 data/gtk/window.blp:113 cartridges/main.py:249
msgid "All Games"
msgstr "Toate jocurile"
#: data/gtk/window.blp:64 data/gtk/window.blp:304
msgid "Back"
msgstr "Înapoi"
#: data/gtk/window.blp:140 cartridges/main.py:251
msgid "Added"
msgstr "Adăugat"
#: data/gtk/window.blp:162
msgid "Imported"
msgstr "Importat"
#: data/gtk/window.blp:260
msgid "Hidden Games"
msgstr "Jocuri ascunse"
#: data/gtk/window.blp:368
#: data/gtk/window.blp:121
msgid "Game Title"
msgstr "Titlul jocului"
#: data/gtk/window.blp:425
#: data/gtk/window.blp:176
msgid "Play"
msgstr "Joacă"
#: data/gtk/window.blp:502
#: data/gtk/window.blp:243 data/gtk/window.blp:435
msgid "Add Game"
msgstr "Adăugați joc"
#: data/gtk/window.blp:250 data/gtk/window.blp:316
msgid "Main Menu"
msgstr "Meniu principal"
#: data/gtk/window.blp:311
msgid "Hidden Games"
msgstr "Jocuri ascunse"
#: data/gtk/window.blp:374
msgid "Sort"
msgstr "Sortează"
#: data/gtk/window.blp:505
msgid "A-Z"
msgstr "A-Z"
#: data/gtk/window.blp:511
msgid "Z-A"
msgstr "Z-A"
#: data/gtk/window.blp:517
msgid "Newest"
msgstr "Cel mai noi"
#: data/gtk/window.blp:523
msgid "Oldest"
msgstr "Cel mai vechi"
#: data/gtk/window.blp:529
msgid "Last Played"
msgstr "Jucat ultima dată"
#: data/gtk/window.blp:536
msgid "Show Hidden"
msgstr "Afișează pe cele ascunse"
#: data/gtk/window.blp:545
msgid "About Cartridges"
msgstr "Despre Cartușe"
#: data/gtk/window.blp:562
msgid "IGDB"
msgstr "IGDB"
#: data/gtk/window.blp:564
msgid "ProtonDB"
msgstr "ProtonDB"
#: data/gtk/window.blp:566
msgid "HowLongToBeat"
msgstr "HowLongToBeat"
#. The variable is the title of the game
#: cartridges/main.py:226 cartridges/game.py:125
msgid "{} launched"
msgstr "{} lansat"
#. Translators: Replace this with Your Name, Your Name <your.email@example.com>, or Your Name https://your-site.com for it to show up in the About dialog.
#: cartridges/main.py:291
msgid "translator-credits"
msgstr ""
"Matt C <matei.gurzu@gmail.com>,\n"
"Remus-Gabriel Chelu <remusgabriel.chelu@disroot.org>"
#: data/gtk/window.blp:377
msgid "A-Z"
msgstr ""
#: data/gtk/window.blp:383
msgid "Z-A"
msgstr ""
#: data/gtk/window.blp:389
msgid "Newest"
msgstr ""
#: data/gtk/window.blp:395
msgid "Oldest"
msgstr ""
#: data/gtk/window.blp:401
msgid "Last Played"
msgstr ""
#: data/gtk/window.blp:408
msgid "Show Hidden"
msgstr ""
#: data/gtk/window.blp:421
msgid "Keyboard Shortcuts"
msgstr ""
#: data/gtk/window.blp:426
msgid "About Cartridges"
msgstr ""
#. Translators: Replace this with your name for it to show up in the about window
#: src/main.py:164
msgid "translator_credits"
msgstr ""
#. The variable is the date when the game was added
#: cartridges/window.py:382
#: src/window.py:192
msgid "Added: {}"
msgstr "Adăugat: {}"
msgstr ""
#: cartridges/window.py:385
#: src/window.py:195
msgid "Never"
msgstr "Niciodată"
msgstr ""
#. The variable is the date when the game was last played
#: cartridges/window.py:389
#: src/window.py:199
msgid "Last played: {}"
msgstr "Jucat ultima dată {}"
msgstr ""
#: cartridges/details_dialog.py:82
#: src/details_window.py:72
msgid "Apply"
msgstr "Aplică"
msgstr ""
#: cartridges/details_dialog.py:88
#: src/details_window.py:78
msgid "Add New Game"
msgstr "Adaugă un joc nou"
msgstr ""
#: cartridges/details_dialog.py:89
msgid "Add"
msgstr "Adaugă"
#: cartridges/details_dialog.py:102
msgid "Executables"
msgstr "Executabili"
#: src/details_window.py:79
msgid "Confirm"
msgstr ""
#. Translate this string as you would translate "file"
#: cartridges/details_dialog.py:117
#: src/details_window.py:91
msgid "file.txt"
msgstr "fișier.txt"
msgstr ""
#. As in software
#: cartridges/details_dialog.py:119
#: src/details_window.py:93
msgid "program"
msgstr "program"
msgstr ""
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:124 cartridges/details_dialog.py:126
#: src/details_window.py:98 src/details_window.py:100
msgid "C:\\path\\to\\{}"
msgstr "C:\ruta\\către\\{}"
msgstr ""
#. Translate this string as you would translate "path to {}"
#: cartridges/details_dialog.py:130 cartridges/details_dialog.py:132
#: src/details_window.py:104 src/details_window.py:106
msgid "/path/to/{}"
msgstr "/ruta/către/{}"
msgstr ""
#: cartridges/details_dialog.py:137
#: src/details_window.py:111
msgid ""
"To launch the executable \"{}\", use the command:\n"
"\n"
@@ -509,198 +447,91 @@ msgid ""
"\n"
"If the path contains spaces, make sure to wrap it in double quotes!"
msgstr ""
"Pentru a lansa executabilul „{}”, utilizați comanda:\n"
"\n"
"<tt>„{}”</tt>\n"
"\n"
"Pentru a deschide fișierul „{}” cu aplicația implicită, utilizați:\n"
"\n"
"<tt>{} „{}”</tt>\n"
"\n"
"Dacă ruta conține spații, asigurați-vă că o includeți între ghilimele duble!"
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:185
#: src/details_window.py:146 src/details_window.py:152
msgid "Couldn't Add Game"
msgstr "Nu s-a putut adăuga jocul"
msgstr ""
#: cartridges/details_dialog.py:179 cartridges/details_dialog.py:221
#: src/details_window.py:146 src/details_window.py:181
msgid "Game title cannot be empty."
msgstr "Titlul jocului nu poate fi gol."
msgstr ""
#: cartridges/details_dialog.py:185 cartridges/details_dialog.py:229
#: src/details_window.py:152 src/details_window.py:189
msgid "Executable cannot be empty."
msgstr "Executabilul nu poate fi gol."
msgstr ""
#: cartridges/details_dialog.py:220 cartridges/details_dialog.py:228
#: src/details_window.py:180 src/details_window.py:188
msgid "Couldn't Apply Preferences"
msgstr "Nu s-au putut aplica preferințele"
msgstr ""
#. The variable is the title of the game
#: cartridges/game.py:139
#: src/game.py:141
msgid "{} launched"
msgstr ""
#. The variable is the title of the game
#: src/game.py:154
msgid "{} hidden"
msgstr "{} ascuns"
msgstr ""
#: cartridges/game.py:139
#: src/game.py:154
msgid "{} unhidden"
msgstr "{} afișat"
msgstr ""
#. The variable is the title of the game
#: cartridges/game.py:153
#: src/game.py:171
msgid "{} removed"
msgstr "{} eliminat"
msgstr ""
#: cartridges/preferences.py:136
#: src/preferences.py:102
msgid "All games removed"
msgstr "Toate jocurile au fost eliminate"
msgstr ""
#: cartridges/preferences.py:188
#: src/preferences.py:149
msgid ""
"An API key is required to use SteamGridDB. You can generate one {}here{}."
msgstr ""
"O cheie API este necesară pentru a utiliza SteamGridDB. Puteți genera una {}"
"aici{}."
#: cartridges/preferences.py:203
msgid "Downloading covers…"
msgstr "Se descarcă coperțile…"
#: cartridges/preferences.py:222
msgid "Covers updated"
msgstr "Coperți actualizate"
#: cartridges/preferences.py:370
msgid "Installation Not Found"
msgstr "Instalarea nu a fost găsită"
#: cartridges/preferences.py:371
msgid "Select a valid directory"
msgstr "Selectați un director valid"
#: cartridges/preferences.py:407 cartridges/importer/importer.py:317
msgid "Warning"
msgstr "Atenţie"
#: cartridges/preferences.py:441
msgid "Invalid Directory"
msgstr "Director nevalid"
#: cartridges/preferences.py:447
#: src/preferences.py:289
msgid "Set Location"
msgstr "Stabilește locația"
msgstr ""
#: cartridges/utils/create_dialog.py:33 cartridges/importer/importer.py:318
#: src/utils/create_dialog.py:25
msgid "Dismiss"
msgstr "Revocare"
msgstr ""
#: cartridges/utils/relative_date.py:30
msgid "Today"
msgstr "Astăzi"
#: src/importer/sources/source.py:106
msgid "Data"
msgstr ""
#: cartridges/utils/relative_date.py:32
msgid "Yesterday"
msgstr "Ieri"
#: src/importer/sources/source.py:107
msgid "Cache"
msgstr ""
#: cartridges/utils/relative_date.py:36
msgid "Last Week"
msgstr "Ultima săptămână"
#: src/importer/sources/source.py:108
msgid "Configuration"
msgstr ""
#: cartridges/utils/relative_date.py:38
msgid "This Month"
msgstr "Luna aceasta"
#. The variables are the type of location (eg. cache) and the source's name (eg. Steam)
#: src/importer/sources/source.py:119
msgid "Invalid {} Location for {{}}"
msgstr ""
#: cartridges/utils/relative_date.py:40
msgid "Last Month"
msgstr "Ultima lună"
#: src/importer/sources/source.py:120
msgid "Pick a new one or disable the source in preferences"
msgstr ""
#: cartridges/utils/relative_date.py:44
msgid "Last Year"
msgstr "Ultimul an"
#: cartridges/importer/importer.py:144
msgid "Importing Games…"
msgstr "Se importă jocurile…"
#: cartridges/importer/importer.py:337
msgid "The following errors occured during import:"
msgstr "Au apărut următoarele erori în timpul importului:"
#: cartridges/importer/importer.py:366
msgid "No new games found"
msgstr "Nu s-au găsit jocuri noi"
#. The variable is the number of games.
#: cartridges/importer/importer.py:379
msgid "{} game imported"
msgid_plural "{} games imported"
msgstr[0] "{} joc importat"
msgstr[1] "{} jocuri importate"
msgstr[2] "{} de jocuri importate"
#. The variable is the number of games. This text comes after "{0} games imported".
#: cartridges/importer/importer.py:383
msgid ", {} removed"
msgid_plural ", {} removed"
msgstr[0] ", {} eliminat"
msgstr[1] ", {} eliminate"
msgstr[2] ", {} de eliminate"
#. The variable is the name of the source
#: cartridges/importer/location.py:34
msgid "Select the {} cache directory."
msgstr "Selectați directorul cache {}."
#. The variable is the name of the source
#: cartridges/importer/location.py:36
msgid "Select the {} configuration directory."
msgstr "Selectați directorul de configurare {}."
#. The variable is the name of the source
#: cartridges/importer/location.py:38
msgid "Select the {} data directory."
msgstr "Selectați directorul de date {}."
#: cartridges/importer/retroarch_source.py:129
msgid "No RetroArch Core Selected"
msgstr "Nu este selectat niciun nucleu RetroArch"
#. The variable is a newline separated list of playlists
#: cartridges/importer/retroarch_source.py:131
msgid "The following playlists have no default core:"
msgstr "Următoarele liste de redare nu au un nucleu implicit:"
#: cartridges/importer/retroarch_source.py:133
msgid "Games with no core selected were not imported"
msgstr "Jocurile fără un nucleu selectat nu au fost importate"
#: cartridges/store/managers/sgdb_manager.py:46
#: src/store/managers/sgdb_manager.py:47
msgid "Couldn't Authenticate SteamGridDB"
msgstr "Nu s-a putut autentifica SteamGridDB"
msgstr ""
#: cartridges/store/managers/sgdb_manager.py:47
#: src/store/managers/sgdb_manager.py:48
msgid "Verify your API key in preferences"
msgstr "Verificați cheia API în preferințe"
#~ msgid "1 removed"
#~ msgid_plural "{} removed"
#~ msgstr[0] "Un joc eliminat"
#~ msgstr[1] ""
#~ msgstr[2] ""
#~ msgid "Library"
#~ msgstr "Bibliotecă"
#~ msgid "Back"
#~ msgstr "Înapoi"
msgstr ""
#, fuzzy
#~| msgid "Search"
#~ msgid "Search games"
#~ msgstr "Căutare"
#, fuzzy
#~| msgid "No Hidden Games"
#~ msgid "Search hidden games"
#~ msgstr "Fără jocuri ascunse"
#~| msgid "No Games Found"
#~ msgid "No new games found"
#~ msgstr "Nu s-au găsit jocuri"
#~ msgid "Launch your games"
#~ msgstr "Lansați-vă jocurile"

695
po/ru.po

File diff suppressed because it is too large Load Diff

Some files were not shown because too many files have changed in this diff Show More