mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
Change Doc Settings "Edit" PB to "Edit Externally"
"Edit" by itself is not clear if the user doesn't already know what it does. This affects both the local layout tab and the LaTeX preamble tab. Brief ML discussion here: https://www.mail-archive.com/search?l=mid&q=20221202193312.myfnuhuz6xcil6qt%40gary
This commit is contained in:
parent
b61e0fa372
commit
9f7bbeadda
@ -575,7 +575,7 @@ void PreambleModule::editExternal() {
|
||||
docstring const s = tempfilename.fileContents("UTF-8");
|
||||
preambleTE->document()->setPlainText(toqstr(s));
|
||||
tempfile_.reset();
|
||||
editPB->setText(qt_("&Edit"));
|
||||
editPB->setText(qt_("&Edit Externally"));
|
||||
changed();
|
||||
return;
|
||||
}
|
||||
@ -751,7 +751,7 @@ void LocalLayout::editExternal() {
|
||||
docstring const s = tempfilename.fileContents("UTF-8");
|
||||
locallayoutTE->document()->setPlainText(toqstr(s));
|
||||
tempfile_.reset();
|
||||
editPB->setText(qt_("&Edit"));
|
||||
editPB->setText(qt_("&Edit Externally"));
|
||||
changed();
|
||||
return;
|
||||
}
|
||||
|
@ -74,7 +74,7 @@
|
||||
<string>Editor for Latex (plain) format will be used</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>&Edit</string>
|
||||
<string>&Edit Externally</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
@ -45,7 +45,7 @@
|
||||
<string>Editor for Latex (plain) format will be used</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>&Edit</string>
|
||||
<string>&Edit Externally</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
Loading…
Reference in New Issue
Block a user