Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8378c72250 | ||
|
|
beef0223c3 |
4
.github/ISSUE_TEMPLATE/bug_report.md
vendored
@@ -23,13 +23,9 @@ 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]
|
||||
- Cartridges version [e.g. 1.5.4]
|
||||
|
||||
**Additional context**
|
||||
Add any other context about the problem here.
|
||||
|
||||
19
.github/workflows/flatpak-builder.yml
vendored
Normal 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.flatpak
|
||||
manifest-path: hu.kramo.Cartridges.json
|
||||
cache-key: flatpak-builder-${{ github.sha }}
|
||||
45
.github/workflows/publish-release.yml
vendored
@@ -1,45 +0,0 @@
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
"*"
|
||||
name: Publish Release
|
||||
concurrency:
|
||||
group: release-${{ github.sha }}
|
||||
jobs:
|
||||
publish-release:
|
||||
name: Publish Release
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Download workflow artifact
|
||||
uses: dawidd6/action-download-artifact@v2.27.0
|
||||
with:
|
||||
workflow: ci.yml
|
||||
commit: ${{ github.sha }}
|
||||
|
||||
- name: Get release notes
|
||||
shell: python
|
||||
run: |
|
||||
import re, textwrap
|
||||
open_file = open("./data/hu.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@v0.1.15
|
||||
with:
|
||||
files: Windows Installer/Cartridges Setup.exe
|
||||
fail_on_unmatched_files: true
|
||||
tag_name: ${{ steps.get_tag_name.outputs.tag_name }}
|
||||
body_path: release_notes
|
||||
@@ -2,40 +2,20 @@ on:
|
||||
push:
|
||||
branches: [main]
|
||||
pull_request:
|
||||
name: CI
|
||||
concurrency:
|
||||
group: release-${{ github.sha }}
|
||||
name: "Build for Windows"
|
||||
jobs:
|
||||
flatpak:
|
||||
name: Flatpak
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: bilelmoussaoui/flatpak-github-actions:gnome-44
|
||||
options: --privileged
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Flatpak Builder
|
||||
uses: flatpak/flatpak-github-actions/flatpak-builder@v6.1
|
||||
with:
|
||||
bundle: hu.kramo.Cartridges.Devel.flatpak
|
||||
manifest-path: flatpak/hu.kramo.Cartridges.Devel.json
|
||||
|
||||
windows:
|
||||
name: Windows
|
||||
name: "Build"
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Setup MSYS2
|
||||
- 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: |
|
||||
@@ -43,18 +23,10 @@ jobs:
|
||||
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: Test
|
||||
shell: msys2 {0}
|
||||
run: |
|
||||
set +e
|
||||
timeout 2 cartridges; [ "$?" -eq "124" ]
|
||||
|
||||
- name: Inno Setup
|
||||
run: iscc ".\_build\windows\Cartridges.iss"
|
||||
|
||||
- name: Upload Artifact
|
||||
- name: "Inno Setup"
|
||||
run: iscc ".\.windows\Cartridges.iss"
|
||||
- name: "Upload Artifact"
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: Windows Installer
|
||||
path: _build/windows/Output/Cartridges Setup.exe
|
||||
name: "Installer"
|
||||
path: ".windows/Output/Cartridges Setup.exe"
|
||||
32
.pylintrc
@@ -1,32 +0,0 @@
|
||||
[MAIN]
|
||||
|
||||
ignore=importers
|
||||
|
||||
[MESSAGES CONTROL]
|
||||
|
||||
|
||||
disable=raw-checker-failed,
|
||||
bad-inline-option,
|
||||
locally-disabled,
|
||||
file-ignored,
|
||||
suppressed-message,
|
||||
useless-suppression,
|
||||
deprecated-pragma,
|
||||
use-symbolic-message-instead,
|
||||
too-few-public-methods,
|
||||
missing-function-docstring,
|
||||
missing-class-docstring,
|
||||
missing-module-docstring,
|
||||
relative-beyond-top-level,
|
||||
import-error,
|
||||
no-name-in-module
|
||||
|
||||
|
||||
[TYPECHECK]
|
||||
|
||||
ignored-classes=Child
|
||||
|
||||
|
||||
[VARIABLES]
|
||||
|
||||
additional-builtins=_
|
||||
@@ -1,5 +1,5 @@
|
||||
#define MyAppName "Cartridges"
|
||||
#define MyAppVersion "@VERSION@"
|
||||
#define MyAppVersion "1.4.1"
|
||||
#define MyAppPublisher "kramo"
|
||||
#define MyAppURL "https://github.com/kra-mo/cartridges"
|
||||
#define MyAppExeName "pythonw.exe"
|
||||
@@ -15,10 +15,10 @@ AppSupportURL=https://github.com/kra-mo/cartridges/issues
|
||||
AppUpdatesURL={#MyAppURL}
|
||||
DefaultDirName={autopf64}\{#MyAppName}
|
||||
DisableProgramGroupPage=yes
|
||||
LicenseFile=..\..\LICENSE
|
||||
LicenseFile=..\LICENSE
|
||||
PrivilegesRequiredOverridesAllowed=dialog
|
||||
OutputBaseFilename=Cartridges Setup
|
||||
SetupIconFile=..\..\windows\icon.ico
|
||||
SetupIconFile=icon.ico
|
||||
Compression=lzma
|
||||
SolidCompression=yes
|
||||
WizardStyle=modern
|
||||
@@ -42,7 +42,7 @@ Source: "D:\a\_temp\msys64\ucrt64\etc\ssl\*"; DestDir: "{app}\etc\ssl"; Flags: r
|
||||
|
||||
Source: "D:\a\_temp\msys64\ucrt64\lib\gdk-pixbuf-2.0\*"; DestDir: "{app}\lib\gdk-pixbuf-2.0"; Flags: recursesubdirs ignoreversion
|
||||
Source: "D:\a\_temp\msys64\ucrt64\lib\girepository-1.0\*"; DestDir: "{app}\lib\girepository-1.0"; Flags: recursesubdirs ignoreversion
|
||||
Source: "D:\a\_temp\msys64\ucrt64\lib\python@PYTHON_VERSION@\*"; DestDir: "{app}\lib\python@PYTHON_VERSION@"; Excludes: "__pycache__"; Flags: recursesubdirs ignoreversion
|
||||
Source: "D:\a\_temp\msys64\ucrt64\lib\python3.10\*"; DestDir: "{app}\lib\python3.10"; Excludes: "__pycache__"; Flags: recursesubdirs ignoreversion
|
||||
|
||||
Source: "D:\a\_temp\msys64\ucrt64\share\cartridges\*"; DestDir: "{app}\share\cartridges"; Excludes: "__pycache__"; Flags: recursesubdirs ignoreversion
|
||||
Source: "D:\a\_temp\msys64\ucrt64\share\icons\*"; DestDir: "{app}\share\icons"; Excludes: "*.png,cursors\*"; Flags: recursesubdirs ignoreversion
|
||||
@@ -50,7 +50,7 @@ Source: "D:\a\_temp\msys64\ucrt64\share\glib-2.0\*"; DestDir: "{app}\share\glib-
|
||||
Source: "D:\a\_temp\msys64\ucrt64\share\gtk-4.0\*"; DestDir: "{app}\share\gtk-4.0"; Flags: recursesubdirs ignoreversion
|
||||
Source: "D:\a\_temp\msys64\ucrt64\share\locale\*"; DestDir: "{app}\share\locale"; Flags: recursesubdirs ignoreversion
|
||||
|
||||
Source: "..\..\windows\icon.ico"; DestDir: "{app}"; Flags: recursesubdirs ignoreversion
|
||||
Source: "icon.ico"; DestDir: "{app}"; Flags: recursesubdirs ignoreversion
|
||||
|
||||
[Icons]
|
||||
Name: "{autoprograms}\{#MyAppName}"; Filename: "{app}\bin\{#MyAppExeName}"; Parameters: """{app}\bin\cartridges"""; IconFilename: "{app}\icon.ico"
|
||||
|
Before Width: | Height: | Size: 169 KiB After Width: | Height: | Size: 169 KiB |
@@ -1,3 +1,128 @@
|
||||
The project follows the [GNOME Code of Conduct](https://wiki.gnome.org/Foundation/CodeOfConduct).
|
||||
# Contributor Covenant Code of Conduct
|
||||
|
||||
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).
|
||||
## Our Pledge
|
||||
|
||||
We as members, contributors, and leaders pledge to make participation in our
|
||||
community a harassment-free experience for everyone, regardless of age, body
|
||||
size, visible or invisible disability, ethnicity, sex characteristics, gender
|
||||
identity and expression, level of experience, education, socio-economic status,
|
||||
nationality, personal appearance, race, religion, or sexual identity
|
||||
and orientation.
|
||||
|
||||
We pledge to act and interact in ways that contribute to an open, welcoming,
|
||||
diverse, inclusive, and healthy community.
|
||||
|
||||
## Our Standards
|
||||
|
||||
Examples of behavior that contributes to a positive environment for our
|
||||
community include:
|
||||
|
||||
* Demonstrating empathy and kindness toward other people
|
||||
* Being respectful of differing opinions, viewpoints, and experiences
|
||||
* Giving and gracefully accepting constructive feedback
|
||||
* Accepting responsibility and apologizing to those affected by our mistakes,
|
||||
and learning from the experience
|
||||
* Focusing on what is best not just for us as individuals, but for the
|
||||
overall community
|
||||
|
||||
Examples of unacceptable behavior include:
|
||||
|
||||
* The use of sexualized language or imagery, and sexual attention or
|
||||
advances of any kind
|
||||
* Trolling, insulting or derogatory comments, and personal or political attacks
|
||||
* Public or private harassment
|
||||
* Publishing others' private information, such as a physical or email
|
||||
address, without their explicit permission
|
||||
* Other conduct which could reasonably be considered inappropriate in a
|
||||
professional setting
|
||||
|
||||
## Enforcement Responsibilities
|
||||
|
||||
Community leaders are responsible for clarifying and enforcing our standards of
|
||||
acceptable behavior and will take appropriate and fair corrective action in
|
||||
response to any behavior that they deem inappropriate, threatening, offensive,
|
||||
or harmful.
|
||||
|
||||
Community leaders have the right and responsibility to remove, edit, or reject
|
||||
comments, commits, code, wiki edits, issues, and other contributions that are
|
||||
not aligned to this Code of Conduct, and will communicate reasons for moderation
|
||||
decisions when appropriate.
|
||||
|
||||
## Scope
|
||||
|
||||
This Code of Conduct applies within all community spaces, and also applies when
|
||||
an individual is officially representing the community in public spaces.
|
||||
Examples of representing our community include using an official e-mail address,
|
||||
posting via an official social media account, or acting as an appointed
|
||||
representative at an online or offline event.
|
||||
|
||||
## Enforcement
|
||||
|
||||
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
||||
reported to the community leaders responsible for enforcement at
|
||||
cartridges-community@kramo.hu.
|
||||
All complaints will be reviewed and investigated promptly and fairly.
|
||||
|
||||
All community leaders are obligated to respect the privacy and security of the
|
||||
reporter of any incident.
|
||||
|
||||
## Enforcement Guidelines
|
||||
|
||||
Community leaders will follow these Community Impact Guidelines in determining
|
||||
the consequences for any action they deem in violation of this Code of Conduct:
|
||||
|
||||
### 1. Correction
|
||||
|
||||
**Community Impact**: Use of inappropriate language or other behavior deemed
|
||||
unprofessional or unwelcome in the community.
|
||||
|
||||
**Consequence**: A private, written warning from community leaders, providing
|
||||
clarity around the nature of the violation and an explanation of why the
|
||||
behavior was inappropriate. A public apology may be requested.
|
||||
|
||||
### 2. Warning
|
||||
|
||||
**Community Impact**: A violation through a single incident or series
|
||||
of actions.
|
||||
|
||||
**Consequence**: A warning with consequences for continued behavior. No
|
||||
interaction with the people involved, including unsolicited interaction with
|
||||
those enforcing the Code of Conduct, for a specified period of time. This
|
||||
includes avoiding interactions in community spaces as well as external channels
|
||||
like social media. Violating these terms may lead to a temporary or
|
||||
permanent ban.
|
||||
|
||||
### 3. Temporary Ban
|
||||
|
||||
**Community Impact**: A serious violation of community standards, including
|
||||
sustained inappropriate behavior.
|
||||
|
||||
**Consequence**: A temporary ban from any sort of interaction or public
|
||||
communication with the community for a specified period of time. No public or
|
||||
private interaction with the people involved, including unsolicited interaction
|
||||
with those enforcing the Code of Conduct, is allowed during this period.
|
||||
Violating these terms may lead to a permanent ban.
|
||||
|
||||
### 4. Permanent Ban
|
||||
|
||||
**Community Impact**: Demonstrating a pattern of violation of community
|
||||
standards, including sustained inappropriate behavior, harassment of an
|
||||
individual, or aggression toward or disparagement of classes of individuals.
|
||||
|
||||
**Consequence**: A permanent ban from any sort of public interaction within
|
||||
the community.
|
||||
|
||||
## Attribution
|
||||
|
||||
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
||||
version 2.0, available at
|
||||
https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
|
||||
|
||||
Community Impact Guidelines were inspired by [Mozilla's code of conduct
|
||||
enforcement ladder](https://github.com/mozilla/diversity).
|
||||
|
||||
[homepage]: https://www.contributor-covenant.org
|
||||
|
||||
For answers to common questions about this code of conduct, see the FAQ at
|
||||
https://www.contributor-covenant.org/faq. Translations are available at
|
||||
https://www.contributor-covenant.org/translations.
|
||||
|
||||
@@ -23,8 +23,8 @@ The project can be translated on [Weblate](https://hosted.weblate.org/engage/car
|
||||
|
||||
## 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.
|
||||
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
|
||||
|
||||
50
README.md
@@ -3,47 +3,37 @@
|
||||
<img src="data/icons/hicolor/scalable/apps/hu.kramo.Cartridges.svg" width="128" height="128">
|
||||
|
||||
# Cartridges
|
||||
|
||||
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]
|
||||
|
||||
[circle-url]: https://circle.gnome.org
|
||||
[circle-image]: https://circle.gnome.org/assets/button/badge.svg
|
||||
[![Discord Chatroom][discord-image]][discord-url]
|
||||
|
||||
[github-actions-url]: https://github.com/kra-mo/cartridges
|
||||
[github-actions-image]: https://github.com/kra-mo/cartridges/actions/workflows/ci.yml/badge.svg
|
||||
[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-url]: https://flathub.org/apps/details/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 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
|
||||
- Flatpak
|
||||
- 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/)
|
||||
@@ -56,37 +46,27 @@ For updates and questions, join our [Discord server][discord-url]!
|
||||
|
||||
## Linux
|
||||
|
||||
### Flathub
|
||||
### Flathub (Recommended)
|
||||
|
||||
The app is available on Flathub.
|
||||
<a href=https://flathub.org/apps/details/hu.kramo.Cartridges><img width='240' alt='Download on Flathub' src='https://dl.flathub.org/assets/badges/flathub-badge-en.png'/></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>
|
||||
### From Releases
|
||||
1. Download the latest release from [Releases](https://github.com/kra-mo/cartridges/releases).
|
||||
2. Install the downloaded file via GNOME Software or `flatpak install hu.kramo.Cartridges.flatpak`.
|
||||
|
||||
## Windows
|
||||
|
||||
### From 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`.
|
||||
|
||||
## Building manually
|
||||
|
||||
See [Building](https://github.com/kra-mo/cartridges/blob/main/CONTRIBUTING.md#building).
|
||||
|
||||
# Contributing
|
||||
|
||||
See [CONTRIBUTING.md](https://github.com/kra-mo/cartridges/blob/main/CONTRIBUTING.md).
|
||||
See [CONTRIBUTING](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://wiki.gnome.org/Foundation/CodeOfConduct).
|
||||
|
||||
See [CODE_OF_CONDUCT.md](https://github.com/kra-mo/cartridges/blob/main/CODE_OF_CONDUCT.md).
|
||||
|
||||
@@ -1,59 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Project xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
xmlns:foaf="http://xmlns.com/foaf/0.1/"
|
||||
xmlns:gnome="http://api.gnome.org/doap-extensions#"
|
||||
xmlns="http://usefulinc.com/ns/doap#">
|
||||
|
||||
<name>Cartridges</name>
|
||||
<shortdesc xml:lang="en">Launch all your games</shortdesc>
|
||||
<description xml:lang="en">
|
||||
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://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>
|
||||
<platform>Libadwaita</platform>
|
||||
|
||||
<maintainer>
|
||||
<foaf:Person>
|
||||
<foaf:name>kramo</foaf:name>
|
||||
<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>
|
||||
<maintainer>
|
||||
<foaf:Person>
|
||||
<foaf:name>Geoffrey Coulaud</foaf:name>
|
||||
<foaf:mbox rdf:resource="mailto:geoffrey.coulaud@gmail.com" />
|
||||
<foaf:account>
|
||||
<foaf:OnlineAccount>
|
||||
<foaf:accountServiceHomepage rdf:resource="https://github.com"/>
|
||||
<foaf:accountName>GeoffreyCoulaud</foaf:accountName>
|
||||
</foaf:OnlineAccount>
|
||||
</foaf:account>
|
||||
<foaf:account>
|
||||
<foaf:OnlineAccount>
|
||||
<foaf:accountServiceHomepage rdf:resource="https://gitlab.gnome.org"/>
|
||||
<foaf:accountName>GeoffreyCoulaud</foaf:accountName>
|
||||
</foaf:OnlineAccount>
|
||||
</foaf:account>
|
||||
</foaf:Person>
|
||||
</maintainer>
|
||||
|
||||
</Project>
|
||||
@@ -1,14 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<gresources>
|
||||
<gresource prefix="@PREFIX@">
|
||||
<gresource prefix="/hu/kramo/Cartridges">
|
||||
<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/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>
|
||||
</gresources>
|
||||
@@ -1,161 +0,0 @@
|
||||
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");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,99 +1,86 @@
|
||||
using Gtk 4.0;
|
||||
using Adw 1;
|
||||
|
||||
template $Game : Box {
|
||||
template Game : Box {
|
||||
orientation: vertical;
|
||||
halign: center;
|
||||
valign: start;
|
||||
|
||||
Adw.Clamp {
|
||||
maximum-size: 200;
|
||||
|
||||
Overlay {
|
||||
[overlay]
|
||||
Revealer play_revealer {
|
||||
transition-type: crossfade;
|
||||
valign: start;
|
||||
halign: start;
|
||||
|
||||
Button play_button {
|
||||
icon-name: "media-playback-start-symbolic";
|
||||
margin-start: 6;
|
||||
margin-end: 3;
|
||||
margin-top: 6;
|
||||
margin-bottom: 3;
|
||||
|
||||
styles [
|
||||
"circular",
|
||||
"osd",
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
[overlay]
|
||||
Revealer menu_revealer {
|
||||
transition-type: crossfade;
|
||||
valign: start;
|
||||
halign: end;
|
||||
|
||||
MenuButton menu_button {
|
||||
icon-name: "view-more-symbolic";
|
||||
margin-start: 3;
|
||||
margin-end: 6;
|
||||
margin-top: 6;
|
||||
margin-bottom: 3;
|
||||
|
||||
styles [
|
||||
"circular",
|
||||
"osd",
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
Box {
|
||||
orientation: vertical;
|
||||
Button cover_button {
|
||||
name: "cover_button";
|
||||
overflow: hidden;
|
||||
|
||||
accessibility {
|
||||
labelled-by: title;
|
||||
}
|
||||
|
||||
Box {
|
||||
orientation: vertical;
|
||||
|
||||
Overlay {
|
||||
[overlay]
|
||||
Spinner spinner {
|
||||
margin-start: 72;
|
||||
margin-end: 72;
|
||||
}
|
||||
|
||||
Picture cover {
|
||||
width-request: 200;
|
||||
height-request: 300;
|
||||
hexpand: true;
|
||||
vexpand: true;
|
||||
}
|
||||
Overlay {
|
||||
[overlay]
|
||||
Spinner spinner {
|
||||
margin-start: 72;
|
||||
margin-end: 72;
|
||||
}
|
||||
|
||||
Label title {
|
||||
label: _("Title");
|
||||
ellipsize: end;
|
||||
Picture cover {
|
||||
width-request: 200;
|
||||
height-request: 300;
|
||||
hexpand: true;
|
||||
halign: start;
|
||||
margin-top: 15;
|
||||
margin-bottom: 15;
|
||||
margin-start: 12;
|
||||
margin-end: 12;
|
||||
vexpand: true;
|
||||
}
|
||||
}
|
||||
|
||||
styles [
|
||||
"card",
|
||||
"flat",
|
||||
]
|
||||
}
|
||||
Overlay overlay {
|
||||
[overlay]
|
||||
Revealer play_revealer {
|
||||
reveal-child: false;
|
||||
transition-type: crossfade;
|
||||
Box {
|
||||
Button play_button {
|
||||
halign: start;
|
||||
margin-start: 6;
|
||||
margin-end: 6;
|
||||
margin-top: 6;
|
||||
margin-bottom: 6;
|
||||
}
|
||||
MenuButton menu_button {
|
||||
icon-name: "view-more-symbolic";
|
||||
margin-top: 6;
|
||||
margin-bottom: 6;
|
||||
margin-end: 6;
|
||||
margin-start: 6;
|
||||
hexpand: true;
|
||||
halign: end;
|
||||
|
||||
styles [
|
||||
"flat",
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
Revealer title_revealer {
|
||||
transition-type: slide_down;
|
||||
reveal-child: true;
|
||||
valign: start;
|
||||
Label title {
|
||||
label: _("Title");
|
||||
ellipsize: end;
|
||||
hexpand: true;
|
||||
halign: start;
|
||||
margin-top: 14;
|
||||
margin-bottom: 14;
|
||||
margin-start: 12;
|
||||
margin-end: 12;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
styles [
|
||||
"card",
|
||||
]
|
||||
}
|
||||
|
||||
menu game_options {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
using Gtk 4.0;
|
||||
using Adw 1;
|
||||
|
||||
template $PreferencesWindow : Adw.PreferencesWindow {
|
||||
template PreferencesWindow : Adw.PreferencesWindow {
|
||||
default-height: 500;
|
||||
|
||||
Adw.PreferencesPage general_page {
|
||||
@@ -61,22 +61,6 @@ template $PreferencesWindow : Adw.PreferencesWindow {
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
Adw.ActionRow reset_action_row {
|
||||
title: "Reset App";
|
||||
subtitle: "Completely resets and quits Cartridges";
|
||||
visible: false;
|
||||
|
||||
Button reset_button {
|
||||
label: "Reset";
|
||||
valign: center;
|
||||
|
||||
styles [
|
||||
"destructive-action",
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -92,31 +76,57 @@ template $PreferencesWindow : Adw.PreferencesWindow {
|
||||
title: _("Steam");
|
||||
show-enable-switch: true;
|
||||
|
||||
Adw.ActionRow steam_data_action_row {
|
||||
title: _("Install Location");
|
||||
Adw.ActionRow {
|
||||
title: _("Steam Install Location");
|
||||
subtitle: _("Directory to use when importing games");
|
||||
|
||||
Button steam_data_file_chooser_button {
|
||||
Button steam_file_chooser_button {
|
||||
icon-name: "folder-symbolic";
|
||||
valign: center;
|
||||
}
|
||||
}
|
||||
Adw.ActionRow {
|
||||
title: _("Extra Steam Libraries");
|
||||
subtitle: _("Select other directories where you have Steam games installed");
|
||||
|
||||
Revealer steam_clear_button_revealer {
|
||||
reveal-child: false;
|
||||
transition-type: slide_left;
|
||||
Button steam_clear_button {
|
||||
label: _("Clear");
|
||||
valign: center;
|
||||
halign: end;
|
||||
|
||||
styles [
|
||||
"destructive-action",
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
Button steam_extra_file_chooser_button {
|
||||
icon-name: "folder-new-symbolic";
|
||||
valign: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Adw.ExpanderRow lutris_expander_row {
|
||||
title: _("Lutris");
|
||||
show-enable-switch: true;
|
||||
|
||||
Adw.ActionRow lutris_data_action_row {
|
||||
title: _("Install Location");
|
||||
Adw.ActionRow {
|
||||
title: _("Lutris Install Location");
|
||||
subtitle: _("Directory to use when importing games");
|
||||
|
||||
Button lutris_data_file_chooser_button {
|
||||
Button lutris_file_chooser_button {
|
||||
icon-name: "folder-symbolic";
|
||||
valign: center;
|
||||
}
|
||||
}
|
||||
|
||||
Adw.ActionRow lutris_cache_action_row {
|
||||
title: _("Cache Location");
|
||||
Adw.ActionRow {
|
||||
title: _("Lutris Cache Location");
|
||||
subtitle: _("Directory to use when importing game covers");
|
||||
|
||||
Button lutris_cache_file_chooser_button {
|
||||
icon-name: "folder-symbolic";
|
||||
@@ -126,18 +136,9 @@ template $PreferencesWindow : Adw.PreferencesWindow {
|
||||
|
||||
Adw.ActionRow {
|
||||
title: _("Import Steam Games");
|
||||
activatable-widget: lutris_import_steam_switch;
|
||||
activatable-widget: lutris_steam_switch;
|
||||
|
||||
Switch lutris_import_steam_switch {
|
||||
valign: center;
|
||||
}
|
||||
}
|
||||
|
||||
Adw.ActionRow {
|
||||
title: _("Import Flatpak Games");
|
||||
activatable-widget: lutris_import_flatpak_switch;
|
||||
|
||||
Switch lutris_import_flatpak_switch {
|
||||
Switch lutris_steam_switch {
|
||||
valign: center;
|
||||
}
|
||||
}
|
||||
@@ -147,10 +148,11 @@ template $PreferencesWindow : Adw.PreferencesWindow {
|
||||
title: _("Heroic");
|
||||
show-enable-switch: true;
|
||||
|
||||
Adw.ActionRow heroic_config_action_row {
|
||||
title: _("Install Location");
|
||||
Adw.ActionRow {
|
||||
title: _("Heroic Install Location");
|
||||
subtitle: _("Directory to use when importing games");
|
||||
|
||||
Button heroic_config_file_chooser_button {
|
||||
Button heroic_file_chooser_button {
|
||||
icon-name: "folder-symbolic";
|
||||
valign: center;
|
||||
}
|
||||
@@ -158,27 +160,27 @@ template $PreferencesWindow : Adw.PreferencesWindow {
|
||||
|
||||
Adw.ActionRow {
|
||||
title: _("Import Epic Games");
|
||||
activatable-widget: heroic_import_epic_switch;
|
||||
activatable-widget: heroic_epic_switch;
|
||||
|
||||
Switch heroic_import_epic_switch {
|
||||
Switch heroic_epic_switch {
|
||||
valign: center;
|
||||
}
|
||||
}
|
||||
|
||||
Adw.ActionRow {
|
||||
title: _("Import GOG Games");
|
||||
activatable-widget: heroic_import_gog_switch;
|
||||
activatable-widget: heroic_gog_switch;
|
||||
|
||||
Switch heroic_import_gog_switch {
|
||||
Switch heroic_gog_switch {
|
||||
valign: center;
|
||||
}
|
||||
}
|
||||
|
||||
Adw.ActionRow {
|
||||
title: _("Import Sideloaded Games");
|
||||
activatable-widget: heroic_import_sideload_switch;
|
||||
activatable-widget: heroic_sideloaded_switch;
|
||||
|
||||
Switch heroic_import_sideload_switch {
|
||||
Switch heroic_sideloaded_switch {
|
||||
valign: center;
|
||||
}
|
||||
}
|
||||
@@ -188,10 +190,11 @@ template $PreferencesWindow : Adw.PreferencesWindow {
|
||||
title: _("Bottles");
|
||||
show-enable-switch: true;
|
||||
|
||||
Adw.ActionRow bottles_data_action_row {
|
||||
title: _("Install Location");
|
||||
Adw.ActionRow {
|
||||
title: _("Bottles Install Location");
|
||||
subtitle: _("Directory to use when importing games");
|
||||
|
||||
Button bottles_data_file_chooser_button {
|
||||
Button bottles_file_chooser_button {
|
||||
icon-name: "folder-symbolic";
|
||||
valign: center;
|
||||
}
|
||||
@@ -202,52 +205,16 @@ template $PreferencesWindow : Adw.PreferencesWindow {
|
||||
title: _("itch");
|
||||
show-enable-switch: true;
|
||||
|
||||
Adw.ActionRow itch_config_action_row {
|
||||
title: _("Install Location");
|
||||
Adw.ActionRow {
|
||||
title: _("itch Install Location");
|
||||
subtitle: _("Directory to use when importing games");
|
||||
|
||||
Button itch_config_file_chooser_button {
|
||||
Button itch_file_chooser_button {
|
||||
icon-name: "folder-symbolic";
|
||||
valign: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Adw.ExpanderRow legendary_expander_row {
|
||||
title: _("Legendary");
|
||||
show-enable-switch: true;
|
||||
|
||||
Adw.ActionRow legendary_config_action_row {
|
||||
title: _("Install Location");
|
||||
|
||||
Button legendary_config_file_chooser_button {
|
||||
icon-name: "folder-symbolic";
|
||||
valign: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Adw.ExpanderRow flatpak_expander_row {
|
||||
title: _("Flatpak");
|
||||
show-enable-switch: true;
|
||||
|
||||
Adw.ActionRow flatpak_data_action_row {
|
||||
title: _("Install Location");
|
||||
|
||||
Button flatpak_data_file_chooser_button {
|
||||
icon-name: "folder-symbolic";
|
||||
valign: center;
|
||||
}
|
||||
}
|
||||
|
||||
Adw.ActionRow flatpak_import_launchers_row {
|
||||
title: _("Import Game Launchers");
|
||||
activatable-widget: flatpak_import_launchers_switch;
|
||||
|
||||
Switch flatpak_import_launchers_switch {
|
||||
valign: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -267,12 +234,12 @@ template $PreferencesWindow : Adw.PreferencesWindow {
|
||||
Adw.PreferencesGroup sgdb_behavior_group {
|
||||
title: _("Behavior");
|
||||
|
||||
Adw.ActionRow sgdb_switch_row {
|
||||
Adw.ActionRow {
|
||||
title: _("Use SteamGridDB");
|
||||
subtitle: _("Download images when adding or importing games");
|
||||
activatable-widget: sgdb_switch;
|
||||
activatable-widget: sgdb_download_switch;
|
||||
|
||||
Switch sgdb_switch {
|
||||
Switch sgdb_download_switch {
|
||||
valign: center;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,6 +6,6 @@
|
||||
}
|
||||
|
||||
#details_view_play_button {
|
||||
color: rgba(0, 0, 0, .8);
|
||||
background-color: white;
|
||||
color: @dark_5;
|
||||
background-color: @light_1;
|
||||
}
|
||||
@@ -6,6 +6,7 @@
|
||||
}
|
||||
|
||||
#details_view_play_button {
|
||||
color: white;
|
||||
background-color: rgba(0, 0, 0, .8);
|
||||
color: @light_1;
|
||||
background-color: @dark_5;
|
||||
opacity: 0.8;
|
||||
}
|
||||
@@ -9,30 +9,12 @@ Adw.StatusPage notice_no_results {
|
||||
valign: center;
|
||||
}
|
||||
|
||||
Adw.StatusPage hidden_notice_no_results {
|
||||
icon-name: "system-search-symbolic";
|
||||
title: _("No Games Found");
|
||||
description: _("Try a different search.");
|
||||
vexpand: true;
|
||||
valign: center;
|
||||
}
|
||||
|
||||
Adw.StatusPage notice_empty {
|
||||
icon-name: "applications-games-symbolic";
|
||||
title: _("No Games");
|
||||
description: _("Use the + button to add games.");
|
||||
vexpand: true;
|
||||
valign: center;
|
||||
|
||||
Button {
|
||||
label: _("Import");
|
||||
halign: center;
|
||||
action-name: "app.import";
|
||||
|
||||
styles [
|
||||
"pill",
|
||||
"suggested-action",
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
Adw.StatusPage hidden_notice_empty {
|
||||
@@ -43,7 +25,7 @@ Adw.StatusPage hidden_notice_empty {
|
||||
valign: center;
|
||||
}
|
||||
|
||||
template $CartridgesWindow : Adw.ApplicationWindow {
|
||||
template CartridgesWindow : Adw.ApplicationWindow {
|
||||
title: _("Cartridges");
|
||||
|
||||
Adw.ToastOverlay toast_overlay {
|
||||
@@ -90,7 +72,6 @@ template $CartridgesWindow : Adw.ApplicationWindow {
|
||||
|
||||
Adw.Clamp {
|
||||
maximum-size: 200;
|
||||
|
||||
Overlay {
|
||||
[overlay]
|
||||
Spinner details_view_spinner {
|
||||
@@ -132,7 +113,7 @@ template $CartridgesWindow : Adw.ApplicationWindow {
|
||||
}
|
||||
|
||||
Label details_view_developer {
|
||||
margin-top: 6;
|
||||
margin-top: 3;
|
||||
hexpand: true;
|
||||
halign: start;
|
||||
max-width-chars: 36;
|
||||
@@ -141,13 +122,13 @@ template $CartridgesWindow : Adw.ApplicationWindow {
|
||||
natural-wrap-mode: word;
|
||||
|
||||
styles [
|
||||
"heading",
|
||||
"heading"
|
||||
]
|
||||
}
|
||||
|
||||
Box {
|
||||
orientation: horizontal;
|
||||
margin-top: 15;
|
||||
margin-top: 12;
|
||||
hexpand: true;
|
||||
halign: start;
|
||||
|
||||
@@ -156,7 +137,6 @@ template $CartridgesWindow : Adw.ApplicationWindow {
|
||||
wrap-mode: word_char;
|
||||
natural-wrap-mode: word;
|
||||
}
|
||||
|
||||
Label details_view_last_played {
|
||||
margin-start: 12;
|
||||
wrap: true;
|
||||
@@ -164,7 +144,6 @@ template $CartridgesWindow : Adw.ApplicationWindow {
|
||||
natural-wrap-mode: word;
|
||||
}
|
||||
}
|
||||
|
||||
Box {
|
||||
hexpand: true;
|
||||
vexpand: true;
|
||||
@@ -187,40 +166,50 @@ template $CartridgesWindow : Adw.ApplicationWindow {
|
||||
halign: start;
|
||||
valign: center;
|
||||
margin-top: 24;
|
||||
margin-start: 9;
|
||||
margin-start: 12;
|
||||
|
||||
Button {
|
||||
icon-name: "document-edit-symbolic";
|
||||
action-name: "app.edit_game";
|
||||
tooltip-text: _("Edit");
|
||||
|
||||
styles ["raised", "circular"]
|
||||
styles [
|
||||
"circular",
|
||||
]
|
||||
}
|
||||
|
||||
Button details_view_hide_button {
|
||||
action-name: "app.hide_game";
|
||||
|
||||
styles ["raised", "circular"]
|
||||
styles [
|
||||
"circular",
|
||||
]
|
||||
}
|
||||
|
||||
Button {
|
||||
icon-name: "user-trash-symbolic";
|
||||
action-name: "app.remove_game";
|
||||
tooltip-text: _("Remove");
|
||||
|
||||
styles ["raised", "circular"]
|
||||
styles [
|
||||
"circular",
|
||||
]
|
||||
}
|
||||
|
||||
styles [
|
||||
"linked",
|
||||
]
|
||||
}
|
||||
|
||||
MenuButton {
|
||||
MenuButton {
|
||||
halign: start;
|
||||
valign: center;
|
||||
margin-top: 24;
|
||||
margin-start: 12;
|
||||
icon-name: "system-search-symbolic";
|
||||
menu-model: search;
|
||||
tooltip-text: _("Search");
|
||||
|
||||
styles ["raised", "circular"]
|
||||
}
|
||||
|
||||
styles [
|
||||
"toolbar",
|
||||
styles [
|
||||
"circular",
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -261,9 +250,6 @@ template $CartridgesWindow : Adw.ApplicationWindow {
|
||||
}
|
||||
|
||||
SearchBar search_bar {
|
||||
search-mode-enabled: bind-property search_button.active bidirectional;
|
||||
key-capture-widget: library_view;
|
||||
|
||||
Adw.Clamp {
|
||||
maximum-size: 500;
|
||||
tightening-threshold: 500;
|
||||
@@ -285,10 +271,10 @@ template $CartridgesWindow : Adw.ApplicationWindow {
|
||||
valign: start;
|
||||
column-spacing: 12;
|
||||
row-spacing: 12;
|
||||
margin-top: 15;
|
||||
margin-bottom: 15;
|
||||
margin-start: 15;
|
||||
margin-end: 15;
|
||||
margin-top: 16;
|
||||
margin-bottom: 16;
|
||||
margin-start: 16;
|
||||
margin-end: 16;
|
||||
selection-mode: none;
|
||||
}
|
||||
}
|
||||
@@ -312,7 +298,7 @@ template $CartridgesWindow : Adw.ApplicationWindow {
|
||||
}
|
||||
|
||||
[end]
|
||||
MenuButton hidden_primary_menu_button {
|
||||
MenuButton {
|
||||
tooltip-text: _("Main Menu");
|
||||
icon-name: "open-menu-symbolic";
|
||||
menu-model: primary_menu;
|
||||
@@ -327,9 +313,6 @@ template $CartridgesWindow : Adw.ApplicationWindow {
|
||||
}
|
||||
|
||||
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;
|
||||
@@ -351,10 +334,10 @@ template $CartridgesWindow : Adw.ApplicationWindow {
|
||||
valign: start;
|
||||
column-spacing: 12;
|
||||
row-spacing: 12;
|
||||
margin-top: 15;
|
||||
margin-bottom: 15;
|
||||
margin-start: 15;
|
||||
margin-end: 15;
|
||||
margin-top: 16;
|
||||
margin-bottom: 16;
|
||||
margin-start: 16;
|
||||
margin-end: 16;
|
||||
selection-mode: none;
|
||||
}
|
||||
}
|
||||
@@ -436,7 +419,6 @@ menu add_games {
|
||||
action: "app.add_game";
|
||||
}
|
||||
}
|
||||
|
||||
section {
|
||||
item {
|
||||
label: _("Import");
|
||||
@@ -448,30 +430,25 @@ menu add_games {
|
||||
menu search {
|
||||
section {
|
||||
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";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -3,9 +3,8 @@ Name=Cartridges
|
||||
GenericName=Game Launcher
|
||||
Comment=Launch all your games
|
||||
Exec=cartridges
|
||||
Icon=@APP_ID@
|
||||
Icon=hu.kramo.Cartridges
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=GNOME;GTK;Game;
|
||||
Keywords=gaming;launcher;steam;lutris;heroic;bottles;itch;
|
||||
StartupNotify=true
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<schemalist gettext-domain="cartridges">
|
||||
<schema id="@APP_ID@" path="@PREFIX@/">
|
||||
<key name="exit-after-launch" type="b">
|
||||
<default>false</default>
|
||||
</key>
|
||||
<schema id="hu.kramo.Cartridges" path="/hu/kramo/Cartridges/">
|
||||
<key name="exit-after-launch" type="b">
|
||||
<default>false</default>
|
||||
</key>
|
||||
<key name="cover-launches-game" type="b">
|
||||
<default>false</default>
|
||||
</key>
|
||||
@@ -14,7 +14,13 @@
|
||||
<default>true</default>
|
||||
</key>
|
||||
<key name="steam-location" type="s">
|
||||
<default>"~/.steam/steam"</default>
|
||||
<default>"~/.steam/"</default>
|
||||
</key>
|
||||
<key name="steam-extra-dirs" type="as">
|
||||
<default>[]</default>
|
||||
</key>
|
||||
<key name="steam-extra-dirs-hint" type="b">
|
||||
<default>true</default>
|
||||
</key>
|
||||
<key name="lutris" type="b">
|
||||
<default>true</default>
|
||||
@@ -28,28 +34,25 @@
|
||||
<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>
|
||||
<key name="heroic-location" type="s">
|
||||
<default>"~/.config/heroic/"</default>
|
||||
</key>
|
||||
<key name="heroic-import-epic" type="b">
|
||||
<default>true</default>
|
||||
</key>
|
||||
<key name="heroic-import-gog" type="b">
|
||||
<default>true</default>
|
||||
</key>
|
||||
<key name="heroic-import-sideload" type="b">
|
||||
<default>true</default>
|
||||
<default>"~/.var/app/com.heroicgameslauncher.hgl/config/heroic/"</default>
|
||||
</key>
|
||||
<key name="heroic-import-epic" type="b">
|
||||
<default>true</default>
|
||||
</key>
|
||||
<key name="heroic-import-gog" type="b">
|
||||
<default>true</default>
|
||||
</key>
|
||||
<key name="heroic-import-sideload" type="b">
|
||||
<default>true</default>
|
||||
</key>
|
||||
<key name="bottles" type="b">
|
||||
<default>true</default>
|
||||
</key>
|
||||
<key name="bottles-location" type="s">
|
||||
<key name="bottles-location" type="s">
|
||||
<default>"~/.var/app/com.usebottles.bottles/data/bottles/"</default>
|
||||
</key>
|
||||
<key name="itch" type="b">
|
||||
@@ -58,21 +61,6 @@
|
||||
<key name="itch-location" type="s">
|
||||
<default>"~/.var/app/io.itch.itch/config/itch/"</default>
|
||||
</key>
|
||||
<key name="legendary" type="b">
|
||||
<default>true</default>
|
||||
</key>
|
||||
<key name="legendary-location" type="s">
|
||||
<default>"~/.config/legendary/"</default>
|
||||
</key>
|
||||
<key name="flatpak" type="b">
|
||||
<default>true</default>
|
||||
</key>
|
||||
<key name="flatpak-location" type="s">
|
||||
<default>"/var/lib/flatpak/"</default>
|
||||
</key>
|
||||
<key name="flatpak-import-launchers" type="b">
|
||||
<default>false</default>
|
||||
</key>
|
||||
<key name="sgdb-key" type="s">
|
||||
<default>""</default>
|
||||
</key>
|
||||
@@ -85,8 +73,8 @@
|
||||
<key name="sgdb-animated" type="b">
|
||||
<default>false</default>
|
||||
</key>
|
||||
</schema>
|
||||
<schema id="@APP_ID@.State" path="@PREFIX@/State/">
|
||||
</schema>
|
||||
<schema id="hu.kramo.Cartridge.State" path="/hu/kramo/Cartridges/State/">
|
||||
<key name="width" type="i">
|
||||
<default>1110</default>
|
||||
</key>
|
||||
@@ -98,16 +86,13 @@
|
||||
</key>
|
||||
<key name="sort-mode" type="s">
|
||||
<choices>
|
||||
<choice value="a-z" />
|
||||
<choice value="z-a" />
|
||||
<choice value="newest" />
|
||||
<choice value="oldest" />
|
||||
<choice value="last_played" />
|
||||
<choice value="a-z"/>
|
||||
<choice value="z-a"/>
|
||||
<choice value="newest"/>
|
||||
<choice value="oldest"/>
|
||||
<choice value="last_played"/>
|
||||
</choices>
|
||||
<default>"a-z"</default>
|
||||
</key>
|
||||
<key name="steam-limiter-tokens-history" type="s">
|
||||
<default>"[]"</default>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
</schemalist>
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<component type="desktop-application">
|
||||
<id>@APP_ID@</id>
|
||||
<id>hu.kramo.Cartridges.desktop</id>
|
||||
<metadata_license>CC0-1.0</metadata_license>
|
||||
<project_license>GPL-3.0-or-later</project_license>
|
||||
<name>Cartridges</name>
|
||||
@@ -15,15 +15,7 @@
|
||||
<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>
|
||||
<launchable type="desktop-id">hu.kramo.Cartridges.desktop</launchable>
|
||||
<screenshots>
|
||||
<screenshot type="default">
|
||||
<image>https://raw.githubusercontent.com/kra-mo/cartridges/main/data/screenshots/1.png</image>
|
||||
@@ -44,36 +36,10 @@
|
||||
</screenshots>
|
||||
<content_rating type="oars-1.1" />
|
||||
<releases>
|
||||
<release version="2.0.1" date="2023-07-06">
|
||||
<release version="1.4.1" date="2023-05-05">
|
||||
<description translatable="no">
|
||||
<ul>
|
||||
<li>Fixes the ability to import multiple times at once</li>
|
||||
<li>Fixes an issue with non-Flatpak Steam on Linux</li>
|
||||
</ul>
|
||||
</description>
|
||||
</release>
|
||||
<release version="2.0" date="2023-07-05">
|
||||
<description translatable="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 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>
|
||||
<li>Updates the Heroic GOG path</li>
|
||||
</ul>
|
||||
</description>
|
||||
</release>
|
||||
|
||||
@@ -1,85 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg height="128px" viewBox="0 0 128 128" width="128px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<linearGradient id="a" gradientUnits="userSpaceOnUse" x1="9" x2="119" y1="115" y2="115">
|
||||
<stop offset="0" stop-color="#613583"/>
|
||||
<stop offset="0.05" stop-color="#9141ac"/>
|
||||
<stop offset="0.22" stop-color="#613583"/>
|
||||
<stop offset="0.78" stop-color="#613583"/>
|
||||
<stop offset="0.95" stop-color="#9141ac"/>
|
||||
<stop offset="1" stop-color="#613583"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="b" gradientUnits="userSpaceOnUse" x1="45" x2="45" y1="50" y2="82">
|
||||
<stop offset="0" stop-color="#bdd0d5"/>
|
||||
<stop offset="1" stop-color="#305749"/>
|
||||
</linearGradient>
|
||||
<clipPath id="c">
|
||||
<rect height="128" width="128"/>
|
||||
</clipPath>
|
||||
<clipPath id="d">
|
||||
<rect height="128" width="128"/>
|
||||
</clipPath>
|
||||
<filter id="e" height="100%" width="100%" x="0%" y="0%">
|
||||
<feColorMatrix in="SourceGraphic" type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
||||
</filter>
|
||||
<mask id="f">
|
||||
<g clip-path="url(#d)" filter="url(#e)">
|
||||
<g clip-path="url(#c)">
|
||||
<path d="m 111 29 h -94 c -4.417969 0 -8 3.582031 -8 8 v 70 c 0 4.417969 3.582031 8 8 8 h 94 c 4.417969 0 8 -3.582031 8 -8 v -70 c 0 -4.417969 -3.582031 -8 -8 -8 z m 0 0" fill="url(#a)"/>
|
||||
<path d="m 111 29 h -94 c -4.417969 0 -8 3.679688 -8 8.222656 v 57.554688 c 0 4.539062 3.582031 8.222656 8 8.222656 h 94 c 4.417969 0 8 -3.679688 8 -8.222656 v -57.554688 c 0 -4.539062 -3.582031 -8.222656 -8 -8.222656 z m 0 0" fill="#c061cb"/>
|
||||
<path d="m 84 42 h -40 c -2.210938 0 -4 1.789062 -4 4 v 40 c 0 2.210938 1.789062 4 4 4 h 40 c 2.210938 0 4 -1.789062 4 -4 v -40 c 0 -2.210938 -1.789062 -4 -4 -4 z m 0 0"/>
|
||||
<path d="m 81 50 h -34 c -1.105469 0 -2 0.894531 -2 2 v 28 c 0 1.105469 0.894531 2 2 2 h 34 c 1.105469 0 2 -0.894531 2 -2 v -28 c 0 -1.105469 -0.894531 -2 -2 -2 z m 0 0" fill="url(#b)"/>
|
||||
<path d="m 102 61 v -1 c 0 -2.761719 -2.238281 -5 -5 -5 s -5 2.238281 -5 5 v 1 c 0 2.761719 2.238281 5 5 5 s 5 -2.238281 5 -5 z m 12 -6 v -1 c 0 -2.761719 -2.238281 -5 -5 -5 s -5 2.238281 -5 5 v 1 c 0 2.761719 2.238281 5 5 5 s 5 -2.238281 5 -5 z m 0 0"/>
|
||||
<path d="m 97 64 c 2.761719 0 5 -2.015625 5 -4.5 s -2.238281 -4.5 -5 -4.5 s -5 2.015625 -5 4.5 s 2.238281 4.5 5 4.5 z m 12 -6 c 2.761719 0 5 -2.015625 5 -4.5 s -2.238281 -4.5 -5 -4.5 s -5 2.015625 -5 4.5 s 2.238281 4.5 5 4.5 z m 0 0" fill="#3d3846"/>
|
||||
<path d="m 29 56.5 c 0 -1.933594 -1.566406 -3.5 -3.5 -3.5 s -3.5 1.566406 -3.5 3.5 v 13 c 0 1.933594 1.566406 3.5 3.5 3.5 s 3.5 -1.566406 3.5 -3.5 z m 0 0"/>
|
||||
<path d="m 33 58 h -15 c -1.65625 0 -3 1.34375 -3 3 v 2 c 0 1.65625 1.34375 3 3 3 h 15 c 1.65625 0 3 -1.34375 3 -3 v -2 c 0 -1.65625 -1.34375 -3 -3 -3 z m 0 0"/>
|
||||
<path d="m 29 54.5 c 0 -1.933594 -1.566406 -3.5 -3.5 -3.5 s -3.5 1.566406 -3.5 3.5 v 13 c 0 1.933594 1.566406 3.5 3.5 3.5 s 3.5 -1.566406 3.5 -3.5 z m 0 0" fill="#3d3846"/>
|
||||
<path d="m 33 58 h -15 c -1.65625 0 -3 1.34375 -3 3 s 1.34375 3 3 3 h 15 c 1.65625 0 3 -1.34375 3 -3 s -1.34375 -3 -3 -3 z m 0 0" fill="#3d3846"/>
|
||||
<path d="m 71 109 c 0 -1.105469 0.894531 -2 2 -2 s 2 0.894531 2 2 s -0.894531 2 -2 2 s -2 -0.894531 -2 -2 z m 0 0"/>
|
||||
<path d="m 71.0625 108.5 c 0.226562 0.882812 1.023438 1.503906 1.9375 1.503906 s 1.710938 -0.621094 1.9375 -1.503906 c 0.195312 0.757812 -0.066406 1.558594 -0.671875 2.050781 c -0.605469 0.492188 -1.445313 0.585938 -2.144531 0.242188 c -0.855469 -0.414063 -1.296875 -1.375 -1.058594 -2.292969 z m 0 0" fill="#9141ac"/>
|
||||
<path d="m 66 107 h -10 c -1.105469 0 -2 0.894531 -2 2 s 0.894531 2 2 2 h 10 c 1.105469 0 2 -0.894531 2 -2 s -0.894531 -2 -2 -2 z m 0 0"/>
|
||||
<path d="m 54.0625 108.5 c -0.152344 0.597656 -0.023438 1.234375 0.355469 1.726562 c 0.378906 0.488282 0.964843 0.773438 1.582031 0.773438 h 10 c 0.617188 0 1.203125 -0.285156 1.582031 -0.773438 c 0.378907 -0.492187 0.511719 -1.128906 0.355469 -1.726562 c -0.226562 0.882812 -1.023438 1.5 -1.9375 1.5 h -10 c -0.914062 0 -1.710938 -0.617188 -1.9375 -1.5 z m 0 0" fill="#9141ac"/>
|
||||
<path d="m 110 74 h -14 c -0.550781 0 -1 0.449219 -1 1 s 0.449219 1 1 1 h 14 c 0.550781 0 1 -0.449219 1 -1 s -0.449219 -1 -1 -1 z m 0 5 h -14 c -0.550781 0 -1 0.449219 -1 1 s 0.449219 1 1 1 h 14 c 0.550781 0 1 -0.449219 1 -1 s -0.449219 -1 -1 -1 z m 0 5 h -14 c -0.550781 0 -1 0.449219 -1 1 s 0.449219 1 1 1 h 14 c 0.550781 0 1 -0.449219 1 -1 s -0.449219 -1 -1 -1 z m 0 0" fill="#613583"/>
|
||||
<path d="m 21.5 79 h -3 c -1.378906 0 -2.5 1.121094 -2.5 2.5 s 1.121094 2.5 2.5 2.5 h 3 c 1.378906 0 2.5 -1.121094 2.5 -2.5 s -1.121094 -2.5 -2.5 -2.5 z m 11 0 h -3 c -1.378906 0 -2.5 1.121094 -2.5 2.5 s 1.121094 2.5 2.5 2.5 h 3 c 1.378906 0 2.5 -1.121094 2.5 -2.5 s -1.121094 -2.5 -2.5 -2.5 z m 0 0"/>
|
||||
<path d="m 22 79 h -4 c -1.105469 0 -2 0.894531 -2 2 s 0.894531 2 2 2 h 4 c 1.105469 0 2 -0.894531 2 -2 s -0.894531 -2 -2 -2 z m 11 0 h -4 c -1.105469 0 -2 0.894531 -2 2 s 0.894531 2 2 2 h 4 c 1.105469 0 2 -0.894531 2 -2 s -0.894531 -2 -2 -2 z m 0 0" fill="#3d3846"/>
|
||||
</g>
|
||||
</g>
|
||||
</mask>
|
||||
<mask id="g">
|
||||
<g filter="url(#e)">
|
||||
<rect fill-opacity="0.8" height="128" width="128"/>
|
||||
</g>
|
||||
</mask>
|
||||
<linearGradient id="h" gradientTransform="matrix(0 0.37 -0.98462 0 295.38501 -30.360001)" gradientUnits="userSpaceOnUse" x1="300" x2="428" y1="235" y2="235">
|
||||
<stop offset="0" stop-color="#f9f06b"/>
|
||||
<stop offset="1" stop-color="#f5c211"/>
|
||||
</linearGradient>
|
||||
<clipPath id="i">
|
||||
<rect height="128" width="128"/>
|
||||
</clipPath>
|
||||
<clipPath id="j">
|
||||
<rect height="128" width="128"/>
|
||||
</clipPath>
|
||||
<path d="m 111 29 h -94 c -4.417969 0 -8 3.582031 -8 8 v 70 c 0 4.417969 3.582031 8 8 8 h 94 c 4.417969 0 8 -3.582031 8 -8 v -70 c 0 -4.417969 -3.582031 -8 -8 -8 z m 0 0" fill="url(#a)"/>
|
||||
<path d="m 111 29 h -94 c -4.417969 0 -8 3.679688 -8 8.222656 v 57.554688 c 0 4.539062 3.582031 8.222656 8 8.222656 h 94 c 4.417969 0 8 -3.679688 8 -8.222656 v -57.554688 c 0 -4.539062 -3.582031 -8.222656 -8 -8.222656 z m 0 0" fill="#c061cb"/>
|
||||
<path d="m 84 42 h -40 c -2.210938 0 -4 1.789062 -4 4 v 40 c 0 2.210938 1.789062 4 4 4 h 40 c 2.210938 0 4 -1.789062 4 -4 v -40 c 0 -2.210938 -1.789062 -4 -4 -4 z m 0 0"/>
|
||||
<path d="m 81 50 h -34 c -1.105469 0 -2 0.894531 -2 2 v 28 c 0 1.105469 0.894531 2 2 2 h 34 c 1.105469 0 2 -0.894531 2 -2 v -28 c 0 -1.105469 -0.894531 -2 -2 -2 z m 0 0" fill="url(#b)"/>
|
||||
<path d="m 102 61 v -1 c 0 -2.761719 -2.238281 -5 -5 -5 s -5 2.238281 -5 5 v 1 c 0 2.761719 2.238281 5 5 5 s 5 -2.238281 5 -5 z m 12 -6 v -1 c 0 -2.761719 -2.238281 -5 -5 -5 s -5 2.238281 -5 5 v 1 c 0 2.761719 2.238281 5 5 5 s 5 -2.238281 5 -5 z m 0 0"/>
|
||||
<path d="m 97 64 c 2.761719 0 5 -2.015625 5 -4.5 s -2.238281 -4.5 -5 -4.5 s -5 2.015625 -5 4.5 s 2.238281 4.5 5 4.5 z m 12 -6 c 2.761719 0 5 -2.015625 5 -4.5 s -2.238281 -4.5 -5 -4.5 s -5 2.015625 -5 4.5 s 2.238281 4.5 5 4.5 z m 0 0" fill="#3d3846"/>
|
||||
<path d="m 29 56.5 c 0 -1.933594 -1.566406 -3.5 -3.5 -3.5 s -3.5 1.566406 -3.5 3.5 v 13 c 0 1.933594 1.566406 3.5 3.5 3.5 s 3.5 -1.566406 3.5 -3.5 z m 0 0"/>
|
||||
<path d="m 33 58 h -15 c -1.65625 0 -3 1.34375 -3 3 v 2 c 0 1.65625 1.34375 3 3 3 h 15 c 1.65625 0 3 -1.34375 3 -3 v -2 c 0 -1.65625 -1.34375 -3 -3 -3 z m 0 0"/>
|
||||
<path d="m 29 54.5 c 0 -1.933594 -1.566406 -3.5 -3.5 -3.5 s -3.5 1.566406 -3.5 3.5 v 13 c 0 1.933594 1.566406 3.5 3.5 3.5 s 3.5 -1.566406 3.5 -3.5 z m 0 0" fill="#3d3846"/>
|
||||
<path d="m 33 58 h -15 c -1.65625 0 -3 1.34375 -3 3 s 1.34375 3 3 3 h 15 c 1.65625 0 3 -1.34375 3 -3 s -1.34375 -3 -3 -3 z m 0 0" fill="#3d3846"/>
|
||||
<path d="m 71 109 c 0 -1.105469 0.894531 -2 2 -2 s 2 0.894531 2 2 s -0.894531 2 -2 2 s -2 -0.894531 -2 -2 z m 0 0"/>
|
||||
<path d="m 71.0625 108.5 c 0.226562 0.882812 1.023438 1.503906 1.9375 1.503906 s 1.710938 -0.621094 1.9375 -1.503906 c 0.195312 0.757812 -0.066406 1.558594 -0.671875 2.050781 c -0.605469 0.492188 -1.445313 0.585938 -2.144531 0.242188 c -0.855469 -0.414063 -1.296875 -1.375 -1.058594 -2.292969 z m 0 0" fill="#9141ac"/>
|
||||
<path d="m 66 107 h -10 c -1.105469 0 -2 0.894531 -2 2 s 0.894531 2 2 2 h 10 c 1.105469 0 2 -0.894531 2 -2 s -0.894531 -2 -2 -2 z m 0 0"/>
|
||||
<path d="m 54.0625 108.5 c -0.152344 0.597656 -0.023438 1.234375 0.355469 1.726562 c 0.378906 0.488282 0.964843 0.773438 1.582031 0.773438 h 10 c 0.617188 0 1.203125 -0.285156 1.582031 -0.773438 c 0.378907 -0.492187 0.511719 -1.128906 0.355469 -1.726562 c -0.226562 0.882812 -1.023438 1.5 -1.9375 1.5 h -10 c -0.914062 0 -1.710938 -0.617188 -1.9375 -1.5 z m 0 0" fill="#9141ac"/>
|
||||
<path d="m 110 74 h -14 c -0.550781 0 -1 0.449219 -1 1 s 0.449219 1 1 1 h 14 c 0.550781 0 1 -0.449219 1 -1 s -0.449219 -1 -1 -1 z m 0 5 h -14 c -0.550781 0 -1 0.449219 -1 1 s 0.449219 1 1 1 h 14 c 0.550781 0 1 -0.449219 1 -1 s -0.449219 -1 -1 -1 z m 0 5 h -14 c -0.550781 0 -1 0.449219 -1 1 s 0.449219 1 1 1 h 14 c 0.550781 0 1 -0.449219 1 -1 s -0.449219 -1 -1 -1 z m 0 0" fill="#613583"/>
|
||||
<path d="m 21.5 79 h -3 c -1.378906 0 -2.5 1.121094 -2.5 2.5 s 1.121094 2.5 2.5 2.5 h 3 c 1.378906 0 2.5 -1.121094 2.5 -2.5 s -1.121094 -2.5 -2.5 -2.5 z m 11 0 h -3 c -1.378906 0 -2.5 1.121094 -2.5 2.5 s 1.121094 2.5 2.5 2.5 h 3 c 1.378906 0 2.5 -1.121094 2.5 -2.5 s -1.121094 -2.5 -2.5 -2.5 z m 0 0"/>
|
||||
<path d="m 22 79 h -4 c -1.105469 0 -2 0.894531 -2 2 s 0.894531 2 2 2 h 4 c 1.105469 0 2 -0.894531 2 -2 s -0.894531 -2 -2 -2 z m 11 0 h -4 c -1.105469 0 -2 0.894531 -2 2 s 0.894531 2 2 2 h 4 c 1.105469 0 2 -0.894531 2 -2 s -0.894531 -2 -2 -2 z m 0 0" fill="#3d3846"/>
|
||||
<g clip-path="url(#j)" mask="url(#f)">
|
||||
<g clip-path="url(#i)" mask="url(#g)">
|
||||
<path d="m 128 80.640625 v 47.359375 h -128 v -47.359375 z m 0 0" fill="url(#h)"/>
|
||||
<path d="m 13.308594 80.640625 l 47.355468 47.359375 h 21.214844 l -47.359375 -47.359375 z m 42.421875 0 l 47.363281 47.359375 h 21.214844 l -47.363282 -47.359375 z m 42.429687 0 l 29.839844 29.839844 v -21.210938 l -8.628906 -8.628906 z m -98.160156 7.90625 v 21.214844 l 18.238281 18.238281 h 21.214844 z m 0 0"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 10 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M3 3C1.89543 3 1 3.89543 1 5V11C1 12.1046 1.89543 13 3 13H13C14.1046 13 15 12.1046 15 11V5C15 3.89543 14.1046 3 13 3H3ZM6 5C5.44772 5 5 5.44772 5 6V10C5 10.5523 5.44772 11 6 11H10C10.5523 11 11 10.5523 11 10V6C11 5.44772 10.5523 5 10 5H6ZM12 8C12 7.44772 12.4477 7 13 7C13.5523 7 14 7.44772 14 8C14 8.55228 13.5523 9 13 9C12.4477 9 12 8.55228 12 8ZM3 7C2.44772 7 2 7.44772 2 8C2 8.55228 2.44772 9 3 9C3.55228 9 4 8.55228 4 8C4 7.44772 3.55228 7 3 7Z" fill="black"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 618 B |
@@ -1,11 +1,13 @@
|
||||
application_id = 'hu.kramo.Cartridges'
|
||||
|
||||
scalable_dir = join_paths('hicolor', 'scalable', 'apps')
|
||||
install_data(
|
||||
join_paths(scalable_dir, ('@0@.svg').format(app_id)),
|
||||
join_paths(scalable_dir, ('@0@.svg').format(application_id)),
|
||||
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)),
|
||||
join_paths(symbolic_dir, ('@0@-symbolic.svg').format(application_id)),
|
||||
install_dir: join_paths(get_option('datadir'), 'icons', symbolic_dir)
|
||||
)
|
||||
|
||||
@@ -1 +1,15 @@
|
||||
<svg width="200" height="300" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="url(#a)" d="M0 0h200v300H0z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M63.125 113.125c-8.146 0-14.75 6.604-14.75 14.75v44.25c0 8.146 6.604 14.75 14.75 14.75h73.75c8.146 0 14.75-6.604 14.75-14.75v-44.25c0-8.146-6.604-14.75-14.75-14.75h-73.75Zm22.125 14.75a7.375 7.375 0 0 0-7.375 7.375v29.5a7.375 7.375 0 0 0 7.375 7.375h29.5a7.375 7.375 0 0 0 7.375-7.375v-29.5a7.375 7.375 0 0 0-7.375-7.375h-29.5ZM129.5 150a7.375 7.375 0 1 1 14.75 0 7.375 7.375 0 0 1-14.75 0Zm-66.375-7.375a7.375 7.375 0 1 0 0 14.75 7.375 7.375 0 0 0 0-14.75Z" fill="#fff"/><defs><linearGradient id="a" x1="100" y1="0" x2="100" y2="300" gradientUnits="userSpaceOnUse"><stop stop-color="#9A9996"/><stop offset="1" stop-color="#5E5C64"/></linearGradient></defs></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="300" fill="none">
|
||||
<path fill="url(#a)" d="M0 0h200v300H0z"/>
|
||||
<g fill="#241F31" clip-path="url(#b)">
|
||||
<path d="M49 169.125v15.937C49 193.853 56.147 201 64.938 201h3.187c7.047 0 12.75-5.703 12.75-12.75s5.703-12.75 12.75-12.75 12.75 5.703 12.75 12.75c.872 7.919 8.019 13.622 15.937 12.75 8.791 0 15.938-7.122 15.938-15.938v-15.937c0-14.095-11.405-25.5-25.5-25.5H74.5c-14.095 0-25.5 11.405-25.5 25.5Zm20.719-12.75h3.187c.872 0 1.594.722 1.594 1.594v4.781h4.781c.872 0 1.594.722 1.594 1.594v3.187c0 .897-.722 1.594-1.594 1.594H74.5v4.781c0 .897-.722 1.594-1.594 1.594H69.72a1.573 1.573 0 0 1-1.594-1.594v-4.781h-4.781a1.573 1.573 0 0 1-1.594-1.594v-3.187c0-.872.697-1.594 1.594-1.594h4.781v-4.781c0-.872.697-1.594 1.594-1.594Zm39.843 4.781a4.783 4.783 0 0 1 4.782 4.782 4.783 4.783 0 0 1-4.782 4.781 4.783 4.783 0 0 1-4.781-4.781 4.783 4.783 0 0 1 4.781-4.782Zm12.75 6.375a4.783 4.783 0 0 1 4.782 4.781 4.783 4.783 0 0 1-4.782 4.782 4.783 4.783 0 0 1-4.781-4.782 4.783 4.783 0 0 1 4.781-4.781ZM61.75 118.225c.05 10.558 8.666 19.075 19.225 19.025h50.8c10.609 0 19.225-8.616 19.225-19.225-.05-10.558-8.666-19.075-19.225-19.025h-50.8c-10.609 0-19.225 8.616-19.225 19.225Zm20.52-12.85h3.187c.872 0 1.594.722 1.594 1.594v4.781h4.781c.872 0 1.594.722 1.594 1.594v3.187c0 .897-.722 1.594-1.594 1.594h-4.781v4.781c0 .897-.722 1.594-1.594 1.594h-3.188a1.573 1.573 0 0 1-1.593-1.594v-4.781h-4.782a1.573 1.573 0 0 1-1.593-1.594v-3.187c0-.872.697-1.594 1.593-1.594h4.782v-4.781c0-.872.697-1.594 1.593-1.594Zm39.843 4.781a4.783 4.783 0 0 1 4.782 4.782 4.783 4.783 0 0 1-4.782 4.781 4.783 4.783 0 0 1-4.781-4.781 4.783 4.783 0 0 1 4.781-4.782Zm12.75.199a4.783 4.783 0 0 1 4.782 4.782 4.783 4.783 0 0 1-4.782 4.781 4.783 4.783 0 0 1-4.781-4.781 4.783 4.783 0 0 1 4.781-4.782Z"/>
|
||||
</g>
|
||||
<defs>
|
||||
<linearGradient id="a" x1="100" x2="100" y1="0" y2="300" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DEDDDA"/>
|
||||
<stop offset="1" stop-color="#9A9996"/>
|
||||
</linearGradient>
|
||||
<clipPath id="b">
|
||||
<path fill="#fff" d="M49 99h102v102H49z"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 831 B After Width: | Height: | Size: 2.1 KiB |
@@ -1 +0,0 @@
|
||||
<svg width="2" height="2" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="url(#a)" d="M0 0h2v2H0z"/><defs><linearGradient id="a" x1="1" y1="0" x2="1" y2="2" gradientUnits="userSpaceOnUse"><stop stop-color="#9A9996"/><stop offset="1" stop-color="#5E5C64"/></linearGradient></defs></svg>
|
||||
|
Before Width: | Height: | Size: 296 B |
@@ -3,19 +3,14 @@ blueprints = custom_target('blueprints',
|
||||
'gtk/help-overlay.blp',
|
||||
'gtk/window.blp',
|
||||
'gtk/game.blp',
|
||||
'gtk/preferences.blp',
|
||||
'gtk/details-window.blp'
|
||||
'gtk/preferences.blp'
|
||||
),
|
||||
output: '.',
|
||||
command: [find_program('blueprint-compiler'), 'batch-compile', '@OUTPUT@', '@CURRENT_SOURCE_DIR@', '@INPUT@'],
|
||||
)
|
||||
|
||||
gnome.compile_resources('cartridges',
|
||||
configure_file(
|
||||
input: 'cartridges.gresource.xml.in',
|
||||
output: 'cartridges.gresource.xml',
|
||||
configuration: conf
|
||||
),
|
||||
'cartridges.gresource.xml',
|
||||
gresource_bundle: true,
|
||||
install: true,
|
||||
install_dir: pkgdatadir,
|
||||
@@ -23,12 +18,8 @@ gnome.compile_resources('cartridges',
|
||||
)
|
||||
|
||||
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',
|
||||
input: 'hu.kramo.Cartridges.desktop.in',
|
||||
output: 'hu.kramo.Cartridges.desktop',
|
||||
type: 'desktop',
|
||||
po_dir: '../po',
|
||||
install: true,
|
||||
@@ -41,12 +32,8 @@ if desktop_utils.found()
|
||||
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',
|
||||
input: 'hu.kramo.Cartridges.metainfo.xml.in',
|
||||
output: 'hu.kramo.Cartridges.metainfo.xml',
|
||||
po_dir: '../po',
|
||||
install: true,
|
||||
install_dir: join_paths(get_option('datadir'), 'metainfo')
|
||||
@@ -57,12 +44,7 @@ if appstream_util.found()
|
||||
test('Validate appstream file', appstream_util, args: ['validate', appstream_file])
|
||||
endif
|
||||
|
||||
install_data(
|
||||
configure_file(
|
||||
input: 'hu.kramo.Cartridges.gschema.xml.in',
|
||||
output: app_id + '.gschema.xml',
|
||||
configuration: conf
|
||||
),
|
||||
install_data('hu.kramo.Cartridges.gschema.xml',
|
||||
install_dir: join_paths(get_option('datadir'), 'glib-2.0/schemas')
|
||||
)
|
||||
|
||||
|
||||
|
Before Width: | Height: | Size: 683 KiB After Width: | Height: | Size: 710 KiB |
|
Before Width: | Height: | Size: 142 KiB After Width: | Height: | Size: 142 KiB |
|
Before Width: | Height: | Size: 292 KiB After Width: | Height: | Size: 204 KiB |
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 28 KiB |
@@ -1,116 +0,0 @@
|
||||
# [game_id].json specification
|
||||
#### Version 2.0
|
||||
|
||||
Games are saved to disk in the form of [game_id].json files. These files contain all information about a game excluding its cover, which is handled separately.
|
||||
|
||||
## Location
|
||||
|
||||
The standard location for these files is `/cartridges/games/` under the data directory of the user (`XDG_DATA_HOME` on Linux).
|
||||
|
||||
## Contents
|
||||
|
||||
The following attributes are saved:
|
||||
|
||||
- [added](#added)
|
||||
- [executable](#executable)
|
||||
- [game_id](#game_id)
|
||||
- [source](#source)
|
||||
- [hidden](#hidden)
|
||||
- [last_played](#last_played)
|
||||
- [name](#name)
|
||||
- [developer](#developer)
|
||||
- [removed](#removed)
|
||||
- [blacklisted](#blacklisted)
|
||||
- [version](#version)
|
||||
|
||||
### added
|
||||
|
||||
The date at which the game was added.
|
||||
|
||||
Cartridges will set the value for itself. Don't touch it.
|
||||
|
||||
Stored as a Unix time stamp.
|
||||
|
||||
### executable
|
||||
|
||||
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 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).
|
||||
|
||||
### game_id
|
||||
|
||||
The unique ID of the game, prefixed with [`[source]_`](#source) to avoid clashes.
|
||||
|
||||
If the game's source uses a consistent internal ID system, use the ID from there. If not, use a hash function that always returns the same hash for the same game, even if some of its attributes change inside of the source.
|
||||
|
||||
Stored as a string.
|
||||
|
||||
### source
|
||||
|
||||
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`.
|
||||
|
||||
Stored as a string.
|
||||
|
||||
### hidden
|
||||
|
||||
Whether or not a game is hidden.
|
||||
|
||||
If the source provides a way of hiding games, take the value from there. Otherwise it should be set to false by default.
|
||||
|
||||
Stored as a boolean.
|
||||
|
||||
### last_played
|
||||
|
||||
The date at which the game was last launched from Cartridges.
|
||||
|
||||
Cartridges will set the value for itself. Don't touch it.
|
||||
|
||||
Stored as a Unix time stamp. 0 if the game hasn't been played yet.
|
||||
|
||||
### name
|
||||
|
||||
The title of the game.
|
||||
|
||||
Stored as a string.
|
||||
|
||||
### developer
|
||||
|
||||
The developer or publisher of the game.
|
||||
|
||||
If there are multiple developers or publishers, they should be joined with a comma and a space (`, `) into one string.
|
||||
|
||||
This is an optional attribute. If it can't be retrieved from the source, don't touch it.
|
||||
|
||||
Stored as a string.
|
||||
|
||||
### removed
|
||||
|
||||
Whether or not a game has been removed.
|
||||
|
||||
Cartridges will set the value for itself. Don't touch it.
|
||||
|
||||
Stored as a boolean.
|
||||
|
||||
### blacklisted
|
||||
|
||||
Whether or not a game is blacklisted. Blacklisting a game means it is going to still be imported, but not displayed to the user.
|
||||
|
||||
You should only blacklist a game based on information you pull from the web. This is to ensure that games which you would skip based on information online are still skipped even if the user loses their internet connection. If an entry is broken locally, just skip it.
|
||||
|
||||
The only reason to blacklist a game is if you find out that the locally cached entry is not actually a game (eg. Proton) or is otherwise invalid.
|
||||
|
||||
Unless the above criteria is met, don't touch the attribute.
|
||||
|
||||
Stored as a boolean.
|
||||
|
||||
### version
|
||||
|
||||
The version number of the [game_id].json specification.
|
||||
|
||||
Cartridges will set the value for itself. Don't touch it.
|
||||
|
||||
Stored as a number.
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"id" : "hu.kramo.Cartridges.Devel",
|
||||
"id" : "hu.kramo.Cartridges",
|
||||
"runtime" : "org.gnome.Platform",
|
||||
"runtime-version" : "44",
|
||||
"sdk" : "org.gnome.Sdk",
|
||||
@@ -11,13 +11,17 @@
|
||||
"--device=dri",
|
||||
"--socket=wayland",
|
||||
"--talk-name=org.freedesktop.Flatpak",
|
||||
"--filesystem=host:ro",
|
||||
"--filesystem=~/.steam/steam/:ro",
|
||||
"--filesystem=xdg-data/lutris/:ro",
|
||||
"--filesystem=xdg-cache/lutris/:ro",
|
||||
"--filesystem=xdg-config/heroic/:ro",
|
||||
"--filesystem=xdg-data/bottles/:ro",
|
||||
"--filesystem=xdg-config/itch/: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",
|
||||
"--filesystem=/var/lib/flatpak:ro"
|
||||
"--filesystem=~/.var/app/io.itch.itch/config/itch/:ro"
|
||||
],
|
||||
"cleanup" : [
|
||||
"/include",
|
||||
@@ -107,7 +111,7 @@
|
||||
{
|
||||
"type" : "git",
|
||||
"url" : "https://gitlab.gnome.org/jwestman/blueprint-compiler",
|
||||
"tag" : "v0.8.1"
|
||||
"tag" : "v0.6.0"
|
||||
}
|
||||
],
|
||||
"cleanup" : [
|
||||
@@ -118,13 +122,10 @@
|
||||
"name" : "cartridges",
|
||||
"builddir" : true,
|
||||
"buildsystem" : "meson",
|
||||
"config-opts": [
|
||||
"-Dprofile=development"
|
||||
],
|
||||
"sources" : [
|
||||
{
|
||||
"type" : "dir",
|
||||
"path" : ".."
|
||||
"path" : "."
|
||||
}
|
||||
]
|
||||
}
|
||||
26
meson.build
@@ -1,42 +1,18 @@
|
||||
project('cartridges',
|
||||
version: '2.0.1',
|
||||
version: '1.4.1',
|
||||
meson_version: '>= 0.59.0',
|
||||
default_options: [ 'warning_level=2', 'werror=false', ],
|
||||
)
|
||||
|
||||
i18n = import('i18n')
|
||||
gnome = import('gnome')
|
||||
python = import('python')
|
||||
|
||||
pkgdatadir = join_paths(get_option('prefix'), get_option('datadir'), meson.project_name())
|
||||
|
||||
profile = get_option('profile')
|
||||
if profile == 'development'
|
||||
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', 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('localedir', join_paths(get_option('prefix'), get_option('localedir')))
|
||||
conf.set('pkgdatadir', pkgdatadir)
|
||||
|
||||
subdir('data')
|
||||
subdir('src')
|
||||
subdir('po')
|
||||
|
||||
if host_machine.system() == 'windows'
|
||||
subdir('windows')
|
||||
endif
|
||||
|
||||
gnome.post_install(
|
||||
glib_compile_schemas: true,
|
||||
gtk_update_icon_cache: true,
|
||||
|
||||
@@ -1,9 +0,0 @@
|
||||
option(
|
||||
'profile',
|
||||
type: 'combo',
|
||||
choices: [
|
||||
'release',
|
||||
'development',
|
||||
],
|
||||
value: 'release'
|
||||
)
|
||||
@@ -13,9 +13,3 @@ ru
|
||||
ko
|
||||
de
|
||||
ro
|
||||
pt_BR
|
||||
fa
|
||||
pl
|
||||
sv
|
||||
tr
|
||||
el
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
data/hu.kramo.Cartridges.desktop.in
|
||||
data/hu.kramo.Cartridges.gschema.xml.in
|
||||
data/hu.kramo.Cartridges.gschema.xml
|
||||
data/hu.kramo.Cartridges.metainfo.xml.in
|
||||
|
||||
data/gtk/details-window.blp
|
||||
data/gtk/game.blp
|
||||
data/gtk/help-overlay.blp
|
||||
data/gtk/preferences.blp
|
||||
@@ -10,10 +9,10 @@ data/gtk/window.blp
|
||||
|
||||
src/main.py
|
||||
src/window.py
|
||||
src/details_window.py
|
||||
src/game.py
|
||||
src/preferences.py
|
||||
|
||||
src/utils/create_details_window.py
|
||||
src/utils/create_dialog.py
|
||||
src/importer/sources/source.py
|
||||
src/store/managers/sgdb_manager.py
|
||||
src/utils/importer.py
|
||||
src/utils/steamgriddb.py
|
||||
558
po/ar.po
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: cartridges\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-05 14:36+0200\n"
|
||||
"PO-Revision-Date: 2023-07-04 17:29+0000\n"
|
||||
"POT-Creation-Date: 2023-04-11 23:33+0200\n"
|
||||
"PO-Revision-Date: 2023-04-14 12:29+0000\n"
|
||||
"Last-Translator: Ali Aljishi <ahj696@hotmail.com>\n"
|
||||
"Language-Team: Arabic <https://hosted.weblate.org/projects/cartridges/"
|
||||
"cartridges/ar/>\n"
|
||||
@@ -18,11 +18,11 @@ 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.0-dev\n"
|
||||
"X-Generator: Weblate 4.17-dev\n"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:3
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:47
|
||||
#: src/main.py:162
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:29
|
||||
#: src/main.py:119
|
||||
msgid "Cartridges"
|
||||
msgstr "خراطيش"
|
||||
|
||||
@@ -35,10 +35,6 @@ msgstr "مشغِّل ألعاب"
|
||||
msgid "Launch all your games"
|
||||
msgstr "شغِّل كلَّ ألعابك"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:11
|
||||
msgid "gaming;launcher;steam;lutris;heroic;bottles;itch;"
|
||||
msgstr "لعب;مشغل;ستيم;لوترس;هروك;قوارير;إتش;هيرويك;بوتلز;"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:9
|
||||
msgid ""
|
||||
"Cartridges is a simple game launcher for all of your games. It has support "
|
||||
@@ -50,78 +46,43 @@ msgstr ""
|
||||
"وبرامج أخرى، وذلك دون تسجيل دخول. ولك ترتيب وإخفاء الألعاب فيه كيفما شئت، "
|
||||
"وكذلك تستطيع منه تنزيل غُلُف الألعاب من SteamGridDB."
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:30
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:22
|
||||
msgid "Library"
|
||||
msgstr "المكتبة"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 src/details_window.py:67
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:26
|
||||
#: src/utils/create_details_window.py:87
|
||||
msgid "Edit Game Details"
|
||||
msgstr "حرِّر تفاصيل اللعبة"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:38 data/gtk/window.blp:71
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:30 data/gtk/window.blp:51
|
||||
msgid "Game Details"
|
||||
msgstr "تفاصيل اللعبة"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:42 data/gtk/window.blp:416
|
||||
#: src/details_window.py:239
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 data/gtk/window.blp:402
|
||||
#: src/utils/importer.py:94 src/utils/importer.py:123 src/utils/importer.py:148
|
||||
#: src/utils/steamgriddb.py:116
|
||||
msgid "Preferences"
|
||||
msgstr "التفضيلات"
|
||||
|
||||
#: data/gtk/details-window.blp:25
|
||||
msgid "Cancel"
|
||||
msgstr "ألغِ"
|
||||
|
||||
#: data/gtk/details-window.blp:57
|
||||
msgid "New Cover"
|
||||
msgstr "غلاف جديد"
|
||||
|
||||
#: data/gtk/details-window.blp:75
|
||||
msgid "Delete Cover"
|
||||
msgstr "احذف الغلاف"
|
||||
|
||||
#: data/gtk/details-window.blp:101 data/gtk/details-window.blp:106
|
||||
#: data/gtk/game.blp:80
|
||||
#: data/gtk/game.blp:67 src/utils/create_details_window.py:129
|
||||
msgid "Title"
|
||||
msgstr "العنوان"
|
||||
|
||||
#: data/gtk/details-window.blp:102
|
||||
msgid "The title of the game"
|
||||
msgstr "عنوان اللعبة"
|
||||
|
||||
#: 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-window.blp:124
|
||||
msgid "File to open or command to run when launching the game"
|
||||
msgstr "الملفُّ المفتوح أو الأمر المشغَّل عند بدء اللعبة"
|
||||
|
||||
#: data/gtk/details-window.blp:130
|
||||
msgid "More Info"
|
||||
msgstr "معلومات أكثر"
|
||||
|
||||
#: data/gtk/game.blp:102 data/gtk/game.blp:121 data/gtk/window.blp:195
|
||||
#: data/gtk/game.blp:89 data/gtk/game.blp:108 data/gtk/window.blp:170
|
||||
msgid "Edit"
|
||||
msgstr "حرِّر"
|
||||
|
||||
#: data/gtk/game.blp:107 src/window.py:171
|
||||
#: data/gtk/game.blp:94 src/window.py:286
|
||||
msgid "Hide"
|
||||
msgstr "أخفِ"
|
||||
|
||||
#: data/gtk/game.blp:112 data/gtk/game.blp:131 data/gtk/preferences.blp:56
|
||||
#: data/gtk/window.blp:209
|
||||
#: data/gtk/game.blp:99 data/gtk/game.blp:118 data/gtk/preferences.blp:56
|
||||
#: data/gtk/window.blp:186
|
||||
msgid "Remove"
|
||||
msgstr "أزل"
|
||||
|
||||
#: data/gtk/game.blp:126 src/window.py:173
|
||||
#: data/gtk/game.blp:113 src/window.py:283
|
||||
msgid "Unhide"
|
||||
msgstr "اكشف"
|
||||
|
||||
@@ -133,8 +94,8 @@ msgstr "عام"
|
||||
msgid "Quit"
|
||||
msgstr "أنهِ"
|
||||
|
||||
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:217 data/gtk/window.blp:257
|
||||
#: data/gtk/window.blp:323
|
||||
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:205 data/gtk/window.blp:249
|
||||
#: data/gtk/window.blp:312
|
||||
msgid "Search"
|
||||
msgstr "ابحث"
|
||||
|
||||
@@ -146,7 +107,8 @@ msgstr "أظهر التفضيلات"
|
||||
msgid "Shortcuts"
|
||||
msgstr "الاختصارات"
|
||||
|
||||
#: data/gtk/help-overlay.blp:34 src/game.py:102 src/preferences.py:112
|
||||
#: data/gtk/help-overlay.blp:34 src/main.py:186 src/main.py:242
|
||||
#: src/preferences.py:133
|
||||
msgid "Undo"
|
||||
msgstr "تراجع"
|
||||
|
||||
@@ -174,7 +136,7 @@ msgstr "أظهر الألعاب المخفية"
|
||||
msgid "Remove game"
|
||||
msgstr "أزل اللعبة"
|
||||
|
||||
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:268
|
||||
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:235
|
||||
msgid "Behavior"
|
||||
msgstr "السلوك"
|
||||
|
||||
@@ -190,7 +152,7 @@ msgstr "تبدأ صورة الغلاف اللعبة"
|
||||
msgid "Swaps the behavior of the cover image and the play button"
|
||||
msgstr "يبدِّل سلوك صورة الغلاف وزرِّ «العب»"
|
||||
|
||||
#: data/gtk/preferences.blp:36 src/details_window.py:81
|
||||
#: data/gtk/preferences.blp:36 src/utils/create_details_window.py:101
|
||||
msgid "Images"
|
||||
msgstr "الصور"
|
||||
|
||||
@@ -210,241 +172,342 @@ msgstr "منطقة خطر"
|
||||
msgid "Remove All Games"
|
||||
msgstr "أزل كلَّ الألعاب"
|
||||
|
||||
#: data/gtk/preferences.blp:85 data/gtk/window.blp:27 data/gtk/window.blp:442
|
||||
#: data/gtk/preferences.blp:69 data/gtk/window.blp:427
|
||||
msgid "Import"
|
||||
msgstr "استورد"
|
||||
|
||||
#: data/gtk/preferences.blp:89
|
||||
#: data/gtk/preferences.blp:73
|
||||
msgid "Sources"
|
||||
msgstr "المصادر"
|
||||
|
||||
#: data/gtk/preferences.blp:92
|
||||
#: data/gtk/preferences.blp:76
|
||||
msgid "Steam"
|
||||
msgstr "ستيم"
|
||||
|
||||
#: data/gtk/preferences.blp:96 data/gtk/preferences.blp:110
|
||||
#: data/gtk/preferences.blp:151 data/gtk/preferences.blp:192
|
||||
#: data/gtk/preferences.blp:206 data/gtk/preferences.blp:220
|
||||
#: data/gtk/preferences.blp:234
|
||||
msgid "Install Location"
|
||||
msgstr "موضع التثبيت"
|
||||
#: data/gtk/preferences.blp:80
|
||||
msgid "Steam Install Location"
|
||||
msgstr "موضع تثبيت ستيم"
|
||||
|
||||
#: data/gtk/preferences.blp:106
|
||||
#: data/gtk/preferences.blp:81 data/gtk/preferences.blp:119
|
||||
#: data/gtk/preferences.blp:153 data/gtk/preferences.blp:195
|
||||
#: data/gtk/preferences.blp:210
|
||||
msgid "Directory to use when importing games"
|
||||
msgstr "المجلَّد المستخدم عند استيراد الألعاب"
|
||||
|
||||
#: data/gtk/preferences.blp:89 src/utils/importer.py:143
|
||||
msgid "Extra Steam Libraries"
|
||||
msgstr "مكتبات ستيم الإضافية"
|
||||
|
||||
#: data/gtk/preferences.blp:90
|
||||
msgid "Select other directories where you have Steam games installed"
|
||||
msgstr "حدِّد المجلَّدات الأخرى التي ثُبِّتت فيها ألعاب ستيم"
|
||||
|
||||
#: data/gtk/preferences.blp:96
|
||||
msgid "Clear"
|
||||
msgstr "أمحُ"
|
||||
|
||||
#: data/gtk/preferences.blp:114
|
||||
msgid "Lutris"
|
||||
msgstr "لوترس"
|
||||
|
||||
#: data/gtk/preferences.blp:119
|
||||
msgid "Cache Location"
|
||||
msgstr "موضع الذاكرة المؤقتة"
|
||||
#: data/gtk/preferences.blp:118
|
||||
msgid "Lutris Install Location"
|
||||
msgstr "موضع تثبيت لوترس"
|
||||
|
||||
#: data/gtk/preferences.blp:128
|
||||
msgid "Lutris Cache Location"
|
||||
msgstr "موضع ذكرة لوترس المؤقَّتة"
|
||||
|
||||
#: data/gtk/preferences.blp:129
|
||||
msgid "Directory to use when importing game covers"
|
||||
msgstr "المجلَّد المستخدم عند استيراد غُلُف الألعاب"
|
||||
|
||||
#: data/gtk/preferences.blp:138
|
||||
msgid "Import Steam Games"
|
||||
msgstr "استورد ألعابًا من ستيم"
|
||||
|
||||
#: data/gtk/preferences.blp:137
|
||||
msgid "Import Flatpak Games"
|
||||
msgstr "استورد ألعاب فلاتباك"
|
||||
|
||||
#: data/gtk/preferences.blp:147
|
||||
#: data/gtk/preferences.blp:148
|
||||
msgid "Heroic"
|
||||
msgstr "هِرُوِك"
|
||||
|
||||
#: data/gtk/preferences.blp:160
|
||||
#: data/gtk/preferences.blp:152
|
||||
msgid "Heroic Install Location"
|
||||
msgstr "موضع تثبيت هِرُوِك"
|
||||
|
||||
#: data/gtk/preferences.blp:162
|
||||
msgid "Import Epic Games"
|
||||
msgstr "استورد ألعاب أَبِك"
|
||||
|
||||
#: data/gtk/preferences.blp:169
|
||||
#: data/gtk/preferences.blp:171
|
||||
msgid "Import GOG Games"
|
||||
msgstr "استورد ألعاب جيأوجي"
|
||||
|
||||
#: data/gtk/preferences.blp:178
|
||||
#: data/gtk/preferences.blp:180
|
||||
msgid "Import Sideloaded Games"
|
||||
msgstr "استورد ألعابًا مثبَّتةً بغير متجر"
|
||||
|
||||
#: data/gtk/preferences.blp:188
|
||||
#: data/gtk/preferences.blp:190
|
||||
msgid "Bottles"
|
||||
msgstr "قوارير"
|
||||
|
||||
#: data/gtk/preferences.blp:202
|
||||
#: data/gtk/preferences.blp:194
|
||||
msgid "Bottles Install Location"
|
||||
msgstr "موضع تثبيت قوارير"
|
||||
|
||||
#: data/gtk/preferences.blp:205
|
||||
msgid "itch"
|
||||
msgstr "إتش"
|
||||
|
||||
#: data/gtk/preferences.blp:216
|
||||
msgid "Legendary"
|
||||
msgstr "لجندري"
|
||||
#: data/gtk/preferences.blp:209
|
||||
msgid "itch Install Location"
|
||||
msgstr "موضع تثبيت إتش"
|
||||
|
||||
#: data/gtk/preferences.blp:230
|
||||
msgid "Flatpak"
|
||||
msgstr "فلاتباك"
|
||||
|
||||
#: data/gtk/preferences.blp:243
|
||||
msgid "Import Game Launchers"
|
||||
msgstr "استورد مشغِّلات ألعاب"
|
||||
|
||||
#: data/gtk/preferences.blp:256
|
||||
#: data/gtk/preferences.blp:223
|
||||
msgid "SteamGridDB"
|
||||
msgstr "SteamGridDB"
|
||||
|
||||
#: data/gtk/preferences.blp:260
|
||||
#: data/gtk/preferences.blp:227
|
||||
msgid "Authentication"
|
||||
msgstr "الاستيثاق"
|
||||
|
||||
#: data/gtk/preferences.blp:263
|
||||
#: data/gtk/preferences.blp:230
|
||||
msgid "API Key"
|
||||
msgstr "مفتاح واجهة البرمجة"
|
||||
|
||||
#: data/gtk/preferences.blp:271
|
||||
#: data/gtk/preferences.blp:238
|
||||
msgid "Use SteamGridDB"
|
||||
msgstr "استخدم SteamGridDB"
|
||||
|
||||
#: data/gtk/preferences.blp:272
|
||||
#: data/gtk/preferences.blp:239
|
||||
msgid "Download images when adding or importing games"
|
||||
msgstr "نزِّل الصور حينما تنزِّل أو تستورد الألعاب"
|
||||
|
||||
#: data/gtk/preferences.blp:281
|
||||
#: data/gtk/preferences.blp:248
|
||||
msgid "Prefer Over Official Images"
|
||||
msgstr "فضِّلها على الصور الرسمية"
|
||||
|
||||
#: data/gtk/preferences.blp:290
|
||||
#: data/gtk/preferences.blp:257
|
||||
msgid "Prefer Animated Images"
|
||||
msgstr "فضِّل الصور المتحرِّكة"
|
||||
|
||||
#: data/gtk/window.blp:6 data/gtk/window.blp:14
|
||||
#: data/gtk/window.blp:6 src/utils/importer.py:91
|
||||
msgid "No Games Found"
|
||||
msgstr "لم يُعثر على ألعاب"
|
||||
|
||||
#: data/gtk/window.blp:7 data/gtk/window.blp:15
|
||||
#: data/gtk/window.blp:7
|
||||
msgid "Try a different search."
|
||||
msgstr "جرِّب بحثًا آخر."
|
||||
|
||||
#: data/gtk/window.blp:21
|
||||
#: data/gtk/window.blp:14
|
||||
msgid "No Games"
|
||||
msgstr "لا توجد ألعاب"
|
||||
|
||||
#: data/gtk/window.blp:22
|
||||
#: data/gtk/window.blp:15
|
||||
msgid "Use the + button to add games."
|
||||
msgstr "استخدم زرَّ + لتضيف ألعابًا."
|
||||
|
||||
#: data/gtk/window.blp:40
|
||||
#: data/gtk/window.blp:22
|
||||
msgid "No Hidden Games"
|
||||
msgstr "لا توجد ألعاب مخفية"
|
||||
|
||||
#: data/gtk/window.blp:41
|
||||
#: data/gtk/window.blp:23
|
||||
msgid "Games you hide will appear here."
|
||||
msgstr "هنا يظهر ما أخفيت من ألعاب."
|
||||
|
||||
#: data/gtk/window.blp:64 data/gtk/window.blp:304
|
||||
#: data/gtk/window.blp:44 data/gtk/window.blp:293
|
||||
msgid "Back"
|
||||
msgstr "عد"
|
||||
|
||||
#: data/gtk/window.blp:121
|
||||
#: data/gtk/window.blp:100
|
||||
msgid "Game Title"
|
||||
msgstr "عنوان اللعبة"
|
||||
|
||||
#: data/gtk/window.blp:176
|
||||
#: data/gtk/window.blp:151 src/game.py:158
|
||||
msgid "Play"
|
||||
msgstr "العب"
|
||||
|
||||
#: data/gtk/window.blp:243 data/gtk/window.blp:435
|
||||
#: data/gtk/window.blp:235 data/gtk/window.blp:421
|
||||
msgid "Add Game"
|
||||
msgstr "أضف لعبةً"
|
||||
|
||||
#: data/gtk/window.blp:250 data/gtk/window.blp:316
|
||||
#: data/gtk/window.blp:242 data/gtk/window.blp:305
|
||||
msgid "Main Menu"
|
||||
msgstr "القائمة الرئيسة"
|
||||
|
||||
#: data/gtk/window.blp:311
|
||||
#: data/gtk/window.blp:300
|
||||
msgid "Hidden Games"
|
||||
msgstr "الألعاب المخفية"
|
||||
|
||||
#: data/gtk/window.blp:374
|
||||
#: data/gtk/window.blp:360
|
||||
msgid "Sort"
|
||||
msgstr "رتِّب"
|
||||
|
||||
#: data/gtk/window.blp:377
|
||||
#: data/gtk/window.blp:363
|
||||
msgid "A-Z"
|
||||
msgstr "أ-ي"
|
||||
|
||||
#: data/gtk/window.blp:383
|
||||
#: data/gtk/window.blp:369
|
||||
msgid "Z-A"
|
||||
msgstr "ي-أ"
|
||||
|
||||
#: data/gtk/window.blp:389
|
||||
#: data/gtk/window.blp:375
|
||||
msgid "Newest"
|
||||
msgstr "الأجدد"
|
||||
|
||||
#: data/gtk/window.blp:395
|
||||
#: data/gtk/window.blp:381
|
||||
msgid "Oldest"
|
||||
msgstr "الأقدم"
|
||||
|
||||
#: data/gtk/window.blp:401
|
||||
#: data/gtk/window.blp:387
|
||||
msgid "Last Played"
|
||||
msgstr "لُعبت آخر مرَّة"
|
||||
|
||||
#: data/gtk/window.blp:408
|
||||
#: data/gtk/window.blp:394
|
||||
msgid "Show Hidden"
|
||||
msgstr "أظهر ما أخفي"
|
||||
|
||||
#: data/gtk/window.blp:421
|
||||
#: data/gtk/window.blp:407
|
||||
msgid "Keyboard Shortcuts"
|
||||
msgstr "اختصارات لوحة المفاتيح"
|
||||
|
||||
#: data/gtk/window.blp:426
|
||||
#: data/gtk/window.blp:412
|
||||
msgid "About Cartridges"
|
||||
msgstr "عن «خراطيش»"
|
||||
|
||||
#. Translators: Replace this with your name for it to show up in the about window
|
||||
#: src/main.py:180
|
||||
#: src/main.py:137
|
||||
msgid "translator_credits"
|
||||
msgstr "Ali Aljishi <ahj696@hotmail.com>"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:164
|
||||
msgid "{} launched"
|
||||
msgstr "بُدئت {}"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:182
|
||||
msgid "{} hidden"
|
||||
msgstr "أٌخفيت {}"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:185
|
||||
msgid "{} unhidden"
|
||||
msgstr "أٌظهرت {}"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:241
|
||||
msgid "{} removed"
|
||||
msgstr "أزيلت {}"
|
||||
|
||||
#: src/window.py:262
|
||||
msgid "Today"
|
||||
msgstr "اليوم"
|
||||
|
||||
#: src/window.py:264
|
||||
msgid "Yesterday"
|
||||
msgstr "أمس"
|
||||
|
||||
#. The variable is the date when the game was added
|
||||
#: src/window.py:194
|
||||
#: src/window.py:310
|
||||
msgid "Added: {}"
|
||||
msgstr "أضيفت في: {}"
|
||||
|
||||
#: src/window.py:197
|
||||
#: src/window.py:315
|
||||
msgid "Never"
|
||||
msgstr "أبدًا"
|
||||
|
||||
#. The variable is the date when the game was last played
|
||||
#: src/window.py:201
|
||||
#: src/window.py:319
|
||||
msgid "Last played: {}"
|
||||
msgstr "لُعبت آخر مرَّة في: {}"
|
||||
|
||||
#: src/details_window.py:72
|
||||
msgid "Apply"
|
||||
msgstr "طبِّق"
|
||||
#: src/game.py:156
|
||||
msgid "Details"
|
||||
msgstr "التفاصيل"
|
||||
|
||||
#: src/details_window.py:78
|
||||
#: src/preferences.py:54
|
||||
msgid "Installation Not Found"
|
||||
msgstr "لم يُعثر على التثبيت"
|
||||
|
||||
#. The variable is the name of the game launcher
|
||||
#: src/preferences.py:56
|
||||
msgid "Select the {} configuration directory."
|
||||
msgstr "حدِّد مجلَّد ضبط {}."
|
||||
|
||||
#. The variable is the name of the game launcher
|
||||
#: src/preferences.py:59
|
||||
msgid "Select the {} data directory."
|
||||
msgstr "حدِّد مجلَّد بيانات {}."
|
||||
|
||||
#: src/preferences.py:61 src/preferences.py:240
|
||||
msgid "Set Location"
|
||||
msgstr "عيِّن الموضع"
|
||||
|
||||
#: src/preferences.py:132
|
||||
msgid "All games removed"
|
||||
msgstr "أُزيلت كلُّ الألعاب"
|
||||
|
||||
#: src/preferences.py:237
|
||||
msgid "Cache Not Found"
|
||||
msgstr "لم يُعثر على الذاكرة المؤقَّتة"
|
||||
|
||||
#: src/preferences.py:238
|
||||
msgid "Select the Lutris cache directory."
|
||||
msgstr "حدِّد مجلَّد ذاكرة لوترس المؤقَّتة."
|
||||
|
||||
#: src/preferences.py:344
|
||||
msgid ""
|
||||
"An API key is required to use SteamGridDB. You can generate one {}here{}."
|
||||
msgstr ""
|
||||
"تحتاج مفتاح واجهة برمجة حال ما أردت استخدام SteamGridDB، {}هنا تولِّده{}."
|
||||
|
||||
#: src/utils/create_details_window.py:81
|
||||
msgid "Add New Game"
|
||||
msgstr "أضف لعبةً جديدةً"
|
||||
|
||||
#: src/details_window.py:79
|
||||
#: src/utils/create_details_window.py:85
|
||||
msgid "Confirm"
|
||||
msgstr "أكِّد"
|
||||
|
||||
#: src/utils/create_details_window.py:96
|
||||
msgid "Apply"
|
||||
msgstr "طبِّق"
|
||||
|
||||
#: src/utils/create_details_window.py:130
|
||||
msgid "The title of the game"
|
||||
msgstr "عنوان اللعبة"
|
||||
|
||||
#: src/utils/create_details_window.py:135
|
||||
msgid "Developer"
|
||||
msgstr "المطوِّر"
|
||||
|
||||
#: src/utils/create_details_window.py:136
|
||||
msgid "The developer or publisher (optional)"
|
||||
msgstr "المطوِّر أو الناشر (اختياري)"
|
||||
|
||||
#. Translate this string as you would translate "file"
|
||||
#: src/details_window.py:92
|
||||
#: src/utils/create_details_window.py:147
|
||||
msgid "file.txt"
|
||||
msgstr "ملف.txt"
|
||||
|
||||
#. As in software
|
||||
#: src/details_window.py:94
|
||||
#: src/utils/create_details_window.py:149
|
||||
msgid "program"
|
||||
msgstr "البرنامج"
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:99 src/details_window.py:101
|
||||
#: src/utils/create_details_window.py:154
|
||||
#: src/utils/create_details_window.py:156
|
||||
msgid "C:\\path\\to\\{}"
|
||||
msgstr "C:\\المسار\\إلى\\{}"
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:105 src/details_window.py:107
|
||||
#: src/utils/create_details_window.py:160
|
||||
#: src/utils/create_details_window.py:162
|
||||
msgid "/path/to/{}"
|
||||
msgstr "/المسار/إلى/{}"
|
||||
|
||||
#: src/details_window.py:112
|
||||
#: src/utils/create_details_window.py:166
|
||||
msgid ""
|
||||
"To launch the executable \"{}\", use the command:\n"
|
||||
"\n"
|
||||
@@ -466,177 +529,82 @@ msgstr ""
|
||||
"\n"
|
||||
"ولا تنسَ إحاطة المسار بعلامتي تنصيص مزدوجتين حالما تضمَّن مسافات!"
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:153
|
||||
#: src/utils/create_details_window.py:189
|
||||
msgid "Executable"
|
||||
msgstr "ملفُّ التنفيذ"
|
||||
|
||||
#: src/utils/create_details_window.py:190
|
||||
msgid "File to open or command to run when launching the game"
|
||||
msgstr "الملفُّ المفتوح أو الأمر المشغَّل عند بدء اللعبة"
|
||||
|
||||
#: src/utils/create_details_window.py:202
|
||||
msgid "Cancel"
|
||||
msgstr "ألغِ"
|
||||
|
||||
#: src/utils/create_details_window.py:259
|
||||
#: src/utils/create_details_window.py:269
|
||||
#: src/utils/create_details_window.py:275
|
||||
msgid "Couldn't Add Game"
|
||||
msgstr "تعذَّرت إضافة اللعبة"
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:181
|
||||
msgid "Game title cannot be empty."
|
||||
msgstr "لا يجوز كون عنوان اللعبة فارغًا."
|
||||
|
||||
#: src/details_window.py:153 src/details_window.py:189
|
||||
msgid "Executable cannot be empty."
|
||||
msgstr "لا يجوز كون ملفِّ التنفيذ فارغًا."
|
||||
|
||||
#: src/details_window.py:180 src/details_window.py:188
|
||||
#: src/utils/create_details_window.py:261
|
||||
#: src/utils/create_details_window.py:299
|
||||
#: src/utils/create_details_window.py:307
|
||||
msgid "Couldn't Apply Preferences"
|
||||
msgstr "تعذَّر تطبيق التفضيلات"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:138
|
||||
msgid "{} launched"
|
||||
msgstr "بُدئت {}"
|
||||
#: src/utils/create_details_window.py:269
|
||||
#: src/utils/create_details_window.py:300
|
||||
msgid "Game title cannot be empty."
|
||||
msgstr "لا يجوز كون عنوان اللعبة فارغًا."
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:152
|
||||
msgid "{} hidden"
|
||||
msgstr "أٌخفيت {}"
|
||||
|
||||
#: src/game.py:152
|
||||
msgid "{} unhidden"
|
||||
msgstr "أٌظهرت {}"
|
||||
|
||||
#: src/game.py:169
|
||||
msgid "{} removed"
|
||||
msgstr "أزيلت {}"
|
||||
|
||||
#: src/preferences.py:111
|
||||
msgid "All games removed"
|
||||
msgstr "أُزيلت كلُّ الألعاب"
|
||||
|
||||
#: src/preferences.py:159
|
||||
msgid ""
|
||||
"An API key is required to use SteamGridDB. You can generate one {}here{}."
|
||||
msgstr ""
|
||||
"تحتاج مفتاح واجهة برمجة حال ما أردت استخدام SteamGridDB، {}هنا تولِّده{}."
|
||||
|
||||
#: src/preferences.py:284
|
||||
msgid "Installation Not Found"
|
||||
msgstr "لم يُعثر على التثبيت"
|
||||
|
||||
#: src/preferences.py:286
|
||||
msgid "Select a valid directory."
|
||||
msgstr "حدِّد مجلَّدًا صالحًا."
|
||||
|
||||
#: src/preferences.py:348
|
||||
msgid "Invalid Directory"
|
||||
msgstr "مجلَّد غير صالح"
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:352
|
||||
msgid "Select the {} cache directory."
|
||||
msgstr "حدِّد مجلَّد ذاكرة {} المؤقتة."
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:355
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} installation directory."
|
||||
msgid "Select the {} configuration directory."
|
||||
msgstr "حدِّد مجلَّد تثبيت {}."
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:358
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} cache directory."
|
||||
msgid "Select the {} data directory."
|
||||
msgstr "حدِّد مجلَّد ذاكرة {} المؤقتة."
|
||||
|
||||
#: src/preferences.py:364
|
||||
msgid "Set Location"
|
||||
msgstr "عيِّن الموضع"
|
||||
#: src/utils/create_details_window.py:275
|
||||
#: src/utils/create_details_window.py:308
|
||||
msgid "Executable cannot be empty."
|
||||
msgstr "لا يجوز كون ملفِّ التنفيذ فارغًا."
|
||||
|
||||
#: src/utils/create_dialog.py:25
|
||||
msgid "Dismiss"
|
||||
msgstr "تجاهل"
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:47
|
||||
msgid "Couldn't Authenticate SteamGridDB"
|
||||
msgstr "تعذَّر استيثاق SteamGridDB"
|
||||
#: src/utils/importer.py:42
|
||||
msgid "Importing Games…"
|
||||
msgstr "تُستورد الألعاب…"
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:48
|
||||
msgid "Verify your API key in preferences"
|
||||
msgstr "أكِّد مفتاح واجهة البرمجة في التفضيلات"
|
||||
#: src/utils/importer.py:77
|
||||
msgid "Importing Covers…"
|
||||
msgstr "تُستورد الغُلُف…"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "The Steam directory cannot be found."
|
||||
#~ msgid "Directory not Valid"
|
||||
#~ msgstr "تعذَّر العثور على مجلَّد ستيم."
|
||||
#: src/utils/importer.py:92
|
||||
msgid "No new games were found on your system."
|
||||
msgstr "لم يُعثر على ألعاب جديدة في نظامك."
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Confirm"
|
||||
#~ msgid "Configuration"
|
||||
#~ msgstr "أكِّد"
|
||||
#: src/utils/importer.py:100
|
||||
msgid "Game Imported"
|
||||
msgstr "اُستوردت اللعبة"
|
||||
|
||||
#~ msgid "Steam Install Location"
|
||||
#~ msgstr "موضع تثبيت ستيم"
|
||||
#: src/utils/importer.py:101
|
||||
msgid "Successfully imported 1 game."
|
||||
msgstr "اُستوردت لعبة بنجاح."
|
||||
|
||||
#~ msgid "Lutris Install Location"
|
||||
#~ msgstr "موضع تثبيت لوترس"
|
||||
#: src/utils/importer.py:107
|
||||
msgid "Games Imported"
|
||||
msgstr "اُستوردت الألعاب"
|
||||
|
||||
#~ msgid "Heroic Install Location"
|
||||
#~ msgstr "موضع تثبيت هِرُوِك"
|
||||
#. The variable is the number of games
|
||||
#: src/utils/importer.py:109
|
||||
msgid "Successfully imported {} games."
|
||||
msgstr "اُستوردت {} لعبة بنجاح."
|
||||
|
||||
#~ msgid "Bottles Install Location"
|
||||
#~ msgstr "موضع تثبيت قوارير"
|
||||
#: src/utils/importer.py:120 src/utils/steamgriddb.py:113
|
||||
msgid "Couldn't Connect to SteamGridDB"
|
||||
msgstr "تعذَّر الاتصال ب SteamGridDB"
|
||||
|
||||
#~ msgid "Today"
|
||||
#~ msgstr "اليوم"
|
||||
|
||||
#~ msgid "Yesterday"
|
||||
#~ msgstr "أمس"
|
||||
|
||||
#~ msgid "Cache Not Found"
|
||||
#~ msgstr "لم يُعثر على الذاكرة المؤقَّتة"
|
||||
|
||||
#~ msgid "Select the Lutris cache 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 "المجلَّد المستخدم عند استيراد الألعاب"
|
||||
|
||||
#~ msgid "Extra Steam Libraries"
|
||||
#~ msgstr "مكتبات ستيم الإضافية"
|
||||
|
||||
#~ msgid "Select other directories where you have Steam games installed"
|
||||
#~ msgstr "حدِّد المجلَّدات الأخرى التي ثُبِّتت فيها ألعاب ستيم"
|
||||
|
||||
#~ msgid "Clear"
|
||||
#~ msgstr "أمحُ"
|
||||
|
||||
#~ msgid "Directory to use when importing game covers"
|
||||
#~ msgstr "المجلَّد المستخدم عند استيراد غُلُف الألعاب"
|
||||
|
||||
#~ msgid "Details"
|
||||
#~ msgstr "التفاصيل"
|
||||
|
||||
#~ msgid "No new games were found on your system."
|
||||
#~ msgstr "لم يُعثر على ألعاب جديدة في نظامك."
|
||||
|
||||
#~ msgid "Successfully imported 1 game."
|
||||
#~ msgstr "اُستوردت لعبة بنجاح."
|
||||
|
||||
#~ msgid "Successfully imported {} games."
|
||||
#~ msgstr "اُستوردت {} لعبة بنجاح."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Looks like you have multiple Steam libraries. Would you like to add them "
|
||||
#~ "in preferences?"
|
||||
#~ msgstr "يبدو أن عندك أكثر من مكتبة ستيم. أتريد إضافتهم في التفضيلات؟"
|
||||
#: src/utils/importer.py:145
|
||||
msgid ""
|
||||
"Looks like you have multiple Steam libraries. Would you like to add them in "
|
||||
"preferences?"
|
||||
msgstr "يبدو أن عندك أكثر من مكتبة ستيم. أتريد إضافتهم في التفضيلات؟"
|
||||
|
||||
#~ msgid "Launch your games"
|
||||
#~ msgstr "شغِّل ألعابك"
|
||||
@@ -658,16 +626,19 @@ msgstr "أكِّد مفتاح واجهة البرمجة في التفضيلات"
|
||||
#~ msgstr "/path/to/{file_name}"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "General"
|
||||
#~ msgctxt "shortcuts window"
|
||||
#~ msgid "General"
|
||||
#~ msgstr "عام"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Search"
|
||||
#~ msgctxt "shortcuts window"
|
||||
#~ msgid "Search"
|
||||
#~ msgstr "ابحث"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Undo"
|
||||
#~ msgctxt "shortcuts window"
|
||||
#~ msgid "Undo"
|
||||
#~ msgstr "تراجع"
|
||||
@@ -711,11 +682,8 @@ 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 "يُتواصل مع ستيم"
|
||||
|
||||
#~ msgid "Game Imported"
|
||||
#~ msgstr "اُستوردت اللعبة"
|
||||
|
||||
#~ msgid "Games Imported"
|
||||
#~ msgstr "اُستوردت الألعاب"
|
||||
|
||||
@@ -8,18 +8,18 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cartridges\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-05 14:36+0200\n"
|
||||
"POT-Creation-Date: 2023-04-11 23:33+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=CHARSET\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:3
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:47
|
||||
#: src/main.py:162
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:29
|
||||
#: src/main.py:119
|
||||
msgid "Cartridges"
|
||||
msgstr ""
|
||||
|
||||
@@ -32,10 +32,6 @@ msgstr ""
|
||||
msgid "Launch all your games"
|
||||
msgstr ""
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:11
|
||||
msgid "gaming;launcher;steam;lutris;heroic;bottles;itch;"
|
||||
msgstr ""
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:9
|
||||
msgid ""
|
||||
"Cartridges is a simple game launcher for all of your games. It has support "
|
||||
@@ -44,78 +40,43 @@ msgid ""
|
||||
"SteamGridDB."
|
||||
msgstr ""
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:30
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:22
|
||||
msgid "Library"
|
||||
msgstr ""
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 src/details_window.py:67
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:26
|
||||
#: src/utils/create_details_window.py:87
|
||||
msgid "Edit Game Details"
|
||||
msgstr ""
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:38 data/gtk/window.blp:71
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:30 data/gtk/window.blp:51
|
||||
msgid "Game Details"
|
||||
msgstr ""
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:42 data/gtk/window.blp:416
|
||||
#: src/details_window.py:239
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 data/gtk/window.blp:402
|
||||
#: src/utils/importer.py:94 src/utils/importer.py:123 src/utils/importer.py:148
|
||||
#: src/utils/steamgriddb.py:116
|
||||
msgid "Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/details-window.blp:25
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/details-window.blp:57
|
||||
msgid "New Cover"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/details-window.blp:75
|
||||
msgid "Delete Cover"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/details-window.blp:101 data/gtk/details-window.blp:106
|
||||
#: data/gtk/game.blp:80
|
||||
#: data/gtk/game.blp:67 src/utils/create_details_window.py:129
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/details-window.blp:102
|
||||
msgid "The title of the game"
|
||||
msgstr ""
|
||||
|
||||
#: 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-window.blp:124
|
||||
msgid "File to open or command to run when launching the game"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/details-window.blp:130
|
||||
msgid "More Info"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/game.blp:102 data/gtk/game.blp:121 data/gtk/window.blp:195
|
||||
#: data/gtk/game.blp:89 data/gtk/game.blp:108 data/gtk/window.blp:170
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/game.blp:107 src/window.py:171
|
||||
#: data/gtk/game.blp:94 src/window.py:286
|
||||
msgid "Hide"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/game.blp:112 data/gtk/game.blp:131 data/gtk/preferences.blp:56
|
||||
#: data/gtk/window.blp:209
|
||||
#: data/gtk/game.blp:99 data/gtk/game.blp:118 data/gtk/preferences.blp:56
|
||||
#: data/gtk/window.blp:186
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/game.blp:126 src/window.py:173
|
||||
#: data/gtk/game.blp:113 src/window.py:283
|
||||
msgid "Unhide"
|
||||
msgstr ""
|
||||
|
||||
@@ -127,8 +88,8 @@ msgstr ""
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:217 data/gtk/window.blp:257
|
||||
#: data/gtk/window.blp:323
|
||||
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:205 data/gtk/window.blp:249
|
||||
#: data/gtk/window.blp:312
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
@@ -140,7 +101,8 @@ msgstr ""
|
||||
msgid "Shortcuts"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/help-overlay.blp:34 src/game.py:102 src/preferences.py:112
|
||||
#: data/gtk/help-overlay.blp:34 src/main.py:186 src/main.py:242
|
||||
#: src/preferences.py:133
|
||||
msgid "Undo"
|
||||
msgstr ""
|
||||
|
||||
@@ -168,7 +130,7 @@ msgstr ""
|
||||
msgid "Remove game"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:268
|
||||
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:235
|
||||
msgid "Behavior"
|
||||
msgstr ""
|
||||
|
||||
@@ -184,7 +146,7 @@ msgstr ""
|
||||
msgid "Swaps the behavior of the cover image and the play button"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:36 src/details_window.py:81
|
||||
#: data/gtk/preferences.blp:36 src/utils/create_details_window.py:101
|
||||
msgid "Images"
|
||||
msgstr ""
|
||||
|
||||
@@ -204,241 +166,341 @@ msgstr ""
|
||||
msgid "Remove All Games"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:85 data/gtk/window.blp:27 data/gtk/window.blp:442
|
||||
#: data/gtk/preferences.blp:69 data/gtk/window.blp:427
|
||||
msgid "Import"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:89
|
||||
#: data/gtk/preferences.blp:73
|
||||
msgid "Sources"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:92
|
||||
#: data/gtk/preferences.blp:76
|
||||
msgid "Steam"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:96 data/gtk/preferences.blp:110
|
||||
#: data/gtk/preferences.blp:151 data/gtk/preferences.blp:192
|
||||
#: data/gtk/preferences.blp:206 data/gtk/preferences.blp:220
|
||||
#: data/gtk/preferences.blp:234
|
||||
msgid "Install Location"
|
||||
#: data/gtk/preferences.blp:80
|
||||
msgid "Steam Install Location"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:106
|
||||
#: data/gtk/preferences.blp:81 data/gtk/preferences.blp:119
|
||||
#: data/gtk/preferences.blp:153 data/gtk/preferences.blp:195
|
||||
#: data/gtk/preferences.blp:210
|
||||
msgid "Directory to use when importing games"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:89 src/utils/importer.py:143
|
||||
msgid "Extra Steam Libraries"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:90
|
||||
msgid "Select other directories where you have Steam games installed"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:96
|
||||
msgid "Clear"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:114
|
||||
msgid "Lutris"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:119
|
||||
msgid "Cache Location"
|
||||
#: data/gtk/preferences.blp:118
|
||||
msgid "Lutris Install Location"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:128
|
||||
msgid "Lutris Cache Location"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:129
|
||||
msgid "Directory to use when importing game covers"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:138
|
||||
msgid "Import Steam Games"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:137
|
||||
msgid "Import Flatpak Games"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:147
|
||||
#: data/gtk/preferences.blp:148
|
||||
msgid "Heroic"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:160
|
||||
#: data/gtk/preferences.blp:152
|
||||
msgid "Heroic Install Location"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:162
|
||||
msgid "Import Epic Games"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:169
|
||||
#: data/gtk/preferences.blp:171
|
||||
msgid "Import GOG Games"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:178
|
||||
#: data/gtk/preferences.blp:180
|
||||
msgid "Import Sideloaded Games"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:188
|
||||
#: data/gtk/preferences.blp:190
|
||||
msgid "Bottles"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:202
|
||||
#: data/gtk/preferences.blp:194
|
||||
msgid "Bottles Install Location"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:205
|
||||
msgid "itch"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:216
|
||||
msgid "Legendary"
|
||||
#: data/gtk/preferences.blp:209
|
||||
msgid "itch Install Location"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:230
|
||||
msgid "Flatpak"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:243
|
||||
msgid "Import Game Launchers"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:256
|
||||
#: data/gtk/preferences.blp:223
|
||||
msgid "SteamGridDB"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:260
|
||||
#: data/gtk/preferences.blp:227
|
||||
msgid "Authentication"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:263
|
||||
#: data/gtk/preferences.blp:230
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:271
|
||||
#: data/gtk/preferences.blp:238
|
||||
msgid "Use SteamGridDB"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:272
|
||||
#: data/gtk/preferences.blp:239
|
||||
msgid "Download images when adding or importing games"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:281
|
||||
#: data/gtk/preferences.blp:248
|
||||
msgid "Prefer Over Official Images"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:290
|
||||
#: data/gtk/preferences.blp:257
|
||||
msgid "Prefer Animated Images"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:6 data/gtk/window.blp:14
|
||||
#: data/gtk/window.blp:6 src/utils/importer.py:91
|
||||
msgid "No Games Found"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:7 data/gtk/window.blp:15
|
||||
#: data/gtk/window.blp:7
|
||||
msgid "Try a different search."
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:21
|
||||
#: data/gtk/window.blp:14
|
||||
msgid "No Games"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:22
|
||||
#: data/gtk/window.blp:15
|
||||
msgid "Use the + button to add games."
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:40
|
||||
#: data/gtk/window.blp:22
|
||||
msgid "No Hidden Games"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:41
|
||||
#: data/gtk/window.blp:23
|
||||
msgid "Games you hide will appear here."
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:64 data/gtk/window.blp:304
|
||||
#: data/gtk/window.blp:44 data/gtk/window.blp:293
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:121
|
||||
#: data/gtk/window.blp:100
|
||||
msgid "Game Title"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:176
|
||||
#: data/gtk/window.blp:151 src/game.py:158
|
||||
msgid "Play"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:243 data/gtk/window.blp:435
|
||||
#: data/gtk/window.blp:235 data/gtk/window.blp:421
|
||||
msgid "Add Game"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:250 data/gtk/window.blp:316
|
||||
#: data/gtk/window.blp:242 data/gtk/window.blp:305
|
||||
msgid "Main Menu"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:311
|
||||
#: data/gtk/window.blp:300
|
||||
msgid "Hidden Games"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:374
|
||||
#: data/gtk/window.blp:360
|
||||
msgid "Sort"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:377
|
||||
#: data/gtk/window.blp:363
|
||||
msgid "A-Z"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:383
|
||||
#: data/gtk/window.blp:369
|
||||
msgid "Z-A"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:389
|
||||
#: data/gtk/window.blp:375
|
||||
msgid "Newest"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:395
|
||||
#: data/gtk/window.blp:381
|
||||
msgid "Oldest"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:401
|
||||
#: data/gtk/window.blp:387
|
||||
msgid "Last Played"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:408
|
||||
#: data/gtk/window.blp:394
|
||||
msgid "Show Hidden"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:421
|
||||
#: data/gtk/window.blp:407
|
||||
msgid "Keyboard Shortcuts"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:426
|
||||
#: data/gtk/window.blp:412
|
||||
msgid "About Cartridges"
|
||||
msgstr ""
|
||||
|
||||
#. Translators: Replace this with your name for it to show up in the about window
|
||||
#: src/main.py:180
|
||||
#: src/main.py:137
|
||||
msgid "translator_credits"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:164
|
||||
msgid "{} launched"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:182
|
||||
msgid "{} hidden"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:185
|
||||
msgid "{} unhidden"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:241
|
||||
msgid "{} removed"
|
||||
msgstr ""
|
||||
|
||||
#: src/window.py:262
|
||||
msgid "Today"
|
||||
msgstr ""
|
||||
|
||||
#: src/window.py:264
|
||||
msgid "Yesterday"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the date when the game was added
|
||||
#: src/window.py:194
|
||||
#: src/window.py:310
|
||||
msgid "Added: {}"
|
||||
msgstr ""
|
||||
|
||||
#: src/window.py:197
|
||||
#: src/window.py:315
|
||||
msgid "Never"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the date when the game was last played
|
||||
#: src/window.py:201
|
||||
#: src/window.py:319
|
||||
msgid "Last played: {}"
|
||||
msgstr ""
|
||||
|
||||
#: src/details_window.py:72
|
||||
msgid "Apply"
|
||||
#: src/game.py:156
|
||||
msgid "Details"
|
||||
msgstr ""
|
||||
|
||||
#: src/details_window.py:78
|
||||
#: src/preferences.py:54
|
||||
msgid "Installation Not Found"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the name of the game launcher
|
||||
#: src/preferences.py:56
|
||||
msgid "Select the {} configuration directory."
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the name of the game launcher
|
||||
#: src/preferences.py:59
|
||||
msgid "Select the {} data directory."
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:61 src/preferences.py:240
|
||||
msgid "Set Location"
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:132
|
||||
msgid "All games removed"
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:237
|
||||
msgid "Cache Not Found"
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:238
|
||||
msgid "Select the Lutris cache directory."
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:344
|
||||
msgid ""
|
||||
"An API key is required to use SteamGridDB. You can generate one {}here{}."
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/create_details_window.py:81
|
||||
msgid "Add New Game"
|
||||
msgstr ""
|
||||
|
||||
#: src/details_window.py:79
|
||||
#: src/utils/create_details_window.py:85
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/create_details_window.py:96
|
||||
msgid "Apply"
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/create_details_window.py:130
|
||||
msgid "The title of the game"
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/create_details_window.py:135
|
||||
msgid "Developer"
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/create_details_window.py:136
|
||||
msgid "The developer or publisher (optional)"
|
||||
msgstr ""
|
||||
|
||||
#. Translate this string as you would translate "file"
|
||||
#: src/details_window.py:92
|
||||
#: src/utils/create_details_window.py:147
|
||||
msgid "file.txt"
|
||||
msgstr ""
|
||||
|
||||
#. As in software
|
||||
#: src/details_window.py:94
|
||||
#: src/utils/create_details_window.py:149
|
||||
msgid "program"
|
||||
msgstr ""
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:99 src/details_window.py:101
|
||||
#: src/utils/create_details_window.py:154
|
||||
#: src/utils/create_details_window.py:156
|
||||
msgid "C:\\path\\to\\{}"
|
||||
msgstr ""
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:105 src/details_window.py:107
|
||||
#: src/utils/create_details_window.py:160
|
||||
#: src/utils/create_details_window.py:162
|
||||
msgid "/path/to/{}"
|
||||
msgstr ""
|
||||
|
||||
#: src/details_window.py:112
|
||||
#: src/utils/create_details_window.py:166
|
||||
msgid ""
|
||||
"To launch the executable \"{}\", use the command:\n"
|
||||
"\n"
|
||||
@@ -451,88 +513,79 @@ msgid ""
|
||||
"If the path contains spaces, make sure to wrap it in double quotes!"
|
||||
msgstr ""
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:153
|
||||
#: src/utils/create_details_window.py:189
|
||||
msgid "Executable"
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/create_details_window.py:190
|
||||
msgid "File to open or command to run when launching the game"
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/create_details_window.py:202
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/create_details_window.py:259
|
||||
#: src/utils/create_details_window.py:269
|
||||
#: src/utils/create_details_window.py:275
|
||||
msgid "Couldn't Add Game"
|
||||
msgstr ""
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:181
|
||||
msgid "Game title cannot be empty."
|
||||
msgstr ""
|
||||
|
||||
#: src/details_window.py:153 src/details_window.py:189
|
||||
msgid "Executable cannot be empty."
|
||||
msgstr ""
|
||||
|
||||
#: src/details_window.py:180 src/details_window.py:188
|
||||
#: src/utils/create_details_window.py:261
|
||||
#: src/utils/create_details_window.py:299
|
||||
#: src/utils/create_details_window.py:307
|
||||
msgid "Couldn't Apply Preferences"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:138
|
||||
msgid "{} launched"
|
||||
#: src/utils/create_details_window.py:269
|
||||
#: src/utils/create_details_window.py:300
|
||||
msgid "Game title cannot be empty."
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:152
|
||||
msgid "{} hidden"
|
||||
msgstr ""
|
||||
|
||||
#: src/game.py:152
|
||||
msgid "{} unhidden"
|
||||
msgstr ""
|
||||
|
||||
#: src/game.py:169
|
||||
msgid "{} removed"
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:111
|
||||
msgid "All games removed"
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:159
|
||||
msgid ""
|
||||
"An API key is required to use SteamGridDB. You can generate one {}here{}."
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:284
|
||||
msgid "Installation Not Found"
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:286
|
||||
msgid "Select a valid directory."
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:348
|
||||
msgid "Invalid Directory"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:352
|
||||
msgid "Select the {} cache directory."
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:355
|
||||
msgid "Select the {} configuration directory."
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:358
|
||||
msgid "Select the {} data directory."
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:364
|
||||
msgid "Set Location"
|
||||
#: src/utils/create_details_window.py:275
|
||||
#: src/utils/create_details_window.py:308
|
||||
msgid "Executable cannot be empty."
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/create_dialog.py:25
|
||||
msgid "Dismiss"
|
||||
msgstr ""
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:47
|
||||
msgid "Couldn't Authenticate SteamGridDB"
|
||||
#: src/utils/importer.py:42
|
||||
msgid "Importing Games…"
|
||||
msgstr ""
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:48
|
||||
msgid "Verify your API key in preferences"
|
||||
#: src/utils/importer.py:77
|
||||
msgid "Importing Covers…"
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/importer.py:92
|
||||
msgid "No new games were found on your system."
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/importer.py:100
|
||||
msgid "Game Imported"
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/importer.py:101
|
||||
msgid "Successfully imported 1 game."
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/importer.py:107
|
||||
msgid "Games Imported"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the number of games
|
||||
#: src/utils/importer.py:109
|
||||
msgid "Successfully imported {} games."
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/importer.py:120 src/utils/steamgriddb.py:113
|
||||
msgid "Couldn't Connect to SteamGridDB"
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/importer.py:145
|
||||
msgid ""
|
||||
"Looks like you have multiple Steam libraries. Would you like to add them in "
|
||||
"preferences?"
|
||||
msgstr ""
|
||||
|
||||
589
po/de.po
@@ -3,14 +3,13 @@
|
||||
# This file is distributed under the same license as the Cartridges package.
|
||||
# Jummit <jummit@web.de>, 2023.
|
||||
# WebSnke <websnke@tutanota.com>, 2023.
|
||||
# Ettore Atalan <atalanttore@googlemail.com>, 2023.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cartridges\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-05 14:36+0200\n"
|
||||
"PO-Revision-Date: 2023-04-17 17:20+0000\n"
|
||||
"Last-Translator: Ettore Atalan <atalanttore@googlemail.com>\n"
|
||||
"POT-Creation-Date: 2023-04-11 23:33+0200\n"
|
||||
"PO-Revision-Date: 2023-04-08 20:49+0000\n"
|
||||
"Last-Translator: Jummit <jummit@web.de>\n"
|
||||
"Language-Team: German <https://hosted.weblate.org/projects/cartridges/"
|
||||
"cartridges/de/>\n"
|
||||
"Language: de\n"
|
||||
@@ -18,11 +17,11 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.17\n"
|
||||
"X-Generator: Weblate 4.17-dev\n"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:3
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:47
|
||||
#: src/main.py:162
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:29
|
||||
#: src/main.py:119
|
||||
msgid "Cartridges"
|
||||
msgstr "Cartridges"
|
||||
|
||||
@@ -35,10 +34,6 @@ msgstr "Spiele-Launcher"
|
||||
msgid "Launch all your games"
|
||||
msgstr "Starte all deine Spiele"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:11
|
||||
msgid "gaming;launcher;steam;lutris;heroic;bottles;itch;"
|
||||
msgstr ""
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:9
|
||||
msgid ""
|
||||
"Cartridges is a simple game launcher for all of your games. It has support "
|
||||
@@ -51,78 +46,43 @@ msgstr ""
|
||||
"erforderlich. Du kannst sortieren, Spiele verstecken oder das Cover-Art aus "
|
||||
"SteamGRID herunterladen."
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:30
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:22
|
||||
msgid "Library"
|
||||
msgstr "Bibliothek"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 src/details_window.py:67
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:26
|
||||
#: src/utils/create_details_window.py:87
|
||||
msgid "Edit Game Details"
|
||||
msgstr "Spieldetails bearbeiten"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:38 data/gtk/window.blp:71
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:30 data/gtk/window.blp:51
|
||||
msgid "Game Details"
|
||||
msgstr "Spieldetails"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:42 data/gtk/window.blp:416
|
||||
#: src/details_window.py:239
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 data/gtk/window.blp:402
|
||||
#: src/utils/importer.py:94 src/utils/importer.py:123 src/utils/importer.py:148
|
||||
#: src/utils/steamgriddb.py:116
|
||||
msgid "Preferences"
|
||||
msgstr "Einstellungen"
|
||||
|
||||
#: data/gtk/details-window.blp:25
|
||||
msgid "Cancel"
|
||||
msgstr "Abbrechen"
|
||||
|
||||
#: data/gtk/details-window.blp:57
|
||||
msgid "New Cover"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/details-window.blp:75
|
||||
msgid "Delete Cover"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/details-window.blp:101 data/gtk/details-window.blp:106
|
||||
#: data/gtk/game.blp:80
|
||||
#: data/gtk/game.blp:67 src/utils/create_details_window.py:129
|
||||
msgid "Title"
|
||||
msgstr "Titel"
|
||||
|
||||
#: data/gtk/details-window.blp:102
|
||||
msgid "The title of the game"
|
||||
msgstr "Der Titel des Spiels"
|
||||
|
||||
#: data/gtk/details-window.blp:112 data/gtk/details-window.blp:117
|
||||
msgid "Developer"
|
||||
msgstr "Entwickler"
|
||||
|
||||
#: data/gtk/details-window.blp:113
|
||||
msgid "The developer or publisher (optional)"
|
||||
msgstr "Der Entwickler oder Verlag (optional)"
|
||||
|
||||
#: data/gtk/details-window.blp:123 data/gtk/details-window.blp:155
|
||||
msgid "Executable"
|
||||
msgstr "Ausführbare Datei"
|
||||
|
||||
#: data/gtk/details-window.blp:124
|
||||
msgid "File to open or command to run when launching the game"
|
||||
msgstr "Datei zum Öffnen oder Befehl zum Starten des Spiels"
|
||||
|
||||
#: data/gtk/details-window.blp:130
|
||||
msgid "More Info"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/game.blp:102 data/gtk/game.blp:121 data/gtk/window.blp:195
|
||||
#: data/gtk/game.blp:89 data/gtk/game.blp:108 data/gtk/window.blp:170
|
||||
msgid "Edit"
|
||||
msgstr "Bearbeiten"
|
||||
|
||||
#: data/gtk/game.blp:107 src/window.py:171
|
||||
#: data/gtk/game.blp:94 src/window.py:286
|
||||
msgid "Hide"
|
||||
msgstr "Verstecken"
|
||||
|
||||
#: data/gtk/game.blp:112 data/gtk/game.blp:131 data/gtk/preferences.blp:56
|
||||
#: data/gtk/window.blp:209
|
||||
#: data/gtk/game.blp:99 data/gtk/game.blp:118 data/gtk/preferences.blp:56
|
||||
#: data/gtk/window.blp:186
|
||||
msgid "Remove"
|
||||
msgstr "Entfernen"
|
||||
|
||||
#: data/gtk/game.blp:126 src/window.py:173
|
||||
#: data/gtk/game.blp:113 src/window.py:283
|
||||
msgid "Unhide"
|
||||
msgstr "Unverstecken"
|
||||
|
||||
@@ -134,8 +94,8 @@ msgstr "Allgemein"
|
||||
msgid "Quit"
|
||||
msgstr "Beenden"
|
||||
|
||||
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:217 data/gtk/window.blp:257
|
||||
#: data/gtk/window.blp:323
|
||||
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:205 data/gtk/window.blp:249
|
||||
#: data/gtk/window.blp:312
|
||||
msgid "Search"
|
||||
msgstr "Suchen"
|
||||
|
||||
@@ -147,7 +107,8 @@ msgstr "Einstellungen anzeigen"
|
||||
msgid "Shortcuts"
|
||||
msgstr "Kürzel"
|
||||
|
||||
#: data/gtk/help-overlay.blp:34 src/game.py:102 src/preferences.py:112
|
||||
#: data/gtk/help-overlay.blp:34 src/main.py:186 src/main.py:242
|
||||
#: src/preferences.py:133
|
||||
msgid "Undo"
|
||||
msgstr "Rückgängig"
|
||||
|
||||
@@ -175,7 +136,7 @@ msgstr "Ausgeblendete Spiele anzeigen"
|
||||
msgid "Remove game"
|
||||
msgstr "Spiel entfernen"
|
||||
|
||||
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:268
|
||||
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:235
|
||||
msgid "Behavior"
|
||||
msgstr "Verhalten"
|
||||
|
||||
@@ -191,7 +152,7 @@ msgstr "Coverbild Startet Spiel"
|
||||
msgid "Swaps the behavior of the cover image and the play button"
|
||||
msgstr "Tauscht das Verhalten des Covers und des Spielen-Knopfes"
|
||||
|
||||
#: data/gtk/preferences.blp:36 src/details_window.py:81
|
||||
#: data/gtk/preferences.blp:36 src/utils/create_details_window.py:101
|
||||
msgid "Images"
|
||||
msgstr "Bilder"
|
||||
|
||||
@@ -211,249 +172,345 @@ msgstr "Gefahrenzone"
|
||||
msgid "Remove All Games"
|
||||
msgstr "Alle Spiele entfernen"
|
||||
|
||||
#: data/gtk/preferences.blp:85 data/gtk/window.blp:27 data/gtk/window.blp:442
|
||||
#: data/gtk/preferences.blp:69 data/gtk/window.blp:427
|
||||
msgid "Import"
|
||||
msgstr "Importieren"
|
||||
|
||||
#: data/gtk/preferences.blp:89
|
||||
#: data/gtk/preferences.blp:73
|
||||
msgid "Sources"
|
||||
msgstr "Quellen"
|
||||
|
||||
#: data/gtk/preferences.blp:92
|
||||
#: data/gtk/preferences.blp:76
|
||||
msgid "Steam"
|
||||
msgstr "Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:96 data/gtk/preferences.blp:110
|
||||
#: data/gtk/preferences.blp:151 data/gtk/preferences.blp:192
|
||||
#: data/gtk/preferences.blp:206 data/gtk/preferences.blp:220
|
||||
#: data/gtk/preferences.blp:234
|
||||
#, fuzzy
|
||||
#| msgid "itch Install Location"
|
||||
msgid "Install Location"
|
||||
msgstr "itch-Installationsort"
|
||||
#: data/gtk/preferences.blp:80
|
||||
msgid "Steam Install Location"
|
||||
msgstr "Steam-Installationsort"
|
||||
|
||||
#: data/gtk/preferences.blp:106
|
||||
#: data/gtk/preferences.blp:81 data/gtk/preferences.blp:119
|
||||
#: data/gtk/preferences.blp:153 data/gtk/preferences.blp:195
|
||||
#: data/gtk/preferences.blp:210
|
||||
msgid "Directory to use when importing games"
|
||||
msgstr "Verzeichnis, das beim Importieren von Spielen verwendet wird"
|
||||
|
||||
#: data/gtk/preferences.blp:89 src/utils/importer.py:143
|
||||
msgid "Extra Steam Libraries"
|
||||
msgstr "Extra Steam-Bibliotheken"
|
||||
|
||||
#: data/gtk/preferences.blp:90
|
||||
msgid "Select other directories where you have Steam games installed"
|
||||
msgstr "Wähle andere Verzeichnisse in denen du Steam-Spiele installiert hast"
|
||||
|
||||
#: data/gtk/preferences.blp:96
|
||||
msgid "Clear"
|
||||
msgstr "Löchen"
|
||||
|
||||
#: data/gtk/preferences.blp:114
|
||||
msgid "Lutris"
|
||||
msgstr "Lutris"
|
||||
|
||||
#: data/gtk/preferences.blp:119
|
||||
#, fuzzy
|
||||
#| msgid "Lutris Cache Location"
|
||||
msgid "Cache Location"
|
||||
msgstr "Lutris-Cacheort"
|
||||
#: data/gtk/preferences.blp:118
|
||||
msgid "Lutris Install Location"
|
||||
msgstr "Lutris-Installationsort"
|
||||
|
||||
#: data/gtk/preferences.blp:128
|
||||
msgid "Lutris Cache Location"
|
||||
msgstr "Lutris-Cacheort"
|
||||
|
||||
#: data/gtk/preferences.blp:129
|
||||
msgid "Directory to use when importing game covers"
|
||||
msgstr "Verzeichnis für den Import von Spiel-Covern"
|
||||
|
||||
#: data/gtk/preferences.blp:138
|
||||
msgid "Import Steam Games"
|
||||
msgstr "Steam-Spiele importieren"
|
||||
|
||||
#: data/gtk/preferences.blp:137
|
||||
#, fuzzy
|
||||
#| msgid "Import Steam Games"
|
||||
msgid "Import Flatpak Games"
|
||||
msgstr "Steam-Spiele importieren"
|
||||
|
||||
#: data/gtk/preferences.blp:147
|
||||
#: data/gtk/preferences.blp:148
|
||||
msgid "Heroic"
|
||||
msgstr "Heroic"
|
||||
|
||||
#: data/gtk/preferences.blp:160
|
||||
#: data/gtk/preferences.blp:152
|
||||
msgid "Heroic Install Location"
|
||||
msgstr "Heroic-Installationsort"
|
||||
|
||||
#: data/gtk/preferences.blp:162
|
||||
msgid "Import Epic Games"
|
||||
msgstr "Epic Games importieren"
|
||||
|
||||
#: data/gtk/preferences.blp:169
|
||||
#: data/gtk/preferences.blp:171
|
||||
msgid "Import GOG Games"
|
||||
msgstr "GOG-Spiele importieren"
|
||||
|
||||
#: data/gtk/preferences.blp:178
|
||||
#: data/gtk/preferences.blp:180
|
||||
msgid "Import Sideloaded Games"
|
||||
msgstr "Sideloaded-Spiele importieren"
|
||||
|
||||
#: data/gtk/preferences.blp:188
|
||||
#: data/gtk/preferences.blp:190
|
||||
msgid "Bottles"
|
||||
msgstr "Bottles"
|
||||
|
||||
#: data/gtk/preferences.blp:202
|
||||
#: data/gtk/preferences.blp:194
|
||||
msgid "Bottles Install Location"
|
||||
msgstr "Bottles-Installationsort"
|
||||
|
||||
#: data/gtk/preferences.blp:205
|
||||
msgid "itch"
|
||||
msgstr "itch"
|
||||
|
||||
#: data/gtk/preferences.blp:216
|
||||
msgid "Legendary"
|
||||
msgstr ""
|
||||
#: data/gtk/preferences.blp:209
|
||||
msgid "itch Install Location"
|
||||
msgstr "itch-Installationsort"
|
||||
|
||||
#: data/gtk/preferences.blp:230
|
||||
msgid "Flatpak"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:243
|
||||
#, fuzzy
|
||||
#| msgid "Game Launcher"
|
||||
msgid "Import Game Launchers"
|
||||
msgstr "Spiele-Launcher"
|
||||
|
||||
#: data/gtk/preferences.blp:256
|
||||
#: data/gtk/preferences.blp:223
|
||||
msgid "SteamGridDB"
|
||||
msgstr "SteamGridDB"
|
||||
|
||||
#: data/gtk/preferences.blp:260
|
||||
#: data/gtk/preferences.blp:227
|
||||
msgid "Authentication"
|
||||
msgstr "Authentifizierung"
|
||||
|
||||
#: data/gtk/preferences.blp:263
|
||||
#: data/gtk/preferences.blp:230
|
||||
msgid "API Key"
|
||||
msgstr "API-Schlüssel"
|
||||
|
||||
#: data/gtk/preferences.blp:271
|
||||
#: data/gtk/preferences.blp:238
|
||||
msgid "Use SteamGridDB"
|
||||
msgstr "SteamGridDB benutzen"
|
||||
|
||||
#: data/gtk/preferences.blp:272
|
||||
#: data/gtk/preferences.blp:239
|
||||
msgid "Download images when adding or importing games"
|
||||
msgstr "Lade Bilder herunter, wenn Spiele hinzugefügt oder importiert werden"
|
||||
|
||||
#: data/gtk/preferences.blp:281
|
||||
#: data/gtk/preferences.blp:248
|
||||
msgid "Prefer Over Official Images"
|
||||
msgstr "Über offizielien Images bevorzugen"
|
||||
|
||||
#: data/gtk/preferences.blp:290
|
||||
#: data/gtk/preferences.blp:257
|
||||
#, fuzzy
|
||||
#| msgid "Prefer Over Official Images"
|
||||
msgid "Prefer Animated Images"
|
||||
msgstr "Animierte Bilder bevorzugen"
|
||||
msgstr "Über offizielien Images bevorzugen"
|
||||
|
||||
#: data/gtk/window.blp:6 data/gtk/window.blp:14
|
||||
#: data/gtk/window.blp:6 src/utils/importer.py:91
|
||||
msgid "No Games Found"
|
||||
msgstr "Keine Spiele gefunden"
|
||||
|
||||
#: data/gtk/window.blp:7 data/gtk/window.blp:15
|
||||
#: data/gtk/window.blp:7
|
||||
msgid "Try a different search."
|
||||
msgstr "Versuche eine andere Suche."
|
||||
|
||||
#: data/gtk/window.blp:21
|
||||
#: data/gtk/window.blp:14
|
||||
msgid "No Games"
|
||||
msgstr "Keine Spiele"
|
||||
|
||||
#: data/gtk/window.blp:22
|
||||
#: data/gtk/window.blp:15
|
||||
msgid "Use the + button to add games."
|
||||
msgstr "Benutze denn + Knopf um Spiele hinzuzufügen."
|
||||
|
||||
#: data/gtk/window.blp:40
|
||||
#: data/gtk/window.blp:22
|
||||
msgid "No Hidden Games"
|
||||
msgstr "Keine versteckten Spiele"
|
||||
|
||||
#: data/gtk/window.blp:41
|
||||
#: data/gtk/window.blp:23
|
||||
msgid "Games you hide will appear here."
|
||||
msgstr "Ausgeblendete Spiele, werden hier angezeigt."
|
||||
|
||||
#: data/gtk/window.blp:64 data/gtk/window.blp:304
|
||||
#: data/gtk/window.blp:44 data/gtk/window.blp:293
|
||||
msgid "Back"
|
||||
msgstr "Zurück"
|
||||
|
||||
#: data/gtk/window.blp:121
|
||||
#: data/gtk/window.blp:100
|
||||
msgid "Game Title"
|
||||
msgstr "Spieltitel"
|
||||
|
||||
#: data/gtk/window.blp:176
|
||||
#: data/gtk/window.blp:151 src/game.py:158
|
||||
msgid "Play"
|
||||
msgstr "Spielen"
|
||||
|
||||
#: data/gtk/window.blp:243 data/gtk/window.blp:435
|
||||
#: data/gtk/window.blp:235 data/gtk/window.blp:421
|
||||
msgid "Add Game"
|
||||
msgstr "Spiel hinzufügen"
|
||||
|
||||
#: data/gtk/window.blp:250 data/gtk/window.blp:316
|
||||
#: data/gtk/window.blp:242 data/gtk/window.blp:305
|
||||
msgid "Main Menu"
|
||||
msgstr "Hauptmenü"
|
||||
|
||||
#: data/gtk/window.blp:311
|
||||
#: data/gtk/window.blp:300
|
||||
msgid "Hidden Games"
|
||||
msgstr "Ausgeblendete Spiele"
|
||||
|
||||
#: data/gtk/window.blp:374
|
||||
#: data/gtk/window.blp:360
|
||||
msgid "Sort"
|
||||
msgstr "Sortierung"
|
||||
|
||||
#: data/gtk/window.blp:377
|
||||
#: data/gtk/window.blp:363
|
||||
msgid "A-Z"
|
||||
msgstr "A-Z"
|
||||
|
||||
#: data/gtk/window.blp:383
|
||||
#: data/gtk/window.blp:369
|
||||
msgid "Z-A"
|
||||
msgstr "Z-A"
|
||||
|
||||
#: data/gtk/window.blp:389
|
||||
#: data/gtk/window.blp:375
|
||||
msgid "Newest"
|
||||
msgstr "Neuestes"
|
||||
|
||||
#: data/gtk/window.blp:395
|
||||
#: data/gtk/window.blp:381
|
||||
msgid "Oldest"
|
||||
msgstr "Älteste"
|
||||
|
||||
#: data/gtk/window.blp:401
|
||||
#: data/gtk/window.blp:387
|
||||
msgid "Last Played"
|
||||
msgstr "Zuletzt gespielt"
|
||||
|
||||
#: data/gtk/window.blp:408
|
||||
#: data/gtk/window.blp:394
|
||||
msgid "Show Hidden"
|
||||
msgstr "Ausgeblendete anzeigen"
|
||||
|
||||
#: data/gtk/window.blp:421
|
||||
#: data/gtk/window.blp:407
|
||||
msgid "Keyboard Shortcuts"
|
||||
msgstr "Tastaturkürzel"
|
||||
|
||||
#: data/gtk/window.blp:426
|
||||
#: data/gtk/window.blp:412
|
||||
msgid "About Cartridges"
|
||||
msgstr "Über Cartridges"
|
||||
|
||||
#. Translators: Replace this with your name for it to show up in the about window
|
||||
#: src/main.py:180
|
||||
#: src/main.py:137
|
||||
msgid "translator_credits"
|
||||
msgstr "Feliks Weber"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:164
|
||||
msgid "{} launched"
|
||||
msgstr "{} gestartet"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:182
|
||||
msgid "{} hidden"
|
||||
msgstr "{} versteckt"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:185
|
||||
msgid "{} unhidden"
|
||||
msgstr "{} unversteckt"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:241
|
||||
msgid "{} removed"
|
||||
msgstr "{} entfernt"
|
||||
|
||||
#: src/window.py:262
|
||||
msgid "Today"
|
||||
msgstr "Heute"
|
||||
|
||||
#: src/window.py:264
|
||||
msgid "Yesterday"
|
||||
msgstr "Gestern"
|
||||
|
||||
#. The variable is the date when the game was added
|
||||
#: src/window.py:194
|
||||
#: src/window.py:310
|
||||
msgid "Added: {}"
|
||||
msgstr "Hinzugefügt: {}"
|
||||
|
||||
#: src/window.py:197
|
||||
#: src/window.py:315
|
||||
msgid "Never"
|
||||
msgstr "Nie"
|
||||
|
||||
#. The variable is the date when the game was last played
|
||||
#: src/window.py:201
|
||||
#: src/window.py:319
|
||||
msgid "Last played: {}"
|
||||
msgstr "Zuletzt gespielt: {}"
|
||||
|
||||
#: src/details_window.py:72
|
||||
msgid "Apply"
|
||||
msgstr "Anwenden"
|
||||
#: src/game.py:156
|
||||
msgid "Details"
|
||||
msgstr "Details"
|
||||
|
||||
#: src/details_window.py:78
|
||||
#: src/preferences.py:54
|
||||
msgid "Installation Not Found"
|
||||
msgstr "Installation nicht gefunden"
|
||||
|
||||
#. The variable is the name of the game launcher
|
||||
#: src/preferences.py:56
|
||||
msgid "Select the {} configuration directory."
|
||||
msgstr "Wähle das Konfigurationsverzeichnis von {} aus."
|
||||
|
||||
#. The variable is the name of the game launcher
|
||||
#: src/preferences.py:59
|
||||
msgid "Select the {} data directory."
|
||||
msgstr "Wähle das Datenverzeichnis von {} aus."
|
||||
|
||||
#: src/preferences.py:61 src/preferences.py:240
|
||||
msgid "Set Location"
|
||||
msgstr "Ort festlegen"
|
||||
|
||||
#: src/preferences.py:132
|
||||
msgid "All games removed"
|
||||
msgstr "Alle Spiele entfernt"
|
||||
|
||||
#: src/preferences.py:237
|
||||
msgid "Cache Not Found"
|
||||
msgstr "Cache nicht gefunden"
|
||||
|
||||
#: src/preferences.py:238
|
||||
msgid "Select the Lutris cache directory."
|
||||
msgstr "Wähle das Lutris-Cache-Verzeichnis aus."
|
||||
|
||||
#: src/preferences.py:344
|
||||
msgid ""
|
||||
"An API key is required to use SteamGridDB. You can generate one {}here{}."
|
||||
msgstr ""
|
||||
"Für die Nutzung von SteamGridDB ist ein API-Schlüssel erforderlich. Sie "
|
||||
"können ihn {}hier{} generieren."
|
||||
|
||||
#: src/utils/create_details_window.py:81
|
||||
msgid "Add New Game"
|
||||
msgstr "Neues Spiel hinzufügen"
|
||||
|
||||
#: src/details_window.py:79
|
||||
#: src/utils/create_details_window.py:85
|
||||
msgid "Confirm"
|
||||
msgstr "Bestätigen"
|
||||
|
||||
#: src/utils/create_details_window.py:96
|
||||
msgid "Apply"
|
||||
msgstr "Anwenden"
|
||||
|
||||
#: src/utils/create_details_window.py:130
|
||||
msgid "The title of the game"
|
||||
msgstr "Der Titel des Spiels"
|
||||
|
||||
#: src/utils/create_details_window.py:135
|
||||
msgid "Developer"
|
||||
msgstr "Entwickler"
|
||||
|
||||
#: src/utils/create_details_window.py:136
|
||||
msgid "The developer or publisher (optional)"
|
||||
msgstr "Der Entwickler oder Verlag (optional)"
|
||||
|
||||
#. Translate this string as you would translate "file"
|
||||
#: src/details_window.py:92
|
||||
#: src/utils/create_details_window.py:147
|
||||
msgid "file.txt"
|
||||
msgstr "datei.txt"
|
||||
|
||||
#. As in software
|
||||
#: src/details_window.py:94
|
||||
#: src/utils/create_details_window.py:149
|
||||
msgid "program"
|
||||
msgstr "Programm"
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:99 src/details_window.py:101
|
||||
#: src/utils/create_details_window.py:154
|
||||
#: src/utils/create_details_window.py:156
|
||||
msgid "C:\\path\\to\\{}"
|
||||
msgstr "C:\\pfad\\zu\\{}"
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:105 src/details_window.py:107
|
||||
#: src/utils/create_details_window.py:160
|
||||
#: src/utils/create_details_window.py:162
|
||||
msgid "/path/to/{}"
|
||||
msgstr "/pfad/zu/{}"
|
||||
|
||||
#: src/details_window.py:112
|
||||
#: src/utils/create_details_window.py:166
|
||||
msgid ""
|
||||
"To launch the executable \"{}\", use the command:\n"
|
||||
"\n"
|
||||
@@ -476,192 +533,84 @@ msgstr ""
|
||||
"Falls der Pfad Leerzeichen enthält, stelle sicher ihn in doppelte "
|
||||
"Anführungszeichen zu setzen!"
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:153
|
||||
#: src/utils/create_details_window.py:189
|
||||
msgid "Executable"
|
||||
msgstr "Ausführbare Datei"
|
||||
|
||||
#: src/utils/create_details_window.py:190
|
||||
msgid "File to open or command to run when launching the game"
|
||||
msgstr "Datei zum Öffnen oder Befehl zum Starten des Spiels"
|
||||
|
||||
#: src/utils/create_details_window.py:202
|
||||
msgid "Cancel"
|
||||
msgstr "Abbrechen"
|
||||
|
||||
#: src/utils/create_details_window.py:259
|
||||
#: src/utils/create_details_window.py:269
|
||||
#: src/utils/create_details_window.py:275
|
||||
msgid "Couldn't Add Game"
|
||||
msgstr "Konnte Spiel nicht hinzufügen"
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:181
|
||||
msgid "Game title cannot be empty."
|
||||
msgstr "Spieltitel kann nicht leer sein."
|
||||
|
||||
#: src/details_window.py:153 src/details_window.py:189
|
||||
msgid "Executable cannot be empty."
|
||||
msgstr "Ausführbare Datei darf nicht leer sein."
|
||||
|
||||
#: src/details_window.py:180 src/details_window.py:188
|
||||
#: src/utils/create_details_window.py:261
|
||||
#: src/utils/create_details_window.py:299
|
||||
#: src/utils/create_details_window.py:307
|
||||
msgid "Couldn't Apply Preferences"
|
||||
msgstr "Einstellungen konnten nicht angewendet werden"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:138
|
||||
msgid "{} launched"
|
||||
msgstr "{} gestartet"
|
||||
#: src/utils/create_details_window.py:269
|
||||
#: src/utils/create_details_window.py:300
|
||||
msgid "Game title cannot be empty."
|
||||
msgstr "Spieltitel kann nicht leer sein."
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:152
|
||||
msgid "{} hidden"
|
||||
msgstr "{} versteckt"
|
||||
|
||||
#: src/game.py:152
|
||||
msgid "{} unhidden"
|
||||
msgstr "{} unversteckt"
|
||||
|
||||
#: src/game.py:169
|
||||
msgid "{} removed"
|
||||
msgstr "{} entfernt"
|
||||
|
||||
#: src/preferences.py:111
|
||||
msgid "All games removed"
|
||||
msgstr "Alle Spiele entfernt"
|
||||
|
||||
#: src/preferences.py:159
|
||||
msgid ""
|
||||
"An API key is required to use SteamGridDB. You can generate one {}here{}."
|
||||
msgstr ""
|
||||
"Für die Nutzung von SteamGridDB ist ein API-Schlüssel erforderlich. Sie "
|
||||
"können ihn {}hier{} generieren."
|
||||
|
||||
#: src/preferences.py:284
|
||||
#, fuzzy
|
||||
#| msgid "Installation Not Found"
|
||||
msgid "Installation Not Found"
|
||||
msgstr "Installation nicht gefunden"
|
||||
|
||||
#: src/preferences.py:286
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} data directory."
|
||||
msgid "Select a valid directory."
|
||||
msgstr "Wähle das Datenverzeichnis von {} aus."
|
||||
|
||||
#: src/preferences.py:348
|
||||
msgid "Invalid Directory"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:352
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} data directory."
|
||||
msgid "Select the {} cache directory."
|
||||
msgstr "Wähle das Datenverzeichnis von {} aus."
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:355
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} configuration directory."
|
||||
msgid "Select the {} configuration directory."
|
||||
msgstr "Wähle das Konfigurationsverzeichnis von {} aus."
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:358
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} data directory."
|
||||
msgid "Select the {} data directory."
|
||||
msgstr "Wähle das Datenverzeichnis von {} aus."
|
||||
|
||||
#: src/preferences.py:364
|
||||
msgid "Set Location"
|
||||
msgstr "Ort festlegen"
|
||||
#: src/utils/create_details_window.py:275
|
||||
#: src/utils/create_details_window.py:308
|
||||
msgid "Executable cannot be empty."
|
||||
msgstr "Ausführbare Datei darf nicht leer sein."
|
||||
|
||||
#: src/utils/create_dialog.py:25
|
||||
msgid "Dismiss"
|
||||
msgstr "Verstanden"
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:47
|
||||
#, fuzzy
|
||||
#| msgid "Couldn't Connect to SteamGridDB"
|
||||
msgid "Couldn't Authenticate SteamGridDB"
|
||||
#: src/utils/importer.py:42
|
||||
msgid "Importing Games…"
|
||||
msgstr "Spiele werden importiert…"
|
||||
|
||||
#: src/utils/importer.py:77
|
||||
msgid "Importing Covers…"
|
||||
msgstr "Spielecover werden importiert…"
|
||||
|
||||
#: src/utils/importer.py:92
|
||||
msgid "No new games were found on your system."
|
||||
msgstr "Keine neuen Spiele auf deinem System gefunden."
|
||||
|
||||
#: src/utils/importer.py:100
|
||||
msgid "Game Imported"
|
||||
msgstr "Spiel Importiert"
|
||||
|
||||
#: src/utils/importer.py:101
|
||||
msgid "Successfully imported 1 game."
|
||||
msgstr "Erfolgreich 1 Spiel importiert."
|
||||
|
||||
#: src/utils/importer.py:107
|
||||
msgid "Games Imported"
|
||||
msgstr "Spiele importiert"
|
||||
|
||||
#. The variable is the number of games
|
||||
#: src/utils/importer.py:109
|
||||
msgid "Successfully imported {} games."
|
||||
msgstr "Erfolgreich {} Spiele importiert."
|
||||
|
||||
#: src/utils/importer.py:120 src/utils/steamgriddb.py:113
|
||||
msgid "Couldn't Connect to SteamGridDB"
|
||||
msgstr "Verbindung zu SteamGridDB konnte nicht hergestellt werden"
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:48
|
||||
msgid "Verify your API key in preferences"
|
||||
#: src/utils/importer.py:145
|
||||
msgid ""
|
||||
"Looks like you have multiple Steam libraries. Would you like to add them in "
|
||||
"preferences?"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Cache Not Found"
|
||||
#~ msgid "Directory not Valid"
|
||||
#~ msgstr "Cache nicht gefunden"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Confirm"
|
||||
#~ msgid "Configuration"
|
||||
#~ msgstr "Bestätigen"
|
||||
|
||||
#~ msgid "Steam Install Location"
|
||||
#~ msgstr "Steam-Installationsort"
|
||||
|
||||
#~ msgid "Lutris Install Location"
|
||||
#~ msgstr "Lutris-Installationsort"
|
||||
|
||||
#~ msgid "Heroic Install Location"
|
||||
#~ msgstr "Heroic-Installationsort"
|
||||
|
||||
#~ msgid "Bottles Install Location"
|
||||
#~ msgstr "Bottles-Installationsort"
|
||||
|
||||
#~ msgid "Today"
|
||||
#~ msgstr "Heute"
|
||||
|
||||
#~ msgid "Yesterday"
|
||||
#~ msgstr "Gestern"
|
||||
|
||||
#~ msgid "Select the Lutris cache directory."
|
||||
#~ msgstr "Wähle das Lutris-Cache-Verzeichnis aus."
|
||||
|
||||
#~ msgid "Importing Games…"
|
||||
#~ msgstr "Spiele werden importiert…"
|
||||
|
||||
#~ msgid "Importing Covers…"
|
||||
#~ msgstr "Spielecover werden importiert…"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "No Games Found"
|
||||
#~ msgid "No new games found"
|
||||
#~ msgstr "Keine Spiele gefunden"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Game Imported"
|
||||
#~ msgid "1 game imported"
|
||||
#~ msgstr "Spiel Importiert"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Games Imported"
|
||||
#~ msgid "{} games imported"
|
||||
#~ msgstr "Spiele importiert"
|
||||
|
||||
#~ msgid "Directory to use when importing games"
|
||||
#~ msgstr "Verzeichnis, das beim Importieren von Spielen verwendet wird"
|
||||
|
||||
#~ msgid "Extra Steam Libraries"
|
||||
#~ msgstr "Extra Steam-Bibliotheken"
|
||||
|
||||
#~ msgid "Select other directories where you have Steam games installed"
|
||||
#~ msgstr ""
|
||||
#~ "Wähle andere Verzeichnisse in denen du Steam-Spiele installiert hast"
|
||||
|
||||
#~ msgid "Clear"
|
||||
#~ msgstr "Löchen"
|
||||
|
||||
#~ msgid "Directory to use when importing game covers"
|
||||
#~ msgstr "Verzeichnis für den Import von Spiel-Covern"
|
||||
|
||||
#~ msgid "Details"
|
||||
#~ msgstr "Details"
|
||||
|
||||
#~ msgid "No new games were found on your system."
|
||||
#~ msgstr "Keine neuen Spiele auf deinem System gefunden."
|
||||
|
||||
#~ msgid "Successfully imported 1 game."
|
||||
#~ msgstr "Erfolgreich 1 Spiel importiert."
|
||||
|
||||
#~ msgid "Successfully imported {} games."
|
||||
#~ msgstr "Erfolgreich {} Spiele importiert."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Looks like you have multiple Steam libraries. Would you like to add them "
|
||||
#~ "in preferences?"
|
||||
#~ msgstr ""
|
||||
#~ "Sieht aus als hättest du mehrere Steam-Bibliotheken. Möchtest du sie in "
|
||||
#~ "den Einstellungen hinzufügen?"
|
||||
"Sieht aus als hättest du mehrere Steam-Bibliotheken. Möchtest du sie in den "
|
||||
"Einstellungen hinzufügen?"
|
||||
|
||||
#~ msgid "Launch your games"
|
||||
#~ msgstr "Starte deine Spiele"
|
||||
|
||||
625
po/el.po
@@ -1,625 +0,0 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR kramo
|
||||
# This file is distributed under the same license as the Cartridges package.
|
||||
# yiannis ioannides <sub@wai.ai>, 2023.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cartridges\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-05 14:36+0200\n"
|
||||
"PO-Revision-Date: 2023-05-29 18:48+0000\n"
|
||||
"Last-Translator: yiannis ioannides <sub@wai.ai>\n"
|
||||
"Language-Team: Greek <https://hosted.weblate.org/projects/cartridges/"
|
||||
"cartridges/el/>\n"
|
||||
"Language: el\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 4.18-dev\n"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:3
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:47
|
||||
#: src/main.py:162
|
||||
msgid "Cartridges"
|
||||
msgstr "Κασέτες"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:4
|
||||
msgid "Game Launcher"
|
||||
msgstr "Πρόγραμμα Εκκίνησης Παιχνιδιών"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:5
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:7
|
||||
msgid "Launch all your games"
|
||||
msgstr "Εκκινήστε όλα σας τα παιχνίδια"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:11
|
||||
msgid "gaming;launcher;steam;lutris;heroic;bottles;itch;"
|
||||
msgstr "gaming;εκκινητής;steam;lutris;heroic;bottles;itch;"
|
||||
|
||||
#: 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 ""
|
||||
"Οι Κασέτες είναι ένας απλός εκκινητής παιχνιδιών για όλα σας τα παιχνίδια. "
|
||||
"Υποστηρίζει την εισαγωγή παιχνιδιών από το Steam, Heroic και άλλες "
|
||||
"πλατφόρμες χωρίς σύνδεση να είναι απαραίτητη. Μπορείτε να ταξινομήσετε και "
|
||||
"να κρύψετε τα παιχνίδια σας, καθώς και να κατεβάσετε τα εξώφυλλα τους από το "
|
||||
"SteamGridDB."
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:30
|
||||
msgid "Library"
|
||||
msgstr "Βιβλιοθήκη"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 src/details_window.py:67
|
||||
msgid "Edit Game Details"
|
||||
msgstr "Επεξεργασία Λεπτομερειών Παιχνιδιού"
|
||||
|
||||
#: 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-window.blp:25
|
||||
msgid "Cancel"
|
||||
msgstr "Ακύρωση"
|
||||
|
||||
#: data/gtk/details-window.blp:57
|
||||
msgid "New Cover"
|
||||
msgstr "Νέο Εξώφυλλο"
|
||||
|
||||
#: data/gtk/details-window.blp:75
|
||||
msgid "Delete Cover"
|
||||
msgstr "Διαγραφή Εξώφυλλου"
|
||||
|
||||
#: data/gtk/details-window.blp:101 data/gtk/details-window.blp:106
|
||||
#: data/gtk/game.blp:80
|
||||
msgid "Title"
|
||||
msgstr "Τίτλος"
|
||||
|
||||
#: data/gtk/details-window.blp:102
|
||||
msgid "The title of the game"
|
||||
msgstr "Τίτλος Παιχνιδιού"
|
||||
|
||||
#: 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-window.blp:124
|
||||
msgid "File to open or command to run when launching the game"
|
||||
msgstr ""
|
||||
"Αρχείο προς άνοιγμα ή εντολή προς εκτέλεση κατά την εκκίνηση παιχνιδιού"
|
||||
|
||||
#: data/gtk/details-window.blp:130
|
||||
msgid "More Info"
|
||||
msgstr "Περισσότερες Πληροφορίες"
|
||||
|
||||
#: data/gtk/game.blp:102 data/gtk/game.blp:121 data/gtk/window.blp:195
|
||||
msgid "Edit"
|
||||
msgstr "Επεξεργασία"
|
||||
|
||||
#: data/gtk/game.blp:107 src/window.py:171
|
||||
msgid "Hide"
|
||||
msgstr "Απόκρυψη"
|
||||
|
||||
#: 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:126 src/window.py:173
|
||||
msgid "Unhide"
|
||||
msgstr "Φανέρωση"
|
||||
|
||||
#: data/gtk/help-overlay.blp:11 data/gtk/preferences.blp:9
|
||||
msgid "General"
|
||||
msgstr "Γενικά"
|
||||
|
||||
#: 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 "Εύρεση"
|
||||
|
||||
#: data/gtk/help-overlay.blp:24
|
||||
msgid "Show preferences"
|
||||
msgstr "Εμφάνιση προτιμήσεων"
|
||||
|
||||
#: data/gtk/help-overlay.blp:29
|
||||
msgid "Shortcuts"
|
||||
msgstr "Συντομεύσεις"
|
||||
|
||||
#: data/gtk/help-overlay.blp:34 src/game.py:102 src/preferences.py:112
|
||||
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:48
|
||||
msgid "Add new game"
|
||||
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 "Remove game"
|
||||
msgstr "Αφαίρεση παιχνιδιού"
|
||||
|
||||
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:268
|
||||
msgid "Behavior"
|
||||
msgstr "Συμπεριφορά"
|
||||
|
||||
#: data/gtk/preferences.blp:16
|
||||
msgid "Exit After Launching Games"
|
||||
msgstr "Έξοδος μετά την εκκίνηση παιχνιδιών"
|
||||
|
||||
#: data/gtk/preferences.blp:25
|
||||
msgid "Cover Image Launches Game"
|
||||
msgstr "Εξώφυλλο εκκινεί το παιχνίδι"
|
||||
|
||||
#: data/gtk/preferences.blp:26
|
||||
msgid "Swaps the behavior of the cover image and the play button"
|
||||
msgstr "Αντικατάσταση συμπεριφοράς εξωφύλλου και του κουμπιού αναπαραγωγής"
|
||||
|
||||
#: data/gtk/preferences.blp:36 src/details_window.py:81
|
||||
msgid "Images"
|
||||
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 "Αφαίρεση Όλων Των Παιχνιδιών"
|
||||
|
||||
#: data/gtk/preferences.blp:85 data/gtk/window.blp:27 data/gtk/window.blp:442
|
||||
msgid "Import"
|
||||
msgstr "Εισαγωγή"
|
||||
|
||||
#: data/gtk/preferences.blp:89
|
||||
msgid "Sources"
|
||||
msgstr "Πηγές"
|
||||
|
||||
#: data/gtk/preferences.blp:92
|
||||
msgid "Steam"
|
||||
msgstr "Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:96 data/gtk/preferences.blp:110
|
||||
#: data/gtk/preferences.blp:151 data/gtk/preferences.blp:192
|
||||
#: data/gtk/preferences.blp:206 data/gtk/preferences.blp:220
|
||||
#: data/gtk/preferences.blp:234
|
||||
#, fuzzy
|
||||
#| msgid "itch Install Location"
|
||||
msgid "Install Location"
|
||||
msgstr "Τοποθεσία Εγκατάστασης itch"
|
||||
|
||||
#: data/gtk/preferences.blp:106
|
||||
msgid "Lutris"
|
||||
msgstr "Lutris"
|
||||
|
||||
#: data/gtk/preferences.blp:119
|
||||
#, fuzzy
|
||||
#| msgid "Lutris Cache Location"
|
||||
msgid "Cache Location"
|
||||
msgstr "Τοποθεσία cache του Lutris"
|
||||
|
||||
#: data/gtk/preferences.blp:128
|
||||
msgid "Import Steam Games"
|
||||
msgstr "Εισαγωγή Παιχνιδιών Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:137
|
||||
#, fuzzy
|
||||
#| msgid "Import Steam Games"
|
||||
msgid "Import Flatpak Games"
|
||||
msgstr "Εισαγωγή Παιχνιδιών Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:147
|
||||
msgid "Heroic"
|
||||
msgstr "Heroic"
|
||||
|
||||
#: data/gtk/preferences.blp:160
|
||||
msgid "Import Epic Games"
|
||||
msgstr "Εισαγωγή Παιχνιδιών Epic"
|
||||
|
||||
#: data/gtk/preferences.blp:169
|
||||
msgid "Import GOG Games"
|
||||
msgstr "Εισαγωγή Παιχνιδιών GOG"
|
||||
|
||||
#: data/gtk/preferences.blp:178
|
||||
msgid "Import Sideloaded Games"
|
||||
msgstr "Εισαγωγή Παιχνιδιών Μέσω Sideloading"
|
||||
|
||||
#: data/gtk/preferences.blp:188
|
||||
msgid "Bottles"
|
||||
msgstr "Bottles"
|
||||
|
||||
#: data/gtk/preferences.blp:202
|
||||
msgid "itch"
|
||||
msgstr "itch"
|
||||
|
||||
#: data/gtk/preferences.blp:216
|
||||
msgid "Legendary"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:230
|
||||
msgid "Flatpak"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:243
|
||||
#, fuzzy
|
||||
#| msgid "Game Launcher"
|
||||
msgid "Import Game Launchers"
|
||||
msgstr "Πρόγραμμα Εκκίνησης Παιχνιδιών"
|
||||
|
||||
#: data/gtk/preferences.blp:256
|
||||
msgid "SteamGridDB"
|
||||
msgstr "SteamGridDB"
|
||||
|
||||
#: data/gtk/preferences.blp:260
|
||||
msgid "Authentication"
|
||||
msgstr "Επιβεβαίωση"
|
||||
|
||||
#: data/gtk/preferences.blp:263
|
||||
msgid "API Key"
|
||||
msgstr "Κλειδί API"
|
||||
|
||||
#: data/gtk/preferences.blp:271
|
||||
msgid "Use SteamGridDB"
|
||||
msgstr "Χρήση SteamGridDB"
|
||||
|
||||
#: data/gtk/preferences.blp:272
|
||||
msgid "Download images when adding or importing games"
|
||||
msgstr "Λήψη εικόνων κατά τη διάρκεια πρόσθεσης ή εισαγωγής παιχνιδιών"
|
||||
|
||||
#: data/gtk/preferences.blp:281
|
||||
msgid "Prefer Over Official Images"
|
||||
msgstr "Προτίμηση Επίσημων Εικόνων"
|
||||
|
||||
#: data/gtk/preferences.blp:290
|
||||
msgid "Prefer Animated Images"
|
||||
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:64 data/gtk/window.blp:304
|
||||
msgid "Back"
|
||||
msgstr "Πίσω"
|
||||
|
||||
#: data/gtk/window.blp:121
|
||||
msgid "Game Title"
|
||||
msgstr "Τίτλος παιχνιδιού"
|
||||
|
||||
#: data/gtk/window.blp:176
|
||||
msgid "Play"
|
||||
msgstr "Παίξτε"
|
||||
|
||||
#: 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: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:180
|
||||
msgid "translator_credits"
|
||||
msgstr "Yiannis Ioannides"
|
||||
|
||||
#. The variable is the date when the game was added
|
||||
#: src/window.py:194
|
||||
msgid "Added: {}"
|
||||
msgstr "Προστέθηκε: {}"
|
||||
|
||||
#: src/window.py:197
|
||||
msgid "Never"
|
||||
msgstr "Ποτέ"
|
||||
|
||||
#. The variable is the date when the game was last played
|
||||
#: src/window.py:201
|
||||
msgid "Last played: {}"
|
||||
msgstr "Τελευταία αναπαραγωγή: {}"
|
||||
|
||||
#: src/details_window.py:72
|
||||
msgid "Apply"
|
||||
msgstr "Εφαρμογή"
|
||||
|
||||
#: src/details_window.py:78
|
||||
msgid "Add New Game"
|
||||
msgstr "Προσθήκη νέου παιχνιδιού"
|
||||
|
||||
#: src/details_window.py:79
|
||||
msgid "Confirm"
|
||||
msgstr "Επιβεβαίωση"
|
||||
|
||||
#. Translate this string as you would translate "file"
|
||||
#: src/details_window.py:92
|
||||
msgid "file.txt"
|
||||
msgstr "αρχειο.txt"
|
||||
|
||||
#. As in software
|
||||
#: src/details_window.py:94
|
||||
msgid "program"
|
||||
msgstr "Πρόγραμμα"
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:99 src/details_window.py:101
|
||||
msgid "C:\\path\\to\\{}"
|
||||
msgstr "C:\\προς\\φάκελο\\{}"
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:105 src/details_window.py:107
|
||||
msgid "/path/to/{}"
|
||||
msgstr "/προς/φάκελο/{}"
|
||||
|
||||
#: src/details_window.py:112
|
||||
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"
|
||||
"Αν η διεύθυνση φακέλου περιέχει κενά, φροντίστε να την περικλείσετε σε διπλά "
|
||||
"εισαγωγικά!"
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:153
|
||||
msgid "Couldn't Add Game"
|
||||
msgstr "Αδυναμία προσθήκης παιχνιδιού"
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:181
|
||||
msgid "Game title cannot be empty."
|
||||
msgstr "Ο τίτλος παιχνιδιού δεν μπορεί να είναι κενός."
|
||||
|
||||
#: src/details_window.py:153 src/details_window.py:189
|
||||
msgid "Executable cannot be empty."
|
||||
msgstr "Η εφαρμογή δεν μπορεί να είναι κενή."
|
||||
|
||||
#: src/details_window.py:180 src/details_window.py:188
|
||||
msgid "Couldn't Apply Preferences"
|
||||
msgstr "Αδυναμία Εφαρμογής Προτιμήσεων"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:138
|
||||
msgid "{} launched"
|
||||
msgstr "{} εκκινήθη"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:152
|
||||
msgid "{} hidden"
|
||||
msgstr "{} αποκρύφθηκε"
|
||||
|
||||
#: src/game.py:152
|
||||
msgid "{} unhidden"
|
||||
msgstr "{} φανερώθηκε"
|
||||
|
||||
#: src/game.py:169
|
||||
msgid "{} removed"
|
||||
msgstr "{} αφαιρέθηκε"
|
||||
|
||||
#: src/preferences.py:111
|
||||
msgid "All games removed"
|
||||
msgstr "Όλα τα παιχνίδια αφαιρέθηκαν"
|
||||
|
||||
#: src/preferences.py:159
|
||||
msgid ""
|
||||
"An API key is required to use SteamGridDB. You can generate one {}here{}."
|
||||
msgstr ""
|
||||
"Για τη χρήση του SteamGridDB απαιτείται ένα κλειδί API. Μπορείτε να "
|
||||
"δημιουργήσετε ένα {}εδώ{}."
|
||||
|
||||
#: src/preferences.py:284
|
||||
#, fuzzy
|
||||
#| msgid "Installation Not Found"
|
||||
msgid "Installation Not Found"
|
||||
msgstr "Η εγκατάσταση δεν βρέθηκε"
|
||||
|
||||
#: src/preferences.py:286
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} data directory."
|
||||
msgid "Select a valid directory."
|
||||
msgstr "Επιλέξτε τον κατάλογο δεδομένων {}."
|
||||
|
||||
#: src/preferences.py:348
|
||||
msgid "Invalid Directory"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:352
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} data directory."
|
||||
msgid "Select the {} cache directory."
|
||||
msgstr "Επιλέξτε τον κατάλογο δεδομένων {}."
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:355
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} configuration directory."
|
||||
msgid "Select the {} configuration directory."
|
||||
msgstr "Επιλέξτε τον κατάλογο διαμόρφωσης {}."
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:358
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} data directory."
|
||||
msgid "Select the {} data directory."
|
||||
msgstr "Επιλέξτε τον κατάλογο δεδομένων {}."
|
||||
|
||||
#: src/preferences.py:364
|
||||
msgid "Set Location"
|
||||
msgstr "Ορίστε Τοποθεσία"
|
||||
|
||||
#: src/utils/create_dialog.py:25
|
||||
msgid "Dismiss"
|
||||
msgstr "Απόρριψη"
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:47
|
||||
#, fuzzy
|
||||
#| msgid "Couldn't Connect to SteamGridDB"
|
||||
msgid "Couldn't Authenticate SteamGridDB"
|
||||
msgstr "Η σύνδεση στο SteamGridDB δεν μπόρεσε να πραγματοποιηθεί"
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:48
|
||||
msgid "Verify your API key in preferences"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Cache Not Found"
|
||||
#~ msgid "Directory not Valid"
|
||||
#~ msgstr "Τα cache δεν βρέθηκαν"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Confirm"
|
||||
#~ msgid "Configuration"
|
||||
#~ msgstr "Επιβεβαίωση"
|
||||
|
||||
#~ msgid "Steam Install Location"
|
||||
#~ msgstr "Τοποθεσία Εγκατάστασης Steam"
|
||||
|
||||
#~ msgid "Lutris Install Location"
|
||||
#~ msgstr "Τοποθεσία Εγκατάστασης Lutris"
|
||||
|
||||
#~ msgid "Heroic Install Location"
|
||||
#~ msgstr "Τοποθεσία Εγκατάστασης Heroic"
|
||||
|
||||
#~ msgid "Bottles Install Location"
|
||||
#~ msgstr "Τοποθεσία Εγκατάστασης Bottles"
|
||||
|
||||
#~ msgid "Today"
|
||||
#~ msgstr "Σήμερα"
|
||||
|
||||
#~ msgid "Yesterday"
|
||||
#~ msgstr "Χθες"
|
||||
|
||||
#~ msgid "Select the Lutris cache directory."
|
||||
#~ msgstr "Επιλέξτε τη τοποθεσία cache του Lutris."
|
||||
|
||||
#~ msgid "Importing Games…"
|
||||
#~ msgstr "Εισαγωγή παιχνιδιών…"
|
||||
|
||||
#~ msgid "Importing Covers…"
|
||||
#~ msgstr "Εισαγωγή εξώφυλλων…"
|
||||
|
||||
#~ msgid "No new games found"
|
||||
#~ msgstr "Δεν βρέθηκαν νέα παιχνίδια"
|
||||
|
||||
#~ msgid "1 game imported"
|
||||
#~ msgstr "1 παιχνίδι εισήχθη"
|
||||
|
||||
#~ msgid "{} games imported"
|
||||
#~ msgstr "{} παιχνίδια εισήχθησαν"
|
||||
555
po/es.po
@@ -8,8 +8,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: cartridges\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-05 14:36+0200\n"
|
||||
"PO-Revision-Date: 2023-07-04 17:29+0000\n"
|
||||
"POT-Creation-Date: 2023-04-11 23:33+0200\n"
|
||||
"PO-Revision-Date: 2023-04-14 12:29+0000\n"
|
||||
"Last-Translator: gallegonovato <fran-carro@hotmail.es>\n"
|
||||
"Language-Team: Spanish <https://hosted.weblate.org/projects/cartridges/"
|
||||
"cartridges/es/>\n"
|
||||
@@ -18,11 +18,11 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.0-dev\n"
|
||||
"X-Generator: Weblate 4.17-dev\n"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:3
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:47
|
||||
#: src/main.py:162
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:29
|
||||
#: src/main.py:119
|
||||
msgid "Cartridges"
|
||||
msgstr "Cartuchos"
|
||||
|
||||
@@ -35,10 +35,6 @@ msgstr "Lanzador de juegos"
|
||||
msgid "Launch all your games"
|
||||
msgstr "Lance todos sus juegos"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:11
|
||||
msgid "gaming;launcher;steam;lutris;heroic;bottles;itch;"
|
||||
msgstr "gaming;launcher;steam;lutris;heroic;bottles;itch;"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:9
|
||||
msgid ""
|
||||
"Cartridges is a simple game launcher for all of your games. It has support "
|
||||
@@ -51,78 +47,43 @@ msgstr ""
|
||||
"una cuenta. Puedes ordenar y ocultar juegos, o descargar carátulas de "
|
||||
"SteamGridDB."
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:30
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:22
|
||||
msgid "Library"
|
||||
msgstr "Biblioteca"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 src/details_window.py:67
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:26
|
||||
#: src/utils/create_details_window.py:87
|
||||
msgid "Edit Game Details"
|
||||
msgstr "Editar detalles del juego"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:38 data/gtk/window.blp:71
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:30 data/gtk/window.blp:51
|
||||
msgid "Game Details"
|
||||
msgstr "Detalles del juego"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:42 data/gtk/window.blp:416
|
||||
#: src/details_window.py:239
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 data/gtk/window.blp:402
|
||||
#: src/utils/importer.py:94 src/utils/importer.py:123 src/utils/importer.py:148
|
||||
#: src/utils/steamgriddb.py:116
|
||||
msgid "Preferences"
|
||||
msgstr "Preferencias"
|
||||
|
||||
#: data/gtk/details-window.blp:25
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#: data/gtk/details-window.blp:57
|
||||
msgid "New Cover"
|
||||
msgstr "Nueva caratula"
|
||||
|
||||
#: data/gtk/details-window.blp:75
|
||||
msgid "Delete Cover"
|
||||
msgstr "Borrar la caratula"
|
||||
|
||||
#: data/gtk/details-window.blp:101 data/gtk/details-window.blp:106
|
||||
#: data/gtk/game.blp:80
|
||||
#: data/gtk/game.blp:67 src/utils/create_details_window.py:129
|
||||
msgid "Title"
|
||||
msgstr "Título"
|
||||
|
||||
#: data/gtk/details-window.blp:102
|
||||
msgid "The title of the game"
|
||||
msgstr "El título del juego"
|
||||
|
||||
#: data/gtk/details-window.blp:112 data/gtk/details-window.blp:117
|
||||
msgid "Developer"
|
||||
msgstr "Desarrollador"
|
||||
|
||||
#: data/gtk/details-window.blp:113
|
||||
msgid "The developer or publisher (optional)"
|
||||
msgstr "El desarrollador o editor (opcional)"
|
||||
|
||||
#: data/gtk/details-window.blp:123 data/gtk/details-window.blp:155
|
||||
msgid "Executable"
|
||||
msgstr "Ejecutable"
|
||||
|
||||
#: data/gtk/details-window.blp:124
|
||||
msgid "File to open or command to run when launching the game"
|
||||
msgstr "Archivo a abrir o comando a ejecutar al iniciar el juego"
|
||||
|
||||
#: data/gtk/details-window.blp:130
|
||||
msgid "More Info"
|
||||
msgstr "Más información"
|
||||
|
||||
#: data/gtk/game.blp:102 data/gtk/game.blp:121 data/gtk/window.blp:195
|
||||
#: data/gtk/game.blp:89 data/gtk/game.blp:108 data/gtk/window.blp:170
|
||||
msgid "Edit"
|
||||
msgstr "Editar"
|
||||
|
||||
#: data/gtk/game.blp:107 src/window.py:171
|
||||
#: data/gtk/game.blp:94 src/window.py:286
|
||||
msgid "Hide"
|
||||
msgstr "Ocultar"
|
||||
|
||||
#: data/gtk/game.blp:112 data/gtk/game.blp:131 data/gtk/preferences.blp:56
|
||||
#: data/gtk/window.blp:209
|
||||
#: data/gtk/game.blp:99 data/gtk/game.blp:118 data/gtk/preferences.blp:56
|
||||
#: data/gtk/window.blp:186
|
||||
msgid "Remove"
|
||||
msgstr "Eliminar"
|
||||
|
||||
#: data/gtk/game.blp:126 src/window.py:173
|
||||
#: data/gtk/game.blp:113 src/window.py:283
|
||||
msgid "Unhide"
|
||||
msgstr "Mostrar"
|
||||
|
||||
@@ -134,8 +95,8 @@ msgstr "General"
|
||||
msgid "Quit"
|
||||
msgstr "Salir"
|
||||
|
||||
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:217 data/gtk/window.blp:257
|
||||
#: data/gtk/window.blp:323
|
||||
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:205 data/gtk/window.blp:249
|
||||
#: data/gtk/window.blp:312
|
||||
msgid "Search"
|
||||
msgstr "Buscar"
|
||||
|
||||
@@ -147,7 +108,8 @@ msgstr "Mostrar preferencias"
|
||||
msgid "Shortcuts"
|
||||
msgstr "Atajos"
|
||||
|
||||
#: data/gtk/help-overlay.blp:34 src/game.py:102 src/preferences.py:112
|
||||
#: data/gtk/help-overlay.blp:34 src/main.py:186 src/main.py:242
|
||||
#: src/preferences.py:133
|
||||
msgid "Undo"
|
||||
msgstr "Deshacer"
|
||||
|
||||
@@ -175,7 +137,7 @@ msgstr "Mostrar juegos ocultos"
|
||||
msgid "Remove game"
|
||||
msgstr "Eliminar juego"
|
||||
|
||||
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:268
|
||||
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:235
|
||||
msgid "Behavior"
|
||||
msgstr "Conducta"
|
||||
|
||||
@@ -192,7 +154,7 @@ msgid "Swaps the behavior of the cover image and the play button"
|
||||
msgstr ""
|
||||
"Cambia el comportamiento de la imagen de portada y del botón de reproducción"
|
||||
|
||||
#: data/gtk/preferences.blp:36 src/details_window.py:81
|
||||
#: data/gtk/preferences.blp:36 src/utils/create_details_window.py:101
|
||||
msgid "Images"
|
||||
msgstr "Imágenes"
|
||||
|
||||
@@ -212,241 +174,343 @@ msgstr "Zona peligrosa"
|
||||
msgid "Remove All Games"
|
||||
msgstr "Quitar todos los juegos"
|
||||
|
||||
#: data/gtk/preferences.blp:85 data/gtk/window.blp:27 data/gtk/window.blp:442
|
||||
#: data/gtk/preferences.blp:69 data/gtk/window.blp:427
|
||||
msgid "Import"
|
||||
msgstr "Importar"
|
||||
|
||||
#: data/gtk/preferences.blp:89
|
||||
#: data/gtk/preferences.blp:73
|
||||
msgid "Sources"
|
||||
msgstr "Fuentes"
|
||||
|
||||
#: data/gtk/preferences.blp:92
|
||||
#: data/gtk/preferences.blp:76
|
||||
msgid "Steam"
|
||||
msgstr "Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:96 data/gtk/preferences.blp:110
|
||||
#: data/gtk/preferences.blp:151 data/gtk/preferences.blp:192
|
||||
#: data/gtk/preferences.blp:206 data/gtk/preferences.blp:220
|
||||
#: data/gtk/preferences.blp:234
|
||||
msgid "Install Location"
|
||||
msgstr "Lugar de la instalación"
|
||||
#: data/gtk/preferences.blp:80
|
||||
msgid "Steam Install Location"
|
||||
msgstr "Ubicación de la instalación de Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:106
|
||||
#: data/gtk/preferences.blp:81 data/gtk/preferences.blp:119
|
||||
#: data/gtk/preferences.blp:153 data/gtk/preferences.blp:195
|
||||
#: data/gtk/preferences.blp:210
|
||||
msgid "Directory to use when importing games"
|
||||
msgstr "Directorio a usar para importar juegos"
|
||||
|
||||
#: data/gtk/preferences.blp:89 src/utils/importer.py:143
|
||||
msgid "Extra Steam Libraries"
|
||||
msgstr "Bibliotecas Steam adicionales"
|
||||
|
||||
#: data/gtk/preferences.blp:90
|
||||
msgid "Select other directories where you have Steam games installed"
|
||||
msgstr "Seleccione otros directorios donde tenga instalados juegos de Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:96
|
||||
msgid "Clear"
|
||||
msgstr "Limpiar"
|
||||
|
||||
#: data/gtk/preferences.blp:114
|
||||
msgid "Lutris"
|
||||
msgstr "Lutris"
|
||||
|
||||
#: data/gtk/preferences.blp:119
|
||||
msgid "Cache Location"
|
||||
msgstr "Localización de la caché"
|
||||
#: data/gtk/preferences.blp:118
|
||||
msgid "Lutris Install Location"
|
||||
msgstr "Ubicación de instalación de Lutris"
|
||||
|
||||
#: data/gtk/preferences.blp:128
|
||||
msgid "Lutris Cache Location"
|
||||
msgstr "Ubicación de la caché de Lutris"
|
||||
|
||||
#: data/gtk/preferences.blp:129
|
||||
msgid "Directory to use when importing game covers"
|
||||
msgstr "Directorio para usar al importar las carátulas de los juegos"
|
||||
|
||||
#: data/gtk/preferences.blp:138
|
||||
msgid "Import Steam Games"
|
||||
msgstr "Importar juegos de Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:137
|
||||
msgid "Import Flatpak Games"
|
||||
msgstr "Importar los juegos Flatpak"
|
||||
|
||||
#: data/gtk/preferences.blp:147
|
||||
#: data/gtk/preferences.blp:148
|
||||
msgid "Heroic"
|
||||
msgstr "Heroic"
|
||||
|
||||
#: data/gtk/preferences.blp:160
|
||||
#: data/gtk/preferences.blp:152
|
||||
msgid "Heroic Install Location"
|
||||
msgstr "Ubicación de la instalación de Heroic"
|
||||
|
||||
#: data/gtk/preferences.blp:162
|
||||
msgid "Import Epic Games"
|
||||
msgstr "Importar juegos de Epic"
|
||||
|
||||
#: data/gtk/preferences.blp:169
|
||||
#: data/gtk/preferences.blp:171
|
||||
msgid "Import GOG Games"
|
||||
msgstr "Importar juegos de GOG"
|
||||
|
||||
#: data/gtk/preferences.blp:178
|
||||
#: data/gtk/preferences.blp:180
|
||||
msgid "Import Sideloaded Games"
|
||||
msgstr "Importar juegos descargados"
|
||||
|
||||
#: data/gtk/preferences.blp:188
|
||||
#: data/gtk/preferences.blp:190
|
||||
msgid "Bottles"
|
||||
msgstr "Bottles"
|
||||
|
||||
#: data/gtk/preferences.blp:202
|
||||
#: data/gtk/preferences.blp:194
|
||||
msgid "Bottles Install Location"
|
||||
msgstr "Ubicación de instalación de Bottles"
|
||||
|
||||
#: data/gtk/preferences.blp:205
|
||||
msgid "itch"
|
||||
msgstr "itch"
|
||||
|
||||
#: data/gtk/preferences.blp:216
|
||||
msgid "Legendary"
|
||||
msgstr "Legendario"
|
||||
#: data/gtk/preferences.blp:209
|
||||
msgid "itch Install Location"
|
||||
msgstr "Ubicación de la instalación de itch"
|
||||
|
||||
#: data/gtk/preferences.blp:230
|
||||
msgid "Flatpak"
|
||||
msgstr "Flatpak"
|
||||
|
||||
#: data/gtk/preferences.blp:243
|
||||
msgid "Import Game Launchers"
|
||||
msgstr "Importar lanzadores de juegos"
|
||||
|
||||
#: data/gtk/preferences.blp:256
|
||||
#: data/gtk/preferences.blp:223
|
||||
msgid "SteamGridDB"
|
||||
msgstr "SteamGridDB"
|
||||
|
||||
#: data/gtk/preferences.blp:260
|
||||
#: data/gtk/preferences.blp:227
|
||||
msgid "Authentication"
|
||||
msgstr "Autentificación"
|
||||
|
||||
#: data/gtk/preferences.blp:263
|
||||
#: data/gtk/preferences.blp:230
|
||||
msgid "API Key"
|
||||
msgstr "Código API"
|
||||
|
||||
#: data/gtk/preferences.blp:271
|
||||
#: data/gtk/preferences.blp:238
|
||||
msgid "Use SteamGridDB"
|
||||
msgstr "Utiliza SteamGridDB"
|
||||
|
||||
#: data/gtk/preferences.blp:272
|
||||
#: data/gtk/preferences.blp:239
|
||||
msgid "Download images when adding or importing games"
|
||||
msgstr "Descargar las imágenes al añadir o importar juegos"
|
||||
|
||||
#: data/gtk/preferences.blp:281
|
||||
#: data/gtk/preferences.blp:248
|
||||
msgid "Prefer Over Official Images"
|
||||
msgstr "Preferir las imágenes oficiales"
|
||||
|
||||
#: data/gtk/preferences.blp:290
|
||||
#: data/gtk/preferences.blp:257
|
||||
msgid "Prefer Animated Images"
|
||||
msgstr "Prefiero las imágenes animadas"
|
||||
|
||||
#: data/gtk/window.blp:6 data/gtk/window.blp:14
|
||||
#: data/gtk/window.blp:6 src/utils/importer.py:91
|
||||
msgid "No Games Found"
|
||||
msgstr "No se han encontrado juegos"
|
||||
|
||||
#: data/gtk/window.blp:7 data/gtk/window.blp:15
|
||||
#: data/gtk/window.blp:7
|
||||
msgid "Try a different search."
|
||||
msgstr "Pruebe con otra búsqueda."
|
||||
|
||||
#: data/gtk/window.blp:21
|
||||
#: data/gtk/window.blp:14
|
||||
msgid "No Games"
|
||||
msgstr "No hay juegos"
|
||||
|
||||
#: data/gtk/window.blp:22
|
||||
#: data/gtk/window.blp:15
|
||||
msgid "Use the + button to add games."
|
||||
msgstr "Use el botón + para añadir juegos."
|
||||
|
||||
#: data/gtk/window.blp:40
|
||||
#: data/gtk/window.blp:22
|
||||
msgid "No Hidden Games"
|
||||
msgstr "No hay juegos ocultos"
|
||||
|
||||
#: data/gtk/window.blp:41
|
||||
#: data/gtk/window.blp:23
|
||||
msgid "Games you hide will appear here."
|
||||
msgstr "Los juegos que oculte aparecerán aquí."
|
||||
|
||||
#: data/gtk/window.blp:64 data/gtk/window.blp:304
|
||||
#: data/gtk/window.blp:44 data/gtk/window.blp:293
|
||||
msgid "Back"
|
||||
msgstr "Volver"
|
||||
|
||||
#: data/gtk/window.blp:121
|
||||
#: data/gtk/window.blp:100
|
||||
msgid "Game Title"
|
||||
msgstr "Título del juego"
|
||||
|
||||
#: data/gtk/window.blp:176
|
||||
#: data/gtk/window.blp:151 src/game.py:158
|
||||
msgid "Play"
|
||||
msgstr "Jugar"
|
||||
|
||||
#: data/gtk/window.blp:243 data/gtk/window.blp:435
|
||||
#: data/gtk/window.blp:235 data/gtk/window.blp:421
|
||||
msgid "Add Game"
|
||||
msgstr "Añadir juego"
|
||||
|
||||
#: data/gtk/window.blp:250 data/gtk/window.blp:316
|
||||
#: data/gtk/window.blp:242 data/gtk/window.blp:305
|
||||
msgid "Main Menu"
|
||||
msgstr "Menú principal"
|
||||
|
||||
#: data/gtk/window.blp:311
|
||||
#: data/gtk/window.blp:300
|
||||
msgid "Hidden Games"
|
||||
msgstr "Juegos ocultos"
|
||||
|
||||
#: data/gtk/window.blp:374
|
||||
#: data/gtk/window.blp:360
|
||||
msgid "Sort"
|
||||
msgstr "Ordenar"
|
||||
|
||||
#: data/gtk/window.blp:377
|
||||
#: data/gtk/window.blp:363
|
||||
msgid "A-Z"
|
||||
msgstr "A-Z"
|
||||
|
||||
#: data/gtk/window.blp:383
|
||||
#: data/gtk/window.blp:369
|
||||
msgid "Z-A"
|
||||
msgstr "Z-A"
|
||||
|
||||
#: data/gtk/window.blp:389
|
||||
#: data/gtk/window.blp:375
|
||||
msgid "Newest"
|
||||
msgstr "Más recientes"
|
||||
|
||||
#: data/gtk/window.blp:395
|
||||
#: data/gtk/window.blp:381
|
||||
msgid "Oldest"
|
||||
msgstr "Más antiguos"
|
||||
|
||||
#: data/gtk/window.blp:401
|
||||
#: data/gtk/window.blp:387
|
||||
msgid "Last Played"
|
||||
msgstr "Último jugado"
|
||||
|
||||
#: data/gtk/window.blp:408
|
||||
#: data/gtk/window.blp:394
|
||||
msgid "Show Hidden"
|
||||
msgstr "Mostrar ocultos"
|
||||
|
||||
#: data/gtk/window.blp:421
|
||||
#: data/gtk/window.blp:407
|
||||
msgid "Keyboard Shortcuts"
|
||||
msgstr "Atajos del teclado"
|
||||
|
||||
#: data/gtk/window.blp:426
|
||||
#: data/gtk/window.blp:412
|
||||
msgid "About Cartridges"
|
||||
msgstr "Acerca de Cartuchos"
|
||||
|
||||
#. Translators: Replace this with your name for it to show up in the about window
|
||||
#: src/main.py:180
|
||||
#: src/main.py:137
|
||||
msgid "translator_credits"
|
||||
msgstr "Óscar Fernández Díaz <oscfdezdz@tuta.io>"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:164
|
||||
msgid "{} launched"
|
||||
msgstr "{} comenzó"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:182
|
||||
msgid "{} hidden"
|
||||
msgstr "{} oculto"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:185
|
||||
msgid "{} unhidden"
|
||||
msgstr "{} visible"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:241
|
||||
msgid "{} removed"
|
||||
msgstr "{} eliminado"
|
||||
|
||||
#: src/window.py:262
|
||||
msgid "Today"
|
||||
msgstr "Hoy"
|
||||
|
||||
#: src/window.py:264
|
||||
msgid "Yesterday"
|
||||
msgstr "Ayer"
|
||||
|
||||
#. The variable is the date when the game was added
|
||||
#: src/window.py:194
|
||||
#: src/window.py:310
|
||||
msgid "Added: {}"
|
||||
msgstr "Añadido: {}"
|
||||
|
||||
#: src/window.py:197
|
||||
#: src/window.py:315
|
||||
msgid "Never"
|
||||
msgstr "Nunca"
|
||||
|
||||
#. The variable is the date when the game was last played
|
||||
#: src/window.py:201
|
||||
#: src/window.py:319
|
||||
msgid "Last played: {}"
|
||||
msgstr "Último jugado: {}"
|
||||
|
||||
#: src/details_window.py:72
|
||||
msgid "Apply"
|
||||
msgstr "Aplicar"
|
||||
#: src/game.py:156
|
||||
msgid "Details"
|
||||
msgstr "Detalles"
|
||||
|
||||
#: src/details_window.py:78
|
||||
#: src/preferences.py:54
|
||||
msgid "Installation Not Found"
|
||||
msgstr "No se encuentra la instalación"
|
||||
|
||||
#. The variable is the name of the game launcher
|
||||
#: src/preferences.py:56
|
||||
msgid "Select the {} configuration directory."
|
||||
msgstr "Selecciona el directorio de la configuración {}."
|
||||
|
||||
#. The variable is the name of the game launcher
|
||||
#: src/preferences.py:59
|
||||
msgid "Select the {} data directory."
|
||||
msgstr "Selecciona el directorio de los datos {}."
|
||||
|
||||
#: src/preferences.py:61 src/preferences.py:240
|
||||
msgid "Set Location"
|
||||
msgstr "Escoger la ubicación"
|
||||
|
||||
#: src/preferences.py:132
|
||||
msgid "All games removed"
|
||||
msgstr "Todos los juegos eliminados"
|
||||
|
||||
#: src/preferences.py:237
|
||||
msgid "Cache Not Found"
|
||||
msgstr "Caché no encontrada"
|
||||
|
||||
#: src/preferences.py:238
|
||||
msgid "Select the Lutris cache directory."
|
||||
msgstr "Selecciona el directorio de la caché de Lutris."
|
||||
|
||||
#: src/preferences.py:344
|
||||
msgid ""
|
||||
"An API key is required to use SteamGridDB. You can generate one {}here{}."
|
||||
msgstr ""
|
||||
"Se necesita una clave API para utilizar SteamGridDB. Puedes generar una {}"
|
||||
"aquí{}."
|
||||
|
||||
#: src/utils/create_details_window.py:81
|
||||
msgid "Add New Game"
|
||||
msgstr "Añadir juego nuevo"
|
||||
|
||||
#: src/details_window.py:79
|
||||
#: src/utils/create_details_window.py:85
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmar"
|
||||
|
||||
#: src/utils/create_details_window.py:96
|
||||
msgid "Apply"
|
||||
msgstr "Aplicar"
|
||||
|
||||
#: src/utils/create_details_window.py:130
|
||||
msgid "The title of the game"
|
||||
msgstr "El título del juego"
|
||||
|
||||
#: src/utils/create_details_window.py:135
|
||||
msgid "Developer"
|
||||
msgstr "Desarrollador"
|
||||
|
||||
#: src/utils/create_details_window.py:136
|
||||
msgid "The developer or publisher (optional)"
|
||||
msgstr "El desarrollador o editor (opcional)"
|
||||
|
||||
#. Translate this string as you would translate "file"
|
||||
#: src/details_window.py:92
|
||||
#: src/utils/create_details_window.py:147
|
||||
msgid "file.txt"
|
||||
msgstr "archivo.txt"
|
||||
|
||||
#. As in software
|
||||
#: src/details_window.py:94
|
||||
#: src/utils/create_details_window.py:149
|
||||
msgid "program"
|
||||
msgstr "programa"
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:99 src/details_window.py:101
|
||||
#: src/utils/create_details_window.py:154
|
||||
#: src/utils/create_details_window.py:156
|
||||
msgid "C:\\path\\to\\{}"
|
||||
msgstr "C:\\ruta\\hasta\\{}"
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:105 src/details_window.py:107
|
||||
#: src/utils/create_details_window.py:160
|
||||
#: src/utils/create_details_window.py:162
|
||||
msgid "/path/to/{}"
|
||||
msgstr "/ruta/hasta/{}"
|
||||
|
||||
#: src/details_window.py:112
|
||||
#: src/utils/create_details_window.py:166
|
||||
msgid ""
|
||||
"To launch the executable \"{}\", use the command:\n"
|
||||
"\n"
|
||||
@@ -468,180 +532,84 @@ msgstr ""
|
||||
"\n"
|
||||
"Si la ruta contiene espacios, ¡asegúrese de entrecomillarla!"
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:153
|
||||
#: src/utils/create_details_window.py:189
|
||||
msgid "Executable"
|
||||
msgstr "Ejecutable"
|
||||
|
||||
#: src/utils/create_details_window.py:190
|
||||
msgid "File to open or command to run when launching the game"
|
||||
msgstr "Archivo a abrir o comando a ejecutar al iniciar el juego"
|
||||
|
||||
#: src/utils/create_details_window.py:202
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#: src/utils/create_details_window.py:259
|
||||
#: src/utils/create_details_window.py:269
|
||||
#: src/utils/create_details_window.py:275
|
||||
msgid "Couldn't Add Game"
|
||||
msgstr "No se puede añadir el juego"
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:181
|
||||
msgid "Game title cannot be empty."
|
||||
msgstr "El título del juego no puede estar vacío."
|
||||
|
||||
#: src/details_window.py:153 src/details_window.py:189
|
||||
msgid "Executable cannot be empty."
|
||||
msgstr "El ejecutable no puede estar vacío."
|
||||
|
||||
#: src/details_window.py:180 src/details_window.py:188
|
||||
#: src/utils/create_details_window.py:261
|
||||
#: src/utils/create_details_window.py:299
|
||||
#: src/utils/create_details_window.py:307
|
||||
msgid "Couldn't Apply Preferences"
|
||||
msgstr "No se pudieron aplicar las preferencias"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:138
|
||||
msgid "{} launched"
|
||||
msgstr "{} comenzó"
|
||||
#: src/utils/create_details_window.py:269
|
||||
#: src/utils/create_details_window.py:300
|
||||
msgid "Game title cannot be empty."
|
||||
msgstr "El título del juego no puede estar vacío."
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:152
|
||||
msgid "{} hidden"
|
||||
msgstr "{} oculto"
|
||||
|
||||
#: src/game.py:152
|
||||
msgid "{} unhidden"
|
||||
msgstr "{} visible"
|
||||
|
||||
#: src/game.py:169
|
||||
msgid "{} removed"
|
||||
msgstr "{} eliminado"
|
||||
|
||||
#: src/preferences.py:111
|
||||
msgid "All games removed"
|
||||
msgstr "Todos los juegos eliminados"
|
||||
|
||||
#: src/preferences.py:159
|
||||
msgid ""
|
||||
"An API key is required to use SteamGridDB. You can generate one {}here{}."
|
||||
msgstr ""
|
||||
"Se necesita una clave API para utilizar SteamGridDB. Puedes generar una {}"
|
||||
"aquí{}."
|
||||
|
||||
#: src/preferences.py:284
|
||||
msgid "Installation Not Found"
|
||||
msgstr "Instalación no encontrada"
|
||||
|
||||
#: src/preferences.py:286
|
||||
msgid "Select a valid directory."
|
||||
msgstr "Selecciona un directorio válido."
|
||||
|
||||
#: src/preferences.py:348
|
||||
msgid "Invalid Directory"
|
||||
msgstr "Directorio incorrecto"
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:352
|
||||
msgid "Select the {} cache directory."
|
||||
msgstr "Seleccione el directorio de la caché {}."
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:355
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} installation directory."
|
||||
msgid "Select the {} configuration directory."
|
||||
msgstr "Selecciona el directorio de la instalación {}."
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:358
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} cache directory."
|
||||
msgid "Select the {} data directory."
|
||||
msgstr "Seleccione el directorio de la caché {}."
|
||||
|
||||
#: src/preferences.py:364
|
||||
msgid "Set Location"
|
||||
msgstr "Escoger la ubicación"
|
||||
#: src/utils/create_details_window.py:275
|
||||
#: src/utils/create_details_window.py:308
|
||||
msgid "Executable cannot be empty."
|
||||
msgstr "El ejecutable no puede estar vacío."
|
||||
|
||||
#: src/utils/create_dialog.py:25
|
||||
msgid "Dismiss"
|
||||
msgstr "Descartar"
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:47
|
||||
msgid "Couldn't Authenticate SteamGridDB"
|
||||
msgstr "No se ha podido autenticar SteamGridDB"
|
||||
#: src/utils/importer.py:42
|
||||
msgid "Importing Games…"
|
||||
msgstr "Importando juegos…"
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:48
|
||||
msgid "Verify your API key in preferences"
|
||||
msgstr "Verifica tu clave API en las preferencias"
|
||||
#: src/utils/importer.py:77
|
||||
msgid "Importing Covers…"
|
||||
msgstr "Importando las portadas…"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "The Steam directory cannot be found."
|
||||
#~ msgid "Directory not Valid"
|
||||
#~ msgstr "No se encuentra el directorio de Steam."
|
||||
#: src/utils/importer.py:92
|
||||
msgid "No new games were found on your system."
|
||||
msgstr "No se encontraron nuevos juegos en tú sistema."
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Confirm"
|
||||
#~ msgid "Configuration"
|
||||
#~ msgstr "Confirmar"
|
||||
#: src/utils/importer.py:100
|
||||
msgid "Game Imported"
|
||||
msgstr "Juego importado"
|
||||
|
||||
#~ msgid "Steam Install Location"
|
||||
#~ msgstr "Ubicación de la instalación de Steam"
|
||||
#: src/utils/importer.py:101
|
||||
msgid "Successfully imported 1 game."
|
||||
msgstr "Importado 1 juego con éxito."
|
||||
|
||||
#~ msgid "Lutris Install Location"
|
||||
#~ msgstr "Ubicación de instalación de Lutris"
|
||||
#: src/utils/importer.py:107
|
||||
msgid "Games Imported"
|
||||
msgstr "Juegos importados"
|
||||
|
||||
#~ msgid "Heroic Install Location"
|
||||
#~ msgstr "Ubicación de la instalación de Heroic"
|
||||
#. The variable is the number of games
|
||||
#: src/utils/importer.py:109
|
||||
msgid "Successfully imported {} games."
|
||||
msgstr "{} juegos importados con éxito."
|
||||
|
||||
#~ msgid "Bottles Install Location"
|
||||
#~ msgstr "Ubicación de instalación de Bottles"
|
||||
#: src/utils/importer.py:120 src/utils/steamgriddb.py:113
|
||||
msgid "Couldn't Connect to SteamGridDB"
|
||||
msgstr "No se puede conectar a SteamGridDB"
|
||||
|
||||
#~ msgid "Today"
|
||||
#~ msgstr "Hoy"
|
||||
|
||||
#~ msgid "Yesterday"
|
||||
#~ msgstr "Ayer"
|
||||
|
||||
#~ msgid "Cache Not Found"
|
||||
#~ msgstr "Caché no encontrada"
|
||||
|
||||
#~ msgid "Select the Lutris cache directory."
|
||||
#~ msgstr "Selecciona el directorio de la caché de Lutris."
|
||||
|
||||
#~ msgid "Importing Games…"
|
||||
#~ msgstr "Importando juegos…"
|
||||
|
||||
#~ msgid "Importing Covers…"
|
||||
#~ msgstr "Importando las portadas…"
|
||||
|
||||
#~ msgid "No new games found"
|
||||
#~ msgstr "No se encontraron juegos nuevos"
|
||||
|
||||
#~ msgid "1 game imported"
|
||||
#~ msgstr "1 juego importado"
|
||||
|
||||
#~ msgid "{} games imported"
|
||||
#~ msgstr "0 juegos importados"
|
||||
|
||||
#~ msgid "Directory to use when importing games"
|
||||
#~ msgstr "Directorio a usar para importar juegos"
|
||||
|
||||
#~ msgid "Extra Steam Libraries"
|
||||
#~ msgstr "Bibliotecas Steam adicionales"
|
||||
|
||||
#~ msgid "Select other directories where you have Steam games installed"
|
||||
#~ msgstr "Seleccione otros directorios donde tenga instalados juegos de Steam"
|
||||
|
||||
#~ msgid "Clear"
|
||||
#~ msgstr "Limpiar"
|
||||
|
||||
#~ msgid "Directory to use when importing game covers"
|
||||
#~ msgstr "Directorio para usar al importar las carátulas de los juegos"
|
||||
|
||||
#~ msgid "Details"
|
||||
#~ msgstr "Detalles"
|
||||
|
||||
#~ msgid "No new games were found on your system."
|
||||
#~ msgstr "No se encontraron nuevos juegos en tú sistema."
|
||||
|
||||
#~ msgid "Successfully imported 1 game."
|
||||
#~ msgstr "Importado 1 juego con éxito."
|
||||
|
||||
#~ msgid "Successfully imported {} games."
|
||||
#~ msgstr "{} juegos importados con éxito."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Looks like you have multiple Steam libraries. Would you like to add them "
|
||||
#~ "in preferences?"
|
||||
#~ msgstr ""
|
||||
#~ "Parece que tienes varias bibliotecas de Steam. ¿Quieres agregarlas en la "
|
||||
#~ "configuración?"
|
||||
#: src/utils/importer.py:145
|
||||
msgid ""
|
||||
"Looks like you have multiple Steam libraries. Would you like to add them in "
|
||||
"preferences?"
|
||||
msgstr ""
|
||||
"Parece que tienes varias bibliotecas de Steam. ¿Quieres agregarlas en la "
|
||||
"configuración?"
|
||||
|
||||
#~ msgid "Launch your games"
|
||||
#~ msgstr "Lance sus juegos"
|
||||
@@ -719,5 +687,8 @@ msgstr "Verifica tu clave API en las preferencias"
|
||||
#~ msgid "No new games were found in the Steam library."
|
||||
#~ msgstr "No se han encontrado juegos nuevos en la biblioteca de Steam."
|
||||
|
||||
#~ msgid "The Steam directory cannot be found."
|
||||
#~ msgstr "No se encuentra el directorio de Steam."
|
||||
|
||||
#~ msgid "Talking to Steam"
|
||||
#~ msgstr "Hablando con Steam"
|
||||
|
||||
551
po/fa.po
@@ -1,551 +0,0 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR kramo
|
||||
# This file is distributed under the same license as the Cartridges package.
|
||||
# سید حسین موسوی فرد <shmf1385@protonmail.com>, 2023.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cartridges\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-05 14:36+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"
|
||||
"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 4.18-dev\n"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:3
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:47
|
||||
#: src/main.py:162
|
||||
msgid "Cartridges"
|
||||
msgstr "کارتریجها"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:4
|
||||
msgid "Game Launcher"
|
||||
msgstr "اجراگر بازی"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:5
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:7
|
||||
msgid "Launch all your games"
|
||||
msgstr "اجرای همهٔ بازیهای شما"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:11
|
||||
msgid "gaming;launcher;steam;lutris;heroic;bottles;itch;"
|
||||
msgstr ""
|
||||
|
||||
#: 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 بارگیری کنید."
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:30
|
||||
msgid "Library"
|
||||
msgstr "کتابخانه"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 src/details_window.py:67
|
||||
msgid "Edit Game Details"
|
||||
msgstr "ویرایش جزییات بازی"
|
||||
|
||||
#: 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-window.blp:25
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/details-window.blp:57
|
||||
msgid "New Cover"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/details-window.blp:75
|
||||
msgid "Delete Cover"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/details-window.blp:101 data/gtk/details-window.blp:106
|
||||
#: data/gtk/game.blp:80
|
||||
msgid "Title"
|
||||
msgstr "عنوان"
|
||||
|
||||
#: data/gtk/details-window.blp:102
|
||||
msgid "The title of the game"
|
||||
msgstr ""
|
||||
|
||||
#: 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-window.blp:124
|
||||
msgid "File to open or command to run when launching the game"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/details-window.blp:130
|
||||
msgid "More Info"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/game.blp:102 data/gtk/game.blp:121 data/gtk/window.blp:195
|
||||
msgid "Edit"
|
||||
msgstr "ویرایش"
|
||||
|
||||
#: data/gtk/game.blp:107 src/window.py:171
|
||||
msgid "Hide"
|
||||
msgstr "پنهان کردن"
|
||||
|
||||
#: 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:126 src/window.py:173
|
||||
msgid "Unhide"
|
||||
msgstr "پیدا کردن"
|
||||
|
||||
#: data/gtk/help-overlay.blp:11 data/gtk/preferences.blp:9
|
||||
msgid "General"
|
||||
msgstr "عمومی"
|
||||
|
||||
#: 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 "جستوجو"
|
||||
|
||||
#: data/gtk/help-overlay.blp:24
|
||||
msgid "Show preferences"
|
||||
msgstr "نمایش ترجیحات"
|
||||
|
||||
#: data/gtk/help-overlay.blp:29
|
||||
msgid "Shortcuts"
|
||||
msgstr "میانبرها"
|
||||
|
||||
#: data/gtk/help-overlay.blp:34 src/game.py:102 src/preferences.py:112
|
||||
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:48
|
||||
msgid "Add new game"
|
||||
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 "Remove game"
|
||||
msgstr "حذف کردن بازی"
|
||||
|
||||
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:268
|
||||
msgid "Behavior"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:16
|
||||
msgid "Exit After Launching Games"
|
||||
msgstr "خروج پس از اجرا کردن بازی"
|
||||
|
||||
#: data/gtk/preferences.blp:25
|
||||
msgid "Cover Image Launches Game"
|
||||
msgstr "عکس جلد بازی را باز میکند"
|
||||
|
||||
#: data/gtk/preferences.blp:26
|
||||
msgid "Swaps the behavior of the cover image and the play button"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:36 src/details_window.py:81
|
||||
msgid "Images"
|
||||
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 "حذف کردن همهٔ بازیها"
|
||||
|
||||
#: data/gtk/preferences.blp:85 data/gtk/window.blp:27 data/gtk/window.blp:442
|
||||
msgid "Import"
|
||||
msgstr "درونریزی"
|
||||
|
||||
#: data/gtk/preferences.blp:89
|
||||
msgid "Sources"
|
||||
msgstr "منبعها"
|
||||
|
||||
#: data/gtk/preferences.blp:92
|
||||
msgid "Steam"
|
||||
msgstr "استیم"
|
||||
|
||||
#: data/gtk/preferences.blp:96 data/gtk/preferences.blp:110
|
||||
#: data/gtk/preferences.blp:151 data/gtk/preferences.blp:192
|
||||
#: data/gtk/preferences.blp:206 data/gtk/preferences.blp:220
|
||||
#: data/gtk/preferences.blp:234
|
||||
msgid "Install Location"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:106
|
||||
msgid "Lutris"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:119
|
||||
msgid "Cache Location"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:128
|
||||
msgid "Import Steam Games"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:137
|
||||
#, fuzzy
|
||||
#| msgid "Import games"
|
||||
msgid "Import Flatpak Games"
|
||||
msgstr "درونریزی بازی"
|
||||
|
||||
#: data/gtk/preferences.blp:147
|
||||
msgid "Heroic"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:160
|
||||
msgid "Import Epic Games"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:169
|
||||
msgid "Import GOG Games"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:178
|
||||
msgid "Import Sideloaded Games"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:188
|
||||
msgid "Bottles"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:202
|
||||
msgid "itch"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:216
|
||||
msgid "Legendary"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:230
|
||||
msgid "Flatpak"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:243
|
||||
#, fuzzy
|
||||
#| msgid "Game Launcher"
|
||||
msgid "Import Game Launchers"
|
||||
msgstr "اجراگر بازی"
|
||||
|
||||
#: data/gtk/preferences.blp:256
|
||||
msgid "SteamGridDB"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:260
|
||||
msgid "Authentication"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:263
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:271
|
||||
msgid "Use SteamGridDB"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:272
|
||||
msgid "Download images when adding or importing games"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:281
|
||||
msgid "Prefer Over Official Images"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:290
|
||||
msgid "Prefer Animated Images"
|
||||
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:64 data/gtk/window.blp:304
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:121
|
||||
msgid "Game Title"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:176
|
||||
msgid "Play"
|
||||
msgstr ""
|
||||
|
||||
#: 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: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:180
|
||||
msgid "translator_credits"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the date when the game was added
|
||||
#: src/window.py:194
|
||||
msgid "Added: {}"
|
||||
msgstr ""
|
||||
|
||||
#: src/window.py:197
|
||||
msgid "Never"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the date when the game was last played
|
||||
#: src/window.py:201
|
||||
msgid "Last played: {}"
|
||||
msgstr ""
|
||||
|
||||
#: src/details_window.py:72
|
||||
msgid "Apply"
|
||||
msgstr ""
|
||||
|
||||
#: src/details_window.py:78
|
||||
msgid "Add New Game"
|
||||
msgstr ""
|
||||
|
||||
#: src/details_window.py:79
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. Translate this string as you would translate "file"
|
||||
#: src/details_window.py:92
|
||||
msgid "file.txt"
|
||||
msgstr ""
|
||||
|
||||
#. As in software
|
||||
#: src/details_window.py:94
|
||||
msgid "program"
|
||||
msgstr ""
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:99 src/details_window.py:101
|
||||
msgid "C:\\path\\to\\{}"
|
||||
msgstr ""
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:105 src/details_window.py:107
|
||||
msgid "/path/to/{}"
|
||||
msgstr ""
|
||||
|
||||
#: src/details_window.py:112
|
||||
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 ""
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:153
|
||||
msgid "Couldn't Add Game"
|
||||
msgstr ""
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:181
|
||||
msgid "Game title cannot be empty."
|
||||
msgstr ""
|
||||
|
||||
#: src/details_window.py:153 src/details_window.py:189
|
||||
msgid "Executable cannot be empty."
|
||||
msgstr ""
|
||||
|
||||
#: src/details_window.py:180 src/details_window.py:188
|
||||
msgid "Couldn't Apply Preferences"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:138
|
||||
msgid "{} launched"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:152
|
||||
msgid "{} hidden"
|
||||
msgstr ""
|
||||
|
||||
#: src/game.py:152
|
||||
msgid "{} unhidden"
|
||||
msgstr ""
|
||||
|
||||
#: src/game.py:169
|
||||
msgid "{} removed"
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:111
|
||||
msgid "All games removed"
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:159
|
||||
msgid ""
|
||||
"An API key is required to use SteamGridDB. You can generate one {}here{}."
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:284
|
||||
msgid "Installation Not Found"
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:286
|
||||
msgid "Select a valid directory."
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:348
|
||||
msgid "Invalid Directory"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:352
|
||||
msgid "Select the {} cache directory."
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:355
|
||||
msgid "Select the {} configuration directory."
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:358
|
||||
msgid "Select the {} data directory."
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:364
|
||||
msgid "Set Location"
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/create_dialog.py:25
|
||||
msgid "Dismiss"
|
||||
msgstr ""
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:47
|
||||
msgid "Couldn't Authenticate SteamGridDB"
|
||||
msgstr ""
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:48
|
||||
msgid "Verify your API key in preferences"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Add new game"
|
||||
#~ msgid "No new games found"
|
||||
#~ msgstr "افزدون بازی"
|
||||
618
po/fi.po
@@ -10,8 +10,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: cartridges\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-05 14:36+0200\n"
|
||||
"PO-Revision-Date: 2023-05-07 15:38+0000\n"
|
||||
"POT-Creation-Date: 2023-04-11 23:33+0200\n"
|
||||
"PO-Revision-Date: 2023-04-02 15:04+0000\n"
|
||||
"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
|
||||
"Language-Team: Finnish <https://hosted.weblate.org/projects/cartridges/"
|
||||
"cartridges/fi/>\n"
|
||||
@@ -20,11 +20,11 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.18-dev\n"
|
||||
"X-Generator: Weblate 4.17-dev\n"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:3
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:47
|
||||
#: src/main.py:162
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:29
|
||||
#: src/main.py:119
|
||||
msgid "Cartridges"
|
||||
msgstr "Cartridges"
|
||||
|
||||
@@ -37,10 +37,6 @@ msgstr "Pelin käynnistin"
|
||||
msgid "Launch all your games"
|
||||
msgstr "Käynnistä kaikki pelisi"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:11
|
||||
msgid "gaming;launcher;steam;lutris;heroic;bottles;itch;"
|
||||
msgstr ""
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:9
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
@@ -58,80 +54,43 @@ msgstr ""
|
||||
"piilottamisen ja lajittelun lisäyspäivämäärän tai viimeisimmän pelatun pelin "
|
||||
"mukaan."
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:30
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:22
|
||||
msgid "Library"
|
||||
msgstr "Kirjasto"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 src/details_window.py:67
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:26
|
||||
#: src/utils/create_details_window.py:87
|
||||
msgid "Edit Game Details"
|
||||
msgstr "Muokkaa pelin tietoja"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:38 data/gtk/window.blp:71
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:30 data/gtk/window.blp:51
|
||||
msgid "Game Details"
|
||||
msgstr "Pelin tiedot"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:42 data/gtk/window.blp:416
|
||||
#: src/details_window.py:239
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 data/gtk/window.blp:402
|
||||
#: src/utils/importer.py:94 src/utils/importer.py:123 src/utils/importer.py:148
|
||||
#: src/utils/steamgriddb.py:116
|
||||
msgid "Preferences"
|
||||
msgstr "Asetukset"
|
||||
|
||||
#: data/gtk/details-window.blp:25
|
||||
msgid "Cancel"
|
||||
msgstr "Peru"
|
||||
|
||||
#: data/gtk/details-window.blp:57
|
||||
msgid "New Cover"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/details-window.blp:75
|
||||
msgid "Delete Cover"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/details-window.blp:101 data/gtk/details-window.blp:106
|
||||
#: data/gtk/game.blp:80
|
||||
#: data/gtk/game.blp:67 src/utils/create_details_window.py:129
|
||||
msgid "Title"
|
||||
msgstr "Nimi"
|
||||
|
||||
#: data/gtk/details-window.blp:102
|
||||
msgid "The title of the game"
|
||||
msgstr "Pelin nimi"
|
||||
|
||||
#: data/gtk/details-window.blp:112 data/gtk/details-window.blp:117
|
||||
msgid "Developer"
|
||||
msgstr "Kehittäjä"
|
||||
|
||||
#: data/gtk/details-window.blp:113
|
||||
msgid "The developer or publisher (optional)"
|
||||
msgstr "Kehittäjä tai julkaisija (valinnainen)"
|
||||
|
||||
#: data/gtk/details-window.blp:123 data/gtk/details-window.blp:155
|
||||
msgid "Executable"
|
||||
msgstr "Suoritettava"
|
||||
|
||||
#: data/gtk/details-window.blp:124
|
||||
msgid "File to open or command to run when launching the game"
|
||||
msgstr ""
|
||||
"Tiedosto, joka avataan tai komento, joka ajetaan pelin käynnistämisen "
|
||||
"yhteydessä"
|
||||
|
||||
#: data/gtk/details-window.blp:130
|
||||
msgid "More Info"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/game.blp:102 data/gtk/game.blp:121 data/gtk/window.blp:195
|
||||
#: data/gtk/game.blp:89 data/gtk/game.blp:108 data/gtk/window.blp:170
|
||||
msgid "Edit"
|
||||
msgstr "Muokkaa"
|
||||
|
||||
#: data/gtk/game.blp:107 src/window.py:171
|
||||
#: data/gtk/game.blp:94 src/window.py:286
|
||||
msgid "Hide"
|
||||
msgstr "Piilota"
|
||||
|
||||
#: data/gtk/game.blp:112 data/gtk/game.blp:131 data/gtk/preferences.blp:56
|
||||
#: data/gtk/window.blp:209
|
||||
#: data/gtk/game.blp:99 data/gtk/game.blp:118 data/gtk/preferences.blp:56
|
||||
#: data/gtk/window.blp:186
|
||||
msgid "Remove"
|
||||
msgstr "Poista"
|
||||
|
||||
#: data/gtk/game.blp:126 src/window.py:173
|
||||
#: data/gtk/game.blp:113 src/window.py:283
|
||||
msgid "Unhide"
|
||||
msgstr "Näytä"
|
||||
|
||||
@@ -143,8 +102,8 @@ msgstr "Yleistä"
|
||||
msgid "Quit"
|
||||
msgstr "Lopeta"
|
||||
|
||||
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:217 data/gtk/window.blp:257
|
||||
#: data/gtk/window.blp:323
|
||||
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:205 data/gtk/window.blp:249
|
||||
#: data/gtk/window.blp:312
|
||||
msgid "Search"
|
||||
msgstr "Etsi"
|
||||
|
||||
@@ -156,7 +115,8 @@ msgstr "Näytä asetukset"
|
||||
msgid "Shortcuts"
|
||||
msgstr "Pikanäppäimet"
|
||||
|
||||
#: data/gtk/help-overlay.blp:34 src/game.py:102 src/preferences.py:112
|
||||
#: data/gtk/help-overlay.blp:34 src/main.py:186 src/main.py:242
|
||||
#: src/preferences.py:133
|
||||
msgid "Undo"
|
||||
msgstr "Kumoa"
|
||||
|
||||
@@ -181,10 +141,12 @@ msgid "Show hidden games"
|
||||
msgstr "Näytä piilotetut pelit"
|
||||
|
||||
#: data/gtk/help-overlay.blp:63
|
||||
#, fuzzy
|
||||
#| msgid "Remove All Games"
|
||||
msgid "Remove game"
|
||||
msgstr "Poista peli"
|
||||
msgstr "Poista kaikki pelit"
|
||||
|
||||
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:268
|
||||
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:235
|
||||
msgid "Behavior"
|
||||
msgstr "Toiminta"
|
||||
|
||||
@@ -200,7 +162,7 @@ msgstr "Kansikuva käynnistää pelin"
|
||||
msgid "Swaps the behavior of the cover image and the play button"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:36 src/details_window.py:81
|
||||
#: data/gtk/preferences.blp:36 src/utils/create_details_window.py:101
|
||||
msgid "Images"
|
||||
msgstr "Kuvat"
|
||||
|
||||
@@ -220,249 +182,355 @@ msgstr "Vaaravyöhyke"
|
||||
msgid "Remove All Games"
|
||||
msgstr "Poista kaikki pelit"
|
||||
|
||||
#: data/gtk/preferences.blp:85 data/gtk/window.blp:27 data/gtk/window.blp:442
|
||||
#: data/gtk/preferences.blp:69 data/gtk/window.blp:427
|
||||
msgid "Import"
|
||||
msgstr "Tuo"
|
||||
|
||||
#: data/gtk/preferences.blp:89
|
||||
#: data/gtk/preferences.blp:73
|
||||
msgid "Sources"
|
||||
msgstr "Lähteet"
|
||||
|
||||
#: data/gtk/preferences.blp:92
|
||||
#: data/gtk/preferences.blp:76
|
||||
msgid "Steam"
|
||||
msgstr "Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:96 data/gtk/preferences.blp:110
|
||||
#: data/gtk/preferences.blp:151 data/gtk/preferences.blp:192
|
||||
#: data/gtk/preferences.blp:206 data/gtk/preferences.blp:220
|
||||
#: data/gtk/preferences.blp:234
|
||||
#, fuzzy
|
||||
#| msgid "itch Install Location"
|
||||
msgid "Install Location"
|
||||
msgstr "itch-asennuksen sijainti"
|
||||
#: data/gtk/preferences.blp:80
|
||||
msgid "Steam Install Location"
|
||||
msgstr "Steam-asennuksen sijainti"
|
||||
|
||||
#: data/gtk/preferences.blp:106
|
||||
#: data/gtk/preferences.blp:81 data/gtk/preferences.blp:119
|
||||
#: data/gtk/preferences.blp:153 data/gtk/preferences.blp:195
|
||||
#: data/gtk/preferences.blp:210
|
||||
msgid "Directory to use when importing games"
|
||||
msgstr "Hakemisto, jota käytetään pelejä tuotaessa"
|
||||
|
||||
#: data/gtk/preferences.blp:89 src/utils/importer.py:143
|
||||
msgid "Extra Steam Libraries"
|
||||
msgstr "Steam-lisäkirjastot"
|
||||
|
||||
#: data/gtk/preferences.blp:90
|
||||
msgid "Select other directories where you have Steam games installed"
|
||||
msgstr "Valitse muut hakemistot, joihin Steam-pelit on asennettu"
|
||||
|
||||
#: data/gtk/preferences.blp:96
|
||||
msgid "Clear"
|
||||
msgstr "Tyhjennä"
|
||||
|
||||
#: data/gtk/preferences.blp:114
|
||||
msgid "Lutris"
|
||||
msgstr "Lutris"
|
||||
|
||||
#: data/gtk/preferences.blp:119
|
||||
#, fuzzy
|
||||
#| msgid "Lutris Cache Location"
|
||||
msgid "Cache Location"
|
||||
msgstr "Lutris-välimuistin sijainti"
|
||||
#: data/gtk/preferences.blp:118
|
||||
msgid "Lutris Install Location"
|
||||
msgstr "Lutris-asennuksen sijainti"
|
||||
|
||||
#: data/gtk/preferences.blp:128
|
||||
msgid "Import Steam Games"
|
||||
msgstr "Tuo Steam-pelejä"
|
||||
msgid "Lutris Cache Location"
|
||||
msgstr "Lutris-välimuistin sijainti"
|
||||
|
||||
#: data/gtk/preferences.blp:137
|
||||
#: data/gtk/preferences.blp:129
|
||||
#, fuzzy
|
||||
#| msgid "Import Steam Games"
|
||||
msgid "Import Flatpak Games"
|
||||
msgstr "Tuo Steam-pelejä"
|
||||
#| msgid "Directory to use when importing games"
|
||||
msgid "Directory to use when importing game covers"
|
||||
msgstr "Hakemisto, jota käytetään pelejä tuotaessa"
|
||||
|
||||
#: data/gtk/preferences.blp:147
|
||||
#: data/gtk/preferences.blp:138
|
||||
#, fuzzy
|
||||
#| msgid "Import Sideloaded Games"
|
||||
msgid "Import Steam Games"
|
||||
msgstr "Tuo Sideload-pelejä"
|
||||
|
||||
#: data/gtk/preferences.blp:148
|
||||
msgid "Heroic"
|
||||
msgstr "Heroic"
|
||||
|
||||
#: data/gtk/preferences.blp:160
|
||||
#: data/gtk/preferences.blp:152
|
||||
msgid "Heroic Install Location"
|
||||
msgstr "Heroic-asennuksen sijainti"
|
||||
|
||||
#: data/gtk/preferences.blp:162
|
||||
msgid "Import Epic Games"
|
||||
msgstr "Tuo Epic-pelejä"
|
||||
|
||||
#: data/gtk/preferences.blp:169
|
||||
#: data/gtk/preferences.blp:171
|
||||
msgid "Import GOG Games"
|
||||
msgstr "Tuo GOG-pelejä"
|
||||
|
||||
#: data/gtk/preferences.blp:178
|
||||
#: data/gtk/preferences.blp:180
|
||||
msgid "Import Sideloaded Games"
|
||||
msgstr "Tuo Sideload-pelejä"
|
||||
|
||||
#: data/gtk/preferences.blp:188
|
||||
#: data/gtk/preferences.blp:190
|
||||
msgid "Bottles"
|
||||
msgstr "Pullot"
|
||||
|
||||
#: data/gtk/preferences.blp:202
|
||||
#: data/gtk/preferences.blp:194
|
||||
msgid "Bottles Install Location"
|
||||
msgstr "Bottles-asennuksen sijainti"
|
||||
|
||||
#: data/gtk/preferences.blp:205
|
||||
msgid "itch"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:216
|
||||
msgid "Legendary"
|
||||
msgstr ""
|
||||
#: data/gtk/preferences.blp:209
|
||||
#, fuzzy
|
||||
#| msgid "Heroic Install Location"
|
||||
msgid "itch Install Location"
|
||||
msgstr "Heroic-asennuksen sijainti"
|
||||
|
||||
#: data/gtk/preferences.blp:223
|
||||
#, fuzzy
|
||||
#| msgid "Steam"
|
||||
msgid "SteamGridDB"
|
||||
msgstr "Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:227
|
||||
#, fuzzy
|
||||
#| msgid "Set Location"
|
||||
msgid "Authentication"
|
||||
msgstr "Aseta sijainti"
|
||||
|
||||
#: data/gtk/preferences.blp:230
|
||||
msgid "Flatpak"
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:243
|
||||
#, fuzzy
|
||||
#| msgid "Game Launcher"
|
||||
msgid "Import Game Launchers"
|
||||
msgstr "Pelin käynnistin"
|
||||
|
||||
#: data/gtk/preferences.blp:256
|
||||
msgid "SteamGridDB"
|
||||
msgstr "SteamGridDB"
|
||||
|
||||
#: data/gtk/preferences.blp:260
|
||||
msgid "Authentication"
|
||||
msgstr "Tunnistautuminen"
|
||||
|
||||
#: data/gtk/preferences.blp:263
|
||||
msgid "API Key"
|
||||
msgstr "API-avain"
|
||||
|
||||
#: data/gtk/preferences.blp:271
|
||||
#: data/gtk/preferences.blp:238
|
||||
msgid "Use SteamGridDB"
|
||||
msgstr "Käytä SteamGridDB:tä"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:272
|
||||
#: data/gtk/preferences.blp:239
|
||||
#, fuzzy
|
||||
#| msgid "Directory to use when importing games"
|
||||
msgid "Download images when adding or importing games"
|
||||
msgstr "Lataa kuvat pelejä lisätessä tai tuotaessa"
|
||||
msgstr "Hakemisto, jota käytetään pelejä tuotaessa"
|
||||
|
||||
#: data/gtk/preferences.blp:281
|
||||
#: data/gtk/preferences.blp:248
|
||||
msgid "Prefer Over Official Images"
|
||||
msgstr "Suosi virallisten kuvien sijaan"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:290
|
||||
#: data/gtk/preferences.blp:257
|
||||
msgid "Prefer Animated Images"
|
||||
msgstr "Suosi animoituja kuvia"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:6 data/gtk/window.blp:14
|
||||
#: data/gtk/window.blp:6 src/utils/importer.py:91
|
||||
msgid "No Games Found"
|
||||
msgstr "Pelejä ei löydetty"
|
||||
|
||||
#: data/gtk/window.blp:7 data/gtk/window.blp:15
|
||||
#: data/gtk/window.blp:7
|
||||
msgid "Try a different search."
|
||||
msgstr "Kokeile eri hakua."
|
||||
|
||||
#: data/gtk/window.blp:21
|
||||
#: data/gtk/window.blp:14
|
||||
msgid "No Games"
|
||||
msgstr "Ei pelejä"
|
||||
|
||||
#: data/gtk/window.blp:22
|
||||
#: data/gtk/window.blp:15
|
||||
msgid "Use the + button to add games."
|
||||
msgstr "Käytä + lisätäksesi pelejä."
|
||||
|
||||
#: data/gtk/window.blp:40
|
||||
#: data/gtk/window.blp:22
|
||||
msgid "No Hidden Games"
|
||||
msgstr "Ei piilotettuja pelejä"
|
||||
|
||||
#: data/gtk/window.blp:41
|
||||
#: data/gtk/window.blp:23
|
||||
msgid "Games you hide will appear here."
|
||||
msgstr "Piilotetut pelit näkyvät täällä."
|
||||
|
||||
#: data/gtk/window.blp:64 data/gtk/window.blp:304
|
||||
#: data/gtk/window.blp:44 data/gtk/window.blp:293
|
||||
msgid "Back"
|
||||
msgstr "Takaisin"
|
||||
|
||||
#: data/gtk/window.blp:121
|
||||
#: data/gtk/window.blp:100
|
||||
msgid "Game Title"
|
||||
msgstr "Pelin nimi"
|
||||
|
||||
#: data/gtk/window.blp:176
|
||||
#: data/gtk/window.blp:151 src/game.py:158
|
||||
msgid "Play"
|
||||
msgstr "Pelaa"
|
||||
|
||||
#: data/gtk/window.blp:243 data/gtk/window.blp:435
|
||||
#: data/gtk/window.blp:235 data/gtk/window.blp:421
|
||||
msgid "Add Game"
|
||||
msgstr "Lisää peli"
|
||||
|
||||
#: data/gtk/window.blp:250 data/gtk/window.blp:316
|
||||
#: data/gtk/window.blp:242 data/gtk/window.blp:305
|
||||
msgid "Main Menu"
|
||||
msgstr "Päävalikko"
|
||||
|
||||
#: data/gtk/window.blp:311
|
||||
#: data/gtk/window.blp:300
|
||||
msgid "Hidden Games"
|
||||
msgstr "Piilotetut pelit"
|
||||
|
||||
#: data/gtk/window.blp:374
|
||||
#: data/gtk/window.blp:360
|
||||
msgid "Sort"
|
||||
msgstr "Lajittele"
|
||||
|
||||
#: data/gtk/window.blp:377
|
||||
#: data/gtk/window.blp:363
|
||||
msgid "A-Z"
|
||||
msgstr "A-Z"
|
||||
|
||||
#: data/gtk/window.blp:383
|
||||
#: data/gtk/window.blp:369
|
||||
msgid "Z-A"
|
||||
msgstr "Z-A"
|
||||
|
||||
#: data/gtk/window.blp:389
|
||||
#: data/gtk/window.blp:375
|
||||
msgid "Newest"
|
||||
msgstr "Uusin"
|
||||
|
||||
#: data/gtk/window.blp:395
|
||||
#: data/gtk/window.blp:381
|
||||
msgid "Oldest"
|
||||
msgstr "Vanhin"
|
||||
|
||||
#: data/gtk/window.blp:401
|
||||
#: data/gtk/window.blp:387
|
||||
msgid "Last Played"
|
||||
msgstr "Viimeksi pelattu"
|
||||
|
||||
#: data/gtk/window.blp:408
|
||||
#: data/gtk/window.blp:394
|
||||
msgid "Show Hidden"
|
||||
msgstr "Näytä piilotetut"
|
||||
|
||||
#: data/gtk/window.blp:421
|
||||
#: data/gtk/window.blp:407
|
||||
msgid "Keyboard Shortcuts"
|
||||
msgstr "Pikanäppäimet"
|
||||
|
||||
#: data/gtk/window.blp:426
|
||||
#: data/gtk/window.blp:412
|
||||
msgid "About Cartridges"
|
||||
msgstr "Tietoja - Cartridges"
|
||||
|
||||
#. Translators: Replace this with your name for it to show up in the about window
|
||||
#: src/main.py:180
|
||||
#: src/main.py:137
|
||||
msgid "translator_credits"
|
||||
msgstr "Linux Sauna"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:164
|
||||
msgid "{} launched"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:182
|
||||
#, fuzzy
|
||||
#| msgid "Show Hidden"
|
||||
msgid "{} hidden"
|
||||
msgstr "Näytä piilotetut"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:185
|
||||
msgid "{} unhidden"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:241
|
||||
msgid "{} removed"
|
||||
msgstr "{} poistettu"
|
||||
|
||||
#: src/window.py:262
|
||||
msgid "Today"
|
||||
msgstr "Tänään"
|
||||
|
||||
#: src/window.py:264
|
||||
msgid "Yesterday"
|
||||
msgstr "Eilen"
|
||||
|
||||
#. The variable is the date when the game was added
|
||||
#: src/window.py:194
|
||||
#: src/window.py:310
|
||||
msgid "Added: {}"
|
||||
msgstr "Lisätty: {}"
|
||||
|
||||
#: src/window.py:197
|
||||
#: src/window.py:315
|
||||
msgid "Never"
|
||||
msgstr "Ei koskaan"
|
||||
|
||||
#. The variable is the date when the game was last played
|
||||
#: src/window.py:201
|
||||
#: src/window.py:319
|
||||
msgid "Last played: {}"
|
||||
msgstr "Viimeksi pelattu: {}"
|
||||
|
||||
#: src/details_window.py:72
|
||||
msgid "Apply"
|
||||
msgstr "Käytä"
|
||||
#: src/game.py:156
|
||||
msgid "Details"
|
||||
msgstr "Tiedot"
|
||||
|
||||
#: src/details_window.py:78
|
||||
#: src/preferences.py:54
|
||||
msgid "Installation Not Found"
|
||||
msgstr "Asennusta ei löydy"
|
||||
|
||||
#. The variable is the name of the game launcher
|
||||
#: src/preferences.py:56
|
||||
msgid "Select the {} configuration directory."
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the name of the game launcher
|
||||
#: src/preferences.py:59
|
||||
msgid "Select the {} data directory."
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:61 src/preferences.py:240
|
||||
msgid "Set Location"
|
||||
msgstr "Aseta sijainti"
|
||||
|
||||
#: src/preferences.py:132
|
||||
msgid "All games removed"
|
||||
msgstr "Kaikki pelit poistettu"
|
||||
|
||||
#: src/preferences.py:237
|
||||
msgid "Cache Not Found"
|
||||
msgstr "Välimuistia ei löydy"
|
||||
|
||||
#: src/preferences.py:238
|
||||
msgid "Select the Lutris cache directory."
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:344
|
||||
msgid ""
|
||||
"An API key is required to use SteamGridDB. You can generate one {}here{}."
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/create_details_window.py:81
|
||||
msgid "Add New Game"
|
||||
msgstr "Lisää uusi peli"
|
||||
|
||||
#: src/details_window.py:79
|
||||
#: src/utils/create_details_window.py:85
|
||||
msgid "Confirm"
|
||||
msgstr "Vahvista"
|
||||
|
||||
#: src/utils/create_details_window.py:96
|
||||
msgid "Apply"
|
||||
msgstr "Käytä"
|
||||
|
||||
#: src/utils/create_details_window.py:130
|
||||
msgid "The title of the game"
|
||||
msgstr "Pelin nimi"
|
||||
|
||||
#: src/utils/create_details_window.py:135
|
||||
msgid "Developer"
|
||||
msgstr "Kehittäjä"
|
||||
|
||||
#: src/utils/create_details_window.py:136
|
||||
msgid "The developer or publisher (optional)"
|
||||
msgstr "Kehittäjä tai julkaisija (valinnainen)"
|
||||
|
||||
#. Translate this string as you would translate "file"
|
||||
#: src/details_window.py:92
|
||||
#: src/utils/create_details_window.py:147
|
||||
msgid "file.txt"
|
||||
msgstr "file.txt"
|
||||
|
||||
#. As in software
|
||||
#: src/details_window.py:94
|
||||
#: src/utils/create_details_window.py:149
|
||||
msgid "program"
|
||||
msgstr "ohjelma"
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:99 src/details_window.py:101
|
||||
#: src/utils/create_details_window.py:154
|
||||
#: src/utils/create_details_window.py:156
|
||||
msgid "C:\\path\\to\\{}"
|
||||
msgstr "C:\\polku\\kansioon\\{}"
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:105 src/details_window.py:107
|
||||
#: src/utils/create_details_window.py:160
|
||||
#: src/utils/create_details_window.py:162
|
||||
msgid "/path/to/{}"
|
||||
msgstr "/polku/kansioon/{}"
|
||||
|
||||
#: src/details_window.py:112
|
||||
#: src/utils/create_details_window.py:166
|
||||
msgid ""
|
||||
"To launch the executable \"{}\", use the command:\n"
|
||||
"\n"
|
||||
@@ -485,185 +553,86 @@ msgstr ""
|
||||
"Jos polku sisältää välilyöntejä, varmista, että se on suljettu "
|
||||
"kaksinkertaisiin lainausmerkkeihin!"
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:153
|
||||
#: src/utils/create_details_window.py:189
|
||||
msgid "Executable"
|
||||
msgstr "Suoritettava"
|
||||
|
||||
#: src/utils/create_details_window.py:190
|
||||
msgid "File to open or command to run when launching the game"
|
||||
msgstr ""
|
||||
"Tiedosto, joka avataan tai komento, joka ajetaan pelin käynnistämisen "
|
||||
"yhteydessä"
|
||||
|
||||
#: src/utils/create_details_window.py:202
|
||||
msgid "Cancel"
|
||||
msgstr "Peru"
|
||||
|
||||
#: src/utils/create_details_window.py:259
|
||||
#: src/utils/create_details_window.py:269
|
||||
#: src/utils/create_details_window.py:275
|
||||
msgid "Couldn't Add Game"
|
||||
msgstr "Peliä ei voitu lisätä"
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:181
|
||||
msgid "Game title cannot be empty."
|
||||
msgstr "Pelin nimi ei voi olla tyhjä."
|
||||
|
||||
#: src/details_window.py:153 src/details_window.py:189
|
||||
msgid "Executable cannot be empty."
|
||||
msgstr "Suoritettava ei voi olla tyhjä."
|
||||
|
||||
#: src/details_window.py:180 src/details_window.py:188
|
||||
#: src/utils/create_details_window.py:261
|
||||
#: src/utils/create_details_window.py:299
|
||||
#: src/utils/create_details_window.py:307
|
||||
msgid "Couldn't Apply Preferences"
|
||||
msgstr "Asetuksia ei voitu ottaa käyttöön"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:138
|
||||
msgid "{} launched"
|
||||
msgstr "{} käynnistetty"
|
||||
#: src/utils/create_details_window.py:269
|
||||
#: src/utils/create_details_window.py:300
|
||||
msgid "Game title cannot be empty."
|
||||
msgstr "Pelin nimi ei voi olla tyhjä."
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:152
|
||||
msgid "{} hidden"
|
||||
msgstr "{} piilotettu"
|
||||
|
||||
#: src/game.py:152
|
||||
msgid "{} unhidden"
|
||||
msgstr "{} palautettu näkyviin"
|
||||
|
||||
#: src/game.py:169
|
||||
msgid "{} removed"
|
||||
msgstr "{} poistettu"
|
||||
|
||||
#: src/preferences.py:111
|
||||
msgid "All games removed"
|
||||
msgstr "Kaikki pelit poistettu"
|
||||
|
||||
#: src/preferences.py:159
|
||||
msgid ""
|
||||
"An API key is required to use SteamGridDB. You can generate one {}here{}."
|
||||
msgstr ""
|
||||
"API-avain on pakollinen, jos haluat käyttää SteamGridDB:tä. Voit luoda "
|
||||
"avaimen {}täällä{}."
|
||||
|
||||
#: src/preferences.py:284
|
||||
#, fuzzy
|
||||
#| msgid "Installation Not Found"
|
||||
msgid "Installation Not Found"
|
||||
msgstr "Asennusta ei löydy"
|
||||
|
||||
#: src/preferences.py:286
|
||||
msgid "Select a valid directory."
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:348
|
||||
msgid "Invalid Directory"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:352
|
||||
msgid "Select the {} cache directory."
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:355
|
||||
msgid "Select the {} configuration directory."
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:358
|
||||
msgid "Select the {} data directory."
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:364
|
||||
msgid "Set Location"
|
||||
msgstr "Aseta sijainti"
|
||||
#: src/utils/create_details_window.py:275
|
||||
#: src/utils/create_details_window.py:308
|
||||
msgid "Executable cannot be empty."
|
||||
msgstr "Suoritettava ei voi olla tyhjä."
|
||||
|
||||
#: src/utils/create_dialog.py:25
|
||||
msgid "Dismiss"
|
||||
msgstr "Hylkää"
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:47
|
||||
#, fuzzy
|
||||
#| msgid "Couldn't Connect to SteamGridDB"
|
||||
msgid "Couldn't Authenticate SteamGridDB"
|
||||
msgstr "Ei voitu yhdistää SteamGridDB:hen"
|
||||
#: src/utils/importer.py:42
|
||||
msgid "Importing Games…"
|
||||
msgstr "Tuodaan pelejä…"
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:48
|
||||
msgid "Verify your API key in preferences"
|
||||
#: src/utils/importer.py:77
|
||||
#, fuzzy
|
||||
#| msgid "Importing Games…"
|
||||
msgid "Importing Covers…"
|
||||
msgstr "Tuodaan pelejä…"
|
||||
|
||||
#: src/utils/importer.py:92
|
||||
msgid "No new games were found on your system."
|
||||
msgstr "Järjestelmästä ei löytynyt uusia pelejä."
|
||||
|
||||
#: src/utils/importer.py:100
|
||||
msgid "Game Imported"
|
||||
msgstr "Peli tuotu"
|
||||
|
||||
#: src/utils/importer.py:101
|
||||
msgid "Successfully imported 1 game."
|
||||
msgstr "Onnistuneesti tuotu 1 peli."
|
||||
|
||||
#: src/utils/importer.py:107
|
||||
msgid "Games Imported"
|
||||
msgstr "Pelit tuotu"
|
||||
|
||||
#. The variable is the number of games
|
||||
#: src/utils/importer.py:109
|
||||
msgid "Successfully imported {} games."
|
||||
msgstr "{} peliä tuotu."
|
||||
|
||||
#: src/utils/importer.py:120 src/utils/steamgriddb.py:113
|
||||
msgid "Couldn't Connect to SteamGridDB"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "The Steam directory cannot be found."
|
||||
#~ msgid "Directory not Valid"
|
||||
#~ msgstr "Steam-hakemistoa ei löydy."
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Confirm"
|
||||
#~ msgid "Configuration"
|
||||
#~ msgstr "Vahvista"
|
||||
|
||||
#~ msgid "Steam Install Location"
|
||||
#~ msgstr "Steam-asennuksen sijainti"
|
||||
|
||||
#~ msgid "Lutris Install Location"
|
||||
#~ msgstr "Lutris-asennuksen sijainti"
|
||||
|
||||
#~ msgid "Heroic Install Location"
|
||||
#~ msgstr "Heroic-asennuksen sijainti"
|
||||
|
||||
#~ msgid "Bottles Install Location"
|
||||
#~ msgstr "Bottles-asennuksen sijainti"
|
||||
|
||||
#~ msgid "Today"
|
||||
#~ msgstr "Tänään"
|
||||
|
||||
#~ msgid "Yesterday"
|
||||
#~ msgstr "Eilen"
|
||||
|
||||
#~ msgid "Cache Not Found"
|
||||
#~ msgstr "Välimuistia ei löydy"
|
||||
|
||||
#~ msgid "Importing Games…"
|
||||
#~ msgstr "Tuodaan pelejä…"
|
||||
|
||||
#~ msgid "Importing Covers…"
|
||||
#~ msgstr "Tuodaan kansikuvia…"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "No Games Found"
|
||||
#~ msgid "No new games found"
|
||||
#~ msgstr "Pelejä ei löydetty"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Game Imported"
|
||||
#~ msgid "1 game imported"
|
||||
#~ msgstr "Peli tuotu"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Games Imported"
|
||||
#~ msgid "{} games imported"
|
||||
#~ msgstr "Pelit tuotu"
|
||||
|
||||
#~ msgid "Directory to use when importing games"
|
||||
#~ msgstr "Hakemisto, jota käytetään pelejä tuotaessa"
|
||||
|
||||
#~ msgid "Extra Steam Libraries"
|
||||
#~ msgstr "Steam-lisäkirjastot"
|
||||
|
||||
#~ msgid "Select other directories where you have Steam games installed"
|
||||
#~ msgstr "Valitse muut hakemistot, joihin Steam-pelit on asennettu"
|
||||
|
||||
#~ msgid "Clear"
|
||||
#~ msgstr "Tyhjennä"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Directory to use when importing games"
|
||||
#~ msgid "Directory to use when importing game covers"
|
||||
#~ msgstr "Hakemisto, jota käytetään pelejä tuotaessa"
|
||||
|
||||
#~ msgid "Details"
|
||||
#~ msgstr "Tiedot"
|
||||
|
||||
#~ msgid "No new games were found on your system."
|
||||
#~ msgstr "Järjestelmästä ei löytynyt uusia pelejä."
|
||||
|
||||
#~ msgid "Successfully imported 1 game."
|
||||
#~ msgstr "Onnistuneesti tuotu 1 peli."
|
||||
|
||||
#~ msgid "Successfully imported {} games."
|
||||
#~ msgstr "{} peliä tuotu."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Looks like you have multiple Steam libraries. Would you like to add them "
|
||||
#~ "in preferences?"
|
||||
#~ msgstr ""
|
||||
#~ "Vaikuttaa siltä, että sinulla on useita Steam-kirjastoja. Haluatko lisätä "
|
||||
#~ "ne asetuksissa?"
|
||||
#: src/utils/importer.py:145
|
||||
msgid ""
|
||||
"Looks like you have multiple Steam libraries. Would you like to add them in "
|
||||
"preferences?"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Launch your games"
|
||||
#~ msgstr "Käynnistä pelit"
|
||||
@@ -741,5 +710,8 @@ msgstr ""
|
||||
#~ msgid "No new games were found in the Steam library."
|
||||
#~ msgstr "Steam-kirjastosta ei löytynyt uusia pelejä."
|
||||
|
||||
#~ msgid "The Steam directory cannot be found."
|
||||
#~ msgstr "Steam-hakemistoa ei löydy."
|
||||
|
||||
#~ msgid "Talking to Steam"
|
||||
#~ msgstr "Yhdistetään Steam-kirjastoon"
|
||||
|
||||
615
po/fr.po
@@ -4,16 +4,13 @@
|
||||
# "J. Lavoie" <j.lavoie@net-c.ca>, 2023.
|
||||
# kramo <contact@kramo.hu>, 2023.
|
||||
# rene-coty <irenee.thirion@e.email>, 2023.
|
||||
# John Donne <akheron@zaclys.net>, 2023.
|
||||
# "Yannick A." <pify@live.fr>, 2023.
|
||||
# Geoffrey Coulaud <geoffrey.coulaud+github@gmail.com>, 2023.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: cartridges\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-05 14:36+0200\n"
|
||||
"PO-Revision-Date: 2023-07-05 13:13+0000\n"
|
||||
"Last-Translator: Geoffrey Coulaud <geoffrey.coulaud+github@gmail.com>\n"
|
||||
"POT-Creation-Date: 2023-04-11 23:33+0200\n"
|
||||
"PO-Revision-Date: 2023-04-08 20:49+0000\n"
|
||||
"Last-Translator: rene-coty <irenee.thirion@e.email>\n"
|
||||
"Language-Team: French <https://hosted.weblate.org/projects/cartridges/"
|
||||
"cartridges/fr/>\n"
|
||||
"Language: fr\n"
|
||||
@@ -21,27 +18,23 @@ 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.0-dev\n"
|
||||
"X-Generator: Weblate 4.17-dev\n"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:3
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:47
|
||||
#: src/main.py:162
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:29
|
||||
#: src/main.py:119
|
||||
msgid "Cartridges"
|
||||
msgstr "Cartridges"
|
||||
msgstr "Cartouches"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:4
|
||||
msgid "Game Launcher"
|
||||
msgstr "Lanceur de jeux"
|
||||
msgstr "Lanceur de jeu"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:5
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:7
|
||||
msgid "Launch all your games"
|
||||
msgstr "Lancez tous vos jeux"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:11
|
||||
msgid "gaming;launcher;steam;lutris;heroic;bottles;itch;"
|
||||
msgstr "gaming;jeux;lanceur;steam;lutris;heroic;bouteilles;itch;"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:9
|
||||
msgid ""
|
||||
"Cartridges is a simple game launcher for all of your games. It has support "
|
||||
@@ -49,85 +42,50 @@ msgid ""
|
||||
"necessary. You can sort and hide games or download cover art from "
|
||||
"SteamGridDB."
|
||||
msgstr ""
|
||||
"Cartridges est un lanceur de jeux simple pour tous vos jeux. Il prend en "
|
||||
"charge l’importation des jeux depuis Steam, Lutris, Heroic et d’autres "
|
||||
"encore, sans nécessiter de connexion. Vous pouvez trier et masquer les jeux "
|
||||
"ou télécharger la pochette depuis SteamGridDB."
|
||||
"Cartouches est un simple lanceur pour tous vos jeux. Il prend en charge "
|
||||
"l’importation de vos jeux depuis Steam, Lutris, Heroic et d’autres encore, "
|
||||
"sans nécessiter de compte. Vous pouvez trier et masquer les jeux, ou "
|
||||
"télécharger la pochette depuis SteamGridDB."
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:30
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:22
|
||||
msgid "Library"
|
||||
msgstr "Bibliothèque"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 src/details_window.py:67
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:26
|
||||
#: src/utils/create_details_window.py:87
|
||||
msgid "Edit Game Details"
|
||||
msgstr "Modifier les détails du jeu"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:38 data/gtk/window.blp:71
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:30 data/gtk/window.blp:51
|
||||
msgid "Game Details"
|
||||
msgstr "Détails du jeu"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:42 data/gtk/window.blp:416
|
||||
#: src/details_window.py:239
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 data/gtk/window.blp:402
|
||||
#: src/utils/importer.py:94 src/utils/importer.py:123 src/utils/importer.py:148
|
||||
#: src/utils/steamgriddb.py:116
|
||||
msgid "Preferences"
|
||||
msgstr "Préférences"
|
||||
|
||||
#: data/gtk/details-window.blp:25
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
#: data/gtk/details-window.blp:57
|
||||
msgid "New Cover"
|
||||
msgstr "Nouvelle couverture"
|
||||
|
||||
#: data/gtk/details-window.blp:75
|
||||
msgid "Delete Cover"
|
||||
msgstr "Supprimer la couverture"
|
||||
|
||||
#: data/gtk/details-window.blp:101 data/gtk/details-window.blp:106
|
||||
#: data/gtk/game.blp:80
|
||||
#: data/gtk/game.blp:67 src/utils/create_details_window.py:129
|
||||
msgid "Title"
|
||||
msgstr "Titre"
|
||||
|
||||
#: data/gtk/details-window.blp:102
|
||||
msgid "The title of the game"
|
||||
msgstr "Le titre du jeu"
|
||||
|
||||
#: data/gtk/details-window.blp:112 data/gtk/details-window.blp:117
|
||||
msgid "Developer"
|
||||
msgstr "Développeur"
|
||||
|
||||
#: data/gtk/details-window.blp:113
|
||||
msgid "The developer or publisher (optional)"
|
||||
msgstr "Le développeur ou l’éditeur (facultatif)"
|
||||
|
||||
#: data/gtk/details-window.blp:123 data/gtk/details-window.blp:155
|
||||
msgid "Executable"
|
||||
msgstr "Exécutable"
|
||||
|
||||
#: data/gtk/details-window.blp:124
|
||||
msgid "File to open or command to run when launching the game"
|
||||
msgstr "Fichier à ouvrir ou commande à exécuter au lancement du jeu"
|
||||
|
||||
#: data/gtk/details-window.blp:130
|
||||
msgid "More Info"
|
||||
msgstr "Plus d’informations"
|
||||
|
||||
#: data/gtk/game.blp:102 data/gtk/game.blp:121 data/gtk/window.blp:195
|
||||
#: data/gtk/game.blp:89 data/gtk/game.blp:108 data/gtk/window.blp:170
|
||||
msgid "Edit"
|
||||
msgstr "Modifier"
|
||||
|
||||
#: data/gtk/game.blp:107 src/window.py:171
|
||||
#: data/gtk/game.blp:94 src/window.py:286
|
||||
msgid "Hide"
|
||||
msgstr "Masquer"
|
||||
|
||||
#: data/gtk/game.blp:112 data/gtk/game.blp:131 data/gtk/preferences.blp:56
|
||||
#: data/gtk/window.blp:209
|
||||
#: data/gtk/game.blp:99 data/gtk/game.blp:118 data/gtk/preferences.blp:56
|
||||
#: data/gtk/window.blp:186
|
||||
msgid "Remove"
|
||||
msgstr "Supprimer"
|
||||
msgstr "Retirer"
|
||||
|
||||
#: data/gtk/game.blp:126 src/window.py:173
|
||||
#: data/gtk/game.blp:113 src/window.py:283
|
||||
msgid "Unhide"
|
||||
msgstr "Ne plus masquer"
|
||||
msgstr "Afficher"
|
||||
|
||||
#: data/gtk/help-overlay.blp:11 data/gtk/preferences.blp:9
|
||||
msgid "General"
|
||||
@@ -137,8 +95,8 @@ msgstr "Général"
|
||||
msgid "Quit"
|
||||
msgstr "Quitter"
|
||||
|
||||
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:217 data/gtk/window.blp:257
|
||||
#: data/gtk/window.blp:323
|
||||
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:205 data/gtk/window.blp:249
|
||||
#: data/gtk/window.blp:312
|
||||
msgid "Search"
|
||||
msgstr "Rechercher"
|
||||
|
||||
@@ -150,7 +108,8 @@ msgstr "Afficher les préférences"
|
||||
msgid "Shortcuts"
|
||||
msgstr "Raccourcis"
|
||||
|
||||
#: data/gtk/help-overlay.blp:34 src/game.py:102 src/preferences.py:112
|
||||
#: data/gtk/help-overlay.blp:34 src/main.py:186 src/main.py:242
|
||||
#: src/preferences.py:133
|
||||
msgid "Undo"
|
||||
msgstr "Annuler"
|
||||
|
||||
@@ -178,7 +137,7 @@ msgstr "Afficher les jeux masqués"
|
||||
msgid "Remove game"
|
||||
msgstr "Supprimer le jeu"
|
||||
|
||||
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:268
|
||||
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:235
|
||||
msgid "Behavior"
|
||||
msgstr "Comportement"
|
||||
|
||||
@@ -195,7 +154,7 @@ msgid "Swaps the behavior of the cover image and the play button"
|
||||
msgstr ""
|
||||
"Intervertit le comportement de l’image de la pochette et du bouton de lecture"
|
||||
|
||||
#: data/gtk/preferences.blp:36 src/details_window.py:81
|
||||
#: data/gtk/preferences.blp:36 src/utils/create_details_window.py:101
|
||||
msgid "Images"
|
||||
msgstr "Images"
|
||||
|
||||
@@ -206,8 +165,7 @@ msgstr "Images de haute qualité"
|
||||
#: data/gtk/preferences.blp:40
|
||||
msgid "Save game covers losslessly at the cost of storage"
|
||||
msgstr ""
|
||||
"Sauvegarde les pochettes des jeux sans perte, mais prend plus d'espace de "
|
||||
"stockage"
|
||||
"Sauvegarde les pochettes des jeux sans perte, mais prend plus de stockage"
|
||||
|
||||
#: data/gtk/preferences.blp:50
|
||||
msgid "Danger Zone"
|
||||
@@ -217,241 +175,346 @@ msgstr "Zone de danger"
|
||||
msgid "Remove All Games"
|
||||
msgstr "Supprimer tous les jeux"
|
||||
|
||||
#: data/gtk/preferences.blp:85 data/gtk/window.blp:27 data/gtk/window.blp:442
|
||||
#: data/gtk/preferences.blp:69 data/gtk/window.blp:427
|
||||
msgid "Import"
|
||||
msgstr "Importer"
|
||||
|
||||
#: data/gtk/preferences.blp:89
|
||||
#: data/gtk/preferences.blp:73
|
||||
msgid "Sources"
|
||||
msgstr "Sources"
|
||||
|
||||
#: data/gtk/preferences.blp:92
|
||||
#: data/gtk/preferences.blp:76
|
||||
msgid "Steam"
|
||||
msgstr "Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:96 data/gtk/preferences.blp:110
|
||||
#: data/gtk/preferences.blp:151 data/gtk/preferences.blp:192
|
||||
#: data/gtk/preferences.blp:206 data/gtk/preferences.blp:220
|
||||
#: data/gtk/preferences.blp:234
|
||||
msgid "Install Location"
|
||||
msgstr "Emplacement d'installation"
|
||||
#: data/gtk/preferences.blp:80
|
||||
msgid "Steam Install Location"
|
||||
msgstr "Emplacement de l'installation de Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:106
|
||||
#: data/gtk/preferences.blp:81 data/gtk/preferences.blp:119
|
||||
#: data/gtk/preferences.blp:153 data/gtk/preferences.blp:195
|
||||
#: data/gtk/preferences.blp:210
|
||||
msgid "Directory to use when importing games"
|
||||
msgstr "Répertoire à utiliser lors de l'importation de jeux"
|
||||
|
||||
#: data/gtk/preferences.blp:89 src/utils/importer.py:143
|
||||
msgid "Extra Steam Libraries"
|
||||
msgstr "Bibliothèque Steam supplémentaires"
|
||||
|
||||
#: data/gtk/preferences.blp:90
|
||||
msgid "Select other directories where you have Steam games installed"
|
||||
msgstr ""
|
||||
"Sélectionnez d’autres répertoires où vous avez des jeux Steam installés"
|
||||
|
||||
#: data/gtk/preferences.blp:96
|
||||
msgid "Clear"
|
||||
msgstr "Vider"
|
||||
|
||||
#: data/gtk/preferences.blp:114
|
||||
msgid "Lutris"
|
||||
msgstr "Lutris"
|
||||
|
||||
#: data/gtk/preferences.blp:119
|
||||
msgid "Cache Location"
|
||||
msgstr "Emplacement du cache"
|
||||
#: data/gtk/preferences.blp:118
|
||||
msgid "Lutris Install Location"
|
||||
msgstr "Emplacement de l’installation Lutris"
|
||||
|
||||
#: data/gtk/preferences.blp:128
|
||||
msgid "Lutris Cache Location"
|
||||
msgstr "Emplacement du cache Lutris"
|
||||
|
||||
#: data/gtk/preferences.blp:129
|
||||
msgid "Directory to use when importing game covers"
|
||||
msgstr "Répertoire à utiliser lors de l’importation des pochettes des jeux"
|
||||
|
||||
#: data/gtk/preferences.blp:138
|
||||
msgid "Import Steam Games"
|
||||
msgstr "Importer les jeux de Steam"
|
||||
msgstr "Importer des jeux Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:137
|
||||
msgid "Import Flatpak Games"
|
||||
msgstr "Importer des jeux Flatpak"
|
||||
|
||||
#: data/gtk/preferences.blp:147
|
||||
#: data/gtk/preferences.blp:148
|
||||
msgid "Heroic"
|
||||
msgstr "Heroic"
|
||||
|
||||
#: data/gtk/preferences.blp:160
|
||||
#: data/gtk/preferences.blp:152
|
||||
msgid "Heroic Install Location"
|
||||
msgstr "Emplacement de l'installation Heroic"
|
||||
|
||||
#: data/gtk/preferences.blp:162
|
||||
msgid "Import Epic Games"
|
||||
msgstr "Importer les jeux d'Epic Games"
|
||||
msgstr "Importer Epic Games"
|
||||
|
||||
#: data/gtk/preferences.blp:169
|
||||
#: data/gtk/preferences.blp:171
|
||||
msgid "Import GOG Games"
|
||||
msgstr "Importer les jeux de GOG"
|
||||
msgstr "Importer des jeux GOG"
|
||||
|
||||
#: data/gtk/preferences.blp:178
|
||||
#: data/gtk/preferences.blp:180
|
||||
msgid "Import Sideloaded Games"
|
||||
msgstr "Importer des jeux Sideloaded"
|
||||
|
||||
#: data/gtk/preferences.blp:188
|
||||
#: data/gtk/preferences.blp:190
|
||||
msgid "Bottles"
|
||||
msgstr "Bottles"
|
||||
|
||||
#: data/gtk/preferences.blp:202
|
||||
#: data/gtk/preferences.blp:194
|
||||
msgid "Bottles Install Location"
|
||||
msgstr "Emplacement de l'installation Bottles"
|
||||
|
||||
#: data/gtk/preferences.blp:205
|
||||
msgid "itch"
|
||||
msgstr "itch"
|
||||
|
||||
#: data/gtk/preferences.blp:216
|
||||
msgid "Legendary"
|
||||
msgstr "Légendaire"
|
||||
#: data/gtk/preferences.blp:209
|
||||
msgid "itch Install Location"
|
||||
msgstr "Emplacement d’installation itch"
|
||||
|
||||
#: data/gtk/preferences.blp:230
|
||||
msgid "Flatpak"
|
||||
msgstr "Flatpak"
|
||||
|
||||
#: data/gtk/preferences.blp:243
|
||||
msgid "Import Game Launchers"
|
||||
msgstr "Importer des lanceurs de jeux"
|
||||
|
||||
#: data/gtk/preferences.blp:256
|
||||
#: data/gtk/preferences.blp:223
|
||||
msgid "SteamGridDB"
|
||||
msgstr "SteamGridDB"
|
||||
|
||||
#: data/gtk/preferences.blp:260
|
||||
#: data/gtk/preferences.blp:227
|
||||
msgid "Authentication"
|
||||
msgstr "Authentification"
|
||||
msgstr "Identification"
|
||||
|
||||
#: data/gtk/preferences.blp:263
|
||||
#: data/gtk/preferences.blp:230
|
||||
msgid "API Key"
|
||||
msgstr "Clé API"
|
||||
|
||||
#: data/gtk/preferences.blp:271
|
||||
#: data/gtk/preferences.blp:238
|
||||
msgid "Use SteamGridDB"
|
||||
msgstr "Utiliser SteamGridDB"
|
||||
|
||||
#: data/gtk/preferences.blp:272
|
||||
#: data/gtk/preferences.blp:239
|
||||
msgid "Download images when adding or importing games"
|
||||
msgstr "Télécharger les images lors de l’ajout ou de l’importation de jeux"
|
||||
|
||||
#: data/gtk/preferences.blp:281
|
||||
#: data/gtk/preferences.blp:248
|
||||
msgid "Prefer Over Official Images"
|
||||
msgstr "Préférer à la place des images officielles"
|
||||
|
||||
#: data/gtk/preferences.blp:290
|
||||
#: data/gtk/preferences.blp:257
|
||||
#, fuzzy
|
||||
#| msgid "Prefer Over Official Images"
|
||||
msgid "Prefer Animated Images"
|
||||
msgstr "Préférer les images animées"
|
||||
msgstr "Préférer à la place des images officielles"
|
||||
|
||||
#: data/gtk/window.blp:6 data/gtk/window.blp:14
|
||||
#: data/gtk/window.blp:6 src/utils/importer.py:91
|
||||
msgid "No Games Found"
|
||||
msgstr "Aucun jeu trouvé"
|
||||
|
||||
#: data/gtk/window.blp:7 data/gtk/window.blp:15
|
||||
#: data/gtk/window.blp:7
|
||||
msgid "Try a different search."
|
||||
msgstr "Essayez une autre recherche."
|
||||
|
||||
#: data/gtk/window.blp:21
|
||||
#: data/gtk/window.blp:14
|
||||
msgid "No Games"
|
||||
msgstr "Aucun jeu"
|
||||
|
||||
#: data/gtk/window.blp:22
|
||||
#: data/gtk/window.blp:15
|
||||
msgid "Use the + button to add games."
|
||||
msgstr "Utilisez le bouton + pour ajouter des jeux."
|
||||
|
||||
#: data/gtk/window.blp:40
|
||||
#: data/gtk/window.blp:22
|
||||
msgid "No Hidden Games"
|
||||
msgstr "Pas de jeux masqués"
|
||||
|
||||
#: data/gtk/window.blp:41
|
||||
#: data/gtk/window.blp:23
|
||||
msgid "Games you hide will appear here."
|
||||
msgstr "Les jeux que vous masquez apparaîtront ici."
|
||||
|
||||
#: data/gtk/window.blp:64 data/gtk/window.blp:304
|
||||
#: data/gtk/window.blp:44 data/gtk/window.blp:293
|
||||
msgid "Back"
|
||||
msgstr "Retour"
|
||||
|
||||
#: data/gtk/window.blp:121
|
||||
#: data/gtk/window.blp:100
|
||||
msgid "Game Title"
|
||||
msgstr "Titre du jeu"
|
||||
|
||||
#: data/gtk/window.blp:176
|
||||
#: data/gtk/window.blp:151 src/game.py:158
|
||||
msgid "Play"
|
||||
msgstr "Jouer"
|
||||
|
||||
#: data/gtk/window.blp:243 data/gtk/window.blp:435
|
||||
#: data/gtk/window.blp:235 data/gtk/window.blp:421
|
||||
msgid "Add Game"
|
||||
msgstr "Ajouter un jeu"
|
||||
|
||||
#: data/gtk/window.blp:250 data/gtk/window.blp:316
|
||||
#: data/gtk/window.blp:242 data/gtk/window.blp:305
|
||||
msgid "Main Menu"
|
||||
msgstr "Menu principal"
|
||||
|
||||
#: data/gtk/window.blp:311
|
||||
#: data/gtk/window.blp:300
|
||||
msgid "Hidden Games"
|
||||
msgstr "Jeux masqués"
|
||||
|
||||
#: data/gtk/window.blp:374
|
||||
#: data/gtk/window.blp:360
|
||||
msgid "Sort"
|
||||
msgstr "Trier"
|
||||
|
||||
#: data/gtk/window.blp:377
|
||||
#: data/gtk/window.blp:363
|
||||
msgid "A-Z"
|
||||
msgstr "A-Z"
|
||||
|
||||
#: data/gtk/window.blp:383
|
||||
#: data/gtk/window.blp:369
|
||||
msgid "Z-A"
|
||||
msgstr "Z-A"
|
||||
|
||||
#: data/gtk/window.blp:389
|
||||
#: data/gtk/window.blp:375
|
||||
msgid "Newest"
|
||||
msgstr "Le plus récent"
|
||||
|
||||
#: data/gtk/window.blp:395
|
||||
#: data/gtk/window.blp:381
|
||||
msgid "Oldest"
|
||||
msgstr "Le plus ancien"
|
||||
|
||||
#: data/gtk/window.blp:401
|
||||
#: data/gtk/window.blp:387
|
||||
msgid "Last Played"
|
||||
msgstr "Dernière session"
|
||||
|
||||
#: data/gtk/window.blp:408
|
||||
#: data/gtk/window.blp:394
|
||||
msgid "Show Hidden"
|
||||
msgstr "Afficher les masqués"
|
||||
|
||||
#: data/gtk/window.blp:421
|
||||
#: data/gtk/window.blp:407
|
||||
msgid "Keyboard Shortcuts"
|
||||
msgstr "Raccourcis clavier"
|
||||
|
||||
#: data/gtk/window.blp:426
|
||||
#: data/gtk/window.blp:412
|
||||
msgid "About Cartridges"
|
||||
msgstr "À propos de Cartridges"
|
||||
msgstr "À propos de Cartouches"
|
||||
|
||||
#. Translators: Replace this with your name for it to show up in the about window
|
||||
#: src/main.py:180
|
||||
#: src/main.py:137
|
||||
msgid "translator_credits"
|
||||
msgstr "Irénée Thirion"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:164
|
||||
msgid "{} launched"
|
||||
msgstr "{} lancé"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:182
|
||||
msgid "{} hidden"
|
||||
msgstr "{} masqué"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:185
|
||||
msgid "{} unhidden"
|
||||
msgstr "{} affiché"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:241
|
||||
msgid "{} removed"
|
||||
msgstr "{} retiré"
|
||||
|
||||
#: src/window.py:262
|
||||
msgid "Today"
|
||||
msgstr "Aujourd'hui"
|
||||
|
||||
#: src/window.py:264
|
||||
msgid "Yesterday"
|
||||
msgstr "Hier"
|
||||
|
||||
#. The variable is the date when the game was added
|
||||
#: src/window.py:194
|
||||
#: src/window.py:310
|
||||
msgid "Added: {}"
|
||||
msgstr "Ajouté : {}"
|
||||
|
||||
#: src/window.py:197
|
||||
#: src/window.py:315
|
||||
msgid "Never"
|
||||
msgstr "Jamais"
|
||||
|
||||
#. The variable is the date when the game was last played
|
||||
#: src/window.py:201
|
||||
#: src/window.py:319
|
||||
msgid "Last played: {}"
|
||||
msgstr "Dernière session : {}"
|
||||
|
||||
#: src/details_window.py:72
|
||||
msgid "Apply"
|
||||
msgstr "Appliquer"
|
||||
#: src/game.py:156
|
||||
msgid "Details"
|
||||
msgstr "Détails"
|
||||
|
||||
#: src/details_window.py:78
|
||||
#: src/preferences.py:54
|
||||
msgid "Installation Not Found"
|
||||
msgstr "Installation introuvable"
|
||||
|
||||
#. The variable is the name of the game launcher
|
||||
#: src/preferences.py:56
|
||||
msgid "Select the {} configuration directory."
|
||||
msgstr "Sélectionnez le répertoire de configuration de {}."
|
||||
|
||||
#. The variable is the name of the game launcher
|
||||
#: src/preferences.py:59
|
||||
msgid "Select the {} data directory."
|
||||
msgstr "Sélectionnez le répertoire de données de {}."
|
||||
|
||||
#: src/preferences.py:61 src/preferences.py:240
|
||||
msgid "Set Location"
|
||||
msgstr "Définir l’emplacement"
|
||||
|
||||
#: src/preferences.py:132
|
||||
msgid "All games removed"
|
||||
msgstr "Tous les jeux ont été supprimés"
|
||||
|
||||
#: src/preferences.py:237
|
||||
msgid "Cache Not Found"
|
||||
msgstr "Cache non trouvé"
|
||||
|
||||
#: src/preferences.py:238
|
||||
msgid "Select the Lutris cache directory."
|
||||
msgstr "Sélectionnez le répertoire de cache de Lutris."
|
||||
|
||||
#: src/preferences.py:344
|
||||
msgid ""
|
||||
"An API key is required to use SteamGridDB. You can generate one {}here{}."
|
||||
msgstr ""
|
||||
"Une clé API est requise pour utiliser SteamGridDB. Vous pouvez en générer "
|
||||
"une {}ici{}."
|
||||
|
||||
#: src/utils/create_details_window.py:81
|
||||
msgid "Add New Game"
|
||||
msgstr "Ajouter un nouveau jeu"
|
||||
|
||||
#: src/details_window.py:79
|
||||
#: src/utils/create_details_window.py:85
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmer"
|
||||
|
||||
#: src/utils/create_details_window.py:96
|
||||
msgid "Apply"
|
||||
msgstr "Appliquer"
|
||||
|
||||
#: src/utils/create_details_window.py:130
|
||||
msgid "The title of the game"
|
||||
msgstr "Le titre du jeu"
|
||||
|
||||
#: src/utils/create_details_window.py:135
|
||||
msgid "Developer"
|
||||
msgstr "Développeur"
|
||||
|
||||
#: src/utils/create_details_window.py:136
|
||||
msgid "The developer or publisher (optional)"
|
||||
msgstr "Le développeur ou l'éditeur (facultatif)"
|
||||
|
||||
#. Translate this string as you would translate "file"
|
||||
#: src/details_window.py:92
|
||||
#: src/utils/create_details_window.py:147
|
||||
msgid "file.txt"
|
||||
msgstr "fichier.txt"
|
||||
msgstr "ficher.txt"
|
||||
|
||||
#. As in software
|
||||
#: src/details_window.py:94
|
||||
#: src/utils/create_details_window.py:149
|
||||
msgid "program"
|
||||
msgstr "programme"
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:99 src/details_window.py:101
|
||||
#: src/utils/create_details_window.py:154
|
||||
#: src/utils/create_details_window.py:156
|
||||
msgid "C:\\path\\to\\{}"
|
||||
msgstr "C:\\chemin\\vers\\{}"
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:105 src/details_window.py:107
|
||||
#: src/utils/create_details_window.py:160
|
||||
#: src/utils/create_details_window.py:162
|
||||
msgid "/path/to/{}"
|
||||
msgstr "/chemin/vers/{}"
|
||||
|
||||
#: src/details_window.py:112
|
||||
#: src/utils/create_details_window.py:166
|
||||
msgid ""
|
||||
"To launch the executable \"{}\", use the command:\n"
|
||||
"\n"
|
||||
@@ -463,11 +526,11 @@ msgid ""
|
||||
"\n"
|
||||
"If the path contains spaces, make sure to wrap it in double quotes!"
|
||||
msgstr ""
|
||||
"Pour lancer l’exécutable « {} », utilisez la commande :\n"
|
||||
"Pour lancer l'exécutable « {} », utilisez la commande :\n"
|
||||
"\n"
|
||||
"<tt>\"{}\"</tt>\n"
|
||||
"\n"
|
||||
"Pour ouvrir le fichier « {} » avec l’application par défaut, utilisez la "
|
||||
"Pour ouvrir le fichier « {} » avec l'application par défaut, utilisez la "
|
||||
"commande :\n"
|
||||
"\n"
|
||||
"<tt>{} \"{}\"</tt>\n"
|
||||
@@ -475,177 +538,84 @@ msgstr ""
|
||||
"Si le chemin d'accès contient des espaces, veillez à le mettre entre "
|
||||
"guillemets !"
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:153
|
||||
msgid "Couldn't Add Game"
|
||||
msgstr "Impossible d’ajouter le jeu"
|
||||
#: src/utils/create_details_window.py:189
|
||||
msgid "Executable"
|
||||
msgstr "Exécutable"
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:181
|
||||
#: src/utils/create_details_window.py:190
|
||||
msgid "File to open or command to run when launching the game"
|
||||
msgstr "Fichier à ouvrir ou commande à exécuter au lancement du jeu"
|
||||
|
||||
#: src/utils/create_details_window.py:202
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
#: src/utils/create_details_window.py:259
|
||||
#: src/utils/create_details_window.py:269
|
||||
#: src/utils/create_details_window.py:275
|
||||
msgid "Couldn't Add Game"
|
||||
msgstr "Impossible d'ajouter un jeu"
|
||||
|
||||
#: src/utils/create_details_window.py:261
|
||||
#: src/utils/create_details_window.py:299
|
||||
#: src/utils/create_details_window.py:307
|
||||
msgid "Couldn't Apply Preferences"
|
||||
msgstr "Impossible d'appliquer les préférences"
|
||||
|
||||
#: src/utils/create_details_window.py:269
|
||||
#: src/utils/create_details_window.py:300
|
||||
msgid "Game title cannot be empty."
|
||||
msgstr "Le titre du jeu ne peut pas être vide."
|
||||
|
||||
#: src/details_window.py:153 src/details_window.py:189
|
||||
#: src/utils/create_details_window.py:275
|
||||
#: src/utils/create_details_window.py:308
|
||||
msgid "Executable cannot be empty."
|
||||
msgstr "L’exécutable ne peut pas être vide."
|
||||
|
||||
#: src/details_window.py:180 src/details_window.py:188
|
||||
msgid "Couldn't Apply Preferences"
|
||||
msgstr "Impossible d’appliquer les préférences"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:138
|
||||
msgid "{} launched"
|
||||
msgstr "{} lancé"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:152
|
||||
msgid "{} hidden"
|
||||
msgstr "{} masqué"
|
||||
|
||||
#: src/game.py:152
|
||||
msgid "{} unhidden"
|
||||
msgstr "{} affiché"
|
||||
|
||||
#: src/game.py:169
|
||||
msgid "{} removed"
|
||||
msgstr "{} retiré"
|
||||
|
||||
#: src/preferences.py:111
|
||||
msgid "All games removed"
|
||||
msgstr "Tous les jeux ont été supprimés"
|
||||
|
||||
#: src/preferences.py:159
|
||||
msgid ""
|
||||
"An API key is required to use SteamGridDB. You can generate one {}here{}."
|
||||
msgstr ""
|
||||
"Une clé API est requise pour utiliser SteamGridDB. Vous pouvez en générer "
|
||||
"une {}ici{}."
|
||||
|
||||
#: src/preferences.py:284
|
||||
msgid "Installation Not Found"
|
||||
msgstr "Installation introuvable"
|
||||
|
||||
#: src/preferences.py:286
|
||||
msgid "Select a valid directory."
|
||||
msgstr "Sélectionnez un répertoire valide."
|
||||
|
||||
#: src/preferences.py:348
|
||||
msgid "Invalid Directory"
|
||||
msgstr "Répertoire invalide"
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:352
|
||||
msgid "Select the {} cache directory."
|
||||
msgstr "Sélectionnez le répertoire de cache de {}."
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:355
|
||||
msgid "Select the {} configuration directory."
|
||||
msgstr "Sélectionnez le répertoire de configuration de {}."
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:358
|
||||
msgid "Select the {} data directory."
|
||||
msgstr "Sélectionnez le répertoire de données de {}."
|
||||
|
||||
#: src/preferences.py:364
|
||||
msgid "Set Location"
|
||||
msgstr "Définir l’emplacement"
|
||||
msgstr "L'exécutable ne peut pas être vide."
|
||||
|
||||
#: src/utils/create_dialog.py:25
|
||||
msgid "Dismiss"
|
||||
msgstr "Fermer"
|
||||
msgstr "Rejeter"
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:47
|
||||
msgid "Couldn't Authenticate SteamGridDB"
|
||||
#: src/utils/importer.py:42
|
||||
msgid "Importing Games…"
|
||||
msgstr "Importation des jeux…"
|
||||
|
||||
#: src/utils/importer.py:77
|
||||
msgid "Importing Covers…"
|
||||
msgstr "Importation des pochettes des jeux…"
|
||||
|
||||
#: src/utils/importer.py:92
|
||||
msgid "No new games were found on your system."
|
||||
msgstr "Aucun nouveau jeu n’a été trouvé sur votre système."
|
||||
|
||||
#: src/utils/importer.py:100
|
||||
msgid "Game Imported"
|
||||
msgstr "Jeu importé"
|
||||
|
||||
#: src/utils/importer.py:101
|
||||
msgid "Successfully imported 1 game."
|
||||
msgstr "Importation réussie de 1 jeu."
|
||||
|
||||
#: src/utils/importer.py:107
|
||||
msgid "Games Imported"
|
||||
msgstr "Jeux importés"
|
||||
|
||||
#. The variable is the number of games
|
||||
#: src/utils/importer.py:109
|
||||
msgid "Successfully imported {} games."
|
||||
msgstr "Importation de {} jeux réussie."
|
||||
|
||||
#: src/utils/importer.py:120 src/utils/steamgriddb.py:113
|
||||
msgid "Couldn't Connect to SteamGridDB"
|
||||
msgstr "Impossible de se connecter à SteamGridDB"
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:48
|
||||
msgid "Verify your API key in preferences"
|
||||
msgstr "Vérifiez votre clé API dans les préférences"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "The Steam directory cannot be found."
|
||||
#~ msgid "Directory not Valid"
|
||||
#~ msgstr "Le répertoire Steam est introuvable."
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Confirm"
|
||||
#~ msgid "Configuration"
|
||||
#~ msgstr "Confirmer"
|
||||
|
||||
#~ msgid "Steam Install Location"
|
||||
#~ msgstr "Emplacement de l’installation de Steam"
|
||||
|
||||
#~ msgid "Lutris Install Location"
|
||||
#~ msgstr "Emplacement de l’installation de Lutris"
|
||||
|
||||
#~ msgid "Heroic Install Location"
|
||||
#~ msgstr "Emplacement de l’installation d'Heroic"
|
||||
|
||||
#~ msgid "Bottles Install Location"
|
||||
#~ msgstr "Emplacement de l’installation de Bouteilles"
|
||||
|
||||
#~ msgid "Today"
|
||||
#~ msgstr "Aujourd’hui"
|
||||
|
||||
#~ msgid "Yesterday"
|
||||
#~ msgstr "Hier"
|
||||
|
||||
#~ msgid "Cache Not Found"
|
||||
#~ msgstr "Cache non trouvé"
|
||||
|
||||
#~ msgid "Select the Lutris cache directory."
|
||||
#~ msgstr "Sélectionnez le répertoire du cache de Lutris."
|
||||
|
||||
#~ msgid "Importing Games…"
|
||||
#~ msgstr "Importation des jeux…"
|
||||
|
||||
#~ msgid "Importing Covers…"
|
||||
#~ msgstr "Importation des pochettes des jeux…"
|
||||
|
||||
#~ msgid "No new games found"
|
||||
#~ msgstr "Aucun nouveau jeu trouvé"
|
||||
|
||||
#~ msgid "1 game imported"
|
||||
#~ msgstr "1 jeu importé"
|
||||
|
||||
#~ msgid "{} games imported"
|
||||
#~ msgstr "{} jeux importés"
|
||||
|
||||
#~ msgid "Directory to use when importing games"
|
||||
#~ msgstr "Répertoire à utiliser lors de l’importation de jeux"
|
||||
|
||||
#~ msgid "Extra Steam Libraries"
|
||||
#~ msgstr "Bibliothèques Steam supplémentaires"
|
||||
|
||||
#~ msgid "Select other directories where you have Steam games installed"
|
||||
#~ msgstr ""
|
||||
#~ "Sélectionnez d’autres répertoires où vous avez des jeux Steam installés"
|
||||
|
||||
#~ msgid "Clear"
|
||||
#~ msgstr "Vider"
|
||||
|
||||
#~ msgid "Directory to use when importing game covers"
|
||||
#~ msgstr "Répertoire à utiliser lors de l’importation des pochettes des jeux"
|
||||
|
||||
#~ msgid "Details"
|
||||
#~ msgstr "Détails"
|
||||
|
||||
#~ msgid "No new games were found on your system."
|
||||
#~ msgstr "Aucun nouveau jeu n’a été trouvé sur votre système."
|
||||
|
||||
#~ msgid "Successfully imported 1 game."
|
||||
#~ msgstr "Importation réussie de 1 jeu."
|
||||
|
||||
#~ msgid "Successfully imported {} games."
|
||||
#~ msgstr "Importation de {} jeux réussie."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Looks like you have multiple Steam libraries. Would you like to add them "
|
||||
#~ "in preferences?"
|
||||
#~ msgstr ""
|
||||
#~ "Il semble que vous ayez plusieurs bibliothèques Steam. Souhaitez-vous les "
|
||||
#~ "ajouter dans les préférences ?"
|
||||
#: src/utils/importer.py:145
|
||||
msgid ""
|
||||
"Looks like you have multiple Steam libraries. Would you like to add them in "
|
||||
"preferences?"
|
||||
msgstr ""
|
||||
"Il semble que vous ayez plusieurs bibliothèques Steam. Souhaitez-vous les "
|
||||
"ajouter dans les préférences ?"
|
||||
|
||||
#~ msgid "Launch your games"
|
||||
#~ msgstr "Lancez vos jeux"
|
||||
@@ -723,6 +693,9 @@ msgstr "Vérifiez votre clé API dans les préférences"
|
||||
#~ msgid "No new games were found in the Steam library."
|
||||
#~ msgstr "Aucun nouveau jeu n'a été trouvé dans la bibliothèque Steam."
|
||||
|
||||
#~ msgid "The Steam directory cannot be found."
|
||||
#~ msgstr "Le répertoire Steam est introuvable."
|
||||
|
||||
#~ msgid "Talking to Steam"
|
||||
#~ msgstr "Parler à Steam"
|
||||
|
||||
|
||||
567
po/hu.po
@@ -8,8 +8,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-05 14:36+0200\n"
|
||||
"PO-Revision-Date: 2023-07-05 13:13+0000\n"
|
||||
"POT-Creation-Date: 2023-04-11 23:33+0200\n"
|
||||
"PO-Revision-Date: 2023-04-11 21:31+0000\n"
|
||||
"Last-Translator: kramo <contact@kramo.hu>\n"
|
||||
"Language-Team: Hungarian <https://hosted.weblate.org/projects/cartridges/"
|
||||
"cartridges/hu/>\n"
|
||||
@@ -18,11 +18,11 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.0-dev\n"
|
||||
"X-Generator: Weblate 4.17-dev\n"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:3
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:47
|
||||
#: src/main.py:162
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:29
|
||||
#: src/main.py:119
|
||||
msgid "Cartridges"
|
||||
msgstr "Kazetták"
|
||||
|
||||
@@ -35,10 +35,6 @@ msgstr "Játék Indító"
|
||||
msgid "Launch all your games"
|
||||
msgstr "Indítsa el az összes játékát"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:11
|
||||
msgid "gaming;launcher;steam;lutris;heroic;bottles;itch;"
|
||||
msgstr "játék;indító;steam;lutris;heroic;palackok;itch;"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:9
|
||||
msgid ""
|
||||
"Cartridges is a simple game launcher for all of your games. It has support "
|
||||
@@ -50,78 +46,43 @@ msgstr ""
|
||||
"ból, Heroic-ból és több más forrásból bejelentkezés nélkül. Rendezheti és "
|
||||
"elrejtheti a játékait, valamint letölthet borítóképeket a SteamGridDB-ről."
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:30
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:22
|
||||
msgid "Library"
|
||||
msgstr "Könyvtár"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 src/details_window.py:67
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:26
|
||||
#: src/utils/create_details_window.py:87
|
||||
msgid "Edit Game Details"
|
||||
msgstr "Játék Szerkesztése"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:38 data/gtk/window.blp:71
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:30 data/gtk/window.blp:51
|
||||
msgid "Game Details"
|
||||
msgstr "Játék Tulajdonságai"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:42 data/gtk/window.blp:416
|
||||
#: src/details_window.py:239
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 data/gtk/window.blp:402
|
||||
#: src/utils/importer.py:94 src/utils/importer.py:123 src/utils/importer.py:148
|
||||
#: src/utils/steamgriddb.py:116
|
||||
msgid "Preferences"
|
||||
msgstr "Beállítások"
|
||||
|
||||
#: data/gtk/details-window.blp:25
|
||||
msgid "Cancel"
|
||||
msgstr "Mégse"
|
||||
|
||||
#: data/gtk/details-window.blp:57
|
||||
msgid "New Cover"
|
||||
msgstr "Új borító"
|
||||
|
||||
#: data/gtk/details-window.blp:75
|
||||
msgid "Delete Cover"
|
||||
msgstr "Borító törlése"
|
||||
|
||||
#: data/gtk/details-window.blp:101 data/gtk/details-window.blp:106
|
||||
#: data/gtk/game.blp:80
|
||||
#: data/gtk/game.blp:67 src/utils/create_details_window.py:129
|
||||
msgid "Title"
|
||||
msgstr "Cím"
|
||||
|
||||
#: data/gtk/details-window.blp:102
|
||||
msgid "The title of the game"
|
||||
msgstr "A játék címe"
|
||||
|
||||
#: data/gtk/details-window.blp:112 data/gtk/details-window.blp:117
|
||||
msgid "Developer"
|
||||
msgstr "Fejlesztő"
|
||||
|
||||
#: data/gtk/details-window.blp:113
|
||||
msgid "The developer or publisher (optional)"
|
||||
msgstr "A fejlesztő vagy kiadó (nem kötelező)"
|
||||
|
||||
#: data/gtk/details-window.blp:123 data/gtk/details-window.blp:155
|
||||
msgid "Executable"
|
||||
msgstr "Program"
|
||||
|
||||
#: data/gtk/details-window.blp:124
|
||||
msgid "File to open or command to run when launching the game"
|
||||
msgstr "Fájl megnyitása vagy parancs futtatása a játék indításakor"
|
||||
|
||||
#: data/gtk/details-window.blp:130
|
||||
msgid "More Info"
|
||||
msgstr "Több infó"
|
||||
|
||||
#: data/gtk/game.blp:102 data/gtk/game.blp:121 data/gtk/window.blp:195
|
||||
#: data/gtk/game.blp:89 data/gtk/game.blp:108 data/gtk/window.blp:170
|
||||
msgid "Edit"
|
||||
msgstr "Szerkesztés"
|
||||
|
||||
#: data/gtk/game.blp:107 src/window.py:171
|
||||
#: data/gtk/game.blp:94 src/window.py:286
|
||||
msgid "Hide"
|
||||
msgstr "Elrejtés"
|
||||
|
||||
#: data/gtk/game.blp:112 data/gtk/game.blp:131 data/gtk/preferences.blp:56
|
||||
#: data/gtk/window.blp:209
|
||||
#: data/gtk/game.blp:99 data/gtk/game.blp:118 data/gtk/preferences.blp:56
|
||||
#: data/gtk/window.blp:186
|
||||
msgid "Remove"
|
||||
msgstr "Eltávolítás"
|
||||
|
||||
#: data/gtk/game.blp:126 src/window.py:173
|
||||
#: data/gtk/game.blp:113 src/window.py:283
|
||||
msgid "Unhide"
|
||||
msgstr "Elrejtés visszavonása"
|
||||
|
||||
@@ -133,8 +94,8 @@ msgstr "Általános"
|
||||
msgid "Quit"
|
||||
msgstr "Kilépés"
|
||||
|
||||
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:217 data/gtk/window.blp:257
|
||||
#: data/gtk/window.blp:323
|
||||
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:205 data/gtk/window.blp:249
|
||||
#: data/gtk/window.blp:312
|
||||
msgid "Search"
|
||||
msgstr "Keresés"
|
||||
|
||||
@@ -146,7 +107,8 @@ msgstr "Beállítások megjelenítése"
|
||||
msgid "Shortcuts"
|
||||
msgstr "Gyorsbillentyűk"
|
||||
|
||||
#: data/gtk/help-overlay.blp:34 src/game.py:102 src/preferences.py:112
|
||||
#: data/gtk/help-overlay.blp:34 src/main.py:186 src/main.py:242
|
||||
#: src/preferences.py:133
|
||||
msgid "Undo"
|
||||
msgstr "Visszavonás"
|
||||
|
||||
@@ -174,7 +136,7 @@ msgstr "Rejtett játékok megjelenítése"
|
||||
msgid "Remove game"
|
||||
msgstr "Játék eltávolítása"
|
||||
|
||||
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:268
|
||||
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:235
|
||||
msgid "Behavior"
|
||||
msgstr "Működés"
|
||||
|
||||
@@ -190,7 +152,7 @@ msgstr "A borítókép indítja el a játékot"
|
||||
msgid "Swaps the behavior of the cover image and the play button"
|
||||
msgstr "Felcseréli a \"Játék\" gomb és a borítókép funkcióját"
|
||||
|
||||
#: data/gtk/preferences.blp:36 src/details_window.py:81
|
||||
#: data/gtk/preferences.blp:36 src/utils/create_details_window.py:101
|
||||
msgid "Images"
|
||||
msgstr "Képek"
|
||||
|
||||
@@ -210,241 +172,343 @@ msgstr "Veszélyzóna"
|
||||
msgid "Remove All Games"
|
||||
msgstr "Az összes játék eltávolítása"
|
||||
|
||||
#: data/gtk/preferences.blp:85 data/gtk/window.blp:27 data/gtk/window.blp:442
|
||||
#: data/gtk/preferences.blp:69 data/gtk/window.blp:427
|
||||
msgid "Import"
|
||||
msgstr "Importálás"
|
||||
|
||||
#: data/gtk/preferences.blp:89
|
||||
#: data/gtk/preferences.blp:73
|
||||
msgid "Sources"
|
||||
msgstr "Források"
|
||||
|
||||
#: data/gtk/preferences.blp:92
|
||||
#: data/gtk/preferences.blp:76
|
||||
msgid "Steam"
|
||||
msgstr "Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:96 data/gtk/preferences.blp:110
|
||||
#: data/gtk/preferences.blp:151 data/gtk/preferences.blp:192
|
||||
#: data/gtk/preferences.blp:206 data/gtk/preferences.blp:220
|
||||
#: data/gtk/preferences.blp:234
|
||||
msgid "Install Location"
|
||||
msgstr "Telepítés helye"
|
||||
#: data/gtk/preferences.blp:80
|
||||
msgid "Steam Install Location"
|
||||
msgstr "Steam telepítés helye"
|
||||
|
||||
#: data/gtk/preferences.blp:106
|
||||
#: data/gtk/preferences.blp:81 data/gtk/preferences.blp:119
|
||||
#: data/gtk/preferences.blp:153 data/gtk/preferences.blp:195
|
||||
#: data/gtk/preferences.blp:210
|
||||
msgid "Directory to use when importing games"
|
||||
msgstr "Az importáláshoz használt mappa"
|
||||
|
||||
#: data/gtk/preferences.blp:89 src/utils/importer.py:143
|
||||
msgid "Extra Steam Libraries"
|
||||
msgstr "További Steam könyvtárak"
|
||||
|
||||
#: data/gtk/preferences.blp:90
|
||||
msgid "Select other directories where you have Steam games installed"
|
||||
msgstr "Válasszon ki egyéb mappákat, ahol vannak még Steam játékai"
|
||||
|
||||
#: data/gtk/preferences.blp:96
|
||||
msgid "Clear"
|
||||
msgstr "Törlés"
|
||||
|
||||
#: data/gtk/preferences.blp:114
|
||||
msgid "Lutris"
|
||||
msgstr "Lutris"
|
||||
|
||||
#: data/gtk/preferences.blp:119
|
||||
msgid "Cache Location"
|
||||
msgstr "Gyorsítótár helye"
|
||||
#: data/gtk/preferences.blp:118
|
||||
msgid "Lutris Install Location"
|
||||
msgstr "Lutris telepítés helye"
|
||||
|
||||
#: data/gtk/preferences.blp:128
|
||||
msgid "Lutris Cache Location"
|
||||
msgstr "Lutris gyorsítótár helye"
|
||||
|
||||
#: data/gtk/preferences.blp:129
|
||||
msgid "Directory to use when importing game covers"
|
||||
msgstr "A játékborítók importáláshoz használt mappa"
|
||||
|
||||
#: data/gtk/preferences.blp:138
|
||||
msgid "Import Steam Games"
|
||||
msgstr "Steam játékok importálása"
|
||||
|
||||
#: data/gtk/preferences.blp:137
|
||||
msgid "Import Flatpak Games"
|
||||
msgstr "Flatpak játékok importálása"
|
||||
|
||||
#: data/gtk/preferences.blp:147
|
||||
#: data/gtk/preferences.blp:148
|
||||
msgid "Heroic"
|
||||
msgstr "Heroic"
|
||||
|
||||
#: data/gtk/preferences.blp:160
|
||||
#: data/gtk/preferences.blp:152
|
||||
msgid "Heroic Install Location"
|
||||
msgstr "Heroic telepítés helye"
|
||||
|
||||
#: data/gtk/preferences.blp:162
|
||||
msgid "Import Epic Games"
|
||||
msgstr "Epic Games játékok importálása"
|
||||
|
||||
#: data/gtk/preferences.blp:169
|
||||
#: data/gtk/preferences.blp:171
|
||||
msgid "Import GOG Games"
|
||||
msgstr "GOG játékok importálása"
|
||||
|
||||
#: data/gtk/preferences.blp:178
|
||||
#: data/gtk/preferences.blp:180
|
||||
msgid "Import Sideloaded Games"
|
||||
msgstr "Manuálisan hozzáadott játékok importálása"
|
||||
|
||||
#: data/gtk/preferences.blp:188
|
||||
#: data/gtk/preferences.blp:190
|
||||
msgid "Bottles"
|
||||
msgstr "Palackok"
|
||||
|
||||
#: data/gtk/preferences.blp:202
|
||||
#: data/gtk/preferences.blp:194
|
||||
msgid "Bottles Install Location"
|
||||
msgstr "Palackok telepítés helye"
|
||||
|
||||
#: data/gtk/preferences.blp:205
|
||||
msgid "itch"
|
||||
msgstr "itch"
|
||||
|
||||
#: data/gtk/preferences.blp:216
|
||||
msgid "Legendary"
|
||||
msgstr "Legendary"
|
||||
#: data/gtk/preferences.blp:209
|
||||
msgid "itch Install Location"
|
||||
msgstr "itch telepítés helye"
|
||||
|
||||
#: data/gtk/preferences.blp:230
|
||||
msgid "Flatpak"
|
||||
msgstr "Flatpak"
|
||||
|
||||
#: data/gtk/preferences.blp:243
|
||||
msgid "Import Game Launchers"
|
||||
msgstr "Játékindítók importálása"
|
||||
|
||||
#: data/gtk/preferences.blp:256
|
||||
#: data/gtk/preferences.blp:223
|
||||
msgid "SteamGridDB"
|
||||
msgstr "SteamGridDB"
|
||||
|
||||
#: data/gtk/preferences.blp:260
|
||||
#: data/gtk/preferences.blp:227
|
||||
msgid "Authentication"
|
||||
msgstr "Hitelesítés"
|
||||
|
||||
#: data/gtk/preferences.blp:263
|
||||
#: data/gtk/preferences.blp:230
|
||||
msgid "API Key"
|
||||
msgstr "API kulcs"
|
||||
|
||||
#: data/gtk/preferences.blp:271
|
||||
#: data/gtk/preferences.blp:238
|
||||
msgid "Use SteamGridDB"
|
||||
msgstr "SteamGridDB használata"
|
||||
|
||||
#: data/gtk/preferences.blp:272
|
||||
#: data/gtk/preferences.blp:239
|
||||
msgid "Download images when adding or importing games"
|
||||
msgstr "Képek letöltése játékok hozzáadásakor és importálásakor"
|
||||
|
||||
#: data/gtk/preferences.blp:281
|
||||
#: data/gtk/preferences.blp:248
|
||||
msgid "Prefer Over Official Images"
|
||||
msgstr "SteamGridDB képek előnyben részesítése"
|
||||
|
||||
#: data/gtk/preferences.blp:290
|
||||
#: data/gtk/preferences.blp:257
|
||||
msgid "Prefer Animated Images"
|
||||
msgstr "Animált képek előnyben részesítése"
|
||||
|
||||
#: data/gtk/window.blp:6 data/gtk/window.blp:14
|
||||
#: data/gtk/window.blp:6 src/utils/importer.py:91
|
||||
msgid "No Games Found"
|
||||
msgstr "Nem találhatóak játékok"
|
||||
|
||||
#: data/gtk/window.blp:7 data/gtk/window.blp:15
|
||||
#: data/gtk/window.blp:7
|
||||
msgid "Try a different search."
|
||||
msgstr "Próbálkozz más kereséssel."
|
||||
|
||||
#: data/gtk/window.blp:21
|
||||
#: data/gtk/window.blp:14
|
||||
msgid "No Games"
|
||||
msgstr "Nincsenek játékok"
|
||||
|
||||
#: data/gtk/window.blp:22
|
||||
#: data/gtk/window.blp:15
|
||||
msgid "Use the + button to add games."
|
||||
msgstr "Használja a + gombot a játékok hozzáadásához."
|
||||
|
||||
#: data/gtk/window.blp:40
|
||||
#: data/gtk/window.blp:22
|
||||
msgid "No Hidden Games"
|
||||
msgstr "Nincsenek rejtett játékok"
|
||||
|
||||
#: data/gtk/window.blp:41
|
||||
#: data/gtk/window.blp:23
|
||||
msgid "Games you hide will appear here."
|
||||
msgstr "A rejtett játékaid itt lesznek megtalálhatóak."
|
||||
|
||||
#: data/gtk/window.blp:64 data/gtk/window.blp:304
|
||||
#: data/gtk/window.blp:44 data/gtk/window.blp:293
|
||||
msgid "Back"
|
||||
msgstr "Vissza"
|
||||
|
||||
#: data/gtk/window.blp:121
|
||||
#: data/gtk/window.blp:100
|
||||
msgid "Game Title"
|
||||
msgstr "Cím"
|
||||
|
||||
#: data/gtk/window.blp:176
|
||||
#: data/gtk/window.blp:151 src/game.py:158
|
||||
msgid "Play"
|
||||
msgstr "Játék"
|
||||
|
||||
#: data/gtk/window.blp:243 data/gtk/window.blp:435
|
||||
#: data/gtk/window.blp:235 data/gtk/window.blp:421
|
||||
msgid "Add Game"
|
||||
msgstr "Játék hozzáadása"
|
||||
|
||||
#: data/gtk/window.blp:250 data/gtk/window.blp:316
|
||||
#: data/gtk/window.blp:242 data/gtk/window.blp:305
|
||||
msgid "Main Menu"
|
||||
msgstr "Főmenü"
|
||||
|
||||
#: data/gtk/window.blp:311
|
||||
#: data/gtk/window.blp:300
|
||||
msgid "Hidden Games"
|
||||
msgstr "Rejtett játékok"
|
||||
|
||||
#: data/gtk/window.blp:374
|
||||
#: data/gtk/window.blp:360
|
||||
msgid "Sort"
|
||||
msgstr "Rendezés"
|
||||
|
||||
#: data/gtk/window.blp:377
|
||||
#: data/gtk/window.blp:363
|
||||
msgid "A-Z"
|
||||
msgstr "A-Z"
|
||||
|
||||
#: data/gtk/window.blp:383
|
||||
#: data/gtk/window.blp:369
|
||||
msgid "Z-A"
|
||||
msgstr "Z-A"
|
||||
|
||||
#: data/gtk/window.blp:389
|
||||
#: data/gtk/window.blp:375
|
||||
msgid "Newest"
|
||||
msgstr "Legújabb"
|
||||
|
||||
#: data/gtk/window.blp:395
|
||||
#: data/gtk/window.blp:381
|
||||
msgid "Oldest"
|
||||
msgstr "Legrégebbi"
|
||||
|
||||
#: data/gtk/window.blp:401
|
||||
#: data/gtk/window.blp:387
|
||||
msgid "Last Played"
|
||||
msgstr "Legutóbb játszott"
|
||||
|
||||
#: data/gtk/window.blp:408
|
||||
#: data/gtk/window.blp:394
|
||||
msgid "Show Hidden"
|
||||
msgstr "Rejtett játékok"
|
||||
|
||||
#: data/gtk/window.blp:421
|
||||
#: data/gtk/window.blp:407
|
||||
msgid "Keyboard Shortcuts"
|
||||
msgstr "Gyorsbillentyűk"
|
||||
|
||||
#: data/gtk/window.blp:426
|
||||
#: data/gtk/window.blp:412
|
||||
msgid "About Cartridges"
|
||||
msgstr "A Kazetták névjegye"
|
||||
|
||||
#. Translators: Replace this with your name for it to show up in the about window
|
||||
#: src/main.py:180
|
||||
#: src/main.py:137
|
||||
msgid "translator_credits"
|
||||
msgstr "kramo https://kramo.hu"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:164
|
||||
msgid "{} launched"
|
||||
msgstr "{} elindítva"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:182
|
||||
msgid "{} hidden"
|
||||
msgstr "{} elrejtve"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:185
|
||||
msgid "{} unhidden"
|
||||
msgstr "{} elrejtése visszavonva"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:241
|
||||
msgid "{} removed"
|
||||
msgstr "{} eltávolítva"
|
||||
|
||||
#: src/window.py:262
|
||||
msgid "Today"
|
||||
msgstr "Ma"
|
||||
|
||||
#: src/window.py:264
|
||||
msgid "Yesterday"
|
||||
msgstr "Tegnap"
|
||||
|
||||
#. The variable is the date when the game was added
|
||||
#: src/window.py:194
|
||||
#: src/window.py:310
|
||||
msgid "Added: {}"
|
||||
msgstr "Hozzáadva: {}"
|
||||
|
||||
#: src/window.py:197
|
||||
#: src/window.py:315
|
||||
msgid "Never"
|
||||
msgstr "Soha"
|
||||
|
||||
#. The variable is the date when the game was last played
|
||||
#: src/window.py:201
|
||||
#: src/window.py:319
|
||||
msgid "Last played: {}"
|
||||
msgstr "Legutóbbi játékmenet: {}"
|
||||
|
||||
#: src/details_window.py:72
|
||||
msgid "Apply"
|
||||
msgstr "Alkalmazás"
|
||||
#: src/game.py:156
|
||||
msgid "Details"
|
||||
msgstr "Tulajdonságok"
|
||||
|
||||
#: src/details_window.py:78
|
||||
#: src/preferences.py:54
|
||||
msgid "Installation Not Found"
|
||||
msgstr "Telepítés nem található"
|
||||
|
||||
#. The variable is the name of the game launcher
|
||||
#: src/preferences.py:56
|
||||
msgid "Select the {} configuration directory."
|
||||
msgstr "Válassza ki {} konfigurációs mappáját."
|
||||
|
||||
#. The variable is the name of the game launcher
|
||||
#: src/preferences.py:59
|
||||
msgid "Select the {} data directory."
|
||||
msgstr "Válassza ki {} adatainak mappáját."
|
||||
|
||||
#: src/preferences.py:61 src/preferences.py:240
|
||||
msgid "Set Location"
|
||||
msgstr "Mappa kiválasztása"
|
||||
|
||||
#: src/preferences.py:132
|
||||
msgid "All games removed"
|
||||
msgstr "Az összes játék eltávolítva"
|
||||
|
||||
#: src/preferences.py:237
|
||||
msgid "Cache Not Found"
|
||||
msgstr "Gyorsítótár nem található"
|
||||
|
||||
#: src/preferences.py:238
|
||||
msgid "Select the Lutris cache directory."
|
||||
msgstr "Válassza ki Lutris gyorsítótár mappáját."
|
||||
|
||||
#: src/preferences.py:344
|
||||
msgid ""
|
||||
"An API key is required to use SteamGridDB. You can generate one {}here{}."
|
||||
msgstr ""
|
||||
"Egy API kulcs szükséges a SteamGridDB használatához. {}Itt{} generálhat "
|
||||
"egyet."
|
||||
|
||||
#: src/utils/create_details_window.py:81
|
||||
msgid "Add New Game"
|
||||
msgstr "Új játék hozzáadása"
|
||||
|
||||
#: src/details_window.py:79
|
||||
#: src/utils/create_details_window.py:85
|
||||
msgid "Confirm"
|
||||
msgstr "Megerősítés"
|
||||
|
||||
#: src/utils/create_details_window.py:96
|
||||
msgid "Apply"
|
||||
msgstr "Alkalmazás"
|
||||
|
||||
#: src/utils/create_details_window.py:130
|
||||
msgid "The title of the game"
|
||||
msgstr "A játék címe"
|
||||
|
||||
#: src/utils/create_details_window.py:135
|
||||
msgid "Developer"
|
||||
msgstr "Fejlesztő"
|
||||
|
||||
#: src/utils/create_details_window.py:136
|
||||
msgid "The developer or publisher (optional)"
|
||||
msgstr "A fejlesztő vagy kiadó (nem kötelező)"
|
||||
|
||||
#. Translate this string as you would translate "file"
|
||||
#: src/details_window.py:92
|
||||
#: src/utils/create_details_window.py:147
|
||||
msgid "file.txt"
|
||||
msgstr "fájl.txt"
|
||||
|
||||
#. As in software
|
||||
#: src/details_window.py:94
|
||||
#: src/utils/create_details_window.py:149
|
||||
msgid "program"
|
||||
msgstr "program"
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:99 src/details_window.py:101
|
||||
#: src/utils/create_details_window.py:154
|
||||
#: src/utils/create_details_window.py:156
|
||||
msgid "C:\\path\\to\\{}"
|
||||
msgstr "C:\\útvonal\\ide\\{}"
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:105 src/details_window.py:107
|
||||
#: src/utils/create_details_window.py:160
|
||||
#: src/utils/create_details_window.py:162
|
||||
msgid "/path/to/{}"
|
||||
msgstr "/útvonal/ide/{}"
|
||||
|
||||
#: src/details_window.py:112
|
||||
#: src/utils/create_details_window.py:166
|
||||
msgid ""
|
||||
"To launch the executable \"{}\", use the command:\n"
|
||||
"\n"
|
||||
@@ -467,186 +531,84 @@ msgstr ""
|
||||
"\n"
|
||||
"Ha az elérési útvonalban szóközök vannak, rakja az útvonalat idézőjelek közé!"
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:153
|
||||
#: src/utils/create_details_window.py:189
|
||||
msgid "Executable"
|
||||
msgstr "Program"
|
||||
|
||||
#: src/utils/create_details_window.py:190
|
||||
msgid "File to open or command to run when launching the game"
|
||||
msgstr "Fájl megnyitása vagy parancs futtatása a játék indításakor"
|
||||
|
||||
#: src/utils/create_details_window.py:202
|
||||
msgid "Cancel"
|
||||
msgstr "Mégse"
|
||||
|
||||
#: src/utils/create_details_window.py:259
|
||||
#: src/utils/create_details_window.py:269
|
||||
#: src/utils/create_details_window.py:275
|
||||
msgid "Couldn't Add Game"
|
||||
msgstr "Nem lehet hozzáadni a játékot"
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:181
|
||||
msgid "Game title cannot be empty."
|
||||
msgstr "A cím nem lehet üres."
|
||||
|
||||
#: src/details_window.py:153 src/details_window.py:189
|
||||
msgid "Executable cannot be empty."
|
||||
msgstr "A program nem lehet üres."
|
||||
|
||||
#: src/details_window.py:180 src/details_window.py:188
|
||||
#: src/utils/create_details_window.py:261
|
||||
#: src/utils/create_details_window.py:299
|
||||
#: src/utils/create_details_window.py:307
|
||||
msgid "Couldn't Apply Preferences"
|
||||
msgstr "Nem lehet menteni a beállításokat"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:138
|
||||
msgid "{} launched"
|
||||
msgstr "{} elindítva"
|
||||
#: src/utils/create_details_window.py:269
|
||||
#: src/utils/create_details_window.py:300
|
||||
msgid "Game title cannot be empty."
|
||||
msgstr "A cím nem lehet üres."
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:152
|
||||
msgid "{} hidden"
|
||||
msgstr "{} elrejtve"
|
||||
|
||||
#: src/game.py:152
|
||||
msgid "{} unhidden"
|
||||
msgstr "{} elrejtése visszavonva"
|
||||
|
||||
#: src/game.py:169
|
||||
msgid "{} removed"
|
||||
msgstr "{} eltávolítva"
|
||||
|
||||
#: src/preferences.py:111
|
||||
msgid "All games removed"
|
||||
msgstr "Az összes játék eltávolítva"
|
||||
|
||||
#: src/preferences.py:159
|
||||
msgid ""
|
||||
"An API key is required to use SteamGridDB. You can generate one {}here{}."
|
||||
msgstr ""
|
||||
"Egy API kulcs szükséges a SteamGridDB használatához. {}Itt{} generálhat "
|
||||
"egyet."
|
||||
|
||||
#: src/preferences.py:284
|
||||
msgid "Installation Not Found"
|
||||
msgstr "A telepítés nem található"
|
||||
|
||||
#: src/preferences.py:286
|
||||
msgid "Select a valid directory."
|
||||
msgstr "Válasszon ki egy érvényes mappát."
|
||||
|
||||
#: src/preferences.py:348
|
||||
msgid "Invalid Directory"
|
||||
msgstr "Érvénytelen mappa"
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:352
|
||||
msgid "Select the {} cache directory."
|
||||
msgstr "Válassza ki {} gyorsítótár mappáját."
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:355
|
||||
msgid "Select the {} configuration directory."
|
||||
msgstr "Válassza ki {} konfigurációs mappáját."
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:358
|
||||
msgid "Select the {} data directory."
|
||||
msgstr "Válassza ki {} adatok mappáját."
|
||||
|
||||
#: src/preferences.py:364
|
||||
msgid "Set Location"
|
||||
msgstr "Mappa kiválasztása"
|
||||
#: src/utils/create_details_window.py:275
|
||||
#: src/utils/create_details_window.py:308
|
||||
msgid "Executable cannot be empty."
|
||||
msgstr "A program nem lehet üres."
|
||||
|
||||
#: src/utils/create_dialog.py:25
|
||||
msgid "Dismiss"
|
||||
msgstr "Rendben"
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:47
|
||||
msgid "Couldn't Authenticate SteamGridDB"
|
||||
msgstr "Nem lehet hitelesíteni SteamGridDB-t"
|
||||
#: src/utils/importer.py:42
|
||||
msgid "Importing Games…"
|
||||
msgstr "Játékok importálása folyamatban…"
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:48
|
||||
msgid "Verify your API key in preferences"
|
||||
msgstr "Ellenőrizze az API kulcsát a beállításokban"
|
||||
#: src/utils/importer.py:77
|
||||
msgid "Importing Covers…"
|
||||
msgstr "Borítóképek importálása folyamatban…"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "The Steam directory cannot be found."
|
||||
#~ msgid "Directory not Valid"
|
||||
#~ msgstr "A Steam mappa nem található."
|
||||
#: src/utils/importer.py:92
|
||||
msgid "No new games were found on your system."
|
||||
msgstr "Nem találhatóak új játékok a rendszerén."
|
||||
|
||||
#~ msgid "Data"
|
||||
#~ msgstr "Adatok"
|
||||
#: src/utils/importer.py:100
|
||||
msgid "Game Imported"
|
||||
msgstr "Játékok importálva"
|
||||
|
||||
#~ msgid "Cache"
|
||||
#~ msgstr "Gyorsítótár"
|
||||
#: src/utils/importer.py:101
|
||||
msgid "Successfully imported 1 game."
|
||||
msgstr "1 játék sikeresen importálva."
|
||||
|
||||
#~ msgid "Configuration"
|
||||
#~ msgstr "Konfigurációk"
|
||||
#: src/utils/importer.py:107
|
||||
msgid "Games Imported"
|
||||
msgstr "Játékok importálva"
|
||||
|
||||
#~ msgid "Invalid {} Location for {{}}"
|
||||
#~ msgstr "Érvénytelen {} mappa ennek a forrásnak: {{}}"
|
||||
#. The variable is the number of games
|
||||
#: src/utils/importer.py:109
|
||||
msgid "Successfully imported {} games."
|
||||
msgstr "{} játék sikeresen importálva."
|
||||
|
||||
#~ msgid "Pick a new one or disable the source in preferences"
|
||||
#~ msgstr "Válasszon egy újat, vagy kapcsolja ki a forrást a beállításokban"
|
||||
#: src/utils/importer.py:120 src/utils/steamgriddb.py:113
|
||||
msgid "Couldn't Connect to SteamGridDB"
|
||||
msgstr "Nem lehet csatlakozni a SteamGridDB-hez"
|
||||
|
||||
#~ msgid "Steam Install Location"
|
||||
#~ msgstr "Steam telepítés helye"
|
||||
|
||||
#~ msgid "Lutris Install Location"
|
||||
#~ msgstr "Lutris telepítés helye"
|
||||
|
||||
#~ msgid "Heroic Install Location"
|
||||
#~ msgstr "Heroic telepítés helye"
|
||||
|
||||
#~ msgid "Bottles Install Location"
|
||||
#~ msgstr "Palackok telepítés helye"
|
||||
|
||||
#~ msgid "Today"
|
||||
#~ msgstr "Ma"
|
||||
|
||||
#~ msgid "Yesterday"
|
||||
#~ msgstr "Tegnap"
|
||||
|
||||
#~ msgid "Cache Not Found"
|
||||
#~ msgstr "Gyorsítótár nem található"
|
||||
|
||||
#~ msgid "Select the Lutris cache directory."
|
||||
#~ msgstr "Válassza ki Lutris gyorsítótár mappáját."
|
||||
|
||||
#~ msgid "Importing Games…"
|
||||
#~ msgstr "Játékok importálása folyamatban…"
|
||||
|
||||
#~ msgid "Importing Covers…"
|
||||
#~ msgstr "Borítóképek importálása folyamatban…"
|
||||
|
||||
#~ msgid "No new games found"
|
||||
#~ msgstr "Nem találhatóak új játékok"
|
||||
|
||||
#~ msgid "1 game imported"
|
||||
#~ msgstr "1 játék importálva"
|
||||
|
||||
#~ msgid "{} games imported"
|
||||
#~ msgstr "{} játék importálva"
|
||||
|
||||
#~ msgid "Directory to use when importing games"
|
||||
#~ msgstr "Az importáláshoz használt mappa"
|
||||
|
||||
#~ msgid "Extra Steam Libraries"
|
||||
#~ msgstr "További Steam könyvtárak"
|
||||
|
||||
#~ msgid "Select other directories where you have Steam games installed"
|
||||
#~ msgstr "Válasszon ki egyéb mappákat, ahol vannak még Steam játékai"
|
||||
|
||||
#~ msgid "Clear"
|
||||
#~ msgstr "Törlés"
|
||||
|
||||
#~ msgid "Directory to use when importing game covers"
|
||||
#~ msgstr "A játékborítók importáláshoz használt mappa"
|
||||
|
||||
#~ msgid "Details"
|
||||
#~ msgstr "Tulajdonságok"
|
||||
|
||||
#~ msgid "No new games were found on your system."
|
||||
#~ msgstr "Nem találhatóak új játékok a rendszerén."
|
||||
|
||||
#~ msgid "Successfully imported 1 game."
|
||||
#~ msgstr "1 játék sikeresen importálva."
|
||||
|
||||
#~ msgid "Successfully imported {} games."
|
||||
#~ msgstr "{} játék sikeresen importálva."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Looks like you have multiple Steam libraries. Would you like to add them "
|
||||
#~ "in preferences?"
|
||||
#~ msgstr ""
|
||||
#~ "Úgy tűnik, több Steam könyvtára van. Szeretné őket hozzáadni a "
|
||||
#~ "beállításokban?"
|
||||
#: src/utils/importer.py:145
|
||||
msgid ""
|
||||
"Looks like you have multiple Steam libraries. Would you like to add them in "
|
||||
"preferences?"
|
||||
msgstr ""
|
||||
"Úgy tűnik, több Steam könyvtára van. Szeretné őket hozzáadni a "
|
||||
"beállításokban?"
|
||||
|
||||
#~ msgid "Launch your games"
|
||||
#~ msgstr "Indítsa el a játékait"
|
||||
@@ -718,6 +680,9 @@ msgstr "Ellenőrizze az API kulcsát a beállításokban"
|
||||
#~ msgid "No new games were found in the Steam library."
|
||||
#~ msgstr "Nem találhatóak új játékok a Steam könyvtárban."
|
||||
|
||||
#~ msgid "The Steam directory cannot be found."
|
||||
#~ msgstr "A Steam mappa nem található."
|
||||
|
||||
#~ msgid "Talking to Steam"
|
||||
#~ msgstr "Adatok lekérése a Steam-ből"
|
||||
|
||||
@@ -751,9 +716,3 @@ msgstr "Ellenőrizze az API kulcsát a beállításokban"
|
||||
|
||||
#~ msgid "Set Steam Location"
|
||||
#~ msgstr "Steam mappa kiválasztása"
|
||||
|
||||
#~ msgid "Game Imported"
|
||||
#~ msgstr "Játékok importálva"
|
||||
|
||||
#~ msgid "Games Imported"
|
||||
#~ msgstr "Játékok importálva"
|
||||
|
||||
569
po/it.po
@@ -8,9 +8,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: cartridges\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-05 14:36+0200\n"
|
||||
"PO-Revision-Date: 2023-07-01 15:10+0000\n"
|
||||
"Last-Translator: albanobattistella <albano_battistella@hotmail.com>\n"
|
||||
"POT-Creation-Date: 2023-04-11 23:33+0200\n"
|
||||
"PO-Revision-Date: 2023-04-14 12:29+0000\n"
|
||||
"Last-Translator: Alessandro Iepure <alessandro.iepure@gmail.com>\n"
|
||||
"Language-Team: Italian <https://hosted.weblate.org/projects/cartridges/"
|
||||
"cartridges/it/>\n"
|
||||
"Language: it\n"
|
||||
@@ -18,11 +18,11 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.0-dev\n"
|
||||
"X-Generator: Weblate 4.17-dev\n"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:3
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:47
|
||||
#: src/main.py:162
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:29
|
||||
#: src/main.py:119
|
||||
msgid "Cartridges"
|
||||
msgstr "Cartucce"
|
||||
|
||||
@@ -35,10 +35,6 @@ msgstr "Launcher di giochi"
|
||||
msgid "Launch all your games"
|
||||
msgstr "Avvia tutti i tuoi giochi"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:11
|
||||
msgid "gaming;launcher;steam;lutris;heroic;bottles;itch;"
|
||||
msgstr "gioco;launcher;steam;lutris;heroic;bottles;itch;"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:9
|
||||
msgid ""
|
||||
"Cartridges is a simple game launcher for all of your games. It has support "
|
||||
@@ -51,78 +47,43 @@ msgstr ""
|
||||
"organizzare e nascondere i giochi oppure scaricare le copertine da "
|
||||
"StreamGridDB."
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:30
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:22
|
||||
msgid "Library"
|
||||
msgstr "Libreria"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 src/details_window.py:67
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:26
|
||||
#: src/utils/create_details_window.py:87
|
||||
msgid "Edit Game Details"
|
||||
msgstr "Modifica dettagli del gioco"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:38 data/gtk/window.blp:71
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:30 data/gtk/window.blp:51
|
||||
msgid "Game Details"
|
||||
msgstr "Dettagli del gioco"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:42 data/gtk/window.blp:416
|
||||
#: src/details_window.py:239
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 data/gtk/window.blp:402
|
||||
#: src/utils/importer.py:94 src/utils/importer.py:123 src/utils/importer.py:148
|
||||
#: src/utils/steamgriddb.py:116
|
||||
msgid "Preferences"
|
||||
msgstr "Preferenze"
|
||||
|
||||
#: data/gtk/details-window.blp:25
|
||||
msgid "Cancel"
|
||||
msgstr "Annulla"
|
||||
|
||||
#: data/gtk/details-window.blp:57
|
||||
msgid "New Cover"
|
||||
msgstr "Nuova copertina"
|
||||
|
||||
#: data/gtk/details-window.blp:75
|
||||
msgid "Delete Cover"
|
||||
msgstr "Elimina copertina"
|
||||
|
||||
#: data/gtk/details-window.blp:101 data/gtk/details-window.blp:106
|
||||
#: data/gtk/game.blp:80
|
||||
#: data/gtk/game.blp:67 src/utils/create_details_window.py:129
|
||||
msgid "Title"
|
||||
msgstr "Titolo"
|
||||
|
||||
#: data/gtk/details-window.blp:102
|
||||
msgid "The title of the game"
|
||||
msgstr "Titolo del gioco"
|
||||
|
||||
#: data/gtk/details-window.blp:112 data/gtk/details-window.blp:117
|
||||
msgid "Developer"
|
||||
msgstr "Sviluppatore"
|
||||
|
||||
#: data/gtk/details-window.blp:113
|
||||
msgid "The developer or publisher (optional)"
|
||||
msgstr "Lo sviluppatore o l'editore (opzionale)"
|
||||
|
||||
#: data/gtk/details-window.blp:123 data/gtk/details-window.blp:155
|
||||
msgid "Executable"
|
||||
msgstr "Eseguibile"
|
||||
|
||||
#: data/gtk/details-window.blp:124
|
||||
msgid "File to open or command to run when launching the game"
|
||||
msgstr "File da aprire o comando da lanciare per avviare il gioco"
|
||||
|
||||
#: data/gtk/details-window.blp:130
|
||||
msgid "More Info"
|
||||
msgstr "Altre informazioni"
|
||||
|
||||
#: data/gtk/game.blp:102 data/gtk/game.blp:121 data/gtk/window.blp:195
|
||||
#: data/gtk/game.blp:89 data/gtk/game.blp:108 data/gtk/window.blp:170
|
||||
msgid "Edit"
|
||||
msgstr "Modifica"
|
||||
|
||||
#: data/gtk/game.blp:107 src/window.py:171
|
||||
#: data/gtk/game.blp:94 src/window.py:286
|
||||
msgid "Hide"
|
||||
msgstr "Nascondi"
|
||||
|
||||
#: data/gtk/game.blp:112 data/gtk/game.blp:131 data/gtk/preferences.blp:56
|
||||
#: data/gtk/window.blp:209
|
||||
#: data/gtk/game.blp:99 data/gtk/game.blp:118 data/gtk/preferences.blp:56
|
||||
#: data/gtk/window.blp:186
|
||||
msgid "Remove"
|
||||
msgstr "Rimuovi"
|
||||
|
||||
#: data/gtk/game.blp:126 src/window.py:173
|
||||
#: data/gtk/game.blp:113 src/window.py:283
|
||||
msgid "Unhide"
|
||||
msgstr "Mostra"
|
||||
|
||||
@@ -134,8 +95,8 @@ msgstr "Generale"
|
||||
msgid "Quit"
|
||||
msgstr "Chiudi"
|
||||
|
||||
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:217 data/gtk/window.blp:257
|
||||
#: data/gtk/window.blp:323
|
||||
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:205 data/gtk/window.blp:249
|
||||
#: data/gtk/window.blp:312
|
||||
msgid "Search"
|
||||
msgstr "Cerca"
|
||||
|
||||
@@ -147,7 +108,8 @@ msgstr "Mostra preferenze"
|
||||
msgid "Shortcuts"
|
||||
msgstr "Scorciatoie da tastiera"
|
||||
|
||||
#: data/gtk/help-overlay.blp:34 src/game.py:102 src/preferences.py:112
|
||||
#: data/gtk/help-overlay.blp:34 src/main.py:186 src/main.py:242
|
||||
#: src/preferences.py:133
|
||||
msgid "Undo"
|
||||
msgstr "Annulla"
|
||||
|
||||
@@ -175,7 +137,7 @@ msgstr "Mostra giochi nascosti"
|
||||
msgid "Remove game"
|
||||
msgstr "Rimuovi gioco"
|
||||
|
||||
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:268
|
||||
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:235
|
||||
msgid "Behavior"
|
||||
msgstr "Comportamento"
|
||||
|
||||
@@ -191,7 +153,7 @@ msgstr "La copertina avvia il gioco"
|
||||
msgid "Swaps the behavior of the cover image and the play button"
|
||||
msgstr "Inverti il comportamento della copertina con il pulsante di avvio"
|
||||
|
||||
#: data/gtk/preferences.blp:36 src/details_window.py:81
|
||||
#: data/gtk/preferences.blp:36 src/utils/create_details_window.py:101
|
||||
msgid "Images"
|
||||
msgstr "Immagini"
|
||||
|
||||
@@ -212,241 +174,344 @@ msgstr "Zona di pericolo"
|
||||
msgid "Remove All Games"
|
||||
msgstr "Rimuovi tutti i giochi"
|
||||
|
||||
#: data/gtk/preferences.blp:85 data/gtk/window.blp:27 data/gtk/window.blp:442
|
||||
#: data/gtk/preferences.blp:69 data/gtk/window.blp:427
|
||||
msgid "Import"
|
||||
msgstr "Importa"
|
||||
|
||||
#: data/gtk/preferences.blp:89
|
||||
#: data/gtk/preferences.blp:73
|
||||
msgid "Sources"
|
||||
msgstr "Fonti"
|
||||
|
||||
#: data/gtk/preferences.blp:92
|
||||
#: data/gtk/preferences.blp:76
|
||||
msgid "Steam"
|
||||
msgstr "Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:96 data/gtk/preferences.blp:110
|
||||
#: data/gtk/preferences.blp:151 data/gtk/preferences.blp:192
|
||||
#: data/gtk/preferences.blp:206 data/gtk/preferences.blp:220
|
||||
#: data/gtk/preferences.blp:234
|
||||
msgid "Install Location"
|
||||
msgstr "Posizione di installazione"
|
||||
#: data/gtk/preferences.blp:80
|
||||
msgid "Steam Install Location"
|
||||
msgstr "Percorso Installazione Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:106
|
||||
#: data/gtk/preferences.blp:81 data/gtk/preferences.blp:119
|
||||
#: data/gtk/preferences.blp:153 data/gtk/preferences.blp:195
|
||||
#: data/gtk/preferences.blp:210
|
||||
msgid "Directory to use when importing games"
|
||||
msgstr "Cartella da usare per importare i giochi"
|
||||
|
||||
#: data/gtk/preferences.blp:89 src/utils/importer.py:143
|
||||
msgid "Extra Steam Libraries"
|
||||
msgstr "Librerie Steam Extra"
|
||||
|
||||
#: data/gtk/preferences.blp:90
|
||||
msgid "Select other directories where you have Steam games installed"
|
||||
msgstr "Seleziona le altre directory in cui sono installati i giochi di Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:96
|
||||
msgid "Clear"
|
||||
msgstr "Cancella"
|
||||
|
||||
#: data/gtk/preferences.blp:114
|
||||
msgid "Lutris"
|
||||
msgstr "Lutris"
|
||||
|
||||
#: data/gtk/preferences.blp:119
|
||||
msgid "Cache Location"
|
||||
msgstr "Posizione della cache"
|
||||
#: data/gtk/preferences.blp:118
|
||||
msgid "Lutris Install Location"
|
||||
msgstr "Posizione di installazione di Lutris"
|
||||
|
||||
#: data/gtk/preferences.blp:128
|
||||
msgid "Lutris Cache Location"
|
||||
msgstr "Posizione della cache di Lutris"
|
||||
|
||||
#: data/gtk/preferences.blp:129
|
||||
msgid "Directory to use when importing game covers"
|
||||
msgstr ""
|
||||
"Directory da utilizzare durante l'importazione delle copertine dei giochi"
|
||||
|
||||
#: data/gtk/preferences.blp:138
|
||||
msgid "Import Steam Games"
|
||||
msgstr "Importa giochi da Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:137
|
||||
msgid "Import Flatpak Games"
|
||||
msgstr "Importa giochi da Flatpak"
|
||||
|
||||
#: data/gtk/preferences.blp:147
|
||||
#: data/gtk/preferences.blp:148
|
||||
msgid "Heroic"
|
||||
msgstr "Heroic"
|
||||
|
||||
#: data/gtk/preferences.blp:160
|
||||
#: data/gtk/preferences.blp:152
|
||||
msgid "Heroic Install Location"
|
||||
msgstr "Percorso Installazione Heroic"
|
||||
|
||||
#: data/gtk/preferences.blp:162
|
||||
msgid "Import Epic Games"
|
||||
msgstr "Importa giochi da Epic Games"
|
||||
|
||||
#: data/gtk/preferences.blp:169
|
||||
#: data/gtk/preferences.blp:171
|
||||
msgid "Import GOG Games"
|
||||
msgstr "Importa giochi da GOG"
|
||||
|
||||
#: data/gtk/preferences.blp:178
|
||||
#: data/gtk/preferences.blp:180
|
||||
msgid "Import Sideloaded Games"
|
||||
msgstr "Importa giochi da aggiunti manualmente"
|
||||
|
||||
#: data/gtk/preferences.blp:188
|
||||
#: data/gtk/preferences.blp:190
|
||||
msgid "Bottles"
|
||||
msgstr "Bottles"
|
||||
|
||||
#: data/gtk/preferences.blp:202
|
||||
#: data/gtk/preferences.blp:194
|
||||
msgid "Bottles Install Location"
|
||||
msgstr "Percorso Installazione Bottles"
|
||||
|
||||
#: data/gtk/preferences.blp:205
|
||||
msgid "itch"
|
||||
msgstr "itch"
|
||||
|
||||
#: data/gtk/preferences.blp:216
|
||||
msgid "Legendary"
|
||||
msgstr "Leggendari"
|
||||
#: data/gtk/preferences.blp:209
|
||||
msgid "itch Install Location"
|
||||
msgstr "itch Posizione di installazione"
|
||||
|
||||
#: data/gtk/preferences.blp:230
|
||||
msgid "Flatpak"
|
||||
msgstr "Flatpak"
|
||||
|
||||
#: data/gtk/preferences.blp:243
|
||||
msgid "Import Game Launchers"
|
||||
msgstr "Importa lanciatori di giochi"
|
||||
|
||||
#: data/gtk/preferences.blp:256
|
||||
#: data/gtk/preferences.blp:223
|
||||
msgid "SteamGridDB"
|
||||
msgstr "SteamGridDB"
|
||||
|
||||
#: data/gtk/preferences.blp:260
|
||||
#: data/gtk/preferences.blp:227
|
||||
msgid "Authentication"
|
||||
msgstr "Autenticazione"
|
||||
|
||||
#: data/gtk/preferences.blp:263
|
||||
#: data/gtk/preferences.blp:230
|
||||
msgid "API Key"
|
||||
msgstr "Chiave API"
|
||||
|
||||
#: data/gtk/preferences.blp:271
|
||||
#: data/gtk/preferences.blp:238
|
||||
msgid "Use SteamGridDB"
|
||||
msgstr "Usa SteamGridDB"
|
||||
|
||||
#: data/gtk/preferences.blp:272
|
||||
#: data/gtk/preferences.blp:239
|
||||
msgid "Download images when adding or importing games"
|
||||
msgstr "Scarica immagini durante l'aggiunta o l'import di giochi"
|
||||
|
||||
#: data/gtk/preferences.blp:281
|
||||
#: data/gtk/preferences.blp:248
|
||||
msgid "Prefer Over Official Images"
|
||||
msgstr "Preferisci alle immagini ufficiali"
|
||||
|
||||
#: data/gtk/preferences.blp:290
|
||||
#: data/gtk/preferences.blp:257
|
||||
msgid "Prefer Animated Images"
|
||||
msgstr "Preferisci immagini animate"
|
||||
|
||||
#: data/gtk/window.blp:6 data/gtk/window.blp:14
|
||||
#: data/gtk/window.blp:6 src/utils/importer.py:91
|
||||
msgid "No Games Found"
|
||||
msgstr "Nessun Gioco Trovato"
|
||||
|
||||
#: data/gtk/window.blp:7 data/gtk/window.blp:15
|
||||
#: data/gtk/window.blp:7
|
||||
msgid "Try a different search."
|
||||
msgstr "Prova una ricerca diversa."
|
||||
|
||||
#: data/gtk/window.blp:21
|
||||
#: data/gtk/window.blp:14
|
||||
msgid "No Games"
|
||||
msgstr "Nessun Gioco"
|
||||
|
||||
#: data/gtk/window.blp:22
|
||||
#: data/gtk/window.blp:15
|
||||
msgid "Use the + button to add games."
|
||||
msgstr "Usa il pulsante + per aggiungere giochi."
|
||||
|
||||
#: data/gtk/window.blp:40
|
||||
#: data/gtk/window.blp:22
|
||||
msgid "No Hidden Games"
|
||||
msgstr "Nessun Gioco Nascosto"
|
||||
|
||||
#: data/gtk/window.blp:41
|
||||
#: data/gtk/window.blp:23
|
||||
msgid "Games you hide will appear here."
|
||||
msgstr "I giochi nascosti appariranno qui."
|
||||
|
||||
#: data/gtk/window.blp:64 data/gtk/window.blp:304
|
||||
#: data/gtk/window.blp:44 data/gtk/window.blp:293
|
||||
msgid "Back"
|
||||
msgstr "Indietro"
|
||||
|
||||
#: data/gtk/window.blp:121
|
||||
#: data/gtk/window.blp:100
|
||||
msgid "Game Title"
|
||||
msgstr "Titolo del gioco"
|
||||
|
||||
#: data/gtk/window.blp:176
|
||||
#: data/gtk/window.blp:151 src/game.py:158
|
||||
msgid "Play"
|
||||
msgstr "Gioca"
|
||||
|
||||
#: data/gtk/window.blp:243 data/gtk/window.blp:435
|
||||
#: data/gtk/window.blp:235 data/gtk/window.blp:421
|
||||
msgid "Add Game"
|
||||
msgstr "Aggiungi Gioco"
|
||||
|
||||
#: data/gtk/window.blp:250 data/gtk/window.blp:316
|
||||
#: data/gtk/window.blp:242 data/gtk/window.blp:305
|
||||
msgid "Main Menu"
|
||||
msgstr "Menù Principale"
|
||||
|
||||
#: data/gtk/window.blp:311
|
||||
#: data/gtk/window.blp:300
|
||||
msgid "Hidden Games"
|
||||
msgstr "Giochi Nascosti"
|
||||
|
||||
#: data/gtk/window.blp:374
|
||||
#: data/gtk/window.blp:360
|
||||
msgid "Sort"
|
||||
msgstr "Ordina per"
|
||||
|
||||
#: data/gtk/window.blp:377
|
||||
#: data/gtk/window.blp:363
|
||||
msgid "A-Z"
|
||||
msgstr "A-Z"
|
||||
|
||||
#: data/gtk/window.blp:383
|
||||
#: data/gtk/window.blp:369
|
||||
msgid "Z-A"
|
||||
msgstr "Z-A"
|
||||
|
||||
#: data/gtk/window.blp:389
|
||||
#: data/gtk/window.blp:375
|
||||
msgid "Newest"
|
||||
msgstr "Più recente"
|
||||
|
||||
#: data/gtk/window.blp:395
|
||||
#: data/gtk/window.blp:381
|
||||
msgid "Oldest"
|
||||
msgstr "Più vecchio"
|
||||
|
||||
#: data/gtk/window.blp:401
|
||||
#: data/gtk/window.blp:387
|
||||
msgid "Last Played"
|
||||
msgstr "Ultimo Avvio"
|
||||
|
||||
#: data/gtk/window.blp:408
|
||||
#: data/gtk/window.blp:394
|
||||
msgid "Show Hidden"
|
||||
msgstr "Mostra Nascosti"
|
||||
|
||||
#: data/gtk/window.blp:421
|
||||
#: data/gtk/window.blp:407
|
||||
msgid "Keyboard Shortcuts"
|
||||
msgstr "Scorciatoie da Tastiera"
|
||||
|
||||
#: data/gtk/window.blp:426
|
||||
#: data/gtk/window.blp:412
|
||||
msgid "About Cartridges"
|
||||
msgstr "Informazioni su Cartucce"
|
||||
|
||||
#. Translators: Replace this with your name for it to show up in the about window
|
||||
#: src/main.py:180
|
||||
#: src/main.py:137
|
||||
msgid "translator_credits"
|
||||
msgstr "Alessandro Iepure https://ale.iepure.me"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:164
|
||||
msgid "{} launched"
|
||||
msgstr "{} avviato"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:182
|
||||
msgid "{} hidden"
|
||||
msgstr "{} nascosto"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:185
|
||||
msgid "{} unhidden"
|
||||
msgstr "{} visibile"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:241
|
||||
msgid "{} removed"
|
||||
msgstr "{} rimosso"
|
||||
|
||||
#: src/window.py:262
|
||||
msgid "Today"
|
||||
msgstr "Oggi"
|
||||
|
||||
#: src/window.py:264
|
||||
msgid "Yesterday"
|
||||
msgstr "Ieri"
|
||||
|
||||
#. The variable is the date when the game was added
|
||||
#: src/window.py:194
|
||||
#: src/window.py:310
|
||||
msgid "Added: {}"
|
||||
msgstr "Aggiunto il: {}"
|
||||
|
||||
#: src/window.py:197
|
||||
#: src/window.py:315
|
||||
msgid "Never"
|
||||
msgstr "Mai"
|
||||
|
||||
#. The variable is the date when the game was last played
|
||||
#: src/window.py:201
|
||||
#: src/window.py:319
|
||||
msgid "Last played: {}"
|
||||
msgstr "Ultima riproduzione: {}"
|
||||
|
||||
#: src/details_window.py:72
|
||||
msgid "Apply"
|
||||
msgstr "Applica"
|
||||
#: src/game.py:156
|
||||
msgid "Details"
|
||||
msgstr "Dettagli"
|
||||
|
||||
#: src/details_window.py:78
|
||||
#: src/preferences.py:54
|
||||
msgid "Installation Not Found"
|
||||
msgstr "Installazione non trovata"
|
||||
|
||||
#. The variable is the name of the game launcher
|
||||
#: src/preferences.py:56
|
||||
msgid "Select the {} configuration directory."
|
||||
msgstr "Selezionare la directory di configurazione {}."
|
||||
|
||||
#. The variable is the name of the game launcher
|
||||
#: src/preferences.py:59
|
||||
msgid "Select the {} data directory."
|
||||
msgstr "Selezionare la directory dei dati {}."
|
||||
|
||||
#: src/preferences.py:61 src/preferences.py:240
|
||||
msgid "Set Location"
|
||||
msgstr "Imposta percorso"
|
||||
|
||||
#: src/preferences.py:132
|
||||
msgid "All games removed"
|
||||
msgstr "Tutti i giochi sono stati rimossi"
|
||||
|
||||
#: src/preferences.py:237
|
||||
msgid "Cache Not Found"
|
||||
msgstr "Cache non trovata"
|
||||
|
||||
#: src/preferences.py:238
|
||||
msgid "Select the Lutris cache directory."
|
||||
msgstr "Selezionare la directory della cache di Lutris."
|
||||
|
||||
#: src/preferences.py:344
|
||||
msgid ""
|
||||
"An API key is required to use SteamGridDB. You can generate one {}here{}."
|
||||
msgstr ""
|
||||
"Per utilizzare SteamGridDB è necessaria una chiave API. Puoi generarne una {}"
|
||||
"qui{}."
|
||||
|
||||
#: src/utils/create_details_window.py:81
|
||||
msgid "Add New Game"
|
||||
msgstr "Aggiungi un Nuovo Gioco"
|
||||
|
||||
#: src/details_window.py:79
|
||||
#: src/utils/create_details_window.py:85
|
||||
msgid "Confirm"
|
||||
msgstr "Conferma"
|
||||
|
||||
#: src/utils/create_details_window.py:96
|
||||
msgid "Apply"
|
||||
msgstr "Applica"
|
||||
|
||||
#: src/utils/create_details_window.py:130
|
||||
msgid "The title of the game"
|
||||
msgstr "Titolo del gioco"
|
||||
|
||||
#: src/utils/create_details_window.py:135
|
||||
msgid "Developer"
|
||||
msgstr "Sviluppatore"
|
||||
|
||||
#: src/utils/create_details_window.py:136
|
||||
msgid "The developer or publisher (optional)"
|
||||
msgstr "Lo sviluppatore o l'editore (opzionale)"
|
||||
|
||||
#. Translate this string as you would translate "file"
|
||||
#: src/details_window.py:92
|
||||
#: src/utils/create_details_window.py:147
|
||||
msgid "file.txt"
|
||||
msgstr "file.txt"
|
||||
|
||||
#. As in software
|
||||
#: src/details_window.py:94
|
||||
#: src/utils/create_details_window.py:149
|
||||
msgid "program"
|
||||
msgstr "programma"
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:99 src/details_window.py:101
|
||||
#: src/utils/create_details_window.py:154
|
||||
#: src/utils/create_details_window.py:156
|
||||
msgid "C:\\path\\to\\{}"
|
||||
msgstr "C:\\path\\to{}"
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:105 src/details_window.py:107
|
||||
#: src/utils/create_details_window.py:160
|
||||
#: src/utils/create_details_window.py:162
|
||||
msgid "/path/to/{}"
|
||||
msgstr "/percorso/to/{}"
|
||||
|
||||
#: src/details_window.py:112
|
||||
#: src/utils/create_details_window.py:166
|
||||
msgid ""
|
||||
"To launch the executable \"{}\", use the command:\n"
|
||||
"\n"
|
||||
@@ -468,182 +533,84 @@ msgstr ""
|
||||
"\n"
|
||||
"Se il percorso contiene spazi, assicurarsi di avvolgerlo in doppi apici!"
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:153
|
||||
#: src/utils/create_details_window.py:189
|
||||
msgid "Executable"
|
||||
msgstr "Eseguibile"
|
||||
|
||||
#: src/utils/create_details_window.py:190
|
||||
msgid "File to open or command to run when launching the game"
|
||||
msgstr "File da aprire o comando da lanciare per avviare il gioco"
|
||||
|
||||
#: src/utils/create_details_window.py:202
|
||||
msgid "Cancel"
|
||||
msgstr "Annulla"
|
||||
|
||||
#: src/utils/create_details_window.py:259
|
||||
#: src/utils/create_details_window.py:269
|
||||
#: src/utils/create_details_window.py:275
|
||||
msgid "Couldn't Add Game"
|
||||
msgstr "Impossibile aggiungere il gioco"
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:181
|
||||
msgid "Game title cannot be empty."
|
||||
msgstr "Il titolo del gioco non può essere vuoto."
|
||||
|
||||
#: src/details_window.py:153 src/details_window.py:189
|
||||
msgid "Executable cannot be empty."
|
||||
msgstr "L'eseguibile non può essere vuoto."
|
||||
|
||||
#: src/details_window.py:180 src/details_window.py:188
|
||||
#: src/utils/create_details_window.py:261
|
||||
#: src/utils/create_details_window.py:299
|
||||
#: src/utils/create_details_window.py:307
|
||||
msgid "Couldn't Apply Preferences"
|
||||
msgstr "Impossibile applicare le preferenze"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:138
|
||||
msgid "{} launched"
|
||||
msgstr "{} avviato"
|
||||
#: src/utils/create_details_window.py:269
|
||||
#: src/utils/create_details_window.py:300
|
||||
msgid "Game title cannot be empty."
|
||||
msgstr "Il titolo del gioco non può essere vuoto."
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:152
|
||||
msgid "{} hidden"
|
||||
msgstr "{} nascosto"
|
||||
|
||||
#: src/game.py:152
|
||||
msgid "{} unhidden"
|
||||
msgstr "{} visibile"
|
||||
|
||||
#: src/game.py:169
|
||||
msgid "{} removed"
|
||||
msgstr "{} rimosso"
|
||||
|
||||
#: src/preferences.py:111
|
||||
msgid "All games removed"
|
||||
msgstr "Tutti i giochi sono stati rimossi"
|
||||
|
||||
#: src/preferences.py:159
|
||||
msgid ""
|
||||
"An API key is required to use SteamGridDB. You can generate one {}here{}."
|
||||
msgstr ""
|
||||
"Per utilizzare SteamGridDB è necessaria una chiave API. Puoi generarne una {}"
|
||||
"qui{}."
|
||||
|
||||
#: src/preferences.py:284
|
||||
msgid "Installation Not Found"
|
||||
msgstr "Installazione non trovata"
|
||||
|
||||
#: src/preferences.py:286
|
||||
msgid "Select a valid directory."
|
||||
msgstr "Seleziona una directory valida."
|
||||
|
||||
#: src/preferences.py:348
|
||||
msgid "Invalid Directory"
|
||||
msgstr "Directory non valida"
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:352
|
||||
msgid "Select the {} cache directory."
|
||||
msgstr "Seleziona la directory della cache {}."
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:355
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} installation directory."
|
||||
msgid "Select the {} configuration directory."
|
||||
msgstr "Selezionare la directory di installazione {}."
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:358
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} cache directory."
|
||||
msgid "Select the {} data directory."
|
||||
msgstr "Seleziona la directory della cache {}."
|
||||
|
||||
#: src/preferences.py:364
|
||||
msgid "Set Location"
|
||||
msgstr "Imposta percorso"
|
||||
#: src/utils/create_details_window.py:275
|
||||
#: src/utils/create_details_window.py:308
|
||||
msgid "Executable cannot be empty."
|
||||
msgstr "L'eseguibile non può essere vuoto."
|
||||
|
||||
#: src/utils/create_dialog.py:25
|
||||
msgid "Dismiss"
|
||||
msgstr "Chiudi"
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:47
|
||||
msgid "Couldn't Authenticate SteamGridDB"
|
||||
msgstr "Impossibile eseguire l'autenticazione su SteamGridDB"
|
||||
#: src/utils/importer.py:42
|
||||
msgid "Importing Games…"
|
||||
msgstr "Import dei giochi in corso…"
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:48
|
||||
msgid "Verify your API key in preferences"
|
||||
msgstr "Verifica la tua chiave API nelle preferenze"
|
||||
#: src/utils/importer.py:77
|
||||
msgid "Importing Covers…"
|
||||
msgstr "Import delle copertine…"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "The Steam directory cannot be found."
|
||||
#~ msgid "Directory not Valid"
|
||||
#~ msgstr "Non è possibile trovare il percorso per Steam."
|
||||
#: src/utils/importer.py:92
|
||||
msgid "No new games were found on your system."
|
||||
msgstr "Nessun nuovo gioco trovato nel tuo sistema."
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Confirm"
|
||||
#~ msgid "Configuration"
|
||||
#~ msgstr "Conferma"
|
||||
#: src/utils/importer.py:100
|
||||
msgid "Game Imported"
|
||||
msgstr "Gioco importato"
|
||||
|
||||
#~ msgid "Steam Install Location"
|
||||
#~ msgstr "Percorso Installazione Steam"
|
||||
#: src/utils/importer.py:101
|
||||
msgid "Successfully imported 1 game."
|
||||
msgstr "Un gioco importato con successo."
|
||||
|
||||
#~ msgid "Lutris Install Location"
|
||||
#~ msgstr "Posizione di installazione di Lutris"
|
||||
#: src/utils/importer.py:107
|
||||
msgid "Games Imported"
|
||||
msgstr "Giochi importati"
|
||||
|
||||
#~ msgid "Heroic Install Location"
|
||||
#~ msgstr "Percorso Installazione Heroic"
|
||||
#. The variable is the number of games
|
||||
#: src/utils/importer.py:109
|
||||
msgid "Successfully imported {} games."
|
||||
msgstr "Importazione riuscita di {} giochi."
|
||||
|
||||
#~ msgid "Bottles Install Location"
|
||||
#~ msgstr "Percorso Installazione Bottles"
|
||||
#: src/utils/importer.py:120 src/utils/steamgriddb.py:113
|
||||
msgid "Couldn't Connect to SteamGridDB"
|
||||
msgstr "Impossibile connettersi a SteamGridDB"
|
||||
|
||||
#~ msgid "Today"
|
||||
#~ msgstr "Oggi"
|
||||
|
||||
#~ msgid "Yesterday"
|
||||
#~ msgstr "Ieri"
|
||||
|
||||
#~ msgid "Cache Not Found"
|
||||
#~ msgstr "Cache non trovata"
|
||||
|
||||
#~ msgid "Select the Lutris cache directory."
|
||||
#~ msgstr "Selezionare la directory della cache di Lutris."
|
||||
|
||||
#~ msgid "Importing Games…"
|
||||
#~ msgstr "Import dei giochi in corso…"
|
||||
|
||||
#~ msgid "Importing Covers…"
|
||||
#~ msgstr "Import delle copertine…"
|
||||
|
||||
#~ msgid "No new games found"
|
||||
#~ msgstr "Nessun nuovo gioco trovato"
|
||||
|
||||
#~ msgid "1 game imported"
|
||||
#~ msgstr "1 gioco importato"
|
||||
|
||||
#~ msgid "{} games imported"
|
||||
#~ msgstr "{} giochi importati"
|
||||
|
||||
#~ msgid "Directory to use when importing games"
|
||||
#~ msgstr "Cartella da usare per importare i giochi"
|
||||
|
||||
#~ msgid "Extra Steam Libraries"
|
||||
#~ msgstr "Librerie Steam Extra"
|
||||
|
||||
#~ msgid "Select other directories where you have Steam games installed"
|
||||
#~ msgstr ""
|
||||
#~ "Seleziona le altre directory in cui sono installati i giochi di Steam"
|
||||
|
||||
#~ msgid "Clear"
|
||||
#~ msgstr "Cancella"
|
||||
|
||||
#~ msgid "Directory to use when importing game covers"
|
||||
#~ msgstr ""
|
||||
#~ "Directory da utilizzare durante l'importazione delle copertine dei giochi"
|
||||
|
||||
#~ msgid "Details"
|
||||
#~ msgstr "Dettagli"
|
||||
|
||||
#~ msgid "No new games were found on your system."
|
||||
#~ msgstr "Nessun nuovo gioco trovato nel tuo sistema."
|
||||
|
||||
#~ msgid "Successfully imported 1 game."
|
||||
#~ msgstr "Un gioco importato con successo."
|
||||
|
||||
#~ msgid "Successfully imported {} games."
|
||||
#~ msgstr "Importazione riuscita di {} giochi."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Looks like you have multiple Steam libraries. Would you like to add them "
|
||||
#~ "in preferences?"
|
||||
#~ msgstr ""
|
||||
#~ "Sembra che tu abbia più librerie Steam. Vorresti aggiungerle nelle "
|
||||
#~ "preferenze?"
|
||||
#: src/utils/importer.py:145
|
||||
msgid ""
|
||||
"Looks like you have multiple Steam libraries. Would you like to add them in "
|
||||
"preferences?"
|
||||
msgstr ""
|
||||
"Sembra che tu abbia più librerie Steam. Vorresti aggiungerle nelle "
|
||||
"preferenze?"
|
||||
|
||||
#~ msgid "Launch your games"
|
||||
#~ msgstr "Avvia i tuoi giochi"
|
||||
@@ -665,16 +632,19 @@ msgstr "Verifica la tua chiave API nelle preferenze"
|
||||
#~ msgstr "/percorso/per/{file_name}"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "General"
|
||||
#~ msgctxt "shortcuts window"
|
||||
#~ msgid "General"
|
||||
#~ msgstr "Generale"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Search"
|
||||
#~ msgctxt "shortcuts window"
|
||||
#~ msgid "Search"
|
||||
#~ msgstr "Cerca"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Undo"
|
||||
#~ msgctxt "shortcuts window"
|
||||
#~ msgid "Undo"
|
||||
#~ msgstr "Annulla"
|
||||
@@ -718,11 +688,8 @@ msgstr "Verifica la tua chiave API nelle preferenze"
|
||||
#~ msgid "No new games were found in the Steam library."
|
||||
#~ msgstr "Nessun nuovo gioco trovato nella libreria di Steam."
|
||||
|
||||
#~ msgid "The Steam directory cannot be found."
|
||||
#~ msgstr "Non è possibile trovare il percorso per Steam."
|
||||
|
||||
#~ msgid "Talking to Steam"
|
||||
#~ msgstr "Parlando con Steam"
|
||||
|
||||
#~ msgid "Game Imported"
|
||||
#~ msgstr "Gioco importato"
|
||||
|
||||
#~ msgid "Games Imported"
|
||||
#~ msgstr "Giochi importati"
|
||||
|
||||
457
po/ko.po
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cartridges\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-05 14:36+0200\n"
|
||||
"POT-Creation-Date: 2023-04-11 23:33+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/"
|
||||
@@ -19,8 +19,8 @@ msgstr ""
|
||||
"X-Generator: Weblate 4.17-dev\n"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:3
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:47
|
||||
#: src/main.py:162
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:29
|
||||
#: src/main.py:119
|
||||
msgid "Cartridges"
|
||||
msgstr "카트리지"
|
||||
|
||||
@@ -33,10 +33,6 @@ msgstr "게임 런처"
|
||||
msgid "Launch all your games"
|
||||
msgstr "모든 게임을 실행합니다"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:11
|
||||
msgid "gaming;launcher;steam;lutris;heroic;bottles;itch;"
|
||||
msgstr ""
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:9
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
@@ -53,78 +49,43 @@ msgstr ""
|
||||
"별로 게임을 숨기거나 정렬하는 등의 정리 기능을 통해 Steam, Heroic 및 Bottles"
|
||||
"에서 게임을 가져올 수 있습니다."
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:30
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:22
|
||||
msgid "Library"
|
||||
msgstr "라이브러리"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 src/details_window.py:67
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:26
|
||||
#: src/utils/create_details_window.py:87
|
||||
msgid "Edit Game Details"
|
||||
msgstr ""
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:38 data/gtk/window.blp:71
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:30 data/gtk/window.blp:51
|
||||
msgid "Game Details"
|
||||
msgstr ""
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:42 data/gtk/window.blp:416
|
||||
#: src/details_window.py:239
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 data/gtk/window.blp:402
|
||||
#: src/utils/importer.py:94 src/utils/importer.py:123 src/utils/importer.py:148
|
||||
#: src/utils/steamgriddb.py:116
|
||||
msgid "Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/details-window.blp:25
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/details-window.blp:57
|
||||
msgid "New Cover"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/details-window.blp:75
|
||||
msgid "Delete Cover"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/details-window.blp:101 data/gtk/details-window.blp:106
|
||||
#: data/gtk/game.blp:80
|
||||
#: data/gtk/game.blp:67 src/utils/create_details_window.py:129
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/details-window.blp:102
|
||||
msgid "The title of the game"
|
||||
msgstr ""
|
||||
|
||||
#: 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-window.blp:124
|
||||
msgid "File to open or command to run when launching the game"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/details-window.blp:130
|
||||
msgid "More Info"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/game.blp:102 data/gtk/game.blp:121 data/gtk/window.blp:195
|
||||
#: data/gtk/game.blp:89 data/gtk/game.blp:108 data/gtk/window.blp:170
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/game.blp:107 src/window.py:171
|
||||
#: data/gtk/game.blp:94 src/window.py:286
|
||||
msgid "Hide"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/game.blp:112 data/gtk/game.blp:131 data/gtk/preferences.blp:56
|
||||
#: data/gtk/window.blp:209
|
||||
#: data/gtk/game.blp:99 data/gtk/game.blp:118 data/gtk/preferences.blp:56
|
||||
#: data/gtk/window.blp:186
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/game.blp:126 src/window.py:173
|
||||
#: data/gtk/game.blp:113 src/window.py:283
|
||||
msgid "Unhide"
|
||||
msgstr ""
|
||||
|
||||
@@ -136,8 +97,8 @@ msgstr ""
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:217 data/gtk/window.blp:257
|
||||
#: data/gtk/window.blp:323
|
||||
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:205 data/gtk/window.blp:249
|
||||
#: data/gtk/window.blp:312
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
@@ -149,7 +110,8 @@ msgstr ""
|
||||
msgid "Shortcuts"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/help-overlay.blp:34 src/game.py:102 src/preferences.py:112
|
||||
#: data/gtk/help-overlay.blp:34 src/main.py:186 src/main.py:242
|
||||
#: src/preferences.py:133
|
||||
msgid "Undo"
|
||||
msgstr ""
|
||||
|
||||
@@ -183,7 +145,7 @@ msgstr ""
|
||||
msgid "Remove game"
|
||||
msgstr "게임이 없습니다"
|
||||
|
||||
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:268
|
||||
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:235
|
||||
msgid "Behavior"
|
||||
msgstr ""
|
||||
|
||||
@@ -199,7 +161,7 @@ msgstr ""
|
||||
msgid "Swaps the behavior of the cover image and the play button"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:36 src/details_window.py:81
|
||||
#: data/gtk/preferences.blp:36 src/utils/create_details_window.py:101
|
||||
msgid "Images"
|
||||
msgstr ""
|
||||
|
||||
@@ -219,247 +181,343 @@ msgstr ""
|
||||
msgid "Remove All Games"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:85 data/gtk/window.blp:27 data/gtk/window.blp:442
|
||||
#: data/gtk/preferences.blp:69 data/gtk/window.blp:427
|
||||
msgid "Import"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:89
|
||||
#: data/gtk/preferences.blp:73
|
||||
msgid "Sources"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:92
|
||||
#: data/gtk/preferences.blp:76
|
||||
msgid "Steam"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:96 data/gtk/preferences.blp:110
|
||||
#: data/gtk/preferences.blp:151 data/gtk/preferences.blp:192
|
||||
#: data/gtk/preferences.blp:206 data/gtk/preferences.blp:220
|
||||
#: data/gtk/preferences.blp:234
|
||||
msgid "Install Location"
|
||||
#: data/gtk/preferences.blp:80
|
||||
msgid "Steam Install Location"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:106
|
||||
#: data/gtk/preferences.blp:81 data/gtk/preferences.blp:119
|
||||
#: data/gtk/preferences.blp:153 data/gtk/preferences.blp:195
|
||||
#: data/gtk/preferences.blp:210
|
||||
msgid "Directory to use when importing games"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:89 src/utils/importer.py:143
|
||||
msgid "Extra Steam Libraries"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:90
|
||||
msgid "Select other directories where you have Steam games installed"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:96
|
||||
msgid "Clear"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:114
|
||||
msgid "Lutris"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:119
|
||||
msgid "Cache Location"
|
||||
#: data/gtk/preferences.blp:118
|
||||
msgid "Lutris Install Location"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:128
|
||||
msgid "Lutris Cache Location"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:129
|
||||
msgid "Directory to use when importing game covers"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:138
|
||||
#, fuzzy
|
||||
#| msgid "No Games"
|
||||
msgid "Import Steam Games"
|
||||
msgstr "게임이 없습니다"
|
||||
|
||||
#: data/gtk/preferences.blp:137
|
||||
#, fuzzy
|
||||
#| msgid "No Games"
|
||||
msgid "Import Flatpak Games"
|
||||
msgstr "게임이 없습니다"
|
||||
|
||||
#: data/gtk/preferences.blp:147
|
||||
#: data/gtk/preferences.blp:148
|
||||
msgid "Heroic"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:160
|
||||
#: data/gtk/preferences.blp:152
|
||||
msgid "Heroic Install Location"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:162
|
||||
msgid "Import Epic Games"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:169
|
||||
#: data/gtk/preferences.blp:171
|
||||
msgid "Import GOG Games"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:178
|
||||
#: data/gtk/preferences.blp:180
|
||||
msgid "Import Sideloaded Games"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:188
|
||||
#: data/gtk/preferences.blp:190
|
||||
msgid "Bottles"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:202
|
||||
#: data/gtk/preferences.blp:194
|
||||
msgid "Bottles Install Location"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:205
|
||||
msgid "itch"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:216
|
||||
msgid "Legendary"
|
||||
#: data/gtk/preferences.blp:209
|
||||
msgid "itch Install Location"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:230
|
||||
msgid "Flatpak"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:243
|
||||
#, fuzzy
|
||||
#| msgid "Game Launcher"
|
||||
msgid "Import Game Launchers"
|
||||
msgstr "게임 런처"
|
||||
|
||||
#: data/gtk/preferences.blp:256
|
||||
#: data/gtk/preferences.blp:223
|
||||
msgid "SteamGridDB"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:260
|
||||
#: data/gtk/preferences.blp:227
|
||||
msgid "Authentication"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:263
|
||||
#: data/gtk/preferences.blp:230
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:271
|
||||
#: data/gtk/preferences.blp:238
|
||||
msgid "Use SteamGridDB"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:272
|
||||
#: data/gtk/preferences.blp:239
|
||||
msgid "Download images when adding or importing games"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:281
|
||||
#: data/gtk/preferences.blp:248
|
||||
msgid "Prefer Over Official Images"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:290
|
||||
#: data/gtk/preferences.blp:257
|
||||
msgid "Prefer Animated Images"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:6 data/gtk/window.blp:14
|
||||
#: data/gtk/window.blp:6 src/utils/importer.py:91
|
||||
msgid "No Games Found"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:7 data/gtk/window.blp:15
|
||||
#: data/gtk/window.blp:7
|
||||
msgid "Try a different search."
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:21
|
||||
#: data/gtk/window.blp:14
|
||||
msgid "No Games"
|
||||
msgstr "게임이 없습니다"
|
||||
|
||||
#: data/gtk/window.blp:22
|
||||
#: data/gtk/window.blp:15
|
||||
msgid "Use the + button to add games."
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:40
|
||||
#: data/gtk/window.blp:22
|
||||
msgid "No Hidden Games"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:41
|
||||
#: data/gtk/window.blp:23
|
||||
msgid "Games you hide will appear here."
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:64 data/gtk/window.blp:304
|
||||
#: data/gtk/window.blp:44 data/gtk/window.blp:293
|
||||
msgid "Back"
|
||||
msgstr "뒤로"
|
||||
|
||||
#: data/gtk/window.blp:121
|
||||
#: data/gtk/window.blp:100
|
||||
msgid "Game Title"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:176
|
||||
#: data/gtk/window.blp:151 src/game.py:158
|
||||
msgid "Play"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:243 data/gtk/window.blp:435
|
||||
#: data/gtk/window.blp:235 data/gtk/window.blp:421
|
||||
msgid "Add Game"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:250 data/gtk/window.blp:316
|
||||
#: data/gtk/window.blp:242 data/gtk/window.blp:305
|
||||
msgid "Main Menu"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:311
|
||||
#: data/gtk/window.blp:300
|
||||
msgid "Hidden Games"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:374
|
||||
#: data/gtk/window.blp:360
|
||||
msgid "Sort"
|
||||
msgstr "정렬"
|
||||
|
||||
#: data/gtk/window.blp:377
|
||||
#: data/gtk/window.blp:363
|
||||
msgid "A-Z"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:383
|
||||
#: data/gtk/window.blp:369
|
||||
msgid "Z-A"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:389
|
||||
#: data/gtk/window.blp:375
|
||||
msgid "Newest"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:395
|
||||
#: data/gtk/window.blp:381
|
||||
msgid "Oldest"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:401
|
||||
#: data/gtk/window.blp:387
|
||||
msgid "Last Played"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:408
|
||||
#: data/gtk/window.blp:394
|
||||
msgid "Show Hidden"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:421
|
||||
#: data/gtk/window.blp:407
|
||||
msgid "Keyboard Shortcuts"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:426
|
||||
#: data/gtk/window.blp:412
|
||||
msgid "About Cartridges"
|
||||
msgstr "카트리지 정보"
|
||||
|
||||
#. Translators: Replace this with your name for it to show up in the about window
|
||||
#: src/main.py:180
|
||||
#: src/main.py:137
|
||||
msgid "translator_credits"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:164
|
||||
msgid "{} launched"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:182
|
||||
msgid "{} hidden"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:185
|
||||
msgid "{} unhidden"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:241
|
||||
msgid "{} removed"
|
||||
msgstr ""
|
||||
|
||||
#: src/window.py:262
|
||||
msgid "Today"
|
||||
msgstr ""
|
||||
|
||||
#: src/window.py:264
|
||||
msgid "Yesterday"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the date when the game was added
|
||||
#: src/window.py:194
|
||||
#: src/window.py:310
|
||||
msgid "Added: {}"
|
||||
msgstr ""
|
||||
|
||||
#: src/window.py:197
|
||||
#: src/window.py:315
|
||||
msgid "Never"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the date when the game was last played
|
||||
#: src/window.py:201
|
||||
#: src/window.py:319
|
||||
msgid "Last played: {}"
|
||||
msgstr ""
|
||||
|
||||
#: src/details_window.py:72
|
||||
msgid "Apply"
|
||||
#: src/game.py:156
|
||||
msgid "Details"
|
||||
msgstr ""
|
||||
|
||||
#: src/details_window.py:78
|
||||
#: src/preferences.py:54
|
||||
msgid "Installation Not Found"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the name of the game launcher
|
||||
#: src/preferences.py:56
|
||||
msgid "Select the {} configuration directory."
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the name of the game launcher
|
||||
#: src/preferences.py:59
|
||||
msgid "Select the {} data directory."
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:61 src/preferences.py:240
|
||||
msgid "Set Location"
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:132
|
||||
msgid "All games removed"
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:237
|
||||
msgid "Cache Not Found"
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:238
|
||||
msgid "Select the Lutris cache directory."
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:344
|
||||
msgid ""
|
||||
"An API key is required to use SteamGridDB. You can generate one {}here{}."
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/create_details_window.py:81
|
||||
msgid "Add New Game"
|
||||
msgstr ""
|
||||
|
||||
#: src/details_window.py:79
|
||||
#: src/utils/create_details_window.py:85
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/create_details_window.py:96
|
||||
msgid "Apply"
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/create_details_window.py:130
|
||||
msgid "The title of the game"
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/create_details_window.py:135
|
||||
msgid "Developer"
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/create_details_window.py:136
|
||||
msgid "The developer or publisher (optional)"
|
||||
msgstr ""
|
||||
|
||||
#. Translate this string as you would translate "file"
|
||||
#: src/details_window.py:92
|
||||
#: src/utils/create_details_window.py:147
|
||||
msgid "file.txt"
|
||||
msgstr ""
|
||||
|
||||
#. As in software
|
||||
#: src/details_window.py:94
|
||||
#: src/utils/create_details_window.py:149
|
||||
msgid "program"
|
||||
msgstr ""
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:99 src/details_window.py:101
|
||||
#: src/utils/create_details_window.py:154
|
||||
#: src/utils/create_details_window.py:156
|
||||
msgid "C:\\path\\to\\{}"
|
||||
msgstr ""
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:105 src/details_window.py:107
|
||||
#: src/utils/create_details_window.py:160
|
||||
#: src/utils/create_details_window.py:162
|
||||
msgid "/path/to/{}"
|
||||
msgstr ""
|
||||
|
||||
#: src/details_window.py:112
|
||||
#: src/utils/create_details_window.py:166
|
||||
msgid ""
|
||||
"To launch the executable \"{}\", use the command:\n"
|
||||
"\n"
|
||||
@@ -472,90 +530,81 @@ msgid ""
|
||||
"If the path contains spaces, make sure to wrap it in double quotes!"
|
||||
msgstr ""
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:153
|
||||
#: src/utils/create_details_window.py:189
|
||||
msgid "Executable"
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/create_details_window.py:190
|
||||
msgid "File to open or command to run when launching the game"
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/create_details_window.py:202
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/create_details_window.py:259
|
||||
#: src/utils/create_details_window.py:269
|
||||
#: src/utils/create_details_window.py:275
|
||||
msgid "Couldn't Add Game"
|
||||
msgstr ""
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:181
|
||||
msgid "Game title cannot be empty."
|
||||
msgstr ""
|
||||
|
||||
#: src/details_window.py:153 src/details_window.py:189
|
||||
msgid "Executable cannot be empty."
|
||||
msgstr ""
|
||||
|
||||
#: src/details_window.py:180 src/details_window.py:188
|
||||
#: src/utils/create_details_window.py:261
|
||||
#: src/utils/create_details_window.py:299
|
||||
#: src/utils/create_details_window.py:307
|
||||
msgid "Couldn't Apply Preferences"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:138
|
||||
msgid "{} launched"
|
||||
#: src/utils/create_details_window.py:269
|
||||
#: src/utils/create_details_window.py:300
|
||||
msgid "Game title cannot be empty."
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:152
|
||||
msgid "{} hidden"
|
||||
msgstr ""
|
||||
|
||||
#: src/game.py:152
|
||||
msgid "{} unhidden"
|
||||
msgstr ""
|
||||
|
||||
#: src/game.py:169
|
||||
msgid "{} removed"
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:111
|
||||
msgid "All games removed"
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:159
|
||||
msgid ""
|
||||
"An API key is required to use SteamGridDB. You can generate one {}here{}."
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:284
|
||||
msgid "Installation Not Found"
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:286
|
||||
msgid "Select a valid directory."
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:348
|
||||
msgid "Invalid Directory"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:352
|
||||
msgid "Select the {} cache directory."
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:355
|
||||
msgid "Select the {} configuration directory."
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:358
|
||||
msgid "Select the {} data directory."
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:364
|
||||
msgid "Set Location"
|
||||
#: src/utils/create_details_window.py:275
|
||||
#: src/utils/create_details_window.py:308
|
||||
msgid "Executable cannot be empty."
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/create_dialog.py:25
|
||||
msgid "Dismiss"
|
||||
msgstr ""
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:47
|
||||
msgid "Couldn't Authenticate SteamGridDB"
|
||||
#: src/utils/importer.py:42
|
||||
msgid "Importing Games…"
|
||||
msgstr ""
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:48
|
||||
msgid "Verify your API key in preferences"
|
||||
#: src/utils/importer.py:77
|
||||
msgid "Importing Covers…"
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/importer.py:92
|
||||
msgid "No new games were found on your system."
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/importer.py:100
|
||||
msgid "Game Imported"
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/importer.py:101
|
||||
msgid "Successfully imported 1 game."
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/importer.py:107
|
||||
msgid "Games Imported"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the number of games
|
||||
#: src/utils/importer.py:109
|
||||
msgid "Successfully imported {} games."
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/importer.py:120 src/utils/steamgriddb.py:113
|
||||
msgid "Couldn't Connect to SteamGridDB"
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/importer.py:145
|
||||
msgid ""
|
||||
"Looks like you have multiple Steam libraries. Would you like to add them in "
|
||||
"preferences?"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Launch your games"
|
||||
|
||||
602
po/nb_NO.po
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: cartridges\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-05 14:36+0200\n"
|
||||
"POT-Creation-Date: 2023-04-11 23:33+0200\n"
|
||||
"PO-Revision-Date: 2023-04-06 08:09+0000\n"
|
||||
"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n"
|
||||
"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/"
|
||||
@@ -20,8 +20,8 @@ msgstr ""
|
||||
"X-Generator: Weblate 4.17-dev\n"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:3
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:47
|
||||
#: src/main.py:162
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:29
|
||||
#: src/main.py:119
|
||||
msgid "Cartridges"
|
||||
msgstr "Cartridges"
|
||||
|
||||
@@ -34,10 +34,6 @@ msgstr "Spillutvalgstarter"
|
||||
msgid "Launch all your games"
|
||||
msgstr "Start alle spillene dine"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:11
|
||||
msgid "gaming;launcher;steam;lutris;heroic;bottles;itch;"
|
||||
msgstr ""
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:9
|
||||
msgid ""
|
||||
"Cartridges is a simple game launcher for all of your games. It has support "
|
||||
@@ -50,78 +46,43 @@ msgstr ""
|
||||
"innlogging. Du kan sortere og skjule spil eller laste ned omslagsbilder fra "
|
||||
"SteamGridDB."
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:30
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:22
|
||||
msgid "Library"
|
||||
msgstr "Bibliotek"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 src/details_window.py:67
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:26
|
||||
#: src/utils/create_details_window.py:87
|
||||
msgid "Edit Game Details"
|
||||
msgstr "Rediger spilldetaljer"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:38 data/gtk/window.blp:71
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:30 data/gtk/window.blp:51
|
||||
msgid "Game Details"
|
||||
msgstr "Spilldetaljer"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:42 data/gtk/window.blp:416
|
||||
#: src/details_window.py:239
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 data/gtk/window.blp:402
|
||||
#: src/utils/importer.py:94 src/utils/importer.py:123 src/utils/importer.py:148
|
||||
#: src/utils/steamgriddb.py:116
|
||||
msgid "Preferences"
|
||||
msgstr "Innstillinger"
|
||||
|
||||
#: data/gtk/details-window.blp:25
|
||||
msgid "Cancel"
|
||||
msgstr "Avbryt"
|
||||
|
||||
#: data/gtk/details-window.blp:57
|
||||
msgid "New Cover"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/details-window.blp:75
|
||||
msgid "Delete Cover"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/details-window.blp:101 data/gtk/details-window.blp:106
|
||||
#: data/gtk/game.blp:80
|
||||
#: data/gtk/game.blp:67 src/utils/create_details_window.py:129
|
||||
msgid "Title"
|
||||
msgstr "Navn"
|
||||
|
||||
#: data/gtk/details-window.blp:102
|
||||
msgid "The title of the game"
|
||||
msgstr "Navnet på spillet"
|
||||
|
||||
#: data/gtk/details-window.blp:112 data/gtk/details-window.blp:117
|
||||
msgid "Developer"
|
||||
msgstr "Utvikler"
|
||||
|
||||
#: data/gtk/details-window.blp:113
|
||||
msgid "The developer or publisher (optional)"
|
||||
msgstr "Utvikler eller utgiver (valgfritt)"
|
||||
|
||||
#: data/gtk/details-window.blp:123 data/gtk/details-window.blp:155
|
||||
msgid "Executable"
|
||||
msgstr "Kjørbar"
|
||||
|
||||
#: data/gtk/details-window.blp:124
|
||||
msgid "File to open or command to run when launching the game"
|
||||
msgstr "Fil å åpne eller kommando å kjøre ved oppstart av spillet"
|
||||
|
||||
#: data/gtk/details-window.blp:130
|
||||
msgid "More Info"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/game.blp:102 data/gtk/game.blp:121 data/gtk/window.blp:195
|
||||
#: data/gtk/game.blp:89 data/gtk/game.blp:108 data/gtk/window.blp:170
|
||||
msgid "Edit"
|
||||
msgstr "Rediger"
|
||||
|
||||
#: data/gtk/game.blp:107 src/window.py:171
|
||||
#: data/gtk/game.blp:94 src/window.py:286
|
||||
msgid "Hide"
|
||||
msgstr "Skjul"
|
||||
|
||||
#: data/gtk/game.blp:112 data/gtk/game.blp:131 data/gtk/preferences.blp:56
|
||||
#: data/gtk/window.blp:209
|
||||
#: data/gtk/game.blp:99 data/gtk/game.blp:118 data/gtk/preferences.blp:56
|
||||
#: data/gtk/window.blp:186
|
||||
msgid "Remove"
|
||||
msgstr "Fjern"
|
||||
|
||||
#: data/gtk/game.blp:126 src/window.py:173
|
||||
#: data/gtk/game.blp:113 src/window.py:283
|
||||
msgid "Unhide"
|
||||
msgstr "Opphev fjerning"
|
||||
|
||||
@@ -133,8 +94,8 @@ msgstr "Generelt"
|
||||
msgid "Quit"
|
||||
msgstr "Avslutt"
|
||||
|
||||
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:217 data/gtk/window.blp:257
|
||||
#: data/gtk/window.blp:323
|
||||
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:205 data/gtk/window.blp:249
|
||||
#: data/gtk/window.blp:312
|
||||
#, fuzzy
|
||||
msgid "Search"
|
||||
msgstr "Søk"
|
||||
@@ -147,7 +108,8 @@ msgstr "Vis innstillinger"
|
||||
msgid "Shortcuts"
|
||||
msgstr "Snarveier"
|
||||
|
||||
#: data/gtk/help-overlay.blp:34 src/game.py:102 src/preferences.py:112
|
||||
#: data/gtk/help-overlay.blp:34 src/main.py:186 src/main.py:242
|
||||
#: src/preferences.py:133
|
||||
msgid "Undo"
|
||||
msgstr "Angre"
|
||||
|
||||
@@ -177,7 +139,7 @@ msgstr "Vis skjulte spill"
|
||||
msgid "Remove game"
|
||||
msgstr "Fjern spill"
|
||||
|
||||
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:268
|
||||
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:235
|
||||
#, fuzzy
|
||||
msgid "Behavior"
|
||||
msgstr "Adferd"
|
||||
@@ -194,7 +156,7 @@ msgstr "Omslagsbilde starter spill"
|
||||
msgid "Swaps the behavior of the cover image and the play button"
|
||||
msgstr "Bytter adferd for omslagsbilde og spill-knapp"
|
||||
|
||||
#: data/gtk/preferences.blp:36 src/details_window.py:81
|
||||
#: data/gtk/preferences.blp:36 src/utils/create_details_window.py:101
|
||||
msgid "Images"
|
||||
msgstr "Bilder"
|
||||
|
||||
@@ -214,257 +176,363 @@ msgstr "Faresone"
|
||||
msgid "Remove All Games"
|
||||
msgstr "Fjern alle spill"
|
||||
|
||||
#: data/gtk/preferences.blp:85 data/gtk/window.blp:27 data/gtk/window.blp:442
|
||||
#: data/gtk/preferences.blp:69 data/gtk/window.blp:427
|
||||
msgid "Import"
|
||||
msgstr "Importer"
|
||||
|
||||
#: data/gtk/preferences.blp:89
|
||||
#: data/gtk/preferences.blp:73
|
||||
msgid "Sources"
|
||||
msgstr "Kilder"
|
||||
|
||||
#: data/gtk/preferences.blp:92
|
||||
#: data/gtk/preferences.blp:76
|
||||
msgid "Steam"
|
||||
msgstr "Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:96 data/gtk/preferences.blp:110
|
||||
#: data/gtk/preferences.blp:151 data/gtk/preferences.blp:192
|
||||
#: data/gtk/preferences.blp:206 data/gtk/preferences.blp:220
|
||||
#: data/gtk/preferences.blp:234
|
||||
#, fuzzy
|
||||
#| msgid "Heroic Install Location"
|
||||
msgid "Install Location"
|
||||
msgstr "Installasjonssted for itch"
|
||||
#: data/gtk/preferences.blp:80
|
||||
msgid "Steam Install Location"
|
||||
msgstr "Installasjonssted for Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:106
|
||||
#: data/gtk/preferences.blp:81 data/gtk/preferences.blp:119
|
||||
#: data/gtk/preferences.blp:153 data/gtk/preferences.blp:195
|
||||
#: data/gtk/preferences.blp:210
|
||||
msgid "Directory to use when importing games"
|
||||
msgstr "Mappe å bruke ved import av spill"
|
||||
|
||||
#: data/gtk/preferences.blp:89 src/utils/importer.py:143
|
||||
msgid "Extra Steam Libraries"
|
||||
msgstr "Ekstra Steam-bibliotek"
|
||||
|
||||
#: data/gtk/preferences.blp:90
|
||||
#, fuzzy
|
||||
msgid "Select other directories where you have Steam games installed"
|
||||
msgstr "Velg andre mapper der du har Steam-spill installert"
|
||||
|
||||
#: data/gtk/preferences.blp:96
|
||||
msgid "Clear"
|
||||
msgstr "Tøm"
|
||||
|
||||
#: data/gtk/preferences.blp:114
|
||||
msgid "Lutris"
|
||||
msgstr "Lutris"
|
||||
|
||||
#: data/gtk/preferences.blp:119
|
||||
#, fuzzy
|
||||
#| msgid "Set Heroic Location"
|
||||
msgid "Cache Location"
|
||||
msgstr "Posisjon for Lutris-hurtiglager"
|
||||
#: data/gtk/preferences.blp:118
|
||||
msgid "Lutris Install Location"
|
||||
msgstr "Installasjonssted for Lutris"
|
||||
|
||||
#: data/gtk/preferences.blp:128
|
||||
#, fuzzy
|
||||
#| msgid "Set Heroic Location"
|
||||
msgid "Lutris Cache Location"
|
||||
msgstr "Posisjon for Lutris-hurtiglager"
|
||||
|
||||
#: data/gtk/preferences.blp:129
|
||||
#, fuzzy
|
||||
#| msgid "Directory to use when importing games"
|
||||
msgid "Directory to use when importing game covers"
|
||||
msgstr "Mappe å bruke ved import av spillomslag"
|
||||
|
||||
#: data/gtk/preferences.blp:138
|
||||
#, fuzzy
|
||||
#| msgid "Import Sideloaded Games"
|
||||
msgid "Import Steam Games"
|
||||
msgstr "Importer sideinnlastede spill"
|
||||
|
||||
#: data/gtk/preferences.blp:137
|
||||
#, fuzzy
|
||||
#| msgid "Import Sideloaded Games"
|
||||
msgid "Import Flatpak Games"
|
||||
msgstr "Importer sideinnlastede spill"
|
||||
|
||||
#: data/gtk/preferences.blp:147
|
||||
#: data/gtk/preferences.blp:148
|
||||
msgid "Heroic"
|
||||
msgstr "Heroic"
|
||||
|
||||
#: data/gtk/preferences.blp:160
|
||||
#: data/gtk/preferences.blp:152
|
||||
msgid "Heroic Install Location"
|
||||
msgstr "Installasjonssted for Heroic"
|
||||
|
||||
#: data/gtk/preferences.blp:162
|
||||
msgid "Import Epic Games"
|
||||
msgstr "Importer Epic-spill"
|
||||
|
||||
#: data/gtk/preferences.blp:169
|
||||
#: data/gtk/preferences.blp:171
|
||||
msgid "Import GOG Games"
|
||||
msgstr "Importer GOG-spill"
|
||||
|
||||
#: data/gtk/preferences.blp:178
|
||||
#: data/gtk/preferences.blp:180
|
||||
msgid "Import Sideloaded Games"
|
||||
msgstr "Importer sideinnlastede spill"
|
||||
|
||||
#: data/gtk/preferences.blp:188
|
||||
#: data/gtk/preferences.blp:190
|
||||
msgid "Bottles"
|
||||
msgstr "Bottles"
|
||||
|
||||
#: data/gtk/preferences.blp:202
|
||||
#: data/gtk/preferences.blp:194
|
||||
msgid "Bottles Install Location"
|
||||
msgstr "Installasjonssted for Bottles"
|
||||
|
||||
#: data/gtk/preferences.blp:205
|
||||
#, fuzzy
|
||||
msgid "itch"
|
||||
msgstr "itch"
|
||||
|
||||
#: data/gtk/preferences.blp:216
|
||||
msgid "Legendary"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:230
|
||||
msgid "Flatpak"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:243
|
||||
#: data/gtk/preferences.blp:209
|
||||
#, fuzzy
|
||||
#| msgid "Game Launcher"
|
||||
msgid "Import Game Launchers"
|
||||
msgstr "Spillutvalgstarter"
|
||||
#| msgid "Heroic Install Location"
|
||||
msgid "itch Install Location"
|
||||
msgstr "Installasjonssted for itch"
|
||||
|
||||
#: data/gtk/preferences.blp:256
|
||||
#: data/gtk/preferences.blp:223
|
||||
msgid "SteamGridDB"
|
||||
msgstr "SteamGridDB"
|
||||
|
||||
#: data/gtk/preferences.blp:260
|
||||
#: data/gtk/preferences.blp:227
|
||||
msgid "Authentication"
|
||||
msgstr "Identitetsbekreftelse"
|
||||
|
||||
#: data/gtk/preferences.blp:263
|
||||
#: data/gtk/preferences.blp:230
|
||||
#, fuzzy
|
||||
msgid "API Key"
|
||||
msgstr "API-nøkkel"
|
||||
|
||||
#: data/gtk/preferences.blp:271
|
||||
#: data/gtk/preferences.blp:238
|
||||
msgid "Use SteamGridDB"
|
||||
msgstr "Bruk SteamGridDB"
|
||||
|
||||
#: data/gtk/preferences.blp:272
|
||||
#: data/gtk/preferences.blp:239
|
||||
#, fuzzy
|
||||
#| msgid "Directory to use when importing games"
|
||||
msgid "Download images when adding or importing games"
|
||||
msgstr "Mappe å bruke ved import av spill"
|
||||
|
||||
#: data/gtk/preferences.blp:281
|
||||
#: data/gtk/preferences.blp:248
|
||||
#, fuzzy
|
||||
msgid "Prefer Over Official Images"
|
||||
msgstr "Foretrekk over offisielle bilder"
|
||||
|
||||
#: data/gtk/preferences.blp:290
|
||||
#: data/gtk/preferences.blp:257
|
||||
#, fuzzy
|
||||
msgid "Prefer Animated Images"
|
||||
msgstr "Foretrekk over offisielle bilder"
|
||||
|
||||
#: data/gtk/window.blp:6 data/gtk/window.blp:14
|
||||
#: data/gtk/window.blp:6 src/utils/importer.py:91
|
||||
msgid "No Games Found"
|
||||
msgstr "Fant ingen spill"
|
||||
|
||||
#: data/gtk/window.blp:7 data/gtk/window.blp:15
|
||||
#: data/gtk/window.blp:7
|
||||
msgid "Try a different search."
|
||||
msgstr "Prøv et forskjellig søk."
|
||||
|
||||
#: data/gtk/window.blp:21
|
||||
#: data/gtk/window.blp:14
|
||||
msgid "No Games"
|
||||
msgstr "Ingen spill"
|
||||
|
||||
#: data/gtk/window.blp:22
|
||||
#: data/gtk/window.blp:15
|
||||
msgid "Use the + button to add games."
|
||||
msgstr "Bruk «+»-knappen for å legge til spill."
|
||||
|
||||
#: data/gtk/window.blp:40
|
||||
#: data/gtk/window.blp:22
|
||||
msgid "No Hidden Games"
|
||||
msgstr "Ingen skjulte spill"
|
||||
|
||||
#: data/gtk/window.blp:41
|
||||
#: data/gtk/window.blp:23
|
||||
msgid "Games you hide will appear here."
|
||||
msgstr "Spill du skjuler vil vises her."
|
||||
|
||||
#: data/gtk/window.blp:64 data/gtk/window.blp:304
|
||||
#: data/gtk/window.blp:44 data/gtk/window.blp:293
|
||||
msgid "Back"
|
||||
msgstr "Tilbake"
|
||||
|
||||
#: data/gtk/window.blp:121
|
||||
#: data/gtk/window.blp:100
|
||||
msgid "Game Title"
|
||||
msgstr "Spillnavn"
|
||||
|
||||
#: data/gtk/window.blp:176
|
||||
#: data/gtk/window.blp:151 src/game.py:158
|
||||
msgid "Play"
|
||||
msgstr "Spill"
|
||||
|
||||
#: data/gtk/window.blp:243 data/gtk/window.blp:435
|
||||
#: data/gtk/window.blp:235 data/gtk/window.blp:421
|
||||
msgid "Add Game"
|
||||
msgstr "Legg til spill"
|
||||
|
||||
#: data/gtk/window.blp:250 data/gtk/window.blp:316
|
||||
#: data/gtk/window.blp:242 data/gtk/window.blp:305
|
||||
msgid "Main Menu"
|
||||
msgstr "Hovedmeny"
|
||||
|
||||
#: data/gtk/window.blp:311
|
||||
#: data/gtk/window.blp:300
|
||||
msgid "Hidden Games"
|
||||
msgstr "Skjulte spill"
|
||||
|
||||
#: data/gtk/window.blp:374
|
||||
#: data/gtk/window.blp:360
|
||||
msgid "Sort"
|
||||
msgstr "Sorter"
|
||||
|
||||
#: data/gtk/window.blp:377
|
||||
#: data/gtk/window.blp:363
|
||||
msgid "A-Z"
|
||||
msgstr "A-Å"
|
||||
|
||||
#: data/gtk/window.blp:383
|
||||
#: data/gtk/window.blp:369
|
||||
msgid "Z-A"
|
||||
msgstr "Å-A"
|
||||
|
||||
#: data/gtk/window.blp:389
|
||||
#: data/gtk/window.blp:375
|
||||
msgid "Newest"
|
||||
msgstr "Nyeste"
|
||||
|
||||
#: data/gtk/window.blp:395
|
||||
#: data/gtk/window.blp:381
|
||||
msgid "Oldest"
|
||||
msgstr "Eldste"
|
||||
|
||||
#: data/gtk/window.blp:401
|
||||
#: data/gtk/window.blp:387
|
||||
msgid "Last Played"
|
||||
msgstr "Sist spilt"
|
||||
|
||||
#: data/gtk/window.blp:408
|
||||
#: data/gtk/window.blp:394
|
||||
msgid "Show Hidden"
|
||||
msgstr "Vis skjulte"
|
||||
|
||||
#: data/gtk/window.blp:421
|
||||
#: data/gtk/window.blp:407
|
||||
msgid "Keyboard Shortcuts"
|
||||
msgstr "Tastatursnarveier"
|
||||
|
||||
#: data/gtk/window.blp:426
|
||||
#: data/gtk/window.blp:412
|
||||
msgid "About Cartridges"
|
||||
msgstr "Om"
|
||||
|
||||
#. Translators: Replace this with your name for it to show up in the about window
|
||||
#: src/main.py:180
|
||||
#: src/main.py:137
|
||||
msgid "translator_credits"
|
||||
msgstr "Allan Nordhøy, <epost@anotheragency.no>"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:164
|
||||
msgid "{} launched"
|
||||
msgstr "{} startet"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:182
|
||||
#, fuzzy
|
||||
#| msgid "Show Hidden"
|
||||
msgid "{} hidden"
|
||||
msgstr "{} skjult"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:185
|
||||
msgid "{} unhidden"
|
||||
msgstr "{} synlig"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:241
|
||||
msgid "{} removed"
|
||||
msgstr "{} fjernet"
|
||||
|
||||
#: src/window.py:262
|
||||
msgid "Today"
|
||||
msgstr "I dag"
|
||||
|
||||
#: src/window.py:264
|
||||
msgid "Yesterday"
|
||||
msgstr "I går"
|
||||
|
||||
#. The variable is the date when the game was added
|
||||
#: src/window.py:194
|
||||
#: src/window.py:310
|
||||
msgid "Added: {}"
|
||||
msgstr "Tillagt: {}"
|
||||
|
||||
#: src/window.py:197
|
||||
#: src/window.py:315
|
||||
msgid "Never"
|
||||
msgstr "Aldri"
|
||||
|
||||
#. The variable is the date when the game was last played
|
||||
#: src/window.py:201
|
||||
#: src/window.py:319
|
||||
msgid "Last played: {}"
|
||||
msgstr "Sist spilt: {}"
|
||||
|
||||
#: src/details_window.py:72
|
||||
msgid "Apply"
|
||||
msgstr "Bruk"
|
||||
#: src/game.py:156
|
||||
msgid "Details"
|
||||
msgstr "Detaljer"
|
||||
|
||||
#: src/details_window.py:78
|
||||
#: src/preferences.py:54
|
||||
msgid "Installation Not Found"
|
||||
msgstr "Fant ikke installasjonen"
|
||||
|
||||
#. The variable is the name of the game launcher
|
||||
#: src/preferences.py:56
|
||||
msgid "Select the {} configuration directory."
|
||||
msgstr "Velg {}-oppsettsmappen."
|
||||
|
||||
#. The variable is the name of the game launcher
|
||||
#: src/preferences.py:59
|
||||
msgid "Select the {} data directory."
|
||||
msgstr "Velg {}-datamappen."
|
||||
|
||||
#: src/preferences.py:61 src/preferences.py:240
|
||||
#, fuzzy
|
||||
#| msgid "Set Steam Location"
|
||||
msgid "Set Location"
|
||||
msgstr "Velg mappe"
|
||||
|
||||
#: src/preferences.py:132
|
||||
msgid "All games removed"
|
||||
msgstr "Alle spill fjernet"
|
||||
|
||||
#: src/preferences.py:237
|
||||
#, fuzzy
|
||||
msgid "Cache Not Found"
|
||||
msgstr "Fant ikke hurtiglager"
|
||||
|
||||
#: src/preferences.py:238
|
||||
#, fuzzy
|
||||
msgid "Select the Lutris cache directory."
|
||||
msgstr "Velg {name}-datamappen."
|
||||
|
||||
#: src/preferences.py:344
|
||||
msgid ""
|
||||
"An API key is required to use SteamGridDB. You can generate one {}here{}."
|
||||
msgstr ""
|
||||
"En API-nøkkel kreves for å bruke SteamGridDB. Du kan generere en {}her{}."
|
||||
|
||||
#: src/utils/create_details_window.py:81
|
||||
msgid "Add New Game"
|
||||
msgstr "Legg til nytt spill"
|
||||
|
||||
#: src/details_window.py:79
|
||||
#: src/utils/create_details_window.py:85
|
||||
msgid "Confirm"
|
||||
msgstr "Bekreft"
|
||||
|
||||
#: src/utils/create_details_window.py:96
|
||||
msgid "Apply"
|
||||
msgstr "Bruk"
|
||||
|
||||
#: src/utils/create_details_window.py:130
|
||||
msgid "The title of the game"
|
||||
msgstr "Navnet på spillet"
|
||||
|
||||
#: src/utils/create_details_window.py:135
|
||||
msgid "Developer"
|
||||
msgstr "Utvikler"
|
||||
|
||||
#: src/utils/create_details_window.py:136
|
||||
msgid "The developer or publisher (optional)"
|
||||
msgstr "Utvikler eller utgiver (valgfritt)"
|
||||
|
||||
#. Translate this string as you would translate "file"
|
||||
#: src/details_window.py:92
|
||||
#: src/utils/create_details_window.py:147
|
||||
msgid "file.txt"
|
||||
msgstr "fil.txt"
|
||||
|
||||
#. As in software
|
||||
#: src/details_window.py:94
|
||||
#: src/utils/create_details_window.py:149
|
||||
msgid "program"
|
||||
msgstr "program"
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:99 src/details_window.py:101
|
||||
#: src/utils/create_details_window.py:154
|
||||
#: src/utils/create_details_window.py:156
|
||||
msgid "C:\\path\\to\\{}"
|
||||
msgstr "C:\\sti\\til\\{}"
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:105 src/details_window.py:107
|
||||
#: src/utils/create_details_window.py:160
|
||||
#: src/utils/create_details_window.py:162
|
||||
msgid "/path/to/{}"
|
||||
msgstr "/sti/til/{}"
|
||||
|
||||
#: src/details_window.py:112
|
||||
#: src/utils/create_details_window.py:166
|
||||
msgid ""
|
||||
"To launch the executable \"{}\", use the command:\n"
|
||||
"\n"
|
||||
@@ -487,203 +555,86 @@ msgstr ""
|
||||
"Hvis stien inneholder mellomrom må du pakke den inn i doble engelske "
|
||||
"sitattegn."
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:153
|
||||
#: src/utils/create_details_window.py:189
|
||||
msgid "Executable"
|
||||
msgstr "Kjørbar"
|
||||
|
||||
#: src/utils/create_details_window.py:190
|
||||
msgid "File to open or command to run when launching the game"
|
||||
msgstr "Fil å åpne eller kommando å kjøre ved oppstart av spillet"
|
||||
|
||||
#: src/utils/create_details_window.py:202
|
||||
msgid "Cancel"
|
||||
msgstr "Avbryt"
|
||||
|
||||
#: src/utils/create_details_window.py:259
|
||||
#: src/utils/create_details_window.py:269
|
||||
#: src/utils/create_details_window.py:275
|
||||
msgid "Couldn't Add Game"
|
||||
msgstr "Kunne ikke legge til spill"
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:181
|
||||
msgid "Game title cannot be empty."
|
||||
msgstr "Spillnavnet kan ikke være tomt."
|
||||
|
||||
#: src/details_window.py:153 src/details_window.py:189
|
||||
msgid "Executable cannot be empty."
|
||||
msgstr "Kjørbar fil må angis."
|
||||
|
||||
#: src/details_window.py:180 src/details_window.py:188
|
||||
#: src/utils/create_details_window.py:261
|
||||
#: src/utils/create_details_window.py:299
|
||||
#: src/utils/create_details_window.py:307
|
||||
msgid "Couldn't Apply Preferences"
|
||||
msgstr "Kunne ikke ta i bruk endringer"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:138
|
||||
msgid "{} launched"
|
||||
msgstr "{} startet"
|
||||
#: src/utils/create_details_window.py:269
|
||||
#: src/utils/create_details_window.py:300
|
||||
msgid "Game title cannot be empty."
|
||||
msgstr "Spillnavnet kan ikke være tomt."
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:152
|
||||
#, fuzzy
|
||||
#| msgid "Show Hidden"
|
||||
msgid "{} hidden"
|
||||
msgstr "{} skjult"
|
||||
|
||||
#: src/game.py:152
|
||||
msgid "{} unhidden"
|
||||
msgstr "{} synlig"
|
||||
|
||||
#: src/game.py:169
|
||||
msgid "{} removed"
|
||||
msgstr "{} fjernet"
|
||||
|
||||
#: src/preferences.py:111
|
||||
msgid "All games removed"
|
||||
msgstr "Alle spill fjernet"
|
||||
|
||||
#: src/preferences.py:159
|
||||
msgid ""
|
||||
"An API key is required to use SteamGridDB. You can generate one {}here{}."
|
||||
msgstr ""
|
||||
"En API-nøkkel kreves for å bruke SteamGridDB. Du kan generere en {}her{}."
|
||||
|
||||
#: src/preferences.py:284
|
||||
#, fuzzy
|
||||
#| msgid "Installation Not Found"
|
||||
msgid "Installation Not Found"
|
||||
msgstr "Fant ikke installasjonen"
|
||||
|
||||
#: src/preferences.py:286
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} data directory."
|
||||
msgid "Select a valid directory."
|
||||
msgstr "Velg {}-datamappen."
|
||||
|
||||
#: src/preferences.py:348
|
||||
msgid "Invalid Directory"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:352
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} data directory."
|
||||
msgid "Select the {} cache directory."
|
||||
msgstr "Velg {}-datamappen."
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:355
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} configuration directory."
|
||||
msgid "Select the {} configuration directory."
|
||||
msgstr "Velg {}-oppsettsmappen."
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:358
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} data directory."
|
||||
msgid "Select the {} data directory."
|
||||
msgstr "Velg {}-datamappen."
|
||||
|
||||
#: src/preferences.py:364
|
||||
#, fuzzy
|
||||
#| msgid "Set Steam Location"
|
||||
msgid "Set Location"
|
||||
msgstr "Velg mappe"
|
||||
#: src/utils/create_details_window.py:275
|
||||
#: src/utils/create_details_window.py:308
|
||||
msgid "Executable cannot be empty."
|
||||
msgstr "Kjørbar fil må angis."
|
||||
|
||||
#: src/utils/create_dialog.py:25
|
||||
msgid "Dismiss"
|
||||
msgstr "Forkast"
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:47
|
||||
#: src/utils/importer.py:42
|
||||
msgid "Importing Games…"
|
||||
msgstr "Importerer spill …"
|
||||
|
||||
#: src/utils/importer.py:77
|
||||
msgid "Importing Covers…"
|
||||
msgstr "Importerer omslag …"
|
||||
|
||||
#: src/utils/importer.py:92
|
||||
msgid "No new games were found on your system."
|
||||
msgstr "Fant ingen nye spill på systemet ditt."
|
||||
|
||||
#: src/utils/importer.py:100
|
||||
msgid "Game Imported"
|
||||
msgstr "Spill importert"
|
||||
|
||||
#: src/utils/importer.py:101
|
||||
msgid "Successfully imported 1 game."
|
||||
msgstr "Importerte ett spill."
|
||||
|
||||
#: src/utils/importer.py:107
|
||||
msgid "Games Imported"
|
||||
msgstr "Spill importert"
|
||||
|
||||
#. The variable is the number of games
|
||||
#: src/utils/importer.py:109
|
||||
#, fuzzy
|
||||
msgid "Couldn't Authenticate SteamGridDB"
|
||||
#| msgid "Successfully imported 1 game."
|
||||
msgid "Successfully imported {} games."
|
||||
msgstr "Importerte {} spill."
|
||||
|
||||
#: src/utils/importer.py:120 src/utils/steamgriddb.py:113
|
||||
#, fuzzy
|
||||
msgid "Couldn't Connect to SteamGridDB"
|
||||
msgstr "Kunne ikke koble til SteamGridDB"
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:48
|
||||
msgid "Verify your API key in preferences"
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/importer.py:145
|
||||
#, fuzzy
|
||||
#~| msgid "The Steam directory cannot be found."
|
||||
#~ msgid "Directory not Valid"
|
||||
#~ msgstr "Kunne ikke finne Steam-mappen."
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Confirm"
|
||||
#~ msgid "Configuration"
|
||||
#~ msgstr "Bekreft"
|
||||
|
||||
#~ msgid "Steam Install Location"
|
||||
#~ msgstr "Installasjonssted for Steam"
|
||||
|
||||
#~ msgid "Lutris Install Location"
|
||||
#~ msgstr "Installasjonssted for Lutris"
|
||||
|
||||
#~ msgid "Heroic Install Location"
|
||||
#~ msgstr "Installasjonssted for Heroic"
|
||||
|
||||
#~ msgid "Bottles Install Location"
|
||||
#~ msgstr "Installasjonssted for Bottles"
|
||||
|
||||
#~ msgid "Today"
|
||||
#~ msgstr "I dag"
|
||||
|
||||
#~ msgid "Yesterday"
|
||||
#~ msgstr "I går"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Cache Not Found"
|
||||
#~ msgstr "Fant ikke hurtiglager"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Select the Lutris cache directory."
|
||||
#~ msgstr "Velg {name}-datamappen."
|
||||
|
||||
#~ msgid "Importing Games…"
|
||||
#~ msgstr "Importerer spill …"
|
||||
|
||||
#~ msgid "Importing Covers…"
|
||||
#~ msgstr "Importerer omslag …"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "No Games Found"
|
||||
#~ msgid "No new games found"
|
||||
#~ msgstr "Fant ingen spill"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Game Imported"
|
||||
#~ msgid "1 game imported"
|
||||
#~ msgstr "Spill importert"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Games Imported"
|
||||
#~ msgid "{} games imported"
|
||||
#~ msgstr "Spill importert"
|
||||
|
||||
#~ msgid "Directory to use when importing games"
|
||||
#~ msgstr "Mappe å bruke ved import av spill"
|
||||
|
||||
#~ msgid "Extra Steam Libraries"
|
||||
#~ msgstr "Ekstra Steam-bibliotek"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Select other directories where you have Steam games installed"
|
||||
#~ msgstr "Velg andre mapper der du har Steam-spill installert"
|
||||
|
||||
#~ msgid "Clear"
|
||||
#~ msgstr "Tøm"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Directory to use when importing games"
|
||||
#~ msgid "Directory to use when importing game covers"
|
||||
#~ msgstr "Mappe å bruke ved import av spillomslag"
|
||||
|
||||
#~ msgid "Details"
|
||||
#~ msgstr "Detaljer"
|
||||
|
||||
#~ msgid "No new games were found on your system."
|
||||
#~ msgstr "Fant ingen nye spill på systemet ditt."
|
||||
|
||||
#~ msgid "Successfully imported 1 game."
|
||||
#~ msgstr "Importerte ett spill."
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Successfully imported 1 game."
|
||||
#~ msgid "Successfully imported {} games."
|
||||
#~ msgstr "Importerte {} spill."
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid ""
|
||||
#~ "Looks like you have multiple Steam libraries. Would you like to add them "
|
||||
#~ "in preferences?"
|
||||
#~ msgstr ""
|
||||
#~ "Du har flere Steam-bibliotek. Vil du legge dem til i innstillingene?"
|
||||
msgid ""
|
||||
"Looks like you have multiple Steam libraries. Would you like to add them in "
|
||||
"preferences?"
|
||||
msgstr "Du har flere Steam-bibliotek. Vil du legge dem til i innstillingene?"
|
||||
|
||||
#~ msgid "Launch your games"
|
||||
#~ msgstr "Start spillene dine"
|
||||
@@ -760,6 +711,9 @@ msgstr ""
|
||||
#~ msgid "No new games were found in the Steam library."
|
||||
#~ msgstr "Fant ingen nye spill i Steam-biblioteket."
|
||||
|
||||
#~ msgid "The Steam directory cannot be found."
|
||||
#~ msgstr "Kunne ikke finne Steam-mappen."
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Talking to Steam"
|
||||
#~ msgstr "Snakker med Steam"
|
||||
|
||||
559
po/nl.po
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: cartridges\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-05 14:36+0200\n"
|
||||
"PO-Revision-Date: 2023-07-04 17:29+0000\n"
|
||||
"POT-Creation-Date: 2023-04-11 23:33+0200\n"
|
||||
"PO-Revision-Date: 2023-04-14 12:29+0000\n"
|
||||
"Last-Translator: Philip Goto <philip.goto@gmail.com>\n"
|
||||
"Language-Team: Dutch <https://hosted.weblate.org/projects/cartridges/"
|
||||
"cartridges/nl/>\n"
|
||||
@@ -17,11 +17,11 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.0-dev\n"
|
||||
"X-Generator: Weblate 4.17-dev\n"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:3
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:47
|
||||
#: src/main.py:162
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:29
|
||||
#: src/main.py:119
|
||||
msgid "Cartridges"
|
||||
msgstr "Cartridges"
|
||||
|
||||
@@ -34,12 +34,6 @@ msgstr "Game-launcher"
|
||||
msgid "Launch all your games"
|
||||
msgstr "Start al uw games op"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:11
|
||||
msgid "gaming;launcher;steam;lutris;heroic;bottles;itch;"
|
||||
msgstr ""
|
||||
"gaming;launcher;steam;lutris;heroic;bottles;itch;spelen;games;starten;"
|
||||
"opstarten;"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:9
|
||||
msgid ""
|
||||
"Cartridges is a simple game launcher for all of your games. It has support "
|
||||
@@ -52,79 +46,43 @@ msgstr ""
|
||||
"meer, zonder in te hoeven loggen. U kunt spellen sorteren, verbergen en "
|
||||
"covers van SteamGridDB downloaden."
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:30
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:22
|
||||
msgid "Library"
|
||||
msgstr "Bibliotheek"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 src/details_window.py:67
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:26
|
||||
#: src/utils/create_details_window.py:87
|
||||
msgid "Edit Game Details"
|
||||
msgstr "Game-details bewerken"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:38 data/gtk/window.blp:71
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:30 data/gtk/window.blp:51
|
||||
msgid "Game Details"
|
||||
msgstr "Game-details"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:42 data/gtk/window.blp:416
|
||||
#: src/details_window.py:239
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 data/gtk/window.blp:402
|
||||
#: src/utils/importer.py:94 src/utils/importer.py:123 src/utils/importer.py:148
|
||||
#: src/utils/steamgriddb.py:116
|
||||
msgid "Preferences"
|
||||
msgstr "Voorkeuren"
|
||||
|
||||
#: data/gtk/details-window.blp:25
|
||||
msgid "Cancel"
|
||||
msgstr "Annuleren"
|
||||
|
||||
#: data/gtk/details-window.blp:57
|
||||
msgid "New Cover"
|
||||
msgstr "Nieuwe cover"
|
||||
|
||||
#: data/gtk/details-window.blp:75
|
||||
msgid "Delete Cover"
|
||||
msgstr "Cover verwijderen"
|
||||
|
||||
#: data/gtk/details-window.blp:101 data/gtk/details-window.blp:106
|
||||
#: data/gtk/game.blp:80
|
||||
#: data/gtk/game.blp:67 src/utils/create_details_window.py:129
|
||||
msgid "Title"
|
||||
msgstr "Titel"
|
||||
|
||||
#: data/gtk/details-window.blp:102
|
||||
msgid "The title of the game"
|
||||
msgstr "De titel van de game"
|
||||
|
||||
#: 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-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-window.blp:130
|
||||
msgid "More Info"
|
||||
msgstr "Meer info"
|
||||
|
||||
#: data/gtk/game.blp:102 data/gtk/game.blp:121 data/gtk/window.blp:195
|
||||
#: data/gtk/game.blp:89 data/gtk/game.blp:108 data/gtk/window.blp:170
|
||||
msgid "Edit"
|
||||
msgstr "Bewerken"
|
||||
|
||||
#: data/gtk/game.blp:107 src/window.py:171
|
||||
#: data/gtk/game.blp:94 src/window.py:286
|
||||
msgid "Hide"
|
||||
msgstr "Verbergen"
|
||||
|
||||
#: data/gtk/game.blp:112 data/gtk/game.blp:131 data/gtk/preferences.blp:56
|
||||
#: data/gtk/window.blp:209
|
||||
#: data/gtk/game.blp:99 data/gtk/game.blp:118 data/gtk/preferences.blp:56
|
||||
#: data/gtk/window.blp:186
|
||||
msgid "Remove"
|
||||
msgstr "Verwijderen"
|
||||
|
||||
#: data/gtk/game.blp:126 src/window.py:173
|
||||
#: data/gtk/game.blp:113 src/window.py:283
|
||||
msgid "Unhide"
|
||||
msgstr "Niet meer verbergen"
|
||||
|
||||
@@ -136,8 +94,8 @@ msgstr "Algemeen"
|
||||
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
|
||||
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:205 data/gtk/window.blp:249
|
||||
#: data/gtk/window.blp:312
|
||||
msgid "Search"
|
||||
msgstr "Zoeken"
|
||||
|
||||
@@ -149,7 +107,8 @@ msgstr "Voorkeuren tonen"
|
||||
msgid "Shortcuts"
|
||||
msgstr "Sneltoetsen"
|
||||
|
||||
#: data/gtk/help-overlay.blp:34 src/game.py:102 src/preferences.py:112
|
||||
#: data/gtk/help-overlay.blp:34 src/main.py:186 src/main.py:242
|
||||
#: src/preferences.py:133
|
||||
msgid "Undo"
|
||||
msgstr "Ongedaan maken"
|
||||
|
||||
@@ -177,7 +136,7 @@ msgstr "Verborgen games tonen"
|
||||
msgid "Remove game"
|
||||
msgstr "Game verwijderen"
|
||||
|
||||
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:268
|
||||
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:235
|
||||
msgid "Behavior"
|
||||
msgstr "Gedrag"
|
||||
|
||||
@@ -193,7 +152,7 @@ msgstr "Cover-afbeelding start game"
|
||||
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:36 src/details_window.py:81
|
||||
#: data/gtk/preferences.blp:36 src/utils/create_details_window.py:101
|
||||
msgid "Images"
|
||||
msgstr "Afbeeldingen"
|
||||
|
||||
@@ -214,241 +173,343 @@ msgstr "Gevarenzone"
|
||||
msgid "Remove All Games"
|
||||
msgstr "Alle games verwijderen"
|
||||
|
||||
#: data/gtk/preferences.blp:85 data/gtk/window.blp:27 data/gtk/window.blp:442
|
||||
#: data/gtk/preferences.blp:69 data/gtk/window.blp:427
|
||||
msgid "Import"
|
||||
msgstr "Importeren"
|
||||
|
||||
#: data/gtk/preferences.blp:89
|
||||
#: data/gtk/preferences.blp:73
|
||||
msgid "Sources"
|
||||
msgstr "Bronnen"
|
||||
|
||||
#: data/gtk/preferences.blp:92
|
||||
#: data/gtk/preferences.blp:76
|
||||
msgid "Steam"
|
||||
msgstr "Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:96 data/gtk/preferences.blp:110
|
||||
#: data/gtk/preferences.blp:151 data/gtk/preferences.blp:192
|
||||
#: data/gtk/preferences.blp:206 data/gtk/preferences.blp:220
|
||||
#: data/gtk/preferences.blp:234
|
||||
msgid "Install Location"
|
||||
msgstr "Installatielocatie"
|
||||
#: data/gtk/preferences.blp:80
|
||||
msgid "Steam Install Location"
|
||||
msgstr "Installatielocatie van Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:106
|
||||
#: data/gtk/preferences.blp:81 data/gtk/preferences.blp:119
|
||||
#: data/gtk/preferences.blp:153 data/gtk/preferences.blp:195
|
||||
#: data/gtk/preferences.blp:210
|
||||
msgid "Directory to use when importing games"
|
||||
msgstr "Map om te gebruiken bij het importeren van games"
|
||||
|
||||
#: data/gtk/preferences.blp:89 src/utils/importer.py:143
|
||||
msgid "Extra Steam Libraries"
|
||||
msgstr "Extra Steam-bibliotheken"
|
||||
|
||||
#: data/gtk/preferences.blp:90
|
||||
msgid "Select other directories where you have Steam games installed"
|
||||
msgstr "Andere mappen waar u Steam-games heeft geïnstalleerd"
|
||||
|
||||
#: data/gtk/preferences.blp:96
|
||||
msgid "Clear"
|
||||
msgstr "Wissen"
|
||||
|
||||
#: data/gtk/preferences.blp:114
|
||||
msgid "Lutris"
|
||||
msgstr "Lutris"
|
||||
|
||||
#: data/gtk/preferences.blp:119
|
||||
msgid "Cache Location"
|
||||
msgstr "Cache-locatie"
|
||||
#: data/gtk/preferences.blp:118
|
||||
msgid "Lutris Install Location"
|
||||
msgstr "Installatielocatie van Lutris"
|
||||
|
||||
#: data/gtk/preferences.blp:128
|
||||
msgid "Lutris Cache Location"
|
||||
msgstr "Cache-locatie van Lutris"
|
||||
|
||||
#: data/gtk/preferences.blp:129
|
||||
msgid "Directory to use when importing game covers"
|
||||
msgstr "Map om te gebruiken bij het importeren van game-covers"
|
||||
|
||||
#: data/gtk/preferences.blp:138
|
||||
msgid "Import Steam Games"
|
||||
msgstr "Steam-games importeren"
|
||||
|
||||
#: data/gtk/preferences.blp:137
|
||||
msgid "Import Flatpak Games"
|
||||
msgstr "Flatpak-games importeren"
|
||||
|
||||
#: data/gtk/preferences.blp:147
|
||||
#: data/gtk/preferences.blp:148
|
||||
msgid "Heroic"
|
||||
msgstr "Heroic"
|
||||
|
||||
#: data/gtk/preferences.blp:160
|
||||
#: data/gtk/preferences.blp:152
|
||||
msgid "Heroic Install Location"
|
||||
msgstr "Installatielocatie van Heroic"
|
||||
|
||||
#: data/gtk/preferences.blp:162
|
||||
msgid "Import Epic Games"
|
||||
msgstr "Epic-games importeren"
|
||||
|
||||
#: data/gtk/preferences.blp:169
|
||||
#: data/gtk/preferences.blp:171
|
||||
msgid "Import GOG Games"
|
||||
msgstr "GOG-games importeren"
|
||||
|
||||
#: data/gtk/preferences.blp:178
|
||||
#: data/gtk/preferences.blp:180
|
||||
msgid "Import Sideloaded Games"
|
||||
msgstr "Gesideloade games importeren"
|
||||
|
||||
#: data/gtk/preferences.blp:188
|
||||
#: data/gtk/preferences.blp:190
|
||||
msgid "Bottles"
|
||||
msgstr "Bottles"
|
||||
|
||||
#: data/gtk/preferences.blp:202
|
||||
#: data/gtk/preferences.blp:194
|
||||
msgid "Bottles Install Location"
|
||||
msgstr "Installatielocatie van Bottles"
|
||||
|
||||
#: data/gtk/preferences.blp:205
|
||||
msgid "itch"
|
||||
msgstr "itch"
|
||||
|
||||
#: data/gtk/preferences.blp:216
|
||||
msgid "Legendary"
|
||||
msgstr "Legendary"
|
||||
#: data/gtk/preferences.blp:209
|
||||
msgid "itch Install Location"
|
||||
msgstr "Installatielocatie van itch"
|
||||
|
||||
#: data/gtk/preferences.blp:230
|
||||
msgid "Flatpak"
|
||||
msgstr "Flatpak"
|
||||
|
||||
#: data/gtk/preferences.blp:243
|
||||
msgid "Import Game Launchers"
|
||||
msgstr "Game-launchers importeren"
|
||||
|
||||
#: data/gtk/preferences.blp:256
|
||||
#: data/gtk/preferences.blp:223
|
||||
msgid "SteamGridDB"
|
||||
msgstr "SteamGridDB"
|
||||
|
||||
#: data/gtk/preferences.blp:260
|
||||
#: data/gtk/preferences.blp:227
|
||||
msgid "Authentication"
|
||||
msgstr "Authenticatie"
|
||||
|
||||
#: data/gtk/preferences.blp:263
|
||||
#: data/gtk/preferences.blp:230
|
||||
msgid "API Key"
|
||||
msgstr "API-sleutel"
|
||||
|
||||
#: data/gtk/preferences.blp:271
|
||||
#: data/gtk/preferences.blp:238
|
||||
msgid "Use SteamGridDB"
|
||||
msgstr "SteamGridDB gebruiken"
|
||||
|
||||
#: data/gtk/preferences.blp:272
|
||||
#: data/gtk/preferences.blp:239
|
||||
msgid "Download images when adding or importing games"
|
||||
msgstr "Afbeeldingen downloaden bij het toevoegen of importeren van games"
|
||||
|
||||
#: data/gtk/preferences.blp:281
|
||||
#: data/gtk/preferences.blp:248
|
||||
msgid "Prefer Over Official Images"
|
||||
msgstr "Voorkeur geven boven officiële afbeeldingen"
|
||||
|
||||
#: data/gtk/preferences.blp:290
|
||||
#: data/gtk/preferences.blp:257
|
||||
msgid "Prefer Animated Images"
|
||||
msgstr "Voorkeur geven aan geanimeerde afbeeldingen"
|
||||
|
||||
#: data/gtk/window.blp:6 data/gtk/window.blp:14
|
||||
#: data/gtk/window.blp:6 src/utils/importer.py:91
|
||||
msgid "No Games Found"
|
||||
msgstr "Geen games gevonden"
|
||||
|
||||
#: data/gtk/window.blp:7 data/gtk/window.blp:15
|
||||
#: data/gtk/window.blp:7
|
||||
msgid "Try a different search."
|
||||
msgstr "Probeer een andere zoekopdracht"
|
||||
|
||||
#: data/gtk/window.blp:21
|
||||
#: data/gtk/window.blp:14
|
||||
msgid "No Games"
|
||||
msgstr "Geen games"
|
||||
|
||||
#: data/gtk/window.blp:22
|
||||
#: data/gtk/window.blp:15
|
||||
msgid "Use the + button to add games."
|
||||
msgstr "Gebruik de plusknop om games toe te voegen"
|
||||
|
||||
#: data/gtk/window.blp:40
|
||||
#: data/gtk/window.blp:22
|
||||
msgid "No Hidden Games"
|
||||
msgstr "Geen verborgen games"
|
||||
|
||||
#: data/gtk/window.blp:41
|
||||
#: data/gtk/window.blp:23
|
||||
msgid "Games you hide will appear here."
|
||||
msgstr "Games die u verbergt zullen hier verschijnen"
|
||||
|
||||
#: data/gtk/window.blp:64 data/gtk/window.blp:304
|
||||
#: data/gtk/window.blp:44 data/gtk/window.blp:293
|
||||
msgid "Back"
|
||||
msgstr "Terug"
|
||||
|
||||
#: data/gtk/window.blp:121
|
||||
#: data/gtk/window.blp:100
|
||||
msgid "Game Title"
|
||||
msgstr "Game-titel"
|
||||
|
||||
#: data/gtk/window.blp:176
|
||||
#: data/gtk/window.blp:151 src/game.py:158
|
||||
msgid "Play"
|
||||
msgstr "Spelen"
|
||||
|
||||
#: data/gtk/window.blp:243 data/gtk/window.blp:435
|
||||
#: data/gtk/window.blp:235 data/gtk/window.blp:421
|
||||
msgid "Add Game"
|
||||
msgstr "Game toevoegen"
|
||||
|
||||
#: data/gtk/window.blp:250 data/gtk/window.blp:316
|
||||
#: data/gtk/window.blp:242 data/gtk/window.blp:305
|
||||
msgid "Main Menu"
|
||||
msgstr "Hoofdmenu"
|
||||
|
||||
#: data/gtk/window.blp:311
|
||||
#: data/gtk/window.blp:300
|
||||
msgid "Hidden Games"
|
||||
msgstr "Verborgen games"
|
||||
|
||||
#: data/gtk/window.blp:374
|
||||
#: data/gtk/window.blp:360
|
||||
msgid "Sort"
|
||||
msgstr "Sorteren"
|
||||
|
||||
#: data/gtk/window.blp:377
|
||||
#: data/gtk/window.blp:363
|
||||
msgid "A-Z"
|
||||
msgstr "A-Z"
|
||||
|
||||
#: data/gtk/window.blp:383
|
||||
#: data/gtk/window.blp:369
|
||||
msgid "Z-A"
|
||||
msgstr "Z-A"
|
||||
|
||||
#: data/gtk/window.blp:389
|
||||
#: data/gtk/window.blp:375
|
||||
msgid "Newest"
|
||||
msgstr "Nieuwste"
|
||||
|
||||
#: data/gtk/window.blp:395
|
||||
#: data/gtk/window.blp:381
|
||||
msgid "Oldest"
|
||||
msgstr "Oudste"
|
||||
|
||||
#: data/gtk/window.blp:401
|
||||
#: data/gtk/window.blp:387
|
||||
msgid "Last Played"
|
||||
msgstr "Laatst gespeeld"
|
||||
|
||||
#: data/gtk/window.blp:408
|
||||
#: data/gtk/window.blp:394
|
||||
msgid "Show Hidden"
|
||||
msgstr "Verborgen games tonen"
|
||||
|
||||
#: data/gtk/window.blp:421
|
||||
#: data/gtk/window.blp:407
|
||||
msgid "Keyboard Shortcuts"
|
||||
msgstr "Sneltoetsen"
|
||||
|
||||
#: data/gtk/window.blp:426
|
||||
#: data/gtk/window.blp:412
|
||||
msgid "About Cartridges"
|
||||
msgstr "Over Cartridges"
|
||||
|
||||
#. Translators: Replace this with your name for it to show up in the about window
|
||||
#: src/main.py:180
|
||||
#: src/main.py:137
|
||||
msgid "translator_credits"
|
||||
msgstr "Philip Goto https://flipflop97.github.io/"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:164
|
||||
msgid "{} launched"
|
||||
msgstr "{} gestart"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:182
|
||||
msgid "{} hidden"
|
||||
msgstr "{} verborgen"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:185
|
||||
msgid "{} unhidden"
|
||||
msgstr "{} hersteld"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:241
|
||||
msgid "{} removed"
|
||||
msgstr "{} verwijderd"
|
||||
|
||||
#: src/window.py:262
|
||||
msgid "Today"
|
||||
msgstr "Vandaag"
|
||||
|
||||
#: src/window.py:264
|
||||
msgid "Yesterday"
|
||||
msgstr "Gisteren"
|
||||
|
||||
#. The variable is the date when the game was added
|
||||
#: src/window.py:194
|
||||
#: src/window.py:310
|
||||
msgid "Added: {}"
|
||||
msgstr "Toegevoegd op {}"
|
||||
|
||||
#: src/window.py:197
|
||||
#: src/window.py:315
|
||||
msgid "Never"
|
||||
msgstr "Nooit"
|
||||
|
||||
#. The variable is the date when the game was last played
|
||||
#: src/window.py:201
|
||||
#: src/window.py:319
|
||||
msgid "Last played: {}"
|
||||
msgstr "Laatst gespeeld: {}"
|
||||
|
||||
#: src/details_window.py:72
|
||||
msgid "Apply"
|
||||
msgstr "Toepassen"
|
||||
#: src/game.py:156
|
||||
msgid "Details"
|
||||
msgstr "Details"
|
||||
|
||||
#: src/details_window.py:78
|
||||
#: src/preferences.py:54
|
||||
msgid "Installation Not Found"
|
||||
msgstr "Installatie niet gevonden"
|
||||
|
||||
#. The variable is the name of the game launcher
|
||||
#: src/preferences.py:56
|
||||
msgid "Select the {} configuration directory."
|
||||
msgstr "Selecteer de configuratiemap van {}"
|
||||
|
||||
#. The variable is the name of the game launcher
|
||||
#: src/preferences.py:59
|
||||
msgid "Select the {} data directory."
|
||||
msgstr "Selecteer de gegevensmap van {}"
|
||||
|
||||
#: src/preferences.py:61 src/preferences.py:240
|
||||
msgid "Set Location"
|
||||
msgstr "Locatie instellen"
|
||||
|
||||
#: src/preferences.py:132
|
||||
msgid "All games removed"
|
||||
msgstr "Alle games verwijderd"
|
||||
|
||||
#: src/preferences.py:237
|
||||
msgid "Cache Not Found"
|
||||
msgstr "Cache niet gevonden"
|
||||
|
||||
#: src/preferences.py:238
|
||||
msgid "Select the Lutris cache directory."
|
||||
msgstr "Selecteer de cache-map van Lutris"
|
||||
|
||||
#: src/preferences.py:344
|
||||
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."
|
||||
|
||||
#: src/utils/create_details_window.py:81
|
||||
msgid "Add New Game"
|
||||
msgstr "Nieuwe game toevoegen"
|
||||
|
||||
#: src/details_window.py:79
|
||||
#: src/utils/create_details_window.py:85
|
||||
msgid "Confirm"
|
||||
msgstr "Bevestigen"
|
||||
|
||||
#: src/utils/create_details_window.py:96
|
||||
msgid "Apply"
|
||||
msgstr "Toepassen"
|
||||
|
||||
#: src/utils/create_details_window.py:130
|
||||
msgid "The title of the game"
|
||||
msgstr "De titel van de game"
|
||||
|
||||
#: src/utils/create_details_window.py:135
|
||||
msgid "Developer"
|
||||
msgstr "Ontwikkelaar"
|
||||
|
||||
#: src/utils/create_details_window.py:136
|
||||
msgid "The developer or publisher (optional)"
|
||||
msgstr "De ontwikkelaar of uitgever (optioneel)"
|
||||
|
||||
#. Translate this string as you would translate "file"
|
||||
#: src/details_window.py:92
|
||||
#: src/utils/create_details_window.py:147
|
||||
msgid "file.txt"
|
||||
msgstr "bestand.txt"
|
||||
|
||||
#. As in software
|
||||
#: src/details_window.py:94
|
||||
#: src/utils/create_details_window.py:149
|
||||
msgid "program"
|
||||
msgstr "programma"
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:99 src/details_window.py:101
|
||||
#: src/utils/create_details_window.py:154
|
||||
#: src/utils/create_details_window.py:156
|
||||
msgid "C:\\path\\to\\{}"
|
||||
msgstr "C:\\pad\\naar\\{}"
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:105 src/details_window.py:107
|
||||
#: src/utils/create_details_window.py:160
|
||||
#: src/utils/create_details_window.py:162
|
||||
msgid "/path/to/{}"
|
||||
msgstr "/pad/naar/{}"
|
||||
|
||||
#: src/details_window.py:112
|
||||
#: src/utils/create_details_window.py:166
|
||||
msgid ""
|
||||
"To launch the executable \"{}\", use the command:\n"
|
||||
"\n"
|
||||
@@ -472,180 +533,85 @@ msgstr ""
|
||||
"Indien het pad spaties bevat, zorg er dan voor dat er dubbele "
|
||||
"aanhalingstekens omheen staan!"
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:153
|
||||
#: src/utils/create_details_window.py:189
|
||||
msgid "Executable"
|
||||
msgstr "Programmabestand"
|
||||
|
||||
#: src/utils/create_details_window.py:190
|
||||
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"
|
||||
|
||||
#: src/utils/create_details_window.py:202
|
||||
msgid "Cancel"
|
||||
msgstr "Annuleren"
|
||||
|
||||
#: src/utils/create_details_window.py:259
|
||||
#: src/utils/create_details_window.py:269
|
||||
#: src/utils/create_details_window.py:275
|
||||
msgid "Couldn't Add Game"
|
||||
msgstr "Kon game niet toevoegen"
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:181
|
||||
msgid "Game title cannot be empty."
|
||||
msgstr "Game-titel mag niet leeg zijn"
|
||||
|
||||
#: src/details_window.py:153 src/details_window.py:189
|
||||
msgid "Executable cannot be empty."
|
||||
msgstr "Programmabestand mag niet leeg zijn"
|
||||
|
||||
#: src/details_window.py:180 src/details_window.py:188
|
||||
#: src/utils/create_details_window.py:261
|
||||
#: src/utils/create_details_window.py:299
|
||||
#: src/utils/create_details_window.py:307
|
||||
msgid "Couldn't Apply Preferences"
|
||||
msgstr "Kon voorkeuren niet toepassen"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:138
|
||||
msgid "{} launched"
|
||||
msgstr "{} gestart"
|
||||
#: src/utils/create_details_window.py:269
|
||||
#: src/utils/create_details_window.py:300
|
||||
msgid "Game title cannot be empty."
|
||||
msgstr "Game-titel mag niet leeg zijn"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:152
|
||||
msgid "{} hidden"
|
||||
msgstr "{} verborgen"
|
||||
|
||||
#: src/game.py:152
|
||||
msgid "{} unhidden"
|
||||
msgstr "{} hersteld"
|
||||
|
||||
#: src/game.py:169
|
||||
msgid "{} removed"
|
||||
msgstr "{} verwijderd"
|
||||
|
||||
#: src/preferences.py:111
|
||||
msgid "All games removed"
|
||||
msgstr "Alle games verwijderd"
|
||||
|
||||
#: src/preferences.py:159
|
||||
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."
|
||||
|
||||
#: src/preferences.py:284
|
||||
msgid "Installation Not Found"
|
||||
msgstr "Installatie niet gevonden"
|
||||
|
||||
#: src/preferences.py:286
|
||||
msgid "Select a valid directory."
|
||||
msgstr "Selecteer een geldige map"
|
||||
|
||||
#: src/preferences.py:348
|
||||
msgid "Invalid Directory"
|
||||
msgstr "Ongeldige map"
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:352
|
||||
msgid "Select the {} cache directory."
|
||||
msgstr "Selecteer de cache-map van {}"
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:355
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} installation directory."
|
||||
msgid "Select the {} configuration directory."
|
||||
msgstr "Selecteer de installatiemap van {}"
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:358
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} cache directory."
|
||||
msgid "Select the {} data directory."
|
||||
msgstr "Selecteer de cache-map van {}"
|
||||
|
||||
#: src/preferences.py:364
|
||||
msgid "Set Location"
|
||||
msgstr "Locatie instellen"
|
||||
#: src/utils/create_details_window.py:275
|
||||
#: src/utils/create_details_window.py:308
|
||||
msgid "Executable cannot be empty."
|
||||
msgstr "Programmabestand mag niet leeg zijn"
|
||||
|
||||
#: src/utils/create_dialog.py:25
|
||||
msgid "Dismiss"
|
||||
msgstr "Sluiten"
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:47
|
||||
msgid "Couldn't Authenticate SteamGridDB"
|
||||
msgstr "Kan SteamGridDB niet authenticeren"
|
||||
#: src/utils/importer.py:42
|
||||
msgid "Importing Games…"
|
||||
msgstr "Games importeren…"
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:48
|
||||
msgid "Verify your API key in preferences"
|
||||
msgstr "Verifieer uw API-sleutel onder voorkeuren"
|
||||
#: src/utils/importer.py:77
|
||||
msgid "Importing Covers…"
|
||||
msgstr "Covers importeren…"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "The Steam directory cannot be found."
|
||||
#~ msgid "Directory not Valid"
|
||||
#~ msgstr "Steam-map kan niet worden gevonden"
|
||||
#: src/utils/importer.py:92
|
||||
msgid "No new games were found on your system."
|
||||
msgstr "Geen nieuwe games gevonden op uw systeem"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Confirm"
|
||||
#~ msgid "Configuration"
|
||||
#~ msgstr "Bevestigen"
|
||||
#: src/utils/importer.py:100
|
||||
msgid "Game Imported"
|
||||
msgstr "Game geïmporteerd"
|
||||
|
||||
#~ msgid "Steam Install Location"
|
||||
#~ msgstr "Installatielocatie van Steam"
|
||||
#: src/utils/importer.py:101
|
||||
msgid "Successfully imported 1 game."
|
||||
msgstr "1 game succesvol geïmporteerd"
|
||||
|
||||
#~ msgid "Lutris Install Location"
|
||||
#~ msgstr "Installatielocatie van Lutris"
|
||||
#: src/utils/importer.py:107
|
||||
msgid "Games Imported"
|
||||
msgstr "Games geïmporteerd"
|
||||
|
||||
#~ msgid "Heroic Install Location"
|
||||
#~ msgstr "Installatielocatie van Heroic"
|
||||
#. The variable is the number of games
|
||||
#: src/utils/importer.py:109
|
||||
msgid "Successfully imported {} games."
|
||||
msgstr "{} games succesvol geïmporteerd"
|
||||
|
||||
#~ msgid "Bottles Install Location"
|
||||
#~ msgstr "Installatielocatie van Bottles"
|
||||
#: src/utils/importer.py:120 src/utils/steamgriddb.py:113
|
||||
msgid "Couldn't Connect to SteamGridDB"
|
||||
msgstr "Kan geen verbinding maken met SteamGridDB"
|
||||
|
||||
#~ 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 "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"
|
||||
|
||||
#~ msgid "Extra Steam Libraries"
|
||||
#~ msgstr "Extra Steam-bibliotheken"
|
||||
|
||||
#~ msgid "Select other directories where you have Steam games installed"
|
||||
#~ msgstr "Andere mappen waar u Steam-games heeft geïnstalleerd"
|
||||
|
||||
#~ msgid "Clear"
|
||||
#~ msgstr "Wissen"
|
||||
|
||||
#~ msgid "Directory to use when importing game covers"
|
||||
#~ msgstr "Map om te gebruiken bij het importeren van game-covers"
|
||||
|
||||
#~ msgid "Details"
|
||||
#~ msgstr "Details"
|
||||
|
||||
#~ msgid "No new games were found on your system."
|
||||
#~ msgstr "Geen nieuwe games gevonden op uw systeem"
|
||||
|
||||
#~ msgid "Successfully imported 1 game."
|
||||
#~ msgstr "1 game succesvol geïmporteerd"
|
||||
|
||||
#~ msgid "Successfully imported {} games."
|
||||
#~ msgstr "{} games succesvol geïmporteerd"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Looks like you have multiple Steam libraries. Would you like to add them "
|
||||
#~ "in preferences?"
|
||||
#~ msgstr ""
|
||||
#~ "Het lijkt erop dat u meerdere Steam-bibliotheken heeft. Wilt u ze "
|
||||
#~ "toevoegen in de voorkeuren?"
|
||||
#: src/utils/importer.py:145
|
||||
msgid ""
|
||||
"Looks like you have multiple Steam libraries. Would you like to add them in "
|
||||
"preferences?"
|
||||
msgstr ""
|
||||
"Het lijkt erop dat u meerdere Steam-bibliotheken heeft. Wilt u ze toevoegen "
|
||||
"in de voorkeuren?"
|
||||
|
||||
#~ msgid "Launch your games"
|
||||
#~ msgstr "Start uw games op"
|
||||
@@ -720,6 +686,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"
|
||||
|
||||
|
||||
662
po/pl.po
@@ -1,662 +0,0 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR kramo
|
||||
# This file is distributed under the same license as the Cartridges package.
|
||||
# Artur Wróblewski <krypalkora1984@gmail.com>, 2023.
|
||||
# Kshyso <Kshysio@protonmail.com>, 2023.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cartridges\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-05 14:36+0200\n"
|
||||
"PO-Revision-Date: 2023-06-10 16:48+0000\n"
|
||||
"Last-Translator: Kshyso <Kshysio@protonmail.com>\n"
|
||||
"Language-Team: Polish <https://hosted.weblate.org/projects/cartridges/"
|
||||
"cartridges/pl/>\n"
|
||||
"Language: pl\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%10>=2 && n%10<=4 && (n%100<10 "
|
||||
"|| n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 4.18-dev\n"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:3
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:47
|
||||
#: src/main.py:162
|
||||
msgid "Cartridges"
|
||||
msgstr "Cartridges"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:4
|
||||
msgid "Game Launcher"
|
||||
msgstr "Launcher Gier"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:5
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:7
|
||||
msgid "Launch all your games"
|
||||
msgstr "Uruchom wszystkie swoje gry"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:11
|
||||
msgid "gaming;launcher;steam;lutris;heroic;bottles;itch;"
|
||||
msgstr ""
|
||||
|
||||
#: 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 ""
|
||||
"Cartridges to prosty launcher gier dla wszystkich twoich gier. Posiada "
|
||||
"wsparcie dla importu gier ze Steam, Lutris, Heroic i innych bez konieczności "
|
||||
"logowania. Możesz sortować i ukrywać gry lub pobierać okładki ze SteamGridDB."
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:30
|
||||
msgid "Library"
|
||||
msgstr "Biblioteka"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 src/details_window.py:67
|
||||
msgid "Edit Game Details"
|
||||
msgstr "Edytuj detale gry"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:38 data/gtk/window.blp:71
|
||||
msgid "Game Details"
|
||||
msgstr "Detale gry"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:42 data/gtk/window.blp:416
|
||||
#: src/details_window.py:239
|
||||
msgid "Preferences"
|
||||
msgstr "Ustawienia"
|
||||
|
||||
#: data/gtk/details-window.blp:25
|
||||
msgid "Cancel"
|
||||
msgstr "Anuluj"
|
||||
|
||||
#: data/gtk/details-window.blp:57
|
||||
msgid "New Cover"
|
||||
msgstr "Nowa Okładka"
|
||||
|
||||
#: data/gtk/details-window.blp:75
|
||||
msgid "Delete Cover"
|
||||
msgstr "Usuń Okładkę"
|
||||
|
||||
#: data/gtk/details-window.blp:101 data/gtk/details-window.blp:106
|
||||
#: data/gtk/game.blp:80
|
||||
msgid "Title"
|
||||
msgstr "Tytuł"
|
||||
|
||||
#: data/gtk/details-window.blp:102
|
||||
msgid "The title of the game"
|
||||
msgstr "Tytuł gry"
|
||||
|
||||
#: data/gtk/details-window.blp:112 data/gtk/details-window.blp:117
|
||||
msgid "Developer"
|
||||
msgstr "Deweloper"
|
||||
|
||||
#: data/gtk/details-window.blp:113
|
||||
msgid "The developer or publisher (optional)"
|
||||
msgstr "Twórca lub wydawca (opcjonalnie)"
|
||||
|
||||
#: data/gtk/details-window.blp:123 data/gtk/details-window.blp:155
|
||||
msgid "Executable"
|
||||
msgstr "Wykonywalne"
|
||||
|
||||
#: data/gtk/details-window.blp:124
|
||||
msgid "File to open or command to run when launching the game"
|
||||
msgstr ""
|
||||
"Plik do otwarcia lub polecenie do uruchomienia podczas uruchamiania gry"
|
||||
|
||||
#: data/gtk/details-window.blp:130
|
||||
msgid "More Info"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/game.blp:102 data/gtk/game.blp:121 data/gtk/window.blp:195
|
||||
msgid "Edit"
|
||||
msgstr "Edytuj"
|
||||
|
||||
#: data/gtk/game.blp:107 src/window.py:171
|
||||
msgid "Hide"
|
||||
msgstr "Ukryj"
|
||||
|
||||
#: data/gtk/game.blp:112 data/gtk/game.blp:131 data/gtk/preferences.blp:56
|
||||
#: data/gtk/window.blp:209
|
||||
msgid "Remove"
|
||||
msgstr "Usuń"
|
||||
|
||||
#: data/gtk/game.blp:126 src/window.py:173
|
||||
msgid "Unhide"
|
||||
msgstr "Odkryj"
|
||||
|
||||
#: data/gtk/help-overlay.blp:11 data/gtk/preferences.blp:9
|
||||
msgid "General"
|
||||
msgstr "Ogólne"
|
||||
|
||||
#: data/gtk/help-overlay.blp:14
|
||||
msgid "Quit"
|
||||
msgstr "Wyjdź"
|
||||
|
||||
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:217 data/gtk/window.blp:257
|
||||
#: data/gtk/window.blp:323
|
||||
msgid "Search"
|
||||
msgstr "Szukaj"
|
||||
|
||||
#: data/gtk/help-overlay.blp:24
|
||||
msgid "Show preferences"
|
||||
msgstr "Pokaż preferencje"
|
||||
|
||||
#: data/gtk/help-overlay.blp:29
|
||||
msgid "Shortcuts"
|
||||
msgstr "Skróty"
|
||||
|
||||
#: data/gtk/help-overlay.blp:34 src/game.py:102 src/preferences.py:112
|
||||
msgid "Undo"
|
||||
msgstr "Cofnij"
|
||||
|
||||
#: data/gtk/help-overlay.blp:39
|
||||
msgid "Open menu"
|
||||
msgstr "Otwórz menu"
|
||||
|
||||
#: data/gtk/help-overlay.blp:45
|
||||
msgid "Games"
|
||||
msgstr "Gry"
|
||||
|
||||
#: data/gtk/help-overlay.blp:48
|
||||
msgid "Add new game"
|
||||
msgstr "Dodaj nową grę"
|
||||
|
||||
#: data/gtk/help-overlay.blp:53
|
||||
msgid "Import games"
|
||||
msgstr "Importuj gry"
|
||||
|
||||
#: data/gtk/help-overlay.blp:58
|
||||
msgid "Show hidden games"
|
||||
msgstr "Pokaż ukryte gry"
|
||||
|
||||
#: data/gtk/help-overlay.blp:63
|
||||
msgid "Remove game"
|
||||
msgstr "Usuń grę"
|
||||
|
||||
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:268
|
||||
msgid "Behavior"
|
||||
msgstr "Zachowanie"
|
||||
|
||||
#: data/gtk/preferences.blp:16
|
||||
msgid "Exit After Launching Games"
|
||||
msgstr "Wyjdź po uruchomieniu gry"
|
||||
|
||||
#: data/gtk/preferences.blp:25
|
||||
msgid "Cover Image Launches Game"
|
||||
msgstr "Obraz okładki startera gier"
|
||||
|
||||
#: data/gtk/preferences.blp:26
|
||||
msgid "Swaps the behavior of the cover image and the play button"
|
||||
msgstr "Zamienia zachowanie obrazu okładki i przycisku odtwarzania"
|
||||
|
||||
#: data/gtk/preferences.blp:36 src/details_window.py:81
|
||||
msgid "Images"
|
||||
msgstr "Obrazy"
|
||||
|
||||
#: data/gtk/preferences.blp:39
|
||||
msgid "High Quality Images"
|
||||
msgstr "Wysokiej jakości obrazy"
|
||||
|
||||
#: data/gtk/preferences.blp:40
|
||||
msgid "Save game covers losslessly at the cost of storage"
|
||||
msgstr "Zapisywanie okładek gier bezstratnie kosztem pamięci masowej"
|
||||
|
||||
#: data/gtk/preferences.blp:50
|
||||
msgid "Danger Zone"
|
||||
msgstr "Strefa zagrożenia"
|
||||
|
||||
#: data/gtk/preferences.blp:53
|
||||
msgid "Remove All Games"
|
||||
msgstr "Usuń wszystkie gry"
|
||||
|
||||
#: data/gtk/preferences.blp:85 data/gtk/window.blp:27 data/gtk/window.blp:442
|
||||
msgid "Import"
|
||||
msgstr "Importuj"
|
||||
|
||||
#: data/gtk/preferences.blp:89
|
||||
msgid "Sources"
|
||||
msgstr "Źródła"
|
||||
|
||||
#: data/gtk/preferences.blp:92
|
||||
msgid "Steam"
|
||||
msgstr "Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:96 data/gtk/preferences.blp:110
|
||||
#: data/gtk/preferences.blp:151 data/gtk/preferences.blp:192
|
||||
#: data/gtk/preferences.blp:206 data/gtk/preferences.blp:220
|
||||
#: data/gtk/preferences.blp:234
|
||||
#, fuzzy
|
||||
#| msgid "itch Install Location"
|
||||
msgid "Install Location"
|
||||
msgstr "Położenie instalacji itch"
|
||||
|
||||
#: data/gtk/preferences.blp:106
|
||||
msgid "Lutris"
|
||||
msgstr "Lutris"
|
||||
|
||||
#: data/gtk/preferences.blp:119
|
||||
#, fuzzy
|
||||
#| msgid "Lutris Cache Location"
|
||||
msgid "Cache Location"
|
||||
msgstr "Lokalizacja Lutris Cache"
|
||||
|
||||
#: data/gtk/preferences.blp:128
|
||||
msgid "Import Steam Games"
|
||||
msgstr "Importuj gry Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:137
|
||||
#, fuzzy
|
||||
#| msgid "Import Steam Games"
|
||||
msgid "Import Flatpak Games"
|
||||
msgstr "Importuj gry Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:147
|
||||
msgid "Heroic"
|
||||
msgstr "Heroic"
|
||||
|
||||
#: data/gtk/preferences.blp:160
|
||||
msgid "Import Epic Games"
|
||||
msgstr "Zaimportuj Epic Games"
|
||||
|
||||
#: data/gtk/preferences.blp:169
|
||||
msgid "Import GOG Games"
|
||||
msgstr "Importuj gry z GOG"
|
||||
|
||||
#: data/gtk/preferences.blp:178
|
||||
msgid "Import Sideloaded Games"
|
||||
msgstr "Importuj gry w wersji Sideloaded"
|
||||
|
||||
#: data/gtk/preferences.blp:188
|
||||
msgid "Bottles"
|
||||
msgstr "Butelki"
|
||||
|
||||
#: data/gtk/preferences.blp:202
|
||||
msgid "itch"
|
||||
msgstr "itch"
|
||||
|
||||
#: data/gtk/preferences.blp:216
|
||||
msgid "Legendary"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:230
|
||||
msgid "Flatpak"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:243
|
||||
#, fuzzy
|
||||
#| msgid "Game Launcher"
|
||||
msgid "Import Game Launchers"
|
||||
msgstr "Launcher Gier"
|
||||
|
||||
#: data/gtk/preferences.blp:256
|
||||
msgid "SteamGridDB"
|
||||
msgstr "SteamGridDB"
|
||||
|
||||
#: data/gtk/preferences.blp:260
|
||||
msgid "Authentication"
|
||||
msgstr "Uwierzytelnianie"
|
||||
|
||||
#: data/gtk/preferences.blp:263
|
||||
msgid "API Key"
|
||||
msgstr "Klucz API"
|
||||
|
||||
#: data/gtk/preferences.blp:271
|
||||
msgid "Use SteamGridDB"
|
||||
msgstr "Użyj SteamGridDB"
|
||||
|
||||
#: data/gtk/preferences.blp:272
|
||||
msgid "Download images when adding or importing games"
|
||||
msgstr "Pobieranie obrazów podczas dodawania lub importowania gier"
|
||||
|
||||
#: data/gtk/preferences.blp:281
|
||||
msgid "Prefer Over Official Images"
|
||||
msgstr "Preferuj ponad Oficjalne zdjęcia"
|
||||
|
||||
#: data/gtk/preferences.blp:290
|
||||
msgid "Prefer Animated Images"
|
||||
msgstr "Preferuj animowane obrazy"
|
||||
|
||||
#: data/gtk/window.blp:6 data/gtk/window.blp:14
|
||||
msgid "No Games Found"
|
||||
msgstr "Nie znaleziono żadnych gier"
|
||||
|
||||
#: data/gtk/window.blp:7 data/gtk/window.blp:15
|
||||
msgid "Try a different search."
|
||||
msgstr "Spróbuj innego wyszukiwania."
|
||||
|
||||
#: data/gtk/window.blp:21
|
||||
msgid "No Games"
|
||||
msgstr "Brak gier"
|
||||
|
||||
#: data/gtk/window.blp:22
|
||||
msgid "Use the + button to add games."
|
||||
msgstr "Użyj przycisku +, aby dodać gry."
|
||||
|
||||
#: data/gtk/window.blp:40
|
||||
msgid "No Hidden Games"
|
||||
msgstr "Brak ukrytych gier"
|
||||
|
||||
#: data/gtk/window.blp:41
|
||||
msgid "Games you hide will appear here."
|
||||
msgstr "Gry, które ukryjesz, pojawią się tutaj."
|
||||
|
||||
#: data/gtk/window.blp:64 data/gtk/window.blp:304
|
||||
msgid "Back"
|
||||
msgstr "Cofnij"
|
||||
|
||||
#: data/gtk/window.blp:121
|
||||
msgid "Game Title"
|
||||
msgstr "Tytuł gry"
|
||||
|
||||
#: data/gtk/window.blp:176
|
||||
msgid "Play"
|
||||
msgstr "Uruchom"
|
||||
|
||||
#: data/gtk/window.blp:243 data/gtk/window.blp:435
|
||||
msgid "Add Game"
|
||||
msgstr "Dodaj grę"
|
||||
|
||||
#: data/gtk/window.blp:250 data/gtk/window.blp:316
|
||||
msgid "Main Menu"
|
||||
msgstr "Menu główne"
|
||||
|
||||
#: data/gtk/window.blp:311
|
||||
msgid "Hidden Games"
|
||||
msgstr "Ukryte gry"
|
||||
|
||||
#: data/gtk/window.blp:374
|
||||
msgid "Sort"
|
||||
msgstr "Sortuj"
|
||||
|
||||
#: data/gtk/window.blp:377
|
||||
msgid "A-Z"
|
||||
msgstr "A-Z"
|
||||
|
||||
#: data/gtk/window.blp:383
|
||||
msgid "Z-A"
|
||||
msgstr "Z-A"
|
||||
|
||||
#: data/gtk/window.blp:389
|
||||
msgid "Newest"
|
||||
msgstr "Najnowsza"
|
||||
|
||||
#: data/gtk/window.blp:395
|
||||
msgid "Oldest"
|
||||
msgstr "Najstarszy"
|
||||
|
||||
#: data/gtk/window.blp:401
|
||||
msgid "Last Played"
|
||||
msgstr "Ostatnio odtwarzane"
|
||||
|
||||
#: data/gtk/window.blp:408
|
||||
msgid "Show Hidden"
|
||||
msgstr "Pokaż ukryte"
|
||||
|
||||
#: data/gtk/window.blp:421
|
||||
msgid "Keyboard Shortcuts"
|
||||
msgstr "Skróty klawiaturowe"
|
||||
|
||||
#: data/gtk/window.blp:426
|
||||
msgid "About Cartridges"
|
||||
msgstr "O Cartridges"
|
||||
|
||||
#. Translators: Replace this with your name for it to show up in the about window
|
||||
#: src/main.py:180
|
||||
msgid "translator_credits"
|
||||
msgstr "kredyty tłumacza"
|
||||
|
||||
#. The variable is the date when the game was added
|
||||
#: src/window.py:194
|
||||
msgid "Added: {}"
|
||||
msgstr "Dodano: {}"
|
||||
|
||||
#: src/window.py:197
|
||||
msgid "Never"
|
||||
msgstr "Nigdy"
|
||||
|
||||
#. The variable is the date when the game was last played
|
||||
#: src/window.py:201
|
||||
msgid "Last played: {}"
|
||||
msgstr "Ostatnio grane: {}"
|
||||
|
||||
#: src/details_window.py:72
|
||||
msgid "Apply"
|
||||
msgstr "Zastosuj"
|
||||
|
||||
#: src/details_window.py:78
|
||||
msgid "Add New Game"
|
||||
msgstr "Dodaj nową grę"
|
||||
|
||||
#: src/details_window.py:79
|
||||
msgid "Confirm"
|
||||
msgstr "Potwierdź"
|
||||
|
||||
#. Translate this string as you would translate "file"
|
||||
#: src/details_window.py:92
|
||||
msgid "file.txt"
|
||||
msgstr "plik.txt"
|
||||
|
||||
#. As in software
|
||||
#: src/details_window.py:94
|
||||
msgid "program"
|
||||
msgstr "program"
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:99 src/details_window.py:101
|
||||
msgid "C:\\path\\to\\{}"
|
||||
msgstr "C:\\scieżka\\do\\{}"
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:105 src/details_window.py:107
|
||||
msgid "/path/to/{}"
|
||||
msgstr "/ścieżka/do/{}"
|
||||
|
||||
#: src/details_window.py:112
|
||||
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 ""
|
||||
"Aby uruchomić plik wykonywalny \"{}\", należy użyć polecenia:\n"
|
||||
"\n"
|
||||
"<tt>\"{}\"</tt>\n"
|
||||
"\n"
|
||||
"Aby otworzyć plik \"{}\" za pomocą domyślnej aplikacji, użyj:\n"
|
||||
"\n"
|
||||
"<tt>{} \"{}\"</tt>\n"
|
||||
"\n"
|
||||
"Jeśli ścieżka zawiera spacje, pamiętaj, aby zawinąć ją w podwójne cudzysłowy!"
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:153
|
||||
msgid "Couldn't Add Game"
|
||||
msgstr "Nie można było dodać gry"
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:181
|
||||
msgid "Game title cannot be empty."
|
||||
msgstr "Tytuł gry nie może być pusty."
|
||||
|
||||
#: src/details_window.py:153 src/details_window.py:189
|
||||
msgid "Executable cannot be empty."
|
||||
msgstr "Plik wykonywalny nie może być pusty."
|
||||
|
||||
#: src/details_window.py:180 src/details_window.py:188
|
||||
msgid "Couldn't Apply Preferences"
|
||||
msgstr "Nie można zastosować preferencji"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:138
|
||||
msgid "{} launched"
|
||||
msgstr "{} uruchomiony"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:152
|
||||
msgid "{} hidden"
|
||||
msgstr "{} ukryte"
|
||||
|
||||
#: src/game.py:152
|
||||
msgid "{} unhidden"
|
||||
msgstr "{} nieukryty"
|
||||
|
||||
#: src/game.py:169
|
||||
msgid "{} removed"
|
||||
msgstr "{} usunięty"
|
||||
|
||||
#: src/preferences.py:111
|
||||
msgid "All games removed"
|
||||
msgstr "Wszystkie gry usunięte"
|
||||
|
||||
#: src/preferences.py:159
|
||||
msgid ""
|
||||
"An API key is required to use SteamGridDB. You can generate one {}here{}."
|
||||
msgstr ""
|
||||
"Do korzystania z SteamGridDB wymagany jest klucz API. Możesz go wygenerować "
|
||||
"{} tutaj{}."
|
||||
|
||||
#: src/preferences.py:284
|
||||
#, fuzzy
|
||||
#| msgid "Installation Not Found"
|
||||
msgid "Installation Not Found"
|
||||
msgstr "Nie znaleziono instalacji"
|
||||
|
||||
#: src/preferences.py:286
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} data directory."
|
||||
msgid "Select a valid directory."
|
||||
msgstr "Wybierz {} katalog danych."
|
||||
|
||||
#: src/preferences.py:348
|
||||
msgid "Invalid Directory"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:352
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} data directory."
|
||||
msgid "Select the {} cache directory."
|
||||
msgstr "Wybierz {} katalog danych."
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:355
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} configuration directory."
|
||||
msgid "Select the {} configuration directory."
|
||||
msgstr "Wybierz {} katalog konfiguracyjny."
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:358
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} data directory."
|
||||
msgid "Select the {} data directory."
|
||||
msgstr "Wybierz {} katalog danych."
|
||||
|
||||
#: src/preferences.py:364
|
||||
msgid "Set Location"
|
||||
msgstr "Ustaw lokacje"
|
||||
|
||||
#: src/utils/create_dialog.py:25
|
||||
msgid "Dismiss"
|
||||
msgstr "Odrzucić"
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:47
|
||||
#, fuzzy
|
||||
#| msgid "Couldn't Connect to SteamGridDB"
|
||||
msgid "Couldn't Authenticate SteamGridDB"
|
||||
msgstr "Nie można połączyć się z SteamGridDB"
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:48
|
||||
msgid "Verify your API key in preferences"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Cache Not Found"
|
||||
#~ msgid "Directory not Valid"
|
||||
#~ msgstr "Nie znaleziono pamięci podręcznej"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Confirm"
|
||||
#~ msgid "Configuration"
|
||||
#~ msgstr "Potwierdź"
|
||||
|
||||
#~ msgid "Steam Install Location"
|
||||
#~ msgstr "Lokalizacja instalacji Steam"
|
||||
|
||||
#~ msgid "Lutris Install Location"
|
||||
#~ msgstr "Lokalizacja instalacji Lutris"
|
||||
|
||||
#~ msgid "Heroic Install Location"
|
||||
#~ msgstr "Lokalizacja instalacji Heroic"
|
||||
|
||||
#~ msgid "Bottles Install Location"
|
||||
#~ msgstr "Butelki Miejsce montażu"
|
||||
|
||||
#~ msgid "Today"
|
||||
#~ msgstr "Dzisiaj"
|
||||
|
||||
#~ msgid "Yesterday"
|
||||
#~ msgstr "Wczoraj"
|
||||
|
||||
#~ msgid "Select the Lutris cache directory."
|
||||
#~ msgstr "Wybierz katalog pamięci podręcznej Lutris."
|
||||
|
||||
#~ msgid "Importing Games…"
|
||||
#~ msgstr "Importowanie gier…"
|
||||
|
||||
#~ msgid "Importing Covers…"
|
||||
#~ msgstr "Importowanie okładek…"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "No Games Found"
|
||||
#~ msgid "No new games found"
|
||||
#~ msgstr "Nie znaleziono żadnych gier"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Game Imported"
|
||||
#~ msgid "1 game imported"
|
||||
#~ msgstr "Gra Importowana"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Games Imported"
|
||||
#~ msgid "{} games imported"
|
||||
#~ msgstr "Gry Przywiezione"
|
||||
|
||||
#~ msgid "Directory to use when importing games"
|
||||
#~ msgstr "Katalog używany podczas importowania gier"
|
||||
|
||||
#~ msgid "Extra Steam Libraries"
|
||||
#~ msgstr "Dodatkowe biblioteki Steam"
|
||||
|
||||
#~ msgid "Select other directories where you have Steam games installed"
|
||||
#~ msgstr "Wybierz inne katalogi, w których masz zainstalowane gry Steam"
|
||||
|
||||
#~ msgid "Clear"
|
||||
#~ msgstr "Wyczyść"
|
||||
|
||||
#~ msgid "Directory to use when importing game covers"
|
||||
#~ msgstr "Katalog do użycia podczas importowania okładek gier"
|
||||
|
||||
#~ msgid "Details"
|
||||
#~ msgstr "Szczegóły"
|
||||
|
||||
#~ msgid "No new games were found on your system."
|
||||
#~ msgstr "W systemie nie znaleziono żadnych nowych gier."
|
||||
|
||||
#~ msgid "Successfully imported 1 game."
|
||||
#~ msgstr "Udało się zaimportować 1 grę."
|
||||
|
||||
#~ msgid "Successfully imported {} games."
|
||||
#~ msgstr "Udało się zaimportować {} gier."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Looks like you have multiple Steam libraries. Would you like to add them "
|
||||
#~ "in preferences?"
|
||||
#~ msgstr ""
|
||||
#~ "Wygląda na to, że masz wiele bibliotek Steam. Czy chciałbyś dodać je w "
|
||||
#~ "preferencjach?"
|
||||
606
po/pt.po
@@ -4,14 +4,13 @@
|
||||
# Pedro Sader Azevedo <pedro.saderazevedo@protonmail.com>, 2023.
|
||||
# kramo <contact@kramo.hu>, 2023.
|
||||
# Henrique Machado <henriquecamposrj@gmail.com>, 2023.
|
||||
# João Alves <joao.2003.couto@gmail.com>, 2023.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: cartridges\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-05 14:36+0200\n"
|
||||
"PO-Revision-Date: 2023-06-04 22:47+0000\n"
|
||||
"Last-Translator: João Alves <joao.2003.couto@gmail.com>\n"
|
||||
"POT-Creation-Date: 2023-04-11 23:33+0200\n"
|
||||
"PO-Revision-Date: 2023-04-14 12:29+0000\n"
|
||||
"Last-Translator: Henrique Machado <henriquecamposrj@gmail.com>\n"
|
||||
"Language-Team: Portuguese <https://hosted.weblate.org/projects/cartridges/"
|
||||
"cartridges/pt/>\n"
|
||||
"Language: pt\n"
|
||||
@@ -19,13 +18,13 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 4.18-dev\n"
|
||||
"X-Generator: Weblate 4.17-dev\n"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:3
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:47
|
||||
#: src/main.py:162
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:29
|
||||
#: src/main.py:119
|
||||
msgid "Cartridges"
|
||||
msgstr "Cartridges"
|
||||
msgstr "Cartuchos"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:4
|
||||
msgid "Game Launcher"
|
||||
@@ -36,10 +35,6 @@ msgstr "Iniciador de jogos"
|
||||
msgid "Launch all your games"
|
||||
msgstr "Inicie todos os seus jogos"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:11
|
||||
msgid "gaming;launcher;steam;lutris;heroic;bottles;itch;"
|
||||
msgstr "gaming;iniciador;steam;lutris;heroic;bottles;itch;"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:9
|
||||
msgid ""
|
||||
"Cartridges is a simple game launcher for all of your games. It has support "
|
||||
@@ -47,83 +42,48 @@ msgid ""
|
||||
"necessary. You can sort and hide games or download cover art from "
|
||||
"SteamGridDB."
|
||||
msgstr ""
|
||||
"Cartridges é um lançador de jogos simples para todos os seus jogos. Tem "
|
||||
"suporte para importar jogos do Steam, Lutris, Heroic e muito mais, sem "
|
||||
"necessidade de login. Você pode classificar e ocultar jogos ou baixar a capa "
|
||||
"do SteamGridDB."
|
||||
"Cartuchos é um iniciador de jogos simples. Ele tem suporte para importação "
|
||||
"de jogos da Steam, Lutris, Heroic, e etc. sem precisar fazer login. E pode "
|
||||
"organizar e esconder jogos ou baixar imagens das capas dos jogos a partir do "
|
||||
"SteamGridDB."
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:30
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:22
|
||||
msgid "Library"
|
||||
msgstr "Biblioteca"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 src/details_window.py:67
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:26
|
||||
#: src/utils/create_details_window.py:87
|
||||
msgid "Edit Game Details"
|
||||
msgstr "Editar detalhes do jogo"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:38 data/gtk/window.blp:71
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:30 data/gtk/window.blp:51
|
||||
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
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 data/gtk/window.blp:402
|
||||
#: src/utils/importer.py:94 src/utils/importer.py:123 src/utils/importer.py:148
|
||||
#: src/utils/steamgriddb.py:116
|
||||
msgid "Preferences"
|
||||
msgstr "Preferências"
|
||||
|
||||
#: data/gtk/details-window.blp:25
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#: data/gtk/details-window.blp:57
|
||||
msgid "New Cover"
|
||||
msgstr "Nova capa"
|
||||
|
||||
#: data/gtk/details-window.blp:75
|
||||
msgid "Delete Cover"
|
||||
msgstr "Apagar capa"
|
||||
|
||||
#: data/gtk/details-window.blp:101 data/gtk/details-window.blp:106
|
||||
#: data/gtk/game.blp:80
|
||||
#: data/gtk/game.blp:67 src/utils/create_details_window.py:129
|
||||
msgid "Title"
|
||||
msgstr "Título"
|
||||
|
||||
#: data/gtk/details-window.blp:102
|
||||
msgid "The title of the game"
|
||||
msgstr "O título do jogo"
|
||||
|
||||
#: 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-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-window.blp:130
|
||||
msgid "More Info"
|
||||
msgstr "Mais informação"
|
||||
|
||||
#: data/gtk/game.blp:102 data/gtk/game.blp:121 data/gtk/window.blp:195
|
||||
#: data/gtk/game.blp:89 data/gtk/game.blp:108 data/gtk/window.blp:170
|
||||
msgid "Edit"
|
||||
msgstr "Editar"
|
||||
|
||||
#: data/gtk/game.blp:107 src/window.py:171
|
||||
#: data/gtk/game.blp:94 src/window.py:286
|
||||
msgid "Hide"
|
||||
msgstr "Ocultar"
|
||||
|
||||
#: data/gtk/game.blp:112 data/gtk/game.blp:131 data/gtk/preferences.blp:56
|
||||
#: data/gtk/window.blp:209
|
||||
#: data/gtk/game.blp:99 data/gtk/game.blp:118 data/gtk/preferences.blp:56
|
||||
#: data/gtk/window.blp:186
|
||||
msgid "Remove"
|
||||
msgstr "Remover"
|
||||
|
||||
#: data/gtk/game.blp:126 src/window.py:173
|
||||
#: data/gtk/game.blp:113 src/window.py:283
|
||||
msgid "Unhide"
|
||||
msgstr "Exibir"
|
||||
|
||||
@@ -135,8 +95,8 @@ msgstr "Geral"
|
||||
msgid "Quit"
|
||||
msgstr "Sair"
|
||||
|
||||
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:217 data/gtk/window.blp:257
|
||||
#: data/gtk/window.blp:323
|
||||
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:205 data/gtk/window.blp:249
|
||||
#: data/gtk/window.blp:312
|
||||
msgid "Search"
|
||||
msgstr "Buscar"
|
||||
|
||||
@@ -148,7 +108,8 @@ msgstr "Mostrar preferências"
|
||||
msgid "Shortcuts"
|
||||
msgstr "Atalhos"
|
||||
|
||||
#: data/gtk/help-overlay.blp:34 src/game.py:102 src/preferences.py:112
|
||||
#: data/gtk/help-overlay.blp:34 src/main.py:186 src/main.py:242
|
||||
#: src/preferences.py:133
|
||||
msgid "Undo"
|
||||
msgstr "Desfazer"
|
||||
|
||||
@@ -174,25 +135,25 @@ msgstr "Exibir jogos ocultados"
|
||||
|
||||
#: data/gtk/help-overlay.blp:63
|
||||
msgid "Remove game"
|
||||
msgstr "Remover jogo"
|
||||
msgstr "Remove o jogo"
|
||||
|
||||
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:268
|
||||
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:235
|
||||
msgid "Behavior"
|
||||
msgstr "Comportamento"
|
||||
|
||||
#: data/gtk/preferences.blp:16
|
||||
msgid "Exit After Launching Games"
|
||||
msgstr "Fechar Cartridges ao iniciar um jogo"
|
||||
msgstr "Sair depois de iniciar os jogos"
|
||||
|
||||
#: data/gtk/preferences.blp:25
|
||||
msgid "Cover Image Launches Game"
|
||||
msgstr "Clicar na capa inicia o jogo"
|
||||
msgstr "Clicar na imagem da capa inicia o jogo"
|
||||
|
||||
#: 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"
|
||||
msgstr "Troca o comportamento da imagem da capa e do botão de jogar"
|
||||
|
||||
#: data/gtk/preferences.blp:36 src/details_window.py:81
|
||||
#: data/gtk/preferences.blp:36 src/utils/create_details_window.py:101
|
||||
msgid "Images"
|
||||
msgstr "Imagens"
|
||||
|
||||
@@ -206,255 +167,349 @@ msgstr "Salva imagens das capas sem perda, consumindo mais armazenamento"
|
||||
|
||||
#: data/gtk/preferences.blp:50
|
||||
msgid "Danger Zone"
|
||||
msgstr "Zona de perigo"
|
||||
msgstr "Atenção"
|
||||
|
||||
#: data/gtk/preferences.blp:53
|
||||
msgid "Remove All Games"
|
||||
msgstr "Remover todos os jogos"
|
||||
msgstr "Remove todos os jogos"
|
||||
|
||||
#: data/gtk/preferences.blp:85 data/gtk/window.blp:27 data/gtk/window.blp:442
|
||||
#: data/gtk/preferences.blp:69 data/gtk/window.blp:427
|
||||
msgid "Import"
|
||||
msgstr "Importar"
|
||||
|
||||
#: data/gtk/preferences.blp:89
|
||||
#: data/gtk/preferences.blp:73
|
||||
msgid "Sources"
|
||||
msgstr "Fontes"
|
||||
|
||||
#: data/gtk/preferences.blp:92
|
||||
#: data/gtk/preferences.blp:76
|
||||
msgid "Steam"
|
||||
msgstr "Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:96 data/gtk/preferences.blp:110
|
||||
#: data/gtk/preferences.blp:151 data/gtk/preferences.blp:192
|
||||
#: data/gtk/preferences.blp:206 data/gtk/preferences.blp:220
|
||||
#: data/gtk/preferences.blp:234
|
||||
#, fuzzy
|
||||
#| msgid "itch Install Location"
|
||||
msgid "Install Location"
|
||||
msgstr "Local de instalação do itch"
|
||||
#: data/gtk/preferences.blp:80
|
||||
msgid "Steam Install Location"
|
||||
msgstr "Local de instalação da Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:106
|
||||
#: data/gtk/preferences.blp:81 data/gtk/preferences.blp:119
|
||||
#: data/gtk/preferences.blp:153 data/gtk/preferences.blp:195
|
||||
#: data/gtk/preferences.blp:210
|
||||
msgid "Directory to use when importing games"
|
||||
msgstr "Diretório para usar ao importar jogos"
|
||||
|
||||
#: data/gtk/preferences.blp:89 src/utils/importer.py:143
|
||||
msgid "Extra Steam Libraries"
|
||||
msgstr "Bibliotecas adicionais da Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:90
|
||||
msgid "Select other directories where you have Steam games installed"
|
||||
msgstr "Selecione outros diretórios onde você tem jogos da Steam instalados"
|
||||
|
||||
#: data/gtk/preferences.blp:96
|
||||
msgid "Clear"
|
||||
msgstr "Limpar"
|
||||
|
||||
#: data/gtk/preferences.blp:114
|
||||
msgid "Lutris"
|
||||
msgstr "Lutris"
|
||||
|
||||
#: data/gtk/preferences.blp:119
|
||||
#, fuzzy
|
||||
#| msgid "Lutris Cache Location"
|
||||
msgid "Cache Location"
|
||||
msgstr "Local do cache do Lutris"
|
||||
#: data/gtk/preferences.blp:118
|
||||
msgid "Lutris Install Location"
|
||||
msgstr "Local de instalação do Lutris"
|
||||
|
||||
#: data/gtk/preferences.blp:128
|
||||
msgid "Lutris Cache Location"
|
||||
msgstr "Local do cache do Lutris"
|
||||
|
||||
#: data/gtk/preferences.blp:129
|
||||
msgid "Directory to use when importing game covers"
|
||||
msgstr "Diretório para usar ao importar imagens das capas dos jogos"
|
||||
|
||||
#: data/gtk/preferences.blp:138
|
||||
msgid "Import Steam Games"
|
||||
msgstr "Importar jogos da Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:137
|
||||
#, fuzzy
|
||||
#| msgid "Import Steam Games"
|
||||
msgid "Import Flatpak Games"
|
||||
msgstr "Importar jogos da Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:147
|
||||
#: data/gtk/preferences.blp:148
|
||||
msgid "Heroic"
|
||||
msgstr "Heroic"
|
||||
|
||||
#: data/gtk/preferences.blp:160
|
||||
#: data/gtk/preferences.blp:152
|
||||
msgid "Heroic Install Location"
|
||||
msgstr "Local de instalação do Heroic"
|
||||
|
||||
#: data/gtk/preferences.blp:162
|
||||
msgid "Import Epic Games"
|
||||
msgstr "Importar jogos da Epic Games"
|
||||
|
||||
#: data/gtk/preferences.blp:169
|
||||
#: data/gtk/preferences.blp:171
|
||||
msgid "Import GOG Games"
|
||||
msgstr "Importar jogos do GOG"
|
||||
|
||||
#: data/gtk/preferences.blp:178
|
||||
#: data/gtk/preferences.blp:180
|
||||
msgid "Import Sideloaded Games"
|
||||
msgstr "Importar jogos adicionados manualmente"
|
||||
|
||||
#: data/gtk/preferences.blp:188
|
||||
#: data/gtk/preferences.blp:190
|
||||
msgid "Bottles"
|
||||
msgstr "Bottles"
|
||||
|
||||
#: data/gtk/preferences.blp:202
|
||||
#: data/gtk/preferences.blp:194
|
||||
msgid "Bottles Install Location"
|
||||
msgstr "Local de instalação do Bottles"
|
||||
|
||||
#: data/gtk/preferences.blp:205
|
||||
msgid "itch"
|
||||
msgstr "itch"
|
||||
|
||||
#: data/gtk/preferences.blp:216
|
||||
msgid "Legendary"
|
||||
msgstr ""
|
||||
#: data/gtk/preferences.blp:209
|
||||
msgid "itch Install Location"
|
||||
msgstr "Local de instalação do itch"
|
||||
|
||||
#: data/gtk/preferences.blp:230
|
||||
msgid "Flatpak"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:243
|
||||
#, fuzzy
|
||||
#| msgid "Game Launcher"
|
||||
msgid "Import Game Launchers"
|
||||
msgstr "Iniciador de jogos"
|
||||
|
||||
#: data/gtk/preferences.blp:256
|
||||
#: data/gtk/preferences.blp:223
|
||||
msgid "SteamGridDB"
|
||||
msgstr "SteamGridDB"
|
||||
|
||||
#: data/gtk/preferences.blp:260
|
||||
#: data/gtk/preferences.blp:227
|
||||
msgid "Authentication"
|
||||
msgstr "Autenticação"
|
||||
|
||||
#: data/gtk/preferences.blp:263
|
||||
#: data/gtk/preferences.blp:230
|
||||
msgid "API Key"
|
||||
msgstr "Chave da API"
|
||||
|
||||
#: data/gtk/preferences.blp:271
|
||||
#: data/gtk/preferences.blp:238
|
||||
msgid "Use SteamGridDB"
|
||||
msgstr "Usar SteamGridDB"
|
||||
|
||||
#: data/gtk/preferences.blp:272
|
||||
#: data/gtk/preferences.blp:239
|
||||
msgid "Download images when adding or importing games"
|
||||
msgstr "Baixa imagens ao adicionar ou importar jogos"
|
||||
|
||||
#: data/gtk/preferences.blp:281
|
||||
#: data/gtk/preferences.blp:248
|
||||
msgid "Prefer Over Official Images"
|
||||
msgstr "Preferir mais que as imagens oficiais"
|
||||
|
||||
#: data/gtk/preferences.blp:290
|
||||
#: data/gtk/preferences.blp:257
|
||||
msgid "Prefer Animated Images"
|
||||
msgstr "Preferir imagens animadas"
|
||||
|
||||
#: data/gtk/window.blp:6 data/gtk/window.blp:14
|
||||
#: data/gtk/window.blp:6 src/utils/importer.py:91
|
||||
msgid "No Games Found"
|
||||
msgstr "Nenhum jogo encontrado"
|
||||
|
||||
#: data/gtk/window.blp:7 data/gtk/window.blp:15
|
||||
#: data/gtk/window.blp:7
|
||||
msgid "Try a different search."
|
||||
msgstr "Tente outra pesquisa."
|
||||
|
||||
#: data/gtk/window.blp:21
|
||||
#: data/gtk/window.blp:14
|
||||
msgid "No Games"
|
||||
msgstr "Sem jogos"
|
||||
|
||||
#: data/gtk/window.blp:22
|
||||
#: data/gtk/window.blp:15
|
||||
msgid "Use the + button to add games."
|
||||
msgstr "Use o botão + para adicionar jogos."
|
||||
|
||||
#: data/gtk/window.blp:40
|
||||
#: data/gtk/window.blp:22
|
||||
msgid "No Hidden Games"
|
||||
msgstr "Sem jogos ocultados"
|
||||
|
||||
#: data/gtk/window.blp:41
|
||||
#: data/gtk/window.blp:23
|
||||
msgid "Games you hide will appear here."
|
||||
msgstr "Jogos ocultados vão aparecer aqui."
|
||||
|
||||
#: data/gtk/window.blp:64 data/gtk/window.blp:304
|
||||
#: data/gtk/window.blp:44 data/gtk/window.blp:293
|
||||
msgid "Back"
|
||||
msgstr "Voltar"
|
||||
|
||||
#: data/gtk/window.blp:121
|
||||
#: data/gtk/window.blp:100
|
||||
msgid "Game Title"
|
||||
msgstr "Título do jogo"
|
||||
|
||||
#: data/gtk/window.blp:176
|
||||
#: data/gtk/window.blp:151 src/game.py:158
|
||||
msgid "Play"
|
||||
msgstr "Jogar"
|
||||
|
||||
#: data/gtk/window.blp:243 data/gtk/window.blp:435
|
||||
#: data/gtk/window.blp:235 data/gtk/window.blp:421
|
||||
msgid "Add Game"
|
||||
msgstr "Adicionar jogo"
|
||||
|
||||
#: data/gtk/window.blp:250 data/gtk/window.blp:316
|
||||
#: data/gtk/window.blp:242 data/gtk/window.blp:305
|
||||
msgid "Main Menu"
|
||||
msgstr "Menu principal"
|
||||
|
||||
#: data/gtk/window.blp:311
|
||||
#: data/gtk/window.blp:300
|
||||
msgid "Hidden Games"
|
||||
msgstr "Jogos ocultados"
|
||||
|
||||
#: data/gtk/window.blp:374
|
||||
#: data/gtk/window.blp:360
|
||||
msgid "Sort"
|
||||
msgstr "Ordenar"
|
||||
|
||||
#: data/gtk/window.blp:377
|
||||
#: data/gtk/window.blp:363
|
||||
msgid "A-Z"
|
||||
msgstr "A-Z"
|
||||
|
||||
#: data/gtk/window.blp:383
|
||||
#: data/gtk/window.blp:369
|
||||
msgid "Z-A"
|
||||
msgstr "Z-A"
|
||||
|
||||
#: data/gtk/window.blp:389
|
||||
#: data/gtk/window.blp:375
|
||||
msgid "Newest"
|
||||
msgstr "Mais novo"
|
||||
|
||||
#: data/gtk/window.blp:395
|
||||
#: data/gtk/window.blp:381
|
||||
msgid "Oldest"
|
||||
msgstr "Mais antigo"
|
||||
|
||||
#: data/gtk/window.blp:401
|
||||
#: data/gtk/window.blp:387
|
||||
msgid "Last Played"
|
||||
msgstr "Última vez jogado"
|
||||
|
||||
#: data/gtk/window.blp:408
|
||||
#: data/gtk/window.blp:394
|
||||
msgid "Show Hidden"
|
||||
msgstr "Mostrar ocultados"
|
||||
|
||||
#: data/gtk/window.blp:421
|
||||
#: data/gtk/window.blp:407
|
||||
msgid "Keyboard Shortcuts"
|
||||
msgstr "Atalhos de teclado"
|
||||
|
||||
#: data/gtk/window.blp:426
|
||||
#: data/gtk/window.blp:412
|
||||
msgid "About Cartridges"
|
||||
msgstr "Sobre o Cartuchos"
|
||||
|
||||
#. Translators: Replace this with your name for it to show up in the about window
|
||||
#: src/main.py:180
|
||||
#: src/main.py:137
|
||||
msgid "translator_credits"
|
||||
msgstr "Pedro Sader Azevedo"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:164
|
||||
msgid "{} launched"
|
||||
msgstr "{} iniciado"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:182
|
||||
msgid "{} hidden"
|
||||
msgstr "{} está oculto"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:185
|
||||
msgid "{} unhidden"
|
||||
msgstr "{} está exposto"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:241
|
||||
msgid "{} removed"
|
||||
msgstr "{} removido"
|
||||
|
||||
#: src/window.py:262
|
||||
msgid "Today"
|
||||
msgstr "Hoje"
|
||||
|
||||
#: src/window.py:264
|
||||
msgid "Yesterday"
|
||||
msgstr "Ontem"
|
||||
|
||||
#. The variable is the date when the game was added
|
||||
#: src/window.py:194
|
||||
#: src/window.py:310
|
||||
msgid "Added: {}"
|
||||
msgstr "Adicionado: {}"
|
||||
|
||||
#: src/window.py:197
|
||||
#: src/window.py:315
|
||||
msgid "Never"
|
||||
msgstr "Nunca"
|
||||
|
||||
#. The variable is the date when the game was last played
|
||||
#: src/window.py:201
|
||||
#: src/window.py:319
|
||||
msgid "Last played: {}"
|
||||
msgstr "Última vez jogado"
|
||||
|
||||
#: src/details_window.py:72
|
||||
msgid "Apply"
|
||||
msgstr "Aplicar"
|
||||
#: src/game.py:156
|
||||
msgid "Details"
|
||||
msgstr "Detalhes"
|
||||
|
||||
#: src/details_window.py:78
|
||||
#: src/preferences.py:54
|
||||
msgid "Installation Not Found"
|
||||
msgstr "Instalação não encontrada"
|
||||
|
||||
#. The variable is the name of the game launcher
|
||||
#: src/preferences.py:56
|
||||
msgid "Select the {} configuration directory."
|
||||
msgstr "Selecione o diretório de configuração de {}."
|
||||
|
||||
#. The variable is the name of the game launcher
|
||||
#: src/preferences.py:59
|
||||
msgid "Select the {} data directory."
|
||||
msgstr "Selecione o diretório de informações de {}."
|
||||
|
||||
#: src/preferences.py:61 src/preferences.py:240
|
||||
msgid "Set Location"
|
||||
msgstr "Definir local"
|
||||
|
||||
#: src/preferences.py:132
|
||||
msgid "All games removed"
|
||||
msgstr "Todos os jogos foram removidos"
|
||||
|
||||
#: src/preferences.py:237
|
||||
msgid "Cache Not Found"
|
||||
msgstr "Cache não encontrado"
|
||||
|
||||
#: src/preferences.py:238
|
||||
msgid "Select the Lutris cache directory."
|
||||
msgstr "Selecione o diretório de cache do Lutris."
|
||||
|
||||
#: src/preferences.py:344
|
||||
msgid ""
|
||||
"An API key is required to use SteamGridDB. You can generate one {}here{}."
|
||||
msgstr ""
|
||||
"Uma chave de API é necessária para usar a SteamGridDB. Você pode gerar uma "
|
||||
"chave {}aqui{}."
|
||||
|
||||
#: src/utils/create_details_window.py:81
|
||||
msgid "Add New Game"
|
||||
msgstr "Adicionar novo jogo"
|
||||
|
||||
#: src/details_window.py:79
|
||||
#: src/utils/create_details_window.py:85
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmar"
|
||||
|
||||
#: src/utils/create_details_window.py:96
|
||||
msgid "Apply"
|
||||
msgstr "Aplicar"
|
||||
|
||||
#: src/utils/create_details_window.py:130
|
||||
msgid "The title of the game"
|
||||
msgstr "O título do jogo"
|
||||
|
||||
#: src/utils/create_details_window.py:135
|
||||
msgid "Developer"
|
||||
msgstr "Desenvolvedor"
|
||||
|
||||
#: src/utils/create_details_window.py:136
|
||||
msgid "The developer or publisher (optional)"
|
||||
msgstr "O desenvolvedor ou publicador (opcional)"
|
||||
|
||||
#. Translate this string as you would translate "file"
|
||||
#: src/details_window.py:92
|
||||
#: src/utils/create_details_window.py:147
|
||||
msgid "file.txt"
|
||||
msgstr "arquivo.txt"
|
||||
|
||||
#. As in software
|
||||
#: src/details_window.py:94
|
||||
#: src/utils/create_details_window.py:149
|
||||
msgid "program"
|
||||
msgstr "programa"
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:99 src/details_window.py:101
|
||||
#: src/utils/create_details_window.py:154
|
||||
#: src/utils/create_details_window.py:156
|
||||
msgid "C:\\path\\to\\{}"
|
||||
msgstr "C:\\caminho\\para\\{}"
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:105 src/details_window.py:107
|
||||
#: src/utils/create_details_window.py:160
|
||||
#: src/utils/create_details_window.py:162
|
||||
msgid "/path/to/{}"
|
||||
msgstr "/caminho/para/{}"
|
||||
|
||||
#: src/details_window.py:112
|
||||
#: src/utils/create_details_window.py:166
|
||||
msgid ""
|
||||
"To launch the executable \"{}\", use the command:\n"
|
||||
"\n"
|
||||
@@ -476,188 +531,84 @@ msgstr ""
|
||||
"\n"
|
||||
"Se o caminho contiver espaços, certifique-se de colocá-lo entre aspas duplas!"
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:153
|
||||
#: src/utils/create_details_window.py:189
|
||||
msgid "Executable"
|
||||
msgstr "Executável"
|
||||
|
||||
#: src/utils/create_details_window.py:190
|
||||
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"
|
||||
|
||||
#: src/utils/create_details_window.py:202
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#: src/utils/create_details_window.py:259
|
||||
#: src/utils/create_details_window.py:269
|
||||
#: src/utils/create_details_window.py:275
|
||||
msgid "Couldn't Add Game"
|
||||
msgstr "Não foi possível adicionar o jogo"
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:181
|
||||
msgid "Game title cannot be empty."
|
||||
msgstr "O título do jogo não pode estar vazio."
|
||||
|
||||
#: src/details_window.py:153 src/details_window.py:189
|
||||
msgid "Executable cannot be empty."
|
||||
msgstr "O executável não pode estar vazio."
|
||||
|
||||
#: src/details_window.py:180 src/details_window.py:188
|
||||
#: src/utils/create_details_window.py:261
|
||||
#: src/utils/create_details_window.py:299
|
||||
#: src/utils/create_details_window.py:307
|
||||
msgid "Couldn't Apply Preferences"
|
||||
msgstr "Não foi possível aplicar as preferências"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:138
|
||||
msgid "{} launched"
|
||||
msgstr "{} iniciado"
|
||||
#: src/utils/create_details_window.py:269
|
||||
#: src/utils/create_details_window.py:300
|
||||
msgid "Game title cannot be empty."
|
||||
msgstr "O título do jogo não pode estar vazio."
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:152
|
||||
msgid "{} hidden"
|
||||
msgstr "{} está oculto"
|
||||
|
||||
#: src/game.py:152
|
||||
msgid "{} unhidden"
|
||||
msgstr "{} está exposto"
|
||||
|
||||
#: src/game.py:169
|
||||
msgid "{} removed"
|
||||
msgstr "{} removido"
|
||||
|
||||
#: src/preferences.py:111
|
||||
msgid "All games removed"
|
||||
msgstr "Todos os jogos foram removidos"
|
||||
|
||||
#: src/preferences.py:159
|
||||
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{}."
|
||||
|
||||
#: src/preferences.py:284
|
||||
#, fuzzy
|
||||
#| msgid "Installation Not Found"
|
||||
msgid "Installation Not Found"
|
||||
msgstr "Instalação não encontrada"
|
||||
|
||||
#: src/preferences.py:286
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} data directory."
|
||||
msgid "Select a valid directory."
|
||||
msgstr "Selecione o diretório de informações de {}."
|
||||
|
||||
#: src/preferences.py:348
|
||||
msgid "Invalid Directory"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:352
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} data directory."
|
||||
msgid "Select the {} cache directory."
|
||||
msgstr "Selecione o diretório de informações de {}."
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:355
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} configuration directory."
|
||||
msgid "Select the {} configuration directory."
|
||||
msgstr "Selecione o diretório de configuração de {}."
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:358
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} data directory."
|
||||
msgid "Select the {} data directory."
|
||||
msgstr "Selecione o diretório de informações de {}."
|
||||
|
||||
#: src/preferences.py:364
|
||||
msgid "Set Location"
|
||||
msgstr "Definir local"
|
||||
#: src/utils/create_details_window.py:275
|
||||
#: src/utils/create_details_window.py:308
|
||||
msgid "Executable cannot be empty."
|
||||
msgstr "O executável não pode estar vazio."
|
||||
|
||||
#: src/utils/create_dialog.py:25
|
||||
msgid "Dismiss"
|
||||
msgstr "Dispensar"
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:47
|
||||
#, fuzzy
|
||||
#| msgid "Couldn't Connect to SteamGridDB"
|
||||
msgid "Couldn't Authenticate SteamGridDB"
|
||||
#: src/utils/importer.py:42
|
||||
msgid "Importing Games…"
|
||||
msgstr "Importando jogos…"
|
||||
|
||||
#: src/utils/importer.py:77
|
||||
msgid "Importing Covers…"
|
||||
msgstr "Importando capas…"
|
||||
|
||||
#: src/utils/importer.py:92
|
||||
msgid "No new games were found on your system."
|
||||
msgstr "Nenhum jogo novo foi encontrado no seu sistema."
|
||||
|
||||
#: src/utils/importer.py:100
|
||||
msgid "Game Imported"
|
||||
msgstr "Jogo importado"
|
||||
|
||||
#: src/utils/importer.py:101
|
||||
msgid "Successfully imported 1 game."
|
||||
msgstr "1 jogo foi importado com sucesso."
|
||||
|
||||
#: src/utils/importer.py:107
|
||||
msgid "Games Imported"
|
||||
msgstr "Jogos importados"
|
||||
|
||||
#. The variable is the number of games
|
||||
#: src/utils/importer.py:109
|
||||
msgid "Successfully imported {} games."
|
||||
msgstr "{} jogos foram importados com sucesso."
|
||||
|
||||
#: src/utils/importer.py:120 src/utils/steamgriddb.py:113
|
||||
msgid "Couldn't Connect to SteamGridDB"
|
||||
msgstr "Não foi possível conectar à SteamGridDB"
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:48
|
||||
msgid "Verify your API key in preferences"
|
||||
#: src/utils/importer.py:145
|
||||
msgid ""
|
||||
"Looks like you have multiple Steam libraries. Would you like to add them in "
|
||||
"preferences?"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
|
||||
#~ msgid "Steam Install Location"
|
||||
#~ msgstr "Local de instalação da Steam"
|
||||
|
||||
#~ msgid "Lutris Install Location"
|
||||
#~ msgstr "Local de instalação do Lutris"
|
||||
|
||||
#~ msgid "Heroic Install Location"
|
||||
#~ msgstr "Local de instalação do Heroic"
|
||||
|
||||
#~ 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 "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"
|
||||
|
||||
#~ msgid "Extra Steam Libraries"
|
||||
#~ msgstr "Bibliotecas adicionais da Steam"
|
||||
|
||||
#~ msgid "Select other directories where you have Steam games installed"
|
||||
#~ msgstr "Selecione outros diretórios onde você tem jogos da Steam instalados"
|
||||
|
||||
#~ msgid "Clear"
|
||||
#~ msgstr "Limpar"
|
||||
|
||||
#~ msgid "Directory to use when importing game covers"
|
||||
#~ msgstr "Diretório para usar ao importar imagens das capas dos jogos"
|
||||
|
||||
#~ msgid "Details"
|
||||
#~ msgstr "Detalhes"
|
||||
|
||||
#~ msgid "No new games were found on your system."
|
||||
#~ msgstr "Nenhum jogo novo foi encontrado no seu sistema."
|
||||
|
||||
#~ msgid "Successfully imported 1 game."
|
||||
#~ msgstr "1 jogo foi importado com sucesso."
|
||||
|
||||
#~ msgid "Successfully imported {} games."
|
||||
#~ msgstr "{} jogos foram importados com sucesso."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Looks like you have multiple Steam libraries. Would you like to add them "
|
||||
#~ "in preferences?"
|
||||
#~ msgstr ""
|
||||
#~ "Parece que você tem múltiplas bibliotecas Steam. Gostaria de adicioná-las "
|
||||
#~ "nas preferências?"
|
||||
"Parece que você tem múltiplas bibliotecas Steam. Gostaria de adicioná-las "
|
||||
"nas preferências?"
|
||||
|
||||
#~ msgid "Launch your games"
|
||||
#~ msgstr "Inicie seus jogos"
|
||||
@@ -735,5 +686,8 @@ msgstr ""
|
||||
#~ 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"
|
||||
|
||||
655
po/pt_BR.po
@@ -1,655 +0,0 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR kramo
|
||||
# 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.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cartridges\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-05 14:36+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"
|
||||
"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 4.18-dev\n"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:3
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:47
|
||||
#: src/main.py:162
|
||||
msgid "Cartridges"
|
||||
msgstr "Cartuchos"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:4
|
||||
msgid "Game Launcher"
|
||||
msgstr "Iniciador de jogos"
|
||||
|
||||
#: 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/hu.kramo.Cartridges.desktop.in:11
|
||||
msgid "gaming;launcher;steam;lutris;heroic;bottles;itch;"
|
||||
msgstr "jogos;gaming;launcher;steam;lutris;heroic;bottles;itch;"
|
||||
|
||||
#: 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 ""
|
||||
"Cartuchos é um simples iniciador de jogos para todos os seus jogos. Ele tem "
|
||||
"suporte para importar jogos do Steam, Lutris, Heroic e outros, sem "
|
||||
"necessidade de login. Você pode ordenar e esconder jogos ou baixar arte de "
|
||||
"capa do SteamGridDB."
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:30
|
||||
msgid "Library"
|
||||
msgstr "Biblioteca"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 src/details_window.py:67
|
||||
msgid "Edit Game Details"
|
||||
msgstr "Editar detalhes do jogo"
|
||||
|
||||
#: 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-window.blp:25
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#: data/gtk/details-window.blp:57
|
||||
msgid "New Cover"
|
||||
msgstr "Nova capa"
|
||||
|
||||
#: data/gtk/details-window.blp:75
|
||||
msgid "Delete Cover"
|
||||
msgstr "Excluir capa"
|
||||
|
||||
#: 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-window.blp:102
|
||||
msgid "The title of the game"
|
||||
msgstr "O título do jogo"
|
||||
|
||||
#: 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-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-window.blp:130
|
||||
msgid "More Info"
|
||||
msgstr "Mais informações"
|
||||
|
||||
#: data/gtk/game.blp:102 data/gtk/game.blp:121 data/gtk/window.blp:195
|
||||
msgid "Edit"
|
||||
msgstr "Editar"
|
||||
|
||||
#: data/gtk/game.blp:107 src/window.py:171
|
||||
msgid "Hide"
|
||||
msgstr "Esconder"
|
||||
|
||||
#: 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:126 src/window.py:173
|
||||
msgid "Unhide"
|
||||
msgstr "Exibir"
|
||||
|
||||
#: data/gtk/help-overlay.blp:11 data/gtk/preferences.blp:9
|
||||
msgid "General"
|
||||
msgstr "Geral"
|
||||
|
||||
#: data/gtk/help-overlay.blp:14
|
||||
msgid "Quit"
|
||||
msgstr "Sair"
|
||||
|
||||
#: 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:24
|
||||
msgid "Show preferences"
|
||||
msgstr "Mostrar preferências"
|
||||
|
||||
#: data/gtk/help-overlay.blp:29
|
||||
msgid "Shortcuts"
|
||||
msgstr "Atalhos"
|
||||
|
||||
#: data/gtk/help-overlay.blp:34 src/game.py:102 src/preferences.py:112
|
||||
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:48
|
||||
msgid "Add new game"
|
||||
msgstr "Adicionar novo jogo"
|
||||
|
||||
#: 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 ocultos"
|
||||
|
||||
#: data/gtk/help-overlay.blp:63
|
||||
msgid "Remove game"
|
||||
msgstr "Remover jogo"
|
||||
|
||||
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:268
|
||||
msgid "Behavior"
|
||||
msgstr "Comportamento"
|
||||
|
||||
#: data/gtk/preferences.blp:16
|
||||
msgid "Exit After Launching Games"
|
||||
msgstr "Fechar ao iniciar jogos"
|
||||
|
||||
#: data/gtk/preferences.blp:25
|
||||
msgid "Cover Image Launches Game"
|
||||
msgstr "Imagem da capa inicia o jogo"
|
||||
|
||||
#: 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:36 src/details_window.py:81
|
||||
msgid "Images"
|
||||
msgstr "Imagens"
|
||||
|
||||
#: data/gtk/preferences.blp:39
|
||||
msgid "High Quality Images"
|
||||
msgstr "Imagens de alta qualidade"
|
||||
|
||||
#: 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:50
|
||||
msgid "Danger Zone"
|
||||
msgstr "Zona de Perigo"
|
||||
|
||||
#: data/gtk/preferences.blp:53
|
||||
msgid "Remove All Games"
|
||||
msgstr "Remover todos os jogos"
|
||||
|
||||
#: data/gtk/preferences.blp:85 data/gtk/window.blp:27 data/gtk/window.blp:442
|
||||
msgid "Import"
|
||||
msgstr "Importar"
|
||||
|
||||
#: data/gtk/preferences.blp:89
|
||||
msgid "Sources"
|
||||
msgstr "Fontes"
|
||||
|
||||
#: data/gtk/preferences.blp:92
|
||||
msgid "Steam"
|
||||
msgstr "Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:96 data/gtk/preferences.blp:110
|
||||
#: data/gtk/preferences.blp:151 data/gtk/preferences.blp:192
|
||||
#: data/gtk/preferences.blp:206 data/gtk/preferences.blp:220
|
||||
#: data/gtk/preferences.blp:234
|
||||
#, fuzzy
|
||||
#| msgid "itch Install Location"
|
||||
msgid "Install Location"
|
||||
msgstr "Local de instalação do itch"
|
||||
|
||||
#: data/gtk/preferences.blp:106
|
||||
msgid "Lutris"
|
||||
msgstr "Lutris"
|
||||
|
||||
#: 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:137
|
||||
#, fuzzy
|
||||
#| msgid "Import Steam Games"
|
||||
msgid "Import Flatpak Games"
|
||||
msgstr "Importar jogos do Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:147
|
||||
msgid "Heroic"
|
||||
msgstr "Heroic"
|
||||
|
||||
#: data/gtk/preferences.blp:160
|
||||
msgid "Import Epic Games"
|
||||
msgstr "Importar jogos da Epic Games"
|
||||
|
||||
#: data/gtk/preferences.blp:169
|
||||
msgid "Import GOG Games"
|
||||
msgstr "Importar jogos do GOG"
|
||||
|
||||
#: data/gtk/preferences.blp:178
|
||||
msgid "Import Sideloaded Games"
|
||||
msgstr "Importar jogos adicionados manualmente"
|
||||
|
||||
#: data/gtk/preferences.blp:188
|
||||
msgid "Bottles"
|
||||
msgstr "Garrafas"
|
||||
|
||||
#: data/gtk/preferences.blp:202
|
||||
msgid "itch"
|
||||
msgstr "itch"
|
||||
|
||||
#: data/gtk/preferences.blp:216
|
||||
msgid "Legendary"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:230
|
||||
msgid "Flatpak"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:243
|
||||
#, fuzzy
|
||||
#| msgid "Game Launcher"
|
||||
msgid "Import Game Launchers"
|
||||
msgstr "Iniciador de jogos"
|
||||
|
||||
#: data/gtk/preferences.blp:256
|
||||
msgid "SteamGridDB"
|
||||
msgstr "SteamGridDB"
|
||||
|
||||
#: data/gtk/preferences.blp:260
|
||||
msgid "Authentication"
|
||||
msgstr "Autenticação"
|
||||
|
||||
#: data/gtk/preferences.blp:263
|
||||
msgid "API Key"
|
||||
msgstr "Chave da API"
|
||||
|
||||
#: data/gtk/preferences.blp:271
|
||||
msgid "Use SteamGridDB"
|
||||
msgstr "Usar SteamGridDB"
|
||||
|
||||
#: data/gtk/preferences.blp:272
|
||||
msgid "Download images when adding or importing games"
|
||||
msgstr "Baixar imagens ao adicionar ou importar jogos"
|
||||
|
||||
#: data/gtk/preferences.blp:281
|
||||
msgid "Prefer Over Official Images"
|
||||
msgstr "Preferir mais que as imagens oficiais"
|
||||
|
||||
#: data/gtk/preferences.blp:290
|
||||
msgid "Prefer Animated Images"
|
||||
msgstr "Preferir imagens animadas"
|
||||
|
||||
#: 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."
|
||||
|
||||
#: 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."
|
||||
|
||||
#: 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."
|
||||
|
||||
#: data/gtk/window.blp:64 data/gtk/window.blp:304
|
||||
msgid "Back"
|
||||
msgstr "Voltar"
|
||||
|
||||
#: data/gtk/window.blp:121
|
||||
msgid "Game Title"
|
||||
msgstr "Título do jogo"
|
||||
|
||||
#: data/gtk/window.blp:176
|
||||
msgid "Play"
|
||||
msgstr "Jogar"
|
||||
|
||||
#: 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:377
|
||||
msgid "A-Z"
|
||||
msgstr "A-Z"
|
||||
|
||||
#: data/gtk/window.blp:383
|
||||
msgid "Z-A"
|
||||
msgstr "Z-A"
|
||||
|
||||
#: data/gtk/window.blp:389
|
||||
msgid "Newest"
|
||||
msgstr "Mais novo"
|
||||
|
||||
#: data/gtk/window.blp:395
|
||||
msgid "Oldest"
|
||||
msgstr "Mais antigo"
|
||||
|
||||
#: data/gtk/window.blp:401
|
||||
msgid "Last Played"
|
||||
msgstr "Última vez jogado"
|
||||
|
||||
#: data/gtk/window.blp:408
|
||||
msgid "Show Hidden"
|
||||
msgstr "Mostrar ocultados"
|
||||
|
||||
#: data/gtk/window.blp:421
|
||||
msgid "Keyboard Shortcuts"
|
||||
msgstr "Atalhos de teclado"
|
||||
|
||||
#: data/gtk/window.blp:426
|
||||
msgid "About Cartridges"
|
||||
msgstr "Sobre o Cartuchos"
|
||||
|
||||
#. Translators: Replace this with your name for it to show up in the about window
|
||||
#: src/main.py:180
|
||||
msgid "translator_credits"
|
||||
msgstr "Pedro Sader Azevedo, Vinícius \"Stalck\""
|
||||
|
||||
#. The variable is the date when the game was added
|
||||
#: src/window.py:194
|
||||
msgid "Added: {}"
|
||||
msgstr "Adicionado: {}"
|
||||
|
||||
#: src/window.py:197
|
||||
msgid "Never"
|
||||
msgstr "Nunca"
|
||||
|
||||
#. The variable is the date when the game was last played
|
||||
#: src/window.py:201
|
||||
msgid "Last played: {}"
|
||||
msgstr "Jogado pela última vez: {}"
|
||||
|
||||
#: src/details_window.py:72
|
||||
msgid "Apply"
|
||||
msgstr "Aplicar"
|
||||
|
||||
#: src/details_window.py:78
|
||||
msgid "Add New Game"
|
||||
msgstr "Adicionar novo jogo"
|
||||
|
||||
#: src/details_window.py:79
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmar"
|
||||
|
||||
#. Translate this string as you would translate "file"
|
||||
#: src/details_window.py:92
|
||||
msgid "file.txt"
|
||||
msgstr "arquivo.txt"
|
||||
|
||||
#. As in software
|
||||
#: src/details_window.py:94
|
||||
msgid "program"
|
||||
msgstr "programa"
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:99 src/details_window.py:101
|
||||
msgid "C:\\path\\to\\{}"
|
||||
msgstr "C:\\caminho\\para\\{}"
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:105 src/details_window.py:107
|
||||
msgid "/path/to/{}"
|
||||
msgstr "/caminho/para/{}"
|
||||
|
||||
#: src/details_window.py:112
|
||||
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 ""
|
||||
"Para iniciar o executável \"{}\", use o comando:\n"
|
||||
"\n"
|
||||
"<tt>\"{}\"</tt>\n"
|
||||
"\n"
|
||||
"Para abrir o arquivo \"{}\" com o aplicativo padrão, use:\n"
|
||||
"\n"
|
||||
"<tt>{} \"{}\"</tt>\n"
|
||||
"\n"
|
||||
"Se o caminho contiver espaços, certifique-se de colocá-lo entre aspas duplas!"
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:153
|
||||
msgid "Couldn't Add Game"
|
||||
msgstr "Não foi possível adicionar o jogo"
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:181
|
||||
msgid "Game title cannot be empty."
|
||||
msgstr "O título do jogo não pode estar vazio."
|
||||
|
||||
#: src/details_window.py:153 src/details_window.py:189
|
||||
msgid "Executable cannot be empty."
|
||||
msgstr "O executável não pode estar vazio."
|
||||
|
||||
#: 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
|
||||
#: src/game.py:138
|
||||
msgid "{} launched"
|
||||
msgstr "{} iniciado"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:152
|
||||
msgid "{} hidden"
|
||||
msgstr "{} ocultado"
|
||||
|
||||
#: src/game.py:152
|
||||
msgid "{} unhidden"
|
||||
msgstr "{} exibido"
|
||||
|
||||
#: src/game.py:169
|
||||
msgid "{} removed"
|
||||
msgstr "{} removido"
|
||||
|
||||
#: src/preferences.py:111
|
||||
msgid "All games removed"
|
||||
msgstr "Todos os jogos foram removidos"
|
||||
|
||||
#: src/preferences.py:159
|
||||
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{}."
|
||||
|
||||
#: src/preferences.py:284
|
||||
#, fuzzy
|
||||
#| msgid "Installation Not Found"
|
||||
msgid "Installation Not Found"
|
||||
msgstr "Instalação não encontrada"
|
||||
|
||||
#: src/preferences.py:286
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} data directory."
|
||||
msgid "Select a valid directory."
|
||||
msgstr "Selecione o diretório de dados do(a) {}."
|
||||
|
||||
#: src/preferences.py:348
|
||||
msgid "Invalid Directory"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:352
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} data directory."
|
||||
msgid "Select the {} cache directory."
|
||||
msgstr "Selecione o diretório de dados do(a) {}."
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:355
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} configuration directory."
|
||||
msgid "Select the {} configuration directory."
|
||||
msgstr "Selecione o diretório de configuração do(a) {}."
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:358
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} data directory."
|
||||
msgid "Select the {} data directory."
|
||||
msgstr "Selecione o diretório de dados do(a) {}."
|
||||
|
||||
#: src/preferences.py:364
|
||||
msgid "Set Location"
|
||||
msgstr "Definir local"
|
||||
|
||||
#: src/utils/create_dialog.py:25
|
||||
msgid "Dismiss"
|
||||
msgstr "Dispensar"
|
||||
|
||||
#: 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 conectar-se ao SteamGridDB"
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:48
|
||||
msgid "Verify your API key in preferences"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Cache Not Found"
|
||||
#~ msgid "Directory not Valid"
|
||||
#~ msgstr "Cache não encontrado"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Confirm"
|
||||
#~ msgid "Configuration"
|
||||
#~ msgstr "Confirmar"
|
||||
|
||||
#~ msgid "Steam Install Location"
|
||||
#~ msgstr "Local de instalação do Steam"
|
||||
|
||||
#~ msgid "Lutris Install Location"
|
||||
#~ msgstr "Local de instalação do Lutris"
|
||||
|
||||
#~ msgid "Heroic Install Location"
|
||||
#~ msgstr "Local de instalação do Heroic"
|
||||
|
||||
#~ msgid "Bottles Install Location"
|
||||
#~ msgstr "Local de instalação do Garrafas"
|
||||
|
||||
#~ msgid "Today"
|
||||
#~ msgstr "Hoje"
|
||||
|
||||
#~ msgid "Yesterday"
|
||||
#~ msgstr "Ontem"
|
||||
|
||||
#~ msgid "Select the Lutris cache directory."
|
||||
#~ msgstr "Selecione o diretório de cache do Lutris."
|
||||
|
||||
#~ 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"
|
||||
|
||||
#~ msgid "Extra Steam Libraries"
|
||||
#~ msgstr "Bibliotecas adicionais da Steam"
|
||||
|
||||
#~ msgid "Select other directories where you have Steam games installed"
|
||||
#~ msgstr "Selecione outros diretórios onde você tem jogos da Steam instalados"
|
||||
|
||||
#~ msgid "Clear"
|
||||
#~ msgstr "Limpar"
|
||||
|
||||
#~ msgid "Directory to use when importing game covers"
|
||||
#~ msgstr "Diretório para usar ao importar imagens das capas dos jogos"
|
||||
|
||||
#~ msgid "Details"
|
||||
#~ msgstr "Detalhes"
|
||||
|
||||
#~ msgid "No new games were found on your system."
|
||||
#~ msgstr "Nenhum jogo novo foi encontrado no seu sistema."
|
||||
|
||||
#~ msgid "Successfully imported 1 game."
|
||||
#~ msgstr "1 jogo foi importado com sucesso."
|
||||
|
||||
#~ msgid "Successfully imported {} games."
|
||||
#~ msgstr "{} jogos foram importados com sucesso."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Looks like you have multiple Steam libraries. Would you like to add them "
|
||||
#~ "in preferences?"
|
||||
#~ msgstr ""
|
||||
#~ "Parece que você tem múltiplas bibliotecas Steam. Gostaria de adicioná-las "
|
||||
#~ "nas preferências?"
|
||||
458
po/ro.po
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cartridges\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-05 14:36+0200\n"
|
||||
"POT-Creation-Date: 2023-04-11 23:33+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/"
|
||||
@@ -20,8 +20,8 @@ msgstr ""
|
||||
"X-Generator: Weblate 4.17-dev\n"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:3
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:47
|
||||
#: src/main.py:162
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:29
|
||||
#: src/main.py:119
|
||||
msgid "Cartridges"
|
||||
msgstr "Cartușe"
|
||||
|
||||
@@ -34,10 +34,6 @@ msgstr "Lansator de jocuri"
|
||||
msgid "Launch all your games"
|
||||
msgstr "Lansați toate jocurile dvs"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:11
|
||||
msgid "gaming;launcher;steam;lutris;heroic;bottles;itch;"
|
||||
msgstr ""
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:9
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
@@ -54,78 +50,43 @@ msgstr ""
|
||||
"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/hu.kramo.Cartridges.metainfo.xml.in:30
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:22
|
||||
msgid "Library"
|
||||
msgstr "Bibliotecă"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 src/details_window.py:67
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:26
|
||||
#: src/utils/create_details_window.py:87
|
||||
msgid "Edit Game Details"
|
||||
msgstr "Editați detaliile jocului"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:38 data/gtk/window.blp:71
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:30 data/gtk/window.blp:51
|
||||
msgid "Game Details"
|
||||
msgstr "Detalii joc"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:42 data/gtk/window.blp:416
|
||||
#: src/details_window.py:239
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 data/gtk/window.blp:402
|
||||
#: src/utils/importer.py:94 src/utils/importer.py:123 src/utils/importer.py:148
|
||||
#: src/utils/steamgriddb.py:116
|
||||
msgid "Preferences"
|
||||
msgstr "Preferințe"
|
||||
|
||||
#: data/gtk/details-window.blp:25
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/details-window.blp:57
|
||||
msgid "New Cover"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/details-window.blp:75
|
||||
msgid "Delete Cover"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/details-window.blp:101 data/gtk/details-window.blp:106
|
||||
#: data/gtk/game.blp:80
|
||||
#: data/gtk/game.blp:67 src/utils/create_details_window.py:129
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/details-window.blp:102
|
||||
msgid "The title of the game"
|
||||
msgstr ""
|
||||
|
||||
#: 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-window.blp:124
|
||||
msgid "File to open or command to run when launching the game"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/details-window.blp:130
|
||||
msgid "More Info"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/game.blp:102 data/gtk/game.blp:121 data/gtk/window.blp:195
|
||||
#: data/gtk/game.blp:89 data/gtk/game.blp:108 data/gtk/window.blp:170
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/game.blp:107 src/window.py:171
|
||||
#: data/gtk/game.blp:94 src/window.py:286
|
||||
msgid "Hide"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/game.blp:112 data/gtk/game.blp:131 data/gtk/preferences.blp:56
|
||||
#: data/gtk/window.blp:209
|
||||
#: data/gtk/game.blp:99 data/gtk/game.blp:118 data/gtk/preferences.blp:56
|
||||
#: data/gtk/window.blp:186
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/game.blp:126 src/window.py:173
|
||||
#: data/gtk/game.blp:113 src/window.py:283
|
||||
msgid "Unhide"
|
||||
msgstr ""
|
||||
|
||||
@@ -137,8 +98,8 @@ msgstr ""
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:217 data/gtk/window.blp:257
|
||||
#: data/gtk/window.blp:323
|
||||
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:205 data/gtk/window.blp:249
|
||||
#: data/gtk/window.blp:312
|
||||
msgid "Search"
|
||||
msgstr "Căutare"
|
||||
|
||||
@@ -150,7 +111,8 @@ msgstr ""
|
||||
msgid "Shortcuts"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/help-overlay.blp:34 src/game.py:102 src/preferences.py:112
|
||||
#: data/gtk/help-overlay.blp:34 src/main.py:186 src/main.py:242
|
||||
#: src/preferences.py:133
|
||||
msgid "Undo"
|
||||
msgstr ""
|
||||
|
||||
@@ -178,7 +140,7 @@ msgstr ""
|
||||
msgid "Remove game"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:268
|
||||
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:235
|
||||
msgid "Behavior"
|
||||
msgstr ""
|
||||
|
||||
@@ -194,7 +156,7 @@ msgstr ""
|
||||
msgid "Swaps the behavior of the cover image and the play button"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:36 src/details_window.py:81
|
||||
#: data/gtk/preferences.blp:36 src/utils/create_details_window.py:101
|
||||
msgid "Images"
|
||||
msgstr ""
|
||||
|
||||
@@ -214,243 +176,341 @@ msgstr ""
|
||||
msgid "Remove All Games"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:85 data/gtk/window.blp:27 data/gtk/window.blp:442
|
||||
#: data/gtk/preferences.blp:69 data/gtk/window.blp:427
|
||||
msgid "Import"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:89
|
||||
#: data/gtk/preferences.blp:73
|
||||
msgid "Sources"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:92
|
||||
#: data/gtk/preferences.blp:76
|
||||
msgid "Steam"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:96 data/gtk/preferences.blp:110
|
||||
#: data/gtk/preferences.blp:151 data/gtk/preferences.blp:192
|
||||
#: data/gtk/preferences.blp:206 data/gtk/preferences.blp:220
|
||||
#: data/gtk/preferences.blp:234
|
||||
msgid "Install Location"
|
||||
#: data/gtk/preferences.blp:80
|
||||
msgid "Steam Install Location"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:106
|
||||
#: data/gtk/preferences.blp:81 data/gtk/preferences.blp:119
|
||||
#: data/gtk/preferences.blp:153 data/gtk/preferences.blp:195
|
||||
#: data/gtk/preferences.blp:210
|
||||
msgid "Directory to use when importing games"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:89 src/utils/importer.py:143
|
||||
msgid "Extra Steam Libraries"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:90
|
||||
msgid "Select other directories where you have Steam games installed"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:96
|
||||
msgid "Clear"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:114
|
||||
msgid "Lutris"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:119
|
||||
msgid "Cache Location"
|
||||
#: data/gtk/preferences.blp:118
|
||||
msgid "Lutris Install Location"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:128
|
||||
msgid "Lutris Cache Location"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:129
|
||||
msgid "Directory to use when importing game covers"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:138
|
||||
msgid "Import Steam Games"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:137
|
||||
msgid "Import Flatpak Games"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:147
|
||||
#: data/gtk/preferences.blp:148
|
||||
msgid "Heroic"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:160
|
||||
#: data/gtk/preferences.blp:152
|
||||
msgid "Heroic Install Location"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:162
|
||||
msgid "Import Epic Games"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:169
|
||||
#: data/gtk/preferences.blp:171
|
||||
msgid "Import GOG Games"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:178
|
||||
#: data/gtk/preferences.blp:180
|
||||
msgid "Import Sideloaded Games"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:188
|
||||
#: data/gtk/preferences.blp:190
|
||||
msgid "Bottles"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:202
|
||||
#: data/gtk/preferences.blp:194
|
||||
msgid "Bottles Install Location"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:205
|
||||
msgid "itch"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:216
|
||||
msgid "Legendary"
|
||||
#: data/gtk/preferences.blp:209
|
||||
msgid "itch Install Location"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:230
|
||||
msgid "Flatpak"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:243
|
||||
#, fuzzy
|
||||
#| msgid "Game Launcher"
|
||||
msgid "Import Game Launchers"
|
||||
msgstr "Lansator de jocuri"
|
||||
|
||||
#: data/gtk/preferences.blp:256
|
||||
#: data/gtk/preferences.blp:223
|
||||
msgid "SteamGridDB"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:260
|
||||
#: data/gtk/preferences.blp:227
|
||||
msgid "Authentication"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:263
|
||||
#: data/gtk/preferences.blp:230
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:271
|
||||
#: data/gtk/preferences.blp:238
|
||||
msgid "Use SteamGridDB"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:272
|
||||
#: data/gtk/preferences.blp:239
|
||||
msgid "Download images when adding or importing games"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:281
|
||||
#: data/gtk/preferences.blp:248
|
||||
msgid "Prefer Over Official Images"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:290
|
||||
#: data/gtk/preferences.blp:257
|
||||
msgid "Prefer Animated Images"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:6 data/gtk/window.blp:14
|
||||
#: data/gtk/window.blp:6 src/utils/importer.py:91
|
||||
msgid "No Games Found"
|
||||
msgstr "Nu s-au găsit jocuri"
|
||||
|
||||
#: data/gtk/window.blp:7 data/gtk/window.blp:15
|
||||
#: data/gtk/window.blp:7
|
||||
msgid "Try a different search."
|
||||
msgstr "Încercați o altă căutare."
|
||||
|
||||
#: data/gtk/window.blp:21
|
||||
#: data/gtk/window.blp:14
|
||||
msgid "No Games"
|
||||
msgstr "Fără jocuri"
|
||||
|
||||
#: data/gtk/window.blp:22
|
||||
#: data/gtk/window.blp:15
|
||||
msgid "Use the + button to add games."
|
||||
msgstr "Folosiți butonul + pentru a adăuga jocuri."
|
||||
|
||||
#: data/gtk/window.blp:40
|
||||
#: data/gtk/window.blp:22
|
||||
msgid "No Hidden Games"
|
||||
msgstr "Fără jocuri ascunse"
|
||||
|
||||
#: data/gtk/window.blp:41
|
||||
#: data/gtk/window.blp:23
|
||||
msgid "Games you hide will appear here."
|
||||
msgstr "Jocurile pe care le ascundeți vor apărea aici."
|
||||
|
||||
#: data/gtk/window.blp:64 data/gtk/window.blp:304
|
||||
#: data/gtk/window.blp:44 data/gtk/window.blp:293
|
||||
msgid "Back"
|
||||
msgstr "Înapoi"
|
||||
|
||||
#: data/gtk/window.blp:121
|
||||
#: data/gtk/window.blp:100
|
||||
msgid "Game Title"
|
||||
msgstr "Titlul jocului"
|
||||
|
||||
#: data/gtk/window.blp:176
|
||||
#: data/gtk/window.blp:151 src/game.py:158
|
||||
msgid "Play"
|
||||
msgstr "Joacă"
|
||||
|
||||
#: data/gtk/window.blp:243 data/gtk/window.blp:435
|
||||
#: data/gtk/window.blp:235 data/gtk/window.blp:421
|
||||
msgid "Add Game"
|
||||
msgstr "Adăugați joc"
|
||||
|
||||
#: data/gtk/window.blp:250 data/gtk/window.blp:316
|
||||
#: data/gtk/window.blp:242 data/gtk/window.blp:305
|
||||
msgid "Main Menu"
|
||||
msgstr "Meniu principal"
|
||||
|
||||
#: data/gtk/window.blp:311
|
||||
#: data/gtk/window.blp:300
|
||||
msgid "Hidden Games"
|
||||
msgstr "Jocuri ascunse"
|
||||
|
||||
#: data/gtk/window.blp:374
|
||||
#: data/gtk/window.blp:360
|
||||
msgid "Sort"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:377
|
||||
#: data/gtk/window.blp:363
|
||||
msgid "A-Z"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:383
|
||||
#: data/gtk/window.blp:369
|
||||
msgid "Z-A"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:389
|
||||
#: data/gtk/window.blp:375
|
||||
msgid "Newest"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:395
|
||||
#: data/gtk/window.blp:381
|
||||
msgid "Oldest"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:401
|
||||
#: data/gtk/window.blp:387
|
||||
msgid "Last Played"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:408
|
||||
#: data/gtk/window.blp:394
|
||||
msgid "Show Hidden"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:421
|
||||
#: data/gtk/window.blp:407
|
||||
msgid "Keyboard Shortcuts"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/window.blp:426
|
||||
#: data/gtk/window.blp:412
|
||||
msgid "About Cartridges"
|
||||
msgstr ""
|
||||
|
||||
#. Translators: Replace this with your name for it to show up in the about window
|
||||
#: src/main.py:180
|
||||
#: src/main.py:137
|
||||
msgid "translator_credits"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:164
|
||||
msgid "{} launched"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:182
|
||||
msgid "{} hidden"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:185
|
||||
msgid "{} unhidden"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:241
|
||||
msgid "{} removed"
|
||||
msgstr ""
|
||||
|
||||
#: src/window.py:262
|
||||
msgid "Today"
|
||||
msgstr ""
|
||||
|
||||
#: src/window.py:264
|
||||
msgid "Yesterday"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the date when the game was added
|
||||
#: src/window.py:194
|
||||
#: src/window.py:310
|
||||
msgid "Added: {}"
|
||||
msgstr ""
|
||||
|
||||
#: src/window.py:197
|
||||
#: src/window.py:315
|
||||
msgid "Never"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the date when the game was last played
|
||||
#: src/window.py:201
|
||||
#: src/window.py:319
|
||||
msgid "Last played: {}"
|
||||
msgstr ""
|
||||
|
||||
#: src/details_window.py:72
|
||||
msgid "Apply"
|
||||
#: src/game.py:156
|
||||
msgid "Details"
|
||||
msgstr ""
|
||||
|
||||
#: src/details_window.py:78
|
||||
#: src/preferences.py:54
|
||||
msgid "Installation Not Found"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the name of the game launcher
|
||||
#: src/preferences.py:56
|
||||
msgid "Select the {} configuration directory."
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the name of the game launcher
|
||||
#: src/preferences.py:59
|
||||
msgid "Select the {} data directory."
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:61 src/preferences.py:240
|
||||
msgid "Set Location"
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:132
|
||||
msgid "All games removed"
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:237
|
||||
msgid "Cache Not Found"
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:238
|
||||
msgid "Select the Lutris cache directory."
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:344
|
||||
msgid ""
|
||||
"An API key is required to use SteamGridDB. You can generate one {}here{}."
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/create_details_window.py:81
|
||||
msgid "Add New Game"
|
||||
msgstr ""
|
||||
|
||||
#: src/details_window.py:79
|
||||
#: src/utils/create_details_window.py:85
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/create_details_window.py:96
|
||||
msgid "Apply"
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/create_details_window.py:130
|
||||
msgid "The title of the game"
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/create_details_window.py:135
|
||||
msgid "Developer"
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/create_details_window.py:136
|
||||
msgid "The developer or publisher (optional)"
|
||||
msgstr ""
|
||||
|
||||
#. Translate this string as you would translate "file"
|
||||
#: src/details_window.py:92
|
||||
#: src/utils/create_details_window.py:147
|
||||
msgid "file.txt"
|
||||
msgstr ""
|
||||
|
||||
#. As in software
|
||||
#: src/details_window.py:94
|
||||
#: src/utils/create_details_window.py:149
|
||||
msgid "program"
|
||||
msgstr ""
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:99 src/details_window.py:101
|
||||
#: src/utils/create_details_window.py:154
|
||||
#: src/utils/create_details_window.py:156
|
||||
msgid "C:\\path\\to\\{}"
|
||||
msgstr ""
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:105 src/details_window.py:107
|
||||
#: src/utils/create_details_window.py:160
|
||||
#: src/utils/create_details_window.py:162
|
||||
msgid "/path/to/{}"
|
||||
msgstr ""
|
||||
|
||||
#: src/details_window.py:112
|
||||
#: src/utils/create_details_window.py:166
|
||||
msgid ""
|
||||
"To launch the executable \"{}\", use the command:\n"
|
||||
"\n"
|
||||
@@ -463,96 +523,82 @@ msgid ""
|
||||
"If the path contains spaces, make sure to wrap it in double quotes!"
|
||||
msgstr ""
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:153
|
||||
#: src/utils/create_details_window.py:189
|
||||
msgid "Executable"
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/create_details_window.py:190
|
||||
msgid "File to open or command to run when launching the game"
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/create_details_window.py:202
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/create_details_window.py:259
|
||||
#: src/utils/create_details_window.py:269
|
||||
#: src/utils/create_details_window.py:275
|
||||
msgid "Couldn't Add Game"
|
||||
msgstr ""
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:181
|
||||
msgid "Game title cannot be empty."
|
||||
msgstr ""
|
||||
|
||||
#: src/details_window.py:153 src/details_window.py:189
|
||||
msgid "Executable cannot be empty."
|
||||
msgstr ""
|
||||
|
||||
#: src/details_window.py:180 src/details_window.py:188
|
||||
#: src/utils/create_details_window.py:261
|
||||
#: src/utils/create_details_window.py:299
|
||||
#: src/utils/create_details_window.py:307
|
||||
msgid "Couldn't Apply Preferences"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:138
|
||||
msgid "{} launched"
|
||||
#: src/utils/create_details_window.py:269
|
||||
#: src/utils/create_details_window.py:300
|
||||
msgid "Game title cannot be empty."
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:152
|
||||
msgid "{} hidden"
|
||||
msgstr ""
|
||||
|
||||
#: src/game.py:152
|
||||
msgid "{} unhidden"
|
||||
msgstr ""
|
||||
|
||||
#: src/game.py:169
|
||||
msgid "{} removed"
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:111
|
||||
msgid "All games removed"
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:159
|
||||
msgid ""
|
||||
"An API key is required to use SteamGridDB. You can generate one {}here{}."
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:284
|
||||
msgid "Installation Not Found"
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:286
|
||||
msgid "Select a valid directory."
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:348
|
||||
msgid "Invalid Directory"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:352
|
||||
msgid "Select the {} cache directory."
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:355
|
||||
msgid "Select the {} configuration directory."
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:358
|
||||
msgid "Select the {} data directory."
|
||||
msgstr ""
|
||||
|
||||
#: src/preferences.py:364
|
||||
msgid "Set Location"
|
||||
#: src/utils/create_details_window.py:275
|
||||
#: src/utils/create_details_window.py:308
|
||||
msgid "Executable cannot be empty."
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/create_dialog.py:25
|
||||
msgid "Dismiss"
|
||||
msgstr ""
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:47
|
||||
msgid "Couldn't Authenticate SteamGridDB"
|
||||
#: src/utils/importer.py:42
|
||||
msgid "Importing Games…"
|
||||
msgstr ""
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:48
|
||||
msgid "Verify your API key in preferences"
|
||||
#: src/utils/importer.py:77
|
||||
msgid "Importing Covers…"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "No Games Found"
|
||||
#~ msgid "No new games found"
|
||||
#~ msgstr "Nu s-au găsit jocuri"
|
||||
#: src/utils/importer.py:92
|
||||
msgid "No new games were found on your system."
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/importer.py:100
|
||||
msgid "Game Imported"
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/importer.py:101
|
||||
msgid "Successfully imported 1 game."
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/importer.py:107
|
||||
msgid "Games Imported"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the number of games
|
||||
#: src/utils/importer.py:109
|
||||
msgid "Successfully imported {} games."
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/importer.py:120 src/utils/steamgriddb.py:113
|
||||
msgid "Couldn't Connect to SteamGridDB"
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/importer.py:145
|
||||
msgid ""
|
||||
"Looks like you have multiple Steam libraries. Would you like to add them in "
|
||||
"preferences?"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Launch your games"
|
||||
#~ msgstr "Lansați-vă jocurile"
|
||||
|
||||
568
po/ru.po
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: cartridges\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-05 14:36+0200\n"
|
||||
"PO-Revision-Date: 2023-07-01 15:10+0000\n"
|
||||
"POT-Creation-Date: 2023-04-11 23:33+0200\n"
|
||||
"PO-Revision-Date: 2023-04-14 12:29+0000\n"
|
||||
"Last-Translator: Сергей <asvmail.as@gmail.com>\n"
|
||||
"Language-Team: Russian <https://hosted.weblate.org/projects/cartridges/"
|
||||
"cartridges/ru/>\n"
|
||||
@@ -16,13 +16,13 @@ msgstr ""
|
||||
"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.0-dev\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 4.17-dev\n"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:3
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:47
|
||||
#: src/main.py:162
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:29
|
||||
#: src/main.py:119
|
||||
msgid "Cartridges"
|
||||
msgstr "Картриджи"
|
||||
|
||||
@@ -35,10 +35,6 @@ msgstr "Средство запуска игр"
|
||||
msgid "Launch all your games"
|
||||
msgstr "Запустите все свои игры"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:11
|
||||
msgid "gaming;launcher;steam;lutris;heroic;bottles;itch;"
|
||||
msgstr "gaming;launcher;steam;lutris;heroic;bottles;itch;игры;стим;"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:9
|
||||
msgid ""
|
||||
"Cartridges is a simple game launcher for all of your games. It has support "
|
||||
@@ -51,78 +47,43 @@ msgstr ""
|
||||
"систему. Вы можете сортировать и скрывать игры или загружать обложки из "
|
||||
"SteamGridDB."
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:30
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:22
|
||||
msgid "Library"
|
||||
msgstr "Библиотека"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 src/details_window.py:67
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:26
|
||||
#: src/utils/create_details_window.py:87
|
||||
msgid "Edit Game Details"
|
||||
msgstr "Редактировать подробности об игре"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:38 data/gtk/window.blp:71
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:30 data/gtk/window.blp:51
|
||||
msgid "Game Details"
|
||||
msgstr "Подробности об игре"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:42 data/gtk/window.blp:416
|
||||
#: src/details_window.py:239
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 data/gtk/window.blp:402
|
||||
#: src/utils/importer.py:94 src/utils/importer.py:123 src/utils/importer.py:148
|
||||
#: src/utils/steamgriddb.py:116
|
||||
msgid "Preferences"
|
||||
msgstr "Параметры"
|
||||
|
||||
#: data/gtk/details-window.blp:25
|
||||
msgid "Cancel"
|
||||
msgstr "Отменить"
|
||||
|
||||
#: data/gtk/details-window.blp:57
|
||||
msgid "New Cover"
|
||||
msgstr "Новая обложка"
|
||||
|
||||
#: data/gtk/details-window.blp:75
|
||||
msgid "Delete Cover"
|
||||
msgstr "Удалить обложку"
|
||||
|
||||
#: data/gtk/details-window.blp:101 data/gtk/details-window.blp:106
|
||||
#: data/gtk/game.blp:80
|
||||
#: data/gtk/game.blp:67 src/utils/create_details_window.py:129
|
||||
msgid "Title"
|
||||
msgstr "Название"
|
||||
|
||||
#: data/gtk/details-window.blp:102
|
||||
msgid "The title of the game"
|
||||
msgstr "Название игры"
|
||||
|
||||
#: 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-window.blp:124
|
||||
msgid "File to open or command to run when launching the game"
|
||||
msgstr "Файл для открытия или команда для запуска игры"
|
||||
|
||||
#: data/gtk/details-window.blp:130
|
||||
msgid "More Info"
|
||||
msgstr "Дополнительная информация"
|
||||
|
||||
#: data/gtk/game.blp:102 data/gtk/game.blp:121 data/gtk/window.blp:195
|
||||
#: data/gtk/game.blp:89 data/gtk/game.blp:108 data/gtk/window.blp:170
|
||||
msgid "Edit"
|
||||
msgstr "Редактировать"
|
||||
|
||||
#: data/gtk/game.blp:107 src/window.py:171
|
||||
#: data/gtk/game.blp:94 src/window.py:286
|
||||
msgid "Hide"
|
||||
msgstr "Скрыть"
|
||||
|
||||
#: data/gtk/game.blp:112 data/gtk/game.blp:131 data/gtk/preferences.blp:56
|
||||
#: data/gtk/window.blp:209
|
||||
#: data/gtk/game.blp:99 data/gtk/game.blp:118 data/gtk/preferences.blp:56
|
||||
#: data/gtk/window.blp:186
|
||||
msgid "Remove"
|
||||
msgstr "Удалить"
|
||||
|
||||
#: data/gtk/game.blp:126 src/window.py:173
|
||||
#: data/gtk/game.blp:113 src/window.py:283
|
||||
msgid "Unhide"
|
||||
msgstr "Показать"
|
||||
|
||||
@@ -134,8 +95,8 @@ msgstr "Основное"
|
||||
msgid "Quit"
|
||||
msgstr "Выйти"
|
||||
|
||||
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:217 data/gtk/window.blp:257
|
||||
#: data/gtk/window.blp:323
|
||||
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:205 data/gtk/window.blp:249
|
||||
#: data/gtk/window.blp:312
|
||||
msgid "Search"
|
||||
msgstr "Поиск"
|
||||
|
||||
@@ -147,9 +108,10 @@ msgstr "Показать параметры"
|
||||
msgid "Shortcuts"
|
||||
msgstr "Комбинации клавиш"
|
||||
|
||||
#: data/gtk/help-overlay.blp:34 src/game.py:102 src/preferences.py:112
|
||||
#: data/gtk/help-overlay.blp:34 src/main.py:186 src/main.py:242
|
||||
#: src/preferences.py:133
|
||||
msgid "Undo"
|
||||
msgstr "Вернуть"
|
||||
msgstr "Отменить"
|
||||
|
||||
#: data/gtk/help-overlay.blp:39
|
||||
msgid "Open menu"
|
||||
@@ -175,7 +137,7 @@ msgstr "Показать скрытые игры"
|
||||
msgid "Remove game"
|
||||
msgstr "Удалить игру"
|
||||
|
||||
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:268
|
||||
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:235
|
||||
msgid "Behavior"
|
||||
msgstr "Поведение"
|
||||
|
||||
@@ -191,7 +153,7 @@ msgstr "Запуск игры используя изображение обло
|
||||
msgid "Swaps the behavior of the cover image and the play button"
|
||||
msgstr "Меняет местами поведение изображения обложки и кнопки запуска"
|
||||
|
||||
#: data/gtk/preferences.blp:36 src/details_window.py:81
|
||||
#: data/gtk/preferences.blp:36 src/utils/create_details_window.py:101
|
||||
msgid "Images"
|
||||
msgstr "Изображения"
|
||||
|
||||
@@ -211,241 +173,343 @@ msgstr "Небезопасная область"
|
||||
msgid "Remove All Games"
|
||||
msgstr "Удалить все игры"
|
||||
|
||||
#: data/gtk/preferences.blp:85 data/gtk/window.blp:27 data/gtk/window.blp:442
|
||||
#: data/gtk/preferences.blp:69 data/gtk/window.blp:427
|
||||
msgid "Import"
|
||||
msgstr "Импортировать"
|
||||
|
||||
#: data/gtk/preferences.blp:89
|
||||
#: data/gtk/preferences.blp:73
|
||||
msgid "Sources"
|
||||
msgstr "Источники"
|
||||
|
||||
#: data/gtk/preferences.blp:92
|
||||
#: data/gtk/preferences.blp:76
|
||||
msgid "Steam"
|
||||
msgstr "Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:96 data/gtk/preferences.blp:110
|
||||
#: data/gtk/preferences.blp:151 data/gtk/preferences.blp:192
|
||||
#: data/gtk/preferences.blp:206 data/gtk/preferences.blp:220
|
||||
#: data/gtk/preferences.blp:234
|
||||
msgid "Install Location"
|
||||
msgstr "Место установки"
|
||||
#: data/gtk/preferences.blp:80
|
||||
msgid "Steam Install Location"
|
||||
msgstr "Место установки Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:106
|
||||
#: data/gtk/preferences.blp:81 data/gtk/preferences.blp:119
|
||||
#: data/gtk/preferences.blp:153 data/gtk/preferences.blp:195
|
||||
#: data/gtk/preferences.blp:210
|
||||
msgid "Directory to use when importing games"
|
||||
msgstr "Каталог для импорта игр"
|
||||
|
||||
#: data/gtk/preferences.blp:89 src/utils/importer.py:143
|
||||
msgid "Extra Steam Libraries"
|
||||
msgstr "Дополнительные библиотеки Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:90
|
||||
msgid "Select other directories where you have Steam games installed"
|
||||
msgstr "Выберите другие каталоги, в которых у вас установлены игры из Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:96
|
||||
msgid "Clear"
|
||||
msgstr "Очистить"
|
||||
|
||||
#: data/gtk/preferences.blp:114
|
||||
msgid "Lutris"
|
||||
msgstr "Lutris"
|
||||
|
||||
#: data/gtk/preferences.blp:119
|
||||
msgid "Cache Location"
|
||||
msgstr "Расположение кэша"
|
||||
#: data/gtk/preferences.blp:118
|
||||
msgid "Lutris Install Location"
|
||||
msgstr "Место установки Lutris"
|
||||
|
||||
#: data/gtk/preferences.blp:128
|
||||
msgid "Lutris Cache Location"
|
||||
msgstr "Расположение кэша Lutris"
|
||||
|
||||
#: data/gtk/preferences.blp:129
|
||||
msgid "Directory to use when importing game covers"
|
||||
msgstr "Каталог для импорта обложек игр"
|
||||
|
||||
#: data/gtk/preferences.blp:138
|
||||
msgid "Import Steam Games"
|
||||
msgstr "Импорт игр Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:137
|
||||
msgid "Import Flatpak Games"
|
||||
msgstr "Импорт игр Flatpak"
|
||||
|
||||
#: data/gtk/preferences.blp:147
|
||||
#: data/gtk/preferences.blp:148
|
||||
msgid "Heroic"
|
||||
msgstr "Heroic"
|
||||
|
||||
#: data/gtk/preferences.blp:160
|
||||
#: data/gtk/preferences.blp:152
|
||||
msgid "Heroic Install Location"
|
||||
msgstr "Место установки Heroic"
|
||||
|
||||
#: data/gtk/preferences.blp:162
|
||||
msgid "Import Epic Games"
|
||||
msgstr "Импорт игр Epic"
|
||||
|
||||
#: data/gtk/preferences.blp:169
|
||||
#: data/gtk/preferences.blp:171
|
||||
msgid "Import GOG Games"
|
||||
msgstr "Импорт игр GOG"
|
||||
|
||||
#: data/gtk/preferences.blp:178
|
||||
#: data/gtk/preferences.blp:180
|
||||
msgid "Import Sideloaded Games"
|
||||
msgstr "Импорт сторонних игр"
|
||||
|
||||
#: data/gtk/preferences.blp:188
|
||||
#: data/gtk/preferences.blp:190
|
||||
msgid "Bottles"
|
||||
msgstr "Bottles"
|
||||
|
||||
#: data/gtk/preferences.blp:202
|
||||
#: data/gtk/preferences.blp:194
|
||||
msgid "Bottles Install Location"
|
||||
msgstr "Место установки Bottles"
|
||||
|
||||
#: data/gtk/preferences.blp:205
|
||||
msgid "itch"
|
||||
msgstr "itch"
|
||||
|
||||
#: data/gtk/preferences.blp:216
|
||||
msgid "Legendary"
|
||||
msgstr "Legendary"
|
||||
#: data/gtk/preferences.blp:209
|
||||
msgid "itch Install Location"
|
||||
msgstr "Место установки itch"
|
||||
|
||||
#: data/gtk/preferences.blp:230
|
||||
msgid "Flatpak"
|
||||
msgstr "Flatpak"
|
||||
|
||||
#: data/gtk/preferences.blp:243
|
||||
msgid "Import Game Launchers"
|
||||
msgstr "Импорт средств запуска игр"
|
||||
|
||||
#: data/gtk/preferences.blp:256
|
||||
#: data/gtk/preferences.blp:223
|
||||
msgid "SteamGridDB"
|
||||
msgstr "SteamGridDB"
|
||||
|
||||
#: data/gtk/preferences.blp:260
|
||||
#: data/gtk/preferences.blp:227
|
||||
msgid "Authentication"
|
||||
msgstr "Аутентификация"
|
||||
|
||||
#: data/gtk/preferences.blp:263
|
||||
#: data/gtk/preferences.blp:230
|
||||
msgid "API Key"
|
||||
msgstr "API-ключ"
|
||||
|
||||
#: data/gtk/preferences.blp:271
|
||||
#: data/gtk/preferences.blp:238
|
||||
msgid "Use SteamGridDB"
|
||||
msgstr "Использовать SteamGridDB"
|
||||
|
||||
#: data/gtk/preferences.blp:272
|
||||
#: data/gtk/preferences.blp:239
|
||||
msgid "Download images when adding or importing games"
|
||||
msgstr "Загрузка изображений при добавлении или импорте игр"
|
||||
|
||||
#: data/gtk/preferences.blp:281
|
||||
#: data/gtk/preferences.blp:248
|
||||
msgid "Prefer Over Official Images"
|
||||
msgstr "Отдавать предпочтение официальным изображениям"
|
||||
|
||||
#: data/gtk/preferences.blp:290
|
||||
#: data/gtk/preferences.blp:257
|
||||
msgid "Prefer Animated Images"
|
||||
msgstr "Отдавать предпочтение анимированным изображениям"
|
||||
|
||||
#: data/gtk/window.blp:6 data/gtk/window.blp:14
|
||||
#: data/gtk/window.blp:6 src/utils/importer.py:91
|
||||
msgid "No Games Found"
|
||||
msgstr "Игры не найдены"
|
||||
|
||||
#: data/gtk/window.blp:7 data/gtk/window.blp:15
|
||||
#: data/gtk/window.blp:7
|
||||
msgid "Try a different search."
|
||||
msgstr "Попробуйте другой поиск."
|
||||
|
||||
#: data/gtk/window.blp:21
|
||||
#: data/gtk/window.blp:14
|
||||
msgid "No Games"
|
||||
msgstr "Игр нет"
|
||||
|
||||
#: data/gtk/window.blp:22
|
||||
#: data/gtk/window.blp:15
|
||||
msgid "Use the + button to add games."
|
||||
msgstr "Используйте кнопку «+» для добавления игр."
|
||||
|
||||
#: data/gtk/window.blp:40
|
||||
#: data/gtk/window.blp:22
|
||||
msgid "No Hidden Games"
|
||||
msgstr "Нет скрытых игр"
|
||||
|
||||
#: data/gtk/window.blp:41
|
||||
#: data/gtk/window.blp:23
|
||||
msgid "Games you hide will appear here."
|
||||
msgstr "Здесь появятся скрытые игры."
|
||||
|
||||
#: data/gtk/window.blp:64 data/gtk/window.blp:304
|
||||
#: data/gtk/window.blp:44 data/gtk/window.blp:293
|
||||
msgid "Back"
|
||||
msgstr "Назад"
|
||||
|
||||
#: data/gtk/window.blp:121
|
||||
#: data/gtk/window.blp:100
|
||||
msgid "Game Title"
|
||||
msgstr "Название игры"
|
||||
|
||||
#: data/gtk/window.blp:176
|
||||
#: data/gtk/window.blp:151 src/game.py:158
|
||||
msgid "Play"
|
||||
msgstr "Играть"
|
||||
|
||||
#: data/gtk/window.blp:243 data/gtk/window.blp:435
|
||||
#: data/gtk/window.blp:235 data/gtk/window.blp:421
|
||||
msgid "Add Game"
|
||||
msgstr "Добавить игру"
|
||||
|
||||
#: data/gtk/window.blp:250 data/gtk/window.blp:316
|
||||
#: data/gtk/window.blp:242 data/gtk/window.blp:305
|
||||
msgid "Main Menu"
|
||||
msgstr "Главное меню"
|
||||
|
||||
#: data/gtk/window.blp:311
|
||||
#: data/gtk/window.blp:300
|
||||
msgid "Hidden Games"
|
||||
msgstr "Скрытые игры"
|
||||
|
||||
#: data/gtk/window.blp:374
|
||||
#: data/gtk/window.blp:360
|
||||
msgid "Sort"
|
||||
msgstr "Сортировать"
|
||||
|
||||
#: data/gtk/window.blp:377
|
||||
#: data/gtk/window.blp:363
|
||||
msgid "A-Z"
|
||||
msgstr "А-Я"
|
||||
|
||||
#: data/gtk/window.blp:383
|
||||
#: data/gtk/window.blp:369
|
||||
msgid "Z-A"
|
||||
msgstr "Я-А"
|
||||
|
||||
#: data/gtk/window.blp:389
|
||||
#: data/gtk/window.blp:375
|
||||
msgid "Newest"
|
||||
msgstr "Сначала новые"
|
||||
|
||||
#: data/gtk/window.blp:395
|
||||
#: data/gtk/window.blp:381
|
||||
msgid "Oldest"
|
||||
msgstr "Сначала старые"
|
||||
|
||||
#: data/gtk/window.blp:401
|
||||
#: data/gtk/window.blp:387
|
||||
msgid "Last Played"
|
||||
msgstr "Последняя игра"
|
||||
|
||||
#: data/gtk/window.blp:408
|
||||
#: data/gtk/window.blp:394
|
||||
msgid "Show Hidden"
|
||||
msgstr "Показать скрытые"
|
||||
|
||||
#: data/gtk/window.blp:421
|
||||
#: data/gtk/window.blp:407
|
||||
msgid "Keyboard Shortcuts"
|
||||
msgstr "Комбинации клавиш"
|
||||
|
||||
#: data/gtk/window.blp:426
|
||||
#: data/gtk/window.blp:412
|
||||
msgid "About Cartridges"
|
||||
msgstr "О приложении"
|
||||
|
||||
#. Translators: Replace this with your name for it to show up in the about window
|
||||
#: src/main.py:180
|
||||
#: src/main.py:137
|
||||
msgid "translator_credits"
|
||||
msgstr "Ser82-png"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:164
|
||||
msgid "{} launched"
|
||||
msgstr "{} - запущена"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:182
|
||||
msgid "{} hidden"
|
||||
msgstr "{} - скрытая"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:185
|
||||
msgid "{} unhidden"
|
||||
msgstr "{} - не скрыта"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:241
|
||||
msgid "{} removed"
|
||||
msgstr "{} удалена"
|
||||
|
||||
#: src/window.py:262
|
||||
msgid "Today"
|
||||
msgstr "Сегодня"
|
||||
|
||||
#: src/window.py:264
|
||||
msgid "Yesterday"
|
||||
msgstr "Вчера"
|
||||
|
||||
#. The variable is the date when the game was added
|
||||
#: src/window.py:194
|
||||
#: src/window.py:310
|
||||
msgid "Added: {}"
|
||||
msgstr "Добавлено: {}"
|
||||
|
||||
#: src/window.py:197
|
||||
#: src/window.py:315
|
||||
msgid "Never"
|
||||
msgstr "Никогда"
|
||||
|
||||
#. The variable is the date when the game was last played
|
||||
#: src/window.py:201
|
||||
#: src/window.py:319
|
||||
msgid "Last played: {}"
|
||||
msgstr "Последний раз запускалась: {}"
|
||||
msgstr "Последняя игра: {}"
|
||||
|
||||
#: src/details_window.py:72
|
||||
msgid "Apply"
|
||||
msgstr "Применить"
|
||||
#: src/game.py:156
|
||||
msgid "Details"
|
||||
msgstr "Подробности"
|
||||
|
||||
#: src/details_window.py:78
|
||||
#: src/preferences.py:54
|
||||
msgid "Installation Not Found"
|
||||
msgstr "Установка не найдена"
|
||||
|
||||
#. The variable is the name of the game launcher
|
||||
#: src/preferences.py:56
|
||||
msgid "Select the {} configuration directory."
|
||||
msgstr "Выберите каталог конфигурации {}."
|
||||
|
||||
#. The variable is the name of the game launcher
|
||||
#: src/preferences.py:59
|
||||
msgid "Select the {} data directory."
|
||||
msgstr "Выберите каталог данных {}."
|
||||
|
||||
#: src/preferences.py:61 src/preferences.py:240
|
||||
msgid "Set Location"
|
||||
msgstr "Установить расположение"
|
||||
|
||||
#: src/preferences.py:132
|
||||
msgid "All games removed"
|
||||
msgstr "Все игры удалены"
|
||||
|
||||
#: src/preferences.py:237
|
||||
msgid "Cache Not Found"
|
||||
msgstr "Кэш не найден"
|
||||
|
||||
#: src/preferences.py:238
|
||||
msgid "Select the Lutris cache directory."
|
||||
msgstr "Выберите каталог кэша Lutris."
|
||||
|
||||
#: src/preferences.py:344
|
||||
msgid ""
|
||||
"An API key is required to use SteamGridDB. You can generate one {}here{}."
|
||||
msgstr ""
|
||||
"Для использования SteamGridDB требуется ключ API. Вы можете сгенерировать "
|
||||
"его {}здесь{}."
|
||||
|
||||
#: src/utils/create_details_window.py:81
|
||||
msgid "Add New Game"
|
||||
msgstr "Добавить новую игру"
|
||||
|
||||
#: src/details_window.py:79
|
||||
#: src/utils/create_details_window.py:85
|
||||
msgid "Confirm"
|
||||
msgstr "Подтвердить"
|
||||
|
||||
#: src/utils/create_details_window.py:96
|
||||
msgid "Apply"
|
||||
msgstr "Применить"
|
||||
|
||||
#: src/utils/create_details_window.py:130
|
||||
msgid "The title of the game"
|
||||
msgstr "Название игры"
|
||||
|
||||
#: src/utils/create_details_window.py:135
|
||||
msgid "Developer"
|
||||
msgstr "Разработчик"
|
||||
|
||||
#: src/utils/create_details_window.py:136
|
||||
msgid "The developer or publisher (optional)"
|
||||
msgstr "Разработчик или издатель (необязательно)"
|
||||
|
||||
#. Translate this string as you would translate "file"
|
||||
#: src/details_window.py:92
|
||||
#: src/utils/create_details_window.py:147
|
||||
msgid "file.txt"
|
||||
msgstr "file.txt"
|
||||
|
||||
#. As in software
|
||||
#: src/details_window.py:94
|
||||
#: src/utils/create_details_window.py:149
|
||||
msgid "program"
|
||||
msgstr "программа"
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:99 src/details_window.py:101
|
||||
#: src/utils/create_details_window.py:154
|
||||
#: src/utils/create_details_window.py:156
|
||||
msgid "C:\\path\\to\\{}"
|
||||
msgstr "C:\\путь\\к\\{}"
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:105 src/details_window.py:107
|
||||
#: src/utils/create_details_window.py:160
|
||||
#: src/utils/create_details_window.py:162
|
||||
msgid "/path/to/{}"
|
||||
msgstr "/путь/к/{}"
|
||||
|
||||
#: src/details_window.py:112
|
||||
#: src/utils/create_details_window.py:166
|
||||
msgid ""
|
||||
"To launch the executable \"{}\", use the command:\n"
|
||||
"\n"
|
||||
@@ -467,186 +531,83 @@ msgstr ""
|
||||
"\n"
|
||||
"Если путь содержит пробелы, обязательно заключите его в двойные кавычки!"
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:153
|
||||
#: src/utils/create_details_window.py:189
|
||||
msgid "Executable"
|
||||
msgstr "Исполняемый"
|
||||
|
||||
#: src/utils/create_details_window.py:190
|
||||
msgid "File to open or command to run when launching the game"
|
||||
msgstr "Файл для открытия или команда для запуска игры"
|
||||
|
||||
#: src/utils/create_details_window.py:202
|
||||
msgid "Cancel"
|
||||
msgstr "Отменить"
|
||||
|
||||
#: src/utils/create_details_window.py:259
|
||||
#: src/utils/create_details_window.py:269
|
||||
#: src/utils/create_details_window.py:275
|
||||
msgid "Couldn't Add Game"
|
||||
msgstr "Не удалось добавить игру"
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:181
|
||||
msgid "Game title cannot be empty."
|
||||
msgstr "Название игры не может быть пустым."
|
||||
|
||||
#: src/details_window.py:153 src/details_window.py:189
|
||||
msgid "Executable cannot be empty."
|
||||
msgstr "Исполняемый файл не может быть пустым."
|
||||
|
||||
#: src/details_window.py:180 src/details_window.py:188
|
||||
#: src/utils/create_details_window.py:261
|
||||
#: src/utils/create_details_window.py:299
|
||||
#: src/utils/create_details_window.py:307
|
||||
msgid "Couldn't Apply Preferences"
|
||||
msgstr "Не удалось применить параметры"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:138
|
||||
msgid "{} launched"
|
||||
msgstr "{} - запущена"
|
||||
#: src/utils/create_details_window.py:269
|
||||
#: src/utils/create_details_window.py:300
|
||||
msgid "Game title cannot be empty."
|
||||
msgstr "Название игры не может быть пустым."
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:152
|
||||
msgid "{} hidden"
|
||||
msgstr "{} - скрытая"
|
||||
|
||||
#: src/game.py:152
|
||||
msgid "{} unhidden"
|
||||
msgstr "{} - не скрыта"
|
||||
|
||||
#: src/game.py:169
|
||||
msgid "{} removed"
|
||||
msgstr "{} удалена"
|
||||
|
||||
#: src/preferences.py:111
|
||||
msgid "All games removed"
|
||||
msgstr "Все игры удалены"
|
||||
|
||||
#: src/preferences.py:159
|
||||
msgid ""
|
||||
"An API key is required to use SteamGridDB. You can generate one {}here{}."
|
||||
msgstr ""
|
||||
"Для использования SteamGridDB требуется ключ API. Вы можете сгенерировать "
|
||||
"его {}здесь{}."
|
||||
|
||||
#: src/preferences.py:284
|
||||
msgid "Installation Not Found"
|
||||
msgstr "Установка не найдена"
|
||||
|
||||
#: src/preferences.py:286
|
||||
msgid "Select a valid directory."
|
||||
msgstr "Выберите действующий каталог."
|
||||
|
||||
#: src/preferences.py:348
|
||||
msgid "Invalid Directory"
|
||||
msgstr "Неверный каталог"
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:352
|
||||
msgid "Select the {} cache directory."
|
||||
msgstr "Выберите каталог кэша {}."
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:355
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} installation directory."
|
||||
msgid "Select the {} configuration directory."
|
||||
msgstr "Выберите каталог установки {}."
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:358
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} cache directory."
|
||||
msgid "Select the {} data directory."
|
||||
msgstr "Выберите каталог кэша {}."
|
||||
|
||||
#: src/preferences.py:364
|
||||
msgid "Set Location"
|
||||
msgstr "Установить расположение"
|
||||
#: src/utils/create_details_window.py:275
|
||||
#: src/utils/create_details_window.py:308
|
||||
msgid "Executable cannot be empty."
|
||||
msgstr "Исполняемый файл не может быть пустым."
|
||||
|
||||
#: src/utils/create_dialog.py:25
|
||||
msgid "Dismiss"
|
||||
msgstr "Отклонить"
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:47
|
||||
msgid "Couldn't Authenticate SteamGridDB"
|
||||
msgstr "Не удалось пройти аутентификацию SteamGridDB"
|
||||
#: src/utils/importer.py:42
|
||||
msgid "Importing Games…"
|
||||
msgstr "Импорт игр…"
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:48
|
||||
msgid "Verify your API key in preferences"
|
||||
msgstr "Проверьте ключ API-ключ в параметрах"
|
||||
#: src/utils/importer.py:77
|
||||
msgid "Importing Covers…"
|
||||
msgstr "Импорт обложек…"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "The Steam directory cannot be found."
|
||||
#~ msgid "Directory not Valid"
|
||||
#~ msgstr "Не удалось найти каталог Steam."
|
||||
#: src/utils/importer.py:92
|
||||
msgid "No new games were found on your system."
|
||||
msgstr "В вашей системе не найдено новых игр."
|
||||
|
||||
#~ msgid "Cache"
|
||||
#~ msgstr "Кэш"
|
||||
#: src/utils/importer.py:100
|
||||
msgid "Game Imported"
|
||||
msgstr "Игра импортирована"
|
||||
|
||||
#~ msgid "Configuration"
|
||||
#~ msgstr "Конфигурация"
|
||||
#: src/utils/importer.py:101
|
||||
msgid "Successfully imported 1 game."
|
||||
msgstr "Успешно импортирована 1 игра."
|
||||
|
||||
#~ msgid "Invalid {} Location for {{}}"
|
||||
#~ msgstr "Неверное расположение {} для {{}}"
|
||||
#: src/utils/importer.py:107
|
||||
msgid "Games Imported"
|
||||
msgstr "Игры импортированы"
|
||||
|
||||
#~ msgid "Pick a new one or disable the source in preferences"
|
||||
#~ msgstr "Выберите новый или отключите имеющийся источник в параметрах"
|
||||
#. The variable is the number of games
|
||||
#: src/utils/importer.py:109
|
||||
msgid "Successfully imported {} games."
|
||||
msgstr "Успешно импортировано {} игр."
|
||||
|
||||
#~ msgid "Steam Install Location"
|
||||
#~ msgstr "Место установки Steam"
|
||||
#: src/utils/importer.py:120 src/utils/steamgriddb.py:113
|
||||
msgid "Couldn't Connect to SteamGridDB"
|
||||
msgstr "Не удалось подключиться к SteamGridDB"
|
||||
|
||||
#~ msgid "Lutris Install Location"
|
||||
#~ msgstr "Место установки Lutris"
|
||||
|
||||
#~ msgid "Heroic Install Location"
|
||||
#~ msgstr "Место установки Heroic"
|
||||
|
||||
#~ msgid "Bottles Install Location"
|
||||
#~ msgstr "Место установки Bottles"
|
||||
|
||||
#~ msgid "Today"
|
||||
#~ msgstr "Сегодня"
|
||||
|
||||
#~ msgid "Yesterday"
|
||||
#~ msgstr "Вчера"
|
||||
|
||||
#~ msgid "Cache Not Found"
|
||||
#~ msgstr "Кэш не найден"
|
||||
|
||||
#~ msgid "Select the Lutris cache directory."
|
||||
#~ msgstr "Выберите каталог кэша Lutris."
|
||||
|
||||
#~ msgid "Importing Games…"
|
||||
#~ msgstr "Импорт игр…"
|
||||
|
||||
#~ msgid "Importing Covers…"
|
||||
#~ msgstr "Импорт обложек…"
|
||||
|
||||
#~ msgid "No new games found"
|
||||
#~ msgstr "Новых игр не найдено"
|
||||
|
||||
#~ msgid "1 game imported"
|
||||
#~ msgstr "1 игра импортирована"
|
||||
|
||||
#~ msgid "{} games imported"
|
||||
#~ msgstr "{} игр(ы) импортировано"
|
||||
|
||||
#~ msgid "Directory to use when importing games"
|
||||
#~ msgstr "Каталог для импорта игр"
|
||||
|
||||
#~ msgid "Extra Steam Libraries"
|
||||
#~ msgstr "Дополнительные библиотеки Steam"
|
||||
|
||||
#~ msgid "Select other directories where you have Steam games installed"
|
||||
#~ msgstr "Выберите другие каталоги, в которых у вас установлены игры из Steam"
|
||||
|
||||
#~ msgid "Clear"
|
||||
#~ msgstr "Очистить"
|
||||
|
||||
#~ msgid "Directory to use when importing game covers"
|
||||
#~ msgstr "Каталог для импорта обложек игр"
|
||||
|
||||
#~ msgid "Details"
|
||||
#~ msgstr "Подробности"
|
||||
|
||||
#~ msgid "No new games were found on your system."
|
||||
#~ msgstr "В вашей системе не найдено новых игр."
|
||||
|
||||
#~ msgid "Successfully imported 1 game."
|
||||
#~ msgstr "Успешно импортирована 1 игра."
|
||||
|
||||
#~ msgid "Successfully imported {} games."
|
||||
#~ msgstr "Успешно импортировано {} игр."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Looks like you have multiple Steam libraries. Would you like to add them "
|
||||
#~ "in preferences?"
|
||||
#~ msgstr ""
|
||||
#~ "Похоже, у вас несколько библиотек Steam. Хотите добавить их в параметрах?"
|
||||
#: src/utils/importer.py:145
|
||||
msgid ""
|
||||
"Looks like you have multiple Steam libraries. Would you like to add them in "
|
||||
"preferences?"
|
||||
msgstr ""
|
||||
"Похоже, у вас несколько библиотек Steam. Хотите добавить их в параметрах?"
|
||||
|
||||
#~ msgid "Launch your games"
|
||||
#~ msgstr "Запускайте свои игры"
|
||||
@@ -724,5 +685,8 @@ msgstr "Проверьте ключ API-ключ в параметрах"
|
||||
#~ msgid "No new games were found in the Steam library."
|
||||
#~ msgstr "В библиотеке Steam новых игр не найдено."
|
||||
|
||||
#~ msgid "The Steam directory cannot be found."
|
||||
#~ msgstr "Не удалось найти каталог Steam."
|
||||
|
||||
#~ msgid "Talking to Steam"
|
||||
#~ msgstr "Общение со Steam"
|
||||
|
||||
640
po/sv.po
@@ -1,640 +0,0 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR kramo
|
||||
# This file is distributed under the same license as the Cartridges package.
|
||||
# micke <mikanybe@gmail.com>, 2023.
|
||||
# micke <micke@users.noreply.hosted.weblate.org>, 2023.
|
||||
# Luna Jernberg <droidbittin@gmail.com>, 2023.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cartridges\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-05 14:36+0200\n"
|
||||
"PO-Revision-Date: 2023-07-01 22:51+0000\n"
|
||||
"Last-Translator: Luna Jernberg <droidbittin@gmail.com>\n"
|
||||
"Language-Team: Swedish <https://hosted.weblate.org/projects/cartridges/"
|
||||
"cartridges/sv/>\n"
|
||||
"Language: sv\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.0-dev\n"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:3
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:47
|
||||
#: src/main.py:162
|
||||
msgid "Cartridges"
|
||||
msgstr "Cartridges"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:4
|
||||
msgid "Game Launcher"
|
||||
msgstr "Spelstartare"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:5
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:7
|
||||
msgid "Launch all your games"
|
||||
msgstr "Starta alla dina spel"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:11
|
||||
msgid "gaming;launcher;steam;lutris;heroic;bottles;itch;"
|
||||
msgstr "gaming;spelstartare;steam;lutris;heroic;bottles;itch;"
|
||||
|
||||
#: 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 ""
|
||||
"Cartridges är en enkel spelstartare för alla dina spel. Det har stöd för att "
|
||||
"importera spel från Steam, Lutris, Heroic och fler utan inloggning. Du kan "
|
||||
"sortera och dölja spel eller ladda ner omslagsbilder från SteamGridDB."
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:30
|
||||
msgid "Library"
|
||||
msgstr "Bibliotek"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 src/details_window.py:67
|
||||
msgid "Edit Game Details"
|
||||
msgstr "Redigera speldetaljer"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:38 data/gtk/window.blp:71
|
||||
msgid "Game Details"
|
||||
msgstr "Speldetaljer"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:42 data/gtk/window.blp:416
|
||||
#: src/details_window.py:239
|
||||
msgid "Preferences"
|
||||
msgstr "Inställningar"
|
||||
|
||||
#: data/gtk/details-window.blp:25
|
||||
msgid "Cancel"
|
||||
msgstr "Avbryt"
|
||||
|
||||
#: data/gtk/details-window.blp:57
|
||||
msgid "New Cover"
|
||||
msgstr "Nytt omslag"
|
||||
|
||||
#: data/gtk/details-window.blp:75
|
||||
msgid "Delete Cover"
|
||||
msgstr "Ta bort omslag"
|
||||
|
||||
#: data/gtk/details-window.blp:101 data/gtk/details-window.blp:106
|
||||
#: data/gtk/game.blp:80
|
||||
msgid "Title"
|
||||
msgstr "Titel"
|
||||
|
||||
#: data/gtk/details-window.blp:102
|
||||
msgid "The title of the game"
|
||||
msgstr "Spelets titel"
|
||||
|
||||
#: data/gtk/details-window.blp:112 data/gtk/details-window.blp:117
|
||||
msgid "Developer"
|
||||
msgstr "Utvecklare"
|
||||
|
||||
#: data/gtk/details-window.blp:113
|
||||
msgid "The developer or publisher (optional)"
|
||||
msgstr "Utvecklaren eller utgivaren (valfritt)"
|
||||
|
||||
#: data/gtk/details-window.blp:123 data/gtk/details-window.blp:155
|
||||
msgid "Executable"
|
||||
msgstr "Körbar"
|
||||
|
||||
#: data/gtk/details-window.blp:124
|
||||
msgid "File to open or command to run when launching the game"
|
||||
msgstr "Fil som ska öppnas eller kommando som ska köras när spelet startas"
|
||||
|
||||
#: data/gtk/details-window.blp:130
|
||||
msgid "More Info"
|
||||
msgstr "Mer info"
|
||||
|
||||
#: data/gtk/game.blp:102 data/gtk/game.blp:121 data/gtk/window.blp:195
|
||||
msgid "Edit"
|
||||
msgstr "Redigera"
|
||||
|
||||
#: data/gtk/game.blp:107 src/window.py:171
|
||||
msgid "Hide"
|
||||
msgstr "Dölj"
|
||||
|
||||
#: data/gtk/game.blp:112 data/gtk/game.blp:131 data/gtk/preferences.blp:56
|
||||
#: data/gtk/window.blp:209
|
||||
msgid "Remove"
|
||||
msgstr "Ta bort"
|
||||
|
||||
#: data/gtk/game.blp:126 src/window.py:173
|
||||
msgid "Unhide"
|
||||
msgstr "Visa"
|
||||
|
||||
#: data/gtk/help-overlay.blp:11 data/gtk/preferences.blp:9
|
||||
msgid "General"
|
||||
msgstr "Allmänt"
|
||||
|
||||
#: data/gtk/help-overlay.blp:14
|
||||
msgid "Quit"
|
||||
msgstr "Avsluta"
|
||||
|
||||
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:217 data/gtk/window.blp:257
|
||||
#: data/gtk/window.blp:323
|
||||
msgid "Search"
|
||||
msgstr "Sök"
|
||||
|
||||
#: data/gtk/help-overlay.blp:24
|
||||
msgid "Show preferences"
|
||||
msgstr "Visa inställningar"
|
||||
|
||||
#: data/gtk/help-overlay.blp:29
|
||||
msgid "Shortcuts"
|
||||
msgstr "Genvägar"
|
||||
|
||||
#: data/gtk/help-overlay.blp:34 src/game.py:102 src/preferences.py:112
|
||||
msgid "Undo"
|
||||
msgstr "Ångra"
|
||||
|
||||
#: data/gtk/help-overlay.blp:39
|
||||
msgid "Open menu"
|
||||
msgstr "Öppna meny"
|
||||
|
||||
#: data/gtk/help-overlay.blp:45
|
||||
msgid "Games"
|
||||
msgstr "Spel"
|
||||
|
||||
#: data/gtk/help-overlay.blp:48
|
||||
msgid "Add new game"
|
||||
msgstr "Lägg till nytt spel"
|
||||
|
||||
#: data/gtk/help-overlay.blp:53
|
||||
msgid "Import games"
|
||||
msgstr "Importera spel"
|
||||
|
||||
#: data/gtk/help-overlay.blp:58
|
||||
msgid "Show hidden games"
|
||||
msgstr "Visa dolda spel"
|
||||
|
||||
#: data/gtk/help-overlay.blp:63
|
||||
msgid "Remove game"
|
||||
msgstr "Ta bort spel"
|
||||
|
||||
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:268
|
||||
msgid "Behavior"
|
||||
msgstr "Beteende"
|
||||
|
||||
#: data/gtk/preferences.blp:16
|
||||
msgid "Exit After Launching Games"
|
||||
msgstr "Avsluta efter start av spel"
|
||||
|
||||
#: data/gtk/preferences.blp:25
|
||||
msgid "Cover Image Launches Game"
|
||||
msgstr "Omslagsbild startar spel"
|
||||
|
||||
#: data/gtk/preferences.blp:26
|
||||
msgid "Swaps the behavior of the cover image and the play button"
|
||||
msgstr "Byt beteende för omslagsbilden och Spela-knappen"
|
||||
|
||||
#: data/gtk/preferences.blp:36 src/details_window.py:81
|
||||
msgid "Images"
|
||||
msgstr "Bilder"
|
||||
|
||||
#: data/gtk/preferences.blp:39
|
||||
msgid "High Quality Images"
|
||||
msgstr "Bilder av hög kvalitet"
|
||||
|
||||
#: data/gtk/preferences.blp:40
|
||||
msgid "Save game covers losslessly at the cost of storage"
|
||||
msgstr ""
|
||||
"Spara omslagsbilder utan kvalitetsförlust på bekostnad av lagringsplats"
|
||||
|
||||
#: data/gtk/preferences.blp:50
|
||||
msgid "Danger Zone"
|
||||
msgstr "Farozon"
|
||||
|
||||
#: data/gtk/preferences.blp:53
|
||||
msgid "Remove All Games"
|
||||
msgstr "Ta bort alla spel"
|
||||
|
||||
#: data/gtk/preferences.blp:85 data/gtk/window.blp:27 data/gtk/window.blp:442
|
||||
msgid "Import"
|
||||
msgstr "Importera"
|
||||
|
||||
#: data/gtk/preferences.blp:89
|
||||
msgid "Sources"
|
||||
msgstr "Källor"
|
||||
|
||||
#: data/gtk/preferences.blp:92
|
||||
msgid "Steam"
|
||||
msgstr "Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:96 data/gtk/preferences.blp:110
|
||||
#: data/gtk/preferences.blp:151 data/gtk/preferences.blp:192
|
||||
#: data/gtk/preferences.blp:206 data/gtk/preferences.blp:220
|
||||
#: data/gtk/preferences.blp:234
|
||||
msgid "Install Location"
|
||||
msgstr "Plats för installation"
|
||||
|
||||
#: data/gtk/preferences.blp:106
|
||||
msgid "Lutris"
|
||||
msgstr "Lutris"
|
||||
|
||||
#: data/gtk/preferences.blp:119
|
||||
msgid "Cache Location"
|
||||
msgstr "Plats för cacheminne"
|
||||
|
||||
#: data/gtk/preferences.blp:128
|
||||
msgid "Import Steam Games"
|
||||
msgstr "Importera Steam-spel"
|
||||
|
||||
#: data/gtk/preferences.blp:137
|
||||
msgid "Import Flatpak Games"
|
||||
msgstr "Importera Flatpak-spel"
|
||||
|
||||
#: data/gtk/preferences.blp:147
|
||||
msgid "Heroic"
|
||||
msgstr "Heroic"
|
||||
|
||||
#: data/gtk/preferences.blp:160
|
||||
msgid "Import Epic Games"
|
||||
msgstr "Importera Epic Games"
|
||||
|
||||
#: data/gtk/preferences.blp:169
|
||||
msgid "Import GOG Games"
|
||||
msgstr "Importera GOG-spel"
|
||||
|
||||
#: data/gtk/preferences.blp:178
|
||||
msgid "Import Sideloaded Games"
|
||||
msgstr "Importera sidoladdade spel"
|
||||
|
||||
#: data/gtk/preferences.blp:188
|
||||
msgid "Bottles"
|
||||
msgstr "Bottles"
|
||||
|
||||
#: data/gtk/preferences.blp:202
|
||||
msgid "itch"
|
||||
msgstr "itch"
|
||||
|
||||
#: data/gtk/preferences.blp:216
|
||||
msgid "Legendary"
|
||||
msgstr "Legendary"
|
||||
|
||||
#: data/gtk/preferences.blp:230
|
||||
msgid "Flatpak"
|
||||
msgstr "Flatpak"
|
||||
|
||||
#: data/gtk/preferences.blp:243
|
||||
msgid "Import Game Launchers"
|
||||
msgstr "Importera spelstartare"
|
||||
|
||||
#: data/gtk/preferences.blp:256
|
||||
msgid "SteamGridDB"
|
||||
msgstr "SteamGridDB"
|
||||
|
||||
#: data/gtk/preferences.blp:260
|
||||
msgid "Authentication"
|
||||
msgstr "Autentisering"
|
||||
|
||||
#: data/gtk/preferences.blp:263
|
||||
msgid "API Key"
|
||||
msgstr "API-nyckel"
|
||||
|
||||
#: data/gtk/preferences.blp:271
|
||||
msgid "Use SteamGridDB"
|
||||
msgstr "Använd SteamGridDB"
|
||||
|
||||
#: data/gtk/preferences.blp:272
|
||||
msgid "Download images when adding or importing games"
|
||||
msgstr "Ladda ner bilder när spel läggs till eller importeras"
|
||||
|
||||
#: data/gtk/preferences.blp:281
|
||||
msgid "Prefer Over Official Images"
|
||||
msgstr "Föredra framför officiella bilder"
|
||||
|
||||
#: data/gtk/preferences.blp:290
|
||||
msgid "Prefer Animated Images"
|
||||
msgstr "Föredra animerade bilder"
|
||||
|
||||
#: data/gtk/window.blp:6 data/gtk/window.blp:14
|
||||
msgid "No Games Found"
|
||||
msgstr "Inga spel hittades"
|
||||
|
||||
#: data/gtk/window.blp:7 data/gtk/window.blp:15
|
||||
msgid "Try a different search."
|
||||
msgstr "Försök med en annan sökning."
|
||||
|
||||
#: data/gtk/window.blp:21
|
||||
msgid "No Games"
|
||||
msgstr "Inga spel"
|
||||
|
||||
#: data/gtk/window.blp:22
|
||||
msgid "Use the + button to add games."
|
||||
msgstr "Använd +-knappen för att lägga till spel."
|
||||
|
||||
#: data/gtk/window.blp:40
|
||||
msgid "No Hidden Games"
|
||||
msgstr "Inga dolda spel"
|
||||
|
||||
#: data/gtk/window.blp:41
|
||||
msgid "Games you hide will appear here."
|
||||
msgstr "Spel som du döljer kommer visas här."
|
||||
|
||||
#: data/gtk/window.blp:64 data/gtk/window.blp:304
|
||||
msgid "Back"
|
||||
msgstr "Bakåt"
|
||||
|
||||
#: data/gtk/window.blp:121
|
||||
msgid "Game Title"
|
||||
msgstr "Speltitel"
|
||||
|
||||
#: data/gtk/window.blp:176
|
||||
msgid "Play"
|
||||
msgstr "Spela"
|
||||
|
||||
#: data/gtk/window.blp:243 data/gtk/window.blp:435
|
||||
msgid "Add Game"
|
||||
msgstr "Lägg till spel"
|
||||
|
||||
#: data/gtk/window.blp:250 data/gtk/window.blp:316
|
||||
msgid "Main Menu"
|
||||
msgstr "Huvudmeny"
|
||||
|
||||
#: data/gtk/window.blp:311
|
||||
msgid "Hidden Games"
|
||||
msgstr "Dolda spel"
|
||||
|
||||
#: data/gtk/window.blp:374
|
||||
msgid "Sort"
|
||||
msgstr "Sortering"
|
||||
|
||||
#: data/gtk/window.blp:377
|
||||
msgid "A-Z"
|
||||
msgstr "A-Ö"
|
||||
|
||||
#: data/gtk/window.blp:383
|
||||
msgid "Z-A"
|
||||
msgstr "Ö-A"
|
||||
|
||||
#: data/gtk/window.blp:389
|
||||
msgid "Newest"
|
||||
msgstr "Nyaste"
|
||||
|
||||
#: data/gtk/window.blp:395
|
||||
msgid "Oldest"
|
||||
msgstr "Äldsta"
|
||||
|
||||
#: data/gtk/window.blp:401
|
||||
msgid "Last Played"
|
||||
msgstr "Senast spelad"
|
||||
|
||||
#: data/gtk/window.blp:408
|
||||
msgid "Show Hidden"
|
||||
msgstr "Visa dolda"
|
||||
|
||||
#: data/gtk/window.blp:421
|
||||
msgid "Keyboard Shortcuts"
|
||||
msgstr "Tangentbordsgenvägar"
|
||||
|
||||
#: data/gtk/window.blp:426
|
||||
msgid "About Cartridges"
|
||||
msgstr "Om Cartridges"
|
||||
|
||||
#. Translators: Replace this with your name for it to show up in the about window
|
||||
#: src/main.py:180
|
||||
msgid "translator_credits"
|
||||
msgstr "Micke"
|
||||
|
||||
#. The variable is the date when the game was added
|
||||
#: src/window.py:194
|
||||
msgid "Added: {}"
|
||||
msgstr "Tillagt: {}"
|
||||
|
||||
#: src/window.py:197
|
||||
msgid "Never"
|
||||
msgstr "Aldrig"
|
||||
|
||||
#. The variable is the date when the game was last played
|
||||
#: src/window.py:201
|
||||
msgid "Last played: {}"
|
||||
msgstr "Senast spelat: {}"
|
||||
|
||||
#: src/details_window.py:72
|
||||
msgid "Apply"
|
||||
msgstr "Tillämpa"
|
||||
|
||||
#: src/details_window.py:78
|
||||
msgid "Add New Game"
|
||||
msgstr "Lägg till nytt spel"
|
||||
|
||||
#: src/details_window.py:79
|
||||
msgid "Confirm"
|
||||
msgstr "Bekräfta"
|
||||
|
||||
#. Translate this string as you would translate "file"
|
||||
#: src/details_window.py:92
|
||||
msgid "file.txt"
|
||||
msgstr "fil.txt"
|
||||
|
||||
#. As in software
|
||||
#: src/details_window.py:94
|
||||
msgid "program"
|
||||
msgstr "program"
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:99 src/details_window.py:101
|
||||
msgid "C:\\path\\to\\{}"
|
||||
msgstr "C:\\sökväg\\till\\{}"
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:105 src/details_window.py:107
|
||||
msgid "/path/to/{}"
|
||||
msgstr "/sökväg/till/{}"
|
||||
|
||||
#: src/details_window.py:112
|
||||
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 ""
|
||||
"Använd kommandot för att starta den körbara filen \"{}\":\n"
|
||||
"\n"
|
||||
"<tt>\"{}\"</tt>\n"
|
||||
"\n"
|
||||
"För att öppna filen \"{}\" med standardprogrammet använder du:\n"
|
||||
"\n"
|
||||
"<tt>{} \"{}\"</tt>\n"
|
||||
"\n"
|
||||
"Om sökvägen innehåller mellanslag, se till att den omsluts av dubbla "
|
||||
"citationstecken!"
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:153
|
||||
msgid "Couldn't Add Game"
|
||||
msgstr "Kunde inte lägga till spelet"
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:181
|
||||
msgid "Game title cannot be empty."
|
||||
msgstr "Spelets titel kan inte vara tom."
|
||||
|
||||
#: src/details_window.py:153 src/details_window.py:189
|
||||
msgid "Executable cannot be empty."
|
||||
msgstr "Den körbara filen kan inte vara tom."
|
||||
|
||||
#: src/details_window.py:180 src/details_window.py:188
|
||||
msgid "Couldn't Apply Preferences"
|
||||
msgstr "Kunde inte tillämpa inställningar"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:138
|
||||
msgid "{} launched"
|
||||
msgstr "{} startat"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:152
|
||||
msgid "{} hidden"
|
||||
msgstr "{} dolt"
|
||||
|
||||
#: src/game.py:152
|
||||
msgid "{} unhidden"
|
||||
msgstr "{} synlig"
|
||||
|
||||
#: src/game.py:169
|
||||
msgid "{} removed"
|
||||
msgstr "{} borttaget"
|
||||
|
||||
#: src/preferences.py:111
|
||||
msgid "All games removed"
|
||||
msgstr "Alla spel togs bort"
|
||||
|
||||
#: src/preferences.py:159
|
||||
msgid ""
|
||||
"An API key is required to use SteamGridDB. You can generate one {}here{}."
|
||||
msgstr ""
|
||||
"En API-nyckel krävs för att använda SteamGridDB. Du kan generera en {}här{}."
|
||||
|
||||
#: src/preferences.py:284
|
||||
msgid "Installation Not Found"
|
||||
msgstr "Installation hittades inte"
|
||||
|
||||
#: src/preferences.py:286
|
||||
msgid "Select a valid directory."
|
||||
msgstr "Välj en giltig katalog."
|
||||
|
||||
#: src/preferences.py:348
|
||||
msgid "Invalid Directory"
|
||||
msgstr "Ogiltig katalog"
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:352
|
||||
msgid "Select the {} cache directory."
|
||||
msgstr "Välj {} cachekatalog."
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:355
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} installation directory."
|
||||
msgid "Select the {} configuration directory."
|
||||
msgstr "Välj {} installationskatalog."
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:358
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} cache directory."
|
||||
msgid "Select the {} data directory."
|
||||
msgstr "Välj {} cachekatalog."
|
||||
|
||||
#: src/preferences.py:364
|
||||
msgid "Set Location"
|
||||
msgstr "Ange plats"
|
||||
|
||||
#: src/utils/create_dialog.py:25
|
||||
msgid "Dismiss"
|
||||
msgstr "Avvisa"
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:47
|
||||
msgid "Couldn't Authenticate SteamGridDB"
|
||||
msgstr "Kunde inte autentisera SteamGridDB"
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:48
|
||||
msgid "Verify your API key in preferences"
|
||||
msgstr "Verifiera din API-nyckel i inställningar"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Cache Not Found"
|
||||
#~ msgid "Directory not Valid"
|
||||
#~ msgstr "Cache inte hittad"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Confirm"
|
||||
#~ msgid "Configuration"
|
||||
#~ msgstr "Bekräfta"
|
||||
|
||||
#~ msgid "Steam Install Location"
|
||||
#~ msgstr "Steam-installationsplats"
|
||||
|
||||
#~ msgid "Lutris Install Location"
|
||||
#~ msgstr "Lutris-installationsplats"
|
||||
|
||||
#~ msgid "Heroic Install Location"
|
||||
#~ msgstr "Heroic-installationsplats"
|
||||
|
||||
#~ msgid "Bottles Install Location"
|
||||
#~ msgstr "Bottles-installationsplats"
|
||||
|
||||
#~ msgid "Today"
|
||||
#~ msgstr "Idag"
|
||||
|
||||
#~ msgid "Yesterday"
|
||||
#~ msgstr "Igår"
|
||||
|
||||
#~ msgid "Select the Lutris cache directory."
|
||||
#~ msgstr "Välj Lutris cache-mapp."
|
||||
|
||||
#~ msgid "Importing Games…"
|
||||
#~ msgstr "Importerar spel…"
|
||||
|
||||
#~ msgid "Importing Covers…"
|
||||
#~ msgstr "Importerar omslagsbilder…"
|
||||
|
||||
#~ msgid "No new games found"
|
||||
#~ msgstr "Inga nya spel hittades"
|
||||
|
||||
#~ msgid "1 game imported"
|
||||
#~ msgstr "1 spel Importerat"
|
||||
|
||||
#~ msgid "{} games imported"
|
||||
#~ msgstr "{} spel importerade"
|
||||
|
||||
#~ msgid "Directory to use when importing games"
|
||||
#~ msgstr "Mapp att använda för importering av spel"
|
||||
|
||||
#~ msgid "Extra Steam Libraries"
|
||||
#~ msgstr "Extra Steam-bibliotek"
|
||||
|
||||
#~ msgid "Select other directories where you have Steam games installed"
|
||||
#~ msgstr "Välj andra mappar där du har Steam-spel installerade"
|
||||
|
||||
#~ msgid "Clear"
|
||||
#~ msgstr "Rensa"
|
||||
|
||||
#~ msgid "Directory to use when importing game covers"
|
||||
#~ msgstr "Mapp att använda för import av omslagsbilder"
|
||||
|
||||
#~ msgid "Details"
|
||||
#~ msgstr "Detaljer"
|
||||
|
||||
#~ msgid "No new games were found on your system."
|
||||
#~ msgstr "Inga nya spel hittades på ditt system."
|
||||
|
||||
#~ msgid "Successfully imported 1 game."
|
||||
#~ msgstr "Importerade 1 spel."
|
||||
|
||||
#~ msgid "Successfully imported {} games."
|
||||
#~ msgstr "Importerade {} spel."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Looks like you have multiple Steam libraries. Would you like to add them "
|
||||
#~ "in preferences?"
|
||||
#~ msgstr ""
|
||||
#~ "Du verkar ha flera Steam-bibliotek. Vill du lägga till dem i "
|
||||
#~ "inställningar?"
|
||||
563
po/ta.po
@@ -8,8 +8,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cartridges\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-05 14:36+0200\n"
|
||||
"PO-Revision-Date: 2023-06-28 20:19+0000\n"
|
||||
"POT-Creation-Date: 2023-04-11 23:33+0200\n"
|
||||
"PO-Revision-Date: 2023-04-14 12:29+0000\n"
|
||||
"Last-Translator: \"K.B.Dharun Krishna\" <kbdharunkrishna@gmail.com>\n"
|
||||
"Language-Team: Tamil <https://hosted.weblate.org/projects/cartridges/"
|
||||
"cartridges/ta/>\n"
|
||||
@@ -18,11 +18,11 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.18.1\n"
|
||||
"X-Generator: Weblate 4.17-dev\n"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:3
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:47
|
||||
#: src/main.py:162
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:29
|
||||
#: src/main.py:119
|
||||
msgid "Cartridges"
|
||||
msgstr "கார்ட்ரிட்ஜ்கள்"
|
||||
|
||||
@@ -35,10 +35,6 @@ msgstr "விளையாட்டு துவக்கி"
|
||||
msgid "Launch all your games"
|
||||
msgstr "உங்கள் எல்லா விளையாட்டுகளையும் தொடங்கவும்"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:11
|
||||
msgid "gaming;launcher;steam;lutris;heroic;bottles;itch;"
|
||||
msgstr "விளையாட்டு; துவக்கி; steam;lutris;heroic;பாட்டில்கள்;itch;"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:9
|
||||
msgid ""
|
||||
"Cartridges is a simple game launcher for all of your games. It has support "
|
||||
@@ -52,78 +48,43 @@ msgstr ""
|
||||
"மற்றும் மறைக்கலாம் அல்லது ஸ்டீம்கிரிட் டிபி (SteamGridDB) இலிருந்து அட்டைப்பட கலையைப் "
|
||||
"பதிவிறக்கலாம்."
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:30
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:22
|
||||
msgid "Library"
|
||||
msgstr "நூலகம்"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 src/details_window.py:67
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:26
|
||||
#: src/utils/create_details_window.py:87
|
||||
msgid "Edit Game Details"
|
||||
msgstr "விளையாட்டு விவரங்களைத் திருத்து"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:38 data/gtk/window.blp:71
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:30 data/gtk/window.blp:51
|
||||
msgid "Game Details"
|
||||
msgstr "விளையாட்டு விவரங்கள்"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:42 data/gtk/window.blp:416
|
||||
#: src/details_window.py:239
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 data/gtk/window.blp:402
|
||||
#: src/utils/importer.py:94 src/utils/importer.py:123 src/utils/importer.py:148
|
||||
#: src/utils/steamgriddb.py:116
|
||||
msgid "Preferences"
|
||||
msgstr "விருப்பங்கள்"
|
||||
|
||||
#: data/gtk/details-window.blp:25
|
||||
msgid "Cancel"
|
||||
msgstr "ரத்துசெய்"
|
||||
|
||||
#: data/gtk/details-window.blp:57
|
||||
msgid "New Cover"
|
||||
msgstr "புதிய அட்டை"
|
||||
|
||||
#: data/gtk/details-window.blp:75
|
||||
msgid "Delete Cover"
|
||||
msgstr "அட்டையை நீக்கு"
|
||||
|
||||
#: data/gtk/details-window.blp:101 data/gtk/details-window.blp:106
|
||||
#: data/gtk/game.blp:80
|
||||
#: data/gtk/game.blp:67 src/utils/create_details_window.py:129
|
||||
msgid "Title"
|
||||
msgstr "தலைப்பு"
|
||||
|
||||
#: data/gtk/details-window.blp:102
|
||||
msgid "The title of the game"
|
||||
msgstr "விளையாட்டின் தலைப்பு"
|
||||
|
||||
#: 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-window.blp:124
|
||||
msgid "File to open or command to run when launching the game"
|
||||
msgstr "விளையாட்டைத் தொடங்கும் போது திறக்க கோப்பு அல்லது இயக்க கட்டளை"
|
||||
|
||||
#: data/gtk/details-window.blp:130
|
||||
msgid "More Info"
|
||||
msgstr "மேலும் தகவல்"
|
||||
|
||||
#: data/gtk/game.blp:102 data/gtk/game.blp:121 data/gtk/window.blp:195
|
||||
#: data/gtk/game.blp:89 data/gtk/game.blp:108 data/gtk/window.blp:170
|
||||
msgid "Edit"
|
||||
msgstr "தொகு"
|
||||
|
||||
#: data/gtk/game.blp:107 src/window.py:171
|
||||
#: data/gtk/game.blp:94 src/window.py:286
|
||||
msgid "Hide"
|
||||
msgstr "மறை"
|
||||
|
||||
#: data/gtk/game.blp:112 data/gtk/game.blp:131 data/gtk/preferences.blp:56
|
||||
#: data/gtk/window.blp:209
|
||||
#: data/gtk/game.blp:99 data/gtk/game.blp:118 data/gtk/preferences.blp:56
|
||||
#: data/gtk/window.blp:186
|
||||
msgid "Remove"
|
||||
msgstr "அகற்று"
|
||||
|
||||
#: data/gtk/game.blp:126 src/window.py:173
|
||||
#: data/gtk/game.blp:113 src/window.py:283
|
||||
msgid "Unhide"
|
||||
msgstr "மறை காட்டு"
|
||||
|
||||
@@ -135,8 +96,8 @@ msgstr "பொது"
|
||||
msgid "Quit"
|
||||
msgstr "வெளியேறு"
|
||||
|
||||
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:217 data/gtk/window.blp:257
|
||||
#: data/gtk/window.blp:323
|
||||
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:205 data/gtk/window.blp:249
|
||||
#: data/gtk/window.blp:312
|
||||
msgid "Search"
|
||||
msgstr "தேடு"
|
||||
|
||||
@@ -148,7 +109,8 @@ msgstr "விருப்பங்களைக் காட்டு"
|
||||
msgid "Shortcuts"
|
||||
msgstr "குறுக்குவழிகள்"
|
||||
|
||||
#: data/gtk/help-overlay.blp:34 src/game.py:102 src/preferences.py:112
|
||||
#: data/gtk/help-overlay.blp:34 src/main.py:186 src/main.py:242
|
||||
#: src/preferences.py:133
|
||||
msgid "Undo"
|
||||
msgstr "செயல்தவிர்"
|
||||
|
||||
@@ -176,7 +138,7 @@ msgstr "மறைக்கப்பட்ட விளையாட்டுக
|
||||
msgid "Remove game"
|
||||
msgstr "விளையாட்டை அகற்று"
|
||||
|
||||
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:268
|
||||
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:235
|
||||
msgid "Behavior"
|
||||
msgstr "நடத்தை"
|
||||
|
||||
@@ -192,7 +154,7 @@ msgstr "அட்டைப் படம் விளையாட்டை தொ
|
||||
msgid "Swaps the behavior of the cover image and the play button"
|
||||
msgstr "அட்டைப் படத்தின் நடத்தை மற்றும் பிளே பட்டனை மாற்றுகிறது"
|
||||
|
||||
#: data/gtk/preferences.blp:36 src/details_window.py:81
|
||||
#: data/gtk/preferences.blp:36 src/utils/create_details_window.py:101
|
||||
msgid "Images"
|
||||
msgstr "படங்கள்"
|
||||
|
||||
@@ -212,246 +174,344 @@ msgstr "ஆபத்து மண்டலம்"
|
||||
msgid "Remove All Games"
|
||||
msgstr "அனைத்து விளையாட்டுகளையும் அகற்று"
|
||||
|
||||
#: data/gtk/preferences.blp:85 data/gtk/window.blp:27 data/gtk/window.blp:442
|
||||
#: data/gtk/preferences.blp:69 data/gtk/window.blp:427
|
||||
msgid "Import"
|
||||
msgstr "இறக்குமதி"
|
||||
|
||||
#: data/gtk/preferences.blp:89
|
||||
#: data/gtk/preferences.blp:73
|
||||
msgid "Sources"
|
||||
msgstr "மூலங்கள்"
|
||||
|
||||
#: data/gtk/preferences.blp:92
|
||||
#: data/gtk/preferences.blp:76
|
||||
msgid "Steam"
|
||||
msgstr "Steam (ஸ்டீம்)"
|
||||
|
||||
#: data/gtk/preferences.blp:96 data/gtk/preferences.blp:110
|
||||
#: data/gtk/preferences.blp:151 data/gtk/preferences.blp:192
|
||||
#: data/gtk/preferences.blp:206 data/gtk/preferences.blp:220
|
||||
#: data/gtk/preferences.blp:234
|
||||
msgid "Install Location"
|
||||
msgstr "நிறுவல் இடம்"
|
||||
#: data/gtk/preferences.blp:80
|
||||
msgid "Steam Install Location"
|
||||
msgstr "Steam (ஸ்டீம்) நிறுவல் இடம்"
|
||||
|
||||
#: data/gtk/preferences.blp:106
|
||||
#: data/gtk/preferences.blp:81 data/gtk/preferences.blp:119
|
||||
#: data/gtk/preferences.blp:153 data/gtk/preferences.blp:195
|
||||
#: data/gtk/preferences.blp:210
|
||||
msgid "Directory to use when importing games"
|
||||
msgstr "விளையாட்டுகளை இறக்குமதி செய்யும் போது பயன்படுத்த வேண்டிய அடைவு"
|
||||
|
||||
#: data/gtk/preferences.blp:89 src/utils/importer.py:143
|
||||
msgid "Extra Steam Libraries"
|
||||
msgstr "கூடுதல் ஸ்டீம் (Steam) நூலகங்கள்"
|
||||
|
||||
#: data/gtk/preferences.blp:90
|
||||
msgid "Select other directories where you have Steam games installed"
|
||||
msgstr "ஸ்டீம் (Steam) கேம்களை நிறுவிய பிற கோப்பகங்களைத் தேர்ந்தெடுக்கவும்"
|
||||
|
||||
#: data/gtk/preferences.blp:96
|
||||
msgid "Clear"
|
||||
msgstr "தெளிவு"
|
||||
|
||||
#: data/gtk/preferences.blp:114
|
||||
msgid "Lutris"
|
||||
msgstr "லூட்ரிஸ்"
|
||||
|
||||
#: data/gtk/preferences.blp:119
|
||||
msgid "Cache Location"
|
||||
msgstr "தற்காலிக சேமிப்பு இடம்"
|
||||
#: data/gtk/preferences.blp:118
|
||||
msgid "Lutris Install Location"
|
||||
msgstr "லூட்ரிஸ் நிறுவல் இடம்"
|
||||
|
||||
#: data/gtk/preferences.blp:128
|
||||
msgid "Lutris Cache Location"
|
||||
msgstr "லுட்ரிஸ் தற்காலிக சேமிப்பு இடம்"
|
||||
|
||||
#: data/gtk/preferences.blp:129
|
||||
msgid "Directory to use when importing game covers"
|
||||
msgstr "விளையாட்டு அட்டைகளை இறக்குமதி செய்யும் போது பயன்படுத்த வேண்டிய அடைவு"
|
||||
|
||||
#: data/gtk/preferences.blp:138
|
||||
msgid "Import Steam Games"
|
||||
msgstr "ஸ்டீம் (Steam) விளையாட்டுகளை இறக்குமதி செய்யவும்"
|
||||
|
||||
#: data/gtk/preferences.blp:137
|
||||
#, fuzzy
|
||||
#| msgid "Import Steam Games"
|
||||
msgid "Import Flatpak Games"
|
||||
msgstr "ஸ்டீம் (Steam) விளையாட்டுகளை இறக்குமதி செய்யவும்"
|
||||
|
||||
#: data/gtk/preferences.blp:147
|
||||
#: data/gtk/preferences.blp:148
|
||||
msgid "Heroic"
|
||||
msgstr "Heroic (ஹீரோயிக்)"
|
||||
|
||||
#: data/gtk/preferences.blp:160
|
||||
#: data/gtk/preferences.blp:152
|
||||
msgid "Heroic Install Location"
|
||||
msgstr "Heroic (ஹீரோயிக்) நிறுவல் இடம்"
|
||||
|
||||
#: data/gtk/preferences.blp:162
|
||||
msgid "Import Epic Games"
|
||||
msgstr "Epic விளையாட்டுகளை இறக்குமதி செய்"
|
||||
|
||||
#: data/gtk/preferences.blp:169
|
||||
#: data/gtk/preferences.blp:171
|
||||
msgid "Import GOG Games"
|
||||
msgstr "GOG விளையாட்டுகளை இறக்குமதி செய்யவும்"
|
||||
|
||||
#: data/gtk/preferences.blp:178
|
||||
#: data/gtk/preferences.blp:180
|
||||
msgid "Import Sideloaded Games"
|
||||
msgstr "பக்க ஏற்றப்பட்ட விளையாட்டுகளை இறக்குமதி செய்யவும்"
|
||||
|
||||
#: data/gtk/preferences.blp:188
|
||||
#: data/gtk/preferences.blp:190
|
||||
msgid "Bottles"
|
||||
msgstr "Bottles (பாட்டில்கள்)"
|
||||
|
||||
#: data/gtk/preferences.blp:202
|
||||
#: data/gtk/preferences.blp:194
|
||||
msgid "Bottles Install Location"
|
||||
msgstr "Bottles (பாட்டில்கள்) நிறுவும் இடம்"
|
||||
|
||||
#: data/gtk/preferences.blp:205
|
||||
msgid "itch"
|
||||
msgstr "அரிப்பு (itch)"
|
||||
|
||||
#: data/gtk/preferences.blp:216
|
||||
msgid "Legendary"
|
||||
msgstr "பழம்பெரும்"
|
||||
#: data/gtk/preferences.blp:209
|
||||
msgid "itch Install Location"
|
||||
msgstr "அரிப்பு (itch) நிறுவல் இடம்"
|
||||
|
||||
#: data/gtk/preferences.blp:230
|
||||
msgid "Flatpak"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:243
|
||||
#, fuzzy
|
||||
#| msgid "Game Launcher"
|
||||
msgid "Import Game Launchers"
|
||||
msgstr "விளையாட்டு துவக்கி"
|
||||
|
||||
#: data/gtk/preferences.blp:256
|
||||
#: data/gtk/preferences.blp:223
|
||||
msgid "SteamGridDB"
|
||||
msgstr "ஸ்டீம்கிரிட் டிபி (SteamGridDB)"
|
||||
|
||||
#: data/gtk/preferences.blp:260
|
||||
#: data/gtk/preferences.blp:227
|
||||
msgid "Authentication"
|
||||
msgstr "அங்கீகாரம்"
|
||||
|
||||
#: data/gtk/preferences.blp:263
|
||||
#: data/gtk/preferences.blp:230
|
||||
msgid "API Key"
|
||||
msgstr "API விசை"
|
||||
|
||||
#: data/gtk/preferences.blp:271
|
||||
#: data/gtk/preferences.blp:238
|
||||
msgid "Use SteamGridDB"
|
||||
msgstr "ஸ்டீம்கிரிட் டிபி (SteamGridDB) ஐப் பயன்படுத்தவும்"
|
||||
|
||||
#: data/gtk/preferences.blp:272
|
||||
#: data/gtk/preferences.blp:239
|
||||
msgid "Download images when adding or importing games"
|
||||
msgstr ""
|
||||
"விளையாட்டுகளைச் சேர்க்கும் போது அல்லது இறக்குமதி செய்யும் போது படங்களைப் பதிவிறக்கவும்"
|
||||
|
||||
#: data/gtk/preferences.blp:281
|
||||
#: data/gtk/preferences.blp:248
|
||||
msgid "Prefer Over Official Images"
|
||||
msgstr "அதிகாரப்பூர்வ படங்களை விட முன்னுரிமை"
|
||||
|
||||
#: data/gtk/preferences.blp:290
|
||||
#: data/gtk/preferences.blp:257
|
||||
msgid "Prefer Animated Images"
|
||||
msgstr "இயங்குபடம் செய்யப்பட்ட படங்களுக்கு முன்னுரிமை கொடுங்கள்"
|
||||
|
||||
#: data/gtk/window.blp:6 data/gtk/window.blp:14
|
||||
#: data/gtk/window.blp:6 src/utils/importer.py:91
|
||||
msgid "No Games Found"
|
||||
msgstr "விளையாட்டுகள் எதுவும் இல்லை"
|
||||
|
||||
#: data/gtk/window.blp:7 data/gtk/window.blp:15
|
||||
#: data/gtk/window.blp:7
|
||||
msgid "Try a different search."
|
||||
msgstr "வேறு தேடலை முயற்சிக்கவும்."
|
||||
|
||||
#: data/gtk/window.blp:21
|
||||
#: data/gtk/window.blp:14
|
||||
msgid "No Games"
|
||||
msgstr "விளையாட்டுகள் இல்லை"
|
||||
|
||||
#: data/gtk/window.blp:22
|
||||
#: data/gtk/window.blp:15
|
||||
msgid "Use the + button to add games."
|
||||
msgstr "விளையாட்டுகளைச் சேர்க்க + பொத்தானைப் பயன்படுத்தவும்."
|
||||
|
||||
#: data/gtk/window.blp:40
|
||||
#: data/gtk/window.blp:22
|
||||
msgid "No Hidden Games"
|
||||
msgstr "மறைக்கப்பட்ட விளையாட்டுகள் இல்லை"
|
||||
|
||||
#: data/gtk/window.blp:41
|
||||
#: data/gtk/window.blp:23
|
||||
msgid "Games you hide will appear here."
|
||||
msgstr "நீங்கள் மறைக்கும் விளையாட்டுகள் இங்கே தோன்றும்."
|
||||
|
||||
#: data/gtk/window.blp:64 data/gtk/window.blp:304
|
||||
#: data/gtk/window.blp:44 data/gtk/window.blp:293
|
||||
msgid "Back"
|
||||
msgstr "மீண்டும்"
|
||||
|
||||
#: data/gtk/window.blp:121
|
||||
#: data/gtk/window.blp:100
|
||||
msgid "Game Title"
|
||||
msgstr "விளையாட்டு தலைப்பு"
|
||||
|
||||
#: data/gtk/window.blp:176
|
||||
#: data/gtk/window.blp:151 src/game.py:158
|
||||
msgid "Play"
|
||||
msgstr "விளையாடு"
|
||||
|
||||
#: data/gtk/window.blp:243 data/gtk/window.blp:435
|
||||
#: data/gtk/window.blp:235 data/gtk/window.blp:421
|
||||
msgid "Add Game"
|
||||
msgstr "விளையாட்டைச் சேர்க்கவும்"
|
||||
|
||||
#: data/gtk/window.blp:250 data/gtk/window.blp:316
|
||||
#: data/gtk/window.blp:242 data/gtk/window.blp:305
|
||||
msgid "Main Menu"
|
||||
msgstr "முதன்மை பட்டியல்"
|
||||
|
||||
#: data/gtk/window.blp:311
|
||||
#: data/gtk/window.blp:300
|
||||
msgid "Hidden Games"
|
||||
msgstr "மறைக்கப்பட்ட விளையாட்டுகள்"
|
||||
|
||||
#: data/gtk/window.blp:374
|
||||
#: data/gtk/window.blp:360
|
||||
msgid "Sort"
|
||||
msgstr "வகைபடுத்து"
|
||||
|
||||
#: data/gtk/window.blp:377
|
||||
#: data/gtk/window.blp:363
|
||||
msgid "A-Z"
|
||||
msgstr "A-Z"
|
||||
|
||||
#: data/gtk/window.blp:383
|
||||
#: data/gtk/window.blp:369
|
||||
msgid "Z-A"
|
||||
msgstr "Z-A"
|
||||
|
||||
#: data/gtk/window.blp:389
|
||||
#: data/gtk/window.blp:375
|
||||
msgid "Newest"
|
||||
msgstr "புதியது"
|
||||
|
||||
#: data/gtk/window.blp:395
|
||||
#: data/gtk/window.blp:381
|
||||
msgid "Oldest"
|
||||
msgstr "பழமையானது"
|
||||
|
||||
#: data/gtk/window.blp:401
|
||||
#: data/gtk/window.blp:387
|
||||
msgid "Last Played"
|
||||
msgstr "கடைசியாக விளையாடியது"
|
||||
|
||||
#: data/gtk/window.blp:408
|
||||
#: data/gtk/window.blp:394
|
||||
msgid "Show Hidden"
|
||||
msgstr "மறைக்கப்பட்டதைக் காட்டு"
|
||||
|
||||
#: data/gtk/window.blp:421
|
||||
#: data/gtk/window.blp:407
|
||||
msgid "Keyboard Shortcuts"
|
||||
msgstr "விசைப்பலகை குறுக்குவழிகள்"
|
||||
|
||||
#: data/gtk/window.blp:426
|
||||
#: data/gtk/window.blp:412
|
||||
msgid "About Cartridges"
|
||||
msgstr "கார்ட்ரிட்ஜ்கள் பற்றி"
|
||||
|
||||
#. Translators: Replace this with your name for it to show up in the about window
|
||||
#: src/main.py:180
|
||||
#: src/main.py:137
|
||||
msgid "translator_credits"
|
||||
msgstr "K.B.Dharun Krishna <kbdharunkrishna@gmail.com>"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:164
|
||||
msgid "{} launched"
|
||||
msgstr "{} தொடங்கப்பட்டது"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:182
|
||||
msgid "{} hidden"
|
||||
msgstr "{} மறைக்கப்பட்டுள்ளது"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:185
|
||||
msgid "{} unhidden"
|
||||
msgstr "{} மறைக்கப்படாதது"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:241
|
||||
msgid "{} removed"
|
||||
msgstr "{} அகற்றப்பட்டது"
|
||||
|
||||
#: src/window.py:262
|
||||
msgid "Today"
|
||||
msgstr "இன்று"
|
||||
|
||||
#: src/window.py:264
|
||||
msgid "Yesterday"
|
||||
msgstr "நேற்று"
|
||||
|
||||
#. The variable is the date when the game was added
|
||||
#: src/window.py:194
|
||||
#: src/window.py:310
|
||||
msgid "Added: {}"
|
||||
msgstr "சேர்க்கப்பட்டது: {}"
|
||||
|
||||
#: src/window.py:197
|
||||
#: src/window.py:315
|
||||
msgid "Never"
|
||||
msgstr "ஒருபோதும் இல்லை"
|
||||
|
||||
#. The variable is the date when the game was last played
|
||||
#: src/window.py:201
|
||||
#: src/window.py:319
|
||||
msgid "Last played: {}"
|
||||
msgstr "கடைசியாக விளையாடியது: {}"
|
||||
|
||||
#: src/details_window.py:72
|
||||
msgid "Apply"
|
||||
msgstr "விண்ணப்பி"
|
||||
#: src/game.py:156
|
||||
msgid "Details"
|
||||
msgstr "விவரங்கள்"
|
||||
|
||||
#: src/details_window.py:78
|
||||
#: src/preferences.py:54
|
||||
msgid "Installation Not Found"
|
||||
msgstr "நிறுவல் கிடைக்கவில்லை"
|
||||
|
||||
#. The variable is the name of the game launcher
|
||||
#: src/preferences.py:56
|
||||
msgid "Select the {} configuration directory."
|
||||
msgstr "{} உள்ளமைவு கோப்பகத்தைத் தேர்ந்தெடுக்கவும்."
|
||||
|
||||
#. The variable is the name of the game launcher
|
||||
#: src/preferences.py:59
|
||||
msgid "Select the {} data directory."
|
||||
msgstr "{} தரவு கோப்பகத்தைத் தேர்ந்தெடுக்கவும்."
|
||||
|
||||
#: src/preferences.py:61 src/preferences.py:240
|
||||
msgid "Set Location"
|
||||
msgstr "இருப்பிடத்தை அமைக்கவும்"
|
||||
|
||||
#: src/preferences.py:132
|
||||
msgid "All games removed"
|
||||
msgstr "அனைத்து விளையாட்டுகளும் அகற்றப்பட்டன"
|
||||
|
||||
#: src/preferences.py:237
|
||||
msgid "Cache Not Found"
|
||||
msgstr "தற்காலிக சேமிப்பு கிடைக்கவில்லை"
|
||||
|
||||
#: src/preferences.py:238
|
||||
msgid "Select the Lutris cache directory."
|
||||
msgstr "லூட்ரிஸ் தற்காலிக சேமிப்பு கோப்பகத்தைத் தேர்ந்தெடுக்கவும்."
|
||||
|
||||
#: src/preferences.py:344
|
||||
msgid ""
|
||||
"An API key is required to use SteamGridDB. You can generate one {}here{}."
|
||||
msgstr ""
|
||||
"ஸ்டீம்கிரிட் டிபி (SteamGridDB) ஐப் பயன்படுத்த API விசை தேவை. நீங்கள் ஒன்றை {}இங்கே{} "
|
||||
"உருவாக்கலாம்."
|
||||
|
||||
#: src/utils/create_details_window.py:81
|
||||
msgid "Add New Game"
|
||||
msgstr "புதிய விளையாட்டைச் சேர்க்கவும்"
|
||||
|
||||
#: src/details_window.py:79
|
||||
#: src/utils/create_details_window.py:85
|
||||
msgid "Confirm"
|
||||
msgstr "உறுதிப்படுத்தவும்"
|
||||
|
||||
#: src/utils/create_details_window.py:96
|
||||
msgid "Apply"
|
||||
msgstr "விண்ணப்பி"
|
||||
|
||||
#: src/utils/create_details_window.py:130
|
||||
msgid "The title of the game"
|
||||
msgstr "விளையாட்டின் தலைப்பு"
|
||||
|
||||
#: src/utils/create_details_window.py:135
|
||||
msgid "Developer"
|
||||
msgstr "டெவலப்பர்"
|
||||
|
||||
#: src/utils/create_details_window.py:136
|
||||
msgid "The developer or publisher (optional)"
|
||||
msgstr "டெவலப்பர் அல்லது வெளியீட்டாளர் (விரும்பினால்)"
|
||||
|
||||
#. Translate this string as you would translate "file"
|
||||
#: src/details_window.py:92
|
||||
#: src/utils/create_details_window.py:147
|
||||
msgid "file.txt"
|
||||
msgstr "கோப்பு.txt"
|
||||
|
||||
#. As in software
|
||||
#: src/details_window.py:94
|
||||
#: src/utils/create_details_window.py:149
|
||||
msgid "program"
|
||||
msgstr "பயன்பாடு"
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:99 src/details_window.py:101
|
||||
#: src/utils/create_details_window.py:154
|
||||
#: src/utils/create_details_window.py:156
|
||||
msgid "C:\\path\\to\\{}"
|
||||
msgstr "C:\\பாதை\\டு \\{}"
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:105 src/details_window.py:107
|
||||
#: src/utils/create_details_window.py:160
|
||||
#: src/utils/create_details_window.py:162
|
||||
msgid "/path/to/{}"
|
||||
msgstr "/பாதை/டு/ {}"
|
||||
|
||||
#: src/details_window.py:112
|
||||
#: src/utils/create_details_window.py:166
|
||||
msgid ""
|
||||
"To launch the executable \"{}\", use the command:\n"
|
||||
"\n"
|
||||
@@ -473,186 +533,84 @@ msgstr ""
|
||||
"\n"
|
||||
"பாதையில் இடைவெளிகள் இருந்தால், அதை இரட்டை மேற்கோள்களில் போர்த்துவதை உறுதிசெய்யவும்!"
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:153
|
||||
#: src/utils/create_details_window.py:189
|
||||
msgid "Executable"
|
||||
msgstr "செயல்படுத்தக்கூடியது"
|
||||
|
||||
#: src/utils/create_details_window.py:190
|
||||
msgid "File to open or command to run when launching the game"
|
||||
msgstr "விளையாட்டைத் தொடங்கும் போது திறக்க கோப்பு அல்லது இயக்க கட்டளை"
|
||||
|
||||
#: src/utils/create_details_window.py:202
|
||||
msgid "Cancel"
|
||||
msgstr "ரத்துசெய்"
|
||||
|
||||
#: src/utils/create_details_window.py:259
|
||||
#: src/utils/create_details_window.py:269
|
||||
#: src/utils/create_details_window.py:275
|
||||
msgid "Couldn't Add Game"
|
||||
msgstr "விளையாட்டைச் சேர்க்க முடியவில்லை"
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:181
|
||||
#: src/utils/create_details_window.py:261
|
||||
#: src/utils/create_details_window.py:299
|
||||
#: src/utils/create_details_window.py:307
|
||||
msgid "Couldn't Apply Preferences"
|
||||
msgstr "விருப்பத்தேர்வுகளைப் பயன்படுத்த முடியவில்லை"
|
||||
|
||||
#: src/utils/create_details_window.py:269
|
||||
#: src/utils/create_details_window.py:300
|
||||
msgid "Game title cannot be empty."
|
||||
msgstr "விளையாட்டு தலைப்பு காலியாக இருக்கக்கூடாது."
|
||||
|
||||
#: src/details_window.py:153 src/details_window.py:189
|
||||
#: src/utils/create_details_window.py:275
|
||||
#: src/utils/create_details_window.py:308
|
||||
msgid "Executable cannot be empty."
|
||||
msgstr "இயங்கக்கூடியது காலியாக இருக்க முடியாது."
|
||||
|
||||
#: src/details_window.py:180 src/details_window.py:188
|
||||
msgid "Couldn't Apply Preferences"
|
||||
msgstr "விருப்பங்களைப் பயன்படுத்த முடியவில்லை"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:138
|
||||
msgid "{} launched"
|
||||
msgstr "{} தொடங்கப்பட்டது"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:152
|
||||
msgid "{} hidden"
|
||||
msgstr "{} மறைக்கப்பட்டுள்ளது"
|
||||
|
||||
#: src/game.py:152
|
||||
msgid "{} unhidden"
|
||||
msgstr "{} மறைக்கப்படாதது"
|
||||
|
||||
#: src/game.py:169
|
||||
msgid "{} removed"
|
||||
msgstr "{} அகற்றப்பட்டது"
|
||||
|
||||
#: src/preferences.py:111
|
||||
msgid "All games removed"
|
||||
msgstr "அனைத்து விளையாட்டுகளும் அகற்றப்பட்டன"
|
||||
|
||||
#: src/preferences.py:159
|
||||
msgid ""
|
||||
"An API key is required to use SteamGridDB. You can generate one {}here{}."
|
||||
msgstr ""
|
||||
"ஸ்டீம்கிரிட் டிபி (SteamGridDB) ஐப் பயன்படுத்த API விசை தேவை. நீங்கள் ஒன்றை {}இங்கே{} "
|
||||
"உருவாக்கலாம்."
|
||||
|
||||
#: src/preferences.py:284
|
||||
#, fuzzy
|
||||
#| msgid "Installation Not Found"
|
||||
msgid "Installation Not Found"
|
||||
msgstr "நிறுவல் கிடைக்கவில்லை"
|
||||
|
||||
#: src/preferences.py:286
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} data directory."
|
||||
msgid "Select a valid directory."
|
||||
msgstr "{} தரவு கோப்பகத்தைத் தேர்ந்தெடுக்கவும்."
|
||||
|
||||
#: src/preferences.py:348
|
||||
msgid "Invalid Directory"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:352
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} data directory."
|
||||
msgid "Select the {} cache directory."
|
||||
msgstr "{} தரவு கோப்பகத்தைத் தேர்ந்தெடுக்கவும்."
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:355
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} configuration directory."
|
||||
msgid "Select the {} configuration directory."
|
||||
msgstr "{} உள்ளமைவு கோப்பகத்தைத் தேர்ந்தெடுக்கவும்."
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:358
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} data directory."
|
||||
msgid "Select the {} data directory."
|
||||
msgstr "{} தரவு கோப்பகத்தைத் தேர்ந்தெடுக்கவும்."
|
||||
|
||||
#: src/preferences.py:364
|
||||
msgid "Set Location"
|
||||
msgstr "இருப்பிடத்தை அமைக்கவும்"
|
||||
|
||||
#: src/utils/create_dialog.py:25
|
||||
msgid "Dismiss"
|
||||
msgstr "நிராகரி"
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:47
|
||||
msgid "Couldn't Authenticate SteamGridDB"
|
||||
msgstr "ஸ்டீம்கிரிட் டிபி (SteamGridDB) ஐ அங்கீகரிக்க முடியவில்லை"
|
||||
#: src/utils/importer.py:42
|
||||
msgid "Importing Games…"
|
||||
msgstr "விளையாட்டுகளை இறக்குமதி செய்கிறது…"
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:48
|
||||
msgid "Verify your API key in preferences"
|
||||
msgstr "உங்கள் API விசையை விருப்பங்களில் சரிபார்க்கவும்"
|
||||
#: src/utils/importer.py:77
|
||||
msgid "Importing Covers…"
|
||||
msgstr "அட்டைகளை இறக்குமதி செய்கிறது…"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "The Steam directory cannot be found."
|
||||
#~ msgid "Directory not Valid"
|
||||
#~ msgstr "Steam (ஸ்டீம்) கோப்பகத்தைக் கண்டறிய முடியவில்லை."
|
||||
#: src/utils/importer.py:92
|
||||
msgid "No new games were found on your system."
|
||||
msgstr "உங்கள் கணினியில் புதிய விளையாட்டுகள் எதுவும் இல்லை."
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Confirm"
|
||||
#~ msgid "Configuration"
|
||||
#~ msgstr "உறுதிப்படுத்தவும்"
|
||||
#: src/utils/importer.py:100
|
||||
msgid "Game Imported"
|
||||
msgstr "விளையாட்டு இறக்குமதி செய்யப்பட்டது"
|
||||
|
||||
#~ msgid "Steam Install Location"
|
||||
#~ msgstr "Steam (ஸ்டீம்) நிறுவல் இடம்"
|
||||
#: src/utils/importer.py:101
|
||||
msgid "Successfully imported 1 game."
|
||||
msgstr "1 விளையாட்டு வெற்றிகரமாக இறக்குமதி செய்யப்பட்டது."
|
||||
|
||||
#~ msgid "Lutris Install Location"
|
||||
#~ msgstr "லூட்ரிஸ் நிறுவல் இடம்"
|
||||
#: src/utils/importer.py:107
|
||||
msgid "Games Imported"
|
||||
msgstr "விளையாட்டுகள் இறக்குமதி செய்யப்பட்டன"
|
||||
|
||||
#~ msgid "Heroic Install Location"
|
||||
#~ msgstr "Heroic (ஹீரோயிக்) நிறுவல் இடம்"
|
||||
#. The variable is the number of games
|
||||
#: src/utils/importer.py:109
|
||||
msgid "Successfully imported {} games."
|
||||
msgstr "{} விளையாட்டுகள் வெற்றிகரமாக இறக்குமதி செய்யப்பட்டன."
|
||||
|
||||
#~ msgid "Bottles Install Location"
|
||||
#~ msgstr "Bottles (பாட்டில்கள்) நிறுவும் இடம்"
|
||||
#: src/utils/importer.py:120 src/utils/steamgriddb.py:113
|
||||
msgid "Couldn't Connect to SteamGridDB"
|
||||
msgstr "ஸ்டீம்கிரிட் டிபி (SteamGridDB) உடன் இணைக்க முடியவில்லை"
|
||||
|
||||
#~ msgid "Today"
|
||||
#~ msgstr "இன்று"
|
||||
|
||||
#~ msgid "Yesterday"
|
||||
#~ msgstr "நேற்று"
|
||||
|
||||
#~ msgid "Cache Not Found"
|
||||
#~ msgstr "தற்காலிக சேமிப்பு கிடைக்கவில்லை"
|
||||
|
||||
#~ msgid "Select the Lutris cache directory."
|
||||
#~ msgstr "லூட்ரிஸ் தற்காலிக சேமிப்பு கோப்பகத்தைத் தேர்ந்தெடுக்கவும்."
|
||||
|
||||
#~ msgid "Importing Games…"
|
||||
#~ msgstr "விளையாட்டுகளை இறக்குமதி செய்கிறது…"
|
||||
|
||||
#~ msgid "Importing Covers…"
|
||||
#~ msgstr "அட்டைகளை இறக்குமதி செய்கிறது…"
|
||||
|
||||
#~ msgid "No new games found"
|
||||
#~ msgstr "புதிய விளையாட்டுகள் எதுவும் கண்டறியப்படவில்லை"
|
||||
|
||||
#~ msgid "1 game imported"
|
||||
#~ msgstr "1 விளையாட்டு இறக்குமதி செய்யப்பட்டது"
|
||||
|
||||
#~ msgid "{} games imported"
|
||||
#~ msgstr "{} விளையாட்டுகள் இறக்குமதி செய்யப்பட்டன"
|
||||
|
||||
#~ msgid "Directory to use when importing games"
|
||||
#~ msgstr "விளையாட்டுகளை இறக்குமதி செய்யும் போது பயன்படுத்த வேண்டிய அடைவு"
|
||||
|
||||
#~ msgid "Extra Steam Libraries"
|
||||
#~ msgstr "கூடுதல் ஸ்டீம் (Steam) நூலகங்கள்"
|
||||
|
||||
#~ msgid "Select other directories where you have Steam games installed"
|
||||
#~ msgstr "ஸ்டீம் (Steam) கேம்களை நிறுவிய பிற கோப்பகங்களைத் தேர்ந்தெடுக்கவும்"
|
||||
|
||||
#~ msgid "Clear"
|
||||
#~ msgstr "தெளிவு"
|
||||
|
||||
#~ msgid "Directory to use when importing game covers"
|
||||
#~ msgstr "விளையாட்டு அட்டைகளை இறக்குமதி செய்யும் போது பயன்படுத்த வேண்டிய அடைவு"
|
||||
|
||||
#~ msgid "Details"
|
||||
#~ msgstr "விவரங்கள்"
|
||||
|
||||
#~ msgid "No new games were found on your system."
|
||||
#~ msgstr "உங்கள் கணினியில் புதிய விளையாட்டுகள் எதுவும் இல்லை."
|
||||
|
||||
#~ msgid "Successfully imported 1 game."
|
||||
#~ msgstr "1 விளையாட்டு வெற்றிகரமாக இறக்குமதி செய்யப்பட்டது."
|
||||
|
||||
#~ msgid "Successfully imported {} games."
|
||||
#~ msgstr "{} விளையாட்டுகள் வெற்றிகரமாக இறக்குமதி செய்யப்பட்டன."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Looks like you have multiple Steam libraries. Would you like to add them "
|
||||
#~ "in preferences?"
|
||||
#~ msgstr ""
|
||||
#~ "உங்களிடம் பல ஸ்டீம் (Steam) நூலகங்கள் இருப்பது போல் தெரிகிறது. அவற்றை "
|
||||
#~ "விருப்பத்தேர்வுகளில் சேர்க்க விரும்புகிறீர்களா?"
|
||||
#: src/utils/importer.py:145
|
||||
msgid ""
|
||||
"Looks like you have multiple Steam libraries. Would you like to add them in "
|
||||
"preferences?"
|
||||
msgstr ""
|
||||
"உங்களிடம் பல ஸ்டீம் (Steam) நூலகங்கள் இருப்பது போல் தெரிகிறது. அவற்றை விருப்பத்தேர்வுகளில் "
|
||||
"சேர்க்க விரும்புகிறீர்களா?"
|
||||
|
||||
#~ msgid "Launch your games"
|
||||
#~ msgstr "உங்கள் விளையாட்டுகளைத் தொடங்கவும்"
|
||||
@@ -730,6 +688,9 @@ msgstr "உங்கள் API விசையை விருப்பங்க
|
||||
#~ msgid "No new games were found in the Steam library."
|
||||
#~ msgstr "Steam (ஸ்டீம்) நூலகத்தில் புதிய விளையாட்டுகள் எதுவும் இல்லை."
|
||||
|
||||
#~ msgid "The Steam directory cannot be found."
|
||||
#~ msgstr "Steam (ஸ்டீம்) கோப்பகத்தைக் கண்டறிய முடியவில்லை."
|
||||
|
||||
#~ msgid "Talking to Steam"
|
||||
#~ msgstr "ஸ்டிமுடன் (Steam) பேசுகிறேன்"
|
||||
|
||||
|
||||
622
po/tr.po
@@ -1,622 +0,0 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR kramo
|
||||
# This file is distributed under the same license as the Cartridges package.
|
||||
# Sabri Ünal <libreajans@gmail.com>, 2023.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cartridges\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-05 14:36+0200\n"
|
||||
"PO-Revision-Date: 2023-05-26 18:10+0000\n"
|
||||
"Last-Translator: Sabri Ünal <libreajans@gmail.com>\n"
|
||||
"Language-Team: Turkish <https://hosted.weblate.org/projects/cartridges/"
|
||||
"cartridges/tr/>\n"
|
||||
"Language: tr\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 4.18-dev\n"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:3
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:47
|
||||
#: src/main.py:162
|
||||
msgid "Cartridges"
|
||||
msgstr "Kartuşlar"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:4
|
||||
msgid "Game Launcher"
|
||||
msgstr "Oyun Başlatıcı"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:5
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:7
|
||||
msgid "Launch all your games"
|
||||
msgstr "Tüm oyunlarınızı başlatın"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:11
|
||||
msgid "gaming;launcher;steam;lutris;heroic;bottles;itch;"
|
||||
msgstr "oyun;başlatıcı;steam;lutris;heroic;bottles;itch;"
|
||||
|
||||
#: 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 ""
|
||||
"Kartuşlar, tüm oyunlarınız için basit bir oyun başlatıcıdır. Oturum açmaya "
|
||||
"gerek kalmadan Steam, Lutris, Heroic ve daha fazla sağlayıcıdan oyun içe "
|
||||
"aktarma desteğine sahiptir. Oyunları sıralayabilir, gizleyebilir veya "
|
||||
"SteamGridDB'den kapak resmi indirebilirsiniz."
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:30
|
||||
msgid "Library"
|
||||
msgstr "Kütüphane"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 src/details_window.py:67
|
||||
msgid "Edit Game Details"
|
||||
msgstr "Oyun Ayrıntılarını Düzenle"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:38 data/gtk/window.blp:71
|
||||
msgid "Game Details"
|
||||
msgstr "Oyun Ayrıntıları"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:42 data/gtk/window.blp:416
|
||||
#: src/details_window.py:239
|
||||
msgid "Preferences"
|
||||
msgstr "Tercihler"
|
||||
|
||||
#: data/gtk/details-window.blp:25
|
||||
msgid "Cancel"
|
||||
msgstr "İptal"
|
||||
|
||||
#: data/gtk/details-window.blp:57
|
||||
msgid "New Cover"
|
||||
msgstr "Yeni Kapak"
|
||||
|
||||
#: data/gtk/details-window.blp:75
|
||||
msgid "Delete Cover"
|
||||
msgstr "Kapağı Sil"
|
||||
|
||||
#: data/gtk/details-window.blp:101 data/gtk/details-window.blp:106
|
||||
#: data/gtk/game.blp:80
|
||||
msgid "Title"
|
||||
msgstr "Başlık"
|
||||
|
||||
#: data/gtk/details-window.blp:102
|
||||
msgid "The title of the game"
|
||||
msgstr "Oyunun başlığı"
|
||||
|
||||
#: data/gtk/details-window.blp:112 data/gtk/details-window.blp:117
|
||||
msgid "Developer"
|
||||
msgstr "Geliştirici"
|
||||
|
||||
#: data/gtk/details-window.blp:113
|
||||
msgid "The developer or publisher (optional)"
|
||||
msgstr "Geliştirici veya yayıncı (isteğe bağlı)"
|
||||
|
||||
#: data/gtk/details-window.blp:123 data/gtk/details-window.blp:155
|
||||
msgid "Executable"
|
||||
msgstr "Yürütülebilir"
|
||||
|
||||
#: data/gtk/details-window.blp:124
|
||||
msgid "File to open or command to run when launching the game"
|
||||
msgstr "Oyun başlatılırken açılacak dosya veya çalıştırılacak komut"
|
||||
|
||||
#: data/gtk/details-window.blp:130
|
||||
msgid "More Info"
|
||||
msgstr "Daha Fazla Bilgi"
|
||||
|
||||
#: data/gtk/game.blp:102 data/gtk/game.blp:121 data/gtk/window.blp:195
|
||||
msgid "Edit"
|
||||
msgstr "Düzenle"
|
||||
|
||||
#: data/gtk/game.blp:107 src/window.py:171
|
||||
msgid "Hide"
|
||||
msgstr "Gizle"
|
||||
|
||||
#: data/gtk/game.blp:112 data/gtk/game.blp:131 data/gtk/preferences.blp:56
|
||||
#: data/gtk/window.blp:209
|
||||
msgid "Remove"
|
||||
msgstr "Kaldır"
|
||||
|
||||
#: data/gtk/game.blp:126 src/window.py:173
|
||||
msgid "Unhide"
|
||||
msgstr "Göster"
|
||||
|
||||
#: data/gtk/help-overlay.blp:11 data/gtk/preferences.blp:9
|
||||
msgid "General"
|
||||
msgstr "Genel"
|
||||
|
||||
#: data/gtk/help-overlay.blp:14
|
||||
msgid "Quit"
|
||||
msgstr "Çık"
|
||||
|
||||
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:217 data/gtk/window.blp:257
|
||||
#: data/gtk/window.blp:323
|
||||
msgid "Search"
|
||||
msgstr "Ara"
|
||||
|
||||
#: data/gtk/help-overlay.blp:24
|
||||
msgid "Show preferences"
|
||||
msgstr "Tercihleri göster"
|
||||
|
||||
#: data/gtk/help-overlay.blp:29
|
||||
msgid "Shortcuts"
|
||||
msgstr "Kısayollar"
|
||||
|
||||
#: data/gtk/help-overlay.blp:34 src/game.py:102 src/preferences.py:112
|
||||
msgid "Undo"
|
||||
msgstr "Geri Al"
|
||||
|
||||
#: data/gtk/help-overlay.blp:39
|
||||
msgid "Open menu"
|
||||
msgstr "Menüyü aç"
|
||||
|
||||
#: data/gtk/help-overlay.blp:45
|
||||
msgid "Games"
|
||||
msgstr "Oyunlar"
|
||||
|
||||
#: data/gtk/help-overlay.blp:48
|
||||
msgid "Add new game"
|
||||
msgstr "Yeni oyun ekle"
|
||||
|
||||
#: data/gtk/help-overlay.blp:53
|
||||
msgid "Import games"
|
||||
msgstr "Oyunları içe aktar"
|
||||
|
||||
#: data/gtk/help-overlay.blp:58
|
||||
msgid "Show hidden games"
|
||||
msgstr "Gizli oyunları göster"
|
||||
|
||||
#: data/gtk/help-overlay.blp:63
|
||||
msgid "Remove game"
|
||||
msgstr "Oyunu kaldır"
|
||||
|
||||
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:268
|
||||
msgid "Behavior"
|
||||
msgstr "Davranış"
|
||||
|
||||
#: data/gtk/preferences.blp:16
|
||||
msgid "Exit After Launching Games"
|
||||
msgstr "Oyunu Başlatıldıktan Sonra Çık"
|
||||
|
||||
#: data/gtk/preferences.blp:25
|
||||
msgid "Cover Image Launches Game"
|
||||
msgstr "Kapak Görüntüsü Oyunu Başlatır"
|
||||
|
||||
#: data/gtk/preferences.blp:26
|
||||
msgid "Swaps the behavior of the cover image and the play button"
|
||||
msgstr "Kapak görüntüsünün ve oyna düğmesinin davranışını değiştirir"
|
||||
|
||||
#: data/gtk/preferences.blp:36 src/details_window.py:81
|
||||
msgid "Images"
|
||||
msgstr "Görüntüler"
|
||||
|
||||
#: data/gtk/preferences.blp:39
|
||||
msgid "High Quality Images"
|
||||
msgstr "Yüksek Kaliteli Görüntüler"
|
||||
|
||||
#: data/gtk/preferences.blp:40
|
||||
msgid "Save game covers losslessly at the cost of storage"
|
||||
msgstr ""
|
||||
"Oyun kapaklarını, daha çok depolama alanı gerektirmesine rağmen, kayıpsız "
|
||||
"kaydet"
|
||||
|
||||
#: data/gtk/preferences.blp:50
|
||||
msgid "Danger Zone"
|
||||
msgstr "Tehlikeli Bölge"
|
||||
|
||||
#: data/gtk/preferences.blp:53
|
||||
msgid "Remove All Games"
|
||||
msgstr "Tüm Oyunları Kaldır"
|
||||
|
||||
#: data/gtk/preferences.blp:85 data/gtk/window.blp:27 data/gtk/window.blp:442
|
||||
msgid "Import"
|
||||
msgstr "İçe Aktar"
|
||||
|
||||
#: data/gtk/preferences.blp:89
|
||||
msgid "Sources"
|
||||
msgstr "Kaynaklar"
|
||||
|
||||
#: data/gtk/preferences.blp:92
|
||||
msgid "Steam"
|
||||
msgstr "Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:96 data/gtk/preferences.blp:110
|
||||
#: data/gtk/preferences.blp:151 data/gtk/preferences.blp:192
|
||||
#: data/gtk/preferences.blp:206 data/gtk/preferences.blp:220
|
||||
#: data/gtk/preferences.blp:234
|
||||
#, fuzzy
|
||||
#| msgid "itch Install Location"
|
||||
msgid "Install Location"
|
||||
msgstr "itch Kurulu Konumu"
|
||||
|
||||
#: data/gtk/preferences.blp:106
|
||||
msgid "Lutris"
|
||||
msgstr "Lutris"
|
||||
|
||||
#: data/gtk/preferences.blp:119
|
||||
#, fuzzy
|
||||
#| msgid "Lutris Cache Location"
|
||||
msgid "Cache Location"
|
||||
msgstr "Lutris Önbellek Konumu"
|
||||
|
||||
#: data/gtk/preferences.blp:128
|
||||
msgid "Import Steam Games"
|
||||
msgstr "Steam Oyunlarını İçe Aktar"
|
||||
|
||||
#: data/gtk/preferences.blp:137
|
||||
#, fuzzy
|
||||
#| msgid "Import Steam Games"
|
||||
msgid "Import Flatpak Games"
|
||||
msgstr "Steam Oyunlarını İçe Aktar"
|
||||
|
||||
#: data/gtk/preferences.blp:147
|
||||
msgid "Heroic"
|
||||
msgstr "Heroic"
|
||||
|
||||
#: data/gtk/preferences.blp:160
|
||||
msgid "Import Epic Games"
|
||||
msgstr "Epic Oyunlarını İçe Aktar"
|
||||
|
||||
#: data/gtk/preferences.blp:169
|
||||
msgid "Import GOG Games"
|
||||
msgstr "GOG Oyunlarını İçe Aktar"
|
||||
|
||||
#: data/gtk/preferences.blp:178
|
||||
msgid "Import Sideloaded Games"
|
||||
msgstr "Yandan Yüklenmiş Oyunları İçe Aktar"
|
||||
|
||||
#: data/gtk/preferences.blp:188
|
||||
msgid "Bottles"
|
||||
msgstr "Şişeler"
|
||||
|
||||
#: data/gtk/preferences.blp:202
|
||||
msgid "itch"
|
||||
msgstr "itch"
|
||||
|
||||
#: data/gtk/preferences.blp:216
|
||||
msgid "Legendary"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:230
|
||||
msgid "Flatpak"
|
||||
msgstr ""
|
||||
|
||||
#: data/gtk/preferences.blp:243
|
||||
#, fuzzy
|
||||
#| msgid "Game Launcher"
|
||||
msgid "Import Game Launchers"
|
||||
msgstr "Oyun Başlatıcı"
|
||||
|
||||
#: data/gtk/preferences.blp:256
|
||||
msgid "SteamGridDB"
|
||||
msgstr "SteamGridDB"
|
||||
|
||||
#: data/gtk/preferences.blp:260
|
||||
msgid "Authentication"
|
||||
msgstr "Kimlik Doğrulaması"
|
||||
|
||||
#: data/gtk/preferences.blp:263
|
||||
msgid "API Key"
|
||||
msgstr "API anahtarı"
|
||||
|
||||
#: data/gtk/preferences.blp:271
|
||||
msgid "Use SteamGridDB"
|
||||
msgstr "SteamGridDB Kullan"
|
||||
|
||||
#: data/gtk/preferences.blp:272
|
||||
msgid "Download images when adding or importing games"
|
||||
msgstr "Oyun eklerken veya içe aktarırken görüntüleri indir"
|
||||
|
||||
#: data/gtk/preferences.blp:281
|
||||
msgid "Prefer Over Official Images"
|
||||
msgstr "Resmî Görsellere Yeğle"
|
||||
|
||||
#: data/gtk/preferences.blp:290
|
||||
msgid "Prefer Animated Images"
|
||||
msgstr "Hareketli Görselleri Yeğle"
|
||||
|
||||
#: data/gtk/window.blp:6 data/gtk/window.blp:14
|
||||
msgid "No Games Found"
|
||||
msgstr "Hiçbir Oyun Bulunamadı"
|
||||
|
||||
#: data/gtk/window.blp:7 data/gtk/window.blp:15
|
||||
msgid "Try a different search."
|
||||
msgstr "Başka arama dene."
|
||||
|
||||
#: data/gtk/window.blp:21
|
||||
msgid "No Games"
|
||||
msgstr "Oyun Yok"
|
||||
|
||||
#: data/gtk/window.blp:22
|
||||
msgid "Use the + button to add games."
|
||||
msgstr "Oyun eklemek için + düğmesini kullanın."
|
||||
|
||||
#: data/gtk/window.blp:40
|
||||
msgid "No Hidden Games"
|
||||
msgstr "Gizli Oyun Yok"
|
||||
|
||||
#: data/gtk/window.blp:41
|
||||
msgid "Games you hide will appear here."
|
||||
msgstr "Gizlediğiniz oyunlar burada belirecek."
|
||||
|
||||
#: data/gtk/window.blp:64 data/gtk/window.blp:304
|
||||
msgid "Back"
|
||||
msgstr "Geri"
|
||||
|
||||
#: data/gtk/window.blp:121
|
||||
msgid "Game Title"
|
||||
msgstr "Oyun Başlığı"
|
||||
|
||||
#: data/gtk/window.blp:176
|
||||
msgid "Play"
|
||||
msgstr "Oyna"
|
||||
|
||||
#: data/gtk/window.blp:243 data/gtk/window.blp:435
|
||||
msgid "Add Game"
|
||||
msgstr "Oyun Ekle"
|
||||
|
||||
#: data/gtk/window.blp:250 data/gtk/window.blp:316
|
||||
msgid "Main Menu"
|
||||
msgstr "Ana Menü"
|
||||
|
||||
#: data/gtk/window.blp:311
|
||||
msgid "Hidden Games"
|
||||
msgstr "Gizli Oyunlar"
|
||||
|
||||
#: data/gtk/window.blp:374
|
||||
msgid "Sort"
|
||||
msgstr "Sırala"
|
||||
|
||||
#: data/gtk/window.blp:377
|
||||
msgid "A-Z"
|
||||
msgstr "A-Z"
|
||||
|
||||
#: data/gtk/window.blp:383
|
||||
msgid "Z-A"
|
||||
msgstr "Z-A"
|
||||
|
||||
#: data/gtk/window.blp:389
|
||||
msgid "Newest"
|
||||
msgstr "En Yeni"
|
||||
|
||||
#: data/gtk/window.blp:395
|
||||
msgid "Oldest"
|
||||
msgstr "En Eski"
|
||||
|
||||
#: data/gtk/window.blp:401
|
||||
msgid "Last Played"
|
||||
msgstr "Son Oynanan"
|
||||
|
||||
#: data/gtk/window.blp:408
|
||||
msgid "Show Hidden"
|
||||
msgstr "Gizlileri Göster"
|
||||
|
||||
#: data/gtk/window.blp:421
|
||||
msgid "Keyboard Shortcuts"
|
||||
msgstr "Klavye Kısayolları"
|
||||
|
||||
#: data/gtk/window.blp:426
|
||||
msgid "About Cartridges"
|
||||
msgstr "Kartuşlar Hakkında"
|
||||
|
||||
#. Translators: Replace this with your name for it to show up in the about window
|
||||
#: src/main.py:180
|
||||
msgid "translator_credits"
|
||||
msgstr "Sabri Ünal <libreajans@gmail.com>"
|
||||
|
||||
#. The variable is the date when the game was added
|
||||
#: src/window.py:194
|
||||
msgid "Added: {}"
|
||||
msgstr "Eklendi: {}"
|
||||
|
||||
#: src/window.py:197
|
||||
msgid "Never"
|
||||
msgstr "Asla"
|
||||
|
||||
#. The variable is the date when the game was last played
|
||||
#: src/window.py:201
|
||||
msgid "Last played: {}"
|
||||
msgstr "Son oynanma: {}"
|
||||
|
||||
#: src/details_window.py:72
|
||||
msgid "Apply"
|
||||
msgstr "Uygula"
|
||||
|
||||
#: src/details_window.py:78
|
||||
msgid "Add New Game"
|
||||
msgstr "Yeni Oyun Ekle"
|
||||
|
||||
#: src/details_window.py:79
|
||||
msgid "Confirm"
|
||||
msgstr "Doğrula"
|
||||
|
||||
#. Translate this string as you would translate "file"
|
||||
#: src/details_window.py:92
|
||||
msgid "file.txt"
|
||||
msgstr "dosya.txt"
|
||||
|
||||
#. As in software
|
||||
#: src/details_window.py:94
|
||||
msgid "program"
|
||||
msgstr "program"
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:99 src/details_window.py:101
|
||||
msgid "C:\\path\\to\\{}"
|
||||
msgstr "C:\\yol\\klasör\\{}"
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:105 src/details_window.py:107
|
||||
msgid "/path/to/{}"
|
||||
msgstr "/yol/klasör/{}"
|
||||
|
||||
#: src/details_window.py:112
|
||||
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 ""
|
||||
"\"{}\" yürütülebilirini başlatmak için şu komutu kullanın:\n"
|
||||
"\n"
|
||||
"<tt>\"{}\"</tt>\n"
|
||||
"\n"
|
||||
"\"{}\" dosyasını öntanımlı uygulamayla açmak için şunu kullanın:\n"
|
||||
"\n"
|
||||
"<tt>\"{}\"</tt>\n"
|
||||
"\n"
|
||||
"Yol boşluk içeriyorsa, çift tırnak içine aldığınızdan emin olun!"
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:153
|
||||
msgid "Couldn't Add Game"
|
||||
msgstr "Oyun Eklenemedi"
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:181
|
||||
msgid "Game title cannot be empty."
|
||||
msgstr "Oyun başlığı boş olamaz."
|
||||
|
||||
#: src/details_window.py:153 src/details_window.py:189
|
||||
msgid "Executable cannot be empty."
|
||||
msgstr "Çalıştırılabilir boş olamaz."
|
||||
|
||||
#: src/details_window.py:180 src/details_window.py:188
|
||||
msgid "Couldn't Apply Preferences"
|
||||
msgstr "Tercihler Uygulanamadı"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:138
|
||||
msgid "{} launched"
|
||||
msgstr "{} başlatıldı"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:152
|
||||
msgid "{} hidden"
|
||||
msgstr "{} gizli"
|
||||
|
||||
#: src/game.py:152
|
||||
msgid "{} unhidden"
|
||||
msgstr "{} görünür"
|
||||
|
||||
#: src/game.py:169
|
||||
msgid "{} removed"
|
||||
msgstr "{} kaldırıldı"
|
||||
|
||||
#: src/preferences.py:111
|
||||
msgid "All games removed"
|
||||
msgstr "Tüm oyunlar kaldırıldı"
|
||||
|
||||
#: src/preferences.py:159
|
||||
msgid ""
|
||||
"An API key is required to use SteamGridDB. You can generate one {}here{}."
|
||||
msgstr ""
|
||||
"SteamGridDBʼyi kullanmak için API anahtarı gereklidir. {}Buradan{} bir tane "
|
||||
"oluşturabilirsiniz."
|
||||
|
||||
#: src/preferences.py:284
|
||||
#, fuzzy
|
||||
#| msgid "Installation Not Found"
|
||||
msgid "Installation Not Found"
|
||||
msgstr "Kurulum Bulunamadı"
|
||||
|
||||
#: src/preferences.py:286
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} data directory."
|
||||
msgid "Select a valid directory."
|
||||
msgstr "{} veri dizinini seç."
|
||||
|
||||
#: src/preferences.py:348
|
||||
msgid "Invalid Directory"
|
||||
msgstr ""
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:352
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} data directory."
|
||||
msgid "Select the {} cache directory."
|
||||
msgstr "{} veri dizinini seç."
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:355
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} configuration directory."
|
||||
msgid "Select the {} configuration directory."
|
||||
msgstr "{} yapılandırma dizinini seç."
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:358
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} data directory."
|
||||
msgid "Select the {} data directory."
|
||||
msgstr "{} veri dizinini seç."
|
||||
|
||||
#: src/preferences.py:364
|
||||
msgid "Set Location"
|
||||
msgstr "Konum Ayarla"
|
||||
|
||||
#: src/utils/create_dialog.py:25
|
||||
msgid "Dismiss"
|
||||
msgstr "Vazgeç"
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:47
|
||||
#, fuzzy
|
||||
#| msgid "Couldn't Connect to SteamGridDB"
|
||||
msgid "Couldn't Authenticate SteamGridDB"
|
||||
msgstr "SteamGridDBʼye bağlanılamadı"
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:48
|
||||
msgid "Verify your API key in preferences"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Cache Not Found"
|
||||
#~ msgid "Directory not Valid"
|
||||
#~ msgstr "Önbellek Bulunamadı"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Confirm"
|
||||
#~ msgid "Configuration"
|
||||
#~ msgstr "Doğrula"
|
||||
|
||||
#~ msgid "Steam Install Location"
|
||||
#~ msgstr "Steam Kurulu Konumu"
|
||||
|
||||
#~ msgid "Lutris Install Location"
|
||||
#~ msgstr "Lutris Kurulu Konumu"
|
||||
|
||||
#~ msgid "Heroic Install Location"
|
||||
#~ msgstr "Heroic Kurulu Konumu"
|
||||
|
||||
#~ msgid "Bottles Install Location"
|
||||
#~ msgstr "Şişeler Kurulu Konumu"
|
||||
|
||||
#~ msgid "Today"
|
||||
#~ msgstr "Bugün"
|
||||
|
||||
#~ msgid "Yesterday"
|
||||
#~ msgstr "Dün"
|
||||
|
||||
#~ msgid "Select the Lutris cache directory."
|
||||
#~ msgstr "Lutris önbellek dizinini seç."
|
||||
|
||||
#~ msgid "Importing Games…"
|
||||
#~ msgstr "Oyunlar İçe Aktarılıyor…"
|
||||
|
||||
#~ msgid "Importing Covers…"
|
||||
#~ msgstr "Kapaklar İçe Aktarılıyor…"
|
||||
|
||||
#~ msgid "No new games found"
|
||||
#~ msgstr "Yeni oyun bulunamadı"
|
||||
|
||||
#~ msgid "1 game imported"
|
||||
#~ msgstr "1 oyun içe aktarıldı"
|
||||
|
||||
#~ msgid "{} games imported"
|
||||
#~ msgstr "{} oyun içe aktarıldı"
|
||||
581
po/uk.po
@@ -3,30 +3,28 @@
|
||||
# This file is distributed under the same license as the cartridges package.
|
||||
# kramo <contact@kramo.hu>, 2023.
|
||||
# Dan <denqwerta@gmail.com>, 2023.
|
||||
# Вова Смірнов <vovasmirnon5895@gmail.com>, 2023.
|
||||
# Dan <jonweblin2205@protonmail.com>, 2023.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: cartridges\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-05 14:36+0200\n"
|
||||
"PO-Revision-Date: 2023-07-01 22:51+0000\n"
|
||||
"Last-Translator: Dan <jonweblin2205@protonmail.com>\n"
|
||||
"POT-Creation-Date: 2023-04-11 23:33+0200\n"
|
||||
"PO-Revision-Date: 2023-04-14 12:29+0000\n"
|
||||
"Last-Translator: Dan <denqwerta@gmail.com>\n"
|
||||
"Language-Team: Ukrainian <https://hosted.weblate.org/projects/cartridges/"
|
||||
"cartridges/uk/>\n"
|
||||
"Language: uk\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.0-dev\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 4.17-dev\n"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:3
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:47
|
||||
#: src/main.py:162
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:6 data/gtk/window.blp:29
|
||||
#: src/main.py:119
|
||||
msgid "Cartridges"
|
||||
msgstr "Картриджі"
|
||||
msgstr "Cartridges"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:4
|
||||
msgid "Game Launcher"
|
||||
@@ -37,10 +35,6 @@ msgstr "Ігровий лаунчер"
|
||||
msgid "Launch all your games"
|
||||
msgstr "Запустіть усі свої ігри"
|
||||
|
||||
#: data/hu.kramo.Cartridges.desktop.in:11
|
||||
msgid "gaming;launcher;steam;lutris;heroic;bottles;itch;"
|
||||
msgstr "ігри;лаунчер;steam;lutris;heroic;bottles;itch;"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:9
|
||||
msgid ""
|
||||
"Cartridges is a simple game launcher for all of your games. It has support "
|
||||
@@ -48,83 +42,48 @@ msgid ""
|
||||
"necessary. You can sort and hide games or download cover art from "
|
||||
"SteamGridDB."
|
||||
msgstr ""
|
||||
"Картриджі - це простий лаунчер для всіх ваших ігор. Він підтримує імпорт "
|
||||
"Cartridges - це простий лаунчер для всіх ваших ігор. Він підтримує імпорт "
|
||||
"ігор з Steam, Lutris, Heroic тощо без необхідності входу в систему. Ви "
|
||||
"можете сортувати та приховувати ігри або завантажувати обкладинки з "
|
||||
"SteamGridDB."
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:30
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:22
|
||||
msgid "Library"
|
||||
msgstr "Бібліотека"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 src/details_window.py:67
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:26
|
||||
#: src/utils/create_details_window.py:87
|
||||
msgid "Edit Game Details"
|
||||
msgstr "Редагувати інформацію про гру"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:38 data/gtk/window.blp:71
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:30 data/gtk/window.blp:51
|
||||
msgid "Game Details"
|
||||
msgstr "Подробиці гри"
|
||||
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:42 data/gtk/window.blp:416
|
||||
#: src/details_window.py:239
|
||||
#: data/hu.kramo.Cartridges.metainfo.xml.in:34 data/gtk/window.blp:402
|
||||
#: src/utils/importer.py:94 src/utils/importer.py:123 src/utils/importer.py:148
|
||||
#: src/utils/steamgriddb.py:116
|
||||
msgid "Preferences"
|
||||
msgstr "Параметри"
|
||||
|
||||
#: data/gtk/details-window.blp:25
|
||||
msgid "Cancel"
|
||||
msgstr "Скасувати"
|
||||
|
||||
#: data/gtk/details-window.blp:57
|
||||
msgid "New Cover"
|
||||
msgstr "Нова обкладинка"
|
||||
|
||||
#: data/gtk/details-window.blp:75
|
||||
msgid "Delete Cover"
|
||||
msgstr "Видалити обкладинку"
|
||||
|
||||
#: data/gtk/details-window.blp:101 data/gtk/details-window.blp:106
|
||||
#: data/gtk/game.blp:80
|
||||
#: data/gtk/game.blp:67 src/utils/create_details_window.py:129
|
||||
msgid "Title"
|
||||
msgstr "Назва"
|
||||
|
||||
#: data/gtk/details-window.blp:102
|
||||
msgid "The title of the game"
|
||||
msgstr "Назва гри"
|
||||
|
||||
#: 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-window.blp:124
|
||||
msgid "File to open or command to run when launching the game"
|
||||
msgstr "Файл для відкриття або команда для запуску під час запуску гри"
|
||||
|
||||
#: data/gtk/details-window.blp:130
|
||||
msgid "More Info"
|
||||
msgstr "Більше інформації"
|
||||
|
||||
#: data/gtk/game.blp:102 data/gtk/game.blp:121 data/gtk/window.blp:195
|
||||
#: data/gtk/game.blp:89 data/gtk/game.blp:108 data/gtk/window.blp:170
|
||||
msgid "Edit"
|
||||
msgstr "Редагувати"
|
||||
|
||||
#: data/gtk/game.blp:107 src/window.py:171
|
||||
#: data/gtk/game.blp:94 src/window.py:286
|
||||
msgid "Hide"
|
||||
msgstr "Приховати"
|
||||
|
||||
#: data/gtk/game.blp:112 data/gtk/game.blp:131 data/gtk/preferences.blp:56
|
||||
#: data/gtk/window.blp:209
|
||||
#: data/gtk/game.blp:99 data/gtk/game.blp:118 data/gtk/preferences.blp:56
|
||||
#: data/gtk/window.blp:186
|
||||
msgid "Remove"
|
||||
msgstr "Видалити"
|
||||
|
||||
#: data/gtk/game.blp:126 src/window.py:173
|
||||
#: data/gtk/game.blp:113 src/window.py:283
|
||||
msgid "Unhide"
|
||||
msgstr "Показати"
|
||||
|
||||
@@ -136,8 +95,8 @@ msgstr "Загальний"
|
||||
msgid "Quit"
|
||||
msgstr "Вийти"
|
||||
|
||||
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:217 data/gtk/window.blp:257
|
||||
#: data/gtk/window.blp:323
|
||||
#: data/gtk/help-overlay.blp:19 data/gtk/window.blp:205 data/gtk/window.blp:249
|
||||
#: data/gtk/window.blp:312
|
||||
msgid "Search"
|
||||
msgstr "Пошук"
|
||||
|
||||
@@ -149,7 +108,8 @@ msgstr "Показати параметри"
|
||||
msgid "Shortcuts"
|
||||
msgstr "Ярлики"
|
||||
|
||||
#: data/gtk/help-overlay.blp:34 src/game.py:102 src/preferences.py:112
|
||||
#: data/gtk/help-overlay.blp:34 src/main.py:186 src/main.py:242
|
||||
#: src/preferences.py:133
|
||||
msgid "Undo"
|
||||
msgstr "Відмінити"
|
||||
|
||||
@@ -177,7 +137,7 @@ msgstr "Показати приховані ігри"
|
||||
msgid "Remove game"
|
||||
msgstr "Видалити гру"
|
||||
|
||||
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:268
|
||||
#: data/gtk/preferences.blp:13 data/gtk/preferences.blp:235
|
||||
msgid "Behavior"
|
||||
msgstr "Поведінка"
|
||||
|
||||
@@ -193,7 +153,7 @@ msgstr "Обкладинка запускає гру"
|
||||
msgid "Swaps the behavior of the cover image and the play button"
|
||||
msgstr "Міняє місцями поведінку зображення обкладинки та кнопки відтворення"
|
||||
|
||||
#: data/gtk/preferences.blp:36 src/details_window.py:81
|
||||
#: data/gtk/preferences.blp:36 src/utils/create_details_window.py:101
|
||||
msgid "Images"
|
||||
msgstr "Зображення"
|
||||
|
||||
@@ -213,241 +173,343 @@ msgstr "Небезпечна зона"
|
||||
msgid "Remove All Games"
|
||||
msgstr "Видалити всі ігри"
|
||||
|
||||
#: data/gtk/preferences.blp:85 data/gtk/window.blp:27 data/gtk/window.blp:442
|
||||
#: data/gtk/preferences.blp:69 data/gtk/window.blp:427
|
||||
msgid "Import"
|
||||
msgstr "Імпорт"
|
||||
|
||||
#: data/gtk/preferences.blp:89
|
||||
#: data/gtk/preferences.blp:73
|
||||
msgid "Sources"
|
||||
msgstr "Джерела"
|
||||
|
||||
#: data/gtk/preferences.blp:92
|
||||
#: data/gtk/preferences.blp:76
|
||||
msgid "Steam"
|
||||
msgstr "Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:96 data/gtk/preferences.blp:110
|
||||
#: data/gtk/preferences.blp:151 data/gtk/preferences.blp:192
|
||||
#: data/gtk/preferences.blp:206 data/gtk/preferences.blp:220
|
||||
#: data/gtk/preferences.blp:234
|
||||
msgid "Install Location"
|
||||
msgstr "Місце встановлення"
|
||||
#: data/gtk/preferences.blp:80
|
||||
msgid "Steam Install Location"
|
||||
msgstr "Місце встановлення Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:106
|
||||
#: data/gtk/preferences.blp:81 data/gtk/preferences.blp:119
|
||||
#: data/gtk/preferences.blp:153 data/gtk/preferences.blp:195
|
||||
#: data/gtk/preferences.blp:210
|
||||
msgid "Directory to use when importing games"
|
||||
msgstr "Каталог для імпорту ігор"
|
||||
|
||||
#: data/gtk/preferences.blp:89 src/utils/importer.py:143
|
||||
msgid "Extra Steam Libraries"
|
||||
msgstr "Додаткові бібліотеки Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:90
|
||||
msgid "Select other directories where you have Steam games installed"
|
||||
msgstr "Виберіть інші директорії, до яких інстальовано ігри Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:96
|
||||
msgid "Clear"
|
||||
msgstr "Очистити"
|
||||
|
||||
#: data/gtk/preferences.blp:114
|
||||
msgid "Lutris"
|
||||
msgstr "Lutris"
|
||||
|
||||
#: data/gtk/preferences.blp:119
|
||||
msgid "Cache Location"
|
||||
msgstr "Розташування кешу"
|
||||
#: data/gtk/preferences.blp:118
|
||||
msgid "Lutris Install Location"
|
||||
msgstr "Місце встановлення Lutris"
|
||||
|
||||
#: data/gtk/preferences.blp:128
|
||||
msgid "Lutris Cache Location"
|
||||
msgstr "Розташування сховища Lutris"
|
||||
|
||||
#: data/gtk/preferences.blp:129
|
||||
msgid "Directory to use when importing game covers"
|
||||
msgstr "Каталог для імпорту обкладинок ігор"
|
||||
|
||||
#: data/gtk/preferences.blp:138
|
||||
msgid "Import Steam Games"
|
||||
msgstr "Імпорт ігор Steam"
|
||||
|
||||
#: data/gtk/preferences.blp:137
|
||||
msgid "Import Flatpak Games"
|
||||
msgstr "Імпортувати ігри Flatpak"
|
||||
|
||||
#: data/gtk/preferences.blp:147
|
||||
#: data/gtk/preferences.blp:148
|
||||
msgid "Heroic"
|
||||
msgstr "Heroic"
|
||||
|
||||
#: data/gtk/preferences.blp:160
|
||||
#: data/gtk/preferences.blp:152
|
||||
msgid "Heroic Install Location"
|
||||
msgstr "Місце встановлення Heroic"
|
||||
|
||||
#: data/gtk/preferences.blp:162
|
||||
msgid "Import Epic Games"
|
||||
msgstr "Імпорт Epic Games"
|
||||
|
||||
#: data/gtk/preferences.blp:169
|
||||
#: data/gtk/preferences.blp:171
|
||||
msgid "Import GOG Games"
|
||||
msgstr "Імпорт ігор GOG"
|
||||
|
||||
#: data/gtk/preferences.blp:178
|
||||
#: data/gtk/preferences.blp:180
|
||||
msgid "Import Sideloaded Games"
|
||||
msgstr "Імпорт сторонніх ігор"
|
||||
|
||||
#: data/gtk/preferences.blp:188
|
||||
#: data/gtk/preferences.blp:190
|
||||
msgid "Bottles"
|
||||
msgstr "Bottles"
|
||||
|
||||
#: data/gtk/preferences.blp:202
|
||||
#: data/gtk/preferences.blp:194
|
||||
msgid "Bottles Install Location"
|
||||
msgstr "Місце встановлення Bottles"
|
||||
|
||||
#: data/gtk/preferences.blp:205
|
||||
msgid "itch"
|
||||
msgstr "itch"
|
||||
|
||||
#: data/gtk/preferences.blp:216
|
||||
msgid "Legendary"
|
||||
msgstr "Легендарний"
|
||||
#: data/gtk/preferences.blp:209
|
||||
msgid "itch Install Location"
|
||||
msgstr "Місце встановлення itch"
|
||||
|
||||
#: data/gtk/preferences.blp:230
|
||||
msgid "Flatpak"
|
||||
msgstr "Flatpak"
|
||||
|
||||
#: data/gtk/preferences.blp:243
|
||||
msgid "Import Game Launchers"
|
||||
msgstr "Імпортувати ігрові лаунчери"
|
||||
|
||||
#: data/gtk/preferences.blp:256
|
||||
#: data/gtk/preferences.blp:223
|
||||
msgid "SteamGridDB"
|
||||
msgstr "SteamGridDB"
|
||||
|
||||
#: data/gtk/preferences.blp:260
|
||||
#: data/gtk/preferences.blp:227
|
||||
msgid "Authentication"
|
||||
msgstr "Аутентифікація"
|
||||
|
||||
#: data/gtk/preferences.blp:263
|
||||
#: data/gtk/preferences.blp:230
|
||||
msgid "API Key"
|
||||
msgstr "Ключ API"
|
||||
|
||||
#: data/gtk/preferences.blp:271
|
||||
#: data/gtk/preferences.blp:238
|
||||
msgid "Use SteamGridDB"
|
||||
msgstr "Використовувати SteamGridDB"
|
||||
|
||||
#: data/gtk/preferences.blp:272
|
||||
#: data/gtk/preferences.blp:239
|
||||
msgid "Download images when adding or importing games"
|
||||
msgstr "Завантаження зображень під час додавання або імпорту ігор"
|
||||
|
||||
#: data/gtk/preferences.blp:281
|
||||
#: data/gtk/preferences.blp:248
|
||||
msgid "Prefer Over Official Images"
|
||||
msgstr "Надавати перевагу офіційним зображенням"
|
||||
|
||||
#: data/gtk/preferences.blp:290
|
||||
#: data/gtk/preferences.blp:257
|
||||
msgid "Prefer Animated Images"
|
||||
msgstr "Надавати перевагу анімованим зображенням"
|
||||
|
||||
#: data/gtk/window.blp:6 data/gtk/window.blp:14
|
||||
#: data/gtk/window.blp:6 src/utils/importer.py:91
|
||||
msgid "No Games Found"
|
||||
msgstr "Ігор не знайдено"
|
||||
|
||||
#: data/gtk/window.blp:7 data/gtk/window.blp:15
|
||||
#: data/gtk/window.blp:7
|
||||
msgid "Try a different search."
|
||||
msgstr "Спробуйте інший пошук."
|
||||
|
||||
#: data/gtk/window.blp:21
|
||||
#: data/gtk/window.blp:14
|
||||
msgid "No Games"
|
||||
msgstr "Ніяких ігор"
|
||||
|
||||
#: data/gtk/window.blp:22
|
||||
#: data/gtk/window.blp:15
|
||||
msgid "Use the + button to add games."
|
||||
msgstr "Використовуйте кнопку +, щоб додати гру."
|
||||
|
||||
#: data/gtk/window.blp:40
|
||||
#: data/gtk/window.blp:22
|
||||
msgid "No Hidden Games"
|
||||
msgstr "Ніяких прихованих ігор"
|
||||
|
||||
#: data/gtk/window.blp:41
|
||||
#: data/gtk/window.blp:23
|
||||
msgid "Games you hide will appear here."
|
||||
msgstr "Ігри, які ви сховали, з'являться тут."
|
||||
|
||||
#: data/gtk/window.blp:64 data/gtk/window.blp:304
|
||||
#: data/gtk/window.blp:44 data/gtk/window.blp:293
|
||||
msgid "Back"
|
||||
msgstr "Назад"
|
||||
|
||||
#: data/gtk/window.blp:121
|
||||
#: data/gtk/window.blp:100
|
||||
msgid "Game Title"
|
||||
msgstr "Назва гри"
|
||||
|
||||
#: data/gtk/window.blp:176
|
||||
#: data/gtk/window.blp:151 src/game.py:158
|
||||
msgid "Play"
|
||||
msgstr "Грати"
|
||||
|
||||
#: data/gtk/window.blp:243 data/gtk/window.blp:435
|
||||
#: data/gtk/window.blp:235 data/gtk/window.blp:421
|
||||
msgid "Add Game"
|
||||
msgstr "Додати гру"
|
||||
|
||||
#: data/gtk/window.blp:250 data/gtk/window.blp:316
|
||||
#: data/gtk/window.blp:242 data/gtk/window.blp:305
|
||||
msgid "Main Menu"
|
||||
msgstr "Головне меню"
|
||||
|
||||
#: data/gtk/window.blp:311
|
||||
#: data/gtk/window.blp:300
|
||||
msgid "Hidden Games"
|
||||
msgstr "Приховані ігри"
|
||||
|
||||
#: data/gtk/window.blp:374
|
||||
#: data/gtk/window.blp:360
|
||||
msgid "Sort"
|
||||
msgstr "Сортувати"
|
||||
|
||||
#: data/gtk/window.blp:377
|
||||
#: data/gtk/window.blp:363
|
||||
msgid "A-Z"
|
||||
msgstr "А-Я"
|
||||
|
||||
#: data/gtk/window.blp:383
|
||||
#: data/gtk/window.blp:369
|
||||
msgid "Z-A"
|
||||
msgstr "Я-А"
|
||||
|
||||
#: data/gtk/window.blp:389
|
||||
#: data/gtk/window.blp:375
|
||||
msgid "Newest"
|
||||
msgstr "Найновіші"
|
||||
|
||||
#: data/gtk/window.blp:395
|
||||
#: data/gtk/window.blp:381
|
||||
msgid "Oldest"
|
||||
msgstr "Найстаріші"
|
||||
|
||||
#: data/gtk/window.blp:401
|
||||
#: data/gtk/window.blp:387
|
||||
msgid "Last Played"
|
||||
msgstr "Остання гра"
|
||||
|
||||
#: data/gtk/window.blp:408
|
||||
#: data/gtk/window.blp:394
|
||||
msgid "Show Hidden"
|
||||
msgstr "Показати приховане"
|
||||
|
||||
#: data/gtk/window.blp:421
|
||||
#: data/gtk/window.blp:407
|
||||
msgid "Keyboard Shortcuts"
|
||||
msgstr "Комбінації клавіш"
|
||||
|
||||
#: data/gtk/window.blp:426
|
||||
#: data/gtk/window.blp:412
|
||||
msgid "About Cartridges"
|
||||
msgstr "Про Картриджі"
|
||||
msgstr "Про Cartridges"
|
||||
|
||||
#. Translators: Replace this with your name for it to show up in the about window
|
||||
#: src/main.py:180
|
||||
#: src/main.py:137
|
||||
msgid "translator_credits"
|
||||
msgstr "kefir2105"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:164
|
||||
msgid "{} launched"
|
||||
msgstr "{} запущено"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:182
|
||||
msgid "{} hidden"
|
||||
msgstr "{} приховано"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:185
|
||||
msgid "{} unhidden"
|
||||
msgstr "{} показано"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/main.py:241
|
||||
msgid "{} removed"
|
||||
msgstr "{} видалено"
|
||||
|
||||
#: src/window.py:262
|
||||
msgid "Today"
|
||||
msgstr "Сьогодні"
|
||||
|
||||
#: src/window.py:264
|
||||
msgid "Yesterday"
|
||||
msgstr "Вчора"
|
||||
|
||||
#. The variable is the date when the game was added
|
||||
#: src/window.py:194
|
||||
#: src/window.py:310
|
||||
msgid "Added: {}"
|
||||
msgstr "Додано: {}"
|
||||
|
||||
#: src/window.py:197
|
||||
#: src/window.py:315
|
||||
msgid "Never"
|
||||
msgstr "Ніколи"
|
||||
|
||||
#. The variable is the date when the game was last played
|
||||
#: src/window.py:201
|
||||
#: src/window.py:319
|
||||
msgid "Last played: {}"
|
||||
msgstr "Востаннє грали: {}"
|
||||
msgstr "Останній раз грали: {}"
|
||||
|
||||
#: src/details_window.py:72
|
||||
msgid "Apply"
|
||||
msgstr "Застосувати"
|
||||
#: src/game.py:156
|
||||
msgid "Details"
|
||||
msgstr "Деталі"
|
||||
|
||||
#: src/details_window.py:78
|
||||
#: src/preferences.py:54
|
||||
msgid "Installation Not Found"
|
||||
msgstr "Встановлення не знайдено"
|
||||
|
||||
#. The variable is the name of the game launcher
|
||||
#: src/preferences.py:56
|
||||
msgid "Select the {} configuration directory."
|
||||
msgstr "Виберіть каталог конфігурації {}."
|
||||
|
||||
#. The variable is the name of the game launcher
|
||||
#: src/preferences.py:59
|
||||
msgid "Select the {} data directory."
|
||||
msgstr "Виберіть каталог даних {}."
|
||||
|
||||
#: src/preferences.py:61 src/preferences.py:240
|
||||
msgid "Set Location"
|
||||
msgstr "Встановити місцезнаходження"
|
||||
|
||||
#: src/preferences.py:132
|
||||
msgid "All games removed"
|
||||
msgstr "Всі ігри видалено"
|
||||
|
||||
#: src/preferences.py:237
|
||||
msgid "Cache Not Found"
|
||||
msgstr "Кеш не знайдено"
|
||||
|
||||
#: src/preferences.py:238
|
||||
msgid "Select the Lutris cache directory."
|
||||
msgstr "Виберіть каталог кешу Lutris."
|
||||
|
||||
#: src/preferences.py:344
|
||||
msgid ""
|
||||
"An API key is required to use SteamGridDB. You can generate one {}here{}."
|
||||
msgstr ""
|
||||
"Для використання SteamGridDB потрібен ключ API. Ви можете згенерувати його {}"
|
||||
"тут{}."
|
||||
|
||||
#: src/utils/create_details_window.py:81
|
||||
msgid "Add New Game"
|
||||
msgstr "Додати нову гру"
|
||||
|
||||
#: src/details_window.py:79
|
||||
#: src/utils/create_details_window.py:85
|
||||
msgid "Confirm"
|
||||
msgstr "Підтвердити"
|
||||
|
||||
#: src/utils/create_details_window.py:96
|
||||
msgid "Apply"
|
||||
msgstr "Застосувати"
|
||||
|
||||
#: src/utils/create_details_window.py:130
|
||||
msgid "The title of the game"
|
||||
msgstr "Назва гри"
|
||||
|
||||
#: src/utils/create_details_window.py:135
|
||||
msgid "Developer"
|
||||
msgstr "Розробник"
|
||||
|
||||
#: src/utils/create_details_window.py:136
|
||||
msgid "The developer or publisher (optional)"
|
||||
msgstr "Розробник або видавець (необов'язково)"
|
||||
|
||||
#. Translate this string as you would translate "file"
|
||||
#: src/details_window.py:92
|
||||
#: src/utils/create_details_window.py:147
|
||||
msgid "file.txt"
|
||||
msgstr "file.txt"
|
||||
|
||||
#. As in software
|
||||
#: src/details_window.py:94
|
||||
#: src/utils/create_details_window.py:149
|
||||
msgid "program"
|
||||
msgstr "програма"
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:99 src/details_window.py:101
|
||||
#: src/utils/create_details_window.py:154
|
||||
#: src/utils/create_details_window.py:156
|
||||
msgid "C:\\path\\to\\{}"
|
||||
msgstr "C:\\шлях\\до\\{}"
|
||||
msgstr "C:\\path\\to\\{}"
|
||||
|
||||
#. Translate this string as you would translate "path to {}"
|
||||
#: src/details_window.py:105 src/details_window.py:107
|
||||
#: src/utils/create_details_window.py:160
|
||||
#: src/utils/create_details_window.py:162
|
||||
msgid "/path/to/{}"
|
||||
msgstr "/path/to/{}"
|
||||
|
||||
#: src/details_window.py:112
|
||||
#: src/utils/create_details_window.py:166
|
||||
msgid ""
|
||||
"To launch the executable \"{}\", use the command:\n"
|
||||
"\n"
|
||||
@@ -470,189 +532,83 @@ msgstr ""
|
||||
"\n"
|
||||
"Якщо шлях містить пробіли, обов'язково візьміть його в подвійні лапки!"
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:153
|
||||
#: src/utils/create_details_window.py:189
|
||||
msgid "Executable"
|
||||
msgstr "Виконуваний"
|
||||
|
||||
#: src/utils/create_details_window.py:190
|
||||
msgid "File to open or command to run when launching the game"
|
||||
msgstr "Файл для відкриття або команда для запуску під час запуску гри"
|
||||
|
||||
#: src/utils/create_details_window.py:202
|
||||
msgid "Cancel"
|
||||
msgstr "Скасувати"
|
||||
|
||||
#: src/utils/create_details_window.py:259
|
||||
#: src/utils/create_details_window.py:269
|
||||
#: src/utils/create_details_window.py:275
|
||||
msgid "Couldn't Add Game"
|
||||
msgstr "Не вдалося додати гру"
|
||||
|
||||
#: src/details_window.py:147 src/details_window.py:181
|
||||
msgid "Game title cannot be empty."
|
||||
msgstr "Назва гри не може бути порожньою."
|
||||
|
||||
#: src/details_window.py:153 src/details_window.py:189
|
||||
msgid "Executable cannot be empty."
|
||||
msgstr "Виконуваний файл не може бути порожнім."
|
||||
|
||||
#: src/details_window.py:180 src/details_window.py:188
|
||||
#: src/utils/create_details_window.py:261
|
||||
#: src/utils/create_details_window.py:299
|
||||
#: src/utils/create_details_window.py:307
|
||||
msgid "Couldn't Apply Preferences"
|
||||
msgstr "Не вдалося застосувати параметри"
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:138
|
||||
msgid "{} launched"
|
||||
msgstr "{} запущено"
|
||||
#: src/utils/create_details_window.py:269
|
||||
#: src/utils/create_details_window.py:300
|
||||
msgid "Game title cannot be empty."
|
||||
msgstr "Назва гри не може бути порожньою."
|
||||
|
||||
#. The variable is the title of the game
|
||||
#: src/game.py:152
|
||||
msgid "{} hidden"
|
||||
msgstr "{} приховано"
|
||||
|
||||
#: src/game.py:152
|
||||
msgid "{} unhidden"
|
||||
msgstr "{} показано"
|
||||
|
||||
#: src/game.py:169
|
||||
msgid "{} removed"
|
||||
msgstr "{} видалено"
|
||||
|
||||
#: src/preferences.py:111
|
||||
msgid "All games removed"
|
||||
msgstr "Всі ігри видалено"
|
||||
|
||||
#: src/preferences.py:159
|
||||
msgid ""
|
||||
"An API key is required to use SteamGridDB. You can generate one {}here{}."
|
||||
msgstr ""
|
||||
"Для використання SteamGridDB потрібен ключ API. Ви можете згенерувати його {}"
|
||||
"тут{}."
|
||||
|
||||
#: src/preferences.py:284
|
||||
msgid "Installation Not Found"
|
||||
msgstr "Встановлення не знайдено"
|
||||
|
||||
#: src/preferences.py:286
|
||||
msgid "Select a valid directory."
|
||||
msgstr "Виберіть правильний каталог."
|
||||
|
||||
#: src/preferences.py:348
|
||||
msgid "Invalid Directory"
|
||||
msgstr "Неправильний каталог"
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:352
|
||||
msgid "Select the {} cache directory."
|
||||
msgstr "Виберіть каталог кешу {}."
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:355
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} installation directory."
|
||||
msgid "Select the {} configuration directory."
|
||||
msgstr "Виберіть каталог встановлення {}."
|
||||
|
||||
#. The variable is the name of the source
|
||||
#: src/preferences.py:358
|
||||
#, fuzzy
|
||||
#| msgid "Select the {} cache directory."
|
||||
msgid "Select the {} data directory."
|
||||
msgstr "Виберіть каталог кешу {}."
|
||||
|
||||
#: src/preferences.py:364
|
||||
msgid "Set Location"
|
||||
msgstr "Встановити місцезнаходження"
|
||||
#: src/utils/create_details_window.py:275
|
||||
#: src/utils/create_details_window.py:308
|
||||
msgid "Executable cannot be empty."
|
||||
msgstr "Виконуваний файл не може бути порожнім."
|
||||
|
||||
#: src/utils/create_dialog.py:25
|
||||
msgid "Dismiss"
|
||||
msgstr "Відхилити"
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:47
|
||||
msgid "Couldn't Authenticate SteamGridDB"
|
||||
msgstr "Не вдалося автентифікувати SteamGridDB"
|
||||
#: src/utils/importer.py:42
|
||||
msgid "Importing Games…"
|
||||
msgstr "Імпорт ігор…"
|
||||
|
||||
#: src/store/managers/sgdb_manager.py:48
|
||||
msgid "Verify your API key in preferences"
|
||||
msgstr "Перевірте свій API-ключ у параметрах"
|
||||
#: src/utils/importer.py:77
|
||||
msgid "Importing Covers…"
|
||||
msgstr "Імпорт обкладинок…"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "The Steam directory cannot be found."
|
||||
#~ msgid "Directory not Valid"
|
||||
#~ msgstr "Каталог Steam знайти неможливо."
|
||||
#: src/utils/importer.py:92
|
||||
msgid "No new games were found on your system."
|
||||
msgstr "У вашій системі не знайдено жодної нової гри."
|
||||
|
||||
#~ msgid "Data"
|
||||
#~ msgstr "Дані"
|
||||
#: src/utils/importer.py:100
|
||||
msgid "Game Imported"
|
||||
msgstr "Ігру імпортовано"
|
||||
|
||||
#~ msgid "Cache"
|
||||
#~ msgstr "Кеш"
|
||||
#: src/utils/importer.py:101
|
||||
msgid "Successfully imported 1 game."
|
||||
msgstr "Успішно імпортовано 1 гру."
|
||||
|
||||
#~ msgid "Configuration"
|
||||
#~ msgstr "Конфігурація"
|
||||
#: src/utils/importer.py:107
|
||||
msgid "Games Imported"
|
||||
msgstr "Ігри імпортовано"
|
||||
|
||||
#~ msgid "Invalid {} Location for {{}}"
|
||||
#~ msgstr "Недійсний {} Місце для {{}}"
|
||||
#. The variable is the number of games
|
||||
#: src/utils/importer.py:109
|
||||
msgid "Successfully imported {} games."
|
||||
msgstr "Успішно імпортовано {} ігор."
|
||||
|
||||
#~ msgid "Pick a new one or disable the source in preferences"
|
||||
#~ msgstr "Виберіть новий або вимкніть джерело у параметрах"
|
||||
#: src/utils/importer.py:120 src/utils/steamgriddb.py:113
|
||||
msgid "Couldn't Connect to SteamGridDB"
|
||||
msgstr "Не вдалося підключитися до SteamGridDB"
|
||||
|
||||
#~ msgid "Steam Install Location"
|
||||
#~ msgstr "Місце встановлення Steam"
|
||||
|
||||
#~ msgid "Lutris Install Location"
|
||||
#~ msgstr "Місце встановлення Lutris"
|
||||
|
||||
#~ msgid "Heroic Install Location"
|
||||
#~ msgstr "Місце встановлення Heroic"
|
||||
|
||||
#~ msgid "Bottles Install Location"
|
||||
#~ msgstr "Місце встановлення Bottles"
|
||||
|
||||
#~ msgid "Today"
|
||||
#~ msgstr "Сьогодні"
|
||||
|
||||
#~ msgid "Yesterday"
|
||||
#~ msgstr "Вчора"
|
||||
|
||||
#~ msgid "Cache Not Found"
|
||||
#~ msgstr "Кеш не знайдено"
|
||||
|
||||
#~ msgid "Select the Lutris cache directory."
|
||||
#~ msgstr "Виберіть каталог кешу Lutris."
|
||||
|
||||
#~ msgid "Importing Games…"
|
||||
#~ msgstr "Імпорт ігор…"
|
||||
|
||||
#~ msgid "Importing Covers…"
|
||||
#~ msgstr "Імпорт обкладинок…"
|
||||
|
||||
#~ msgid "No new games found"
|
||||
#~ msgstr "Нових ігор не знайдено"
|
||||
|
||||
#~ msgid "1 game imported"
|
||||
#~ msgstr "1 гру імпортовано"
|
||||
|
||||
#~ msgid "{} games imported"
|
||||
#~ msgstr "{} гри імпортовано"
|
||||
|
||||
#~ msgid "Directory to use when importing games"
|
||||
#~ msgstr "Каталог для імпорту ігор"
|
||||
|
||||
#~ msgid "Extra Steam Libraries"
|
||||
#~ msgstr "Додаткові бібліотеки Steam"
|
||||
|
||||
#~ msgid "Select other directories where you have Steam games installed"
|
||||
#~ msgstr "Виберіть інші директорії, до яких інстальовано ігри Steam"
|
||||
|
||||
#~ msgid "Clear"
|
||||
#~ msgstr "Очистити"
|
||||
|
||||
#~ msgid "Directory to use when importing game covers"
|
||||
#~ msgstr "Каталог для імпорту обкладинок ігор"
|
||||
|
||||
#~ msgid "Details"
|
||||
#~ msgstr "Деталі"
|
||||
|
||||
#~ msgid "No new games were found on your system."
|
||||
#~ msgstr "У вашій системі не знайдено жодної нової гри."
|
||||
|
||||
#~ msgid "Successfully imported 1 game."
|
||||
#~ msgstr "Успішно імпортовано 1 гру."
|
||||
|
||||
#~ msgid "Successfully imported {} games."
|
||||
#~ msgstr "Успішно імпортовано {} ігор."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Looks like you have multiple Steam libraries. Would you like to add them "
|
||||
#~ "in preferences?"
|
||||
#~ msgstr ""
|
||||
#~ "Схоже, у вас є кілька бібліотек Steam. Бажаєте додати їх у налаштуваннях?"
|
||||
#: src/utils/importer.py:145
|
||||
msgid ""
|
||||
"Looks like you have multiple Steam libraries. Would you like to add them in "
|
||||
"preferences?"
|
||||
msgstr ""
|
||||
"Схоже, у вас є кілька бібліотек Steam. Бажаєте додати їх у налаштуваннях?"
|
||||
|
||||
#~ msgid "Launch your games"
|
||||
#~ msgstr "Запустіть свої ігри"
|
||||
@@ -730,6 +686,9 @@ msgstr "Перевірте свій API-ключ у параметрах"
|
||||
#~ msgid "No new games were found in the Steam library."
|
||||
#~ msgstr "У бібліотеці Steam не знайдено жодної нової гри."
|
||||
|
||||
#~ msgid "The Steam directory cannot be found."
|
||||
#~ msgstr "Каталог Steam знайти неможливо."
|
||||
|
||||
#~ msgid "Talking to Steam"
|
||||
#~ msgstr "Спілкування зі Steam"
|
||||
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
def _(_msg: str, /) -> str: ...
|
||||
0
src/__init__.py
Normal file
@@ -55,6 +55,6 @@ if __name__ == "__main__":
|
||||
resource = Gio.Resource.load(os.path.join(pkgdatadir, "cartridges.gresource"))
|
||||
resource._register()
|
||||
|
||||
from src import main
|
||||
from cartridges import main
|
||||
|
||||
sys.exit(main.main(VERSION))
|
||||
|
||||
@@ -1,271 +0,0 @@
|
||||
# details_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
|
||||
|
||||
import os
|
||||
from time import time
|
||||
|
||||
from gi.repository import Adw, Gio, GLib, Gtk
|
||||
from PIL import Image
|
||||
|
||||
from src import shared
|
||||
from src.errors.friendly_error import FriendlyError
|
||||
from src.game import Game
|
||||
from src.game_cover import GameCover
|
||||
from src.store.managers.sgdb_manager import SGDBManager
|
||||
from src.utils.create_dialog import create_dialog
|
||||
from src.utils.save_cover import resize_cover, save_cover
|
||||
|
||||
|
||||
@Gtk.Template(resource_path=shared.PREFIX + "/gtk/details-window.ui")
|
||||
class DetailsWindow(Adw.Window):
|
||||
__gtype_name__ = "DetailsWindow"
|
||||
|
||||
cover_overlay = Gtk.Template.Child()
|
||||
cover = Gtk.Template.Child()
|
||||
cover_button_edit = Gtk.Template.Child()
|
||||
cover_button_delete_revealer = Gtk.Template.Child()
|
||||
cover_button_delete = Gtk.Template.Child()
|
||||
spinner = Gtk.Template.Child()
|
||||
|
||||
name = Gtk.Template.Child()
|
||||
developer = Gtk.Template.Child()
|
||||
executable = Gtk.Template.Child()
|
||||
|
||||
exec_info_label = Gtk.Template.Child()
|
||||
exec_info_popover = Gtk.Template.Child()
|
||||
|
||||
apply_button = Gtk.Template.Child()
|
||||
|
||||
cover_changed = False
|
||||
|
||||
def __init__(self, game=None, **kwargs):
|
||||
super().__init__(**kwargs)
|
||||
|
||||
self.win = shared.win
|
||||
self.game = game
|
||||
self.game_cover = GameCover({self.cover})
|
||||
|
||||
self.set_transient_for(self.win)
|
||||
|
||||
if self.game:
|
||||
self.set_title(_("Edit Game Details"))
|
||||
self.name.set_text(self.game.name)
|
||||
if self.game.developer:
|
||||
self.developer.set_text(self.game.developer)
|
||||
self.executable.set_text(self.game.executable)
|
||||
self.apply_button.set_label(_("Apply"))
|
||||
|
||||
self.game_cover.new_cover(self.game.get_cover_path())
|
||||
if self.game_cover.get_texture():
|
||||
self.cover_button_delete_revealer.set_reveal_child(True)
|
||||
else:
|
||||
self.set_title(_("Add New Game"))
|
||||
self.apply_button.set_label(_("Confirm"))
|
||||
|
||||
image_filter = Gtk.FileFilter(name=_("Images"))
|
||||
for extension in Image.registered_extensions():
|
||||
image_filter.add_suffix(extension[1:])
|
||||
image_filter.add_suffix("svg") # Gdk.Texture supports .svg but PIL doesn't
|
||||
|
||||
file_filters = Gio.ListStore.new(Gtk.FileFilter)
|
||||
file_filters.append(image_filter)
|
||||
self.file_dialog = Gtk.FileDialog()
|
||||
self.file_dialog.set_filters(file_filters)
|
||||
|
||||
# Translate this string as you would translate "file"
|
||||
file_name = _("file.txt")
|
||||
# As in software
|
||||
exe_name = _("program")
|
||||
|
||||
if os.name == "nt":
|
||||
exe_name += ".exe"
|
||||
# Translate this string as you would translate "path to {}"
|
||||
exe_path = _("C:\\path\\to\\{}").format(exe_name)
|
||||
# Translate this string as you would translate "path to {}"
|
||||
file_path = _("C:\\path\\to\\{}").format(file_name)
|
||||
command = "start"
|
||||
else:
|
||||
# Translate this string as you would translate "path to {}"
|
||||
exe_path = _("/path/to/{}").format(exe_name)
|
||||
# Translate this string as you would translate "path to {}"
|
||||
file_path = _("/path/to/{}").format(file_name)
|
||||
command = "xdg-open"
|
||||
|
||||
# pylint: disable=line-too-long
|
||||
exec_info_text = _(
|
||||
'To launch the executable "{}", use the command:\n\n<tt>"{}"</tt>\n\nTo open the file "{}" with the default application, use:\n\n<tt>{} "{}"</tt>\n\nIf the path contains spaces, make sure to wrap it in double quotes!'
|
||||
).format(exe_name, exe_path, file_name, command, file_path)
|
||||
|
||||
self.exec_info_label.set_label(exec_info_text)
|
||||
|
||||
def clear_info_selection(*_args):
|
||||
self.exec_info_label.select_region(-1, -1)
|
||||
|
||||
self.exec_info_popover.connect("show", clear_info_selection)
|
||||
|
||||
self.cover_button_delete.connect("clicked", self.delete_pixbuf)
|
||||
self.cover_button_edit.connect("clicked", self.choose_cover)
|
||||
self.apply_button.connect("clicked", self.apply_preferences)
|
||||
|
||||
self.name.connect("activate", self.focus_executable)
|
||||
self.developer.connect("activate", self.focus_executable)
|
||||
self.executable.connect("activate", self.apply_preferences)
|
||||
|
||||
self.set_focus(self.name)
|
||||
self.present()
|
||||
|
||||
def delete_pixbuf(self, *_args):
|
||||
self.game_cover.new_cover()
|
||||
|
||||
self.cover_button_delete_revealer.set_reveal_child(False)
|
||||
self.cover_changed = True
|
||||
|
||||
def apply_preferences(self, *_args):
|
||||
final_name = self.name.get_text()
|
||||
final_developer = self.developer.get_text()
|
||||
final_executable = self.executable.get_text()
|
||||
|
||||
if not self.game:
|
||||
if final_name == "":
|
||||
create_dialog(
|
||||
self, _("Couldn't Add Game"), _("Game title cannot be empty.")
|
||||
)
|
||||
return
|
||||
|
||||
if final_executable == "":
|
||||
create_dialog(
|
||||
self, _("Couldn't Add Game"), _("Executable cannot be empty.")
|
||||
)
|
||||
return
|
||||
|
||||
# Increment the number after the game id (eg. imported_1, imported_2)
|
||||
numbers = [0]
|
||||
game_id: str
|
||||
for game_id in shared.store.games:
|
||||
prefix = "imported_"
|
||||
if not game_id.startswith(prefix):
|
||||
continue
|
||||
numbers.append(int(game_id.replace(prefix, "", 1)))
|
||||
game_number = max(numbers) + 1
|
||||
|
||||
self.game = Game(
|
||||
{
|
||||
"game_id": f"imported_{game_number}",
|
||||
"hidden": False,
|
||||
"source": "imported",
|
||||
"added": int(time()),
|
||||
}
|
||||
)
|
||||
|
||||
else:
|
||||
if final_name == "":
|
||||
create_dialog(
|
||||
self,
|
||||
_("Couldn't Apply Preferences"),
|
||||
_("Game title cannot be empty."),
|
||||
)
|
||||
return
|
||||
|
||||
if final_executable == "":
|
||||
create_dialog(
|
||||
self,
|
||||
_("Couldn't Apply Preferences"),
|
||||
_("Executable cannot be empty."),
|
||||
)
|
||||
return
|
||||
|
||||
self.game.name = final_name
|
||||
self.game.developer = final_developer or None
|
||||
self.game.executable = final_executable
|
||||
|
||||
if self.game.game_id in self.win.game_covers.keys():
|
||||
self.win.game_covers[self.game.game_id].animation = None
|
||||
|
||||
self.win.game_covers[self.game.game_id] = self.game_cover
|
||||
|
||||
if self.cover_changed:
|
||||
save_cover(
|
||||
self.game.game_id,
|
||||
self.game_cover.path,
|
||||
)
|
||||
|
||||
shared.store.add_game(self.game, {}, run_pipeline=False)
|
||||
self.game.save()
|
||||
self.game.update()
|
||||
|
||||
# TODO: this is fucked up (less than before)
|
||||
# Get a cover from SGDB if none is present
|
||||
if not self.game_cover.get_texture():
|
||||
self.game.set_loading(1)
|
||||
sgdb_manager: SGDBManager = shared.store.managers[SGDBManager]
|
||||
sgdb_manager.reset_cancellable()
|
||||
sgdb_manager.process_game(self.game, {}, self.update_cover_callback)
|
||||
|
||||
self.game_cover.pictures.remove(self.cover)
|
||||
|
||||
self.close()
|
||||
self.win.show_details_view(self.game)
|
||||
|
||||
def update_cover_callback(self, manager: SGDBManager):
|
||||
# Set the game as not loading
|
||||
self.game.set_loading(-1)
|
||||
self.game.update()
|
||||
|
||||
# Handle errors that occured
|
||||
for error in manager.collect_errors():
|
||||
# On auth error, inform the user
|
||||
if isinstance(error, FriendlyError):
|
||||
create_dialog(
|
||||
shared.win,
|
||||
error.title,
|
||||
error.subtitle,
|
||||
"open_preferences",
|
||||
_("Preferences"),
|
||||
).connect("response", self.update_cover_error_response)
|
||||
|
||||
def update_cover_error_response(self, _widget, response):
|
||||
if response == "open_preferences":
|
||||
shared.win.get_application().on_preferences_action(page_name="sgdb")
|
||||
|
||||
def focus_executable(self, *_args):
|
||||
self.set_focus(self.executable)
|
||||
|
||||
def toggle_loading(self):
|
||||
self.apply_button.set_sensitive(not self.apply_button.get_sensitive())
|
||||
self.spinner.set_spinning(not self.spinner.get_spinning())
|
||||
self.cover_overlay.set_opacity(not self.cover_overlay.get_opacity())
|
||||
|
||||
def set_cover(self, _source, result, *_args):
|
||||
try:
|
||||
path = self.file_dialog.open_finish(result).get_path()
|
||||
except GLib.GError:
|
||||
return
|
||||
|
||||
def resize():
|
||||
if cover := resize_cover(path):
|
||||
self.game_cover.new_cover(cover)
|
||||
self.cover_button_delete_revealer.set_reveal_child(True)
|
||||
self.cover_changed = True
|
||||
self.toggle_loading()
|
||||
|
||||
self.toggle_loading()
|
||||
GLib.Thread.new(None, resize)
|
||||
|
||||
def choose_cover(self, *_args):
|
||||
self.file_dialog.open(self, None, self.set_cover)
|
||||
@@ -1,28 +0,0 @@
|
||||
from threading import Lock
|
||||
|
||||
|
||||
class ErrorProducer:
|
||||
"""
|
||||
A mixin for objects that produce errors.
|
||||
|
||||
Specifies the report_error and collect_errors methods in a thread-safe manner.
|
||||
"""
|
||||
|
||||
errors: list[Exception] = None
|
||||
errors_lock: Lock = None
|
||||
|
||||
def __init__(self) -> None:
|
||||
self.errors = []
|
||||
self.errors_lock = Lock()
|
||||
|
||||
def report_error(self, error: Exception):
|
||||
"""Report an error"""
|
||||
with self.errors_lock:
|
||||
self.errors.append(error)
|
||||
|
||||
def collect_errors(self) -> list[Exception]:
|
||||
"""Collect and remove the errors produced by the object"""
|
||||
with self.errors_lock:
|
||||
errors = self.errors.copy()
|
||||
self.errors.clear()
|
||||
return errors
|
||||
@@ -1,47 +0,0 @@
|
||||
from typing import Iterable
|
||||
|
||||
|
||||
class FriendlyError(Exception):
|
||||
"""
|
||||
An error that is supposed to be shown to the user in a nice format
|
||||
|
||||
Use `raise ... from ...` to preserve context.
|
||||
"""
|
||||
|
||||
title_format: str
|
||||
title_args: Iterable[str]
|
||||
subtitle_format: str
|
||||
subtitle_args: Iterable[str]
|
||||
|
||||
@property
|
||||
def title(self) -> str:
|
||||
"""Get the gettext translated error title"""
|
||||
return self.title_format.format(self.title_args)
|
||||
|
||||
@property
|
||||
def subtitle(self) -> str:
|
||||
"""Get the gettext translated error subtitle"""
|
||||
return self.subtitle_format.format(self.subtitle_args)
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
title: str,
|
||||
subtitle: str,
|
||||
title_args: Iterable[str] = None,
|
||||
subtitle_args: Iterable[str] = None,
|
||||
) -> None:
|
||||
"""Create a friendly error
|
||||
|
||||
:param str title: The error's title, translatable with gettext
|
||||
:param str subtitle: The error's subtitle, translatable with gettext
|
||||
"""
|
||||
super().__init__()
|
||||
if title is not None:
|
||||
self.title_format = title
|
||||
if subtitle is not None:
|
||||
self.subtitle_format = subtitle
|
||||
self.title_args = title_args if title_args else ()
|
||||
self.subtitle_args = subtitle_args if subtitle_args else ()
|
||||
|
||||
def __str__(self) -> str:
|
||||
return f"{self.title} - {self.subtitle}"
|
||||
251
src/game.py
@@ -17,23 +17,23 @@
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
import logging
|
||||
import json
|
||||
import os
|
||||
import shlex
|
||||
import shlex # pylint: disable=unused-import
|
||||
import subprocess
|
||||
from pathlib import Path
|
||||
from time import time
|
||||
import sys
|
||||
|
||||
from gi.repository import Adw, GLib, GObject, Gtk
|
||||
from gi.repository import Gio, Gtk
|
||||
|
||||
from src import shared
|
||||
from .game_cover import GameCover
|
||||
from .save_game import save_game
|
||||
|
||||
|
||||
# pylint: disable=too-many-instance-attributes
|
||||
@Gtk.Template(resource_path=shared.PREFIX + "/gtk/game.ui")
|
||||
@Gtk.Template(resource_path="/hu/kramo/Cartridges/gtk/game.ui")
|
||||
class Game(Gtk.Box):
|
||||
__gtype_name__ = "Game"
|
||||
|
||||
overlay = Gtk.Template.Child()
|
||||
title = Gtk.Template.Child()
|
||||
play_button = Gtk.Template.Child()
|
||||
cover = Gtk.Template.Child()
|
||||
@@ -41,178 +41,131 @@ class Game(Gtk.Box):
|
||||
cover_button = Gtk.Template.Child()
|
||||
menu_button = Gtk.Template.Child()
|
||||
play_revealer = Gtk.Template.Child()
|
||||
menu_revealer = Gtk.Template.Child()
|
||||
title_revealer = Gtk.Template.Child()
|
||||
game_options = Gtk.Template.Child()
|
||||
hidden_game_options = Gtk.Template.Child()
|
||||
|
||||
loading = 0
|
||||
filtered = False
|
||||
|
||||
added = None
|
||||
executable = None
|
||||
game_id = None
|
||||
source = None
|
||||
hidden = False
|
||||
last_played = 0
|
||||
name = None
|
||||
developer = None
|
||||
removed = False
|
||||
blacklisted = False
|
||||
game_cover = None
|
||||
version = 0
|
||||
|
||||
def __init__(self, data, **kwargs):
|
||||
def __init__(self, win, data, **kwargs):
|
||||
super().__init__(**kwargs)
|
||||
|
||||
self.win = shared.win
|
||||
self.app = self.win.get_application()
|
||||
self.version = shared.SPEC_VERSION
|
||||
self.win = win
|
||||
self.added = data["added"]
|
||||
self.executable = data["executable"]
|
||||
self.game_id = data["game_id"]
|
||||
self.hidden = data["hidden"]
|
||||
self.last_played = data["last_played"]
|
||||
self.name = data["name"]
|
||||
self.developer = data["developer"] if "developer" in data else None
|
||||
self.removed = "removed" in data
|
||||
self.blacklisted = "blacklisted" in data
|
||||
|
||||
self.update_values(data)
|
||||
self.loading = 0
|
||||
self.title.set_label(self.name)
|
||||
|
||||
self.set_play_icon()
|
||||
if self.game_id in self.win.game_covers:
|
||||
self.win.game_covers[self.game_id].add_picture(self.cover)
|
||||
else:
|
||||
game_cover = GameCover({self.cover}, self.get_cover_path())
|
||||
self.win.game_covers[self.game_id] = game_cover
|
||||
|
||||
self.event_contoller_motion = Gtk.EventControllerMotion.new()
|
||||
self.add_controller(self.event_contoller_motion)
|
||||
self.event_contoller_motion.connect("enter", self.toggle_play, False)
|
||||
self.event_contoller_motion.connect("leave", self.toggle_play, None, None)
|
||||
self.cover_button.connect("clicked", self.main_button_clicked, False)
|
||||
self.play_button.connect("clicked", self.main_button_clicked, True)
|
||||
self.overlay.set_measure_overlay(self.play_revealer, True)
|
||||
|
||||
shared.schema.connect("changed", self.schema_changed)
|
||||
self.set_play_label()
|
||||
|
||||
def update_values(self, data):
|
||||
for key, value in data.items():
|
||||
# Convert executables to strings
|
||||
if key == "executable" and isinstance(value, list):
|
||||
value = shlex.join(value)
|
||||
setattr(self, key, value)
|
||||
self.cover_button.connect("clicked", self.cover_button_clicked)
|
||||
self.play_button.connect("clicked", self.play_button_clicked)
|
||||
|
||||
def update(self):
|
||||
self.emit("update-ready", {})
|
||||
self.event_contoller_motion.connect("enter", self.show_play)
|
||||
self.event_contoller_motion.connect("leave", self.hide_play)
|
||||
|
||||
def save(self):
|
||||
self.emit("save-ready", {})
|
||||
self.win.schema.connect("changed", self.schema_changed)
|
||||
|
||||
def create_toast(self, title, action=None):
|
||||
toast = Adw.Toast.new(title.format(self.name))
|
||||
toast.set_priority(Adw.ToastPriority.HIGH)
|
||||
|
||||
if action:
|
||||
toast.set_button_label(_("Undo"))
|
||||
toast.connect("button-clicked", self.win.on_undo_action, self, action)
|
||||
|
||||
if (self, action) in self.win.toasts.keys():
|
||||
# Dismiss the toast if there already is one
|
||||
self.win.toasts[(self, action)].dismiss()
|
||||
|
||||
self.win.toasts[(self, action)] = toast
|
||||
|
||||
self.win.toast_overlay.add_toast(toast)
|
||||
if self.hidden:
|
||||
self.menu_button.set_menu_model(self.hidden_game_options)
|
||||
else:
|
||||
self.menu_button.set_menu_model(self.game_options)
|
||||
self.menu_button.get_popover().connect("notify::visible", self.hide_play)
|
||||
|
||||
def launch(self):
|
||||
self.last_played = int(time())
|
||||
self.save()
|
||||
self.update()
|
||||
|
||||
# Generate launch arguments, either list (no shell) or a string (for shell).
|
||||
args = (
|
||||
"flatpak-spawn --host /bin/sh -c " + shlex.quote(self.executable) # Flatpak
|
||||
if os.getenv("FLATPAK_ID") == shared.APP_ID
|
||||
else self.executable # Others
|
||||
["flatpak-spawn", "--host", *self.executable] # Flatpak
|
||||
if os.getenv("FLATPAK_ID") == "hu.kramo.Cartridges"
|
||||
else shlex.join(
|
||||
self.executable
|
||||
) # Windows (We need shell to support its "open" built-in).
|
||||
if os.name == "nt"
|
||||
else self.executable # Linux/Others
|
||||
)
|
||||
|
||||
logging.info("Starting %s: %s", self.name, str(args))
|
||||
# pylint: disable=consider-using-with
|
||||
# The host environment vars are automatically passed through by Popen.
|
||||
subprocess.Popen(
|
||||
args,
|
||||
cwd=Path.home(),
|
||||
shell=True,
|
||||
shell=isinstance(args, str),
|
||||
start_new_session=True,
|
||||
creationflags=subprocess.CREATE_NEW_PROCESS_GROUP if os.name == "nt" else 0,
|
||||
)
|
||||
if Gio.Settings.new("hu.kramo.Cartridges").get_boolean("exit-after-launch"):
|
||||
sys.exit()
|
||||
|
||||
if shared.schema.get_boolean("exit-after-launch"):
|
||||
self.app.quit()
|
||||
|
||||
# The variable is the title of the game
|
||||
self.create_toast(_("{} launched"))
|
||||
|
||||
def toggle_hidden(self, toast=True):
|
||||
self.hidden = not self.hidden
|
||||
self.save()
|
||||
|
||||
if self.win.stack.get_visible_child() == self.win.details_view:
|
||||
self.win.on_go_back_action()
|
||||
|
||||
self.update()
|
||||
|
||||
if toast:
|
||||
self.create_toast(
|
||||
# The variable is the title of the game
|
||||
(_("{} hidden") if self.hidden else _("{} unhidden")).format(
|
||||
GLib.markup_escape_text(self.name)
|
||||
),
|
||||
"hide",
|
||||
)
|
||||
|
||||
def remove_game(self):
|
||||
# Add "removed=True" to the game properties so it can be deleted on next init
|
||||
self.removed = True
|
||||
self.save()
|
||||
self.update()
|
||||
|
||||
if self.win.stack.get_visible_child() == self.win.details_view:
|
||||
self.win.on_go_back_action()
|
||||
|
||||
# The variable is the title of the game
|
||||
self.create_toast(
|
||||
_("{} removed").format(GLib.markup_escape_text(self.name)), "remove"
|
||||
def toggle_hidden(self):
|
||||
data = json.loads(
|
||||
(self.win.games_dir / f"{self.game_id}.json").read_text("utf-8")
|
||||
)
|
||||
|
||||
data["hidden"] = not data["hidden"]
|
||||
|
||||
save_game(self.win, data)
|
||||
|
||||
def get_cover_path(self):
|
||||
cover_path = self.win.covers_dir / f"{self.game_id}.gif"
|
||||
if cover_path.is_file():
|
||||
return cover_path
|
||||
|
||||
cover_path = self.win.covers_dir / f"{self.game_id}.tiff"
|
||||
if cover_path.is_file():
|
||||
return cover_path
|
||||
|
||||
def show_play(self, _widget, *_unused):
|
||||
self.play_revealer.set_reveal_child(True)
|
||||
self.title_revealer.set_reveal_child(False)
|
||||
|
||||
def hide_play(self, _widget, *_unused):
|
||||
if not self.menu_button.get_active():
|
||||
self.play_revealer.set_reveal_child(False)
|
||||
self.title_revealer.set_reveal_child(True)
|
||||
|
||||
def launch_game(self, _widget, *_unused):
|
||||
self.win.set_active_game(None, None, self.game_id)
|
||||
self.win.get_application().on_launch_game_action(None)
|
||||
|
||||
def cover_button_clicked(self, _widget):
|
||||
if self.win.schema.get_boolean("cover-launches-game"):
|
||||
self.launch_game(None)
|
||||
else:
|
||||
self.win.show_details_view(None, self.game_id)
|
||||
|
||||
def play_button_clicked(self, _widget):
|
||||
if self.win.schema.get_boolean("cover-launches-game"):
|
||||
self.win.show_details_view(None, self.game_id)
|
||||
else:
|
||||
self.launch_game(None)
|
||||
|
||||
def set_play_label(self):
|
||||
if self.win.schema.get_boolean("cover-launches-game"):
|
||||
self.play_button.set_label(_("Details"))
|
||||
else:
|
||||
self.play_button.set_label(_("Play"))
|
||||
|
||||
def schema_changed(self, _settings, key):
|
||||
if key == "cover-launches-game":
|
||||
self.set_play_label()
|
||||
|
||||
def set_loading(self, state):
|
||||
self.loading += state
|
||||
loading = self.loading > 0
|
||||
|
||||
self.cover.set_opacity(int(not loading))
|
||||
self.spinner.set_spinning(loading)
|
||||
|
||||
def get_cover_path(self):
|
||||
cover_path = shared.covers_dir / f"{self.game_id}.gif"
|
||||
if cover_path.is_file():
|
||||
return cover_path
|
||||
|
||||
cover_path = shared.covers_dir / f"{self.game_id}.tiff"
|
||||
if cover_path.is_file():
|
||||
return cover_path
|
||||
|
||||
return None
|
||||
|
||||
def toggle_play(self, _widget, _prop1, _prop2, state=True):
|
||||
if not self.menu_button.get_active():
|
||||
self.play_revealer.set_reveal_child(not state)
|
||||
self.menu_revealer.set_reveal_child(not state)
|
||||
|
||||
def main_button_clicked(self, _widget, button):
|
||||
if shared.schema.get_boolean("cover-launches-game") ^ button:
|
||||
self.launch()
|
||||
else:
|
||||
self.win.show_details_view(self)
|
||||
|
||||
def set_play_icon(self):
|
||||
self.play_button.set_icon_name(
|
||||
"help-about-symbolic"
|
||||
if shared.schema.get_boolean("cover-launches-game")
|
||||
else "media-playback-start-symbolic"
|
||||
)
|
||||
|
||||
def schema_changed(self, _settings, key):
|
||||
if key == "cover-launches-game":
|
||||
self.set_play_icon()
|
||||
|
||||
@GObject.Signal(name="update-ready", arg_types=[object])
|
||||
def update_ready(self, _additional_data) -> None:
|
||||
"""Signal emitted when the game needs updating"""
|
||||
|
||||
@GObject.Signal(name="save-ready", arg_types=[object])
|
||||
def save_ready(self, _additional_data) -> None:
|
||||
"""Signal emitted when the game needs saving"""
|
||||
|
||||
@@ -17,101 +17,62 @@
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
from gi.repository import Gdk, GdkPixbuf, Gio, GLib
|
||||
from PIL import Image, ImageFilter, ImageStat
|
||||
|
||||
from src import shared
|
||||
from gi.repository import GdkPixbuf, Gio, GLib
|
||||
|
||||
|
||||
class GameCover:
|
||||
texture = None
|
||||
blurred = None
|
||||
luminance = None
|
||||
pixbuf = None
|
||||
path = None
|
||||
animation = None
|
||||
anim_iter = None
|
||||
|
||||
placeholder = Gdk.Texture.new_from_resource(
|
||||
shared.PREFIX + "/library_placeholder.svg"
|
||||
)
|
||||
placeholder_small = Gdk.Texture.new_from_resource(
|
||||
shared.PREFIX + "/library_placeholder_small.svg"
|
||||
placeholder_pixbuf = GdkPixbuf.Pixbuf.new_from_resource_at_scale(
|
||||
"/hu/kramo/Cartridges/library_placeholder.svg", 400, 600, False
|
||||
)
|
||||
|
||||
def __init__(self, pictures, path=None):
|
||||
self.pictures = pictures
|
||||
self.new_cover(path)
|
||||
self.new_pixbuf(path)
|
||||
|
||||
# Wrap the function in another one as Gio.Task.run_in_thread does not allow for passing args
|
||||
def create_func(self, path):
|
||||
self.animation = GdkPixbuf.PixbufAnimation.new_from_file(str(path))
|
||||
self.anim_iter = self.animation.get_iter()
|
||||
|
||||
def wrapper(task, *_args):
|
||||
def wrapper(task, *_unused):
|
||||
self.update_animation((task, self.animation))
|
||||
|
||||
return wrapper
|
||||
|
||||
def new_cover(self, path=None):
|
||||
def new_pixbuf(self, path=None):
|
||||
self.animation = None
|
||||
self.texture = None
|
||||
self.blurred = None
|
||||
self.luminance = None
|
||||
self.pixbuf = None
|
||||
self.path = path
|
||||
|
||||
if path:
|
||||
if path.suffix == ".gif":
|
||||
self.task = Gio.Task.new()
|
||||
self.task.run_in_thread(self.create_func(self.path))
|
||||
if str(path).rsplit(".", maxsplit=1)[-1] == "gif":
|
||||
task = Gio.Task.new()
|
||||
task.run_in_thread(self.create_func(self.path))
|
||||
else:
|
||||
self.texture = Gdk.Texture.new_from_filename(str(path))
|
||||
self.pixbuf = GdkPixbuf.Pixbuf.new_from_file_at_scale(
|
||||
str(path), 200, 300, False
|
||||
)
|
||||
|
||||
if not self.animation:
|
||||
self.set_texture(self.texture)
|
||||
self.set_pixbuf(self.pixbuf)
|
||||
|
||||
def get_texture(self):
|
||||
return (
|
||||
Gdk.Texture.new_for_pixbuf(self.animation.get_static_image())
|
||||
if self.animation
|
||||
else self.texture
|
||||
)
|
||||
def get_pixbuf(self):
|
||||
return self.animation.get_static_image() if self.animation else self.pixbuf
|
||||
|
||||
def get_blurred(self):
|
||||
if not self.blurred:
|
||||
if self.path:
|
||||
with Image.open(self.path) as image:
|
||||
image = (
|
||||
image.convert("RGB")
|
||||
.resize((100, 150))
|
||||
.filter(ImageFilter.GaussianBlur(20))
|
||||
)
|
||||
|
||||
tmp_path = Gio.File.new_tmp(None)[0].get_path()
|
||||
image.save(tmp_path, "tiff", compression=None)
|
||||
|
||||
self.blurred = Gdk.Texture.new_from_filename(tmp_path)
|
||||
|
||||
stat = ImageStat.Stat(image.convert("L"))
|
||||
|
||||
# Luminance values for light and dark mode
|
||||
self.luminance = [
|
||||
min((stat.mean[0] + stat.extrema[0][0]) / 510, 0.7),
|
||||
max((stat.mean[0] + stat.extrema[0][1]) / 510, 0.3),
|
||||
]
|
||||
else:
|
||||
self.blurred = self.placeholder_small
|
||||
self.luminance = (0.3, 0.5)
|
||||
|
||||
return self.blurred
|
||||
def get_animation(self):
|
||||
return self.path if self.animation else None
|
||||
|
||||
def add_picture(self, picture):
|
||||
self.pictures.add(picture)
|
||||
if not self.animation:
|
||||
self.set_texture(self.texture)
|
||||
else:
|
||||
self.update_animation((self.task, self.animation))
|
||||
self.set_pixbuf(self.pixbuf)
|
||||
|
||||
def set_texture(self, texture):
|
||||
def set_pixbuf(self, pixbuf):
|
||||
self.pictures.discard(
|
||||
picture for picture in self.pictures if not picture.is_visible()
|
||||
)
|
||||
@@ -119,13 +80,15 @@ class GameCover:
|
||||
self.animation = None
|
||||
else:
|
||||
for picture in self.pictures:
|
||||
picture.set_paintable(texture or self.placeholder)
|
||||
if not pixbuf:
|
||||
pixbuf = self.placeholder_pixbuf
|
||||
picture.set_pixbuf(pixbuf)
|
||||
|
||||
def update_animation(self, data):
|
||||
if self.animation == data[1]:
|
||||
self.anim_iter.advance()
|
||||
|
||||
self.set_texture(Gdk.Texture.new_for_pixbuf(self.anim_iter.get_pixbuf()))
|
||||
self.set_pixbuf(self.anim_iter.get_pixbuf())
|
||||
|
||||
delay_time = self.anim_iter.get_delay_time()
|
||||
GLib.timeout_add(
|
||||
@@ -133,3 +96,5 @@ class GameCover:
|
||||
self.update_animation,
|
||||
data,
|
||||
)
|
||||
else:
|
||||
data[0].return_value(False)
|
||||
|
||||
@@ -1,322 +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 gi.repository import Adw, GLib, Gtk
|
||||
|
||||
from src import shared
|
||||
from src.errors.error_producer import ErrorProducer
|
||||
from src.errors.friendly_error import FriendlyError
|
||||
from src.game import Game
|
||||
from src.importer.sources.location import UnresolvableLocationError
|
||||
from src.importer.sources.source import Source
|
||||
from src.store.managers.async_manager import AsyncManager
|
||||
from src.store.pipeline import Pipeline
|
||||
from src.utils.task import Task
|
||||
|
||||
|
||||
# pylint: disable=too-many-instance-attributes
|
||||
class Importer(ErrorProducer):
|
||||
"""A class in charge of scanning sources for games"""
|
||||
|
||||
progressbar = None
|
||||
import_statuspage = None
|
||||
import_dialog = None
|
||||
summary_toast = None
|
||||
|
||||
sources: set[Source] = None
|
||||
|
||||
n_source_tasks_created: int = 0
|
||||
n_source_tasks_done: int = 0
|
||||
n_pipelines_done: int = 0
|
||||
game_pipelines: set[Pipeline] = None
|
||||
|
||||
def __init__(self):
|
||||
super().__init__()
|
||||
self.game_pipelines = set()
|
||||
self.sources = set()
|
||||
|
||||
@property
|
||||
def n_games_added(self):
|
||||
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):
|
||||
progress = sum(pipeline.progress for pipeline in self.game_pipelines)
|
||||
try:
|
||||
progress = progress / len(self.game_pipelines)
|
||||
except ZeroDivisionError:
|
||||
progress = 0
|
||||
return progress
|
||||
|
||||
@property
|
||||
def sources_progress(self):
|
||||
try:
|
||||
progress = self.n_source_tasks_done / self.n_source_tasks_created
|
||||
except ZeroDivisionError:
|
||||
progress = 0
|
||||
return progress
|
||||
|
||||
@property
|
||||
def finished(self):
|
||||
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):
|
||||
self.sources.add(source)
|
||||
|
||||
def run(self):
|
||||
"""Use several Gio.Task to import games from added sources"""
|
||||
|
||||
shared.win.get_application().lookup_action("import").set_enabled(False)
|
||||
|
||||
self.create_dialog()
|
||||
|
||||
# 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.id)
|
||||
task = Task.new(None, None, self.source_callback, (source,))
|
||||
self.n_source_tasks_created += 1
|
||||
task.set_task_data((source,))
|
||||
task.run_in_thread(self.source_task_thread_func)
|
||||
|
||||
self.progress_changed_callback()
|
||||
|
||||
def create_dialog(self):
|
||||
"""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.Window(
|
||||
content=self.import_statuspage,
|
||||
modal=True,
|
||||
default_width=350,
|
||||
default_height=-1,
|
||||
transient_for=shared.win,
|
||||
deletable=False,
|
||||
)
|
||||
self.import_dialog.present()
|
||||
|
||||
def source_task_thread_func(self, _task, _obj, data, _cancellable):
|
||||
"""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.id)
|
||||
return
|
||||
try:
|
||||
iterator = iter(source)
|
||||
except UnresolvableLocationError:
|
||||
logging.info("Source %s skipped, bad location", source.id)
|
||||
return
|
||||
|
||||
# Get games from source
|
||||
logging.info("Scanning source %s", 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.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.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 update_progressbar(self):
|
||||
"""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 source_callback(self, _obj, _result, data):
|
||||
"""Callback executed when a source is fully scanned"""
|
||||
source, *_rest = data
|
||||
logging.debug("Import done for source %s", source.id)
|
||||
self.n_source_tasks_done += 1
|
||||
self.progress_changed_callback()
|
||||
|
||||
def pipeline_advanced_callback(self, pipeline: Pipeline):
|
||||
"""Callback called when a pipeline for a game has advanced"""
|
||||
if pipeline.is_done:
|
||||
self.n_pipelines_done += 1
|
||||
self.progress_changed_callback()
|
||||
|
||||
def progress_changed_callback(self):
|
||||
"""
|
||||
Callback called when the import process has progressed
|
||||
|
||||
Triggered when:
|
||||
* All sources have been started
|
||||
* A source finishes
|
||||
* A pipeline finishes
|
||||
"""
|
||||
self.update_progressbar()
|
||||
if self.finished:
|
||||
self.import_callback()
|
||||
|
||||
def import_callback(self):
|
||||
"""Callback called when importing has finished"""
|
||||
logging.info("Import done")
|
||||
self.import_dialog.close()
|
||||
self.summary_toast = self.create_summary_toast()
|
||||
self.create_error_dialog()
|
||||
shared.win.get_application().lookup_action("import").set_enabled(True)
|
||||
|
||||
def create_error_dialog(self):
|
||||
"""Dialog containing all errors raised by importers"""
|
||||
|
||||
# Collect all errors that happened in the importer and the managers
|
||||
errors: list[Exception] = []
|
||||
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.MessageDialog()
|
||||
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)
|
||||
dialog.set_transient_for(shared.win)
|
||||
|
||||
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()
|
||||
|
||||
def create_summary_toast(self):
|
||||
"""N games imported toast"""
|
||||
|
||||
toast = Adw.Toast(timeout=0, priority=Adw.ToastPriority.HIGH)
|
||||
|
||||
if self.n_games_added == 0:
|
||||
toast.set_title(_("No new games found"))
|
||||
toast.set_button_label(_("Preferences"))
|
||||
toast.connect(
|
||||
"button-clicked",
|
||||
self.dialog_response_callback,
|
||||
"open_preferences",
|
||||
"import",
|
||||
)
|
||||
|
||||
elif self.n_games_added == 1:
|
||||
toast.set_title(_("1 game imported"))
|
||||
|
||||
elif self.n_games_added > 1:
|
||||
# The variable is the number of games
|
||||
toast.set_title(_("{} games imported").format(self.n_games_added))
|
||||
|
||||
shared.win.toast_overlay.add_toast(toast)
|
||||
return toast
|
||||
|
||||
def open_preferences(self, page=None, expander_row=None):
|
||||
return shared.win.get_application().on_preferences_action(
|
||||
page_name=page, expander_row=expander_row
|
||||
)
|
||||
|
||||
def timeout_toast(self, *_args):
|
||||
"""Manually timeout the toast after the user has dismissed all warnings"""
|
||||
GLib.timeout_add_seconds(5, self.summary_toast.dismiss)
|
||||
|
||||
def dialog_response_callback(self, _widget, response, *args):
|
||||
"""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()
|
||||
@@ -1,102 +0,0 @@
|
||||
# bottles_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
|
||||
|
||||
from pathlib import Path
|
||||
from time import time
|
||||
|
||||
import yaml
|
||||
|
||||
from src import shared
|
||||
from src.game import Game
|
||||
from src.importer.sources.location import Location
|
||||
from src.importer.sources.source import (
|
||||
SourceIterationResult,
|
||||
SourceIterator,
|
||||
URLExecutableSource,
|
||||
)
|
||||
|
||||
|
||||
class BottlesSourceIterator(SourceIterator):
|
||||
source: "BottlesSource"
|
||||
|
||||
def generator_builder(self) -> SourceIterationResult:
|
||||
"""Generator method producing games"""
|
||||
|
||||
data = self.source.data_location["library.yml"].read_text("utf-8")
|
||||
library: dict = yaml.safe_load(data)
|
||||
added_time = int(time())
|
||||
|
||||
for entry in library.values():
|
||||
# Build game
|
||||
values = {
|
||||
"source": self.source.id,
|
||||
"added": added_time,
|
||||
"name": entry["name"],
|
||||
"game_id": self.source.game_id_format.format(game_id=entry["id"]),
|
||||
"executable": self.source.executable_format.format(
|
||||
bottle_name=entry["bottle"]["name"], game_name=entry["name"]
|
||||
),
|
||||
}
|
||||
game = Game(values)
|
||||
|
||||
# Get official cover path
|
||||
try:
|
||||
# This will not work if both Cartridges and Bottles are installed via Flatpak
|
||||
# as Cartridges can't access directories picked via Bottles' file picker portal
|
||||
bottles_location = Path(
|
||||
yaml.safe_load(
|
||||
self.source.data_location["data.yml"].read_text("utf-8")
|
||||
)["custom_bottles_path"]
|
||||
)
|
||||
except (FileNotFoundError, KeyError):
|
||||
bottles_location = self.source.data_location.root / "bottles"
|
||||
|
||||
bottle_path = entry["bottle"]["path"]
|
||||
|
||||
additional_data = {}
|
||||
if entry["thumbnail"]:
|
||||
image_name = entry["thumbnail"].split(":")[1]
|
||||
image_path = bottles_location / bottle_path / "grids" / image_name
|
||||
additional_data = {"local_image_path": image_path}
|
||||
|
||||
# Produce game
|
||||
yield (game, additional_data)
|
||||
|
||||
|
||||
class BottlesSource(URLExecutableSource):
|
||||
"""Generic Bottles source"""
|
||||
|
||||
name = "Bottles"
|
||||
iterator_class = BottlesSourceIterator
|
||||
url_format = 'bottles:run/"{bottle_name}"/"{game_name}"'
|
||||
available_on = {"linux"}
|
||||
|
||||
data_location = Location(
|
||||
schema_key="bottles-location",
|
||||
candidates=(
|
||||
shared.flatpak_dir / "com.usebottles.bottles" / "data" / "bottles",
|
||||
shared.data_dir / "bottles/",
|
||||
shared.home / ".local" / "share" / "bottles",
|
||||
),
|
||||
paths={
|
||||
"library.yml": (False, "library.yml"),
|
||||
"data.yml": (False, "data.yml"),
|
||||
},
|
||||
)
|
||||
@@ -1,132 +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 pathlib import Path
|
||||
from time import time
|
||||
|
||||
from gi.repository import GLib, Gtk
|
||||
|
||||
from src import shared
|
||||
from src.game import Game
|
||||
from src.importer.sources.location import Location
|
||||
from src.importer.sources.source import Source, SourceIterationResult, SourceIterator
|
||||
|
||||
|
||||
class FlatpakSourceIterator(SourceIterator):
|
||||
source: "FlatpakSource"
|
||||
|
||||
def generator_builder(self) -> SourceIterationResult:
|
||||
"""Generator method producing games"""
|
||||
|
||||
added_time = int(time())
|
||||
|
||||
icon_theme = Gtk.IconTheme.new()
|
||||
icon_theme.add_search_path(str(self.source.data_location["icons"]))
|
||||
|
||||
blacklist = (
|
||||
{"hu.kramo.Cartridges", "hu.kramo.Cartridges.Devel"}
|
||||
if shared.schema.get_boolean("flatpak-import-launchers")
|
||||
else {
|
||||
"hu.kramo.Cartridges",
|
||||
"hu.kramo.Cartridges.Devel",
|
||||
"com.valvesoftware.Steam",
|
||||
"net.lutris.Lutris",
|
||||
"com.heroicgameslauncher.hgl",
|
||||
"com.usebottles.Bottles",
|
||||
"io.itch.itch",
|
||||
}
|
||||
)
|
||||
|
||||
for entry in (self.source.data_location["applications"]).iterdir():
|
||||
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.GError:
|
||||
continue
|
||||
|
||||
values = {
|
||||
"source": self.source.id,
|
||||
"added": added_time,
|
||||
"name": name,
|
||||
"game_id": self.source.game_id_format.format(game_id=flatpak_id),
|
||||
"executable": self.source.executable_format.format(
|
||||
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.GError:
|
||||
pass
|
||||
|
||||
# Produce game
|
||||
yield (game, additional_data)
|
||||
|
||||
|
||||
class FlatpakSource(Source):
|
||||
"""Generic Flatpak source"""
|
||||
|
||||
name = "Flatpak"
|
||||
iterator_class = FlatpakSourceIterator
|
||||
executable_format = "flatpak run {flatpak_id}"
|
||||
available_on = {"linux"}
|
||||
|
||||
data_location = Location(
|
||||
schema_key="flatpak-location",
|
||||
candidates=(
|
||||
"/var/lib/flatpak/",
|
||||
shared.data_dir / "flatpak",
|
||||
),
|
||||
paths={
|
||||
"applications": (True, "exports/share/applications"),
|
||||
"icons": (True, "exports/share/icons"),
|
||||
},
|
||||
)
|
||||
@@ -1,162 +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 hashlib import sha256
|
||||
from json import JSONDecodeError
|
||||
from time import time
|
||||
from typing import Optional, TypedDict
|
||||
|
||||
from src import shared
|
||||
from src.game import Game
|
||||
from src.importer.sources.location import Location
|
||||
from src.importer.sources.source import (
|
||||
URLExecutableSource,
|
||||
SourceIterationResult,
|
||||
SourceIterator,
|
||||
)
|
||||
|
||||
|
||||
class HeroicLibraryEntry(TypedDict):
|
||||
app_name: str
|
||||
installed: Optional[bool]
|
||||
runner: str
|
||||
title: str
|
||||
developer: str
|
||||
art_square: str
|
||||
|
||||
|
||||
class HeroicSubSource(TypedDict):
|
||||
service: str
|
||||
path: tuple[str]
|
||||
|
||||
|
||||
class HeroicSourceIterator(SourceIterator):
|
||||
source: "HeroicSource"
|
||||
|
||||
sub_sources: dict[str, HeroicSubSource] = {
|
||||
"sideload": {
|
||||
"service": "sideload",
|
||||
"path": ("sideload_apps", "library.json"),
|
||||
},
|
||||
"legendary": {
|
||||
"service": "epic",
|
||||
"path": ("store_cache", "legendary_library.json"),
|
||||
},
|
||||
"gog": {
|
||||
"service": "gog",
|
||||
"path": ("store_cache", "gog_library.json"),
|
||||
},
|
||||
}
|
||||
|
||||
def game_from_library_entry(
|
||||
self, entry: HeroicLibraryEntry, added_time: int
|
||||
) -> SourceIterationResult:
|
||||
"""Helper method used to build a Game from a Heroic library entry"""
|
||||
|
||||
# Skip games that are not installed
|
||||
if not entry["is_installed"]:
|
||||
return None
|
||||
|
||||
# Build game
|
||||
app_name = entry["app_name"]
|
||||
runner = entry["runner"]
|
||||
service = self.sub_sources[runner]["service"]
|
||||
values = {
|
||||
"source": self.source.id,
|
||||
"added": added_time,
|
||||
"name": entry["title"],
|
||||
"developer": entry.get("developer", None),
|
||||
"game_id": self.source.game_id_format.format(
|
||||
service=service, game_id=app_name
|
||||
),
|
||||
"executable": self.source.executable_format.format(app_name=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"]
|
||||
if service == "epic":
|
||||
uri += "?h=400&resize=1&w=300"
|
||||
digest = sha256(uri.encode()).hexdigest()
|
||||
image_path = self.source.config_location.root / "images-cache" / digest
|
||||
additional_data = {"local_image_path": image_path}
|
||||
|
||||
return (game, additional_data)
|
||||
|
||||
def generator_builder(self) -> SourceIterationResult:
|
||||
"""Generator method producing games from all the Heroic sub-sources"""
|
||||
|
||||
for sub_source_name, sub_source in self.sub_sources.items():
|
||||
# Skip disabled sub-sources
|
||||
if not shared.schema.get_boolean("heroic-import-" + sub_source["service"]):
|
||||
continue
|
||||
# Load games from JSON
|
||||
file = self.source.config_location.root.joinpath(*sub_source["path"])
|
||||
try:
|
||||
contents = json.load(file.open())
|
||||
key = "library" if sub_source_name == "legendary" else "games"
|
||||
library = contents[key]
|
||||
except (JSONDecodeError, OSError, KeyError):
|
||||
# Invalid library.json file, skip it
|
||||
logging.warning("Couldn't open Heroic file: %s", str(file))
|
||||
continue
|
||||
|
||||
added_time = int(time())
|
||||
|
||||
for entry in library:
|
||||
try:
|
||||
result = self.game_from_library_entry(entry, added_time)
|
||||
except KeyError as error:
|
||||
# Skip invalid games
|
||||
logging.warning(
|
||||
"Invalid Heroic game skipped in %s", str(file), exc_info=error
|
||||
)
|
||||
continue
|
||||
yield result
|
||||
|
||||
|
||||
class HeroicSource(URLExecutableSource):
|
||||
"""Generic Heroic Games Launcher source"""
|
||||
|
||||
name = "Heroic"
|
||||
iterator_class = HeroicSourceIterator
|
||||
url_format = "heroic://launch/{app_name}"
|
||||
available_on = {"linux", "win32"}
|
||||
|
||||
config_location = Location(
|
||||
schema_key="heroic-location",
|
||||
candidates=(
|
||||
shared.flatpak_dir / "com.heroicgameslauncher.hgl" / "config" / "heroic",
|
||||
shared.config_dir / "heroic",
|
||||
shared.home / ".config" / "heroic",
|
||||
shared.appdata_dir / "heroic",
|
||||
),
|
||||
paths={
|
||||
"config.json": (False, "config.json"),
|
||||
},
|
||||
)
|
||||
|
||||
@property
|
||||
def game_id_format(self) -> str:
|
||||
"""The string format used to construct game IDs"""
|
||||
return self.name.lower() + "_{service}_{game_id}"
|
||||
@@ -1,96 +0,0 @@
|
||||
# itch_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
|
||||
|
||||
from shutil import rmtree
|
||||
from sqlite3 import connect
|
||||
from time import time
|
||||
|
||||
from src import shared
|
||||
from src.game import Game
|
||||
from src.importer.sources.location import Location
|
||||
from src.importer.sources.source import (
|
||||
SourceIterationResult,
|
||||
SourceIterator,
|
||||
URLExecutableSource,
|
||||
)
|
||||
from src.utils.sqlite import copy_db
|
||||
|
||||
|
||||
class ItchSourceIterator(SourceIterator):
|
||||
source: "ItchSource"
|
||||
|
||||
def generator_builder(self) -> SourceIterationResult:
|
||||
"""Generator method producing games"""
|
||||
|
||||
# Query the database
|
||||
db_request = """
|
||||
SELECT
|
||||
games.id,
|
||||
games.title,
|
||||
games.cover_url,
|
||||
games.still_cover_url,
|
||||
caves.id
|
||||
FROM
|
||||
'caves'
|
||||
INNER JOIN
|
||||
'games'
|
||||
ON
|
||||
caves.game_id = games.id
|
||||
;
|
||||
"""
|
||||
db_path = copy_db(self.source.config_location["butler.db"])
|
||||
connection = connect(db_path)
|
||||
cursor = connection.execute(db_request)
|
||||
|
||||
added_time = int(time())
|
||||
|
||||
# Create games from the db results
|
||||
for row in cursor:
|
||||
values = {
|
||||
"added": added_time,
|
||||
"source": self.source.id,
|
||||
"name": row[1],
|
||||
"game_id": self.source.game_id_format.format(game_id=row[0]),
|
||||
"executable": self.source.executable_format.format(cave_id=row[4]),
|
||||
}
|
||||
additional_data = {"online_cover_url": row[3] or row[2]}
|
||||
game = Game(values)
|
||||
yield (game, additional_data)
|
||||
|
||||
# Cleanup
|
||||
rmtree(str(db_path.parent))
|
||||
|
||||
|
||||
class ItchSource(URLExecutableSource):
|
||||
name = "Itch"
|
||||
iterator_class = ItchSourceIterator
|
||||
url_format = "itch://caves/{cave_id}/launch"
|
||||
available_on = {"linux", "win32"}
|
||||
|
||||
config_location = Location(
|
||||
schema_key="itch-location",
|
||||
candidates=(
|
||||
shared.flatpak_dir / "io.itch.itch" / "config" / "itch",
|
||||
shared.config_dir / "itch",
|
||||
shared.home / ".config" / "itch",
|
||||
shared.appdata_dir / "itch",
|
||||
),
|
||||
paths={"butler.db": (False, "db/butler.db")},
|
||||
)
|
||||
@@ -1,108 +0,0 @@
|
||||
# legendary_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 json
|
||||
import logging
|
||||
from json import JSONDecodeError
|
||||
from time import time
|
||||
from typing import Generator
|
||||
|
||||
from src import shared
|
||||
from src.game import Game
|
||||
from src.importer.sources.location import Location
|
||||
from src.importer.sources.source import Source, SourceIterationResult, SourceIterator
|
||||
|
||||
|
||||
class LegendarySourceIterator(SourceIterator):
|
||||
source: "LegendarySource"
|
||||
|
||||
def game_from_library_entry(
|
||||
self, entry: dict, added_time: int
|
||||
) -> SourceIterationResult:
|
||||
# Skip non-games
|
||||
if entry["is_dlc"]:
|
||||
return None
|
||||
|
||||
# Build game
|
||||
app_name = entry["app_name"]
|
||||
values = {
|
||||
"added": added_time,
|
||||
"source": self.source.id,
|
||||
"name": entry["title"],
|
||||
"game_id": self.source.game_id_format.format(game_id=app_name),
|
||||
"executable": self.source.executable_format.format(app_name=app_name),
|
||||
}
|
||||
data = {}
|
||||
|
||||
# Get additional metadata from file (optional)
|
||||
metadata_file = self.source.config_location["metadata"] / f"{app_name}.json"
|
||||
try:
|
||||
metadata = json.load(metadata_file.open())
|
||||
values["developer"] = metadata["metadata"]["developer"]
|
||||
for image_entry in metadata["metadata"]["keyImages"]:
|
||||
if image_entry["type"] == "DieselGameBoxTall":
|
||||
data["online_cover_url"] = image_entry["url"]
|
||||
break
|
||||
except (JSONDecodeError, OSError, KeyError):
|
||||
pass
|
||||
|
||||
game = Game(values)
|
||||
return (game, data)
|
||||
|
||||
def generator_builder(self) -> Generator[SourceIterationResult, None, None]:
|
||||
# Open library
|
||||
file = self.source.config_location["installed.json"]
|
||||
try:
|
||||
library: dict = json.load(file.open())
|
||||
except (JSONDecodeError, OSError):
|
||||
logging.warning("Couldn't open Legendary file: %s", str(file))
|
||||
return
|
||||
|
||||
added_time = int(time())
|
||||
|
||||
# Generate games from library
|
||||
for entry in library.values():
|
||||
try:
|
||||
result = self.game_from_library_entry(entry, added_time)
|
||||
except KeyError as error:
|
||||
# Skip invalid games
|
||||
logging.warning(
|
||||
"Invalid Legendary game skipped in %s", str(file), exc_info=error
|
||||
)
|
||||
continue
|
||||
yield result
|
||||
|
||||
|
||||
class LegendarySource(Source):
|
||||
name = "Legendary"
|
||||
executable_format = "legendary launch {app_name}"
|
||||
available_on = {"linux", "win32"}
|
||||
|
||||
iterator_class = LegendarySourceIterator
|
||||
config_location: Location = Location(
|
||||
schema_key="legendary-location",
|
||||
candidates=(
|
||||
shared.config_dir / "legendary",
|
||||
shared.home / ".config" / "legendary",
|
||||
),
|
||||
paths={
|
||||
"installed.json": (False, "installed.json"),
|
||||
"metadata": (True, "metadata"),
|
||||
},
|
||||
)
|
||||
@@ -1,84 +0,0 @@
|
||||
import logging
|
||||
from pathlib import Path
|
||||
from typing import Callable, Mapping, Iterable
|
||||
from os import PathLike
|
||||
|
||||
from src import shared
|
||||
|
||||
PathSegment = str | PathLike | Path
|
||||
PathSegments = Iterable[PathSegment]
|
||||
Candidate = PathSegments | Callable[[], PathSegments]
|
||||
|
||||
|
||||
class UnresolvableLocationError(Exception):
|
||||
pass
|
||||
|
||||
|
||||
class Location:
|
||||
"""
|
||||
Class representing a filesystem location
|
||||
|
||||
* A location may have multiple candidate roots
|
||||
* The path in the schema is always favored
|
||||
* From the candidate root, multiple subpaths should exist for it to be valid
|
||||
* When resolved, the schema is updated with the picked chosen
|
||||
"""
|
||||
|
||||
schema_key: str
|
||||
candidates: Iterable[Candidate]
|
||||
paths: Mapping[str, tuple[bool, PathSegments]]
|
||||
root: Path = None
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
schema_key: str,
|
||||
candidates: Iterable[Candidate],
|
||||
paths: Mapping[str, tuple[bool, PathSegments]],
|
||||
) -> None:
|
||||
super().__init__()
|
||||
self.schema_key = schema_key
|
||||
self.candidates = candidates
|
||||
self.paths = paths
|
||||
|
||||
def check_candidate(self, candidate: Path) -> bool:
|
||||
"""Check if a candidate root has the necessary files and directories"""
|
||||
for type_is_dir, subpath in self.paths.values():
|
||||
subpath = Path(candidate) / Path(subpath)
|
||||
if type_is_dir:
|
||||
if not subpath.is_dir():
|
||||
return False
|
||||
else:
|
||||
if not subpath.is_file():
|
||||
return False
|
||||
return True
|
||||
|
||||
def resolve(self) -> None:
|
||||
"""Choose a root path from the candidates for the location.
|
||||
If none fits, raise a UnresolvableLocationError"""
|
||||
|
||||
if self.root is not None:
|
||||
return
|
||||
|
||||
# Get the schema candidate
|
||||
schema_candidate = shared.schema.get_string(self.schema_key)
|
||||
|
||||
# Find the first matching candidate
|
||||
for candidate in (schema_candidate, *self.candidates):
|
||||
candidate = Path(candidate).expanduser()
|
||||
if not self.check_candidate(candidate):
|
||||
continue
|
||||
self.root = candidate
|
||||
break
|
||||
else:
|
||||
# No good candidate found
|
||||
raise UnresolvableLocationError()
|
||||
|
||||
# Update the schema with the found candidate
|
||||
value = str(candidate)
|
||||
shared.schema.set_string(self.schema_key, value)
|
||||
logging.debug("Resolved value for schema key %s: %s", self.schema_key, value)
|
||||
|
||||
def __getitem__(self, key: str):
|
||||
"""Get the computed path from its key for the location"""
|
||||
self.resolve()
|
||||
return self.root / self.paths[key][1]
|
||||
@@ -1,126 +0,0 @@
|
||||
# lutris_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
|
||||
from shutil import rmtree
|
||||
from sqlite3 import connect
|
||||
from time import time
|
||||
|
||||
from src import shared
|
||||
from src.game import Game
|
||||
from src.importer.sources.location import Location
|
||||
from src.importer.sources.source import (
|
||||
SourceIterationResult,
|
||||
SourceIterator,
|
||||
URLExecutableSource,
|
||||
)
|
||||
from src.utils.sqlite import copy_db
|
||||
|
||||
|
||||
class LutrisSourceIterator(SourceIterator):
|
||||
source: "LutrisSource"
|
||||
|
||||
def generator_builder(self) -> SourceIterationResult:
|
||||
"""Generator method producing games"""
|
||||
|
||||
# Query the database
|
||||
request = """
|
||||
SELECT id, name, slug, runner, hidden
|
||||
FROM 'games'
|
||||
WHERE
|
||||
name IS NOT NULL
|
||||
AND slug IS NOT NULL
|
||||
AND configPath IS NOT NULL
|
||||
AND installed
|
||||
AND (runner IS NOT "steam" OR :import_steam)
|
||||
AND (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.data_location["pga.db"])
|
||||
connection = connect(db_path)
|
||||
cursor = connection.execute(request, params)
|
||||
|
||||
added_time = int(time())
|
||||
|
||||
# Create games from the DB results
|
||||
for row in cursor:
|
||||
# Create game
|
||||
values = {
|
||||
"added": added_time,
|
||||
"hidden": row[4],
|
||||
"name": row[1],
|
||||
"source": f"{self.source.id}_{row[3]}",
|
||||
"game_id": self.source.game_id_format.format(
|
||||
runner=row[3], game_id=row[0]
|
||||
),
|
||||
"executable": self.source.executable_format.format(game_id=row[0]),
|
||||
}
|
||||
game = Game(values)
|
||||
|
||||
# Get official image path
|
||||
image_path = self.source.cache_location["coverart"] / f"{row[2]}.jpg"
|
||||
additional_data = {"local_image_path": image_path}
|
||||
|
||||
# Produce game
|
||||
yield (game, additional_data)
|
||||
|
||||
# Cleanup
|
||||
rmtree(str(db_path.parent))
|
||||
|
||||
|
||||
class LutrisSource(URLExecutableSource):
|
||||
"""Generic Lutris source"""
|
||||
|
||||
name = "Lutris"
|
||||
iterator_class = LutrisSourceIterator
|
||||
url_format = "lutris:rungameid/{game_id}"
|
||||
available_on = {"linux"}
|
||||
|
||||
# FIXME possible bug: location picks ~/.var... and cache_lcoation picks ~/.local...
|
||||
|
||||
data_location = Location(
|
||||
schema_key="lutris-location",
|
||||
candidates=(
|
||||
shared.flatpak_dir / "net.lutris.Lutris" / "data" / "lutris",
|
||||
shared.data_dir / "lutris",
|
||||
shared.home / ".local" / "share" / "lutris",
|
||||
),
|
||||
paths={
|
||||
"pga.db": (False, "pga.db"),
|
||||
},
|
||||
)
|
||||
|
||||
cache_location = Location(
|
||||
schema_key="lutris-cache-location",
|
||||
candidates=(
|
||||
shared.flatpak_dir / "net.lutris.Lutris" / "cache" / "lutris",
|
||||
shared.cache_dir / "lutris",
|
||||
shared.home / ".cache" / "lutris",
|
||||
),
|
||||
paths={
|
||||
"coverart": (True, "coverart"),
|
||||
},
|
||||
)
|
||||
|
||||
@property
|
||||
def game_id_format(self):
|
||||
return self.id + "_{runner}_{game_id}"
|
||||
@@ -1,130 +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, Iterator
|
||||
from typing import Any, Generator, Optional
|
||||
|
||||
from src.game import Game
|
||||
from src.importer.sources.location import Location
|
||||
|
||||
# Type of the data returned by iterating on a Source
|
||||
SourceIterationResult = None | Game | tuple[Game, tuple[Any]]
|
||||
|
||||
|
||||
class SourceIterator(Iterator):
|
||||
"""Data producer for a source of games"""
|
||||
|
||||
source: "Source" = None
|
||||
generator: Generator = None
|
||||
|
||||
def __init__(self, source: "Source") -> None:
|
||||
super().__init__()
|
||||
self.source = source
|
||||
self.generator = self.generator_builder()
|
||||
|
||||
def __iter__(self) -> "SourceIterator":
|
||||
return self
|
||||
|
||||
def __next__(self) -> SourceIterationResult:
|
||||
return next(self.generator)
|
||||
|
||||
@abstractmethod
|
||||
def generator_builder(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"""
|
||||
|
||||
name: str
|
||||
variant: str = None
|
||||
available_on: set[str] = set()
|
||||
data_location: Optional[Location] = None
|
||||
cache_location: Optional[Location] = None
|
||||
config_location: Optional[Location] = None
|
||||
iterator_class: type[SourceIterator]
|
||||
|
||||
@property
|
||||
def full_name(self) -> str:
|
||||
"""The source's full name"""
|
||||
full_name_ = self.name
|
||||
if self.variant is not None:
|
||||
full_name_ += f" ({self.variant})"
|
||||
return full_name_
|
||||
|
||||
@property
|
||||
def id(self) -> str: # pylint: disable=invalid-name
|
||||
"""The source's identifier"""
|
||||
id_ = self.name.lower()
|
||||
if self.variant is not None:
|
||||
id_ += f"_{self.variant.lower()}"
|
||||
return id_
|
||||
|
||||
@property
|
||||
def game_id_format(self) -> str:
|
||||
"""The string format used to construct game IDs"""
|
||||
return self.id + "_{game_id}"
|
||||
|
||||
@property
|
||||
def is_available(self):
|
||||
return sys.platform in self.available_on
|
||||
|
||||
@property
|
||||
@abstractmethod
|
||||
def executable_format(self) -> str:
|
||||
"""The executable format used to construct game executables"""
|
||||
|
||||
def __iter__(self) -> SourceIterator:
|
||||
"""
|
||||
Get an iterator for the source
|
||||
:raises UnresolvableLocationError: Not iterable if any of the locations are unresolvable
|
||||
"""
|
||||
for location_name in ("data", "cache", "config"):
|
||||
location = getattr(self, f"{location_name}_location", None)
|
||||
if location is None:
|
||||
continue
|
||||
location.resolve()
|
||||
return self.iterator_class(self)
|
||||
|
||||
|
||||
# pylint: disable=abstract-method
|
||||
class URLExecutableSource(Source):
|
||||
"""Source class that use custom URLs to start games"""
|
||||
|
||||
url_format: str
|
||||
|
||||
@property
|
||||
def executable_format(self) -> str:
|
||||
match sys.platform:
|
||||
case "win32":
|
||||
return "start " + self.url_format
|
||||
case "linux":
|
||||
return "xdg-open " + self.url_format
|
||||
case other:
|
||||
raise NotImplementedError(
|
||||
f"No URL handler command available for {other}"
|
||||
)
|
||||
@@ -1,130 +0,0 @@
|
||||
# steam_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 re
|
||||
from pathlib import Path
|
||||
from time import time
|
||||
from typing import Iterable
|
||||
|
||||
from src import shared
|
||||
from src.game import Game
|
||||
from src.importer.sources.source import (
|
||||
SourceIterationResult,
|
||||
SourceIterator,
|
||||
URLExecutableSource,
|
||||
)
|
||||
from src.utils.steam import SteamFileHelper, SteamInvalidManifestError
|
||||
from src.importer.sources.location import Location
|
||||
|
||||
|
||||
class SteamSourceIterator(SourceIterator):
|
||||
source: "SteamSource"
|
||||
|
||||
def get_manifest_dirs(self) -> Iterable[Path]:
|
||||
"""Get dirs that contain steam app manifests"""
|
||||
libraryfolders_path = self.source.data_location["libraryfolders.vdf"]
|
||||
with open(libraryfolders_path, "r", encoding="utf-8") as file:
|
||||
contents = file.read()
|
||||
return [
|
||||
Path(path) / "steamapps"
|
||||
for path in re.findall('"path"\\s+"(.*)"\n', contents, re.IGNORECASE)
|
||||
]
|
||||
|
||||
def get_manifests(self) -> Iterable[Path]:
|
||||
"""Get app manifests"""
|
||||
manifests = set()
|
||||
for steamapps_dir in self.get_manifest_dirs():
|
||||
if not steamapps_dir.is_dir():
|
||||
continue
|
||||
manifests.update(
|
||||
[
|
||||
manifest
|
||||
for manifest in steamapps_dir.glob("appmanifest_*.acf")
|
||||
if manifest.is_file()
|
||||
]
|
||||
)
|
||||
return manifests
|
||||
|
||||
def generator_builder(self) -> SourceIterationResult:
|
||||
"""Generator method producing games"""
|
||||
appid_cache = set()
|
||||
manifests = self.get_manifests()
|
||||
|
||||
added_time = int(time())
|
||||
|
||||
for manifest in manifests:
|
||||
# Get metadata from manifest
|
||||
steam = SteamFileHelper()
|
||||
try:
|
||||
local_data = steam.get_manifest_data(manifest)
|
||||
except (OSError, SteamInvalidManifestError):
|
||||
continue
|
||||
|
||||
# Skip non installed games
|
||||
installed_mask = 4
|
||||
if not int(local_data["stateflags"]) & installed_mask:
|
||||
continue
|
||||
|
||||
# Skip duplicate appids
|
||||
appid = local_data["appid"]
|
||||
if appid in appid_cache:
|
||||
continue
|
||||
appid_cache.add(appid)
|
||||
|
||||
# Build game from local data
|
||||
values = {
|
||||
"added": added_time,
|
||||
"name": local_data["name"],
|
||||
"source": self.source.id,
|
||||
"game_id": self.source.game_id_format.format(game_id=appid),
|
||||
"executable": self.source.executable_format.format(game_id=appid),
|
||||
}
|
||||
game = Game(values)
|
||||
|
||||
# Add official cover image
|
||||
image_path = (
|
||||
self.source.data_location["librarycache"]
|
||||
/ f"{appid}_library_600x900.jpg"
|
||||
)
|
||||
additional_data = {"local_image_path": image_path, "steam_appid": appid}
|
||||
|
||||
# Produce game
|
||||
yield (game, additional_data)
|
||||
|
||||
|
||||
class SteamSource(URLExecutableSource):
|
||||
name = "Steam"
|
||||
available_on = {"linux", "win32"}
|
||||
iterator_class = SteamSourceIterator
|
||||
url_format = "steam://rungameid/{game_id}"
|
||||
|
||||
data_location = Location(
|
||||
schema_key="steam-location",
|
||||
candidates=(
|
||||
shared.home / ".steam" / "steam",
|
||||
shared.data_dir / "Steam",
|
||||
shared.flatpak_dir / "com.valvesoftware.Steam" / "data" / "Steam",
|
||||
shared.programfiles32_dir / "Steam",
|
||||
),
|
||||
paths={
|
||||
"libraryfolders.vdf": (False, "steamapps/libraryfolders.vdf"),
|
||||
"librarycache": (True, "appcache/librarycache"),
|
||||
},
|
||||
)
|
||||
96
src/importers/bottles_importer.py
Normal file
@@ -0,0 +1,96 @@
|
||||
# bottles_importer.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 pathlib import Path
|
||||
from time import time
|
||||
|
||||
import yaml
|
||||
|
||||
from .check_install import check_install
|
||||
|
||||
|
||||
def bottles_installed(win, path=None):
|
||||
location_key = "bottles-location"
|
||||
bottles_dir = (
|
||||
path if path else Path(win.schema.get_string(location_key)).expanduser()
|
||||
)
|
||||
check = "library.yml"
|
||||
|
||||
if not (bottles_dir / check).is_file():
|
||||
locations = (
|
||||
(Path(),)
|
||||
if path
|
||||
else (
|
||||
Path.home() / ".var/app/com.usebottles.bottles/data/bottles",
|
||||
win.data_dir / "bottles",
|
||||
)
|
||||
)
|
||||
|
||||
bottles_dir = check_install(check, locations, (win.schema, location_key))
|
||||
|
||||
return bottles_dir
|
||||
|
||||
|
||||
def bottles_importer(win):
|
||||
bottles_dir = bottles_installed(win)
|
||||
if not bottles_dir:
|
||||
return
|
||||
|
||||
current_time = int(time())
|
||||
|
||||
data = (bottles_dir / "library.yml").read_text("utf-8")
|
||||
|
||||
library = yaml.load(data, Loader=yaml.Loader)
|
||||
|
||||
importer = win.importer
|
||||
importer.total_queue += len(library)
|
||||
importer.queue += len(library)
|
||||
|
||||
for game in library:
|
||||
game = library[game]
|
||||
values = {}
|
||||
|
||||
values["game_id"] = f'bottles_{game["id"]}'
|
||||
|
||||
if values["game_id"] in win.games and not win.games[values["game_id"]].removed:
|
||||
importer.save_game()
|
||||
continue
|
||||
|
||||
values["name"] = game["name"]
|
||||
values["executable"] = [
|
||||
"xdg-open",
|
||||
f'bottles:run/{game["bottle"]["name"]}/{game["name"]}',
|
||||
]
|
||||
values["hidden"] = False
|
||||
values["source"] = "bottles"
|
||||
values["added"] = current_time
|
||||
values["last_played"] = 0
|
||||
|
||||
importer.save_game(
|
||||
values,
|
||||
(
|
||||
bottles_dir
|
||||
/ "bottles"
|
||||
/ game["bottle"]["path"]
|
||||
/ "grids"
|
||||
/ game["thumbnail"].split(":")[1]
|
||||
)
|
||||
if game["thumbnail"]
|
||||
else None,
|
||||
)
|
||||
205
src/importers/heroic_importer.py
Normal file
@@ -0,0 +1,205 @@
|
||||
# heroic_importer.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
|
||||
|
||||
import hashlib
|
||||
import json
|
||||
import os
|
||||
from pathlib import Path
|
||||
from time import time
|
||||
|
||||
from .check_install import check_install
|
||||
|
||||
|
||||
def heroic_installed(win, path=None):
|
||||
location_key = "heroic-location"
|
||||
heroic_dir = (
|
||||
path if path else Path(win.schema.get_string(location_key)).expanduser()
|
||||
)
|
||||
check = "config.json"
|
||||
|
||||
if not (heroic_dir / check).is_file():
|
||||
locations = (
|
||||
(Path(),)
|
||||
if path
|
||||
else (
|
||||
Path.home() / ".var/app/com.heroicgameslauncher.hgl/config/heroic",
|
||||
win.config_dir / "heroic",
|
||||
)
|
||||
)
|
||||
|
||||
if os.name == "nt" and not path:
|
||||
locations += (Path(os.getenv("appdata")) / "heroic",)
|
||||
|
||||
heroic_dir = check_install(check, locations, (win.schema, location_key))
|
||||
|
||||
return heroic_dir
|
||||
|
||||
|
||||
def heroic_importer(win):
|
||||
heroic_dir = heroic_installed(win)
|
||||
if not heroic_dir:
|
||||
return
|
||||
|
||||
current_time = int(time())
|
||||
importer = win.importer
|
||||
|
||||
# Import Epic games
|
||||
if not win.schema.get_boolean("heroic-import-epic"):
|
||||
pass
|
||||
elif (heroic_dir / "store_cache" / "legendary_library.json").exists():
|
||||
data = (heroic_dir / "store_cache" / "legendary_library.json").read_text(
|
||||
"utf-8"
|
||||
)
|
||||
library = json.loads(data)
|
||||
|
||||
try:
|
||||
for game in library["library"]:
|
||||
if not game["is_installed"]:
|
||||
continue
|
||||
|
||||
importer.total_queue += 1
|
||||
importer.queue += 1
|
||||
|
||||
values = {}
|
||||
|
||||
app_name = game["app_name"]
|
||||
values["game_id"] = f"heroic_epic_{app_name}"
|
||||
|
||||
if (
|
||||
values["game_id"] in win.games
|
||||
and not win.games[values["game_id"]].removed
|
||||
):
|
||||
importer.save_game()
|
||||
continue
|
||||
|
||||
values["name"] = game["title"]
|
||||
values["developer"] = game["developer"]
|
||||
values["executable"] = (
|
||||
["start", f"heroic://launch/{app_name}"]
|
||||
if os.name == "nt"
|
||||
else ["xdg-open", f"heroic://launch/{app_name}"]
|
||||
)
|
||||
values["hidden"] = False
|
||||
values["source"] = "heroic_epic"
|
||||
values["added"] = current_time
|
||||
values["last_played"] = 0
|
||||
|
||||
image_path = (
|
||||
heroic_dir
|
||||
/ "images-cache"
|
||||
/ hashlib.sha256(
|
||||
(f'{game["art_square"]}?h=400&resize=1&w=300').encode()
|
||||
).hexdigest()
|
||||
)
|
||||
|
||||
importer.save_game(values, image_path if image_path.exists() else None)
|
||||
|
||||
except KeyError:
|
||||
pass
|
||||
|
||||
# Import GOG games
|
||||
if not win.schema.get_boolean("heroic-import-gog"):
|
||||
pass
|
||||
elif (heroic_dir / "gog_store" / "installed.json").exists() and (
|
||||
heroic_dir / "store_cache" / "gog_library.json"
|
||||
).exists():
|
||||
data = (heroic_dir / "gog_store" / "installed.json").read_text("utf-8")
|
||||
installed = json.loads(data)
|
||||
|
||||
importer.total_queue += len(installed["installed"])
|
||||
importer.queue += len(installed["installed"])
|
||||
|
||||
for item in installed["installed"]:
|
||||
values = {}
|
||||
app_name = item["appName"]
|
||||
|
||||
values["game_id"] = f"heroic_gog_{app_name}"
|
||||
|
||||
if (
|
||||
values["game_id"] in win.games
|
||||
and not win.games[values["game_id"]].removed
|
||||
):
|
||||
importer.save_game()
|
||||
continue
|
||||
|
||||
# Get game title and developer from gog_library.json as they are not present in installed.json
|
||||
data = (heroic_dir / "store_cache" / "gog_library.json").read_text("utf-8")
|
||||
library = json.loads(data)
|
||||
for game in library["games"]:
|
||||
if game["app_name"] == app_name:
|
||||
values["developer"] = game["developer"]
|
||||
values["name"] = game["title"]
|
||||
image_path = (
|
||||
heroic_dir
|
||||
/ "images-cache"
|
||||
/ hashlib.sha256(game["art_square"].encode()).hexdigest()
|
||||
)
|
||||
|
||||
values["executable"] = (
|
||||
["start", f"heroic://launch/{app_name}"]
|
||||
if os.name == "nt"
|
||||
else ["xdg-open", f"heroic://launch/{app_name}"]
|
||||
)
|
||||
values["hidden"] = False
|
||||
values["source"] = "heroic_gog"
|
||||
values["added"] = current_time
|
||||
values["last_played"] = 0
|
||||
|
||||
importer.save_game(values, image_path if image_path.exists() else None)
|
||||
|
||||
# Import sideloaded games
|
||||
if not win.schema.get_boolean("heroic-import-sideload"):
|
||||
pass
|
||||
elif (heroic_dir / "sideload_apps" / "library.json").exists():
|
||||
data = (heroic_dir / "sideload_apps" / "library.json").read_text("utf-8")
|
||||
library = json.loads(data)
|
||||
|
||||
importer.total_queue += len(library["games"])
|
||||
importer.queue += len(library["games"])
|
||||
|
||||
for item in library["games"]:
|
||||
values = {}
|
||||
app_name = item["app_name"]
|
||||
|
||||
values["game_id"] = f"heroic_sideload_{app_name}"
|
||||
|
||||
if (
|
||||
values["game_id"] in win.games
|
||||
and not win.games[values["game_id"]].removed
|
||||
):
|
||||
importer.save_game()
|
||||
continue
|
||||
|
||||
values["name"] = item["title"]
|
||||
values["executable"] = (
|
||||
["start", f"heroic://launch/{app_name}"]
|
||||
if os.name == "nt"
|
||||
else ["xdg-open", f"heroic://launch/{app_name}"]
|
||||
)
|
||||
values["hidden"] = False
|
||||
values["source"] = "heroic_sideload"
|
||||
values["added"] = current_time
|
||||
values["last_played"] = 0
|
||||
image_path = (
|
||||
heroic_dir
|
||||
/ "images-cache"
|
||||
/ hashlib.sha256(item["art_square"].encode()).hexdigest()
|
||||
)
|
||||
|
||||
importer.save_game(values, image_path if image_path.exists() else None)
|
||||
182
src/importers/itch_importer.py
Normal file
@@ -0,0 +1,182 @@
|
||||
# itch_importer.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
|
||||
|
||||
import os
|
||||
from pathlib import Path
|
||||
from shutil import copyfile
|
||||
from sqlite3 import connect
|
||||
from time import time
|
||||
|
||||
import requests
|
||||
from gi.repository import GdkPixbuf, Gio
|
||||
|
||||
from .check_install import check_install
|
||||
|
||||
|
||||
def get_game(task, current_time, win, row):
|
||||
values = {}
|
||||
|
||||
values["game_id"] = f"itch_{row[0]}"
|
||||
|
||||
if values["game_id"] in win.games and not win.games[values["game_id"]].removed:
|
||||
task.return_value((None, None))
|
||||
return
|
||||
|
||||
values["added"] = current_time
|
||||
values["executable"] = (
|
||||
["start", f"itch://caves/{row[4]}/launch"]
|
||||
if os.name == "nt"
|
||||
else ["xdg-open", f"itch://caves/{row[4]}/launch"]
|
||||
)
|
||||
values["hidden"] = False
|
||||
values["last_played"] = 0
|
||||
values["name"] = row[1]
|
||||
values["source"] = "itch"
|
||||
|
||||
if row[3] or row[2]:
|
||||
tmp_file = Gio.File.new_tmp(None)[0]
|
||||
try:
|
||||
with requests.get(row[3] or row[2], timeout=5) as cover:
|
||||
cover.raise_for_status()
|
||||
Path(tmp_file.get_path()).write_bytes(cover.content)
|
||||
except requests.exceptions.RequestException:
|
||||
task.return_value((values, None))
|
||||
return
|
||||
|
||||
game_cover = GdkPixbuf.Pixbuf.new_from_stream_at_scale(
|
||||
tmp_file.read(), 2, 2, False
|
||||
).scale_simple(*win.image_size, GdkPixbuf.InterpType.BILINEAR)
|
||||
|
||||
itch_pixbuf = GdkPixbuf.Pixbuf.new_from_stream(tmp_file.read())
|
||||
itch_pixbuf = itch_pixbuf.scale_simple(
|
||||
win.image_size[0],
|
||||
itch_pixbuf.get_height() * (win.image_size[0] / itch_pixbuf.get_width()),
|
||||
GdkPixbuf.InterpType.BILINEAR,
|
||||
)
|
||||
itch_pixbuf.composite(
|
||||
game_cover,
|
||||
0,
|
||||
(win.image_size[1] - itch_pixbuf.get_height()) / 2,
|
||||
itch_pixbuf.get_width(),
|
||||
itch_pixbuf.get_height(),
|
||||
0,
|
||||
(win.image_size[1] - itch_pixbuf.get_height()) / 2,
|
||||
1.0,
|
||||
1.0,
|
||||
GdkPixbuf.InterpType.BILINEAR,
|
||||
255,
|
||||
)
|
||||
else:
|
||||
game_cover = None
|
||||
|
||||
task.return_value((values, game_cover))
|
||||
|
||||
|
||||
def get_games_async(win, rows, importer):
|
||||
current_time = int(time())
|
||||
|
||||
# Wrap the function in another one as Gio.Task.run_in_thread does not allow for passing args
|
||||
def create_func(current_time, win, row):
|
||||
def wrapper(task, *_unused):
|
||||
get_game(
|
||||
task,
|
||||
current_time,
|
||||
win,
|
||||
row,
|
||||
)
|
||||
|
||||
return wrapper
|
||||
|
||||
def update_games(_task, result):
|
||||
final_values = result.propagate_value()[1]
|
||||
# No need for an if statement as final_value would be None for games we don't want to save
|
||||
importer.save_game(final_values[0], pixbuf=final_values[1])
|
||||
|
||||
for row in rows:
|
||||
task = Gio.Task.new(None, None, update_games)
|
||||
task.run_in_thread(create_func(current_time, win, row))
|
||||
|
||||
|
||||
def itch_installed(win, path=None):
|
||||
location_key = "itch-location"
|
||||
itch_dir = path if path else Path(win.schema.get_string(location_key)).expanduser()
|
||||
check = Path("db") / "butler.db"
|
||||
|
||||
if not (itch_dir / check).is_file():
|
||||
locations = (
|
||||
(Path(),)
|
||||
if path
|
||||
else (
|
||||
Path.home() / ".var/app/io.itch.itch/config/itch",
|
||||
win.config_dir / "itch",
|
||||
)
|
||||
)
|
||||
|
||||
if os.name == "nt" and not path:
|
||||
locations += (Path(os.getenv("appdata")) / "itch",)
|
||||
|
||||
itch_dir = check_install(check, locations, (win.schema, location_key))
|
||||
|
||||
return itch_dir
|
||||
|
||||
|
||||
def itch_importer(win):
|
||||
itch_dir = itch_installed(win)
|
||||
if not itch_dir:
|
||||
return
|
||||
|
||||
database_path = (itch_dir / "db").expanduser()
|
||||
|
||||
db_cache_dir = win.cache_dir / "cartridges" / "itch"
|
||||
db_cache_dir.mkdir(parents=True, exist_ok=True)
|
||||
|
||||
# Copy the file because sqlite3 doesn't like databases in /run/user/
|
||||
database_tmp_path = db_cache_dir / "butler.db"
|
||||
|
||||
for db_file in database_path.glob("butler.db*"):
|
||||
copyfile(db_file, (db_cache_dir / db_file.name))
|
||||
|
||||
db_request = """
|
||||
SELECT
|
||||
games.id,
|
||||
games.title,
|
||||
games.cover_url,
|
||||
games.still_cover_url,
|
||||
caves.id
|
||||
FROM
|
||||
'caves'
|
||||
INNER JOIN
|
||||
'games'
|
||||
ON
|
||||
caves.game_id = games.id
|
||||
;
|
||||
"""
|
||||
|
||||
connection = connect(database_tmp_path)
|
||||
cursor = connection.execute(db_request)
|
||||
rows = cursor.fetchall()
|
||||
connection.close()
|
||||
# No need to unlink temp files as they disappear when the connection is closed
|
||||
database_tmp_path.unlink(missing_ok=True)
|
||||
|
||||
importer = win.importer
|
||||
importer.total_queue += len(rows)
|
||||
importer.queue += len(rows)
|
||||
|
||||
get_games_async(win, rows, importer)
|
||||
134
src/importers/lutris_importer.py
Normal file
@@ -0,0 +1,134 @@
|
||||
# lutris_importer.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 pathlib import Path
|
||||
from shutil import copyfile
|
||||
from sqlite3 import connect
|
||||
from time import time
|
||||
|
||||
from .check_install import check_install
|
||||
|
||||
|
||||
def lutris_installed(win, path=None):
|
||||
location_key = "lutris-location"
|
||||
lutris_dir = (
|
||||
path if path else Path(win.schema.get_string(location_key)).expanduser()
|
||||
)
|
||||
check = "pga.db"
|
||||
|
||||
if not (lutris_dir / check).is_file():
|
||||
locations = (
|
||||
(Path(),)
|
||||
if path
|
||||
else (
|
||||
Path.home() / ".var/app/net.lutris.Lutris/data/lutris",
|
||||
win.data_dir / "lutris",
|
||||
)
|
||||
)
|
||||
|
||||
lutris_dir = check_install(check, locations, (win.schema, location_key))
|
||||
|
||||
return lutris_dir
|
||||
|
||||
|
||||
def lutris_cache_exists(win, path=None):
|
||||
cache_key = "lutris-cache-location"
|
||||
cache_dir = path if path else Path(win.schema.get_string(cache_key)).expanduser()
|
||||
cache_check = "coverart"
|
||||
|
||||
if not (cache_dir / cache_check).exists():
|
||||
cache_locations = (
|
||||
(Path(),)
|
||||
if path
|
||||
else (
|
||||
Path.home() / ".var" / "app" / "net.lutris.Lutris" / "cache" / "lutris",
|
||||
win.cache_dir / "lutris",
|
||||
)
|
||||
)
|
||||
|
||||
cache_dir = check_install(cache_check, cache_locations, (win.schema, cache_key))
|
||||
|
||||
return cache_dir
|
||||
|
||||
|
||||
def lutris_importer(win):
|
||||
lutris_dir = lutris_installed(win)
|
||||
if not lutris_dir:
|
||||
return
|
||||
|
||||
cache_dir = lutris_cache_exists(win)
|
||||
if not cache_dir:
|
||||
return
|
||||
|
||||
db_cache_dir = win.cache_dir / "cartridges" / "lutris"
|
||||
db_cache_dir.mkdir(parents=True, exist_ok=True)
|
||||
|
||||
# Copy the file because sqlite3 doesn't like databases in /run/user/
|
||||
database_tmp_path = db_cache_dir / "pga.db"
|
||||
|
||||
for db_file in lutris_dir.glob("pga.db*"):
|
||||
copyfile(db_file, (db_cache_dir / db_file.name))
|
||||
|
||||
db_request = """
|
||||
SELECT
|
||||
id, name, slug, runner, hidden
|
||||
FROM
|
||||
'games'
|
||||
WHERE
|
||||
name IS NOT NULL
|
||||
AND slug IS NOT NULL
|
||||
AND configPath IS NOT NULL
|
||||
AND installed IS TRUE
|
||||
;
|
||||
"""
|
||||
|
||||
connection = connect(database_tmp_path)
|
||||
cursor = connection.execute(db_request)
|
||||
rows = cursor.fetchall()
|
||||
connection.close()
|
||||
# No need to unlink temp files as they disappear when the connection is closed
|
||||
database_tmp_path.unlink(missing_ok=True)
|
||||
|
||||
if not win.schema.get_boolean("lutris-import-steam"):
|
||||
rows = [row for row in rows if not row[3] == "steam"]
|
||||
|
||||
current_time = int(time())
|
||||
|
||||
importer = win.importer
|
||||
importer.total_queue += len(rows)
|
||||
importer.queue += len(rows)
|
||||
|
||||
for row in rows:
|
||||
values = {}
|
||||
|
||||
values["game_id"] = f"lutris_{row[3]}_{row[0]}"
|
||||
|
||||
if values["game_id"] in win.games and not win.games[values["game_id"]].removed:
|
||||
importer.save_game()
|
||||
continue
|
||||
|
||||
values["added"] = current_time
|
||||
values["executable"] = ["xdg-open", f"lutris:rungameid/{row[0]}"]
|
||||
values["hidden"] = row[4] == 1
|
||||
values["last_played"] = 0
|
||||
values["name"] = row[1]
|
||||
values["source"] = f"lutris_{row[3]}"
|
||||
|
||||
image_path = cache_dir / "coverart" / f"{row[2]}.jpg"
|
||||
importer.save_game(values, image_path if image_path.exists() else None)
|
||||
176
src/importers/steam_importer.py
Normal file
@@ -0,0 +1,176 @@
|
||||
# steam_importer.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
|
||||
|
||||
import os
|
||||
import re
|
||||
from pathlib import Path
|
||||
from time import time
|
||||
|
||||
import requests
|
||||
from gi.repository import Gio
|
||||
|
||||
from .check_install import check_install
|
||||
|
||||
|
||||
def update_values_from_data(content, values):
|
||||
basic_data = content[values["appid"]]
|
||||
if not basic_data["success"]:
|
||||
values["blacklisted"] = True
|
||||
else:
|
||||
data = basic_data["data"]
|
||||
values["developer"] = ", ".join(data["developers"])
|
||||
|
||||
if data["type"] != "game":
|
||||
values["blacklisted"] = True
|
||||
|
||||
return values
|
||||
|
||||
|
||||
def get_game(task, datatypes, current_time, win, appmanifest, steam_dir):
|
||||
values = {}
|
||||
|
||||
data = appmanifest.read_text("utf-8")
|
||||
for datatype in datatypes:
|
||||
value = re.findall(f'"{datatype}"\t\t"(.*)"\n', data, re.IGNORECASE)
|
||||
try:
|
||||
values[datatype] = value[0]
|
||||
except IndexError:
|
||||
task.return_value((None, None))
|
||||
return
|
||||
|
||||
values["game_id"] = f'steam_{values["appid"]}'
|
||||
|
||||
if values["game_id"] in win.games and not win.games[values["game_id"]].removed:
|
||||
task.return_value((None, None))
|
||||
return
|
||||
|
||||
values["executable"] = (
|
||||
["start", f'steam://rungameid/{values["appid"]}']
|
||||
if os.name == "nt"
|
||||
else ["xdg-open", f'steam://rungameid/{values["appid"]}']
|
||||
)
|
||||
values["hidden"] = False
|
||||
values["source"] = "steam"
|
||||
values["added"] = current_time
|
||||
values["last_played"] = 0
|
||||
|
||||
image_path = (
|
||||
steam_dir
|
||||
/ "appcache"
|
||||
/ "librarycache"
|
||||
/ f'{values["appid"]}_library_600x900.jpg'
|
||||
)
|
||||
|
||||
try:
|
||||
with requests.get(
|
||||
f'https://store.steampowered.com/api/appdetails?appids={values["appid"]}',
|
||||
timeout=5,
|
||||
) as open_file:
|
||||
open_file.raise_for_status()
|
||||
content = open_file.json()
|
||||
except requests.exceptions.RequestException:
|
||||
task.return_value((values, image_path if image_path.exists() else None))
|
||||
return
|
||||
|
||||
values = update_values_from_data(content, values)
|
||||
task.return_value((values, image_path if image_path.exists() else None))
|
||||
|
||||
|
||||
def get_games_async(win, appmanifests, steam_dir, importer):
|
||||
datatypes = ["appid", "name"]
|
||||
current_time = int(time())
|
||||
|
||||
# Wrap the function in another one as Gio.Task.run_in_thread does not allow for passing args
|
||||
def create_func(datatypes, current_time, win, appmanifest, steam_dir):
|
||||
def wrapper(task, *_unused):
|
||||
get_game(
|
||||
task,
|
||||
datatypes,
|
||||
current_time,
|
||||
win,
|
||||
appmanifest,
|
||||
steam_dir,
|
||||
)
|
||||
|
||||
return wrapper
|
||||
|
||||
def update_games(_task, result):
|
||||
final_values = result.propagate_value()[1]
|
||||
# No need for an if statement as final_value would be None for games we don't want to save
|
||||
importer.save_game(final_values[0], final_values[1])
|
||||
|
||||
for appmanifest in appmanifests:
|
||||
task = Gio.Task.new(None, None, update_games)
|
||||
task.run_in_thread(
|
||||
create_func(datatypes, current_time, win, appmanifest, steam_dir)
|
||||
)
|
||||
|
||||
|
||||
def steam_installed(win, path=None):
|
||||
location_key = "steam-location"
|
||||
steam_dir = Path(win.schema.get_string(location_key)).expanduser()
|
||||
check = "steamapps"
|
||||
|
||||
if not (steam_dir / check).is_file():
|
||||
subdirs = ("steam", "Steam")
|
||||
locations = (
|
||||
(path,)
|
||||
if path
|
||||
else (
|
||||
steam_dir,
|
||||
Path.home() / ".steam",
|
||||
win.data_dir / "Steam",
|
||||
Path.home() / ".var/app/com.valvesoftware.Steam/data/Steam",
|
||||
)
|
||||
)
|
||||
|
||||
if os.name == "nt":
|
||||
locations += (Path(os.getenv("programfiles(x86)")) / "Steam",)
|
||||
|
||||
steam_dir = check_install(check, locations, (win.schema, location_key), subdirs)
|
||||
|
||||
return steam_dir
|
||||
|
||||
|
||||
def steam_importer(win):
|
||||
steam_dir = steam_installed(win)
|
||||
if not steam_dir:
|
||||
return
|
||||
|
||||
appmanifests = []
|
||||
|
||||
steam_dirs = [
|
||||
Path(directory) for directory in win.schema.get_strv("steam-extra-dirs")
|
||||
]
|
||||
steam_dirs.append(steam_dir)
|
||||
|
||||
for directory in steam_dirs:
|
||||
if not (directory / "steamapps").exists():
|
||||
steam_dirs.remove(directory)
|
||||
|
||||
for directory in steam_dirs:
|
||||
for open_file in (directory / "steamapps").iterdir():
|
||||
if open_file.is_file() and "appmanifest" in open_file.name:
|
||||
appmanifests.append(open_file)
|
||||
|
||||
importer = win.importer
|
||||
importer.total_queue += len(appmanifests)
|
||||
importer.queue += len(appmanifests)
|
||||
|
||||
get_games_async(win, appmanifests, directory, importer)
|
||||
@@ -1,44 +0,0 @@
|
||||
# color_log_formatter.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
|
||||
|
||||
from logging import Formatter, LogRecord
|
||||
|
||||
|
||||
class ColorLogFormatter(Formatter):
|
||||
"""Formatter that outputs logs in a colored format"""
|
||||
|
||||
RESET = "\033[0m"
|
||||
DIM = "\033[2m"
|
||||
BOLD = "\033[1m"
|
||||
RED = "\033[31m"
|
||||
YELLOW = "\033[33m"
|
||||
|
||||
def format(self, record: LogRecord):
|
||||
super_format = super().format(record)
|
||||
match record.levelname:
|
||||
case "CRITICAL":
|
||||
return self.BOLD + self.RED + super_format + self.RESET
|
||||
case "ERROR":
|
||||
return self.RED + super_format + self.RESET
|
||||
case "WARNING":
|
||||
return self.YELLOW + super_format + self.RESET
|
||||
case "DEBUG":
|
||||
return self.DIM + super_format + self.RESET
|
||||
case _other:
|
||||
return super_format
|
||||
@@ -1,132 +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 StringIO
|
||||
from logging import StreamHandler
|
||||
from lzma import FORMAT_XZ, PRESET_DEFAULT
|
||||
from os import PathLike
|
||||
from pathlib import Path
|
||||
|
||||
from src 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: StringIO = 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):
|
||||
"""Rotate a file's number suffix and remove it if it's too old"""
|
||||
|
||||
# If uncompressed, compress
|
||||
if not path.name.endswith(".xz"):
|
||||
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,
|
||||
open(path, "r", encoding="utf-8") as original_file,
|
||||
):
|
||||
lzma_file.write(original_file.read())
|
||||
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:
|
||||
self.log_file.close()
|
||||
super().close()
|
||||
@@ -1,109 +0,0 @@
|
||||
# setup.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
|
||||
import logging.config as logging_dot_config
|
||||
import os
|
||||
import platform
|
||||
import subprocess
|
||||
import sys
|
||||
|
||||
from src import shared
|
||||
|
||||
|
||||
def setup_logging():
|
||||
"""Intitate the app's logging"""
|
||||
|
||||
is_dev = shared.PROFILE == "development"
|
||||
profile_app_log_level = "DEBUG" if is_dev else "INFO"
|
||||
profile_lib_log_level = "INFO" if is_dev else "WARNING"
|
||||
app_log_level = os.environ.get("LOGLEVEL", profile_app_log_level).upper()
|
||||
lib_log_level = os.environ.get("LIBLOGLEVEL", profile_lib_log_level).upper()
|
||||
|
||||
log_filename = shared.cache_dir / "cartridges" / "logs" / "cartridges.log"
|
||||
|
||||
config = {
|
||||
"version": 1,
|
||||
"formatters": {
|
||||
"file_formatter": {
|
||||
"format": "%(asctime)s - %(levelname)s: %(message)s",
|
||||
"datefmt": "%M:%S",
|
||||
},
|
||||
"console_formatter": {
|
||||
"format": "%(name)s %(levelname)s - %(message)s",
|
||||
"class": "src.logging.color_log_formatter.ColorLogFormatter",
|
||||
},
|
||||
},
|
||||
"handlers": {
|
||||
"file_handler": {
|
||||
"class": "src.logging.session_file_handler.SessionFileHandler",
|
||||
"formatter": "file_formatter",
|
||||
"level": "DEBUG",
|
||||
"filename": log_filename,
|
||||
"backup_count": 2,
|
||||
},
|
||||
"app_console_handler": {
|
||||
"class": "logging.StreamHandler",
|
||||
"formatter": "console_formatter",
|
||||
"level": app_log_level,
|
||||
},
|
||||
"lib_console_handler": {
|
||||
"class": "logging.StreamHandler",
|
||||
"formatter": "console_formatter",
|
||||
"level": lib_log_level,
|
||||
},
|
||||
},
|
||||
"loggers": {
|
||||
"PIL": {
|
||||
"handlers": ["lib_console_handler", "file_handler"],
|
||||
"propagate": False,
|
||||
"level": "NOTSET",
|
||||
},
|
||||
"urllib3": {
|
||||
"handlers": ["lib_console_handler", "file_handler"],
|
||||
"propagate": False,
|
||||
"level": "NOTSET",
|
||||
},
|
||||
},
|
||||
"root": {
|
||||
"level": "NOTSET",
|
||||
"handlers": ["app_console_handler", "file_handler"],
|
||||
},
|
||||
}
|
||||
logging_dot_config.dictConfig(config)
|
||||
|
||||
|
||||
def log_system_info():
|
||||
"""Log system debug information"""
|
||||
|
||||
logging.debug("Starting %s v%s (%s)", shared.APP_ID, shared.VERSION, shared.PROFILE)
|
||||
logging.debug("Python version: %s", sys.version)
|
||||
if os.getenv("FLATPAK_ID") == shared.APP_ID:
|
||||
process = subprocess.run(
|
||||
("flatpak-spawn", "--host", "flatpak", "--version"),
|
||||
capture_output=True,
|
||||
encoding="utf-8",
|
||||
check=False,
|
||||
)
|
||||
logging.debug("Flatpak version: %s", process.stdout.rstrip())
|
||||
logging.debug("Platform: %s", platform.platform())
|
||||
if os.name == "posix":
|
||||
for key, value in platform.uname()._asdict().items():
|
||||
logging.debug("\t%s: %s", key.title(), value)
|
||||
logging.debug("─" * 37)
|
||||
385
src/main.py
@@ -17,9 +17,8 @@
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
import json
|
||||
import lzma
|
||||
import sys
|
||||
import time
|
||||
|
||||
import gi
|
||||
|
||||
@@ -29,256 +28,272 @@ gi.require_version("Adw", "1")
|
||||
# pylint: disable=wrong-import-position
|
||||
from gi.repository import Adw, Gio, GLib, Gtk
|
||||
|
||||
from src import shared
|
||||
from src.details_window import DetailsWindow
|
||||
from src.game import Game
|
||||
from src.importer.importer import Importer
|
||||
from src.importer.sources.bottles_source import BottlesSource
|
||||
from src.importer.sources.flatpak_source import FlatpakSource
|
||||
from src.importer.sources.heroic_source import HeroicSource
|
||||
from src.importer.sources.itch_source import ItchSource
|
||||
from src.importer.sources.legendary_source import LegendarySource
|
||||
from src.importer.sources.lutris_source import LutrisSource
|
||||
from src.importer.sources.steam_source import SteamSource
|
||||
from src.logging.setup import log_system_info, setup_logging
|
||||
from src.preferences import PreferencesWindow
|
||||
from src.store.managers.display_manager import DisplayManager
|
||||
from src.store.managers.file_manager import FileManager
|
||||
from src.store.managers.local_cover_manager import LocalCoverManager
|
||||
from src.store.managers.online_cover_manager import OnlineCoverManager
|
||||
from src.store.managers.sgdb_manager import SGDBManager
|
||||
from src.store.managers.steam_api_manager import SteamAPIManager
|
||||
from src.store.store import Store
|
||||
from src.window import CartridgesWindow
|
||||
from .bottles_importer import bottles_importer
|
||||
from .create_details_window import create_details_window
|
||||
from .get_games import get_games
|
||||
from .heroic_importer import heroic_importer
|
||||
from .importer import Importer
|
||||
from .itch_importer import itch_importer
|
||||
from .lutris_importer import lutris_importer
|
||||
from .preferences import PreferencesWindow
|
||||
from .save_game import save_game
|
||||
from .steam_importer import steam_importer
|
||||
from .window import CartridgesWindow
|
||||
|
||||
|
||||
class CartridgesApplication(Adw.Application):
|
||||
win = None
|
||||
|
||||
def __init__(self):
|
||||
shared.store = Store()
|
||||
super().__init__(
|
||||
application_id=shared.APP_ID, flags=Gio.ApplicationFlags.FLAGS_NONE
|
||||
application_id="hu.kramo.Cartridges", flags=Gio.ApplicationFlags.FLAGS_NONE
|
||||
)
|
||||
self.create_action("quit", self.on_quit_action, ["<primary>q"])
|
||||
self.create_action("about", self.on_about_action)
|
||||
self.create_action(
|
||||
"preferences", self.on_preferences_action, ["<primary>comma"]
|
||||
)
|
||||
self.create_action("launch_game", self.on_launch_game_action)
|
||||
self.create_action("hide_game", self.on_hide_game_action)
|
||||
self.create_action("edit_game", self.on_edit_game_action)
|
||||
self.create_action("add_game", self.on_add_game_action, ["<primary>n"])
|
||||
self.create_action("import", self.on_import_action, ["<primary>i"])
|
||||
self.create_action(
|
||||
"remove_game_details_view",
|
||||
self.on_remove_game_details_view_action,
|
||||
["Delete"],
|
||||
)
|
||||
self.create_action("remove_game", self.on_remove_game_action)
|
||||
self.create_action("igdb_search", self.on_igdb_search_action)
|
||||
self.create_action("sgdb_search", self.on_sgdb_search_action)
|
||||
self.create_action("protondb_search", self.on_protondb_search_action)
|
||||
self.create_action("lutris_search", self.on_lutris_search_action)
|
||||
self.create_action("hltb_search", self.on_hltb_search_action)
|
||||
|
||||
self.win = None
|
||||
|
||||
def do_activate(self): # pylint: disable=arguments-differ
|
||||
"""Called on app creation"""
|
||||
|
||||
# Set fallback icon-name
|
||||
Gtk.Window.set_default_icon_name(shared.APP_ID)
|
||||
|
||||
# Create the main window
|
||||
self.win = self.props.active_window # pylint: disable=no-member
|
||||
if not self.win:
|
||||
shared.win = self.win = CartridgesWindow(application=self)
|
||||
self.win = CartridgesWindow(application=self)
|
||||
|
||||
# Save window geometry
|
||||
shared.state_schema.bind(
|
||||
state_settings = Gio.Settings(schema_id="hu.kramo.Cartridge.State")
|
||||
state_settings.bind(
|
||||
"width", self.win, "default-width", Gio.SettingsBindFlags.DEFAULT
|
||||
)
|
||||
shared.state_schema.bind(
|
||||
state_settings.bind(
|
||||
"height", self.win, "default-height", Gio.SettingsBindFlags.DEFAULT
|
||||
)
|
||||
shared.state_schema.bind(
|
||||
state_settings.bind(
|
||||
"is-maximized", self.win, "maximized", Gio.SettingsBindFlags.DEFAULT
|
||||
)
|
||||
|
||||
# Load games from disk
|
||||
shared.store.add_manager(FileManager(), False)
|
||||
shared.store.add_manager(DisplayManager())
|
||||
self.load_games_from_disk()
|
||||
|
||||
# Add rest of the managers for game imports
|
||||
shared.store.add_manager(LocalCoverManager())
|
||||
shared.store.add_manager(SteamAPIManager())
|
||||
shared.store.add_manager(OnlineCoverManager())
|
||||
shared.store.add_manager(SGDBManager())
|
||||
shared.store.enable_manager_in_pipelines(FileManager)
|
||||
|
||||
# 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",),
|
||||
("lutris_search",),
|
||||
("hltb_search",),
|
||||
("show_hidden", ("<primary>h",), self.win),
|
||||
("go_back", ("<alt>Left",), self.win),
|
||||
("go_to_parent", ("<alt>Up",), self.win),
|
||||
("go_home", ("<alt>Home",), self.win),
|
||||
("toggle_search", ("<primary>f",), self.win),
|
||||
("escape", ("Escape",), self.win),
|
||||
("undo", ("<primary>z",), self.win),
|
||||
("open_menu", ("F10",), self.win),
|
||||
("close", ("<primary>w",), self.win),
|
||||
}
|
||||
)
|
||||
|
||||
sort_action = Gio.SimpleAction.new_stateful(
|
||||
"sort_by", GLib.VariantType.new("s"), GLib.Variant("s", "a-z")
|
||||
)
|
||||
sort_action.connect("activate", self.win.on_sort_action)
|
||||
self.win.add_action(sort_action)
|
||||
self.win.on_sort_action(sort_action, shared.state_schema.get_value("sort-mode"))
|
||||
|
||||
self.win.present()
|
||||
|
||||
def load_games_from_disk(self):
|
||||
if shared.games_dir.is_dir():
|
||||
for game_file in shared.games_dir.iterdir():
|
||||
data = json.load(game_file.open())
|
||||
game = Game(data)
|
||||
shared.store.add_game(game, {"skip_save": True})
|
||||
|
||||
def on_about_action(self, *_args):
|
||||
# Get the debug info from the log files
|
||||
debug_str = ""
|
||||
for i, path in enumerate(shared.log_files):
|
||||
# Add a horizontal line between runs
|
||||
if i > 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()
|
||||
# Create actions for the main window
|
||||
self.create_action(
|
||||
"show_hidden", self.win.on_show_hidden_action, ["<primary>h"], self.win
|
||||
)
|
||||
self.create_action(
|
||||
"go_back", self.win.on_go_back_action, ["<alt>Left"], self.win
|
||||
)
|
||||
self.create_action(
|
||||
"go_to_parent", self.win.on_go_to_parent_action, ["<alt>Up"], self.win
|
||||
)
|
||||
self.create_action(
|
||||
"toggle_search", self.win.on_toggle_search_action, ["<primary>f"], self.win
|
||||
)
|
||||
self.create_action("escape", self.win.on_escape_action, ["Escape"], self.win)
|
||||
self.create_action("undo", self.win.on_undo_action, ["<primary>z"], self.win)
|
||||
self.create_action("open_menu", self.win.on_open_menu_action, ["F10"], self.win)
|
||||
self.win.sort = Gio.SimpleAction.new_stateful(
|
||||
"sort_by", GLib.VariantType.new("s"), GLib.Variant("s", "a-z")
|
||||
)
|
||||
self.win.add_action(self.win.sort)
|
||||
self.win.sort.connect("activate", self.win.on_sort_action)
|
||||
self.win.on_sort_action(self.win.sort, state_settings.get_value("sort-mode"))
|
||||
|
||||
def on_about_action(self, _widget, _callback=None):
|
||||
about = Adw.AboutWindow(
|
||||
transient_for=self.win,
|
||||
application_name=_("Cartridges"),
|
||||
application_icon=shared.APP_ID,
|
||||
application_icon="hu.kramo.Cartridges",
|
||||
developer_name="kramo",
|
||||
version=shared.VERSION,
|
||||
version="1.4.1",
|
||||
developers=[
|
||||
"kramo https://kramo.hu",
|
||||
"Geoffrey Coulaud https://geoffrey-coulaud.fr",
|
||||
"Arcitec https://github.com/Arcitec",
|
||||
"Domenico https://github.com/Domefemia",
|
||||
"Paweł Lidwin https://github.com/imLinguin",
|
||||
"Domenico https://github.com/Domefemia",
|
||||
"Bananaman https://github.com/Bananaman",
|
||||
"Geoffrey Coulaud https://geoffrey-coulaud.fr",
|
||||
"Rafael Mardojai CM https://mardojai.com",
|
||||
],
|
||||
designers=("kramo https://kramo.hu",),
|
||||
designers=["kramo https://kramo.hu"],
|
||||
copyright="© 2022-2023 kramo",
|
||||
license_type=Gtk.License.GPL_3_0,
|
||||
issue_url="https://github.com/kra-mo/cartridges/issues/new",
|
||||
website="https://github.com/kra-mo/cartridges",
|
||||
# Translators: Replace this with your name for it to show up in the about window
|
||||
translator_credits=_("translator_credits"),
|
||||
debug_info=debug_str,
|
||||
)
|
||||
about.present()
|
||||
|
||||
def on_preferences_action(
|
||||
self, _action=None, _parameter=None, page_name=None, expander_row=None
|
||||
self, _widget, _callback=None, page_name=None, expander_row=None
|
||||
):
|
||||
win = PreferencesWindow()
|
||||
win = PreferencesWindow(self.win)
|
||||
if page_name:
|
||||
win.set_visible_page_name(page_name)
|
||||
if expander_row:
|
||||
getattr(win, expander_row).set_expanded(True)
|
||||
win.present()
|
||||
|
||||
return win
|
||||
def on_launch_game_action(self, _widget, _callback=None):
|
||||
# Launch the game and update the last played value
|
||||
|
||||
def on_launch_game_action(self, *_args):
|
||||
self.win.active_game.launch()
|
||||
game_id = self.win.active_game_id
|
||||
last_played = int(time.time())
|
||||
|
||||
def on_hide_game_action(self, *_args):
|
||||
self.win.active_game.toggle_hidden()
|
||||
data = get_games(self.win, [game_id])[game_id]
|
||||
data["last_played"] = last_played
|
||||
save_game(self.win, data)
|
||||
|
||||
def on_edit_game_action(self, *_args):
|
||||
DetailsWindow(self.win.active_game)
|
||||
self.win.games[game_id].launch()
|
||||
|
||||
def on_add_game_action(self, *_args):
|
||||
DetailsWindow()
|
||||
|
||||
def on_import_action(self, *_args):
|
||||
importer = Importer()
|
||||
|
||||
if shared.schema.get_boolean("lutris"):
|
||||
importer.add_source(LutrisSource())
|
||||
|
||||
if shared.schema.get_boolean("steam"):
|
||||
importer.add_source(SteamSource())
|
||||
|
||||
if shared.schema.get_boolean("heroic"):
|
||||
importer.add_source(HeroicSource())
|
||||
|
||||
if shared.schema.get_boolean("bottles"):
|
||||
importer.add_source(BottlesSource())
|
||||
|
||||
if shared.schema.get_boolean("flatpak"):
|
||||
importer.add_source(FlatpakSource())
|
||||
|
||||
if shared.schema.get_boolean("itch"):
|
||||
importer.add_source(ItchSource())
|
||||
|
||||
if shared.schema.get_boolean("legendary"):
|
||||
importer.add_source(LegendarySource())
|
||||
|
||||
importer.run()
|
||||
|
||||
def on_remove_game_action(self, *_args):
|
||||
self.win.active_game.remove_game()
|
||||
|
||||
def on_remove_game_details_view_action(self, *_args):
|
||||
# Update state
|
||||
self.win.games[game_id].last_played = last_played
|
||||
self.win.library.invalidate_sort()
|
||||
self.win.hidden_library.invalidate_sort()
|
||||
if self.win.stack.get_visible_child() == self.win.details_view:
|
||||
self.on_remove_game_action()
|
||||
self.win.show_details_view(None, game_id)
|
||||
|
||||
def search(self, uri):
|
||||
Gio.AppInfo.launch_default_for_uri(f"{uri}{self.win.active_game.name}")
|
||||
title = self.win.games[game_id].name
|
||||
# The variable is the title of the game
|
||||
toast = Adw.Toast.new(_("{} launched").format(title))
|
||||
toast.set_priority(Adw.ToastPriority.HIGH)
|
||||
self.win.toast_overlay.add_toast(toast)
|
||||
|
||||
def on_igdb_search_action(self, *_args):
|
||||
self.search("https://www.igdb.com/search?type=1&q=")
|
||||
def on_hide_game_action(self, _widget, _callback=None, game_id=None, toast=True):
|
||||
if not game_id:
|
||||
game_id = self.win.active_game_id
|
||||
|
||||
def on_sgdb_search_action(self, *_args):
|
||||
self.search("https://www.steamgriddb.com/search/grids?term=")
|
||||
if self.win.stack.get_visible_child() == self.win.details_view:
|
||||
self.win.on_go_back_action(None, None)
|
||||
self.win.games[game_id].toggle_hidden()
|
||||
self.win.update_games([game_id])
|
||||
|
||||
def on_protondb_search_action(self, *_args):
|
||||
self.search("https://www.protondb.com/search?q=")
|
||||
if not toast:
|
||||
return
|
||||
|
||||
def on_lutris_search_action(self, *_args):
|
||||
self.search("https://lutris.net/games?q=")
|
||||
title = self.win.games[game_id].name
|
||||
if self.win.games[game_id].hidden:
|
||||
# The variable is the title of the game
|
||||
toast = Adw.Toast.new(_("{} hidden").format(title))
|
||||
else:
|
||||
# The variable is the title of the game
|
||||
toast = Adw.Toast.new(_("{} unhidden").format(title))
|
||||
toast.set_button_label(_("Undo"))
|
||||
toast.connect("button-clicked", self.win.on_undo_action, game_id, "hide")
|
||||
toast.set_priority(Adw.ToastPriority.HIGH)
|
||||
if (game_id, "hide") in self.win.toasts.keys():
|
||||
# Dismiss the toast if there already is one
|
||||
self.win.toasts[(game_id, "hide")].dismiss()
|
||||
self.win.toasts[(game_id, "hide")] = toast
|
||||
self.win.toast_overlay.add_toast(toast)
|
||||
|
||||
def on_hltb_search_action(self, *_args):
|
||||
self.search("https://howlongtobeat.com/?q=")
|
||||
def on_edit_game_action(self, _widget, _callback=None):
|
||||
create_details_window(self.win, self.win.active_game_id)
|
||||
|
||||
def on_quit_action(self, *_args):
|
||||
def on_add_game_action(self, _widget, _callback=None):
|
||||
create_details_window(self.win)
|
||||
|
||||
def on_import_action(self, _widget, _callback=None):
|
||||
self.win.importer = Importer(self.win)
|
||||
|
||||
self.win.importer.blocker = True
|
||||
|
||||
if self.win.schema.get_boolean("steam"):
|
||||
steam_importer(self.win)
|
||||
|
||||
if self.win.schema.get_boolean("lutris"):
|
||||
lutris_importer(self.win)
|
||||
|
||||
if self.win.schema.get_boolean("heroic"):
|
||||
heroic_importer(self.win)
|
||||
|
||||
if self.win.schema.get_boolean("bottles"):
|
||||
bottles_importer(self.win)
|
||||
|
||||
if self.win.schema.get_boolean("itch"):
|
||||
itch_importer(self.win)
|
||||
|
||||
self.win.importer.blocker = False
|
||||
|
||||
if self.win.importer.import_dialog.is_visible and self.win.importer.queue == 0:
|
||||
self.win.importer.queue = 1
|
||||
self.win.importer.save_game()
|
||||
|
||||
def on_remove_game_action(self, _widget, _callback=None):
|
||||
# Add "removed=True" to the game properties so it can be deleted on next init
|
||||
game_id = self.win.active_game_id
|
||||
|
||||
data = get_games(self.win, [game_id])[game_id]
|
||||
data["removed"] = True
|
||||
save_game(self.win, data)
|
||||
|
||||
self.win.update_games([game_id])
|
||||
if self.win.stack.get_visible_child() == self.win.details_view:
|
||||
self.win.on_go_back_action(None, None)
|
||||
|
||||
title = self.win.games[game_id].name
|
||||
# The variable is the title of the game
|
||||
toast = Adw.Toast.new(_("{} removed").format(title))
|
||||
toast.set_button_label(_("Undo"))
|
||||
toast.connect("button-clicked", self.win.on_undo_action, game_id, "remove")
|
||||
toast.set_priority(Adw.ToastPriority.HIGH)
|
||||
self.win.toasts[(game_id, "remove")] = toast
|
||||
self.win.toast_overlay.add_toast(toast)
|
||||
|
||||
def on_remove_game_details_view_action(self, _widget, _callback=None):
|
||||
if self.win.stack.get_visible_child() == self.win.details_view:
|
||||
self.on_remove_game_action(None)
|
||||
|
||||
def on_quit_action(self, _widget, _callback=None):
|
||||
self.quit()
|
||||
|
||||
def create_actions(self, actions):
|
||||
for action in actions:
|
||||
simple_action = Gio.SimpleAction.new(action[0], None)
|
||||
def search(self, uri):
|
||||
Gio.AppInfo.launch_default_for_uri(
|
||||
f"{uri}{self.win.games[self.win.active_game_id].name}"
|
||||
)
|
||||
|
||||
scope = action[2] if action[2:3] else self
|
||||
simple_action.connect("activate", getattr(scope, f"on_{action[0]}_action"))
|
||||
def on_igdb_search_action(self, _widget, _callback=None):
|
||||
self.search("https://www.igdb.com/search?type=1&q=")
|
||||
|
||||
if action[1:2]:
|
||||
self.set_accels_for_action(
|
||||
f"app.{action[0]}" if scope == self else f"win.{action[0]}",
|
||||
action[1],
|
||||
)
|
||||
def on_sgdb_search_action(self, _widget, _callback=None):
|
||||
self.search("https://www.steamgriddb.com/search/grids?term=")
|
||||
|
||||
scope.add_action(simple_action)
|
||||
def on_protondb_search_action(self, _widget, _callback=None):
|
||||
self.search("https://www.protondb.com/search?q=")
|
||||
|
||||
def on_lutris_search_action(self, _widget, _callback=None):
|
||||
self.search("https://lutris.net/games?q=")
|
||||
|
||||
def on_hltb_search_action(self, _widget, _callback=None):
|
||||
self.search("https://howlongtobeat.com/?q=")
|
||||
|
||||
def create_action(self, name, callback, shortcuts=None, win=None):
|
||||
action = Gio.SimpleAction.new(name, None)
|
||||
action.connect("activate", callback)
|
||||
if not win:
|
||||
self.add_action(action)
|
||||
if shortcuts:
|
||||
self.set_accels_for_action(f"app.{name}", shortcuts)
|
||||
else:
|
||||
win.add_action(action)
|
||||
if shortcuts:
|
||||
self.set_accels_for_action(f"win.{name}", shortcuts)
|
||||
|
||||
|
||||
def main(_version):
|
||||
"""App entry point"""
|
||||
setup_logging()
|
||||
log_system_info()
|
||||
def main(version): # pylint: disable=unused-argument
|
||||
app = CartridgesApplication()
|
||||
return app.run(sys.argv)
|
||||
|
||||
@@ -1,4 +1,12 @@
|
||||
moduledir = join_paths(pkgdatadir, 'src')
|
||||
moduledir = join_paths(pkgdatadir, 'cartridges')
|
||||
|
||||
python = import('python')
|
||||
|
||||
conf = configuration_data()
|
||||
conf.set('PYTHON', python.find_installation('python3').path())
|
||||
conf.set('VERSION', meson.project_version())
|
||||
conf.set('localedir', join_paths(get_option('prefix'), get_option('localedir')))
|
||||
conf.set('pkgdatadir', pkgdatadir)
|
||||
|
||||
configure_file(
|
||||
input: 'cartridges.in',
|
||||
@@ -8,24 +16,26 @@ configure_file(
|
||||
install_dir: get_option('bindir')
|
||||
)
|
||||
|
||||
install_subdir('importer', install_dir: moduledir)
|
||||
install_subdir('utils', install_dir: moduledir)
|
||||
install_subdir('store', install_dir: moduledir)
|
||||
install_subdir('logging', install_dir: moduledir)
|
||||
install_subdir('errors', install_dir: moduledir)
|
||||
install_data(
|
||||
[
|
||||
'main.py',
|
||||
'window.py',
|
||||
'preferences.py',
|
||||
'details_window.py',
|
||||
'game.py',
|
||||
'game_cover.py',
|
||||
configure_file(
|
||||
input: 'shared.py.in',
|
||||
output: 'shared.py',
|
||||
configuration: conf
|
||||
)
|
||||
],
|
||||
install_dir: moduledir
|
||||
)
|
||||
cartridges_sources = [
|
||||
'__init__.py',
|
||||
'main.py',
|
||||
'window.py',
|
||||
'preferences.py',
|
||||
'game.py',
|
||||
'game_cover.py',
|
||||
'importers/steam_importer.py',
|
||||
'importers/lutris_importer.py',
|
||||
'importers/heroic_importer.py',
|
||||
'importers/bottles_importer.py',
|
||||
'importers/itch_importer.py',
|
||||
'utils/importer.py',
|
||||
'utils/steamgriddb.py',
|
||||
'utils/get_games.py',
|
||||
'utils/save_game.py',
|
||||
'utils/save_cover.py',
|
||||
'utils/create_dialog.py',
|
||||
'utils/create_details_window.py',
|
||||
'utils/check_install.py'
|
||||
]
|
||||
|
||||
install_data(cartridges_sources, install_dir: moduledir)
|
||||
|
||||
@@ -17,27 +17,66 @@
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
import logging
|
||||
import re
|
||||
import os
|
||||
from pathlib import Path
|
||||
from shutil import rmtree
|
||||
from shutil import move
|
||||
|
||||
from gi.repository import Adw, Gio, GLib, Gtk
|
||||
|
||||
from src import shared
|
||||
from src.importer.sources.bottles_source import BottlesSource
|
||||
from src.importer.sources.flatpak_source import FlatpakSource
|
||||
from src.importer.sources.heroic_source import HeroicSource
|
||||
from src.importer.sources.itch_source import ItchSource
|
||||
from src.importer.sources.legendary_source import LegendarySource
|
||||
from src.importer.sources.location import UnresolvableLocationError
|
||||
from src.importer.sources.lutris_source import LutrisSource
|
||||
from src.importer.sources.source import Source
|
||||
from src.importer.sources.steam_source import SteamSource
|
||||
from src.utils.create_dialog import create_dialog
|
||||
from .bottles_importer import bottles_installed
|
||||
from .create_dialog import create_dialog
|
||||
from .get_games import get_games
|
||||
from .heroic_importer import heroic_installed
|
||||
from .itch_importer import itch_installed
|
||||
from .lutris_importer import lutris_cache_exists, lutris_installed
|
||||
from .save_game import save_game
|
||||
from .steam_importer import steam_installed
|
||||
|
||||
|
||||
@Gtk.Template(resource_path=shared.PREFIX + "/gtk/preferences.ui")
|
||||
class ImportPreferences:
|
||||
def __init__(
|
||||
self,
|
||||
win,
|
||||
source_id,
|
||||
name,
|
||||
check_func,
|
||||
expander_row,
|
||||
file_chooser_button,
|
||||
config=False,
|
||||
):
|
||||
def set_dir(_source, result, _unused):
|
||||
try:
|
||||
path = Path(win.file_chooser.select_folder_finish(result).get_path())
|
||||
except GLib.GError:
|
||||
return
|
||||
|
||||
def response(widget, response):
|
||||
if response == "choose_folder":
|
||||
win.choose_folder(widget, set_dir)
|
||||
|
||||
if not check_func(win, path):
|
||||
create_dialog(
|
||||
win,
|
||||
_("Installation Not Found"),
|
||||
# The variable is the name of the game launcher
|
||||
_("Select the {} configuration directory.").format(name) if config
|
||||
# The variable is the name of the game launcher
|
||||
else _("Select the {} data directory.").format(name),
|
||||
"choose_folder",
|
||||
_("Set Location"),
|
||||
).connect("response", response)
|
||||
|
||||
win.schema.bind(
|
||||
source_id,
|
||||
expander_row,
|
||||
"enable-expansion",
|
||||
Gio.SettingsBindFlags.DEFAULT,
|
||||
)
|
||||
|
||||
file_chooser_button.connect("clicked", win.choose_folder, set_dir)
|
||||
|
||||
|
||||
@Gtk.Template(resource_path="/hu/kramo/Cartridges/gtk/preferences.ui")
|
||||
class PreferencesWindow(Adw.PreferencesWindow):
|
||||
__gtype_name__ = "PreferencesWindow"
|
||||
|
||||
@@ -50,108 +89,238 @@ class PreferencesWindow(Adw.PreferencesWindow):
|
||||
exit_after_launch_switch = Gtk.Template.Child()
|
||||
cover_launches_game_switch = Gtk.Template.Child()
|
||||
high_quality_images_switch = Gtk.Template.Child()
|
||||
remove_all_games_button = Gtk.Template.Child()
|
||||
|
||||
steam_expander_row = Gtk.Template.Child()
|
||||
steam_data_action_row = Gtk.Template.Child()
|
||||
steam_data_file_chooser_button = Gtk.Template.Child()
|
||||
steam_file_chooser_button = Gtk.Template.Child()
|
||||
steam_extra_file_chooser_button = Gtk.Template.Child()
|
||||
steam_clear_button_revealer = Gtk.Template.Child()
|
||||
steam_clear_button = Gtk.Template.Child()
|
||||
|
||||
lutris_expander_row = Gtk.Template.Child()
|
||||
lutris_data_action_row = Gtk.Template.Child()
|
||||
lutris_data_file_chooser_button = Gtk.Template.Child()
|
||||
lutris_cache_action_row = Gtk.Template.Child()
|
||||
lutris_file_chooser_button = Gtk.Template.Child()
|
||||
lutris_cache_file_chooser_button = Gtk.Template.Child()
|
||||
lutris_import_steam_switch = Gtk.Template.Child()
|
||||
lutris_import_flatpak_switch = Gtk.Template.Child()
|
||||
lutris_steam_switch = Gtk.Template.Child()
|
||||
|
||||
heroic_expander_row = Gtk.Template.Child()
|
||||
heroic_config_action_row = Gtk.Template.Child()
|
||||
heroic_config_file_chooser_button = Gtk.Template.Child()
|
||||
heroic_import_epic_switch = Gtk.Template.Child()
|
||||
heroic_import_gog_switch = Gtk.Template.Child()
|
||||
heroic_import_sideload_switch = Gtk.Template.Child()
|
||||
heroic_file_chooser_button = Gtk.Template.Child()
|
||||
heroic_epic_switch = Gtk.Template.Child()
|
||||
heroic_gog_switch = Gtk.Template.Child()
|
||||
heroic_sideloaded_switch = Gtk.Template.Child()
|
||||
|
||||
bottles_expander_row = Gtk.Template.Child()
|
||||
bottles_data_action_row = Gtk.Template.Child()
|
||||
bottles_data_file_chooser_button = Gtk.Template.Child()
|
||||
bottles_file_chooser_button = Gtk.Template.Child()
|
||||
|
||||
itch_expander_row = Gtk.Template.Child()
|
||||
itch_config_action_row = Gtk.Template.Child()
|
||||
itch_config_file_chooser_button = Gtk.Template.Child()
|
||||
|
||||
legendary_expander_row = Gtk.Template.Child()
|
||||
legendary_config_action_row = Gtk.Template.Child()
|
||||
legendary_config_file_chooser_button = Gtk.Template.Child()
|
||||
|
||||
flatpak_expander_row = Gtk.Template.Child()
|
||||
flatpak_data_action_row = Gtk.Template.Child()
|
||||
flatpak_data_file_chooser_button = Gtk.Template.Child()
|
||||
flatpak_import_launchers_switch = Gtk.Template.Child()
|
||||
itch_file_chooser_button = Gtk.Template.Child()
|
||||
|
||||
sgdb_key_group = Gtk.Template.Child()
|
||||
sgdb_key_entry_row = Gtk.Template.Child()
|
||||
sgdb_switch = Gtk.Template.Child()
|
||||
sgdb_switch_row = Gtk.Template.Child()
|
||||
sgdb_download_switch = Gtk.Template.Child()
|
||||
sgdb_prefer_switch = Gtk.Template.Child()
|
||||
sgdb_animated_switch = Gtk.Template.Child()
|
||||
|
||||
danger_zone_group = Gtk.Template.Child()
|
||||
reset_action_row = Gtk.Template.Child()
|
||||
reset_button = Gtk.Template.Child()
|
||||
remove_all_games_button = Gtk.Template.Child()
|
||||
|
||||
removed_games = set()
|
||||
warning_menu_buttons = {}
|
||||
|
||||
def __init__(self, **kwargs):
|
||||
def __init__(self, win, **kwargs):
|
||||
super().__init__(**kwargs)
|
||||
self.win = shared.win
|
||||
self.schema = win.schema
|
||||
self.win = win
|
||||
self.file_chooser = Gtk.FileDialog()
|
||||
self.set_transient_for(self.win)
|
||||
self.set_transient_for(win)
|
||||
|
||||
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(
|
||||
shortcut_controller = Gtk.ShortcutController()
|
||||
shortcut_controller.add_shortcut(
|
||||
Gtk.Shortcut.new(
|
||||
Gtk.ShortcutTrigger.parse_string("<primary>z"),
|
||||
Gtk.CallbackAction.new(self.undo_remove_all),
|
||||
)
|
||||
)
|
||||
self.add_controller(shortcut_controller)
|
||||
self.removed_games = []
|
||||
|
||||
# General
|
||||
self.schema.bind(
|
||||
"exit-after-launch",
|
||||
self.exit_after_launch_switch,
|
||||
"active",
|
||||
Gio.SettingsBindFlags.DEFAULT,
|
||||
)
|
||||
self.schema.bind(
|
||||
"cover-launches-game",
|
||||
self.cover_launches_game_switch,
|
||||
"active",
|
||||
Gio.SettingsBindFlags.DEFAULT,
|
||||
)
|
||||
self.schema.bind(
|
||||
"high-quality-images",
|
||||
self.high_quality_images_switch,
|
||||
"active",
|
||||
Gio.SettingsBindFlags.DEFAULT,
|
||||
)
|
||||
|
||||
self.remove_all_games_button.connect("clicked", self.remove_all_games)
|
||||
|
||||
# Debug
|
||||
if shared.PROFILE == "development":
|
||||
self.reset_action_row.set_visible(True)
|
||||
self.reset_button.connect("clicked", self.reset_app)
|
||||
self.set_default_size(-1, 560)
|
||||
# Steam
|
||||
ImportPreferences(
|
||||
self,
|
||||
"steam",
|
||||
"Steam",
|
||||
steam_installed,
|
||||
self.steam_expander_row,
|
||||
self.steam_file_chooser_button,
|
||||
)
|
||||
|
||||
# Sources settings
|
||||
for source_class in (
|
||||
BottlesSource,
|
||||
FlatpakSource,
|
||||
HeroicSource,
|
||||
ItchSource,
|
||||
LegendarySource,
|
||||
LutrisSource,
|
||||
SteamSource,
|
||||
):
|
||||
source = source_class()
|
||||
if not source.is_available:
|
||||
expander_row = getattr(self, f"{source.id}_expander_row")
|
||||
expander_row.set_visible(False)
|
||||
def update_revealer():
|
||||
if self.schema.get_strv("steam-extra-dirs"):
|
||||
self.steam_clear_button_revealer.set_reveal_child(True)
|
||||
else:
|
||||
self.init_source_row(source)
|
||||
self.steam_clear_button_revealer.set_reveal_child(False)
|
||||
|
||||
def add_steam_dir(_source, result, _unused):
|
||||
try:
|
||||
value = self.schema.get_strv("steam-extra-dirs")
|
||||
value.append(self.file_chooser.select_folder_finish(result).get_path())
|
||||
self.schema.set_strv("steam-extra-dirs", value)
|
||||
except GLib.GError:
|
||||
return
|
||||
update_revealer()
|
||||
|
||||
def clear_steam_dirs(*_unused):
|
||||
self.schema.set_strv("steam-extra-dirs", [])
|
||||
update_revealer()
|
||||
|
||||
update_revealer()
|
||||
|
||||
self.steam_extra_file_chooser_button.connect(
|
||||
"clicked", self.choose_folder, add_steam_dir
|
||||
)
|
||||
self.steam_clear_button.connect("clicked", clear_steam_dirs)
|
||||
|
||||
# Lutris
|
||||
ImportPreferences(
|
||||
self,
|
||||
"lutris",
|
||||
"Lutris",
|
||||
lutris_installed,
|
||||
self.lutris_expander_row,
|
||||
self.lutris_file_chooser_button,
|
||||
)
|
||||
self.schema.bind(
|
||||
"lutris-import-steam",
|
||||
self.lutris_steam_switch,
|
||||
"active",
|
||||
Gio.SettingsBindFlags.DEFAULT,
|
||||
)
|
||||
|
||||
def set_cache_dir(_source, result, _unused):
|
||||
try:
|
||||
path = Path(self.file_chooser.select_folder_finish(result).get_path())
|
||||
except GLib.GError:
|
||||
return
|
||||
|
||||
def response(widget, response):
|
||||
if response == "choose_folder":
|
||||
self.choose_folder(widget, set_cache_dir)
|
||||
|
||||
if not lutris_cache_exists(path).exists():
|
||||
create_dialog(
|
||||
self.win,
|
||||
_("Cache Not Found"),
|
||||
_("Select the Lutris cache directory."),
|
||||
"choose_folder",
|
||||
_("Set Location"),
|
||||
).connect("response", response)
|
||||
|
||||
self.lutris_cache_file_chooser_button.connect(
|
||||
"clicked", self.choose_folder, set_cache_dir
|
||||
)
|
||||
|
||||
if os.name == "nt":
|
||||
self.sources_group.remove(self.lutris_expander_row)
|
||||
|
||||
# Heroic
|
||||
ImportPreferences(
|
||||
self,
|
||||
"heroic",
|
||||
"Heroic",
|
||||
heroic_installed,
|
||||
self.heroic_expander_row,
|
||||
self.heroic_file_chooser_button,
|
||||
True,
|
||||
)
|
||||
|
||||
self.schema.bind(
|
||||
"heroic-import-epic",
|
||||
self.heroic_epic_switch,
|
||||
"active",
|
||||
Gio.SettingsBindFlags.DEFAULT,
|
||||
)
|
||||
self.schema.bind(
|
||||
"heroic-import-gog",
|
||||
self.heroic_gog_switch,
|
||||
"active",
|
||||
Gio.SettingsBindFlags.DEFAULT,
|
||||
)
|
||||
self.schema.bind(
|
||||
"heroic-import-sideload",
|
||||
self.heroic_sideloaded_switch,
|
||||
"active",
|
||||
Gio.SettingsBindFlags.DEFAULT,
|
||||
)
|
||||
|
||||
# Bottles
|
||||
ImportPreferences(
|
||||
self,
|
||||
"bottles",
|
||||
"Bottles",
|
||||
bottles_installed,
|
||||
self.bottles_expander_row,
|
||||
self.bottles_file_chooser_button,
|
||||
)
|
||||
|
||||
if os.name == "nt":
|
||||
self.sources_group.remove(self.bottles_expander_row)
|
||||
|
||||
# itch
|
||||
ImportPreferences(
|
||||
self,
|
||||
"itch",
|
||||
"itch",
|
||||
itch_installed,
|
||||
self.itch_expander_row,
|
||||
self.itch_file_chooser_button,
|
||||
True,
|
||||
)
|
||||
|
||||
# SteamGridDB
|
||||
def sgdb_key_changed(*_args):
|
||||
shared.schema.set_string("sgdb-key", self.sgdb_key_entry_row.get_text())
|
||||
self.schema.bind(
|
||||
"sgdb",
|
||||
self.sgdb_download_switch,
|
||||
"active",
|
||||
Gio.SettingsBindFlags.DEFAULT,
|
||||
)
|
||||
|
||||
self.sgdb_key_entry_row.set_text(shared.schema.get_string("sgdb-key"))
|
||||
self.schema.bind(
|
||||
"sgdb-prefer",
|
||||
self.sgdb_prefer_switch,
|
||||
"active",
|
||||
Gio.SettingsBindFlags.DEFAULT,
|
||||
)
|
||||
|
||||
self.schema.bind(
|
||||
"sgdb-animated",
|
||||
self.sgdb_animated_switch,
|
||||
"active",
|
||||
Gio.SettingsBindFlags.DEFAULT,
|
||||
)
|
||||
|
||||
def sgdb_key_changed(_widget):
|
||||
self.schema.set_string("sgdb-key", self.sgdb_key_entry_row.get_text())
|
||||
|
||||
self.sgdb_key_entry_row.set_text(self.schema.get_string("sgdb-key"))
|
||||
self.sgdb_key_entry_row.connect("changed", sgdb_key_changed)
|
||||
|
||||
self.sgdb_key_group.set_description(
|
||||
@@ -162,229 +331,49 @@ class PreferencesWindow(Adw.PreferencesWindow):
|
||||
)
|
||||
)
|
||||
|
||||
def set_sgdb_sensitive(widget):
|
||||
if not widget.get_text():
|
||||
shared.schema.set_boolean("sgdb", False)
|
||||
def choose_folder(self, _widget, function):
|
||||
self.file_chooser.select_folder(self.win, None, function, None)
|
||||
|
||||
self.sgdb_switch_row.set_sensitive(widget.get_text())
|
||||
def undo_remove_all(self, _widget, _unused):
|
||||
deleted_covers_dir = self.win.cache_dir / "cartridges" / "deleted_covers"
|
||||
|
||||
self.sgdb_key_entry_row.connect("changed", set_sgdb_sensitive)
|
||||
set_sgdb_sensitive(self.sgdb_key_entry_row)
|
||||
for game_id in self.removed_games:
|
||||
data = get_games(self.win, [game_id])[game_id]
|
||||
if "removed" in data:
|
||||
data.pop("removed")
|
||||
save_game(self.win, data)
|
||||
|
||||
# Switches
|
||||
self.bind_switches(
|
||||
(
|
||||
"exit-after-launch",
|
||||
"cover-launches-game",
|
||||
"high-quality-images",
|
||||
"lutris-import-steam",
|
||||
"lutris-import-flatpak",
|
||||
"heroic-import-epic",
|
||||
"heroic-import-gog",
|
||||
"heroic-import-sideload",
|
||||
"flatpak-import-launchers",
|
||||
"sgdb",
|
||||
"sgdb-prefer",
|
||||
"sgdb-animated",
|
||||
)
|
||||
)
|
||||
cover_path = deleted_covers_dir / f"{game_id}.tiff"
|
||||
if not cover_path.is_file():
|
||||
cover_path = deleted_covers_dir / f"{game_id}.gif"
|
||||
if not cover_path.is_file():
|
||||
continue
|
||||
|
||||
def get_switch(self, setting):
|
||||
return getattr(self, f'{setting.replace("-", "_")}_switch')
|
||||
move(cover_path, self.win.covers_dir / cover_path.name)
|
||||
|
||||
def bind_switches(self, settings):
|
||||
for setting in settings:
|
||||
shared.schema.bind(
|
||||
setting,
|
||||
self.get_switch(setting),
|
||||
"active",
|
||||
Gio.SettingsBindFlags.DEFAULT,
|
||||
)
|
||||
|
||||
def choose_folder(self, _widget, callback, callback_data=None):
|
||||
self.file_chooser.select_folder(self.win, None, callback, callback_data)
|
||||
|
||||
def undo_remove_all(self, *_args):
|
||||
for game in self.removed_games:
|
||||
game.removed = False
|
||||
game.save()
|
||||
game.update()
|
||||
|
||||
self.removed_games = set()
|
||||
self.win.update_games(self.removed_games)
|
||||
self.removed_games = []
|
||||
self.toast.dismiss()
|
||||
|
||||
def remove_all_games(self, *_args):
|
||||
for game in shared.store.games.values():
|
||||
if not game.removed:
|
||||
self.removed_games.add(game)
|
||||
def remove_all_games(self, _widget):
|
||||
deleted_covers_dir = self.win.cache_dir / "cartridges" / "deleted_covers"
|
||||
deleted_covers_dir.mkdir(parents=True, exist_ok=True)
|
||||
|
||||
game.removed = True
|
||||
game.save()
|
||||
game.update()
|
||||
for game in get_games(self.win).values():
|
||||
if "removed" not in game:
|
||||
self.removed_games.append(game["game_id"])
|
||||
game["removed"] = True
|
||||
save_game(self.win, game)
|
||||
|
||||
cover_path = self.win.games[game["game_id"]].get_cover_path()
|
||||
if not cover_path:
|
||||
continue
|
||||
|
||||
if cover_path.is_file():
|
||||
move(cover_path, deleted_covers_dir / cover_path.name)
|
||||
|
||||
self.win.update_games(self.win.games)
|
||||
if self.win.stack.get_visible_child() == self.win.details_view:
|
||||
self.win.on_go_back_action()
|
||||
self.win.on_go_back_action(None, None)
|
||||
|
||||
self.add_toast(self.toast)
|
||||
|
||||
def reset_app(self, *_args):
|
||||
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):
|
||||
"""Set the dir subtitle for a source's action rows"""
|
||||
for location in ("data", "config", "cache"):
|
||||
# Get the action row to subtitle
|
||||
action_row = getattr(self, f"{source.id}_{location}_action_row", None)
|
||||
if not action_row:
|
||||
continue
|
||||
|
||||
infix = "-cache" if location == "cache" else ""
|
||||
key = f"{source.id}{infix}-location"
|
||||
path = Path(shared.schema.get_string(key)).expanduser()
|
||||
|
||||
# Remove the path prefix if picked via Flatpak portal
|
||||
subtitle = re.sub("/run/user/\\d*/doc/.*/", "", str(path))
|
||||
action_row.set_subtitle(subtitle)
|
||||
|
||||
def resolve_locations(self, source):
|
||||
"""Resolve locations and add a warning if location cannot be found"""
|
||||
|
||||
def clear_warning_selection(_widget, label):
|
||||
label.select_region(-1, -1)
|
||||
|
||||
for location_name in ("data", "config", "cache"):
|
||||
action_row = getattr(self, f"{source.id}_{location_name}_action_row", None)
|
||||
if not action_row:
|
||||
continue
|
||||
|
||||
try:
|
||||
getattr(source, f"{location_name}_location", None).resolve()
|
||||
|
||||
except UnresolvableLocationError:
|
||||
popover = Gtk.Popover(
|
||||
child=(
|
||||
label := Gtk.Label(
|
||||
label=(
|
||||
'<span rise="12pt"><b><big>'
|
||||
+ _("Installation Not Found")
|
||||
+ "</big></b></span>\n"
|
||||
+ _("Select a valid directory.")
|
||||
),
|
||||
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,
|
||||
selectable=True,
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
popover.connect("show", clear_warning_selection, label)
|
||||
|
||||
menu_button = Gtk.MenuButton(
|
||||
icon_name="dialog-warning-symbolic",
|
||||
valign=Gtk.Align.CENTER,
|
||||
popover=popover,
|
||||
)
|
||||
menu_button.add_css_class("warning")
|
||||
|
||||
action_row.add_prefix(menu_button)
|
||||
self.warning_menu_buttons[source.id] = menu_button
|
||||
|
||||
def init_source_row(self, source: Source):
|
||||
"""Initialize a preference row for a source class"""
|
||||
|
||||
def set_dir(_widget, result, location_name):
|
||||
"""Callback called when a dir picker button is clicked"""
|
||||
|
||||
try:
|
||||
path = Path(self.file_chooser.select_folder_finish(result).get_path())
|
||||
except GLib.GError:
|
||||
return
|
||||
|
||||
# Good picked location
|
||||
location = getattr(source, f"{location_name}_location")
|
||||
if location.check_candidate(path):
|
||||
# Set the schema
|
||||
infix = "-cache" if location_name == "cache" else ""
|
||||
key = f"{source.id}{infix}-location"
|
||||
value = str(path)
|
||||
shared.schema.set_string(key, value)
|
||||
# Update the row
|
||||
self.update_source_action_row_paths(source)
|
||||
|
||||
if self.warning_menu_buttons.get(source.id):
|
||||
action_row = getattr(
|
||||
self, f"{source.id}_{location_name}_action_row", None
|
||||
)
|
||||
action_row.remove(self.warning_menu_buttons[source.id])
|
||||
self.warning_menu_buttons.pop(source.id)
|
||||
|
||||
logging.debug("User-set value for schema key %s: %s", key, value)
|
||||
|
||||
# Bad picked location, inform user
|
||||
else:
|
||||
title = _("Invalid Directory")
|
||||
match location_name:
|
||||
case "cache":
|
||||
# The variable is the name of the source
|
||||
subtitle_format = _("Select the {} cache directory.")
|
||||
case "config":
|
||||
# The variable is the name of the source
|
||||
subtitle_format = _("Select the {} configuration directory.")
|
||||
case "data":
|
||||
# The variable is the name of the source
|
||||
subtitle_format = _("Select the {} data directory.")
|
||||
dialog = create_dialog(
|
||||
self,
|
||||
title,
|
||||
subtitle_format.format(source.name),
|
||||
"choose_folder",
|
||||
_("Set Location"),
|
||||
)
|
||||
|
||||
def on_response(widget, response):
|
||||
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.id}_expander_row")
|
||||
shared.schema.bind(
|
||||
source.id,
|
||||
expander_row,
|
||||
"enable-expansion",
|
||||
Gio.SettingsBindFlags.DEFAULT,
|
||||
)
|
||||
|
||||
# Connect dir picker buttons
|
||||
for location in ("data", "config", "cache"):
|
||||
button = getattr(self, f"{source.id}_{location}_file_chooser_button", None)
|
||||
if button is not None:
|
||||
button.connect("clicked", self.choose_folder, set_dir, location)
|
||||
|
||||
# Set the source row subtitles
|
||||
self.resolve_locations(source)
|
||||
self.update_source_action_row_paths(source)
|
||||
|
||||
@@ -1,55 +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
|
||||
|
||||
import os
|
||||
from pathlib import Path
|
||||
|
||||
from gi.repository import Gdk, Gio, GLib
|
||||
|
||||
APP_ID = "@APP_ID@"
|
||||
VERSION = "@VERSION@"
|
||||
PREFIX = "@PREFIX@"
|
||||
PROFILE = "@PROFILE@"
|
||||
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())
|
||||
config_dir = Path(GLib.get_user_config_dir())
|
||||
cache_dir = Path(GLib.get_user_config_dir())
|
||||
flatpak_dir = home / ".var" / "app"
|
||||
|
||||
games_dir = data_dir / "cartridges" / "games"
|
||||
covers_dir = data_dir / "cartridges" / "covers"
|
||||
|
||||
appdata_dir = Path(os.getenv("appdata") or "C:\\Users\\Default\\AppData\\Roaming")
|
||||
programfiles32_dir = Path(os.getenv("programfiles(x86)") or "C:\\Program Files (x86)")
|
||||
|
||||
scale_factor = max(
|
||||
monitor.get_scale_factor() for monitor in Gdk.Display.get_default().get_monitors()
|
||||
)
|
||||
image_size = (200 * scale_factor, 300 * scale_factor)
|
||||
|
||||
# pylint: disable=invalid-name
|
||||
win = None
|
||||
importer = None
|
||||
store = None
|
||||
log_files = None
|
||||
@@ -1,64 +0,0 @@
|
||||
# async_manager.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
|
||||
|
||||
from typing import Callable, Any
|
||||
|
||||
from gi.repository import Gio
|
||||
|
||||
from src.game import Game
|
||||
from src.store.managers.manager import Manager
|
||||
from src.utils.task import Task
|
||||
|
||||
|
||||
class AsyncManager(Manager):
|
||||
"""Manager that can run asynchronously"""
|
||||
|
||||
blocking = False
|
||||
cancellable: Gio.Cancellable = None
|
||||
|
||||
def __init__(self) -> None:
|
||||
super().__init__()
|
||||
self.cancellable = Gio.Cancellable()
|
||||
|
||||
def cancel_tasks(self):
|
||||
"""Cancel all tasks for this manager"""
|
||||
self.cancellable.cancel()
|
||||
|
||||
def reset_cancellable(self):
|
||||
"""Reset the cancellable for this manager.
|
||||
Already scheduled Tasks will no longer be cancellable."""
|
||||
self.cancellable = Gio.Cancellable()
|
||||
|
||||
def process_game(
|
||||
self, game: Game, additional_data: dict, callback: Callable[["Manager"], Any]
|
||||
) -> None:
|
||||
"""Create a task to process the game in a separate thread"""
|
||||
task = Task.new(None, self.cancellable, self._task_callback, (callback,))
|
||||
task.set_task_data((game, additional_data))
|
||||
task.run_in_thread(self._task_thread_func)
|
||||
|
||||
def _task_thread_func(self, _task, _source_object, data, _cancellable):
|
||||
"""Task thread entry point"""
|
||||
game, additional_data, *_rest = data
|
||||
self.execute_resilient_manager_logic(game, additional_data)
|
||||
|
||||
def _task_callback(self, _source_object, _result, data):
|
||||
"""Method run after the task is done"""
|
||||
callback, *_rest = data
|
||||
callback(self)
|
||||
@@ -1,72 +0,0 @@
|
||||
# display_manager.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
|
||||
|
||||
from src.game import Game
|
||||
from src.game_cover import GameCover
|
||||
from src.store.managers.manager import Manager
|
||||
from src.store.managers.sgdb_manager import SGDBManager
|
||||
from src.store.managers.steam_api_manager import SteamAPIManager
|
||||
|
||||
|
||||
class DisplayManager(Manager):
|
||||
"""Manager in charge of adding a game to the UI"""
|
||||
|
||||
run_after = (SteamAPIManager, SGDBManager)
|
||||
signals = {"update-ready"}
|
||||
|
||||
def manager_logic(self, game: Game, _additional_data: dict) -> None:
|
||||
if game.get_parent():
|
||||
game.get_parent().get_parent().remove(game)
|
||||
if game.get_parent():
|
||||
game.get_parent().set_child()
|
||||
|
||||
game.menu_button.set_menu_model(
|
||||
game.hidden_game_options if game.hidden else game.game_options
|
||||
)
|
||||
|
||||
game.title.set_label(game.name)
|
||||
|
||||
game.menu_button.get_popover().connect(
|
||||
"notify::visible", game.toggle_play, None
|
||||
)
|
||||
game.menu_button.get_popover().connect(
|
||||
"notify::visible", game.win.set_active_game, game
|
||||
)
|
||||
|
||||
if game.game_id in game.win.game_covers:
|
||||
game.game_cover = game.win.game_covers[game.game_id]
|
||||
game.game_cover.add_picture(game.cover)
|
||||
else:
|
||||
game.game_cover = GameCover({game.cover}, game.get_cover_path())
|
||||
game.win.game_covers[game.game_id] = game.game_cover
|
||||
|
||||
if (
|
||||
game.win.stack.get_visible_child() == game.win.details_view
|
||||
and game.win.active_game == game
|
||||
):
|
||||
game.win.show_details_view(game)
|
||||
|
||||
if not game.removed and not game.blacklisted:
|
||||
if game.hidden:
|
||||
game.win.hidden_library.append(game)
|
||||
else:
|
||||
game.win.library.append(game)
|
||||
game.get_parent().set_focusable(False)
|
||||
|
||||
game.win.set_library_child()
|
||||
@@ -1,59 +0,0 @@
|
||||
# file_manager.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 json
|
||||
|
||||
from src import shared
|
||||
from src.game import Game
|
||||
from src.store.managers.async_manager import AsyncManager
|
||||
from src.store.managers.steam_api_manager import SteamAPIManager
|
||||
|
||||
|
||||
class FileManager(AsyncManager):
|
||||
"""Manager in charge of saving a game to a file"""
|
||||
|
||||
run_after = (SteamAPIManager,)
|
||||
signals = {"save-ready"}
|
||||
|
||||
def manager_logic(self, game: Game, additional_data: dict) -> None:
|
||||
if additional_data.get("skip_save"): # Skip saving when loading games from disk
|
||||
return
|
||||
|
||||
shared.games_dir.mkdir(parents=True, exist_ok=True)
|
||||
|
||||
attrs = (
|
||||
"added",
|
||||
"executable",
|
||||
"game_id",
|
||||
"source",
|
||||
"hidden",
|
||||
"last_played",
|
||||
"name",
|
||||
"developer",
|
||||
"removed",
|
||||
"blacklisted",
|
||||
"version",
|
||||
)
|
||||
|
||||
json.dump(
|
||||
{attr: getattr(game, attr) for attr in attrs if attr},
|
||||
(shared.games_dir / f"{game.game_id}.json").open("w"),
|
||||
indent=4,
|
||||
sort_keys=True,
|
||||
)
|
||||
@@ -1,71 +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 gi.repository import GdkPixbuf
|
||||
|
||||
from src import shared
|
||||
from src.game import Game
|
||||
from src.store.managers.manager import Manager
|
||||
from src.store.managers.steam_api_manager import SteamAPIManager
|
||||
from src.utils.save_cover import resize_cover, save_cover
|
||||
|
||||
|
||||
class LocalCoverManager(Manager):
|
||||
"""Manager in charge of adding the local cover image of the game"""
|
||||
|
||||
run_after = (SteamAPIManager,)
|
||||
|
||||
def manager_logic(self, game: Game, additional_data: dict) -> None:
|
||||
if image_path := additional_data.get("local_image_path"):
|
||||
if not image_path.is_file():
|
||||
return
|
||||
save_cover(game.game_id, resize_cover(image_path))
|
||||
elif icon_path := additional_data.get("local_icon_path"):
|
||||
cover_width, cover_height = shared.image_size
|
||||
|
||||
dest_width = cover_width * 0.7
|
||||
dest_height = cover_width * 0.7
|
||||
|
||||
dest_x = cover_width * 0.15
|
||||
dest_y = (cover_height - dest_height) / 2
|
||||
|
||||
image = GdkPixbuf.Pixbuf.new_from_file(str(icon_path)).scale_simple(
|
||||
dest_width, dest_height, GdkPixbuf.InterpType.BILINEAR
|
||||
)
|
||||
|
||||
cover = image.scale_simple(
|
||||
1, 2, GdkPixbuf.InterpType.BILINEAR
|
||||
).scale_simple(cover_width, cover_height, GdkPixbuf.InterpType.BILINEAR)
|
||||
|
||||
image.composite(
|
||||
cover,
|
||||
dest_x,
|
||||
dest_y,
|
||||
dest_width,
|
||||
dest_height,
|
||||
dest_x,
|
||||
dest_y,
|
||||
1,
|
||||
1,
|
||||
GdkPixbuf.InterpType.BILINEAR,
|
||||
255,
|
||||
)
|
||||
|
||||
save_cover(game.game_id, resize_cover(pixbuf=cover))
|
||||
@@ -1,120 +0,0 @@
|
||||
# manager.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 abc import abstractmethod
|
||||
from time import sleep
|
||||
from typing import Any, Callable, Container
|
||||
|
||||
from src.errors.error_producer import ErrorProducer
|
||||
from src.errors.friendly_error import FriendlyError
|
||||
from src.game import Game
|
||||
|
||||
|
||||
class Manager(ErrorProducer):
|
||||
"""Class in charge of handling a post creation action for games.
|
||||
|
||||
* May connect to signals on the game to handle them.
|
||||
* May cancel its running tasks on critical error,
|
||||
in that case a new cancellable must be generated for new tasks to run.
|
||||
* May be retried on some specific error types
|
||||
"""
|
||||
|
||||
run_after: Container[type["Manager"]] = tuple()
|
||||
blocking: bool = True
|
||||
|
||||
retryable_on: Container[type[Exception]] = tuple()
|
||||
continue_on: Container[type[Exception]] = tuple()
|
||||
signals: Container[type[str]] = set()
|
||||
retry_delay: int = 3
|
||||
max_tries: int = 3
|
||||
|
||||
@property
|
||||
def name(self):
|
||||
return type(self).__name__
|
||||
|
||||
@abstractmethod
|
||||
def manager_logic(self, game: Game, additional_data: dict) -> None:
|
||||
"""
|
||||
Manager specific logic triggered by the run method
|
||||
* Implemented by final child classes
|
||||
* May block its thread
|
||||
* May raise retryable exceptions that will trigger a retry if possible
|
||||
* May raise other exceptions that will be reported
|
||||
"""
|
||||
|
||||
def execute_resilient_manager_logic(self, game: Game, additional_data: dict):
|
||||
"""Handle errors (retry, ignore or raise) that occur in the manager logic"""
|
||||
|
||||
# Keep track of the number of tries
|
||||
tries = 1
|
||||
|
||||
def handle_error(error: Exception):
|
||||
nonlocal tries
|
||||
|
||||
# If FriendlyError, handle its cause instead
|
||||
base_error = error
|
||||
if isinstance(error, FriendlyError):
|
||||
error = error.__cause__
|
||||
|
||||
log_args = (
|
||||
type(error).__name__,
|
||||
self.name,
|
||||
f"{game.name} ({game.game_id})",
|
||||
)
|
||||
|
||||
out_of_retries_format = "Out of retries dues to %s in %s for %s"
|
||||
retrying_format = "Retrying %s in %s for %s"
|
||||
unretryable_format = "Unretryable %s in %s for %s"
|
||||
|
||||
if error in self.continue_on:
|
||||
# Handle skippable errors (skip silently)
|
||||
return
|
||||
|
||||
if error in self.retryable_on:
|
||||
if tries > self.max_tries:
|
||||
# Handle being out of retries
|
||||
logging.error(out_of_retries_format, *log_args)
|
||||
self.report_error(base_error)
|
||||
else:
|
||||
# Handle retryable errors
|
||||
logging.error(retrying_format, *log_args)
|
||||
sleep(self.retry_delay)
|
||||
tries += 1
|
||||
try_manager_logic()
|
||||
|
||||
else:
|
||||
# Handle unretryable errors
|
||||
logging.error(unretryable_format, *log_args, exc_info=error)
|
||||
self.report_error(base_error)
|
||||
|
||||
def try_manager_logic():
|
||||
try:
|
||||
self.manager_logic(game, additional_data)
|
||||
except Exception as error: # pylint: disable=broad-exception-caught
|
||||
handle_error(error)
|
||||
|
||||
try_manager_logic()
|
||||
|
||||
def process_game(
|
||||
self, game: Game, additional_data: dict, callback: Callable[["Manager"], Any]
|
||||
) -> None:
|
||||
"""Pass the game through the manager"""
|
||||
self.execute_resilient_manager_logic(game, additional_data)
|
||||
callback(self)
|
||||
@@ -1,126 +0,0 @@
|
||||
# online_cover_manager.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 pathlib import Path
|
||||
|
||||
import requests
|
||||
from gi.repository import Gio, GdkPixbuf
|
||||
from requests.exceptions import HTTPError, SSLError
|
||||
from PIL import Image
|
||||
|
||||
from src import shared
|
||||
from src.game import Game
|
||||
from src.store.managers.local_cover_manager import LocalCoverManager
|
||||
from src.store.managers.manager import Manager
|
||||
from src.utils.save_cover import resize_cover, save_cover
|
||||
|
||||
|
||||
class OnlineCoverManager(Manager):
|
||||
"""Manager that downloads game covers from URLs"""
|
||||
|
||||
run_after = (LocalCoverManager,)
|
||||
retryable_on = (HTTPError, SSLError, ConnectionError)
|
||||
|
||||
def save_composited_cover(
|
||||
self,
|
||||
game: Game,
|
||||
image_file: Gio.File,
|
||||
original_width: int,
|
||||
original_height: int,
|
||||
target_width: int,
|
||||
target_height: int,
|
||||
) -> None:
|
||||
"""Save the image composited with a background blur to fit the cover size"""
|
||||
|
||||
logging.debug(
|
||||
"Compositing image for %s (%s) %dx%d -> %dx%d",
|
||||
game.name,
|
||||
game.game_id,
|
||||
original_width,
|
||||
original_height,
|
||||
target_width,
|
||||
target_height,
|
||||
)
|
||||
|
||||
# Load game image
|
||||
image = GdkPixbuf.Pixbuf.new_from_stream(image_file.read())
|
||||
|
||||
# Create background blur of the size of the cover
|
||||
cover = image.scale_simple(2, 2, GdkPixbuf.InterpType.BILINEAR).scale_simple(
|
||||
target_width, target_height, GdkPixbuf.InterpType.BILINEAR
|
||||
)
|
||||
|
||||
# Center the image above the blurred background
|
||||
scale = min(target_width / original_width, target_height / original_height)
|
||||
left_padding = (target_width - original_width * scale) / 2
|
||||
top_padding = (target_height - original_height * scale) / 2
|
||||
image.composite(
|
||||
cover,
|
||||
# Top left of overwritten area on the destination
|
||||
left_padding,
|
||||
top_padding,
|
||||
# Size of the overwritten area on the destination
|
||||
original_width * scale,
|
||||
original_height * scale,
|
||||
# Offset
|
||||
left_padding,
|
||||
top_padding,
|
||||
# Scale to apply to the resized image
|
||||
scale,
|
||||
scale,
|
||||
# Compositing stuff
|
||||
GdkPixbuf.InterpType.BILINEAR,
|
||||
255,
|
||||
)
|
||||
|
||||
# Resize and save the cover
|
||||
save_cover(game.game_id, resize_cover(pixbuf=cover))
|
||||
|
||||
def manager_logic(self, game: Game, additional_data: dict) -> None:
|
||||
# Ensure that we have a cover to download
|
||||
cover_url = additional_data.get("online_cover_url")
|
||||
if not cover_url:
|
||||
return
|
||||
|
||||
# Download cover
|
||||
image_file = Gio.File.new_tmp()[0]
|
||||
image_path = Path(image_file.get_path())
|
||||
with requests.get(cover_url, timeout=5) as cover:
|
||||
cover.raise_for_status()
|
||||
image_path.write_bytes(cover.content)
|
||||
|
||||
# Get image size
|
||||
cover_width, cover_height = shared.image_size
|
||||
with Image.open(image_path) as pil_image:
|
||||
width, height = pil_image.size
|
||||
|
||||
# Composite if the image is shorter and the stretch amount is too high
|
||||
aspect_ratio = width / height
|
||||
target_aspect_ratio = cover_width / cover_height
|
||||
is_taller = aspect_ratio < target_aspect_ratio
|
||||
resized_height = height / width * cover_width
|
||||
stretch = 1 - (resized_height / cover_height)
|
||||
max_stretch = 0.12
|
||||
if is_taller or stretch <= max_stretch:
|
||||
save_cover(game.game_id, resize_cover(image_path))
|
||||
else:
|
||||
self.save_composited_cover(
|
||||
game, image_file, width, height, cover_width, cover_height
|
||||
)
|
||||
@@ -1,49 +0,0 @@
|
||||
# sgdb_manager.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
|
||||
|
||||
from json import JSONDecodeError
|
||||
|
||||
from requests.exceptions import HTTPError, SSLError
|
||||
|
||||
from src.errors.friendly_error import FriendlyError
|
||||
from src.game import Game
|
||||
from src.store.managers.async_manager import AsyncManager
|
||||
from src.store.managers.local_cover_manager import LocalCoverManager
|
||||
from src.store.managers.online_cover_manager import OnlineCoverManager
|
||||
from src.store.managers.steam_api_manager import SteamAPIManager
|
||||
from src.utils.steamgriddb import SGDBAuthError, SGDBHelper
|
||||
|
||||
|
||||
class SGDBManager(AsyncManager):
|
||||
"""Manager in charge of downloading a game's cover from steamgriddb"""
|
||||
|
||||
run_after = (SteamAPIManager, LocalCoverManager, OnlineCoverManager)
|
||||
retryable_on = (HTTPError, SSLError, ConnectionError, JSONDecodeError)
|
||||
|
||||
def manager_logic(self, game: Game, _additional_data: dict) -> None:
|
||||
try:
|
||||
sgdb = SGDBHelper()
|
||||
sgdb.conditionaly_update_cover(game)
|
||||
except SGDBAuthError as error:
|
||||
# If invalid auth, cancel all SGDBManager tasks
|
||||
self.cancellable.cancel()
|
||||
raise FriendlyError(
|
||||
_("Couldn't Authenticate SteamGridDB"),
|
||||
_("Verify your API key in preferences"),
|
||||
) from error
|
||||
@@ -1,56 +0,0 @@
|
||||
# steam_api_manager.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
|
||||
|
||||
from requests.exceptions import HTTPError, SSLError
|
||||
|
||||
from src.game import Game
|
||||
from src.store.managers.async_manager import AsyncManager
|
||||
from src.utils.steam import (
|
||||
SteamGameNotFoundError,
|
||||
SteamAPIHelper,
|
||||
SteamNotAGameError,
|
||||
SteamRateLimiter,
|
||||
)
|
||||
|
||||
|
||||
class SteamAPIManager(AsyncManager):
|
||||
"""Manager in charge of completing a game's data from the Steam API"""
|
||||
|
||||
retryable_on = (HTTPError, SSLError, ConnectionError)
|
||||
|
||||
steam_api_helper: SteamAPIHelper = None
|
||||
steam_rate_limiter: SteamRateLimiter = None
|
||||
|
||||
def __init__(self) -> None:
|
||||
super().__init__()
|
||||
self.steam_rate_limiter = SteamRateLimiter()
|
||||
self.steam_api_helper = SteamAPIHelper(self.steam_rate_limiter)
|
||||
|
||||
def manager_logic(self, game: Game, additional_data: dict) -> None:
|
||||
# Skip non-steam games
|
||||
appid = additional_data.get("steam_appid", None)
|
||||
if appid is None:
|
||||
return
|
||||
# Get online metadata
|
||||
try:
|
||||
online_data = self.steam_api_helper.get_api_data(appid=appid)
|
||||
except (SteamNotAGameError, SteamGameNotFoundError):
|
||||
game.update_values({"blacklisted": True})
|
||||
else:
|
||||
game.update_values(online_data)
|
||||
@@ -1,110 +0,0 @@
|
||||
# pipeline.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 Iterable
|
||||
|
||||
from gi.repository import GObject
|
||||
|
||||
from src.game import Game
|
||||
from src.store.managers.manager import Manager
|
||||
|
||||
|
||||
class Pipeline(GObject.Object):
|
||||
"""Class representing a set of managers for a game"""
|
||||
|
||||
game: Game
|
||||
additional_data: dict
|
||||
|
||||
waiting: set[Manager]
|
||||
running: set[Manager]
|
||||
done: set[Manager]
|
||||
|
||||
def __init__(
|
||||
self, game: Game, additional_data: dict, managers: Iterable[Manager]
|
||||
) -> None:
|
||||
super().__init__()
|
||||
self.game = game
|
||||
self.additional_data = additional_data
|
||||
self.waiting = set(managers)
|
||||
self.running = set()
|
||||
self.done = set()
|
||||
|
||||
@property
|
||||
def not_done(self) -> set[Manager]:
|
||||
"""Get the managers that are not done yet"""
|
||||
return self.waiting | self.running
|
||||
|
||||
@property
|
||||
def is_done(self) -> bool:
|
||||
return len(self.waiting) == 0 and len(self.running) == 0
|
||||
|
||||
@property
|
||||
def blocked(self) -> set[Manager]:
|
||||
"""Get the managers that cannot run because their dependencies aren't done"""
|
||||
blocked = set()
|
||||
for waiting in self.waiting:
|
||||
for not_done in self.not_done:
|
||||
if waiting == not_done:
|
||||
continue
|
||||
if type(not_done) in waiting.run_after:
|
||||
blocked.add(waiting)
|
||||
return blocked
|
||||
|
||||
@property
|
||||
def ready(self) -> set[Manager]:
|
||||
"""Get the managers that can be run"""
|
||||
return self.waiting - self.blocked
|
||||
|
||||
@property
|
||||
def progress(self) -> float:
|
||||
"""Get the pipeline progress. Should only be a rough idea."""
|
||||
n_done = len(self.done)
|
||||
n_total = len(self.waiting) + len(self.running) + n_done
|
||||
try:
|
||||
progress = n_done / n_total
|
||||
except ZeroDivisionError:
|
||||
progress = 1
|
||||
return progress
|
||||
|
||||
def advance(self):
|
||||
"""Spawn tasks for managers that are able to run for a game"""
|
||||
|
||||
# Separate blocking / async managers
|
||||
managers = self.ready
|
||||
blocking = set(filter(lambda manager: manager.blocking, managers))
|
||||
parallel = managers - blocking
|
||||
|
||||
# Schedule parallel managers, then run the blocking ones
|
||||
for manager in (*parallel, *blocking):
|
||||
self.waiting.remove(manager)
|
||||
self.running.add(manager)
|
||||
manager.process_game(self.game, self.additional_data, self.manager_callback)
|
||||
|
||||
def manager_callback(self, manager: Manager) -> None:
|
||||
"""Method called by a manager when it's done"""
|
||||
logging.debug("%s done for %s", manager.name, self.game.game_id)
|
||||
self.running.remove(manager)
|
||||
self.done.add(manager)
|
||||
self.emit("advanced")
|
||||
self.advance()
|
||||
|
||||
@GObject.Signal(name="advanced")
|
||||
def advanced(self) -> None:
|
||||
"""Signal emitted when the pipeline has advanced"""
|
||||
@@ -1,106 +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 src import shared
|
||||
from src.game import Game
|
||||
from src.store.managers.manager import Manager
|
||||
from src.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]
|
||||
games: dict[str, Game]
|
||||
|
||||
def __init__(self) -> None:
|
||||
self.managers = {}
|
||||
self.pipeline_managers = set()
|
||||
self.pipelines = {}
|
||||
self.games = {}
|
||||
|
||||
def add_manager(self, manager: Manager, in_pipeline=True):
|
||||
"""Add a manager to the store"""
|
||||
manager_type = type(manager)
|
||||
self.managers[manager_type] = manager
|
||||
if in_pipeline:
|
||||
self.enable_manager_in_pipelines(manager_type)
|
||||
|
||||
def enable_manager_in_pipelines(self, manager_type: type[Manager]):
|
||||
"""Make a manager run in new pipelines"""
|
||||
self.pipeline_managers.add(self.managers[manager_type])
|
||||
|
||||
def cleanup_game(self, game: Game) -> None:
|
||||
"""Remove a game's files"""
|
||||
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)
|
||||
|
||||
def add_game(
|
||||
self, game: Game, additional_data: dict, run_pipeline=True
|
||||
) -> Pipeline | None:
|
||||
"""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.games.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)
|
||||
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)
|
||||
else:
|
||||
# Duplicate game, ignore it
|
||||
logging.debug("Duplicate store game %s (%s)", game.name, game.game_id)
|
||||
return None
|
||||
|
||||
# Connect signals
|
||||
for manager in self.managers.values():
|
||||
for signal in manager.signals:
|
||||
game.connect(signal, manager.execute_resilient_manager_logic)
|
||||
|
||||
# Run the pipeline for the game
|
||||
if not run_pipeline:
|
||||
return None
|
||||
pipeline = Pipeline(game, additional_data, self.pipeline_managers)
|
||||
self.games[game.game_id] = game
|
||||
self.pipelines[game.game_id] = pipeline
|
||||
pipeline.advance()
|
||||
return pipeline
|
||||
@@ -1,32 +1,32 @@
|
||||
# check_install.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 pathlib import Path
|
||||
|
||||
|
||||
# TODO delegate to the sources
|
||||
def check_install(check, locations, setting=None, subdirs=(Path(),)):
|
||||
for location in locations:
|
||||
for subdir in (Path(),) + subdirs:
|
||||
if (location / subdir / check).exists():
|
||||
if setting:
|
||||
setting[0].set_string(setting[1], str(location / subdir))
|
||||
return location / subdir
|
||||
|
||||
return False
|
||||
# check_install.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 pathlib import Path
|
||||
|
||||
|
||||
def check_install(check, locations, setting=None, subdirs=(Path(),)):
|
||||
for location in locations:
|
||||
for subdir in (Path(),) + subdirs:
|
||||
if (location / subdir / check).is_file() or (
|
||||
location / subdir / check
|
||||
).exists():
|
||||
if setting:
|
||||
setting[0].set_string(setting[1], str(location / subdir))
|
||||
|
||||
return location / subdir
|
||||
|
||||