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:
Jean-Marc Lasgouttes 2005-02-21 10:30:11 +00:00
parent 72d6ae2022
commit 4088deebe2
6 changed files with 401 additions and 557 deletions

835
po/de.po

File diff suppressed because it is too large Load Diff

View File

@ -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> 2005-02-10 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* QRefDialog.C (refSelected): insert selected ref to * QRefDialog.C (refSelected): insert selected ref to

View File

@ -68,7 +68,7 @@
</property> </property>
<property> <property>
<name>toolTip</name> <name>toolTip</name>
<string>Update the reference list</string> <string>Update the label list</string>
</property> </property>
</widget> </widget>
<widget> <widget>
@ -86,11 +86,11 @@
</property> </property>
<property stdset="1"> <property stdset="1">
<name>text</name> <name>text</name>
<string>&amp;Go to Reference</string> <string>&amp;Go to Label</string>
</property> </property>
<property> <property>
<name>toolTip</name> <name>toolTip</name>
<string>Jump to the reference</string> <string>Jump to the label</string>
</property> </property>
</widget> </widget>
</hbox> </hbox>
@ -107,7 +107,7 @@
</property> </property>
<property> <property>
<name>toolTip</name> <name>toolTip</name>
<string>Sort references in alphabetical order</string> <string>Sort labels in alphabetical order</string>
</property> </property>
</widget> </widget>
<widget row="3" column="1" rowspan="1" colspan="2" > <widget row="3" column="1" rowspan="1" colspan="2" >
@ -179,7 +179,7 @@
</property> </property>
<property stdset="1"> <property stdset="1">
<name>text</name> <name>text</name>
<string>&amp;Reference:</string> <string>&amp;Label:</string>
</property> </property>
<property stdset="1"> <property stdset="1">
<name>alignment</name> <name>alignment</name>
@ -350,7 +350,7 @@
</property> </property>
<property> <property>
<name>toolTip</name> <name>toolTip</name>
<string>Available references</string> <string>Available labels</string>
</property> </property>
</widget> </widget>
<widget row="0" column="0" rowspan="1" colspan="2" > <widget row="0" column="0" rowspan="1" colspan="2" >
@ -361,7 +361,7 @@
</property> </property>
<property stdset="1"> <property stdset="1">
<name>text</name> <name>text</name>
<string>R&amp;eferences in:</string> <string>L&amp;abels in:</string>
</property> </property>
<property> <property>
<name>buddy</name> <name>buddy</name>

View File

@ -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> 2005-02-01 Angus Leeming <leeming@lyx.org>
* FormPreferences.C (feedback): use LyXRC::getDescription for * FormPreferences.C (feedback): use LyXRC::getDescription for

View File

@ -72,13 +72,13 @@ void FormRef::build()
bcview().addReadOnly(dialog_->input_ref); bcview().addReadOnly(dialog_->input_ref);
// set up the tooltips // set up the tooltips
string str = _("Select a document for references."); string str = _("Select a document for labels.");
tooltips().init(dialog_->choice_document, str); tooltips().init(dialog_->choice_document, str);
str = _("Sort the references alphabetically."); str = _("Sort the labels alphabetically.");
tooltips().init(dialog_->check_sort, str); tooltips().init(dialog_->check_sort, str);
str = _("Go to selected reference."); str = _("Go to selected label.");
tooltips().init(dialog_->button_go, str); tooltips().init(dialog_->button_go, str);
str = _("Update the list of references."); str = _("Update the list of labels.");
tooltips().init(dialog_->button_update, str); tooltips().init(dialog_->button_update, str);
str = _("Select format style of the reference."); str = _("Select format style of the reference.");
tooltips().init(dialog_->choice_format, str); tooltips().init(dialog_->choice_format, str);
@ -214,7 +214,7 @@ ButtonPolicy::SMInput FormRef::input(FL_OBJECT * ob, long)
ButtonPolicy::SMInput activate(ButtonPolicy::SMI_VALID); ButtonPolicy::SMInput activate(ButtonPolicy::SMI_VALID);
if (ob == dialog_->button_go) { if (ob == dialog_->button_go) {
// goto reference / go back // goto label / go back
// No change to data // No change to data
activate = ButtonPolicy::SMI_NOOP; 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()); tooltips().init(dialog_->button_go, _("Go back to original place.").c_str());
} else { } else {
fl_set_object_label(dialog_->button_go, _("Go to").c_str()); 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_set_button_shortcut(dialog_->button_go, "#G", 1);
fl_show_object(dialog_->button_go); fl_show_object(dialog_->button_go);

View File

@ -204,7 +204,7 @@ alignment: FL_ALIGN_LEFT
style: FL_NORMAL_STYLE style: FL_NORMAL_STYLE
size: FL_NORMAL_SIZE size: FL_NORMAL_SIZE
lcol: FL_BLACK lcol: FL_BLACK
label: Reference:|#e label: Label:|#e
shortcut: shortcut:
resize: FL_RESIZE_X resize: FL_RESIZE_X
gravity: FL_South FL_South gravity: FL_South FL_South