mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-23 13:31:49 +00:00
fix font size names
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6057 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
e67711becd
commit
666e7059c4
@ -1,3 +1,8 @@
|
|||||||
|
2003-01-31 Michael Schmitt <michael.schmitt@teststep.org>
|
||||||
|
|
||||||
|
* ui/BulletsModuleBase.ui: Replace LaTeX font size names by LyX
|
||||||
|
names for consistency reasons and to resolve a translation conflict
|
||||||
|
|
||||||
2003-02-05 John Levon <levon@movementarian.org>
|
2003-02-05 John Levon <levon@movementarian.org>
|
||||||
|
|
||||||
* QLPrintDialog.C: fix braindead "helpful" code
|
* QLPrintDialog.C: fix braindead "helpful" code
|
||||||
|
@ -254,37 +254,31 @@
|
|||||||
<item>
|
<item>
|
||||||
<property>
|
<property>
|
||||||
<name>text</name>
|
<name>text</name>
|
||||||
<string>tiny</string>
|
<string>Tiny</string>
|
||||||
</property>
|
</property>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<property>
|
<property>
|
||||||
<name>text</name>
|
<name>text</name>
|
||||||
<string>script</string>
|
<string>Smallest</string>
|
||||||
</property>
|
</property>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<property>
|
<property>
|
||||||
<name>text</name>
|
<name>text</name>
|
||||||
<string>footnote</string>
|
<string>Smaller</string>
|
||||||
</property>
|
</property>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<property>
|
<property>
|
||||||
<name>text</name>
|
<name>text</name>
|
||||||
<string>small</string>
|
<string>Small</string>
|
||||||
</property>
|
</property>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<property>
|
<property>
|
||||||
<name>text</name>
|
<name>text</name>
|
||||||
<string>normal</string>
|
<string>Normal</string>
|
||||||
</property>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<property>
|
|
||||||
<name>text</name>
|
|
||||||
<string>large</string>
|
|
||||||
</property>
|
</property>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
@ -296,13 +290,13 @@
|
|||||||
<item>
|
<item>
|
||||||
<property>
|
<property>
|
||||||
<name>text</name>
|
<name>text</name>
|
||||||
<string>LARGE</string>
|
<string>Larger</string>
|
||||||
</property>
|
</property>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<property>
|
<property>
|
||||||
<name>text</name>
|
<name>text</name>
|
||||||
<string>huge</string>
|
<string>Largest</string>
|
||||||
</property>
|
</property>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
@ -311,6 +305,12 @@
|
|||||||
<string>Huge</string>
|
<string>Huge</string>
|
||||||
</property>
|
</property>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<property>
|
||||||
|
<name>text</name>
|
||||||
|
<string>Huger</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
<property stdset="1">
|
<property stdset="1">
|
||||||
<name>name</name>
|
<name>name</name>
|
||||||
<cstring>bulletsizeCO</cstring>
|
<cstring>bulletsizeCO</cstring>
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
2003-01-31 Michael Schmitt <michael.schmitt@teststep.org>
|
||||||
|
|
||||||
|
* FormDocument.C:
|
||||||
|
* FormPreferences.C: Replace LaTeX font size names by LyX
|
||||||
|
names for consistency reasons and to resolve a translation conflict
|
||||||
|
|
||||||
2003-02-02 Angus Leeming <leeming@lyx.org>
|
2003-02-02 Angus Leeming <leeming@lyx.org>
|
||||||
|
|
||||||
* FormGraphics.C: Fix off by one error in update/apply of rotation
|
* FormGraphics.C: Fix off by one error in update/apply of rotation
|
||||||
|
@ -326,8 +326,8 @@ void FormDocument::build()
|
|||||||
fl_set_input_return(bullets_->input_bullet_latex, FL_RETURN_CHANGED);
|
fl_set_input_return(bullets_->input_bullet_latex, FL_RETURN_CHANGED);
|
||||||
|
|
||||||
fl_addto_choice(bullets_->choice_bullet_size,
|
fl_addto_choice(bullets_->choice_bullet_size,
|
||||||
_(" default | tiny | script | footnote | small |"
|
_(" Default | Tiny | Smallest | Smaller | Small |"
|
||||||
" normal | large | Large | LARGE | huge | Huge"));
|
" Normal | Large | Larger | Largest | Huge | Huger "));
|
||||||
fl_set_choice(bullets_->choice_bullet_size, 1);
|
fl_set_choice(bullets_->choice_bullet_size, 1);
|
||||||
|
|
||||||
fl_set_input_maxchars(bullets_->input_bullet_latex, 80);
|
fl_set_input_maxchars(bullets_->input_bullet_latex, 80);
|
||||||
|
@ -2693,7 +2693,7 @@ bool FormPreferences::ScreenFonts::input()
|
|||||||
strToDbl(fl_get_input(dialog_->input_huger))) {
|
strToDbl(fl_get_input(dialog_->input_huger))) {
|
||||||
activate = false;
|
activate = false;
|
||||||
|
|
||||||
str = _("Fonts must be input in the order tiny > script> footnote > small > normal > large > larger > largest > huge > huger.");
|
str = _("Fonts must be input in the order Tiny > Smallest > Smaller > Small > Normal > Large > Larger > Largest > Huge > Huger.");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!activate)
|
if (!activate)
|
||||||
|
Loading…
Reference in New Issue
Block a user