diff --git a/.github/SUPPORT.md b/.github/SUPPORT.md index 3deb59903..5e3d9b34d 100644 --- a/.github/SUPPORT.md +++ b/.github/SUPPORT.md @@ -4,4 +4,4 @@ Our **[wiki](https://github.com/JustArchiNET/ArchiSteamFarm/wiki)** is the offic We also have three independent support channels dedicated to our ASF users, in case you couldn't manage to solve the issue yourself. We answer all support and technical matters in our **[GitHub discussions](https://github.com/JustArchiNET/ArchiSteamFarm/discussions/categories/support)**, **[Steam group](https://steamcommunity.com/groups/archiasf/discussions/1)**, and on our **[Discord server](https://discord.gg/hSQgt8j)**. You're free to use the support channel that matches your preferences, although keep in mind that you have a higher chance solving your issue on the GitHub or Steam, where we're doing our best to answer all questions that couldn't be answered by our community itself (as opposed to Discord server where we're not active 24/7 and therefore not always able to answer). -GitHub **issues** (unlike discussions), are being used solely for ASF development, especially in regards to bugs and enhancements. We have a very strict policy regarding that, as GitHub issues is **not** a general support channel, it's dedicated exclusively to ASF development and we're not answering common ASF matters there, as we have appropriate support channels (mentioned above) for that. Common matters include not only general questions or issues that are obviously related to program usage, but also users reporting "bugs" that are clearly considered intended behaviour coming for example (and mainly) from misconfiguration or lack of understanding how the program works. If you're not sure whether your matter relates to ASF development or not, especially if you're not sure if it's a bug or intended behaviour, we recommend to use a support channel instead, where we'll answer you in calm atmosphere and forward your matter to GitHub if deemed appropriate. Invalid GitHub issues will be closed immediately and won't be answered. +GitHub **issues** (unlike discussions), are being used solely for ASF development, especially in regards to bugs and enhancements. We have a very strict policy regarding that, as GitHub issues is **not** a general support channel, it's dedicated exclusively to ASF development and we're not answering common ASF matters there, as we have appropriate support channels (mentioned above) for that. Common matters include not only general questions or issues that are obviously related to program usage, but also users reporting "bugs" that are clearly considered intended behaviour coming for example (and mainly) from misconfiguration or lack of understanding how the program works. If you're not sure whether your matter relates to ASF development or not, especially if you're not sure if it's a bug or intended behaviour, we recommend to use a support channel instead, where we'll answer you in calm atmosphere and forward your matter as GitHub issue if deemed appropriate. Invalid GitHub issues will be closed immediately and won't be answered. diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6282fb468..3b602518e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,7 +39,7 @@ jobs: - name: Upload latest strings for translation on Crowdin if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' && matrix.configuration == 'Release' && startsWith(matrix.os, 'ubuntu-') }} - uses: crowdin/github-action@1.4.10 + uses: crowdin/github-action@1.4.11 with: crowdin_branch_name: main config: '.github/crowdin.yml' diff --git a/.github/workflows/docker-ci.yml b/.github/workflows/docker-ci.yml index ef8af304e..744987cb9 100644 --- a/.github/workflows/docker-ci.yml +++ b/.github/workflows/docker-ci.yml @@ -25,7 +25,7 @@ jobs: uses: docker/setup-buildx-action@v2.0.0 - name: Build ${{ matrix.configuration }} Docker image from ${{ matrix.file }} - uses: docker/build-push-action@v3.1.0 + uses: docker/build-push-action@v3.1.1 with: context: . file: ${{ matrix.file }} diff --git a/.github/workflows/docker-publish-latest.yml b/.github/workflows/docker-publish-latest.yml index 6821beade..b2756fa00 100644 --- a/.github/workflows/docker-publish-latest.yml +++ b/.github/workflows/docker-publish-latest.yml @@ -55,7 +55,7 @@ jobs: echo "DH_REPOSITORY=$(echo ${{ secrets.DOCKERHUB_USERNAME }}/${{ github.event.repository.name }} | tr '[:upper:]' '[:lower:]')" >> "$GITHUB_ENV" - name: Build and publish Docker image from Dockerfile.Service - uses: docker/build-push-action@v3.1.0 + uses: docker/build-push-action@v3.1.1 with: context: . file: Dockerfile.Service diff --git a/.github/workflows/docker-publish-main.yml b/.github/workflows/docker-publish-main.yml index d9f332493..1297d173c 100644 --- a/.github/workflows/docker-publish-main.yml +++ b/.github/workflows/docker-publish-main.yml @@ -55,7 +55,7 @@ jobs: echo "DH_REPOSITORY=$(echo ${{ secrets.DOCKERHUB_USERNAME }}/${{ github.event.repository.name }} | tr '[:upper:]' '[:lower:]')" >> "$GITHUB_ENV" - name: Build and publish Docker image from Dockerfile - uses: docker/build-push-action@v3.1.0 + uses: docker/build-push-action@v3.1.1 with: context: . platforms: ${{ env.PLATFORMS }} diff --git a/.github/workflows/docker-publish-released.yml b/.github/workflows/docker-publish-released.yml index 9ed3ce74d..21b0880d3 100644 --- a/.github/workflows/docker-publish-released.yml +++ b/.github/workflows/docker-publish-released.yml @@ -56,7 +56,7 @@ jobs: echo "DH_REPOSITORY=$(echo ${{ secrets.DOCKERHUB_USERNAME }}/${{ github.event.repository.name }} | tr '[:upper:]' '[:lower:]')" >> "$GITHUB_ENV" - name: Build and publish Docker image from Dockerfile - uses: docker/build-push-action@v3.1.0 + uses: docker/build-push-action@v3.1.1 with: context: . platforms: ${{ env.PLATFORMS }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index cda98230e..a26bd08f3 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -426,7 +426,7 @@ jobs: path: out - name: Import GPG key for signing - uses: crazy-max/ghaction-import-gpg@v5.0.0 + uses: crazy-max/ghaction-import-gpg@v5.1.0 with: gpg_private_key: ${{ secrets.ARCHIBOT_GPG_PRIVATE_KEY }} diff --git a/.github/workflows/translations.yml b/.github/workflows/translations.yml index 1cbf2342f..b5916de07 100644 --- a/.github/workflows/translations.yml +++ b/.github/workflows/translations.yml @@ -26,7 +26,7 @@ jobs: git reset --hard origin/master - name: Download latest translations from Crowdin - uses: crowdin/github-action@1.4.10 + uses: crowdin/github-action@1.4.11 with: upload_sources: false download_translations: true @@ -38,7 +38,7 @@ jobs: token: ${{ secrets.ASF_CROWDIN_API_TOKEN }} - name: Import GPG key for signing - uses: crazy-max/ghaction-import-gpg@v5.0.0 + uses: crazy-max/ghaction-import-gpg@v5.1.0 with: gpg_private_key: ${{ secrets.ARCHIBOT_GPG_PRIVATE_KEY }} git_config_global: true diff --git a/ASF-ui b/ASF-ui index 60a692f2e..f486cd15a 160000 --- a/ASF-ui +++ b/ASF-ui @@ -1 +1 @@ -Subproject commit 60a692f2e0d6b7c2bcd2cf363042d4647f246b4b +Subproject commit f486cd15abfd4ba8abbb42ed1288c22a6bc0c0ed diff --git a/ArchiSteamFarm/Localization/Strings.pl-PL.resx b/ArchiSteamFarm/Localization/Strings.pl-PL.resx index 4fcbb10de..1b83099ac 100644 --- a/ArchiSteamFarm/Localization/Strings.pl-PL.resx +++ b/ArchiSteamFarm/Localization/Strings.pl-PL.resx @@ -105,7 +105,7 @@ StackTrace: {0} will be replaced by object's name - Żadne boty nie są zdefiniowane. Czy ASF został skonfigurowany? Postępuj zgodnie z przewodnikiem konfiguracji na wiki, jeśli odczuwasz zdezorientowanie. + Brak zdefiniowanych botów. Czy ASF został pomyślnie skonfigurowany? Jeśli nie wiesz co zrobić, postępuj zgodnie z przewodnikiem na Wiki. {0} jest puste! @@ -352,7 +352,7 @@ StackTrace: Automatyczne farmienie zostało wznowione! - Automatyczne farmienie jest już zatrzymane! + Automatyczne farmienie jest już wstrzymane! Automatyczne farmienie jest już wznowione! diff --git a/ArchiSteamFarm/Localization/Strings.ro-RO.resx b/ArchiSteamFarm/Localization/Strings.ro-RO.resx index 6c8f7a935..2d5671986 100644 --- a/ArchiSteamFarm/Localization/Strings.ro-RO.resx +++ b/ArchiSteamFarm/Localization/Strings.ro-RO.resx @@ -148,7 +148,7 @@ StackTrace: {0} will be replaced by trade number - Se autentifică la {0}... + Autentificare la {0}... {0} will be replaced by service's name @@ -162,7 +162,7 @@ StackTrace: {0} will be replaced by trade number - Repornește... + Se repornește... Pornește... @@ -174,14 +174,14 @@ StackTrace: Se deblochează contul parental... - Se caută versiune nouă... + Verificam pentru o versiune noua a aplicației... Se descarcă versiunea nouă: {0} ({1} MB)... Cât timp aștepți, ia în cosiderare donarea dacă apreciezi munca depusă! :) {0} will be replaced by version string, {1} will be replaced by update size (in megabytes) - Proces de actualizare finalizat! + Procesul de actualizare a fost finalizat! O nouă versiune ASF este disponibilă! Ia în considerare actualizarea! @@ -194,7 +194,10 @@ StackTrace: Te rog să introduci codul 2FA de pe autentificatorul Steam: Please note that this translation should end with space - + + Introduceți codul SteamGuard primit pe email: + Please note that this translation should end with space + Te rugăm să introduci datele de autentificare Steam: Please note that this translation should end with space @@ -688,17 +691,35 @@ Proces: {1} Fișierul de configurare {0} va fi migrat la cea mai recentă sintaxă... {0} will be replaced with the relative path to the affected config file + + Parola dvs. IPC pare a fi slaba. Va rugam sa considerați sa alegeți o parola mai complexa. Detail: {0} + {0} will be replaced by additional details about the password being considered weak + + + Parola dvs. de Steam este slaba. Va rugam sa considerați sa alegeți o parola mai complexa. Detail + {0} will be replaced by the affected bot name, {1} will be replaced by additional details about the password being considered weak + + + Cheia dvs. de encripție este slaba. Va rugam sa considerați sa alegeți o cheie mai complexa. Detail: {0} + {0} will be replaced by additional details about the encryption key being considered weak + + + Cheia dvs. de encripție este prea scurta. Va recomandam sa folosii o parola cu minim {0} caractere. + {0} will be replaced by the number of bytes (characters) recommended + + + + + Dvs încercați sa rulați ASF ca administrator, ASF nu are nevoie de elevație la nivel de administrator. Pentru securitatea calculatorului dvs, va recomandam sa rulați aplicația fără permisi de administrator. + + + + Se preia "checksum" de la serverul de la distanta... + - - - - - - - - - - + + Se repara fișierele ASF... + diff --git a/wiki b/wiki index e2ab1e7df..1f897a307 160000 --- a/wiki +++ b/wiki @@ -1 +1 @@ -Subproject commit e2ab1e7df2af64132dc5aed264ec6b9e5f0d38d9 +Subproject commit 1f897a307aaa8da26310a699a13ca5fec737beb2