periods on tooltips in xforms/. Sorry Rob.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6361 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
John Levon 2003-03-06 08:36:14 +00:00
parent 5d2bc94eed
commit 01ecde6ab8

View File

@ -41,9 +41,9 @@ void FormTabularCreate::build()
bc().setCancel(dialog_->button_close);
// set up the tooltips
string str = _("Number of columns in the tabular");
string str = _("Number of columns in the tabular.");
tooltips().init(dialog_->slider_columns, str);
str = _("Number of rows in the tabular");
str = _("Number of rows in the tabular.");
tooltips().init(dialog_->slider_rows, str);
}