0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 04:42:18 +02:00

UI: Make "Portable Mode" translateable

This commit is contained in:
田七不甜 2023-05-03 18:57:21 +08:00 committed by Jim
parent f1c7296ac2
commit e1a202b370
2 changed files with 2 additions and 1 deletions

View File

@ -348,6 +348,7 @@ TransitionNameDlg.Text="Please enter the name of the transition"
TransitionNameDlg.Title="Transition Name"
# title bar strings
TitleBar.PortableMode="Portable Mode"
TitleBar.Profile="Profile"
TitleBar.Scenes="Scenes"

View File

@ -9127,7 +9127,7 @@ void OBSBasic::UpdateTitleBar()
name << App()->GetVersionString(false);
if (App()->IsPortableMode())
name << " - Portable Mode";
name << " - " << Str("TitleBar.PortableMode");
name << " - " << Str("TitleBar.Profile") << ": " << profile;
name << " - " << Str("TitleBar.Scenes") << ": " << sceneCollection;