mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-05-13 01:44:10 -04:00
frontend: Clean up various strings
This commit is contained in:
@@ -17,7 +17,7 @@ Yes="Yes"
|
||||
No="No"
|
||||
Add="Add"
|
||||
Remove="Remove"
|
||||
Rename="Rename"
|
||||
Rename="Rename..."
|
||||
Interact="Interact"
|
||||
Filters="Filters"
|
||||
Properties="Properties"
|
||||
@@ -49,8 +49,8 @@ Show="Show"
|
||||
Hide="Hide"
|
||||
UnhideAll="Unhide All"
|
||||
Untitled="Untitled"
|
||||
New="New"
|
||||
Duplicate="Duplicate"
|
||||
New="New..."
|
||||
Duplicate="Duplicate..."
|
||||
Enable="Enable"
|
||||
DisableOSXVSync="Disable macOS V-Sync"
|
||||
ResetOSXVSyncOnExit="Reset macOS V-Sync on Exit"
|
||||
@@ -102,6 +102,7 @@ LockVolume="Lock Volume"
|
||||
LogViewer="Log Viewer"
|
||||
ShowOnStartup="Show on startup"
|
||||
OpenFile="Open file"
|
||||
AddScene="Add Scene"
|
||||
AddSource="Add Source"
|
||||
RemoveScene="Remove Selected Scene"
|
||||
RemoveSource="Remove Selected Source(s)"
|
||||
@@ -800,7 +801,7 @@ Basic.MainMenu.Edit.Scale.ZoomIn="Zoom In"
|
||||
Basic.MainMenu.Edit.Scale.ZoomOut="Zoom Out"
|
||||
Basic.MainMenu.Edit.Scale.ResetZoom="Reset Zoom"
|
||||
Basic.MainMenu.Edit.Transform="&Transform"
|
||||
Basic.MainMenu.Edit.Transform.EditTransform="&Edit Transform..."
|
||||
Basic.MainMenu.Edit.Transform.EditTransform="&Edit Transform"
|
||||
Basic.MainMenu.Edit.Transform.CopyTransform="Copy Transform"
|
||||
Basic.MainMenu.Edit.Transform.PasteTransform="Paste Transform"
|
||||
Basic.MainMenu.Edit.Transform.ResetTransform="&Reset Transform"
|
||||
@@ -839,9 +840,11 @@ Basic.MainMenu.Docks="&Docks"
|
||||
Basic.MainMenu.Docks.ResetDocks="&Reset Docks"
|
||||
Basic.MainMenu.Docks.LockDocks="&Lock Docks"
|
||||
Basic.MainMenu.Docks.SideDocks="&Full-Height Docks"
|
||||
Basic.MainMenu.Docks.CustomBrowserDocks="&Custom Browser Docks..."
|
||||
Basic.MainMenu.Docks.CustomBrowserDocks="&Custom Browser Docks"
|
||||
|
||||
# basic mode profile/scene collection menus
|
||||
Basic.MainMenu.Import="Import..."
|
||||
Basic.MainMenu.Export="Export..."
|
||||
Basic.MainMenu.SceneCollection="&Scene Collection"
|
||||
Basic.MainMenu.Profile="&Profile"
|
||||
Basic.MainMenu.Profile.Import="Import Profile"
|
||||
|
||||
@@ -1622,7 +1622,7 @@
|
||||
<string>Add</string>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Basic.Main.AddSceneDlg.Title</string>
|
||||
<string>AddScene</string>
|
||||
</property>
|
||||
<property name="class" stdset="0">
|
||||
<string notr="true">icon-plus</string>
|
||||
@@ -2022,7 +2022,7 @@
|
||||
</action>
|
||||
<action name="actionImportSceneCollection">
|
||||
<property name="text">
|
||||
<string>Import</string>
|
||||
<string>Basic.MainMenu.Import</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionExportSceneCollection">
|
||||
@@ -2062,7 +2062,7 @@
|
||||
</action>
|
||||
<action name="actionImportProfile">
|
||||
<property name="text">
|
||||
<string>Import</string>
|
||||
<string>Basic.MainMenu.Import</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionExportProfile">
|
||||
|
||||
@@ -786,7 +786,7 @@ QMenu *OBSBasic::CreateAddSourcePopupMenu()
|
||||
bool foundDeprecated = false;
|
||||
size_t idx = 0;
|
||||
|
||||
QMenu *popup = new QMenu(QTStr("Add"), this);
|
||||
QMenu *popup = new QMenu(QTStr("AddSource"), this);
|
||||
QMenu *deprecated = new QMenu(QTStr("Deprecated"), popup);
|
||||
|
||||
auto getActionAfter = [](QMenu *menu, const QString &name) {
|
||||
|
||||
@@ -516,7 +516,7 @@ void OBSBasic::on_scenes_customContextMenuRequested(const QPoint &pos)
|
||||
QMenu popup(this);
|
||||
QMenu order(QTStr("Basic.MainMenu.Edit.Order"), this);
|
||||
|
||||
popup.addAction(QTStr("Add"), this, &OBSBasic::on_actionAddScene_triggered);
|
||||
popup.addAction(QTStr("AddScene") + "...", this, &OBSBasic::on_actionAddScene_triggered);
|
||||
|
||||
if (item) {
|
||||
QAction *copyFilters = new QAction(QTStr("Copy.Filters"), this);
|
||||
|
||||
Reference in New Issue
Block a user