]> git.lyx.org Git - features.git/commitdiff
- white space
authorAbdelrazak Younes <younes@lyx.org>
Sat, 26 May 2007 14:53:12 +0000 (14:53 +0000)
committerAbdelrazak Younes <younes@lyx.org>
Sat, 26 May 2007 14:53:12 +0000 (14:53 +0000)
- replace an occurrence of from_ascii() to _() for translation

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18521 a592a061-630c-0410-9148-cb99ea01b6c8

src/insets/InsetListingsParams.cpp

index 7557cd02580b2c4dba1d4fc440f5ef14a96b17b5..5d10ac6e075f2f050fa9dcae374087f80bceb90d 100644 (file)
@@ -113,9 +113,16 @@ char const * allowed_languages =
        "[97]VRML\nXML\nXSLT";
 
 docstring empty_hint;
-docstring style_hint = _("Use \\footnotesize, \\small, \\itshape, \\ttfamily or something like that");
-docstring frame_hint = _("none, leftline, topline, bottomline, lines, single, shadowbox or subset of trblTRBL");
-docstring frameround_hint =    _("Enter four letters (either t = round or f = square) for top right, bottom right, bottom left and top left corner.");
+docstring style_hint = _("Use \\footnotesize, \\small, \\itshape, "
+                         "\\ttfamily or something like that");
+
+docstring frame_hint = _("none, leftline, topline, bottomline, lines, "
+                         "single, shadowbox or subset of trblTRBL");
+
+docstring frameround_hint = _("Enter four letters (either t = round "
+                              "or f = square) for top right, bottom "
+                              "right, bottom left and top left corner.");
+
 docstring color_hint = _("Enter something like \\color{white}");
 
 
@@ -132,7 +139,7 @@ listings_param_info const listings_param_table[] = {
        { "firstline", "", false, INTEGER, "", empty_hint},
        { "lastline", "", false, INTEGER, "", empty_hint},
        { "showlines", "", false, TRUEFALSE, "", empty_hint},
-       { "emptylines", "", false, ALL, "", from_ascii("Expect a number with an optional * before it") },
+       { "emptylines", "", false, ALL, "", _("Expect a number with an optional * before it")},
        { "gobble", "", false, INTEGER, "", empty_hint},
        { "style", "", false, ALL, "", empty_hint},
        { "language", "", false, ONEOF, allowed_languages, empty_hint},