Correction of some spelling/grammatical errors in source code

merge-requests/1/head
Mark Buda 2014-03-02 19:20:55 +01:00 zatwierdzone przez m. allan noah
rodzic 20fbf1dc94
commit c591d2b7da
32 zmienionych plików z 57 dodań i 57 usunięć

Wyświetl plik

@ -1455,7 +1455,7 @@ sane_cancel (SANE_Handle handle)
if (s->AbortedByUser)
{
DBG (FLOW_CONTROL, "sane_cancel: Scan has not been initiated yet."
"we probably recieved a signal while writing data.\n");
"we probably received a signal while writing data.\n");
s->AbortedByUser = SANE_FALSE;
}
else

Wyświetl plik

@ -1596,7 +1596,7 @@ init_options (Apple_Scanner * s)
s->opt[OPT_WAIT].title = "Wait";
s->opt[OPT_WAIT].desc = "You may issue the scan command but the actual "
"scan will not start unless you press the button in the front of the "
"scanner. It is usefull feature when you want to make a network scan (?) "
"scanner. It is a useful feature when you want to make a network scan (?) "
"In the mean time you may halt your computer waiting for the SCSI bus "
"to be free. If this happens just press the scanner button.";
s->opt[OPT_WAIT].type = SANE_TYPE_BOOL;

Wyświetl plik

@ -607,7 +607,7 @@ sense_handler (int fd, u_char * sense, void *arg)
return SANE_STATUS_IO_ERROR;
}
default:
DBG (2, "sense: Unkown Error Code Qualifier (%02x)\n", sense[0]);
DBG (2, "sense: Unknown Error Code Qualifier (%02x)\n", sense[0]);
return SANE_STATUS_IO_ERROR;
}

Wyświetl plik

@ -179,7 +179,7 @@ request_sense_parse (unsigned char *sensed_data)
case 0x2:
if ((0x4 == asc) && (0x1 == ascq)) {
DBG (10, "\t%d/%d/%d: Logical unit is in process of becomming ready\n",
DBG (10, "\t%d/%d/%d: Logical unit is in process of becoming ready\n",
sense, asc, ascq);
ret = SANE_STATUS_DEVICE_BUSY;
}

Wyświetl plik

@ -597,7 +597,7 @@ dbg_tiff_save (char *sFile, SANE_Int width, SANE_Int height, SANE_Int depth,
}
else
DBG (DBG_ERR,
"- dbg_tiff_save: Enviroment HOME variable does not exist\n");
"- dbg_tiff_save: Environment HOME variable does not exist\n");
}
#else
/* silent gcc */

Wyświetl plik

@ -1405,7 +1405,7 @@ options_init (TScanner * scanner)
pDesc->title = SANE_I18N ("Scanner model");
pDesc->desc =
SANE_I18N
("Allows to test device behaviour with other supported models");
("Allows one to test device behaviour with other supported models");
pDesc->type = SANE_TYPE_STRING;
pDesc->size = max_string_size (scanner->list_models);
pDesc->constraint_type = SANE_CONSTRAINT_STRING_LIST;

Wyświetl plik

