kopia lustrzana https://gitlab.com/sane-project/backends
2001-04-27 Henning Meier-Geinitz <henning@meier-geinitz.de>
* backend/agfafogus.c: Moved PATH_MAX after sanei_backend.h include to avoid warning. Changed printf to DBG. * backend/mustek.c backend/mustek.CHANGES backend/mustek.desc: Added support for translating options. Used only PACKAGE_VERSION for output. Updated email address. New version: 1.0-107. * include/sane/sanei_backend.h include/sane/saneopts.h: Added macro SANE_I18N. It's used to mark strings that can be translated and used by a frontend. Usually these are option titles and descriptions as well as the contents of string lists. Used this macro to mark the translatable strings in saneopts.h. More translation support will follow.DEVEL_2_0_BRANCH-1
rodzic
c7366e2d3c
commit
852de5287f
|
@ -32,10 +32,6 @@
|
|||
#include <sys/types.h>
|
||||
#include <sys/wait.h>
|
||||
|
||||
#ifndef PATH_MAX
|
||||
# define PATH_MAX 1024
|
||||
#endif
|
||||
|
||||
#include "sane/sane.h"
|
||||
#include "sane/sanei.h"
|
||||
#include "sane/sanei_config.h"
|
||||
|
@ -46,6 +42,10 @@
|
|||
#define BACKEND_NAME agfafocus
|
||||
#include "sane/sanei_backend.h"
|
||||
|
||||
#ifndef PATH_MAX
|
||||
# define PATH_MAX 1024
|
||||
#endif
|
||||
|
||||
#define MM_PER_INCH 25.4
|
||||
|
||||
#undef Byte
|
||||
|
@ -1625,7 +1625,7 @@ sane_get_parameters (SANE_Handle handle, SANE_Parameters * params)
|
|||
|
||||
if (SANE_OPTION_IS_ACTIVE (s->opt[OPT_QUALITY].cap))
|
||||
{
|
||||
printf(" -------------- setting quality\n");
|
||||
DBG(3, " -------------- setting quality\n");
|
||||
quality = s->val[OPT_QUALITY].s;
|
||||
if (strcmp (quality, "Low") == 0 )
|
||||
s->quality = 255;
|
||||
|
@ -1641,7 +1641,7 @@ sane_get_parameters (SANE_Handle handle, SANE_Parameters * params)
|
|||
|
||||
if (SANE_OPTION_IS_ACTIVE (s->opt[OPT_SOURCE].cap))
|
||||
{
|
||||
printf(" -------------- setting source\n");
|
||||
DBG(3, " -------------- setting source\n");
|
||||
original = s->val[OPT_SOURCE].s;
|
||||
if (strcmp (original, "Transparency") == 0)
|
||||
s->original = 0;
|
||||
|
|
|
@ -1,5 +1,17 @@
|
|||
CHANGES for the SANE Mustek backend
|
||||
|
||||
2001-04-23
|
||||
* Add internationalization support (mark all strings that can be translated
|
||||
with SANE_I18N()).
|
||||
|
||||
2001-04-19
|
||||
* Don't check for macro VERSION any longer in sane_init. Print out
|
||||
PACKAGE_VERSION instead.
|
||||
* Update email address and homepage.
|
||||
|
||||
2001-08-08
|
||||
* Released Mustek backend 1.0-106
|
||||
|
||||
2001-04-08
|
||||
* Backend status is "stable" now. Hopefully this doesn't mean that new
|
||||
bugs show up now :-)
|
||||
|
@ -696,4 +708,4 @@ CHANGES for the SANE Mustek backend
|
|||
* bugfix for 600 II N waiting 60 s before cancelling
|
||||
|
||||
|
||||
Henning Meier-Geinitz <hmg@gmx.de>
|
||||
Henning Meier-Geinitz <henning@meier-geinitz.de>
|
||||
|
|
|
@ -9,10 +9,10 @@
|
|||
;
|
||||
|
||||
:backend "mustek" ; name of backend
|
||||
:version "1.0-106" ; version of backend
|
||||
:version "1.0-107" ; version of backend
|
||||
:status :stable ; :alpha, :beta, :stable, :new
|
||||
:manpage "sane-mustek" ; name of manpage (if it exists)
|
||||
:url "http://hmg.home.pages.de/sane/"
|
||||
:url "http://www.meier-geinitz.de/sane/"
|
||||
|
||||
:devicetype :scanner
|
||||
|
||||
|
|
|
@ -23,6 +23,10 @@
|
|||
#ifndef saneopts_h
|
||||
#define saneopts_h
|
||||
|
||||
#ifndef SANE_I18N
|
||||
#define SANE_I18N(text) text
|
||||
#endif
|
||||
|
||||
/* This _must_ be the first option (index 0): */
|
||||
#define SANE_NAME_NUM_OPTIONS "" /* never settable */
|
||||
#define SANE_NAME_PREVIEW "preview"
|
||||
|
@ -98,223 +102,261 @@
|
|||
#define SANE_NAME_SCAN_LAMP_DEN "scan-lamp-density"
|
||||
#define SANE_NAME_SELECT_LAMP_DENSITY "select-lamp-density"
|
||||
|
||||
#define SANE_TITLE_NUM_OPTIONS "Number of options"
|
||||
#define SANE_TITLE_PREVIEW "Preview"
|
||||
#define SANE_TITLE_GRAY_PREVIEW "Force monochrome preview"
|
||||
#define SANE_TITLE_BIT_DEPTH "Bit depth"
|
||||
#define SANE_TITLE_SCAN_MODE "Scan mode"
|
||||
#define SANE_TITLE_SCAN_SPEED "Scan speed"
|
||||
#define SANE_TITLE_SCAN_SOURCE "Scan source"
|
||||
#define SANE_TITLE_BACKTRACK "Force backtracking"
|
||||
#define SANE_TITLE_SCAN_TL_X "Top-left x"
|
||||
#define SANE_TITLE_SCAN_TL_Y "Top-left y"
|
||||
#define SANE_TITLE_SCAN_BR_X "Bottom-right x"
|
||||
#define SANE_TITLE_SCAN_BR_Y "Bottom-right y"
|
||||
#define SANE_TITLE_SCAN_RESOLUTION "Scan resolution"
|
||||
#define SANE_TITLE_SCAN_X_RESOLUTION "X-resolution"
|
||||
#define SANE_TITLE_SCAN_Y_RESOLUTION "Y-resolution"
|
||||
#define SANE_TITLE_CUSTOM_GAMMA "Use custom gamma table"
|
||||
#define SANE_TITLE_GAMMA_VECTOR "Image intensity"
|
||||
#define SANE_TITLE_GAMMA_VECTOR_R "Red intensity"
|
||||
#define SANE_TITLE_GAMMA_VECTOR_G "Green intensity"
|
||||
#define SANE_TITLE_GAMMA_VECTOR_B "Blue intensity"
|
||||
#define SANE_TITLE_BRIGHTNESS "Brightness"
|
||||
#define SANE_TITLE_CONTRAST "Contrast"
|
||||
#define SANE_TITLE_GRAIN_SIZE "Grain size"
|
||||
#define SANE_TITLE_HALFTONE "Halftoning"
|
||||
#define SANE_TITLE_BLACK_LEVEL "Black level"
|
||||
#define SANE_TITLE_WHITE_LEVEL "White level"
|
||||
#define SANE_TITLE_SHADOW "Shadow"
|
||||
#define SANE_TITLE_SHADOW_R "Shadow for red"
|
||||
#define SANE_TITLE_SHADOW_G "Shadow for green"
|
||||
#define SANE_TITLE_SHADOW_B "Shadow for blue"
|
||||
#define SANE_TITLE_HIGHLIGHT "Highlight"
|
||||
#define SANE_TITLE_HIGHLIGHT_R "Highlight for red"
|
||||
#define SANE_TITLE_HIGHLIGHT_G "Highlight for green"
|
||||
#define SANE_TITLE_HIGHLIGHT_B "Highlight for blue"
|
||||
#define SANE_TITLE_HUE "Hue"
|
||||
#define SANE_TITLE_SATURATION "Saturation"
|
||||
#define SANE_TITLE_FILE "Filename"
|
||||
#define SANE_TITLE_HALFTONE_DIMENSION "Halftone pattern size"
|
||||
#define SANE_TITLE_HALFTONE_PATTERN "Halftone pattern"
|
||||
#define SANE_TITLE_RESOLUTION_BIND "Bind X and Y resolution"
|
||||
#define SANE_TITLE_NEGATIVE "Negative"
|
||||
#define SANE_TITLE_QUALITY_CAL "Quality calibration"
|
||||
#define SANE_TITLE_DOR "Double Optical Resolution"
|
||||
#define SANE_TITLE_RGB_BIND "Bind RGB"
|
||||
#define SANE_TITLE_THRESHOLD "Threshold"
|
||||
#define SANE_TITLE_ANALOG_GAMMA "Analog gamma correction"
|
||||
#define SANE_TITLE_ANALOG_GAMMA_R "Analog gamma red"
|
||||
#define SANE_TITLE_ANALOG_GAMMA_G "Analog gamma green"
|
||||
#define SANE_TITLE_ANALOG_GAMMA_B "Analog gamma blue"
|
||||
#define SANE_TITLE_ANALOG_GAMMA_BIND "Bind analog gamma"
|
||||
#define SANE_TITLE_SMEAR "Smear"
|
||||
#define SANE_TITLE_TEN_BIT_MODE "10 bit-mode"
|
||||
#define SANE_TITLE_TWELVE_BIT_MODE "12 bit-mode"
|
||||
#define SANE_TITLE_WARMUP "Warmup lamp"
|
||||
#define SANE_TITLE_RGB_PREVIEW_PATCH "Preview patch"
|
||||
#define SANE_TITLE_START_SCAN_PATCH "Start-scan patch"
|
||||
#define SANE_TITLE_CAL_EXPOS_TIME "Cal. exposure-time"
|
||||
#define SANE_TITLE_CAL_EXPOS_TIME_R "Cal. exposure-time for red"
|
||||
#define SANE_TITLE_CAL_EXPOS_TIME_G "Cal. exposure-time for green"
|
||||
#define SANE_TITLE_CAL_EXPOS_TIME_B "Cal. exposure-time for blue"
|
||||
#define SANE_TITLE_SCAN_EXPOS_TIME "Scan exposure-time"
|
||||
#define SANE_TITLE_SCAN_EXPOS_TIME_R "Scan exposure-time for red"
|
||||
#define SANE_TITLE_SCAN_EXPOS_TIME_G "Scan exposure-time for green"
|
||||
#define SANE_TITLE_SCAN_EXPOS_TIME_B "Scan exposure-time for blue"
|
||||
#define SANE_TITLE_SELECT_EXPOSURE_TIME "Set exposure-time"
|
||||
#define SANE_TITLE_CAL_LAMP_DEN "Cal. lamp density"
|
||||
#define SANE_TITLE_SCAN_LAMP_DEN "Scan lamp density"
|
||||
#define SANE_TITLE_SELECT_LAMP_DENSITY "Set lamp density"
|
||||
#define SANE_TITLE_NUM_OPTIONS SANE_I18N("Number of options")
|
||||
#define SANE_TITLE_PREVIEW SANE_I18N("Preview")
|
||||
#define SANE_TITLE_GRAY_PREVIEW SANE_I18N("Force monochrome preview")
|
||||
#define SANE_TITLE_BIT_DEPTH SANE_I18N("Bit depth")
|
||||
#define SANE_TITLE_SCAN_MODE SANE_I18N("Scan mode")
|
||||
#define SANE_TITLE_SCAN_SPEED SANE_I18N("Scan speed")
|
||||
#define SANE_TITLE_SCAN_SOURCE SANE_I18N("Scan source")
|
||||
#define SANE_TITLE_BACKTRACK SANE_I18N("Force backtracking")
|
||||
#define SANE_TITLE_SCAN_TL_X SANE_I18N("Top-left x")
|
||||
#define SANE_TITLE_SCAN_TL_Y SANE_I18N("Top-left y")
|
||||
#define SANE_TITLE_SCAN_BR_X SANE_I18N("Bottom-right x")
|
||||
#define SANE_TITLE_SCAN_BR_Y SANE_I18N("Bottom-right y")
|
||||
#define SANE_TITLE_SCAN_RESOLUTION SANE_I18N("Scan resolution")
|
||||
#define SANE_TITLE_SCAN_X_RESOLUTION SANE_I18N("X-resolution")
|
||||
#define SANE_TITLE_SCAN_Y_RESOLUTION SANE_I18N("Y-resolution")
|
||||
#define SANE_TITLE_CUSTOM_GAMMA SANE_I18N("Use custom gamma table")
|
||||
#define SANE_TITLE_GAMMA_VECTOR SANE_I18N("Image intensity")
|
||||
#define SANE_TITLE_GAMMA_VECTOR_R SANE_I18N("Red intensity")
|
||||
#define SANE_TITLE_GAMMA_VECTOR_G SANE_I18N("Green intensity")
|
||||
#define SANE_TITLE_GAMMA_VECTOR_B SANE_I18N("Blue intensity")
|
||||
#define SANE_TITLE_BRIGHTNESS SANE_I18N("Brightness")
|
||||
#define SANE_TITLE_CONTRAST SANE_I18N("Contrast")
|
||||
#define SANE_TITLE_GRAIN_SIZE SANE_I18N("Grain size")
|
||||
#define SANE_TITLE_HALFTONE SANE_I18N("Halftoning")
|
||||
#define SANE_TITLE_BLACK_LEVEL SANE_I18N("Black level")
|
||||
#define SANE_TITLE_WHITE_LEVEL SANE_I18N("White level")
|
||||
#define SANE_TITLE_SHADOW SANE_I18N("Shadow")
|
||||
#define SANE_TITLE_SHADOW_R SANE_I18N("Shadow for red")
|
||||
#define SANE_TITLE_SHADOW_G SANE_I18N("Shadow for green")
|
||||
#define SANE_TITLE_SHADOW_B SANE_I18N("Shadow for blue")
|
||||
#define SANE_TITLE_HIGHLIGHT SANE_I18N("Highlight")
|
||||
#define SANE_TITLE_HIGHLIGHT_R SANE_I18N("Highlight for red")
|
||||
#define SANE_TITLE_HIGHLIGHT_G SANE_I18N("Highlight for green")
|
||||
#define SANE_TITLE_HIGHLIGHT_B SANE_I18N("Highlight for blue")
|
||||
#define SANE_TITLE_HUE SANE_I18N("Hue")
|
||||
#define SANE_TITLE_SATURATION SANE_I18N("Saturation")
|
||||
#define SANE_TITLE_FILE SANE_I18N("Filename")
|
||||
#define SANE_TITLE_HALFTONE_DIMENSION SANE_I18N("Halftone pattern size")
|
||||
#define SANE_TITLE_HALFTONE_PATTERN SANE_I18N("Halftone pattern")
|
||||
#define SANE_TITLE_RESOLUTION_BIND SANE_I18N("Bind X and Y resolution")
|
||||
#define SANE_TITLE_NEGATIVE SANE_I18N("Negative")
|
||||
#define SANE_TITLE_QUALITY_CAL SANE_I18N("Quality calibration")
|
||||
#define SANE_TITLE_DOR SANE_I18N("Double Optical Resolution")
|
||||
#define SANE_TITLE_RGB_BIND SANE_I18N("Bind RGB")
|
||||
#define SANE_TITLE_THRESHOLD SANE_I18N("Threshold")
|
||||
#define SANE_TITLE_ANALOG_GAMMA SANE_I18N("Analog gamma correction")
|
||||
#define SANE_TITLE_ANALOG_GAMMA_R SANE_I18N("Analog gamma red")
|
||||
#define SANE_TITLE_ANALOG_GAMMA_G SANE_I18N("Analog gamma green")
|
||||
#define SANE_TITLE_ANALOG_GAMMA_B SANE_I18N("Analog gamma blue")
|
||||
#define SANE_TITLE_ANALOG_GAMMA_BIND SANE_I18N("Bind analog gamma")
|
||||
#define SANE_TITLE_SMEAR SANE_I18N("Smear")
|
||||
#define SANE_TITLE_TEN_BIT_MODE SANE_I18N("10 bit-mode")
|
||||
#define SANE_TITLE_TWELVE_BIT_MODE SANE_I18N("12 bit-mode")
|
||||
#define SANE_TITLE_WARMUP SANE_I18N("Warmup lamp")
|
||||
#define SANE_TITLE_RGB_PREVIEW_PATCH SANE_I18N("Preview patch")
|
||||
#define SANE_TITLE_START_SCAN_PATCH SANE_I18N("Start-scan patch")
|
||||
#define SANE_TITLE_CAL_EXPOS_TIME SANE_I18N("Cal. exposure-time")
|
||||
#define SANE_TITLE_CAL_EXPOS_TIME_R SANE_I18N("Cal. exposure-time for red")
|
||||
#define SANE_TITLE_CAL_EXPOS_TIME_G SANE_I18N("Cal. exposure-time for " \
|
||||
"green")
|
||||
#define SANE_TITLE_CAL_EXPOS_TIME_B SANE_I18N("Cal. exposure-time for blue")
|
||||
#define SANE_TITLE_SCAN_EXPOS_TIME SANE_I18N("Scan exposure-time")
|
||||
#define SANE_TITLE_SCAN_EXPOS_TIME_R SANE_I18N("Scan exposure-time for red")
|
||||
#define SANE_TITLE_SCAN_EXPOS_TIME_G SANE_I18N("Scan exposure-time for " \
|
||||
"green")
|
||||
#define SANE_TITLE_SCAN_EXPOS_TIME_B SANE_I18N("Scan exposure-time for blue")
|
||||
#define SANE_TITLE_SELECT_EXPOSURE_TIME SANE_I18N("Set exposure-time")
|
||||
#define SANE_TITLE_CAL_LAMP_DEN SANE_I18N("Cal. lamp density")
|
||||
#define SANE_TITLE_SCAN_LAMP_DEN SANE_I18N("Scan lamp density")
|
||||
#define SANE_TITLE_SELECT_LAMP_DENSITY SANE_I18N("Set lamp density")
|
||||
|
||||
/* Descriptive/help strings for above options: */
|
||||
#define SANE_DESC_NUM_OPTIONS \
|
||||
"Read-only option that specifies how many options a specific devices " \
|
||||
"supports."
|
||||
SANE_I18N("Read-only option that specifies how many options a specific " \
|
||||
"devices supports.")
|
||||
|
||||
#define SANE_DESC_PREVIEW \
|
||||
"Request a preview-quality scan."
|
||||
SANE_I18N("Request a preview-quality scan.")
|
||||
|
||||
#define SANE_DESC_GRAY_PREVIEW \
|
||||
"Request that all previews are done in monochrome mode. On a three-pass " \
|
||||
" scanner this cuts down the number of passes to one and on a one-pass " \
|
||||
"scanner, it reduces the memory requirements and scan-time of the preview."
|
||||
SANE_I18N("Request that all previews are done in monochrome mode. On a " \
|
||||
"three-pass scanner this cuts down the number of passes to one and on a " \
|
||||
"one-pass scanner, it reduces the memory requirements and scan-time of the " \
|
||||
"preview.")
|
||||
|
||||
#define SANE_DESC_BIT_DEPTH \
|
||||
"Number of bits per sample, typical values are 1 for \"line-art\" and 8 " \
|
||||
"for multibit scans."
|
||||
SANE_I18N("Number of bits per sample, typical values are 1 for \"line-art\" " \
|
||||
"and 8 for multibit scans.")
|
||||
|
||||
#define SANE_DESC_SCAN_MODE \
|
||||
"Selects the scan mode (e.g., lineart,monochrome, or color)."
|
||||
SANE_I18N("Selects the scan mode (e.g., lineart,monochrome, or color).")
|
||||
|
||||
#define SANE_DESC_SCAN_SPEED \
|
||||
"Determines the speed at which the scan proceeds."
|
||||
SANE_I18N("Determines the speed at which the scan proceeds.")
|
||||
|
||||
#define SANE_DESC_SCAN_SOURCE \
|
||||
"Selects the scan source (such as a document-feeder)."
|
||||
SANE_I18N("Selects the scan source (such as a document-feeder).")
|
||||
|
||||
#define SANE_DESC_BACKTRACK \
|
||||
"Controls whether backtracking is forced."
|
||||
SANE_I18N("Controls whether backtracking is forced.")
|
||||
|
||||
#define SANE_DESC_SCAN_TL_X \
|
||||
"Top-left x position of scan area."
|
||||
SANE_I18N("Top-left x position of scan area.")
|
||||
|
||||
#define SANE_DESC_SCAN_TL_Y \
|
||||
"Top-left y position of scan area."
|
||||
SANE_I18N("Top-left y position of scan area.")
|
||||
|
||||
#define SANE_DESC_SCAN_BR_X \
|
||||
"Bottom-right x position of scan area."
|
||||
SANE_I18N("Bottom-right x position of scan area.")
|
||||
|
||||
#define SANE_DESC_SCAN_BR_Y \
|
||||
"Bottom-right y position of scan area."
|
||||
SANE_I18N("Bottom-right y position of scan area.")
|
||||
|
||||
#define SANE_DESC_SCAN_RESOLUTION \
|
||||
"Sets the resolution of the scanned image."
|
||||
SANE_I18N("Sets the resolution of the scanned image.")
|
||||
|
||||
#define SANE_DESC_SCAN_X_RESOLUTION \
|
||||
"Sets the horizontal resolution of the scanned image."
|
||||
SANE_I18N("Sets the horizontal resolution of the scanned image.")
|
||||
|
||||
#define SANE_DESC_SCAN_Y_RESOLUTION \
|
||||
"Sets the vertical resolution of the scanned image."
|
||||
SANE_I18N("Sets the vertical resolution of the scanned image.")
|
||||
|
||||
#define SANE_DESC_CUSTOM_GAMMA \
|
||||
"Determines whether a builtin or a custom gamma-table should be used."
|
||||
SANE_I18N("Determines whether a builtin or a custom gamma-table should be " \
|
||||
"used.")
|
||||
|
||||
#define SANE_DESC_GAMMA_VECTOR \
|
||||
"Gamma-correction table. In color mode this option equally affects the " \
|
||||
"red, green, and blue channels simultaneously (i.e., it is an intensity " \
|
||||
"gamma table)."
|
||||
SANE_I18N("Gamma-correction table. In color mode this option equally " \
|
||||
"affects the red, green, and blue channels simultaneously (i.e., it is an " \
|
||||
"intensity gamma table).")
|
||||
|
||||
#define SANE_DESC_GAMMA_VECTOR_R \
|
||||
"Gamma-correction table for the red band."
|
||||
SANE_I18N("Gamma-correction table for the red band.")
|
||||
|
||||
#define SANE_DESC_GAMMA_VECTOR_G \
|
||||
"Gamma-correction table for the green band."
|
||||
SANE_I18N("Gamma-correction table for the green band.")
|
||||
|
||||
#define SANE_DESC_GAMMA_VECTOR_B \
|
||||
"Gamma-correction table for the blue band."
|
||||
SANE_I18N("Gamma-correction table for the blue band.")
|
||||
|
||||
#define SANE_DESC_BRIGHTNESS \
|
||||
"Controls the brightness of the acquired image."
|
||||
SANE_I18N("Controls the brightness of the acquired image.")
|
||||
|
||||
#define SANE_DESC_CONTRAST \
|
||||
"Controls the contrast of the acquired image."
|
||||
SANE_I18N("Controls the contrast of the acquired image.")
|
||||
|
||||
#define SANE_DESC_GRAIN_SIZE \
|
||||
"Selects the \"graininess\" of the acquired image. Smaller values " \
|
||||
"result in sharper images."
|
||||
SANE_I18N("Selects the \"graininess\" of the acquired image. Smaller values " \
|
||||
"result in sharper images.")
|
||||
|
||||
#define SANE_DESC_HALFTONE \
|
||||
"Selects whether the acquired image should be halftoned (dithered)."
|
||||
SANE_I18N("Selects whether the acquired image should be halftoned (dithered).")
|
||||
|
||||
#define SANE_DESC_BLACK_LEVEL \
|
||||
"Selects what radiance level should be considered \"black\"."
|
||||
SANE_I18N("Selects what radiance level should be considered \"black\".")
|
||||
|
||||
#define SANE_DESC_WHITE_LEVEL \
|
||||
"Selects what radiance level should be considered \"white\"."
|
||||
SANE_I18N("Selects what radiance level should be considered \"white\".")
|
||||
|
||||
#define SANE_DESC_SHADOW \
|
||||
"Selects what radiance level should be considered \"black\"."
|
||||
SANE_I18N("Selects what radiance level should be considered \"black\".")
|
||||
#define SANE_DESC_SHADOW_R \
|
||||
"Selects what red radiance level should be considered \"black\"."
|
||||
SANE_I18N("Selects what red radiance level should be considered \"black\".")
|
||||
#define SANE_DESC_SHADOW_G \
|
||||
"Selects what green radiance level should be considered \"black\"."
|
||||
SANE_I18N("Selects what green radiance level should be considered \"black\".")
|
||||
#define SANE_DESC_SHADOW_B \
|
||||
"Selects what blue radiance level should be considered \"black\"."
|
||||
SANE_I18N("Selects what blue radiance level should be considered \"black\".")
|
||||
|
||||
#define SANE_DESC_HIGHLIGHT \
|
||||
"Selects what radiance level should be considered \"white\"."
|
||||
SANE_I18N("Selects what radiance level should be considered \"white\".")
|
||||
#define SANE_DESC_HIGHLIGHT_R \
|
||||
"Selects what red radiance level should be considered \"full red\"."
|
||||
SANE_I18N("Selects what red radiance level should be considered \"full red\".")
|
||||
#define SANE_DESC_HIGHLIGHT_G \
|
||||
"Selects what green radiance level should be considered \"full green\"."
|
||||
SANE_I18N("Selects what green radiance level should be considered \"full " \
|
||||
"green\".")
|
||||
#define SANE_DESC_HIGHLIGHT_B \
|
||||
"Selects what blue radiance level should be considered \"full blue\"."
|
||||
SANE_I18N("Selects what blue radiance level should be considered \"full " \
|
||||
"blue\".")
|
||||
|
||||
#define SANE_DESC_HUE \
|
||||
"Controls the \"hue\" (blue-level) of the acquired image."
|
||||
SANE_I18N("Controls the \"hue\" (blue-level) of the acquired image.")
|
||||
|
||||
#define SANE_DESC_SATURATION \
|
||||
"The saturation level controls the amount of \"blooming\" that occurs when " \
|
||||
"acquiring an image with a camera. Larger values cause more blooming."
|
||||
SANE_I18N("The saturation level controls the amount of \"blooming\" that " \
|
||||
"occurs when acquiring an image with a camera. Larger values cause more " \
|
||||
"blooming.")
|
||||
|
||||
#define SANE_DESC_FILE "The filename of the image to be loaded."
|
||||
#define SANE_DESC_FILE \
|
||||
SANE_I18N("The filename of the image to be loaded.")
|
||||
|
||||
#define SANE_DESC_HALFTONE_DIMENSION \
|
||||
"Sets the size of the halftoning (dithering) pattern used when scanning " \
|
||||
"halftoned images."
|
||||
SANE_I18N("Sets the size of the halftoning (dithering) pattern used when " \
|
||||
"scanning halftoned images.")
|
||||
|
||||
#define SANE_DESC_HALFTONE_PATTERN \
|
||||
"Defines the halftoning (dithering) pattern for scanning halftoned images."
|
||||
SANE_I18N("Defines the halftoning (dithering) pattern for scanning " \
|
||||
"halftoned images.")
|
||||
|
||||
#define SANE_DESC_RESOLUTION_BIND "Use same values for X and Y resolution"
|
||||
#define SANE_DESC_NEGATIVE "Swap black and white"
|
||||
#define SANE_DESC_QUALITY_CAL "Do a quality white-calibration"
|
||||
#define SANE_DESC_DOR "Use lens that doubles optical resolution"
|
||||
#define SANE_DESC_RGB_BIND "In RGB-mode use same values for each color"
|
||||
#define SANE_DESC_THRESHOLD "Select minimum-brightness to get a white point"
|
||||
#define SANE_DESC_ANALOG_GAMMA "Analog gamma-correction"
|
||||
#define SANE_DESC_ANALOG_GAMMA_R "Analog gamma-correction for red"
|
||||
#define SANE_DESC_ANALOG_GAMMA_G "Analog gamma-correction for green"
|
||||
#define SANE_DESC_ANALOG_GAMMA_B "Analog gamma-correction for blue"
|
||||
#define SANE_DESC_ANALOG_GAMMA_BIND "In RGB-mode use same values for each color"
|
||||
#define SANE_DESC_SMEAR "Don't care about image smearing problem"
|
||||
#define SANE_DESC_TEN_BIT_MODE "Output with 10 bits instead of 8 bits"
|
||||
#define SANE_DESC_TWELVE_BIT_MODE "Output with 12 bits instead of 8 bits"
|
||||
#define SANE_DESC_WARMUP "Warmup lamp before scanning"
|
||||
#define SANE_DESC_RGB_PREVIEW_PATCH "Set preview-bit in rgb-mode"
|
||||
#define SANE_DESC_START_SCAN_PATCH "Use special start-scan bits"
|
||||
#define SANE_DESC_CAL_EXPOS_TIME "Define exposure-time for calibration"
|
||||
#define SANE_DESC_CAL_EXPOS_TIME_R "Define exposure-time for red calibration"
|
||||
#define SANE_DESC_CAL_EXPOS_TIME_G "Define exposure-time for green calibration"
|
||||
#define SANE_DESC_CAL_EXPOS_TIME_B "Define exposure-time for blue calibration"
|
||||
#define SANE_DESC_SCAN_EXPOS_TIME "Define exposure-time for scan"
|
||||
#define SANE_DESC_SCAN_EXPOS_TIME_R "Define exposure-time for red scan"
|
||||
#define SANE_DESC_SCAN_EXPOS_TIME_G "Define exposure-time for green scan"
|
||||
#define SANE_DESC_SCAN_EXPOS_TIME_B "Define exposure-time for blue scan"
|
||||
#define SANE_DESC_SELECT_EXPOSURE_TIME "Enable selection of exposure-time"
|
||||
#define SANE_DESC_CAL_LAMP_DEN "Define lamp density for calibration"
|
||||
#define SANE_DESC_SCAN_LAMP_DEN "Define lamp density for scan"
|
||||
#define SANE_DESC_SELECT_LAMP_DENSITY "Enable selection of lamp density"
|
||||
#define SANE_DESC_RESOLUTION_BIND \
|
||||
SANE_I18N("Use same values for X and Y resolution")
|
||||
#define SANE_DESC_NEGATIVE \
|
||||
SANE_I18N("Swap black and white")
|
||||
#define SANE_DESC_QUALITY_CAL \
|
||||
SANE_I18N("Do a quality white-calibration")
|
||||
#define SANE_DESC_DOR \
|
||||
SANE_I18N("Use lens that doubles optical resolution")
|
||||
#define SANE_DESC_RGB_BIND \
|
||||
SANE_I18N("In RGB-mode use same values for each color")
|
||||
#define SANE_DESC_THRESHOLD \
|
||||
SANE_I18N("Select minimum-brightness to get a white point")
|
||||
#define SANE_DESC_ANALOG_GAMMA \
|
||||
SANE_I18N("Analog gamma-correction")
|
||||
#define SANE_DESC_ANALOG_GAMMA_R \
|
||||
SANE_I18N("Analog gamma-correction for red")
|
||||
#define SANE_DESC_ANALOG_GAMMA_G \
|
||||
SANE_I18N("Analog gamma-correction for green")
|
||||
#define SANE_DESC_ANALOG_GAMMA_B \
|
||||
SANE_I18N("Analog gamma-correction for blue")
|
||||
#define SANE_DESC_ANALOG_GAMMA_BIND \
|
||||
SANE_I18N("In RGB-mode use same values for each color")
|
||||
#define SANE_DESC_SMEAR \
|
||||
SANE_I18N("Don't care about image smearing problem")
|
||||
#define SANE_DESC_TEN_BIT_MODE \
|
||||
SANE_I18N("Output with 10 bits instead of 8 bits")
|
||||
#define SANE_DESC_TWELVE_BIT_MODE \
|
||||
SANE_I18N("Output with 12 bits instead of 8 bits")
|
||||
#define SANE_DESC_WARMUP \
|
||||
SANE_I18N("Warmup lamp before scanning")
|
||||
#define SANE_DESC_RGB_PREVIEW_PATCH \
|
||||
SANE_I18N("Set preview-bit in rgb-mode")
|
||||
#define SANE_DESC_START_SCAN_PATCH \
|
||||
SANE_I18N("Use special start-scan bits")
|
||||
#define SANE_DESC_CAL_EXPOS_TIME \
|
||||
SANE_I18N("Define exposure-time for calibration")
|
||||
#define SANE_DESC_CAL_EXPOS_TIME_R \
|
||||
SANE_I18N("Define exposure-time for red calibration")
|
||||
#define SANE_DESC_CAL_EXPOS_TIME_G \
|
||||
SANE_I18N("Define exposure-time for green calibration")
|
||||
#define SANE_DESC_CAL_EXPOS_TIME_B \
|
||||
SANE_I18N("Define exposure-time for blue calibration")
|
||||
#define SANE_DESC_SCAN_EXPOS_TIME \
|
||||
SANE_I18N("Define exposure-time for scan")
|
||||
#define SANE_DESC_SCAN_EXPOS_TIME_R \
|
||||
SANE_I18N("Define exposure-time for red scan")
|
||||
#define SANE_DESC_SCAN_EXPOS_TIME_G \
|
||||
SANE_I18N("Define exposure-time for green scan")
|
||||
#define SANE_DESC_SCAN_EXPOS_TIME_B \
|
||||
SANE_I18N("Define exposure-time for blue scan")
|
||||
#define SANE_DESC_SELECT_EXPOSURE_TIME \
|
||||
SANE_I18N("Enable selection of exposure-time")
|
||||
#define SANE_DESC_CAL_LAMP_DEN \
|
||||
SANE_I18N("Define lamp density for calibration")
|
||||
#define SANE_DESC_SCAN_LAMP_DEN \
|
||||
SANE_I18N("Define lamp density for scan")
|
||||
#define SANE_DESC_SELECT_LAMP_DENSITY \
|
||||
SANE_I18N("Enable selection of lamp density")
|
||||
|
||||
#endif /* saneopts_h */
|
||||
|
|
Ładowanie…
Reference in New Issue