mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 02:28:35 +00:00
Translate "Select Database" and "Select BibTeX-Style" in the BibTeX dialog.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4080 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
1a5a664e44
commit
1334cb16c8
@ -1,6 +1,7 @@
|
||||
2002-04-26 John Levon <moz@compsoc.man.ac.uk>
|
||||
|
||||
* FormMathsPanel.C: translate Close
|
||||
* FormGraphics.C: a little more translation
|
||||
|
||||
2002-04-22 Angus Leeming <a.leeming@ic.ac.uk>
|
||||
|
||||
|
@ -80,8 +80,8 @@ ButtonPolicy::SMInput FormBibtex::input(FL_OBJECT * ob, long)
|
||||
string const in_name = fl_get_input(dialog_->input_database);
|
||||
string out_name =
|
||||
controller().Browse("",
|
||||
"Select Database",
|
||||
"*.bib| BibTeX Databases (*.bib)");
|
||||
_("Select Database"),
|
||||
_("*.bib| BibTeX Databases (*.bib)"));
|
||||
if (!out_name.empty()) {
|
||||
// add the database to any existing ones
|
||||
if (!in_name.empty())
|
||||
@ -97,8 +97,8 @@ ButtonPolicy::SMInput FormBibtex::input(FL_OBJECT * ob, long)
|
||||
string const in_name = fl_get_input(dialog_->input_style);
|
||||
string out_name =
|
||||
controller().Browse(in_name,
|
||||
"Select BibTeX-Style",
|
||||
"*.bst| BibTeX Styles (*.bst)");
|
||||
_("Select BibTeX-Style"),
|
||||
_("*.bst| BibTeX Styles (*.bst)"));
|
||||
if (!out_name.empty()) {
|
||||
fl_freeze_form(form());
|
||||
fl_set_input(dialog_->input_style, out_name.c_str());
|
||||
|
Loading…
Reference in New Issue
Block a user