@ -1660,7 +1660,7 @@ ccd300_open (SANE_String port, SANE_Int caps, SANE_Int * fd)
if (caps & ~(CAP_NOTHING | CAP_INVERT | CAP_LAMP_OFF))
{
DBG (1, "ccd300_open: called with unknonw capabilities (%#02x)\n",
DBG (1, "ccd300_open: called with unknown capabilities (%#02x)\n",
caps);
return SANE_STATUS_INVAL;
}
@ -1816,7 +1816,7 @@ ccd300_config (SANE_Handle handle, SANE_String_Const optname,
}
else
{
DBG (1, "ccd300_config: unkown option ``%s''", optname);
DBG (1, "ccd300_config: unknown option ``%s''", optname);
return SANE_STATUS_INVAL;
}

Wyświetl plik

@ -592,7 +592,7 @@ static void
set_cmd_from_string (char* protocol_string, struct BJNP_command *cmd, char cmd_code, int payload_len)
{
/*
* Set command buffer with command code, session_id and lenght of payload
* Set command buffer with command code, session_id and length of payload
* Returns: sequence number of command
*/
@ -611,7 +611,7 @@ static void
set_cmd_for_dev (int devno, struct BJNP_command *cmd, char cmd_code, int payload_len)
{
/*
* Set command buffer with command code, session_id and lenght of payload
* Set command buffer with command code, session_id and length of payload
* Returns: sequence number of command
* If devno < 0, then use devno as negativ index into bjnp_protocol_defs
*/
@ -790,7 +790,7 @@ get_scanner_id (const int dev_no, char *model)
strncpy(scanner_id, id->payload.mfnp.id, id_len);
scanner_id[id_len] = '\0';
}
PDBG (bjnp_dbg (LOG_INFO, "get_scanner_id: Scanner identity string = %s - lenght = %d\n", scanner_id, id_len));
PDBG (bjnp_dbg (LOG_INFO, "get_scanner_id: Scanner identity string = %s - length = %d\n", scanner_id, id_len));
/* get make&model from IEEE1284 id */

Wyświetl plik

@ -267,7 +267,7 @@ static SANE_Option_Descriptor sod[] = {
SANE_I18N ("Hand-Scanner Simulation"),
SANE_I18N ("Simulate a hand-scanner. Hand-scanners often do not know the "
"image height a priori. Instead, they return a height of -1. "
"Setting this option allows to test whether a frontend can "
"Setting this option allows one to test whether a frontend can "
"handle this correctly."),
SANE_TYPE_BOOL,
SANE_UNIT_NONE,

Wyświetl plik

@ -348,7 +348,7 @@ init_options (Test_Device * test_device)
od->title = SANE_I18N ("Hand-scanner simulation");
od->desc = SANE_I18N ("Simulate a hand-scanner. Hand-scanners do not "
"know the image height a priori. Instead, they "
"return a height of -1. Setting this option allows "
"return a height of -1. Setting this option allows one "
"to test whether a frontend can handle this "
"correctly. This option also enables a fixed width "
"of 11 cm.");

Wyświetl plik

@ -1035,7 +1035,7 @@ static SANE_Status sense_handler(int scsi_fd, unsigned char *result, void *arg)
if (asc == 0x00)
{
DBG(DBG_sense, "-> button protocoll\n");
DBG(DBG_sense, "-> button protocol\n");
if (ascq & 1)
{
dev->button0_pressed = 1;

Wyświetl plik

@ -10898,7 +10898,7 @@ sanei_umax_pp_scan (int x, int y, int width, int height, int dpi, int color,
/* scan time are high enough to forget about usec */
elapsed = tf.tv_sec - td.tv_sec;
DBG (8, "%ld bytes transfered in %f seconds ( %.2f Kb/s)\n", somme,
DBG (8, "%ld bytes transferred in %f seconds ( %.2f Kb/s)\n", somme,
elapsed, (somme / elapsed) / 1024.0);
#endif

Wyświetl plik

@ -250,7 +250,7 @@ auth_callback (SANE_String_Const resource,
md5mode = 1;
len = (strstr (resource, "$MD5$") - resource);
if (query_user == 1)
fprintf (stderr, "Authentification required for resource %*.*s. "
fprintf (stderr, "Authentication required for resource %*.*s. "
"Enter username: ", len, len, resource);
}
else
@ -270,7 +270,7 @@ auth_callback (SANE_String_Const resource,
if (query_user == 1)
fprintf (stderr,
"Authentification required for resource %s. Enter username: ",
"Authentication required for resource %s. Enter username: ",
resource);
}

Wyświetl plik

@ -4596,7 +4596,7 @@ msgstr "Симулация на ръчен скенер"
msgid ""
"Simulate a hand-scanner. Hand-scanners often do not know the image "
"height a priori. Instead, they return a height of -1. Setting this "
"option allows to test whether a frontend can handle this correctly."
"option allows one to test whether a frontend can handle this correctly."
msgstr ""
"Симулира ръчен скенер. Ръчните скенери често не знаят височината на "
"образа а приори. Вместо това, те връщат стойност от -1. Пускането на "
@ -4938,7 +4938,7 @@ msgstr "Симулация на ръчен скенер"
msgid ""
"Simulate a hand-scanner. Hand-scanners do not know the image height a "
"priori. Instead, they return a height of -1. Setting this option "
"allows to test whether a frontend can handle this correctly. This "
"allows one to test whether a frontend can handle this correctly. This "
"option also enables a fixed width of 11 cm."
msgstr ""
"Симулира ръчен скенер. Ръчните скенери не знаят височината на "

Wyświetl plik

@ -4584,7 +4584,7 @@ msgstr "Simulace ručního skeneru"
msgid ""
"Simulate a hand-scanner. Hand-scanners often do not know the image "
"height a priori. Instead, they return a height of -1. Setting this "
"option allows to test whether a frontend can handle this correctly."
"option allows one to test whether a frontend can handle this correctly."
msgstr ""
"Simuluje ruční skener. Ruční skenery obvykle neznají výšku obrázku "
"předem. Proto vracejí výšku 1. Tato volba umožnuje otestovat, jestli se "
@ -4925,7 +4925,7 @@ msgstr "Simulace ručního skeneru"
msgid ""
"Simulate a hand-scanner. Hand-scanners do not know the image height a "
"priori. Instead, they return a height of -1. Setting this option "
"allows to test whether a frontend can handle this correctly. This "
"allows one to test whether a frontend can handle this correctly. This "
"option also enables a fixed width of 11 cm."
msgstr ""
"Simuluje ruční skener. Ruční skenery obvykle neznají výšku obrázku "

Wyświetl plik

@ -4604,7 +4604,7 @@ msgstr "Håndskanner simulering"
msgid ""
"Simulate a hand-scanner. Hand-scanners often do not know the image "
"height a priori. Instead, they return a height of -1. Setting this "
"option allows to test whether a frontend can handle this correctly."
"option allows one to test whether a frontend can handle this correctly."
msgstr ""
"Simulerer en håndskanner. Oftest kender en håndskanner ikke billedhøjden "
"i forvejen. I stedet for returnerer de en højde på -1. Sættes denne "
@ -4944,7 +4944,7 @@ msgstr "Håndskanner simulering"
msgid ""
"Simulate a hand-scanner. Hand-scanners do not know the image height a "
"priori. Instead, they return a height of -1. Setting this option "
"allows to test whether a frontend can handle this correctly. This "
"allows one to test whether a frontend can handle this correctly. This "
"option also enables a fixed width of 11 cm."
msgstr ""
"Simulerer en håndskanner. Håndskannere kender ikke forud billedhøjden. I "

Wyświetl plik

@ -4758,7 +4758,7 @@ msgstr "Handscanner Simulation"
msgid ""
"Simulate a hand-scanner. Hand-scanners often do not know the image "
"height a priori. Instead, they return a height of -1. Setting this "
"option allows to test whether a frontend can handle this correctly."
"option allows one to test whether a frontend can handle this correctly."
msgstr ""
"Simuliere einen Handscanner. Bei Handscannern steht meistens die "
"Bildhöhe nicht von vornherein fest. Stattdessen geben sie eine Höhe von "
@ -5148,7 +5148,7 @@ msgstr "Handscanner-Simulation"
msgid ""
"Simulate a hand-scanner. Hand-scanners do not know the image height a "
"priori. Instead, they return a height of -1. Setting this option "
"allows to test whether a frontend can handle this correctly. This "
"allows one to test whether a frontend can handle this correctly. This "
"option also enables a fixed width of 11 cm."
msgstr ""
"Simuliere einen Handscanner. Bei Handscannern steht meistens die "

Wyświetl plik

@ -4611,11 +4611,11 @@ msgstr "Hand-Scanner Simulation"
msgid ""
"Simulate a hand-scanner. Hand-scanners often do not know the image "
"height a priori. Instead, they return a height of -1. Setting this "
"option allows to test whether a frontend can handle this correctly."
"option allows one to test whether a frontend can handle this correctly."
msgstr ""
"Simulate a hand-scanner. Hand-scanners often do not know the image "
"height a priori. Instead, they return a height of -1. Setting this "
"option allows to test whether a frontend can handle this correctly."
"option allows one to test whether a frontend can handle this correctly."
#: ../backend/pnm.c:283
#, no-c-format
@ -4952,12 +4952,12 @@ msgstr "Hand-scanner simulation"
msgid ""
"Simulate a hand-scanner. Hand-scanners do not know the image height a "
"priori. Instead, they return a height of -1. Setting this option "
"allows to test whether a frontend can handle this correctly. This "
"allows one to test whether a frontend can handle this correctly. This "
"option also enables a fixed width of 11 cm."
msgstr ""
"Simulate a hand-scanner. Hand-scanners do not know the image height a "
"priori. Instead, they return a height of -1. Setting this option "
"allows to test whether a frontend can handle this correctly. This "
"allows one to test whether a frontend can handle this correctly. This "
"option also enables a fixed width of 11 cm."
#: ../backend/test.c:366

Wyświetl plik

@ -4635,7 +4635,7 @@ msgstr "Simulado de mana skanilo"
msgid ""
"Simulate a hand-scanner. Hand-scanners often do not know the image "
"height a priori. Instead, they return a height of -1. Setting this "
"option allows to test whether a frontend can handle this correctly."
"option allows one to test whether a frontend can handle this correctly."
msgstr ""
"Ĝi simulas akiradon per mana skanilo. La manaj skaniloj ofte ne rekonas "
"la alton de la bildon apriore, do ili revenigas alton kun valoro -1. Per "
@ -4977,7 +4977,7 @@ msgstr "Simulado de mana skanilo"
msgid ""
"Simulate a hand-scanner. Hand-scanners do not know the image height a "
"priori. Instead, they return a height of -1. Setting this option "
"allows to test whether a frontend can handle this correctly. This "
"allows one to test whether a frontend can handle this correctly. This "
"option also enables a fixed width of 11 cm."
msgstr ""
"Ĝi simulas akiradon per mana skanilo. La manaj skaniloj ofte ne rekonas "

Wyświetl plik

@ -4666,7 +4666,7 @@ msgstr "Simulación de escáner manual"
msgid ""
"Simulate a hand-scanner. Hand-scanners often do not know the image "
"height a priori. Instead, they return a height of -1. Setting this "
"option allows to test whether a frontend can handle this correctly."
"option allows one to test whether a frontend can handle this correctly."
msgstr ""
"Simula un escáner de mano. Los escáneres de mano a menudo no conocen a "
"priori la distancia a la imagen. En su lugar utiliza una altura de "
@ -5011,7 +5011,7 @@ msgstr "Simulación de escaneo manual"
msgid ""
"Simulate a hand-scanner. Hand-scanners do not know the image height a "
"priori. Instead, they return a height of -1. Setting this option "
"allows to test whether a frontend can handle this correctly. This "
"allows one to test whether a frontend can handle this correctly. This "
"option also enables a fixed width of 11 cm."
msgstr ""
"Simula un escáner de mano. Los escáneres de mano a menudo no conocen a "

Wyświetl plik

@ -4586,7 +4586,7 @@ msgstr "Käsikuvanlukijasimulaatio"
msgid ""
"Simulate a hand-scanner. Hand-scanners often do not know the image "
"height a priori. Instead, they return a height of -1. Setting this "
"option allows to test whether a frontend can handle this correctly."
"option allows one to test whether a frontend can handle this correctly."
msgstr ""
"Simuloi käsiskanneria. Käsiskannerit eivät yleensä tiedä kuvan kokoa "
"etukäteen. Sen sijaan, ne palauttavat kuvan korkeudeksi -1. Tällä "
@ -4926,7 +4926,7 @@ msgstr "Käsikuvanlukijasimulaatio"
msgid ""
"Simulate a hand-scanner. Hand-scanners do not know the image height a "
"priori. Instead, they return a height of -1. Setting this option "
"allows to test whether a frontend can handle this correctly. This "
"allows one to test whether a frontend can handle this correctly. This "
"option also enables a fixed width of 11 cm."
msgstr ""
"Simuloi käsikuvnalukijaa. Käsikuvanlukijat eivät tiedä kuvan korkeutta "

Wyświetl plik

@ -4713,7 +4713,7 @@ msgstr "Simulation de scanner à main."
msgid ""
"Simulate a hand-scanner. Hand-scanners often do not know the image "
"height a priori. Instead, they return a height of -1. Setting this "
"option allows to test whether a frontend can handle this correctly."
"option allows one to test whether a frontend can handle this correctly."
msgstr ""
"Simule une numérisation avec un scanner à main. Les scanners à main ne "
"connaissent pas à priori la hauteur de l'image. A la place, ils "
@ -5057,7 +5057,7 @@ msgstr "Simulation de scanner à main"
msgid ""
"Simulate a hand-scanner. Hand-scanners do not know the image height a "
"priori. Instead, they return a height of -1. Setting this option "
"allows to test whether a frontend can handle this correctly. This "
"allows one to test whether a frontend can handle this correctly. This "
"option also enables a fixed width of 11 cm."
msgstr ""
"Simule un scanner à main. Les scanners à main ne connaissent pas à "

Wyświetl plik

@ -4668,7 +4668,7 @@ msgstr "Simulación de escáner de man"
msgid ""
"Simulate a hand-scanner. Hand-scanners often do not know the image "
"height a priori. Instead, they return a height of -1. Setting this "
"option allows to test whether a frontend can handle this correctly."
"option allows one to test whether a frontend can handle this correctly."
msgstr ""
"Semella un escáner de man. Os escáneres de man adoitan descoñecer a "
"priori a distancia á imaxe. Na súa vez utiliza unha altura de retorno "
@ -5012,7 +5012,7 @@ msgstr "Simulación de escáner manual"
msgid ""
"Simulate a hand-scanner. Hand-scanners do not know the image height a "
"priori. Instead, they return a height of -1. Setting this option "
"allows to test whether a frontend can handle this correctly. This "
"allows one to test whether a frontend can handle this correctly. This "
"option also enables a fixed width of 11 cm."
msgstr ""
"Semella un escáner de man. Os escáneres de man adoitan descoñecer a "

Wyświetl plik

@ -4661,7 +4661,7 @@ msgstr "Simulazione di uno scanner manuale"
msgid ""
"Simulate a hand-scanner. Hand-scanners often do not know the image "
"height a priori. Instead, they return a height of -1. Setting this "
"option allows to test whether a frontend can handle this correctly."
"option allows one to test whether a frontend can handle this correctly."
msgstr ""
"Simula l'acquisizione mediante uno scanner manuale; questi scanner "
"spesso non conoscono l'altezza dell'immagine a priori e restituiscono "
@ -5007,7 +5007,7 @@ msgstr "Simulazione di uno scanner manuale"
msgid ""
"Simulate a hand-scanner. Hand-scanners do not know the image height a "
"priori. Instead, they return a height of -1. Setting this option "
"allows to test whether a frontend can handle this correctly. This "
"allows one to test whether a frontend can handle this correctly. This "
"option also enables a fixed width of 11 cm."
msgstr ""
"Simulazione di acquisizione mediante uno scanner manuale; questi scanner "

Wyświetl plik

@ -4567,7 +4567,7 @@ msgstr "ハンドスキャナー シミュレーション"
msgid ""
"Simulate a hand-scanner. Hand-scanners often do not know the image "
"height a priori. Instead, they return a height of -1. Setting this "
"option allows to test whether a frontend can handle this correctly."
"option allows one to test whether a frontend can handle this correctly."
msgstr ""
"ハンドスキャナーをシミュレートします。ハンドスキャナーは、たいていの場"
"合、イメージの高さが事前にはわかりません。その代わり、高さとしてー1を返"
@ -4891,7 +4891,7 @@ msgstr "ハンドスキャナーをシミュレート"
msgid ""
"Simulate a hand-scanner. Hand-scanners do not know the image height a "
"priori. Instead, they return a height of -1. Setting this option "
"allows to test whether a frontend can handle this correctly. This "
"allows one to test whether a frontend can handle this correctly. This "
"option also enables a fixed width of 11 cm."
msgstr ""

Wyświetl plik

@ -4534,7 +4534,7 @@ msgstr "Håndskanner simulering"
msgid ""
"Simulate a hand-scanner. Hand-scanners often do not know the image "
"height a priori. Instead, they return a height of -1. Setting this "
"option allows to test whether a frontend can handle this correctly."
"option allows one to test whether a frontend can handle this correctly."
msgstr ""
#: ../backend/pnm.c:283
@ -4846,7 +4846,7 @@ msgstr ""
msgid ""
"Simulate a hand-scanner. Hand-scanners do not know the image height a "
"priori. Instead, they return a height of -1. Setting this option "
"allows to test whether a frontend can handle this correctly. This "
"allows one to test whether a frontend can handle this correctly. This "
"option also enables a fixed width of 11 cm."
msgstr ""

Wyświetl plik

@ -4745,7 +4745,7 @@ msgstr "Handscanner simulatie"
msgid ""
"Simulate a hand-scanner. Hand-scanners often do not know the image "
"height a priori. Instead, they return a height of -1. Setting this "
"option allows to test whether a frontend can handle this correctly."
"option allows one to test whether a frontend can handle this correctly."
msgstr ""
"Simuleer een handscanner. Bij handscanners staat meestal de beeldhoogte "
"van te voren niet vast. In plaats daarvan geven zij een hoogte van -1 "
@ -5132,7 +5132,7 @@ msgstr "Handscanner-simulatie"
msgid ""
"Simulate a hand-scanner. Hand-scanners do not know the image height a "
"priori. Instead, they return a height of -1. Setting this option "
"allows to test whether a frontend can handle this correctly. This "
"allows one to test whether a frontend can handle this correctly. This "
"option also enables a fixed width of 11 cm."
msgstr ""
"Simuleer een handscanner. Bij handscanners staat tenminste de "

Wyświetl plik

@ -4652,7 +4652,7 @@ msgstr "Symulacja skanera ręcznego"
msgid ""
"Simulate a hand-scanner. Hand-scanners often do not know the image "
"height a priori. Instead, they return a height of -1. Setting this "
"option allows to test whether a frontend can handle this correctly."
"option allows one to test whether a frontend can handle this correctly."
msgstr ""
"Symuluje skaner ręczny. Skanery ręczne zwykle nie znają wysokości "
"obrazka. Zamiast tego zwracają wysokość -1. Ustawienie tej opcji pozwala "
@ -4994,7 +4994,7 @@ msgstr "Symulacja skanera ręcznego"
msgid ""
"Simulate a hand-scanner. Hand-scanners do not know the image height a "
"priori. Instead, they return a height of -1. Setting this option "
"allows to test whether a frontend can handle this correctly. This "
"allows one to test whether a frontend can handle this correctly. This "
"option also enables a fixed width of 11 cm."
msgstr ""
"Symuluje skaner ręczny. Skanery ręczne zwykle nie znają wysokości "

Wyświetl plik

@ -3979,7 +3979,7 @@ msgstr ""
msgid ""
"Simulate a hand-scanner. Hand-scanners often do not know the image "
"height a priori. Instead, they return a height of -1. Setting this "
"option allows to test whether a frontend can handle this correctly."
"option allows one to test whether a frontend can handle this correctly."
msgstr ""
#: ../backend/pnm.c:283
@ -4291,7 +4291,7 @@ msgstr ""
msgid ""
"Simulate a hand-scanner. Hand-scanners do not know the image height a "
"priori. Instead, they return a height of -1. Setting this option "
"allows to test whether a frontend can handle this correctly. This "
"allows one to test whether a frontend can handle this correctly. This "
"option also enables a fixed width of 11 cm."
msgstr ""

Wyświetl plik

@ -4661,7 +4661,7 @@ msgstr "Имитация ручного сканера"
msgid ""
"Simulate a hand-scanner. Hand-scanners often do not know the image "
"height a priori. Instead, they return a height of -1. Setting this "
"option allows to test whether a frontend can handle this correctly."
"option allows one to test whether a frontend can handle this correctly."
msgstr ""
"Имитирует ручной сканер. Ручные сканеры часто не имеют информации о "
"длине изображения. Вместо этого они возвращает длину -1. Установка этого "
@ -4992,7 +4992,7 @@ msgstr "Имитация ручного сканера"
msgid ""
"Simulate a hand-scanner. Hand-scanners do not know the image height a "
"priori. Instead, they return a height of -1. Setting this option "
"allows to test whether a frontend can handle this correctly. This "
"allows one to test whether a frontend can handle this correctly. This "
"option also enables a fixed width of 11 cm."
msgstr ""
"Имитировать ручной сканер. Ручные сканеры никогда не знают о высоте "

Wyświetl plik

@ -4701,7 +4701,7 @@ msgstr "Handbildläsarsimulering"
msgid ""
"Simulate a hand-scanner. Hand-scanners often do not know the image "
"height a priori. Instead, they return a height of -1. Setting this "
"option allows to test whether a frontend can handle this correctly."
"option allows one to test whether a frontend can handle this correctly."
msgstr ""
"Simulera en handbildläsare. Handbildläsare vet oftast inte bildhöjden i "
"förväg. I stället returnerar de en höjd som är -1. Om denna inställning "
@ -5043,7 +5043,7 @@ msgstr "Handbildläsarsimulering"
msgid ""
"Simulate a hand-scanner. Hand-scanners do not know the image height a "
"priori. Instead, they return a height of -1. Setting this option "
"allows to test whether a frontend can handle this correctly. This "
"allows one to test whether a frontend can handle this correctly. This "
"option also enables a fixed width of 11 cm."
msgstr ""
"Simulera en handbildläsare. Handbildläsare vet oftast inte bildhöjden i "

Wyświetl plik

@ -4775,7 +4775,7 @@ msgstr "Імітація ручного сканера"
msgid ""
"Simulate a hand-scanner. Hand-scanners often do not know the image "
"height a priori. Instead, they return a height of -1. Setting this "
"option allows to test whether a frontend can handle this correctly."
"option allows one to test whether a frontend can handle this correctly."
msgstr ""
"Імітує ручний сканер. Ручні сканери часто попередньо не отримують даних "
"щодо висоти зображення. Замість цього, вони повертають висоту рівну -1. "
@ -5164,7 +5164,7 @@ msgstr "Імітація ручного сканера"
msgid ""
"Simulate a hand-scanner. Hand-scanners do not know the image height a "
"priori. Instead, they return a height of -1. Setting this option "
"allows to test whether a frontend can handle this correctly. This "
"allows one to test whether a frontend can handle this correctly. This "
"option also enables a fixed width of 11 cm."
msgstr ""
"Імітує ручний сканер. Ручні сканери попередньо не отримують даних щодо "