Start two descriptions with capital characters.

merge-requests/1/head
Karl Heinz Kremer 2003-10-05 12:20:03 +00:00
rodzic 55bbb685ac
commit e01652aab8
2 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -3,6 +3,7 @@
* backend/epson.[ch]: Fixed bug 300246 - Use SANE_TITLE_SCAN_SPEED
(and DESC and NAME) from saneopts.h instead of my own strings.
Fixed typo in gamma correction description.
Start two descriptions with a capital character.
2003-10-04 Henning Meier-Geinitz <henning@meier-geinitz.de>

Wyświetl plik

@ -741,7 +741,7 @@ static const SANE_String_Const qf_list [ ] =
, SANE_I18N("A5 landscape")
, SANE_I18N("Letter")
, SANE_I18N("A4")
, SANE_I18N("max")
, SANE_I18N("Max")
, NULL
};
@ -3292,7 +3292,7 @@ static SANE_Status init_options ( Epson_Scanner * s) {
/* select bay */
s->opt[ OPT_BAY].name = "bay";
s->opt[ OPT_BAY].title = SANE_I18N("Bay");
s->opt[ OPT_BAY].desc = SANE_I18N("select bay to scan");
s->opt[ OPT_BAY].desc = SANE_I18N("Select bay to scan");
s->opt[ OPT_BAY].type = SANE_TYPE_STRING;
s->opt[ OPT_BAY].size = max_string_size(bay_list);