[PR #1319] [MERGED] fix descriptionText size | missing translations #2049

Closed
opened 2026-02-27 21:14:59 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/shadps4-emu/shadPS4/pull/1319
Author: @DanielSvoboda
Created: 10/9/2024
Status: Merged
Merged: 10/13/2024
Merged by: @georgemoralis

Base: mainHead: main


📝 Commits (9)

📊 Changes

29 files changed (+3267 additions, -117 deletions)

View changed files

📝 src/qt_gui/settings_dialog.cpp (+32 -9)
📝 src/qt_gui/settings_dialog.h (+2 -0)
📝 src/qt_gui/settings_dialog.ui (+4 -4)
📝 src/qt_gui/translations/ar.ts (+126 -1)
📝 src/qt_gui/translations/da_DK.ts (+126 -1)
📝 src/qt_gui/translations/de.ts (+126 -1)
📝 src/qt_gui/translations/el.ts (+126 -1)
📝 src/qt_gui/translations/en.ts (+42 -27)
📝 src/qt_gui/translations/es_ES.ts (+126 -1)
📝 src/qt_gui/translations/fa_IR.ts (+126 -1)
📝 src/qt_gui/translations/fi.ts (+126 -1)
📝 src/qt_gui/translations/fr.ts (+169 -44)
📝 src/qt_gui/translations/hu_HU.ts (+126 -1)
📝 src/qt_gui/translations/id.ts (+126 -1)
📝 src/qt_gui/translations/it.ts (+126 -1)
📝 src/qt_gui/translations/ja_JP.ts (+126 -1)
📝 src/qt_gui/translations/ko_KR.ts (+126 -1)
📝 src/qt_gui/translations/lt_LT.ts (+126 -1)
📝 src/qt_gui/translations/nb.ts (+126 -1)
📝 src/qt_gui/translations/nl.ts (+126 -1)

...and 9 more files

📄 Description

Fixes issue 1315 where descriptionText was not sized correctly when there was a lot of text.
*I had also reduced the Russian text, but another PR increased the size of the boxes, so I went back to the original text.

emulatorLanguage alphabetical order

Recently added elements have been translated:
Input, Cursor, Controller, Paths,Enable Discord Rich Presence...

*Added line breaks to some texts.
*Removed some duplicate stuff in en.ts
*Removed some spaces in fr.ts
image


🔄 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/shadps4-emu/shadPS4/pull/1319 **Author:** [@DanielSvoboda](https://github.com/DanielSvoboda) **Created:** 10/9/2024 **Status:** ✅ Merged **Merged:** 10/13/2024 **Merged by:** [@georgemoralis](https://github.com/georgemoralis) **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (9) - [`2ece948`](https://github.com/shadps4-emu/shadPS4/commit/2ece948a8cee0c73f759491f5c02ef1ad2879fdf) fix descriptionText size - [`e0a68f0`](https://github.com/shadps4-emu/shadPS4/commit/e0a68f08ac46d9bc319606af29702d0b35273b3e) + - [`29c7605`](https://github.com/shadps4-emu/shadPS4/commit/29c7605f5f2e8e044e29c61d8f624e6b52335843) Update ru_RU.ts - [`cfa8455`](https://github.com/shadps4-emu/shadPS4/commit/cfa84550082be7a017942d56beb9ea640a77e799) Merge branch 'shadps4-emu:main' into main - [`e709b0c`](https://github.com/shadps4-emu/shadPS4/commit/e709b0c5e8094f401b2b21eda570c311afbf2104) TR - [`d0379ed`](https://github.com/shadps4-emu/shadPS4/commit/d0379edec0935424c6a11bbd742c12334c90ea78) Update pt_BR.ts - [`fee01c2`](https://github.com/shadps4-emu/shadPS4/commit/fee01c2301110ea30d37af105b305bf5bc0eadc0) Merge branch 'shadps4-emu:main' into main - [`24aa65b`](https://github.com/shadps4-emu/shadPS4/commit/24aa65bf5b7ba4fa593ff89c169038311439d9f8) emulatorLanguage alphabetical order - [`0258f1e`](https://github.com/shadps4-emu/shadPS4/commit/0258f1e93f17bf40c351aaa264e7746a7640aa7d) Merge branch 'main' into main ### 📊 Changes **29 files changed** (+3267 additions, -117 deletions) <details> <summary>View changed files</summary> 📝 `src/qt_gui/settings_dialog.cpp` (+32 -9) 📝 `src/qt_gui/settings_dialog.h` (+2 -0) 📝 `src/qt_gui/settings_dialog.ui` (+4 -4) 📝 `src/qt_gui/translations/ar.ts` (+126 -1) 📝 `src/qt_gui/translations/da_DK.ts` (+126 -1) 📝 `src/qt_gui/translations/de.ts` (+126 -1) 📝 `src/qt_gui/translations/el.ts` (+126 -1) 📝 `src/qt_gui/translations/en.ts` (+42 -27) 📝 `src/qt_gui/translations/es_ES.ts` (+126 -1) 📝 `src/qt_gui/translations/fa_IR.ts` (+126 -1) 📝 `src/qt_gui/translations/fi.ts` (+126 -1) 📝 `src/qt_gui/translations/fr.ts` (+169 -44) 📝 `src/qt_gui/translations/hu_HU.ts` (+126 -1) 📝 `src/qt_gui/translations/id.ts` (+126 -1) 📝 `src/qt_gui/translations/it.ts` (+126 -1) 📝 `src/qt_gui/translations/ja_JP.ts` (+126 -1) 📝 `src/qt_gui/translations/ko_KR.ts` (+126 -1) 📝 `src/qt_gui/translations/lt_LT.ts` (+126 -1) 📝 `src/qt_gui/translations/nb.ts` (+126 -1) 📝 `src/qt_gui/translations/nl.ts` (+126 -1) _...and 9 more files_ </details> ### 📄 Description Fixes [issue 1315](https://github.com/shadps4-emu/shadPS4/issues/1315) where descriptionText was not sized correctly when there was a lot of text. *I had also reduced the Russian text, but another PR increased the size of the boxes, so I went back to the original text. emulatorLanguage alphabetical order Recently added elements have been translated: Input, Cursor, Controller, Paths,Enable Discord Rich Presence... *Added line breaks to some texts. *Removed some duplicate stuff in en.ts *Removed some spaces in fr.ts ![image](https://github.com/user-attachments/assets/0023e3e1-a9df-4a75-be7e-0b572b8d0ae8) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 21:14:59 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/shadPS4#2049
No description provided.