From e01652aab8d329a84fc664b43fcbf9c82941f428 Mon Sep 17 00:00:00 2001 From: Karl Heinz Kremer Date: Sun, 5 Oct 2003 12:20:03 +0000 Subject: [PATCH] Start two descriptions with capital characters. --- ChangeLog | 1 + backend/epson.c | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index a525c6847..e19c61816 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 diff --git a/backend/epson.c b/backend/epson.c index a010a674d..9c4f648d2 100644 --- a/backend/epson.c +++ b/backend/epson.c @@ -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);