mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
Michael's patch to change 'reference' to 'label' in xref dialogs (same as BRANCH_1_3_X)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9655 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
72d6ae2022
commit
4088deebe2
@ -1,3 +1,8 @@
|
||||
2005-02-18 Michael Schmitt <michael.schmitt@teststep.org>
|
||||
|
||||
* ui/QRefDialogBase.ui: substitute "reference" by "label"
|
||||
in messages
|
||||
|
||||
2005-02-10 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
|
||||
|
||||
* QRefDialog.C (refSelected): insert selected ref to
|
||||
|
@ -68,7 +68,7 @@
|
||||
</property>
|
||||
<property>
|
||||
<name>toolTip</name>
|
||||
<string>Update the reference list</string>
|
||||
<string>Update the label list</string>
|
||||
</property>
|
||||
</widget>
|
||||
<widget>
|
||||
@ -86,11 +86,11 @@
|
||||
</property>
|
||||
<property stdset="1">
|
||||
<name>text</name>
|
||||
<string>&Go to Reference</string>
|
||||
<string>&Go to Label</string>
|
||||
</property>
|
||||
<property>
|
||||
<name>toolTip</name>
|
||||
<string>Jump to the reference</string>
|
||||
<string>Jump to the label</string>
|
||||
</property>
|
||||
</widget>
|
||||
</hbox>
|
||||
@ -107,7 +107,7 @@
|
||||
</property>
|
||||
<property>
|
||||
<name>toolTip</name>
|
||||
<string>Sort references in alphabetical order</string>
|
||||
<string>Sort labels in alphabetical order</string>
|
||||
</property>
|
||||
</widget>
|
||||
<widget row="3" column="1" rowspan="1" colspan="2" >
|
||||
@ -179,7 +179,7 @@
|
||||
</property>
|
||||
<property stdset="1">
|
||||
<name>text</name>
|
||||
<string>&Reference:</string>
|
||||
<string>&Label:</string>
|
||||
</property>
|
||||
<property stdset="1">
|
||||
<name>alignment</name>
|
||||
@ -350,7 +350,7 @@
|
||||
</property>
|
||||
<property>
|
||||
<name>toolTip</name>
|
||||
<string>Available references</string>
|
||||
<string>Available labels</string>
|
||||
</property>
|
||||
</widget>
|
||||
<widget row="0" column="0" rowspan="1" colspan="2" >
|
||||
@ -361,7 +361,7 @@
|
||||
</property>
|
||||
<property stdset="1">
|
||||
<name>text</name>
|
||||
<string>R&eferences in:</string>
|
||||
<string>L&abels in:</string>
|
||||
</property>
|
||||
<property>
|
||||
<name>buddy</name>
|
||||
|
@ -1,3 +1,9 @@
|
||||
2005-02-18 Michael Schmitt <michael.schmitt@teststep>
|
||||
|
||||
* FormRef.C:
|
||||
* forms/form_ref.fd: substitute "reference" by "label"
|
||||
in text messages
|
||||
|
||||
2005-02-01 Angus Leeming <leeming@lyx.org>
|
||||
|
||||
* FormPreferences.C (feedback): use LyXRC::getDescription for
|
||||
|
@ -72,13 +72,13 @@ void FormRef::build()
|
||||
bcview().addReadOnly(dialog_->input_ref);
|
||||
|
||||
// set up the tooltips
|
||||
string str = _("Select a document for references.");
|
||||
string str = _("Select a document for labels.");
|
||||
tooltips().init(dialog_->choice_document, str);
|
||||
str = _("Sort the references alphabetically.");
|
||||
str = _("Sort the labels alphabetically.");
|
||||
tooltips().init(dialog_->check_sort, str);
|
||||
str = _("Go to selected reference.");
|
||||
str = _("Go to selected label.");
|
||||
tooltips().init(dialog_->button_go, str);
|
||||
str = _("Update the list of references.");
|
||||
str = _("Update the list of labels.");
|
||||
tooltips().init(dialog_->button_update, str);
|
||||
str = _("Select format style of the reference.");
|
||||
tooltips().init(dialog_->choice_format, str);
|
||||
@ -214,7 +214,7 @@ ButtonPolicy::SMInput FormRef::input(FL_OBJECT * ob, long)
|
||||
ButtonPolicy::SMInput activate(ButtonPolicy::SMI_VALID);
|
||||
|
||||
if (ob == dialog_->button_go) {
|
||||
// goto reference / go back
|
||||
// goto label / go back
|
||||
|
||||
// No change to data
|
||||
activate = ButtonPolicy::SMI_NOOP;
|
||||
@ -287,7 +287,7 @@ void FormRef::switch_go_button()
|
||||
tooltips().init(dialog_->button_go, _("Go back to original place.").c_str());
|
||||
} else {
|
||||
fl_set_object_label(dialog_->button_go, _("Go to").c_str());
|
||||
tooltips().init(dialog_->button_go, _("Go to selected reference.").c_str());
|
||||
tooltips().init(dialog_->button_go, _("Go to selected label.").c_str());
|
||||
}
|
||||
fl_set_button_shortcut(dialog_->button_go, "#G", 1);
|
||||
fl_show_object(dialog_->button_go);
|
||||
|
@ -204,7 +204,7 @@ alignment: FL_ALIGN_LEFT
|
||||
style: FL_NORMAL_STYLE
|
||||
size: FL_NORMAL_SIZE
|
||||
lcol: FL_BLACK
|
||||
label: Reference:|#e
|
||||
label: Label:|#e
|
||||
shortcut:
|
||||
resize: FL_RESIZE_X
|
||||
gravity: FL_South FL_South
|
||||
|
Loading…
Reference in New Issue
Block a user