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.
merge-requests/1/head
Karl Heinz Kremer 2003-10-05 12:03:09 +00:00
rodzic 23b9e8c3a5
commit b8198665c4
3 zmienionych plików z 10 dodań i 4 usunięć

Wyświetl plik

@ -1,3 +1,9 @@
2003-10-04 Karl Heinz Kremer <khk@khk.net>
* 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.
2003-10-04 Henning Meier-Geinitz <henning@meier-geinitz.de>
* AUTHORS configure configure.in backend/Makefile.in backend/dll.conf

Wyświetl plik

@ -3046,9 +3046,9 @@ static SANE_Status init_options ( Epson_Scanner * s) {
/* speed */
s->opt[ OPT_SPEED].name = "speed";
s->opt[ OPT_SPEED].title = SANE_I18N("Speed");
s->opt[ OPT_SPEED].desc = "";
s->opt[ OPT_SPEED].name = SANE_NAME_SCAN_SPEED;
s->opt[ OPT_SPEED].title = SANE_TITLE_SCAN_SPEED;
s->opt[ OPT_SPEED].desc = SANE_DESC_SCAN_SPEED;
s->opt[ OPT_SPEED].type = SANE_TYPE_BOOL;
s->val[ OPT_SPEED].w = SANE_FALSE;

Wyświetl plik

@ -66,7 +66,7 @@
#define SANE_NAME_GAMMA_CORRECTION "gamma-correction"
#define SANE_TITLE_GAMMA_CORRECTION SANE_I18N("Gamma Correction")
#define SANE_DESC_GAMMA_CORRECTION SANE_I18N("Selectes the gamma correction value from a list of pre-defined devices or the user defined table, which can be downloaded to the scanner")
#define SANE_DESC_GAMMA_CORRECTION SANE_I18N("Selects the gamma correction value from a list of pre-defined devices or the user defined table, which can be downloaded to the scanner")
#define SANE_EPSON_FOCUS_NAME "focus-position"
#define SANE_EPSON_FOCUS_TITLE SANE_I18N("Focus Position")