[PR #2138] [CLOSED] (Android) - Atualização Português do Brasil #896

Open
opened 2026-01-29 19:10:03 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/stenzek/duckstation/pull/2138
Author: @andercard0
Created: 5/19/2021
Status: Closed

Base: masterHead: patch-121


📝 Commits (10+)

  • 8f49a81 (Android) Updated values-ru/strings to latest
  • f676314 Atualização Português do Brasil
  • f3f75b1 Update duckstation-qt_ja.ts
  • e2a23cc Re-add libretro core
  • 669393b CMake: Set __cplusplus version in MSVC
  • 186aecd CI: Re-add libretro builds
  • ef94b55 libretro: Expose support for pbp (and multi-disc)
  • 118b8dd Merge pull request #2074 from 6lackmag3/patch-56
  • ef3834a Merge pull request #2075 from andercard0/patch-114
  • b51a485 Merge pull request #2078 from Nekokabu/master

📊 Changes

127 files changed (+8719 additions, -2604 deletions)

View changed files

📝 .github/workflows/rolling-release.yml (+160 -6)
📝 CMakeLists.txt (+40 -5)
📝 CONTRIBUTORS.md (+4 -0)
📝 NEWS.md (+3 -0)
📝 README.md (+28 -1)
📝 android/.idea/misc.xml (+1 -1)
📝 android/.idea/runConfigurations.xml (+1 -0)
📝 android/app/src/cpp/android_host_interface.cpp (+1 -2)
📝 android/app/src/main/java/com/github/stenzek/duckstation/EmulationActivity.java (+10 -5)
📝 android/app/src/main/java/com/github/stenzek/duckstation/FileHelper.java (+129 -0)
📝 android/app/src/main/java/com/github/stenzek/duckstation/GameDirectoriesActivity.java (+12 -0)
📝 android/app/src/main/java/com/github/stenzek/duckstation/GamePropertiesActivity.java (+5 -0)
📝 android/app/src/main/java/com/github/stenzek/duckstation/MainActivity.java (+11 -0)
📝 android/app/src/main/res/drawable/ic_controller_pause_button.xml (+2 -3)
📝 android/app/src/main/res/values-es/strings.xml (+10 -0)
📝 android/app/src/main/res/values-pt-rBR/strings.xml (+143 -59)
📝 android/app/src/main/res/values-ru/strings.xml (+9 -8)
📝 android/app/src/main/res/values/strings.xml (+4 -0)
📝 android/app/src/main/res/xml/advanced_preferences.xml (+6 -0)
📝 data/database/compatibility.xml (+103 -64)

...and 80 more files

📄 Description

Update String file to latest.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/stenzek/duckstation/pull/2138 **Author:** [@andercard0](https://github.com/andercard0) **Created:** 5/19/2021 **Status:** ❌ Closed **Base:** `master` ← **Head:** `patch-121` --- ### 📝 Commits (10+) - [`8f49a81`](https://github.com/stenzek/duckstation/commit/8f49a81cd1782d454cdd793d5f227330b302c34e) (Android) Updated values-ru/strings to latest - [`f676314`](https://github.com/stenzek/duckstation/commit/f67631459b2623805bc7ebe654feb7c649170755) Atualização Português do Brasil - [`f3f75b1`](https://github.com/stenzek/duckstation/commit/f3f75b18c7b9efde3d492bd8b2623d580d6d2a8d) Update duckstation-qt_ja.ts - [`e2a23cc`](https://github.com/stenzek/duckstation/commit/e2a23cc4d3dcf090e0f9fe0fbbeb8de7810e7cae) Re-add libretro core - [`669393b`](https://github.com/stenzek/duckstation/commit/669393b852d3250c0169cfe006b88b4947ab7875) CMake: Set __cplusplus version in MSVC - [`186aecd`](https://github.com/stenzek/duckstation/commit/186aecd8df9d2dc5b47b43c55d4fd9d280b66a72) CI: Re-add libretro builds - [`ef94b55`](https://github.com/stenzek/duckstation/commit/ef94b5506b4be7ef5539b39e47dd05418651c6d3) libretro: Expose support for pbp (and multi-disc) - [`118b8dd`](https://github.com/stenzek/duckstation/commit/118b8dd2ef378da8415455f81ee32467719a44c3) Merge pull request #2074 from 6lackmag3/patch-56 - [`ef3834a`](https://github.com/stenzek/duckstation/commit/ef3834a2193ba5c1336c50c7bc0ec046f7671fd0) Merge pull request #2075 from andercard0/patch-114 - [`b51a485`](https://github.com/stenzek/duckstation/commit/b51a4856d7615e8df42bce09d1362d03c95c275a) Merge pull request #2078 from Nekokabu/master ### 📊 Changes **127 files changed** (+8719 additions, -2604 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/rolling-release.yml` (+160 -6) 📝 `CMakeLists.txt` (+40 -5) 📝 `CONTRIBUTORS.md` (+4 -0) 📝 `NEWS.md` (+3 -0) 📝 `README.md` (+28 -1) 📝 `android/.idea/misc.xml` (+1 -1) 📝 `android/.idea/runConfigurations.xml` (+1 -0) 📝 `android/app/src/cpp/android_host_interface.cpp` (+1 -2) 📝 `android/app/src/main/java/com/github/stenzek/duckstation/EmulationActivity.java` (+10 -5) 📝 `android/app/src/main/java/com/github/stenzek/duckstation/FileHelper.java` (+129 -0) 📝 `android/app/src/main/java/com/github/stenzek/duckstation/GameDirectoriesActivity.java` (+12 -0) 📝 `android/app/src/main/java/com/github/stenzek/duckstation/GamePropertiesActivity.java` (+5 -0) 📝 `android/app/src/main/java/com/github/stenzek/duckstation/MainActivity.java` (+11 -0) 📝 `android/app/src/main/res/drawable/ic_controller_pause_button.xml` (+2 -3) 📝 `android/app/src/main/res/values-es/strings.xml` (+10 -0) 📝 `android/app/src/main/res/values-pt-rBR/strings.xml` (+143 -59) 📝 `android/app/src/main/res/values-ru/strings.xml` (+9 -8) 📝 `android/app/src/main/res/values/strings.xml` (+4 -0) 📝 `android/app/src/main/res/xml/advanced_preferences.xml` (+6 -0) 📝 `data/database/compatibility.xml` (+103 -64) _...and 80 more files_ </details> ### 📄 Description Update String file to latest. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 19:10:03 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/duckstation#896