update translations for 5.2.0 beta1

and force-fix errors using pocheck

Change-Id: I9dac678a4e705f255463e6ba3b127f423e82fd65
This commit is contained in:
Christian Lohmaier
2016-05-25 19:40:31 +02:00
parent cfc31b7c53
commit 87fc3ca7cb
5261 changed files with 290765 additions and 214489 deletions

View File

@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-04-16 21:40+0200\n"
"POT-Creation-Date: 2016-05-23 21:36+0200\n"
"PO-Revision-Date: 2016-04-16 22:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.7\n"
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1460847199.000000\n"
#: 00000002.xhp
@@ -18609,16 +18609,16 @@ msgctxt ""
"03080301.xhp\n"
"hd_id3150616\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03080301.xhp\" name=\"Randomize Statement [Runtime]\">Randomize Statement [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">Desde...Seguinte instrución [Runtime]</link>"
msgid "<variable id=\"heading_randomize\"><link href=\"text/sbasic/shared/03080301.xhp\" name=\"Randomize Statement [Runtime]\">Randomize Statement [Runtime]</link></variable>"
msgstr ""
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
"par_id3145090\n"
"help.text"
msgid "Initializes the random-number generator."
msgstr "Inicia o xerador de números aleatorios."
msgid "Initializes the random-number generator used by the <emph>Rnd</emph> function."
msgstr ""
#: 03080301.xhp
msgctxt ""
@@ -18649,8 +18649,24 @@ msgctxt ""
"03080301.xhp\n"
"par_id3149670\n"
"help.text"
msgid "<emph>Number:</emph> Any integer value that initializes the random-number generator."
msgstr "Inicia o xerador de números aleatorios."
msgid "<emph>Number:</emph> Any integer value. Used as seed to initialize the random-number generator. Equal seeds result in equal random-number sequences by the <emph>Rnd</emph> function. If the parameter is omitted, the <emph>Randomize</emph> statement will be ignored."
msgstr ""
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
"par_id110520161656428611\n"
"help.text"
msgid "Unless a predictable sequence of numbers is desired, there is no need to use the <emph>Randomize</emph> statement, as the random-number generator will be initialized automatically at first use it will be seeded using a system-provided random-number generator that produces uniformly-distributed, non-deterministic random numbers. If no such generator is available on the system, the system time will be used as seed."
msgstr ""
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
"par_id12052016194258344\n"
"help.text"
msgid "The <emph>Randomize</emph> statement affects BASIC's <emph>Rnd</emph> function only. Other random-number generators (for example the Calc's RAND() function, etc.) are not affected by it."
msgstr ""
#: 03080301.xhp
msgctxt ""
@@ -18661,11 +18677,12 @@ msgid "Example:"
msgstr "Exemplo:"
#: 03080301.xhp
#, fuzzy
msgctxt ""
"03080301.xhp\n"
"par_id3147288\n"
"help.text"
msgid "iVar = Int((10 * Rnd) ) ' Range from 0 To 9"
msgid "iVar = Int(10 * Rnd) ' Range from 0 to 9"
msgstr "iVar = Int((10 * Rnd) ) REM Intervalo de 0 a 9"
#: 03080301.xhp
@@ -18697,8 +18714,8 @@ msgctxt ""
"03080302.xhp\n"
"hd_id3148685\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03080302.xhp\" name=\"Rnd Function [Runtime]\">Rnd Function [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">Desde...Seguinte instrución [Runtime]</link>"
msgid "<variable id=\"heading_rnd\"><link href=\"text/sbasic/shared/03080302.xhp\" name=\"Rnd Function [Runtime]\">Rnd Function [Runtime]</link></variable>"
msgstr ""
#: 03080302.xhp
msgctxt ""
@@ -18753,15 +18770,7 @@ msgctxt ""
"03080302.xhp\n"
"par_id3125864\n"
"help.text"
msgid "<emph>Expression:</emph> Any numeric expression."
msgstr "Expresión: Calquera cadea ou expresión numérica que queiras converter."
#: 03080302.xhp
msgctxt ""
"03080302.xhp\n"
"par_id3155306\n"
"help.text"
msgid "<emph>Omitted:</emph> Returns the next random number in the sequence."
msgid "<emph>Expression:</emph> Has no effect, is ignored if provided."
msgstr ""
#: 03080302.xhp
@@ -18769,7 +18778,7 @@ msgctxt ""
"03080302.xhp\n"
"par_id3147318\n"
"help.text"
msgid "The <emph>Rnd</emph> function only returns values ranging from 0 to 1. To generate random integers in a given range, use the formula in the following example:"
msgid "The <emph>Rnd</emph> function returns decimal fractions ranging from 0 (included) to 1 (excluded) according to a uniform distribution. It uses the Mersenne Twister 19937 random-number generator. To generate random integers in a given range, use a formula like in the example below. A <emph>Randomize</emph> statement with a defined seed value can be used beforehand, if a predictable sequence of numbers is desired."
msgstr ""
#: 03080302.xhp
@@ -19468,14 +19477,6 @@ msgctxt ""
msgid "Sgn returns -1."
msgstr "Sgn devolve -1."
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
"par_id3145271\n"
"help.text"
msgid "0"
msgstr ""
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -27521,14 +27522,6 @@ msgctxt ""
msgid "Boolean"
msgstr "Boolean :"
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
"par_id3153367\n"
"help.text"
msgid "11"
msgstr "11"
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -27545,14 +27538,6 @@ msgctxt ""
msgid "Date"
msgstr "Data"
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
"par_id3153363\n"
"help.text"
msgid "7"
msgstr ""
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -27569,14 +27554,6 @@ msgctxt ""
msgid "Double"
msgstr "Duplo"
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
"par_id3150486\n"
"help.text"
msgid "5"
msgstr ""
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -27593,14 +27570,6 @@ msgctxt ""
msgid "Integer"
msgstr "Enteiro"
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
"par_id3145647\n"
"help.text"
msgid "2"
msgstr ""
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -27617,14 +27586,6 @@ msgctxt ""
msgid "Long"
msgstr "Long"
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
"par_id3154513\n"
"help.text"
msgid "3"
msgstr ""
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -27641,14 +27602,6 @@ msgctxt ""
msgid "Object"
msgstr "Obxecto"
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
"par_id3154482\n"
"help.text"
msgid "9"
msgstr ""
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -27665,14 +27618,6 @@ msgctxt ""
msgid "Single"
msgstr "Simple"
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
"par_id3149020\n"
"help.text"
msgid "4"
msgstr ""
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -27689,14 +27634,6 @@ msgctxt ""
msgid "String"
msgstr "Cadea"
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
"par_id3155960\n"
"help.text"
msgid "8"
msgstr ""
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -27713,14 +27650,6 @@ msgctxt ""
msgid "Variant"
msgstr "Variant."
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
"par_id3154021\n"
"help.text"
msgid "12"
msgstr "12"
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -27737,14 +27666,6 @@ msgctxt ""
msgid "Empty"
msgstr "Baleiro"
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
"par_id3152584\n"
"help.text"
msgid "0"
msgstr ""
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -27761,14 +27682,6 @@ msgctxt ""
msgid "Null"
msgstr "Nulo"
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
"par_id3166424\n"
"help.text"
msgid "1"
msgstr ""
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -32744,14 +32657,6 @@ msgctxt ""
msgid "Optional integer expression that specifies the style of the window that the program is executed in. The following values are possible:"
msgstr "Expresión de número enteiro opcional que especifica o estilo da xanela en que se executa o programa. Son posíbeis os seguintes valores:"
#: 03130500.xhp
msgctxt ""
"03130500.xhp\n"
"par_id3148663\n"
"help.text"
msgid "0"
msgstr ""
#: 03130500.xhp
msgctxt ""
"03130500.xhp\n"
@@ -32760,14 +32665,6 @@ msgctxt ""
msgid "The focus is on the hidden program window."
msgstr "Está enfocada a xanela oculta do programa."
#: 03130500.xhp
msgctxt ""
"03130500.xhp\n"
"par_id3154123\n"
"help.text"
msgid "1"
msgstr ""
#: 03130500.xhp
msgctxt ""
"03130500.xhp\n"
@@ -32776,14 +32673,6 @@ msgctxt ""
msgid "The focus is on the program window in standard size."
msgstr "Está enfocada a xanela do programa en tamaño estándar."
#: 03130500.xhp
msgctxt ""
"03130500.xhp\n"
"par_id3156422\n"
"help.text"
msgid "2"
msgstr ""
#: 03130500.xhp
msgctxt ""
"03130500.xhp\n"
@@ -32792,14 +32681,6 @@ msgctxt ""
msgid "The focus is on the minimized program window."
msgstr "Está enfocada a xanela minimizada do programa."
#: 03130500.xhp
msgctxt ""
"03130500.xhp\n"
"par_id3149561\n"
"help.text"
msgid "3"
msgstr ""
#: 03130500.xhp
msgctxt ""
"03130500.xhp\n"
@@ -32808,14 +32689,6 @@ msgctxt ""
msgid "focus is on the maximized program window."
msgstr "Está enfocada a xanela maximizada do programa."
#: 03130500.xhp
msgctxt ""
"03130500.xhp\n"
"par_id3149481\n"
"help.text"
msgid "4"
msgstr ""
#: 03130500.xhp
msgctxt ""
"03130500.xhp\n"
@@ -32824,14 +32697,6 @@ msgctxt ""
msgid "Standard size program window, without focus."
msgstr "Xanela de programa de tamaño estándar, sen foco."
#: 03130500.xhp
msgctxt ""
"03130500.xhp\n"
"par_id3145271\n"
"help.text"
msgid "6"
msgstr ""
#: 03130500.xhp
msgctxt ""
"03130500.xhp\n"
@@ -32840,14 +32705,6 @@ msgctxt ""
msgid "Minimized program window, focus remains on the active window."
msgstr "Xanela de programa minimizada; segue enfocada a xanela activa."
#: 03130500.xhp
msgctxt ""
"03130500.xhp\n"
"par_id3146119\n"
"help.text"
msgid "10"
msgstr "10"
#: 03130500.xhp
msgctxt ""
"03130500.xhp\n"

View File

@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-04-16 21:40+0200\n"
"PO-Revision-Date: 2015-12-11 12:22+0000\n"
"Last-Translator: system user <>\n"
"POT-Creation-Date: 2016-05-23 21:36+0200\n"
"PO-Revision-Date: 2016-05-02 11:23+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
"X-POOTLE-MTIME: 1449836545.000000\n"
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1462188183.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -1175,12 +1175,12 @@ msgid "F9"
msgstr "F9"
#: 00000406.xhp
#, fuzzy
msgctxt ""
"00000406.xhp\n"
"par_id3150941\n"
"19\n"
"help.text"
msgid "<variable id=\"exatmb\">Choose <emph>Tools - Cell Contents - AutoCalculate</emph></variable>"
msgid "<variable id=\"exatmb\">Choose <emph>Data - Calculate - AutoCalculate</emph></variable>"
msgstr "<variable id=\"exatmb\">Escolla <emph>Ferramentas - Contido de cela - Calcular automaticamente</emph></variable>"
#: 00000406.xhp
@@ -1269,12 +1269,12 @@ msgid "<variable id=\"dbrba\">Choose <emph>Data - Select Range</emph></variable>
msgstr "<variable id=\"dbrba\">Escolla <emph>Datos - Seleccionar intervalo</emph></variable>"
#: 00000412.xhp
#, fuzzy
msgctxt ""
"00000412.xhp\n"
"par_id3150443\n"
"5\n"
"help.text"
msgid "<variable id=\"dnsrt\">Choose <emph>Data - Sort</emph></variable>"
msgid "<variable id=\"dnsrt\">Choose <emph>Data - Sort...</emph></variable>"
msgstr "<variable id=\"dnsrt\">Escolla <emph>Datos - Ordenar</emph></variable>"
#: 00000412.xhp
@@ -1348,12 +1348,12 @@ msgid "<variable id=\"dnftr\">Choose <emph>Data - Filter</emph></variable>"
msgstr "<variable id=\"dnftr\">Escolla <emph>Datos - Filtro</emph></variable>"
#: 00000412.xhp
#, fuzzy
msgctxt ""
"00000412.xhp\n"
"par_id3148646\n"
"12\n"
"help.text"
msgid "Choose <emph>Data - Filter - AutoFilter</emph>"
msgid "Choose <emph>Data - AutoFilter</emph>"
msgstr "Escolla <emph>Datos - Filtro - Filtro automático</emph>"
#: 00000412.xhp
@@ -1383,12 +1383,12 @@ msgid "AutoFilter"
msgstr "Filtro automático"
#: 00000412.xhp
#, fuzzy
msgctxt ""
"00000412.xhp\n"
"par_id3156278\n"
"17\n"
"help.text"
msgid "<variable id=\"dnfspz\">Choose <emph>Data - Filter - Advanced Filter</emph></variable>"
msgid "<variable id=\"dnfspz\">Choose <emph>Data - More Filters - Advanced Filter...</emph></variable>"
msgstr "<variable id=\"dnfspz\">Escolla <emph>Datos - Filtro - Filtro avanzado</emph></variable>"
#: 00000412.xhp
@@ -1397,7 +1397,7 @@ msgctxt ""
"00000412.xhp\n"
"par_id3153764\n"
"help.text"
msgid "Choose <emph>Data - Filter - Standard Filter - Options</emph> label"
msgid "Choose <emph>Data - More Filters - Standard Filter... - Options</emph> label"
msgstr "Escolla <emph>Datos - Filtro - Filtro estándar</emph>, botón <emph>Máis>></emph>"
#: 00000412.xhp
@@ -1406,16 +1406,16 @@ msgctxt ""
"00000412.xhp\n"
"par_id3155444\n"
"help.text"
msgid "Choose <emph>Data - Filter - Advanced Filter - Options</emph> label"
msgid "Choose <emph>Data - More Filters - Advanced Filter... - Options</emph> label"
msgstr "Escolla <emph>Datos - Filtro - Filtro avanzado</emph>, botón <emph>Máis>></emph>"
#: 00000412.xhp
#, fuzzy
msgctxt ""
"00000412.xhp\n"
"par_id3156382\n"
"20\n"
"help.text"
msgid "Choose <emph>Data - Filter - Reset Filter</emph>"
msgid "Choose <emph>Data - More Filters - Reset Filter</emph>"
msgstr "Escolla <emph>Datos - Filtro - Restaurar filtro</emph>"
#: 00000412.xhp
@@ -1445,12 +1445,12 @@ msgid "Reset Filter/Sort"
msgstr "Restaurar filtro/orde"
#: 00000412.xhp
#, fuzzy
msgctxt ""
"00000412.xhp\n"
"par_id3152778\n"
"21\n"
"help.text"
msgid "<variable id=\"dnaftas\">Choose <emph>Data - Filter - Hide AutoFilter</emph></variable>"
msgid "<variable id=\"dnaftas\">Choose <emph>Data - More Filter - Hide AutoFilter</emph></variable>"
msgstr "<variable id=\"dnaftas\">Escolla <emph>Datos - Filtro - Ocultar filtro automático</emph></variable>"
#: 00000412.xhp

View File

@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-04-16 21:40+0200\n"
"PO-Revision-Date: 2016-04-16 23:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"POT-Creation-Date: 2016-05-23 22:09+0200\n"
"PO-Revision-Date: 2016-05-07 09:49+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.7\n"
"X-POOTLE-MTIME: 1460848285.000000\n"
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1462614575.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -4223,12 +4223,12 @@ msgid "Database Functions"
msgstr "Funcións de base de datos"
#: 04060101.xhp
#, fuzzy
msgctxt ""
"04060101.xhp\n"
"par_id3145173\n"
"2\n"
"help.text"
msgid "<variable id=\"datenbanktext\">This section deals with functions used with data organized as one row of data for one record. </variable>"
msgid "<variable id=\"datenbanktext\">This section deals with functions used with data organized as one row of data for one record.</variable>"
msgstr "<Variable id =\"datenbanktext\"> Esta sección trata de funcións usadas cos datos organizados como unha liña de datos para un rexistro. </ Variable>"
#: 04060101.xhp
@@ -4366,15 +4366,6 @@ msgctxt ""
msgid "<item type=\"input\">Weight</item>"
msgstr "<item type=\"input\">Peso</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3153816\n"
"15\n"
"help.text"
msgid "2"
msgstr "2"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
@@ -4384,51 +4375,6 @@ msgctxt ""
msgid "<item type=\"input\">Andy</item>"
msgstr "<item type=\"input\">Anxo</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3156016\n"
"17\n"
"help.text"
msgid "<item type=\"input\">3</item>"
msgstr "<item type=\"input\">3</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3145073\n"
"18\n"
"help.text"
msgid "<item type=\"input\">9</item>"
msgstr "<item type=\"input\">9</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3154956\n"
"19\n"
"help.text"
msgid "<item type=\"input\">150</item>"
msgstr "<item type=\"input\">150</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3153976\n"
"20\n"
"help.text"
msgid "<item type=\"input\">40</item>"
msgstr "<item type=\"input\">40</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3150894\n"
"21\n"
"help.text"
msgid "3"
msgstr "3"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
@@ -4438,51 +4384,6 @@ msgctxt ""
msgid "<item type=\"input\">Betty</item>"
msgstr "<item type=\"input\">Brais</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3149692\n"
"23\n"
"help.text"
msgid "<item type=\"input\">4</item>"
msgstr "<item type=\"input\">4</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3154652\n"
"24\n"
"help.text"
msgid "<item type=\"input\">10</item>"
msgstr "<item type=\"input\">10</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3149381\n"
"25\n"
"help.text"
msgid "<item type=\"input\">1000</item>"
msgstr "<item type=\"input\">1000</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3153812\n"
"26\n"
"help.text"
msgid "<item type=\"input\">42</item>"
msgstr "<item type=\"input\">42</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3146965\n"
"27\n"
"help.text"
msgid "4"
msgstr "4"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
@@ -4492,51 +4393,6 @@ msgctxt ""
msgid "<item type=\"input\">Charles</item>"
msgstr "<item type=\"input\">Catuxa</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3147244\n"
"29\n"
"help.text"
msgid "<item type=\"input\">3</item>"
msgstr "<item type=\"input\">3</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3149871\n"
"30\n"
"help.text"
msgid "<item type=\"input\">10</item>"
msgstr "<item type=\"input\">10</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3155752\n"
"31\n"
"help.text"
msgid "<item type=\"input\">300</item>"
msgstr "<item type=\"input\">300</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3149052\n"
"32\n"
"help.text"
msgid "<item type=\"input\">51</item>"
msgstr "<item type=\"input\">51</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3146097\n"
"33\n"
"help.text"
msgid "5"
msgstr "5"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
@@ -4546,51 +4402,6 @@ msgctxt ""
msgid "<item type=\"input\">Daniel</item>"
msgstr "<item type=\"input\">Daniel</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3150393\n"
"35\n"
"help.text"
msgid "<item type=\"input\">5</item>"
msgstr "<item type=\"input\">5</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3145236\n"
"36\n"
"help.text"
msgid "<item type=\"input\">11</item>"
msgstr "<item type=\"input\">11</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3150534\n"
"37\n"
"help.text"
msgid "<item type=\"input\">1200</item>"
msgstr "<item type=\"input\">1200</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3150375\n"
"38\n"
"help.text"
msgid "<item type=\"input\">48</item>"
msgstr "<item type=\"input\">48</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3159121\n"
"39\n"
"help.text"
msgid "6"
msgstr "6"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
@@ -4600,51 +4411,6 @@ msgctxt ""
msgid "<item type=\"input\">Eva</item>"
msgstr "<item type=\"input\">Eva</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3146886\n"
"41\n"
"help.text"
msgid "<item type=\"input\">2</item>"
msgstr "<item type=\"input\">2</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3149945\n"
"42\n"
"help.text"
msgid "<item type=\"input\">8</item>"
msgstr "<item type=\"input\">8</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3157904\n"
"43\n"
"help.text"
msgid "<item type=\"input\">650</item>"
msgstr "<item type=\"input\">650</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3149352\n"
"44\n"
"help.text"
msgid "<item type=\"input\">33</item>"
msgstr "<item type=\"input\">33</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3150028\n"
"45\n"
"help.text"
msgid "7"
msgstr "7"
#: 04060101.xhp
#, fuzzy
msgctxt ""
@@ -4655,53 +4421,6 @@ msgctxt ""
msgid "<item type=\"input\">Frank</item>"
msgstr "<item type=\"input\">Nota</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3150743\n"
"47\n"
"help.text"
msgid "<item type=\"input\">2</item>"
msgstr "<item type=\"input\">2</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3154844\n"
"48\n"
"help.text"
msgid "<item type=\"input\">7</item>"
msgstr "<item type=\"input\">7</item>"
#: 04060101.xhp
#, fuzzy
msgctxt ""
"04060101.xhp\n"
"par_id3148435\n"
"49\n"
"help.text"
msgid "<item type=\"input\">300</item>"
msgstr "<item type=\"input\">300</item>"
#: 04060101.xhp
#, fuzzy
msgctxt ""
"04060101.xhp\n"
"par_id3148882\n"
"50\n"
"help.text"
msgid "<item type=\"input\">42</item>"
msgstr "<item type=\"input\">42</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3150140\n"
"51\n"
"help.text"
msgid "8"
msgstr "8"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
@@ -4711,51 +4430,6 @@ msgctxt ""
msgid "<item type=\"input\">Greta</item>"
msgstr "<item type=\"input\">Greta</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3148739\n"
"53\n"
"help.text"
msgid "<item type=\"input\">1</item>"
msgstr "<item type=\"input\">1</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3148583\n"
"54\n"
"help.text"
msgid "<item type=\"input\">7</item>"
msgstr "<item type=\"input\">7</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3154556\n"
"55\n"
"help.text"
msgid "<item type=\"input\">200</item>"
msgstr "<item type=\"input\">200</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3155255\n"
"56\n"
"help.text"
msgid "<item type=\"input\">36</item>"
msgstr "<item type=\"input\">36</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3145141\n"
"57\n"
"help.text"
msgid "9"
msgstr "9"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
@@ -4765,51 +4439,6 @@ msgctxt ""
msgid "<item type=\"input\">Harry</item>"
msgstr "<item type=\"input\">Helena</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3149955\n"
"59\n"
"help.text"
msgid "<item type=\"input\">3</item>"
msgstr "<item type=\"input\">3</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3150005\n"
"60\n"
"help.text"
msgid "<item type=\"input\">9</item>"
msgstr "<item type=\"input\">9</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3155951\n"
"61\n"
"help.text"
msgid "<item type=\"input\">1200</item>"
msgstr "<item type=\"input\">1200</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3145169\n"
"62\n"
"help.text"
msgid "<item type=\"input\">44</item>"
msgstr "<item type=\"input\">44</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3153571\n"
"63\n"
"help.text"
msgid "10"
msgstr "10"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
@@ -4819,69 +4448,6 @@ msgctxt ""
msgid "<item type=\"input\">Irene</item>"
msgstr "<item type=\"input\">Irene</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3149877\n"
"65\n"
"help.text"
msgid "<item type=\"input\">2</item>"
msgstr "<item type=\"input\">2</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3154327\n"
"66\n"
"help.text"
msgid "<item type=\"input\">8</item>"
msgstr "<item type=\"input\">8</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3155435\n"
"67\n"
"help.text"
msgid "<item type=\"input\">1000</item>"
msgstr "<item type=\"input\">1000</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3145353\n"
"68\n"
"help.text"
msgid "<item type=\"input\">42</item>"
msgstr "<item type=\"input\">42</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3150662\n"
"69\n"
"help.text"
msgid "11"
msgstr "11"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3150568\n"
"70\n"
"help.text"
msgid "12"
msgstr "12"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3149393\n"
"71\n"
"help.text"
msgid "13"
msgstr "13"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
@@ -4927,42 +4493,6 @@ msgctxt ""
msgid "<item type=\"input\">Weight</item>"
msgstr "<item type=\"input\">Peso</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3153920\n"
"77\n"
"help.text"
msgid "14"
msgstr "14"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3148429\n"
"78\n"
"help.text"
msgid "<item type=\"input\">>600</item>"
msgstr "<item type=\"input\">>600</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3152588\n"
"79\n"
"help.text"
msgid "15"
msgstr "15"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3083286\n"
"80\n"
"help.text"
msgid "16"
msgstr "16"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
@@ -4972,15 +4502,6 @@ msgctxt ""
msgid "<item type=\"input\">DCOUNT</item>"
msgstr "<item type=\"input\">DCONTAR</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id3145083\n"
"82\n"
"help.text"
msgid "<item type=\"input\">5</item>"
msgstr "<item type=\"input\">5</item>"
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
@@ -5018,12 +4539,13 @@ msgid "<emph>Database</emph> is the cell range defining the database."
msgstr "<emph> Base de datos </emph> é o intervalo de celas que define a base de datos."
#: 04060101.xhp
#, fuzzy
msgctxt ""
"04060101.xhp\n"
"par_id3151272\n"
"86\n"
"help.text"
msgid "<emph>DatabaseField</emph> specifies the column where the function operates on after the search criteria of the first parameter is applied and the data rows are selected. It is not related to the search criteria itself. Use the number 0 to specify the whole data range. <variable id=\"quotes\">To reference a column by means of the column header name, place quotation marks around the header name. </variable>"
msgid "<emph>DatabaseField</emph> specifies the column where the function operates on after the search criteria of the first parameter is applied and the data rows are selected. It is not related to the search criteria itself. Use the number 0 to specify the whole data range. <variable id=\"quotes\">To reference a column by means of the column header name, place quotation marks around the header name.</variable>"
msgstr "<emph> DatabaseField </emph> especifica a columna onde a función opera en tras os criterios de busca do primeiro parámetro é aplicado e as liñas de datos son seleccionados. Non está relacionado co propio criterio de busca. Use o número 0 para especificar o conxunto de datos. <Id =\"comiñas\" variable> Para referenciar unha columna por medio do nome da cabeceira da columna, coloque comiñas en torno do nome da cabeceira. </ Variable>"
#: 04060101.xhp
@@ -12615,11 +12137,12 @@ msgid "Examples"
msgstr "Exemplos"
#: 04060106.xhp
#, fuzzy
msgctxt ""
"04060106.xhp\n"
"par_id3147240\n"
"par_id3147241\n"
"help.text"
msgid "<item type=\"input\">=COS(PI()/2)</item> returns 0, the cosine of PI/2 radians."
msgid "<item type=\"input\">=COS(PI()*2)</item> returns 1, the cosine of 2*PI radians."
msgstr "<item type =\"entrada\"> = COS (PI () / 2) </ item> dá 0, o coseno de pi / 2 radiáns."
#: 04060106.xhp
@@ -54266,7 +53789,7 @@ msgctxt ""
"05120000.xhp\n"
"par_id2414014\n"
"help.text"
msgid "To apply conditional formatting, AutoCalculate must be enabled. Choose Tools - Cell Contents - AutoCalculate (you see a check mark next to the command when AutoCalculate is enabled)."
msgid "To apply conditional formatting, AutoCalculate must be enabled. Choose <emph>Data - Calculate - AutoCalculate</emph> (you see a check mark next to the command when AutoCalculate is enabled)."
msgstr ""
#: 05120000.xhp
@@ -61542,7 +61065,7 @@ msgctxt ""
"exponsmooth_embd.xhp\n"
"par_id0603201608440579\n"
"help.text"
msgid "forecast = basevalue + trend * ∆x + periodical_abberation."
msgid "forecast = basevalue + trend * ∆x + periodical_aberration."
msgstr ""
#: exponsmooth_embd.xhp
@@ -61550,7 +61073,7 @@ msgctxt ""
"exponsmooth_embd.xhp\n"
"par_id0603201608440675\n"
"help.text"
msgid "forecast = ( basevalue + trend * ∆x ) * periodical_abberation."
msgid "forecast = ( basevalue + trend * ∆x ) * periodical_aberration."
msgstr ""
#: exponsmooth_embd.xhp
@@ -64745,7 +64268,7 @@ msgctxt ""
"func_forecastetspiadd.xhp\n"
"hd_id04032016112394554\n"
"help.text"
msgid "Returns 18.8061295551355, the the additive prediction interval forecast for January 2014 based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, with one sample per period, no missing data, and AVERAGE as aggregation."
msgid "Returns 18.8061295551355, the additive prediction interval forecast for January 2014 based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, with one sample per period, no missing data, and AVERAGE as aggregation."
msgstr ""
#: func_forecastetspiadd.xhp
@@ -64867,7 +64390,7 @@ msgctxt ""
"func_forecastetspimult.xhp\n"
"hd_id04032016112394554\n"
"help.text"
msgid "Returns 20.1040952101013, the the multiplicative prediction interval forecast for January 2014 based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, with one sample per period, no missing data, and AVERAGE as aggregation."
msgid "Returns 20.1040952101013, the multiplicative prediction interval forecast for January 2014 based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, with one sample per period, no missing data, and AVERAGE as aggregation."
msgstr ""
#: func_forecastetspimult.xhp
@@ -68570,7 +68093,7 @@ msgctxt ""
"solver.xhp\n"
"bm_id7654652\n"
"help.text"
msgid "<bookmark_value>goal seeking;solver</bookmark_value><bookmark_value>what if operations;solver</bookmark_value><bookmark_value>back-solving</bookmark_value><bookmark_value>solver</bookmark_value>"
msgid "<bookmark_value>goal seeking;solver</bookmark_value> <bookmark_value>what if operations;solver</bookmark_value> <bookmark_value>back-solving</bookmark_value> <bookmark_value>solver</bookmark_value>"
msgstr ""
#: solver.xhp
@@ -68586,7 +68109,7 @@ msgctxt ""
"solver.xhp\n"
"par_id9210486\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the Solver dialog. A solver allows to solve equations with multiple unknown variables by goal seeking methods.</ahelp>"
msgid "<ahelp hid=\".\">Opens the Solver dialog. A solver allows you to solve equations with multiple unknown variables by goal-seeking methods.</ahelp>"
msgstr ""
#: solver.xhp
@@ -68778,7 +68301,7 @@ msgctxt ""
"solver_options.xhp\n"
"par_id6531266\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">If the current entry in the Settings listbox allows to edit a value, you can click the Edit button. A dialog opens where you can change the value.</ahelp>"
msgid "<ahelp hid=\".\" visibility=\"hidden\">If the current entry in the Settings listbox allows you to edit a value, you can click the Edit button. A dialog opens where you can change the value.</ahelp>"
msgstr ""
#: solver_options.xhp

File diff suppressed because it is too large Load Diff

View File

@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-04-16 21:40+0200\n"
"PO-Revision-Date: 2015-12-11 12:25+0000\n"
"Last-Translator: system user <>\n"
"POT-Creation-Date: 2016-05-23 21:37+0200\n"
"PO-Revision-Date: 2016-05-02 11:53+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
"X-POOTLE-MTIME: 1449836731.000000\n"
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1462189981.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -7695,12 +7695,12 @@ msgid "Choose <emph>Insert - Hyperlink</emph>"
msgstr "Escolla <emph>Inserir - Hiperligazón</emph>"
#: 00000403.xhp
#, fuzzy
msgctxt ""
"00000403.xhp\n"
"par_id3153717\n"
"38\n"
"help.text"
msgid "<variable id=\"hypdiamailnews\">Click <emph>Hyperlink</emph> icon on <emph>Standard</emph> bar, click <emph>Mail & News</emph></variable>"
msgid "<variable id=\"hypdiamailnews\">Click <emph>Hyperlink</emph> icon on <emph>Standard</emph> bar, click <emph>Mail</emph></variable>"
msgstr "<variable id=\"hypdiamailnews\">Prema na icona <emph>Hiperligazón</emph> da barra <emph>Estándar</emph> e, a seguir, prema en <emph>Correo e noticias</emph></variable>"
#: 00000403.xhp
@@ -13447,9 +13447,8 @@ msgstr "Escolla <emph>Formato - Eixo - Eixo Y</emph>, separador <emph>Números</
msgctxt ""
"00040503.xhp\n"
"par_id3150823\n"
"32\n"
"help.text"
msgid "Also as <emph>Number Format</emph> dialog for tables and fields in text documents: Choose <emph>Format - Number Format</emph>, or choose <emph>Insert - Fields - More Fields - Variables</emph> tab and select \"Additional formats\" in the <emph>Format</emph> list."
msgid "Also as <emph>Number Format</emph> dialog for tables and fields in text documents: Choose <emph>Format - Number Format</emph>, or choose <emph>Insert - Field - More Fields - Variables</emph> tab and select \"Additional formats\" in the <emph>Format</emph> list."
msgstr "Tamén como caixa de diálogo <emph>Formato numérico</emph> para táboas e campos en documentos de texto: Escolla <emph>Formato - Formato numérico</emph> ou <emph>Inserir - Campos - Outros</emph>, separador <emph>Variábeiiiiis</emph> e seleccione \"Formatos adicionais\" na lista <emph>Formato</emph>."
#: 00040503.xhp

View File

@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-04-16 21:40+0200\n"
"PO-Revision-Date: 2016-04-16 23:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"POT-Creation-Date: 2016-05-23 22:09+0200\n"
"PO-Revision-Date: 2016-05-02 11:54+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.7\n"
"X-POOTLE-MTIME: 1460848285.000000\n"
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1462190075.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -10063,12 +10063,12 @@ msgid "<link href=\"text/shared/01/02200100.xhp\" name=\"Edit\">Edit</link>"
msgstr "<link href=\"text/shared/01/05990000.xhp\" name=\"Texto\">Texto</link>"
#: 02200100.xhp
#, fuzzy
msgctxt ""
"02200100.xhp\n"
"par_id3150008\n"
"2\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\"\">Lets you edit a selected object in your file that you inserted with the <emph>Insert Object </emph>command.</ahelp>"
msgid "<ahelp visibility=\"visible\" hid=\".\">Lets you edit a selected object in your file that you inserted with the <emph>Insert Object</emph> command.</ahelp>"
msgstr "<ahelp visibility=\"visible\" hid =\"\"> Permite editar un obxecto seleccionado no seu arquivo que inseriu co <emph>Inserir -. Obxecto </emph> comando </ahelp>"
#: 02200200.xhp
@@ -18818,67 +18818,30 @@ msgid "Specify the spacing between individual characters."
msgstr "Especifica o espazamento entre caracteres individuais."
#: 05020500.xhp
#, fuzzy
msgctxt ""
"05020500.xhp\n"
"hd_id3125865\n"
"19\n"
"help.text"
msgid "Spacing"
msgstr "Espazamento"
#: 05020500.xhp
#, fuzzy
msgctxt ""
"05020500.xhp\n"
"par_id3153178\n"
"20\n"
"par_id3146974\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/positionpage/kerninglb\">Specifies the spacing between the characters of the selected text. For expanded or condensed spacing, enter the amount that you want to expand or condense the text in the <emph>by </emph>box.</ahelp>"
msgid "<ahelp hid=\"cui/ui/positionpage/kerningsb\">Specifies the spacing between the characters of the selected text. Enter the amount by which you want to expand or condense the text in the spin button.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/positionpage/kerninglb\"> Especifica o espazamento entre caracteres do texto seleccionado. Para espazamento expandido ou condensado, introduza a cantidade que quere expandir ou condensar o texto na caixa <emph>por </emph>.</ahelp>"
#: 05020500.xhp
msgctxt ""
"05020500.xhp\n"
"par_id3154908\n"
"21\n"
"par_id3146975\n"
"help.text"
msgid "<emph>Default</emph> - uses the character spacing specified in the font type"
msgstr "<emph>Estándar </emph> - utiliza o espazo entre caracteres especificado no tipo de letra"
#: 05020500.xhp
msgctxt ""
"05020500.xhp\n"
"par_id3156543\n"
"22\n"
"help.text"
msgid "<emph>Expanded</emph> - increases the character spacing"
msgstr "<emph>Expandido </emph> - aumenta o espazamento entre caracteres"
#: 05020500.xhp
msgctxt ""
"05020500.xhp\n"
"par_id3154297\n"
"23\n"
"help.text"
msgid "<emph>Condensed</emph> - decreases the character spacing"
msgstr "<emph>Condensed </emph> - diminúe o espazamento entre caracteres"
#: 05020500.xhp
msgctxt ""
"05020500.xhp\n"
"hd_id3157870\n"
"25\n"
"help.text"
msgid "by"
msgstr "de"
#: 05020500.xhp
msgctxt ""
"05020500.xhp\n"
"par_id3146974\n"
"26\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/positionpage/kerningsb\">Enter the amount by which you want to expand or condense the character spacing for the selected text.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/positionpage/kerningsb\"> Introduza o valor polo cal desexa expandir ou condensar o espazamento entre caracteres para o texto seleccionado.</ahelp>"
msgid "To increase the spacing, set a positive value; to reduce it, set a negative value."
msgstr ""
#: 05020500.xhp
msgctxt ""
@@ -18933,12 +18896,12 @@ msgid "<link href=\"text/shared/01/05020600.xhp\" name=\"Asian Layout\">Asian La
msgstr "<link href=\"text/shared/01/05990000.xhp\" name=\"Texto\">Texto</link>"
#: 05020600.xhp
#, fuzzy
msgctxt ""
"05020600.xhp\n"
"par_id3155351\n"
"2\n"
"help.text"
msgid "<ahelp hid=\"\">Sets the options for double-line writing for Asian languages. Select the characters in your text, and then choose this command.</ahelp>"
msgid "<ahelp hid=\".\">Sets the options for double-line writing for Asian languages. Select the characters in your text, and then choose this command.</ahelp>"
msgstr "<ahelp hid=\"\"> Define as opcións para a liña dobre escrita para idiomas asiáticos. Seleccione os caracteres no seu texto, e logo escolla este comando.</ahelp>"
#: 05020600.xhp
@@ -22066,12 +22029,12 @@ msgid "Left margin"
msgstr "Marxe esquerda"
#: 05040300.xhp
#, fuzzy
msgctxt ""
"05040300.xhp\n"
"par_id3150449\n"
"18\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/headfootformatpage/spinMargLeft\">Enter the amount of space to leave between the left edge of the page and the left edge of the header.</ahelp>"
msgid "<ahelp hid=\"svx/ui/headfootformatpage/spinMargLeft\">Enter the amount of space to leave between the left page margin and the left edge of the header.</ahelp>"
msgstr "<ahelp hid=\"svx/ui/headfootformatpage/spinMargLeft\"> Insire a cantidade de espazo a deixar entre o bordo esquerdo da páxina eo bordo esquerda da cabeceira.</ahelp>"
#: 05040300.xhp
@@ -22084,12 +22047,12 @@ msgid "Right margin"
msgstr "Marxe dereita"
#: 05040300.xhp
#, fuzzy
msgctxt ""
"05040300.xhp\n"
"par_id3157322\n"
"20\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/headfootformatpage/spinMargRight\">Enter the amount of space to leave between the right edge of the page and the right edge of the header.</ahelp>"
msgid "<ahelp hid=\"svx/ui/headfootformatpage/spinMargRight\">Enter the amount of space to leave between the right page margin and the right edge of the header.</ahelp>"
msgstr "<ahelp hid=\"svx/ui/headfootformatpage/spinMargRight\"> Insire a cantidade de espazo a deixar entre o bordo dereita da páxina eo bordo dereita da cabeceira.</ahelp>"
#: 05040300.xhp
@@ -37890,12 +37853,12 @@ msgid "Append libraries"
msgstr "Anexar bibliotecas"
#: 06130500.xhp
#, fuzzy
msgctxt ""
"06130500.xhp\n"
"par_id3155271\n"
"2\n"
"help.text"
msgid "<ahelp hid=\"\">Locate the <item type=\"productname\">%PRODUCTNAME</item> Basic library that you want to add to the current list, and then click Open.</ahelp>"
msgid "<ahelp hid=\".\">Locate the <item type=\"productname\">%PRODUCTNAME</item> Basic library that you want to add to the current list, and then click Open.</ahelp>"
msgstr "<ahelp hid=\"\"> Localice o <item type =\"productname\">% PRODUCTNAME </item> biblioteca Basic que desexa engadir á lista actual e, a continuación, prema en Abrir.</ahelp>"
#: 06130500.xhp
@@ -43548,27 +43511,27 @@ msgid "Export as PDF"
msgstr "Exportar como PDF"
#: ref_pdf_export.xhp
#, fuzzy
msgctxt ""
"ref_pdf_export.xhp\n"
"bm_id3149532\n"
"help.text"
msgid "<bookmark_value>PDF;export</bookmark_value> <bookmark_value>portable document format</bookmark_value> <bookmark_value>exporting;to PDF</bookmark_value>"
msgid "<bookmark_value>PDF;export</bookmark_value> <bookmark_value>portable document format</bookmark_value> <bookmark_value>exporting;to PDF</bookmark_value>"
msgstr "<bookmark_value> PDF; exportación </bookmark_value> <bookmark_value> portable document format </bookmark_value> <bookmark_value> exportación; para PDF </bookmark_value>"
#: ref_pdf_export.xhp
#, fuzzy
msgctxt ""
"ref_pdf_export.xhp\n"
"hd_id3149532\n"
"52\n"
"help.text"
msgid "<variable id=\"export_as_pdf\"><variable id=\"ref_pdf_export\"><link href=\"text/shared/01/ref_pdf_export.xhp\" name=\"Export as PDF\">Export as PDF</link></variable></variable>"
msgstr "<variable id=\"export_as_pdf\"><variable id=\"ref_pdf_export\"><link href=\"text/shared/01/ref_pdf_export.xhp\" name=\"Export as PDF\">Exportar a PDF...</link></variable></variable>"
msgid "<variable id=\"ref_pdf_export\"><link href=\"text/shared/01/ref_pdf_export.xhp\" name=\"Export as PDF\">Export as PDF</link></variable>"
msgstr "<variable id=\"ref_pdf_send_as\"><link href=\"text/shared/01/ref_pdf_send_as.xhp\" name=\"E-mail como PDF\">Correo electrónico como PDF</link></variable>"
#: ref_pdf_export.xhp
msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3154044\n"
"1\n"
"help.text"
msgid "<variable id=\"export\"><ahelp hid=\"FILTER_EDIT_RID_PDF_EXPORT_DLG_ED_PAGES\">Saves the current file to Portable Document Format (PDF) version 1.4.</ahelp> A PDF file can be viewed and printed on any platform with the original formatting intact, provided that supporting software is installed.</variable>"
msgstr "<variable id=\"export\"> <ahelp hid=\"FILTER_EDIT_RID_PDF_EXPORT_DLG_ED_PAGES\"> Gardar o ficheiro actual para Portable Document Format (PDF) versión 1.4.</ahelp> Un ficheiro PDF pode ser visto e impreso en calquera plataforma con o formato orixinal intacta, sempre que haxa un programa compatible instalado. </variable>"
@@ -43585,7 +43548,6 @@ msgstr "Lapela Xeral"
msgctxt ""
"ref_pdf_export.xhp\n"
"hd_id3148520\n"
"2\n"
"help.text"
msgid "Range"
msgstr "Intervalo"
@@ -43594,7 +43556,6 @@ msgstr "Intervalo"
msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3154230\n"
"3\n"
"help.text"
msgid "Sets the export options for the pages included in the PDF file."
msgstr "Configura as opcións de exportación das páxinas incluídas no ficheiro PDF."
@@ -43603,7 +43564,6 @@ msgstr "Configura as opcións de exportación das páxinas incluídas no ficheir
msgctxt ""
"ref_pdf_export.xhp\n"
"hd_id3166445\n"
"4\n"
"help.text"
msgid "All"
msgstr "Todo"
@@ -43612,7 +43572,6 @@ msgstr "Todo"
msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3149893\n"
"5\n"
"help.text"
msgid "<ahelp hid=\"filter/ui/pdfgeneralpage/all\">Exports all defined print ranges. If no print range is defined, exports the entire document.</ahelp>"
msgstr "<ahelp hid=\"filter/ui/pdfgeneralpage/all\"> Exportacións todos os intervalos de impresión definidos. Se ningunha área de impresión é definida, exporta o documento completo.</ahelp>"
@@ -43621,7 +43580,6 @@ msgstr "<ahelp hid=\"filter/ui/pdfgeneralpage/all\"> Exportacións todos os inte
msgctxt ""
"ref_pdf_export.xhp\n"
"hd_id3154673\n"
"6\n"
"help.text"
msgid "Pages"
msgstr "Páxinas"
@@ -43630,7 +43588,6 @@ msgstr "Páxinas"
msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3147571\n"
"7\n"
"help.text"
msgid "<ahelp hid=\".\">Exports the pages you type in the box.</ahelp>"
msgstr ""
@@ -43639,7 +43596,6 @@ msgstr ""
msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3145136\n"
"53\n"
"help.text"
msgid "To export a range of pages, use the format 3-6. To export single pages, use the format 7;9;11. If you want, you can export a combination of page ranges and single pages, by using a format like 3-6;8;10;12."
msgstr "Para exportar intervalos de páxinas, utilice o formato 3-6. Para exportar páxinas soltas, utilice o formato 7;9;11. Pode exportar unha combinación de intervalos de páxinas e páxinas soltas utilizando o formato 3-6;8;10;12."
@@ -43648,7 +43604,6 @@ msgstr "Para exportar intervalos de páxinas, utilice o formato 3-6. Para export
msgctxt ""
"ref_pdf_export.xhp\n"
"hd_id3147043\n"
"8\n"
"help.text"
msgid "Selection"
msgstr "Selección"
@@ -43657,7 +43612,6 @@ msgstr "Selección"
msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3150774\n"
"9\n"
"help.text"
msgid "<ahelp hid=\"filter/ui/pdfgeneralpage/selection\">Exports the current selection.</ahelp>"
msgstr "<ahelp hid=\"filter/ui/pdfgeneralpage/selección\"> Exporta a selección actual.</ahelp>"
@@ -43872,7 +43826,7 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_idN207C2\n"
"help.text"
msgid "To export comments of Writer documents as they are shown in %PRODUCTNAME, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Print</emph> and select the <emph>In margins</emph> option in the <emph>Comments</emph> area. The exported pages will be scaled down and the comments will be placed into their margins."
msgid "To export comments of Writer documents as they are shown in %PRODUCTNAME, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph> </caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Print</emph> and select the <emph>In margins</emph> option in the <emph>Comments</emph> area. The exported pages will be scaled down and the comments will be placed into their margins."
msgstr "Para exportar comentarios de documentos do Writer como son mostrados en% PRODUCTNAME, seleccione <emph><switchinline select =\"sys\"> <caseinline select =\"MAC\">% PRODUCTNAME - Preferencias </caseinline> <defaultinline> Ferramentas - Opcións </defaultinline> </switchinline> -% PRODUCTNAME Writer - Imprimir </emph> e seleccione <emph>En marxes </emph> opción no <emph>Comentarios </emph> área. As páxinas exportadas serán reducidas e os comentarios serán colocados nas súas marxes."
#: ref_pdf_export.xhp
@@ -43932,11 +43886,12 @@ msgid "Allow duplicate field names"
msgstr "Permitir nomes de campos duplicados"
#: ref_pdf_export.xhp
#, fuzzy
msgctxt ""
"ref_pdf_export.xhp\n"
"par_id102620090953596\n"
"help.text"
msgid "<ahelp hid=\".\">Allows to use the same field name for multiple fields in the generated PDF file. If disabled, field names will be exported using generated unique names.</ahelp>"
msgid "<ahelp hid=\".\">Allows you to use the same field name for multiple fields in the generated PDF file. If disabled, field names will be exported using generated unique names.</ahelp>"
msgstr "<ahelp hid=\".\"> Permite usar o mesmo nome de campo a varios campos no ficheiro PDF xerado. Se desactivado, os nomes de campo serán exportados usando nomes exclusivos xerados.</ahelp>"
#: ref_pdf_export.xhp
@@ -43953,7 +43908,7 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id8551896\n"
"help.text"
msgid "<ahelp hid=\".\">If switched on, automatically inserted blank pages are exported to pdf file. This is best if you are printing the pdf file double-sided. Example: In a book a chapter paragraph style is set to always start with an odd numbered page. The previous chapter ends on an odd page. %PRODUCTNAME inserts an even numbered blank page. This option controls whether to export that even numbered page or not.</ahelp>"
msgid "<ahelp hid=\".\">If switched on, automatically inserted blank pages are exported to the PDF file. This is best if you are printing the pdf file double-sided. Example: In a book a chapter paragraph style is set to always start with an odd numbered page. If the previous chapter ends on an odd page, %PRODUCTNAME inserts an even numbered blank page. This option controls whether to export that even numbered page or not.</ahelp>"
msgstr "<ahelp hid=\".\">Estando esta opción activada, imprímense páxinas en branco inseridas automaticamente. Isto é útil cando se imprime por dúas caras. Nos libros, por exemplo, pódese definir o estilo de parágrafo \"capítulo\" de forma que comece sempre nunha páxina impar. Se o capítulo precedente termina nunha páxina impar, %PRODUCTNAME insire unha páxina en branco co número par correspondente. Este opción serve para estabelecer se se imprime esta páxina par ou non.</ahelp>"
#: ref_pdf_export.xhp
@@ -44438,11 +44393,12 @@ msgid "Export bookmarks as named destinations"
msgstr "Exportar marcadores como destinos con nome"
#: ref_pdf_export.xhp
#, fuzzy
msgctxt ""
"ref_pdf_export.xhp\n"
"par_id4809411\n"
"help.text"
msgid "<ahelp hid=\".\">The bookmarks (targets of references) in PDF files can be defined as rectangular areas. Additionally, bookmarks to named objects can be defined by their names. Enable the checkbox to export the names of objects in your document as valid bookmark targets. This allows to link to those objects by name from other documents.</ahelp>"
msgid "<ahelp hid=\".\">The bookmarks (targets of references) in PDF files can be defined as rectangular areas. Additionally, bookmarks to named objects can be defined by their names. Enable the checkbox to export the names of objects in your document as valid bookmark targets. This allows you to link to those objects by name from other documents.</ahelp>"
msgstr "<ahelp hid=\".\"> Os marcadores (destinos de referencias) en arquivos PDF poden ser definidos como áreas rectangulares. Ademais, marcados para obxectos nomeados pode ser definido polos seus nomes. Active a caixa de verificación para exportar os nomes dos obxectos no seu documento como obxectivos marcador válidos. Isto permite conectarse a estes obxectos polo nome doutros documentos.</ahelp>"
#: ref_pdf_export.xhp
@@ -44570,8 +44526,8 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id41123951\n"
"help.text"
msgid "You can enter a password to open the file. You can enter an optional password that allows to edit the document."
msgstr "Pode escribir un contrasinal para abrir o ficheiro. Pode escribir un contrasinal opcional que permite editar o documento."
msgid "You can specify a password needed to view the PDF. You can enter an optional password that allows the person viewing the PDF to edit and/or print the document."
msgstr ""
#: ref_pdf_export.xhp
msgctxt ""
@@ -44787,7 +44743,7 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id22107306\n"
"help.text"
msgid "The key store to be used can be selected under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Security - Certificate Path</emph>."
msgid "The key store to be used can be selected under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph> </caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Security - Certificate Path</emph>."
msgstr ""
#: ref_pdf_export.xhp
@@ -44931,7 +44887,7 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id39089022\n"
"help.text"
msgid "The list of TSA URLs that can be selected is maintained under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Security - TSAs</emph>."
msgid "The list of TSA URLs that can be selected is maintained under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph> </caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Security - TSAs</emph>."
msgstr ""
#: ref_pdf_export.xhp
@@ -44946,7 +44902,6 @@ msgstr ""
msgctxt ""
"ref_pdf_export.xhp\n"
"hd_id3150507\n"
"50\n"
"help.text"
msgid "Export button"
msgstr "Botón de exportar"
@@ -44955,7 +44910,6 @@ msgstr "Botón de exportar"
msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3146975\n"
"51\n"
"help.text"
msgid "<ahelp hid=\".\">Exports the current file in PDF format.</ahelp>"
msgstr "<ahelp hid=\".\"> Exporta o ficheiro actual en formato PDF.</ahelp>"

View File

@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-04-16 21:40+0200\n"
"PO-Revision-Date: 2015-12-11 12:26+0000\n"
"Last-Translator: system user <>\n"
"POT-Creation-Date: 2016-05-23 21:37+0200\n"
"PO-Revision-Date: 2016-05-02 11:54+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
"X-POOTLE-MTIME: 1449836791.000000\n"
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1462190085.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -139,8 +139,8 @@ msgctxt ""
"01140000.xhp\n"
"par_idN1089D\n"
"help.text"
msgid "You can show and hide the <emph>Visible Buttons</emph>. Click the arrow at the end of the toolbar to access the <emph>Visible Buttons</emph> command."
msgstr "Pode mostrar e ocultar os <emph>botóns visíbeis</emph>. Prema na frecha situada na fin da barra de ferramentas para acceder á orde <emph>Botóns visíbeis</emph>."
msgid "You can change which buttons are visible in the toolbars. Right-click a toolbar to access the <emph>Visible Buttons</emph> command."
msgstr ""
#: 01140000.xhp
msgctxt ""
@@ -10325,7 +10325,6 @@ msgstr "Aplicar estilo"
msgctxt ""
"02010000.xhp\n"
"hd_id3148520\n"
"1\n"
"help.text"
msgid "<link href=\"text/shared/02/02010000.xhp\" name=\"Apply Style\">Apply Style</link>"
msgstr "<link href=\"text/shared/02/02010000.xhp\" name=\"Aplicar estilo\">Aplicar estilo</link>"
@@ -10334,7 +10333,6 @@ msgstr "<link href=\"text/shared/02/02010000.xhp\" name=\"Aplicar estilo\">Aplic
msgctxt ""
"02010000.xhp\n"
"par_id3155351\n"
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:StyleApply\">Assigns a style to the current paragraph, selected paragraphs, or to a selected object.</ahelp>"
msgstr "<ahelp hid=\".uno:StyleApply\">Atribúe un estilo ao parágrafo actual e aos obxectos ou parágrafos seleccionados.</ahelp>"
@@ -10352,22 +10350,22 @@ msgctxt ""
"02010000.xhp\n"
"par_idN10631\n"
"help.text"
msgid "By pressing the Down arrow button on the right of a style name, you show pop-up menu that allows to update style from selection or to edit style."
msgid "Clicking on the Down arrow button on the right of a style name shows a pop-up menu that allows you to update the style from the current selection or to edit the style."
msgstr ""
#: 02010000.xhp
#, fuzzy
msgctxt ""
"02010000.xhp\n"
"par_id3155552\n"
"help.text"
msgid "<image id=\"img_id3152801\" src=\"res/helpimg/zellvor.png\" width=\"1.0402in\" height=\"0.2098in\" localize=\"true\"><alt id=\"alt_id3152801\">Apply Style</alt></image>"
msgid "<image id=\"img_id3152801\" src=\"res/helpimg/zellvor.png\" width=\"2.642cm\" height=\"0.533cm\" localize=\"true\"><alt id=\"alt_id3152801\">Apply Style</alt></image>"
msgstr "<image id=\"img_id3154515\" src=\"res/helpimg/zellvor.png\" width=\"1.4098inch\" height=\"0.2799inch\" localize=\"true\"><alt id=\"alt_id3154515\">Estilos de cela</alt></image>"
#: 02010000.xhp
msgctxt ""
"02010000.xhp\n"
"par_id3145345\n"
"3\n"
"help.text"
msgid "Apply Style"
msgstr "Aplicar estilo"
@@ -11904,7 +11902,7 @@ msgctxt ""
"07010000.xhp\n"
"par_idN108C6\n"
"help.text"
msgid "Enable Load URL with the Visible Buttons command (click the arrow at the end of the toolbar)."
msgid "Enable Load URL with the <emph>Visible Buttons</emph> command (right-click the toolbar)."
msgstr ""
#: 07060000.xhp
@@ -12665,35 +12663,36 @@ msgctxt ""
"09070200.xhp\n"
"tit\n"
"help.text"
msgid "Mail & News"
msgstr "Correo e noticias"
msgid "Mail"
msgstr ""
#: 09070200.xhp
#, fuzzy
msgctxt ""
"09070200.xhp\n"
"hd_id3147102\n"
"1\n"
"help.text"
msgid "<link href=\"text/shared/02/09070200.xhp\" name=\"Mail News\">Mail & News</link>"
msgstr "<link href=\"text/shared/02/09070200.xhp\" name=\"Correo e noticias\">Correo e noticias</link>"
msgid "<link href=\"text/shared/02/09070200.xhp\" name=\"Mail\">Mail</link>"
msgstr "<link href=\"text/shared/02/01170203.xhp\" name=\"Datos\">Datos</link>"
#: 09070200.xhp
#, fuzzy
msgctxt ""
"09070200.xhp\n"
"par_id3153049\n"
"2\n"
"help.text"
msgid "On the <emph>Mail & News</emph> page in the <link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink dialog\">Hyperlink dialog</link> you can edit hyperlinks for e-mail or news addresses."
msgid "On the <emph>Mail</emph> page in the <link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink dialog\">Hyperlink dialog</link> you can edit hyperlinks for e-mail addresses."
msgstr "Na páxina <emph>Correo e noticias</emph> da caixa de diálogo <link href=\"text/shared/02/09070000.xhp\" name=\"Caixa de diálogo Hiperligazón\">Hiperligazón</link>, edítanse as hiperligazóns dos enderezos de noticias ou de correo electrónico."
#: 09070200.xhp
msgctxt ""
"09070200.xhp\n"
"hd_id3153528\n"
"3\n"
"help.text"
msgid "Mail & News"
msgstr "Correo e noticias"
msgid "Mail"
msgstr ""
#: 09070200.xhp
msgctxt ""
@@ -12714,25 +12713,6 @@ msgctxt ""
msgid "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVXPAGE_HYPERLINK_MAIL_RB_LINKTYP_MAIL\">Assigns the specified e-mail address to the hyperlink.</ahelp> Clicking the new hyperlink in the document will open a new message document, addressed to the receiver specified in the <emph>Recipient</emph> field."
msgstr "<ahelp visibility=\"visible\" hid=\"SVX_RADIOBUTTON_RID_SVXPAGE_HYPERLINK_MAIL_RB_LINKTYP_MAIL\">Atribúe o enderezo de correo electrónico especificado á hiperligazón.</ahelp> Se preme na nova hiperligazón, ábrese un novo documento de mensaxe dirixido ao destinatario especificado no campo <emph>Correo electrónico</emph>."
#: 09070200.xhp
msgctxt ""
"09070200.xhp\n"
"hd_id3155628\n"
"6\n"
"help.text"
msgid "News"
msgstr "Noticias"
#: 09070200.xhp
#, fuzzy
msgctxt ""
"09070200.xhp\n"
"par_id3149955\n"
"7\n"
"help.text"
msgid "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVXPAGE_HYPERLINK_MAIL_RB_LINKTYP_NEWS\">Assigns a news address to the hyperlink.</ahelp> Clicking the hyperlink in the document will open a new message document to the news group you entered in the <emph>Recipient</emph> field."
msgstr "<ahelp visibility=\"visible\" hid=\"SVX_RADIOBUTTON_RID_SVXPAGE_HYPERLINK_MAIL_RB_LINKTYP_NEWS\">Atribúe un enderezo de noticias á hiperligazón.</ahelp> Se preme na hiperligazón do documento, ábrese un novo documento de mensaxe para o grupo de noticias introducido no campo <emph>Destinatario</emph>."
#: 09070200.xhp
msgctxt ""
"09070200.xhp\n"

View File

@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-03-09 20:49+0100\n"
"PO-Revision-Date: 2015-12-11 12:27+0000\n"
"Last-Translator: system user <>\n"
"POT-Creation-Date: 2016-05-23 21:37+0200\n"
"PO-Revision-Date: 2016-05-02 11:54+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
"X-POOTLE-MTIME: 1449836855.000000\n"
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1462190095.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -4889,12 +4889,12 @@ msgid "<link href=\"text/shared/autopi/01100400.xhp\" name=\"Report Wizard - Cho
msgstr "<link href=\"text/shared/autopi/01100400.xhp\" name=\"Asistente de informes- Escoller deseño\">Asistente de informes- Escoller deseño</link>"
#: 01100400.xhp
#, fuzzy
msgctxt ""
"01100400.xhp\n"
"par_id3154894\n"
"1\n"
"help.text"
msgid "<ahelp hid=\"\">Choose the layout from different templates and styles, and choose landscape or portrait page orientation.</ahelp>"
msgid "<ahelp hid=\".\">Choose the layout from different templates and styles, and choose landscape or portrait page orientation.</ahelp>"
msgstr "<ahelp hid=\"\">Escolla o deseño de entre os diferentes modelos e estilos, así como a orientación vertical ou horizontal da páxina.</ahelp>"
#: 01100400.xhp
@@ -8132,13 +8132,14 @@ msgid "Outlook address book"
msgstr "Axenda de enderezos do Outlook"
#: 01170000.xhp
#, fuzzy
msgctxt ""
"01170000.xhp\n"
"par_id3159176\n"
"15\n"
"help.text"
msgid "<ahelp hid=\"modules/sabpilot/ui/selecttypepage/outlook\">Select this option if you already use an address book in Microsoft Outlook (not Outlook Express).</ahelp>"
msgstr ""
msgstr "<ahelp hid=\"modules/sabpilot/ui/selecttypepage/ldap\">Seleccione esta opción se xa dispón de datos de enderezos nun servidor LDAP.</ahelp>"
#: 01170000.xhp
msgctxt ""
@@ -8150,13 +8151,14 @@ msgid "Windows system address book"
msgstr "Axenda de enderezos do sistema de Windows"
#: 01170000.xhp
#, fuzzy
msgctxt ""
"01170000.xhp\n"
"par_id3150254\n"
"17\n"
"help.text"
msgid "<ahelp hid=\"modules/sabpilot/ui/selecttypepage/windows\">Select this option if you already use an address book in Microsoft Outlook Express.</ahelp>"
msgstr ""
msgstr "<ahelp hid=\"modules/sabpilot/ui/selecttypepage/ldap\">Seleccione esta opción se xa dispón de datos de enderezos nun servidor LDAP.</ahelp>"
#: 01170000.xhp
msgctxt ""
@@ -8535,12 +8537,12 @@ msgid "<link href=\"text/shared/autopi/01170500.xhp\" name=\"Field Assignment\">
msgstr "<link href=\"text/shared/autopi/01170500.xhp\" name=\"Atribución de campo\">Atribución de campo</link>"
#: 01170500.xhp
#, fuzzy
msgctxt ""
"01170500.xhp\n"
"par_id3143284\n"
"2\n"
"help.text"
msgid "<ahelp hid=\"\">Opens a dialog that allows you to specify the field assignment.</ahelp>"
msgid "<ahelp hid=\".\">Opens a dialog that allows you to specify the field assignment.</ahelp>"
msgstr "<ahelp hid=\"\">Abre unha caixa de diálogo que permite especificar a atribución do campo.</ahelp>"
#: 01170500.xhp

View File

@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-03-09 20:49+0100\n"
"PO-Revision-Date: 2016-04-16 23:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"POT-Creation-Date: 2016-05-23 21:37+0200\n"
"PO-Revision-Date: 2016-05-02 11:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.7\n"
"X-POOTLE-MTIME: 1460848285.000000\n"
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1462190109.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -5470,12 +5470,12 @@ msgid "Table description"
msgstr "Descrición de táboa"
#: 05040200.xhp
#, fuzzy
msgctxt ""
"05040200.xhp\n"
"par_id3154422\n"
"4\n"
"help.text"
msgid "<ahelp hid=\"\">Displays the description for the selected table.</ahelp>"
msgid "<ahelp hid=\".\">Displays the description for the selected table.</ahelp>"
msgstr "<ahelp hid=\"\">Mostra a descrición da táboa seleccionada..</ahelp>"
#: 11000002.xhp
@@ -5566,12 +5566,12 @@ msgid "<link href=\"text/shared/explorer/database/11020000.xhp\" name=\"ODBC\">O
msgstr "<link href=\"text/shared/explorer/database/11020000.xhp\" name=\"ODBC\">ODBC</link>"
#: 11020000.xhp
#, fuzzy
msgctxt ""
"11020000.xhp\n"
"par_id3150499\n"
"2\n"
"help.text"
msgid "<ahelp hid=\"\">Specifies the settings for <link href=\"text/shared/00/00000005.xhp#odbc\" name=\"ODBC\">ODBC</link> databases. This includes your user access data, driver settings, and font definitions.</ahelp>"
msgid "<ahelp hid=\".\">Specifies the settings for <link href=\"text/shared/00/00000005.xhp#odbc\" name=\"ODBC\">ODBC</link> databases. This includes your user access data, driver settings, and font definitions.</ahelp>"
msgstr "<ahelp visibility=\"visible\" hid=\"\">Especifica a configuración das bases de datos <link href=\"text/shared/00/00000005.xhp#odbc\" name=\"ODBC\">ODBC</link>. Inclúe os datos de acceso do usuario, a configuración do controlador e as definicións da fonte.</ahelp>"
#: 11020000.xhp
@@ -5808,13 +5808,13 @@ msgid "<link href=\"text/shared/explorer/database/11030000.xhp\" name=\"dBase\">
msgstr "<link href=\"text/shared/explorer/database/11020000.xhp\" name=\"ODBC\">ODBC</link>"
#: 11030000.xhp
#, fuzzy
msgctxt ""
"11030000.xhp\n"
"par_id3147088\n"
"2\n"
"help.text"
msgid "<ahelp hid=\"\">Specify the settings for a dBASE database.</ahelp>"
msgstr ""
msgid "<ahelp hid=\".\">Specify the settings for a dBASE database.</ahelp>"
msgstr "<ahelp hid=\".\">Especifica as opcións para bases de datos MySQL.</ahelp>"
#: 11030000.xhp
msgctxt ""
@@ -8855,7 +8855,7 @@ msgctxt ""
"dabawiz02.xhp\n"
"par_idN105B4\n"
"help.text"
msgid "<ahelp hid=\".\">Select to register the database within your user copy of %PRODUCTNAME. After registering, the database is displayed in the <emph>View - Data Sources</emph> window. You must register a database to be able to insert the database fields in a document (Insert - Fields - More Fields) or in a mail merge.</ahelp>"
msgid "<ahelp hid=\".\">Select to register the database within your user copy of %PRODUCTNAME. After registering, the database is displayed in the <emph>View - Data Sources</emph> window. You must register a database to be able to insert the database fields in a document (Insert - Field - More Fields) or in a mail merge.</ahelp>"
msgstr ""
#: dabawiz02.xhp

View File

@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-04-16 21:40+0200\n"
"PO-Revision-Date: 2016-04-16 23:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"POT-Creation-Date: 2016-05-23 22:09+0200\n"
"PO-Revision-Date: 2016-05-02 11:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.7\n"
"X-POOTLE-MTIME: 1460848285.000000\n"
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1462190116.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -7292,14 +7292,13 @@ msgctxt ""
"error_report.xhp\n"
"bm_id3150616\n"
"help.text"
msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
msgid "<bookmark_value>Error Report Tool</bookmark_value> <bookmark_value>reports;error reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Error Report Tool</bookmark_value>"
msgstr ""
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"17\n"
"help.text"
msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Error Report Tool</link></variable>"
msgstr "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Ferramenta de informe de erros\">Ferramenta de informe de erros</link></variable>"
@@ -7308,7 +7307,6 @@ msgstr "<variable id=\"error_report\"><link href=\"text/shared/guide/error_repor
msgctxt ""
"error_report.xhp\n"
"par_id3153345\n"
"1\n"
"help.text"
msgid "The Error Report Tool starts automatically when a program crash occurs."
msgstr ""
@@ -7317,7 +7315,6 @@ msgstr ""
msgctxt ""
"error_report.xhp\n"
"par_id3147088\n"
"2\n"
"help.text"
msgid "The Error Report Tool gathers all necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated error report."
msgstr "A ferramenta de informe de erros reúne toda a información necesaria para axudar aos programadores na mellora do código, e así evitar eses erros nas futuras versións. Axúdenos a mellorar o software enviándonos o informe de erros xerado."
@@ -7326,7 +7323,6 @@ msgstr "A ferramenta de informe de erros reúne toda a información necesaria pa
msgctxt ""
"error_report.xhp\n"
"hd_id3148538\n"
"4\n"
"help.text"
msgid "Starting the Error Report Tool"
msgstr "Iniciar a ferramenta de informe de erros"
@@ -7335,7 +7331,6 @@ msgstr "Iniciar a ferramenta de informe de erros"
msgctxt ""
"error_report.xhp\n"
"par_id3149811\n"
"5\n"
"help.text"
msgid "With most program crashes the Error Report Tool will start automatically."
msgstr ""
@@ -7344,7 +7339,6 @@ msgstr ""
msgctxt ""
"error_report.xhp\n"
"hd_id3154046\n"
"7\n"
"help.text"
msgid "Completing the Report"
msgstr "Completar o informe"
@@ -7353,7 +7347,6 @@ msgstr "Completar o informe"
msgctxt ""
"error_report.xhp\n"
"par_id3147335\n"
"8\n"
"help.text"
msgid "On the main Error Report Tool dialog, you can enter some additional information that may help the developers to localize the error. For example, if the error only appears after a change in your hardware or software environment, or if you clicked on a button, please include that information."
msgstr "Na caixa de diálogo principal da ferramenta de informe de erros pode introducir información adicional que pode axudar aos nosos programadores a localizar o erro. Por exemplo, se o erro só aparece despois dun cambio no contorno de hardware ou de software, ou se premeu nun botón, inclúa esa información."
@@ -7362,7 +7355,6 @@ msgstr "Na caixa de diálogo principal da ferramenta de informe de erros pode in
msgctxt ""
"error_report.xhp\n"
"hd_id3159399\n"
"9\n"
"help.text"
msgid "Sending the Error Report"
msgstr "Enviar informe de erros por correo electrónico"
@@ -7371,7 +7363,6 @@ msgstr "Enviar informe de erros por correo electrónico"
msgctxt ""
"error_report.xhp\n"
"par_id3150504\n"
"10\n"
"help.text"
msgid "The Error Report Tool uses the HTTP PUT / SOAP protocol to send the report data. You may optionally enter some descriptive text that will help us to identify the context of the program crash. Then click the <emph>Send</emph> button."
msgstr "A ferramenta de informe de erros utiliza o protocolo HTTP PUT / SOAP para enviar os datos do informe. Pode introducir un texto descritivo que nos axudará a identificar o contexto da falla do programa . A continuación prema o botón <emph>Enviar</emph>."
@@ -7380,25 +7371,23 @@ msgstr "A ferramenta de informe de erros utiliza o protocolo HTTP PUT / SOAP par
msgctxt ""
"error_report.xhp\n"
"par_id3149670\n"
"11\n"
"help.text"
msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
msgstr "Non recibirá ningunha resposta ao seu informe de erros. Se necesita soporte, visite o <link href=\"text/shared/main0108.xhp\">foro de soporte</link> na internet."
#: error_report.xhp
#, fuzzy
msgctxt ""
"error_report.xhp\n"
"par_id3153526\n"
"12\n"
"help.text"
msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you allow to be contacted by e-mail, should additional information be required. By default this box is not marked, so you will not get any e-mail."
msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by e-mail, should additional information be required. By default this box is not marked, so you will not get any e-mail."
msgstr "Pode optar por responder ás perguntas dos programadores acerca do erro. Marque a caixa de verificación correspondente para que poidamos pornos en contacto con vostede por correo electrónico no caso de ser necesaria máis información. Esa caixa non está marcada por defecto e por tanto non recibirá ningún correo electrónico noso se non o desexa."
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150792\n"
"13\n"
"help.text"
msgid "What Data is Sent?"
msgstr "Que datos son enviados?"
@@ -7407,7 +7396,6 @@ msgstr "Que datos son enviados?"
msgctxt ""
"error_report.xhp\n"
"par_id3154366\n"
"14\n"
"help.text"
msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
msgstr "O informe de erros consiste en varios ficheiros. O principal contén información sobre o tipo de erro, nome e versión do sistema operativo, uso da memoria e a descrición fornecida. Pode premer no botón <emph>Mostrar informe</emph> na caixa de diálogo principal da ferramenta de informe de erros para ver o que se enviará no ficheiro principal."
@@ -7416,7 +7404,6 @@ msgstr "O informe de erros consiste en varios ficheiros. O principal contén inf
msgctxt ""
"error_report.xhp\n"
"par_id3151177\n"
"15\n"
"help.text"
msgid "In addition, relevant memory contents and stack traces are gathered by some system standard tools (\"dbhhelp.dll\" on Windows systems, \"pstack\" on UNIX systems). This information will be sent also."
msgstr "Alén disto, o contido relevante da memoria e os rastros da pila reúnense mediante algunhas ferramentas estándar do sistema ('dbhhelp.dll' nos sistemas Windows; 'pstack' nos sistemas UNIX). Esta información tamén se envía."
@@ -15271,12 +15258,12 @@ msgid "<variable id=\"print_blackwhite\"><link href=\"text/shared/guide/print_bl
msgstr "<variable id=\"print_blackwhite\"><link href=\"text/shared/guide/print_blackwhite.xhp\" name=\"Imprimir en branco e negro\">Imprimir en branco e negro</link></variable>"
#: print_blackwhite.xhp
#, fuzzy
msgctxt ""
"print_blackwhite.xhp\n"
"hd_id3150499\n"
"3\n"
"help.text"
msgid "Printing text and graphics in black and white"
msgid "Printing Text and Images in Black and White"
msgstr "Imprimir texto e imaxes en branco e negro"
#: print_blackwhite.xhp
@@ -15325,12 +15312,12 @@ msgid "The current document will be printed in black and white."
msgstr "O documento imprimirase en branco e negro."
#: print_blackwhite.xhp
#, fuzzy
msgctxt ""
"print_blackwhite.xhp\n"
"hd_id3147653\n"
"9\n"
"help.text"
msgid "Printing in black and white in <item type=\"productname\">%PRODUCTNAME</item> Impress and <item type=\"productname\">%PRODUCTNAME</item> Draw"
msgid "Printing in Black and White in <item type=\"productname\">%PRODUCTNAME</item> Impress and <item type=\"productname\">%PRODUCTNAME</item> Draw"
msgstr "Imprimir en branco e negro en <item type=\"productname\">%PRODUCTNAME</item> Impress e <item type=\"productname\">%PRODUCTNAME</item> Draw"
#: print_blackwhite.xhp
@@ -15388,12 +15375,12 @@ msgid "<emph>Black & white</emph> converts all colors into the two values black
msgstr ""
#: print_blackwhite.xhp
#, fuzzy
msgctxt ""
"print_blackwhite.xhp\n"
"hd_id3153896\n"
"17\n"
"help.text"
msgid "Printing only text in black and white"
msgid "Printing Only Text in Black and White"
msgstr "Imprimir en branco e negro só o texto"
#: print_blackwhite.xhp
@@ -15406,12 +15393,12 @@ msgid "In <item type=\"productname\">%PRODUCTNAME</item> Writer you can choose t
msgstr "En <item type=\"productname\">%PRODUCTNAME</item> Writer pode imprimir en branco e negro textos formatados con cores, así como especificar se facelo nos vindeiros traballos de impresión ou só no actual."
#: print_blackwhite.xhp
#, fuzzy
msgctxt ""
"print_blackwhite.xhp\n"
"hd_id3150358\n"
"19\n"
"help.text"
msgid "Printing all text documents with black and white text"
msgid "Printing All Text Documents with Black and White Text"
msgstr "Imprimir en branco e negro todos os documentos de texto"
#: print_blackwhite.xhp
@@ -15451,12 +15438,12 @@ msgid "All text documents or HTML documents will be printed with black text."
msgstr "Imprimiranse con texto negro todos os documentos HTML e de texto."
#: print_blackwhite.xhp
#, fuzzy
msgctxt ""
"print_blackwhite.xhp\n"
"hd_id3148920\n"
"24\n"
"help.text"
msgid "Printing the current text document with black and white text"
msgid "Printing the Current Text Document with Black and White Text"
msgstr "Imprimir con texto branco e negro o documento de texto actual"
#: print_blackwhite.xhp

View File

@@ -0,0 +1,142 @@
#. extracted from helpcontent2/source/text/shared/menu
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-05-23 21:37+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
#: insert_chart.xhp
msgctxt ""
"insert_chart.xhp\n"
"tit\n"
"help.text"
msgid "Chart"
msgstr ""
#: insert_chart.xhp
msgctxt ""
"insert_chart.xhp\n"
"hd_id030420160945436725\n"
"help.text"
msgid "<link href=\"text/shared/menu/insert_chart.xhp\">Chart</link>"
msgstr ""
#: insert_chart.xhp
msgctxt ""
"insert_chart.xhp\n"
"par_id030420160947559665\n"
"help.text"
msgid "<ahelp hid=\".\">Inserts a chart based on data from a cell or table range or with default data.</ahelp>"
msgstr ""
#: insert_form_control.xhp
msgctxt ""
"insert_form_control.xhp\n"
"tit\n"
"help.text"
msgid "Form Control"
msgstr ""
#: insert_form_control.xhp
msgctxt ""
"insert_form_control.xhp\n"
"hd_id030720160611303537\n"
"help.text"
msgid "<link href=\"text/shared/menu/insert_form_control.xhp\">Form Control</link>"
msgstr ""
#: insert_form_control.xhp
msgctxt ""
"insert_form_control.xhp\n"
"par_id03072016061205929\n"
"help.text"
msgid "<ahelp hid=\".\">This submenu contains form controls like a textbox, checkbox, option button, and listbox that can be inserted into the document.</ahelp>"
msgstr ""
#: insert_shape.xhp
msgctxt ""
"insert_shape.xhp\n"
"tit\n"
"help.text"
msgid "Shape"
msgstr ""
#: insert_shape.xhp
msgctxt ""
"insert_shape.xhp\n"
"hd_id030420161043484643\n"
"help.text"
msgid "<link href=\"text/shared/menu/insert_shape.xhp\">Shape</link>"
msgstr ""
#: insert_shape.xhp
msgctxt ""
"insert_shape.xhp\n"
"par_id030420161051456436\n"
"help.text"
msgid "<ahelp hid=\".\">This submenu contains common shapes like a line, circle, triangle, and square, or a symbol shape like a smiley face, heart, and flower that can be inserted into the document.</ahelp>"
msgstr ""
#: insert_shape.xhp
msgctxt ""
"insert_shape.xhp\n"
"par_id030720160629548185\n"
"help.text"
msgid "Line"
msgstr ""
#: insert_shape.xhp
msgctxt ""
"insert_shape.xhp\n"
"par_id030720160640091844\n"
"help.text"
msgid "<ahelp hid=\".\">This submenu contains straight, freeform, curved and polygon line shapes.</ahelp>"
msgstr ""
#: insert_shape.xhp
msgctxt ""
"insert_shape.xhp\n"
"hd_id030720160823321429\n"
"help.text"
msgid "<link href=\"text/shared/02/01140000.xhp#line_title\">Line</link>"
msgstr ""
#: insert_shape.xhp
msgctxt ""
"insert_shape.xhp\n"
"par_id030720160629546864\n"
"help.text"
msgid "Basic"
msgstr ""
#: insert_shape.xhp
msgctxt ""
"insert_shape.xhp\n"
"par_id030720160644597415\n"
"help.text"
msgid "This submenu contains basic shapes like rectangles, circles, triangles, pentagon, hexagon, octagon, cylinder, and cube."
msgstr ""
#: insert_shape.xhp
msgctxt ""
"insert_shape.xhp\n"
"par_id030720160629547675\n"
"help.text"
msgid "Symbol"
msgstr ""
#: insert_shape.xhp
msgctxt ""
"insert_shape.xhp\n"
"par_id030720160644595417\n"
"help.text"
msgid "This submenu contains symbols shapes like smiley face, heart, sun, moon, flower, puzzle, beveled shapes, and brackets."
msgstr ""

View File

@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-04-16 21:40+0200\n"
"PO-Revision-Date: 2015-12-11 12:28+0000\n"
"Last-Translator: system user <>\n"
"POT-Creation-Date: 2016-05-23 21:37+0200\n"
"PO-Revision-Date: 2016-05-02 11:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
"X-POOTLE-MTIME: 1449836899.000000\n"
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1462190127.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -1406,6 +1406,30 @@ msgctxt ""
msgid "This is where $[officename] puts its temporary files."
msgstr "Aquí garda $[officename] os seus ficheiros temporais."
#: 01010300.xhp
msgctxt ""
"01010300.xhp\n"
"par_id3154607\n"
"help.text"
msgid "Classification"
msgstr ""
#: 01010300.xhp
msgctxt ""
"01010300.xhp\n"
"par_id3149344\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{install}/share/classification/example.xml</caseinline><defaultinline>{install}\\share\\classification\\example.xml</defaultinline></switchinline>"
msgstr ""
#: 01010300.xhp
msgctxt ""
"01010300.xhp\n"
"par_id3154651\n"
"help.text"
msgid "$[officename] reads the TSCP BAF policy from this file."
msgstr ""
#: 01010301.xhp
msgctxt ""
"01010301.xhp\n"
@@ -4319,7 +4343,7 @@ msgctxt ""
"01011000.xhp\n"
"bm_id3153881\n"
"help.text"
msgid "<bookmark_value>undoing; number of steps</bookmark_value><bookmark_value>graphics; cache</bookmark_value><bookmark_value>cache for graphics</bookmark_value><bookmark_value>Quickstarter</bookmark_value>"
msgid "<bookmark_value>graphics; cache</bookmark_value><bookmark_value>cache for graphics</bookmark_value><bookmark_value>Quickstarter</bookmark_value>"
msgstr ""
#: 01011000.xhp
@@ -4335,45 +4359,8 @@ msgstr "<link href=\"text/shared/optionen/01011000.xhp\" name=\"Memoria\">Memori
msgctxt ""
"01011000.xhp\n"
"par_id3154307\n"
"26\n"
"help.text"
msgid "<ahelp hid=\".\">Defines the settings for the graphics cache and the number of steps you can undo.</ahelp>"
msgstr "<ahelp hid=\".\">Define a configuración da caché para as imaxes e o número de pasos que pode desfacer.</ahelp>"
#: 01011000.xhp
msgctxt ""
"01011000.xhp\n"
"hd_id3155390\n"
"1\n"
"help.text"
msgid "Undo"
msgstr "Desfacer"
#: 01011000.xhp
msgctxt ""
"01011000.xhp\n"
"par_id3145673\n"
"2\n"
"help.text"
msgid "Defines the maximum number of reverse steps allowed."
msgstr "Define o número máximo de pasos atrás que pode dar."
#: 01011000.xhp
msgctxt ""
"01011000.xhp\n"
"hd_id3153881\n"
"3\n"
"help.text"
msgid "Number of steps"
msgstr "Número de pasos"
#: 01011000.xhp
msgctxt ""
"01011000.xhp\n"
"par_id3148685\n"
"4\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/optmemorypage/undo\">You can specify the number of steps which can be undone by selecting a number from the box.</ahelp>"
msgid "<ahelp hid=\".\">This tab page lets you define various settings for the graphics cache.</ahelp>"
msgstr ""
#: 01011000.xhp
@@ -9307,12 +9294,12 @@ msgid "<link href=\"text/shared/optionen/01050300.xhp\" name=\"Background\">Back
msgstr "<link href=\"text/shared/optionen/01050300.xhp\" name=\"Fondo\">Fondo</link>"
#: 01050300.xhp
#, fuzzy
msgctxt ""
"01050300.xhp\n"
"par_id3150443\n"
"2\n"
"help.text"
msgid "<ahelp hid=\"\" visibility=\"visible\">Specifies the background for HTML documents.</ahelp> The background is valid for both new HTML documents and for those that you load, as long as these have not defined their own background."
msgid "<ahelp hid=\".\" visibility=\"visible\">Specifies the background for HTML documents.</ahelp> The background is valid for both new HTML documents and for those that you load, as long as these have not defined their own background."
msgstr "<ahelp hid=\"\" visibility=\"visible\">Especifica o fondo para documentos HTML.</ahelp> O fondo é válido para os novos documentos HTML e para os que cargue, se non teñen o seu propio fondo definido."
#: 01050300.xhp
@@ -11125,12 +11112,12 @@ msgid "<link href=\"text/shared/optionen/01060700.xhp\" name=\"Print\">Print</li
msgstr "<link href=\"text/shared/optionen/01060700.xhp\" name=\"Imprimir\">Imprimir</link>"
#: 01060700.xhp
#, fuzzy
msgctxt ""
"01060700.xhp\n"
"par_id3143267\n"
"2\n"
"help.text"
msgid "<ahelp hid=\"\">Determines the printer settings for spreadsheets.</ahelp>"
msgid "<ahelp hid=\".\">Determines the printer settings for spreadsheets.</ahelp>"
msgstr "<ahelp hid=\"\">Determina a configuración da impresora para as follas de cálculo.</ahelp>"
#: 01060700.xhp
@@ -13142,12 +13129,12 @@ msgid "Chart options"
msgstr "Opcións de gráfica"
#: 01110000.xhp
#, fuzzy
msgctxt ""
"01110000.xhp\n"
"par_id3149182\n"
"2\n"
"help.text"
msgid "<variable id=\"farbe\"><ahelp hid=\"\" visibility=\"visible\">Defines the general settings for charts.</ahelp></variable>"
msgid "<variable id=\"farbe\"><ahelp hid=\".\" visibility=\"visible\">Defines the general settings for charts.</ahelp></variable>"
msgstr "<variable id=\"farbe\"><ahelp hid=\"\" visibility=\"visible\">Define a configuración xeral das gráficas.</ahelp></variable>"
#: 01110100.xhp

View File

@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-04-16 21:40+0200\n"
"PO-Revision-Date: 2015-12-11 12:28+0000\n"
"Last-Translator: system user <>\n"
"POT-Creation-Date: 2016-05-23 21:36+0200\n"
"PO-Revision-Date: 2016-04-16 23:05+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
"X-POOTLE-MTIME: 1449836904.000000\n"
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1460847936.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -648,75 +648,75 @@ msgid "File"
msgstr "Ficheiro"
#: 00000404.xhp
#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3149351\n"
"17\n"
"help.text"
msgid "<variable id=\"feldbf\">Choose <emph>Insert - Fields</emph></variable>"
msgid "<variable id=\"feldbf\">Choose <emph>Insert - Field</emph></variable>"
msgstr "<variable id=\"feldbf\">Escolla <emph>Inserir - Campos</emph></variable>"
#: 00000404.xhp
#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3150477\n"
"22\n"
"help.text"
msgid "<variable id=\"feldbf1\">Choose <emph>Insert - Fields - Date (fixed)</emph></variable>"
msgid "<variable id=\"feldbf1\">Choose <emph>Insert - Field - Date (fixed)</emph></variable>"
msgstr "<variable id=\"feldbf1\">Escolla <emph>Inserir - Campos - Data (fixa)</emph></variable>"
#: 00000404.xhp
#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3146879\n"
"18\n"
"help.text"
msgid "<variable id=\"feldbf2\">Choose <emph>Insert - Fields - Date (variable)</emph></variable>"
msgid "<variable id=\"feldbf2\">Choose <emph>Insert - Field - Date (variable)</emph></variable>"
msgstr "<variable id=\"feldbf2\">Escolla <emph>Inserir - Campos - Data (variábel)</emph></variable>"
#: 00000404.xhp
#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3153036\n"
"19\n"
"help.text"
msgid "<variable id=\"feldbf3\">Choose <emph>Insert - Fields - Time (fixed)</emph></variable>"
msgid "<variable id=\"feldbf3\">Choose <emph>Insert - Field - Time (fixed)</emph></variable>"
msgstr "<variable id=\"feldbf3\">Escolla <emph>Inserir - Campos - Hora (fixa)</emph></variable>"
#: 00000404.xhp
#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3145590\n"
"20\n"
"help.text"
msgid "<variable id=\"feldbf4\">Choose <emph>Insert - Fields - Time (variable)</emph></variable>"
msgid "<variable id=\"feldbf4\">Choose <emph>Insert - Field - Time (variable)</emph></variable>"
msgstr "<variable id=\"feldbf4\">Escolla <emph>Inserir - Campos - Hora (variábel)</emph></variable>"
#: 00000404.xhp
#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3153935\n"
"21\n"
"help.text"
msgid "<variable id=\"feldbf5\">Choose <emph>Insert - Fields - Page Number</emph></variable>"
msgid "<variable id=\"feldbf5\">Choose <emph>Insert - Field - Page Number</emph></variable>"
msgstr "<variable id=\"feldbf7\">Escolla <emph>Inserir - Campos - Nome do ficheiro</emph></variable>"
#: 00000404.xhp
#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3148583\n"
"23\n"
"help.text"
msgid "<variable id=\"feldbf6\">Choose <emph>Insert - Fields - Author</emph></variable>"
msgid "<variable id=\"feldbf6\">Choose <emph>Insert - Field - Author</emph></variable>"
msgstr "<variable id=\"feldbf6\">Escolla <emph>Inserir - Campos - Autor</emph></variable>"
#: 00000404.xhp
#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3155951\n"
"24\n"
"help.text"
msgid "<variable id=\"feldbf7\">Choose <emph>Insert - Fields - File Name</emph></variable>"
msgid "<variable id=\"feldbf7\">Choose <emph>Insert - Field - File Name</emph></variable>"
msgstr "<variable id=\"feldbf7\">Escolla <emph>Inserir - Campos - Nome do ficheiro</emph></variable>"
#: 00000405.xhp
@@ -1421,12 +1421,13 @@ msgid "Slide Menu"
msgstr ""
#: slide_menu.xhp
#, fuzzy
msgctxt ""
"slide_menu.xhp\n"
"par_id3134264\n"
"help.text"
msgid "Choose <emph>Slide - New Page/Slide</emph>"
msgstr ""
msgstr "Escolla <emph>Inserir - Diapositiva</emph>"
#: slide_menu.xhp
#, fuzzy

View File

@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-04-16 21:40+0200\n"
"PO-Revision-Date: 2015-12-11 12:28+0000\n"
"Last-Translator: system user <>\n"
"POT-Creation-Date: 2016-05-23 22:09+0200\n"
"PO-Revision-Date: 2016-05-02 11:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
"X-POOTLE-MTIME: 1449836922.000000\n"
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1462190132.000000\n"
#: 01170000.xhp
msgctxt ""
@@ -6812,18 +6812,18 @@ msgid "Slide Show Settings"
msgstr "Configuración da presentación de diapositivas"
#: 06080000.xhp
#, fuzzy
msgctxt ""
"06080000.xhp\n"
"bm_id3153818\n"
"help.text"
msgid "<bookmark_value>presentations; settings for</bookmark_value><bookmark_value>slide shows; settings for</bookmark_value><bookmark_value>presentations; window / full screen</bookmark_value><bookmark_value>multiple monitors</bookmark_value>"
msgid "<bookmark_value>presentations; settings for</bookmark_value> <bookmark_value>slide shows; settings for</bookmark_value> <bookmark_value>presentations; window / full screen</bookmark_value> <bookmark_value>multiple monitors</bookmark_value>"
msgstr "<bookmark_value>presentacións; configuración para</bookmark_value><bookmark_value>presentacións de diapositivas; configuración para</bookmark_value><bookmark_value>presentacións; xanela / pantalla completa</bookmark_value><bookmark_value>varios monitores</bookmark_value>"
#: 06080000.xhp
msgctxt ""
"06080000.xhp\n"
"hd_id3153818\n"
"1\n"
"help.text"
msgid "Slide Show Settings"
msgstr "Configuración da presentación de diapositivas"
@@ -6832,7 +6832,6 @@ msgstr "Configuración da presentación de diapositivas"
msgctxt ""
"06080000.xhp\n"
"par_id3148606\n"
"2\n"
"help.text"
msgid "<variable id=\"praesent\"><ahelp hid=\".uno:PresentationDialog\">Defines settings for your slide show, including which slide to start from, the way you advance the slides, the type of presentation, and pointer options.</ahelp></variable>"
msgstr "<variable id=\"praesent\"><ahelp hid=\".uno:PresentationDialog\">Define a configuración para a presentación de diapositivas, incluído a diapositiva inicial, a maneira de avanzar das diapositivas, e as opcións do apuntador.</ahelp></variable>"
@@ -6841,7 +6840,6 @@ msgstr "<variable id=\"praesent\"><ahelp hid=\".uno:PresentationDialog\">Define
msgctxt ""
"06080000.xhp\n"
"hd_id3150213\n"
"3\n"
"help.text"
msgid "Range"
msgstr "Intervalo"
@@ -6850,7 +6848,6 @@ msgstr "Intervalo"
msgctxt ""
"06080000.xhp\n"
"par_id3154766\n"
"4\n"
"help.text"
msgid "Specifies which slides to include in the slide show."
msgstr "Especifica que diapositivas se incluirán na presentación."
@@ -6859,7 +6856,6 @@ msgstr "Especifica que diapositivas se incluirán na presentación."
msgctxt ""
"06080000.xhp\n"
"hd_id3145363\n"
"5\n"
"help.text"
msgid "All slides"
msgstr "Todas as diapositivas"
@@ -6868,7 +6864,6 @@ msgstr "Todas as diapositivas"
msgctxt ""
"06080000.xhp\n"
"par_id3145114\n"
"6\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/presentationdialog/allslides\">Includes all of the slides in your slide show.</ahelp>"
msgstr "<ahelp hid=\"modules/simpress/ui/presentationdialog/allslides\">Inclúe todas as diapositivas da presentación.</ahelp>"
@@ -6877,7 +6872,6 @@ msgstr "<ahelp hid=\"modules/simpress/ui/presentationdialog/allslides\">Inclúe
msgctxt ""
"06080000.xhp\n"
"hd_id3150431\n"
"7\n"
"help.text"
msgid "From:"
msgstr "Desde:"
@@ -6886,7 +6880,6 @@ msgstr "Desde:"
msgctxt ""
"06080000.xhp\n"
"par_id3150391\n"
"8\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/presentationdialog/from_cb\">Enter the number of the start slide.</ahelp>"
msgstr "<ahelp hid=\"modules/simpress/ui/presentationdialog/from_cb\">Introduza o número da diapositiva inicial.</ahelp>"
@@ -6895,7 +6888,6 @@ msgstr "<ahelp hid=\"modules/simpress/ui/presentationdialog/from_cb\">Introduza
msgctxt ""
"06080000.xhp\n"
"hd_id3147404\n"
"86\n"
"help.text"
msgid "Custom Slide Show"
msgstr "Presentación personalizada de diapositivas"
@@ -6904,7 +6896,6 @@ msgstr "Presentación personalizada de diapositivas"
msgctxt ""
"06080000.xhp\n"
"par_id3150538\n"
"87\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/presentationdialog/customslideshow_cb\">Runs a custom slide show in the order that you defined in <link href=\"text/simpress/01/06100000.xhp\" name=\"Slide Show - Custom Slide Show\"><emph>Slide Show - Custom Slide Show</emph></link>.</ahelp>"
msgstr "<ahelp hid=\"modules/simpress/ui/presentationdialog/customslideshow_cb\">Executa unha presentación de diapositivas na orde definida en <link href=\"text/simpress/01/06100000.xhp\" name=\"Presentación de diapositivas - Presentación personalizada de diapositivas \"><emph>Presentación de diapositivas - Presentación personalizada de diapositivas</emph></link>.</ahelp>"
@@ -6913,7 +6904,6 @@ msgstr "<ahelp hid=\"modules/simpress/ui/presentationdialog/customslideshow_cb\"
msgctxt ""
"06080000.xhp\n"
"hd_id3150653\n"
"88\n"
"help.text"
msgid "Type"
msgstr "Tipo"
@@ -6922,7 +6912,6 @@ msgstr "Tipo"
msgctxt ""
"06080000.xhp\n"
"par_id3149354\n"
"93\n"
"help.text"
msgid "Select the slide show type."
msgstr "Seleccione o tipo de presentación de diapositivas."
@@ -6931,7 +6920,6 @@ msgstr "Seleccione o tipo de presentación de diapositivas."
msgctxt ""
"06080000.xhp\n"
"hd_id3150482\n"
"89\n"
"help.text"
msgid "Default"
msgstr "Predefinido"
@@ -6940,7 +6928,6 @@ msgstr "Predefinido"
msgctxt ""
"06080000.xhp\n"
"par_id3148730\n"
"94\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/presentationdialog/default\">A full screen slide is shown.</ahelp>"
msgstr "<ahelp hid=\"modules/simpress/ui/presentationdialog/default\">Aparece unha diapositiva que ocupa a pantalla completa.</ahelp>"
@@ -6949,7 +6936,6 @@ msgstr "<ahelp hid=\"modules/simpress/ui/presentationdialog/default\">Aparece un
msgctxt ""
"06080000.xhp\n"
"hd_id3153034\n"
"90\n"
"help.text"
msgid "Window"
msgstr "Xanela"
@@ -6958,7 +6944,6 @@ msgstr "Xanela"
msgctxt ""
"06080000.xhp\n"
"par_id3155257\n"
"82\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/presentationdialog/window\">Slide show runs in the $[officename] program window.</ahelp>"
msgstr "<ahelp hid=\"modules/simpress/ui/presentationdialog/window\">A presentación de diapositivas execútase na xanela do programa $[officename].</ahelp>"
@@ -6967,7 +6952,6 @@ msgstr "<ahelp hid=\"modules/simpress/ui/presentationdialog/window\">A presentac
msgctxt ""
"06080000.xhp\n"
"hd_id3145593\n"
"91\n"
"help.text"
msgid "Auto"
msgstr "Auto"
@@ -6976,7 +6960,6 @@ msgstr "Auto"
msgctxt ""
"06080000.xhp\n"
"par_id3149509\n"
"95\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/presentationdialog/auto\">Restarts the slide show after the pause interval you specify. A pause slide is displayed between the final slide and the start slide. Press the Esc key to stop the show.</ahelp>"
msgstr "<ahelp hid=\"modules/simpress/ui/presentationdialog/auto\">Reinicia a presentación de diapositivas despois do intervalo de pausa especificado. Móstrase unha diapositiva de pausa entre a diapositiva final e a inicial. Prema na tecla Esc para deter a presentación.</ahelp>"
@@ -6985,7 +6968,6 @@ msgstr "<ahelp hid=\"modules/simpress/ui/presentationdialog/auto\">Reinicia a pr
msgctxt ""
"06080000.xhp\n"
"hd_id3150862\n"
"96\n"
"help.text"
msgid "Duration of pause"
msgstr "Duración de pausa"
@@ -6994,7 +6976,6 @@ msgstr "Duración de pausa"
msgctxt ""
"06080000.xhp\n"
"par_id3153112\n"
"97\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/presentationdialog/pauseduration\">Enter the duration of the pause before the slide show is repeated. If you enter zero, the show restarts immediately without showing a pause slide.</ahelp>"
msgstr "<ahelp hid=\"modules/simpress/ui/presentationdialog/pauseduration\">Introduza a duración da pausa antes de repetir a presentación de diapositivas. Se introduce cero, a presentación reiníciase inmediatamente sen mostrar ningunha diapositiva de pausa.</ahelp>"
@@ -7003,7 +6984,6 @@ msgstr "<ahelp hid=\"modules/simpress/ui/presentationdialog/pauseduration\">Intr
msgctxt ""
"06080000.xhp\n"
"hd_id3166420\n"
"92\n"
"help.text"
msgid "Show logo"
msgstr "Mostrar logotipo"
@@ -7012,7 +6992,6 @@ msgstr "Mostrar logotipo"
msgctxt ""
"06080000.xhp\n"
"par_id3154501\n"
"98\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/presentationdialog/showlogo\">Displays the $[officename] logo on the pause slide.</ahelp> The logo cannot be exchanged."
msgstr "<ahelp hid=\"modules/simpress/ui/presentationdialog/showlogo\">Mostra o logotipo de $[officename] na diapositiva de pausa.</ahelp> O logotipo non pode cambiarse."
@@ -7021,7 +7000,6 @@ msgstr "<ahelp hid=\"modules/simpress/ui/presentationdialog/showlogo\">Mostra o
msgctxt ""
"06080000.xhp\n"
"hd_id3150130\n"
"9\n"
"help.text"
msgid "Options"
msgstr "Opcións"
@@ -7030,7 +7008,6 @@ msgstr "Opcións"
msgctxt ""
"06080000.xhp\n"
"hd_id3149883\n"
"13\n"
"help.text"
msgid "Change slides manually"
msgstr "Modificar as diapositivas manualmente"
@@ -7039,7 +7016,6 @@ msgstr "Modificar as diapositivas manualmente"
msgctxt ""
"06080000.xhp\n"
"par_id3147373\n"
"14\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/presentationdialog/manualslides\">Slides never change automatically when this box is selected.</ahelp>"
msgstr "<ahelp hid=\"modules/simpress/ui/presentationdialog/manualslides\">Ao seleccionar esta caixa, as diapositivas nunca cambian automaticamente.</ahelp>"
@@ -7048,7 +7024,6 @@ msgstr "<ahelp hid=\"modules/simpress/ui/presentationdialog/manualslides\">Ao se
msgctxt ""
"06080000.xhp\n"
"hd_id3155439\n"
"15\n"
"help.text"
msgid "Mouse pointer visible"
msgstr "Apuntador de rato visíbel"
@@ -7057,7 +7032,6 @@ msgstr "Apuntador de rato visíbel"
msgctxt ""
"06080000.xhp\n"
"par_id3150272\n"
"16\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/presentationdialog/pointervisible\">Shows the mouse pointer during a slide show.</ahelp>"
msgstr "<ahelp hid=\"modules/simpress/ui/presentationdialog/pointervisible\">Mostra o apuntador do rato durante a presentación de diapositivas.</ahelp>"
@@ -7066,7 +7040,6 @@ msgstr "<ahelp hid=\"modules/simpress/ui/presentationdialog/pointervisible\">Mos
msgctxt ""
"06080000.xhp\n"
"hd_id3150570\n"
"17\n"
"help.text"
msgid "Mouse pointer as pen"
msgstr "Apuntador de rato como lapis"
@@ -7075,7 +7048,6 @@ msgstr "Apuntador de rato como lapis"
msgctxt ""
"06080000.xhp\n"
"par_id3150665\n"
"18\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/presentationdialog/pointeraspen\">Changes the mouse pointer to a pen which you can use to draw on slides during the presentation.</ahelp>"
msgstr "<ahelp hid=\"modules/simpress/ui/presentationdialog/pointeraspen\">Transforma o apuntador do rato nun lapis que pode usarse para debuxar nas diapositivas durante a presentación.</ahelp>"
@@ -7092,7 +7064,6 @@ msgstr ""
msgctxt ""
"06080000.xhp\n"
"hd_id3153927\n"
"20\n"
"help.text"
msgid "Navigator visible"
msgstr "Navegador visíbel"
@@ -7101,7 +7072,6 @@ msgstr "Navegador visíbel"
msgctxt ""
"06080000.xhp\n"
"par_id3148430\n"
"21\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/presentationdialog/navigatorvisible\">Displays the <link href=\"text/simpress/01/02110000.xhp\" name=\"Navigator\">Navigator</link> during the slide show.</ahelp>"
msgstr "<ahelp hid=\"modules/simpress/ui/presentationdialog/navigatorvisible\">Mostra o <link href=\"text/simpress/01/02110000.xhp\" name=\"Navegador\">Navegador</link> durante a presentación de diapositivas.</ahelp>"
@@ -7110,7 +7080,6 @@ msgstr "<ahelp hid=\"modules/simpress/ui/presentationdialog/navigatorvisible\">M
msgctxt ""
"06080000.xhp\n"
"hd_id3153718\n"
"84\n"
"help.text"
msgid "Animations allowed"
msgstr "Animacións permitidas"
@@ -7119,7 +7088,6 @@ msgstr "Animacións permitidas"
msgctxt ""
"06080000.xhp\n"
"par_id3083445\n"
"85\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/presentationdialog/animationsallowed\">Displays all frames of animated GIF files during the slide show.</ahelp> If this option is not selected, only the first frame of an animated GIF file is displayed."
msgstr "<ahelp hid=\"modules/simpress/ui/presentationdialog/animationsallowed\">Mostra todos os marcos dos ficheiros GIF animados durante a presentación.</ahelp> Se esta opción non está seleccionada, só se mostra o primeiro marco."
@@ -7128,7 +7096,6 @@ msgstr "<ahelp hid=\"modules/simpress/ui/presentationdialog/animationsallowed\">
msgctxt ""
"06080000.xhp\n"
"hd_id3152478\n"
"22\n"
"help.text"
msgid "Change slides by clicking on background"
msgstr "Modificar as diapositivas premendo no fondo"
@@ -7137,7 +7104,6 @@ msgstr "Modificar as diapositivas premendo no fondo"
msgctxt ""
"06080000.xhp\n"
"par_id3156305\n"
"23\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/presentationdialog/changeslidesbyclick\">Advances to the next slide when you click on the background of a slide.</ahelp>"
msgstr "<ahelp hid=\"modules/simpress/ui/presentationdialog/changeslidesbyclick\">Avanza á seguinte diapositiva ao premer no fondo dunha delas.</ahelp>"
@@ -7146,7 +7112,6 @@ msgstr "<ahelp hid=\"modules/simpress/ui/presentationdialog/changeslidesbyclick\
msgctxt ""
"06080000.xhp\n"
"hd_id3150960\n"
"24\n"
"help.text"
msgid "Presentation always on top"
msgstr "Presentación sempre no primeiro plano"
@@ -7155,7 +7120,6 @@ msgstr "Presentación sempre no primeiro plano"
msgctxt ""
"06080000.xhp\n"
"par_id3150764\n"
"25\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/presentationdialog/alwaysontop\">The $[officename] window remains on top during the presentation. No other program will show its window in front of your presentation.</ahelp>"
msgstr "<ahelp hid=\"modules/simpress/ui/presentationdialog/alwaysontop\">A xanela $[officename] mantense na parte superior durante a presentación. É a única xanela que se mostra diante da presentación.</ahelp>"
@@ -7193,11 +7157,12 @@ msgid "<ahelp hid=\".\">Select a monitor to use for full screen slide show mode.
msgstr "<ahelp hid=\".\">Seleccione o monitor que se vai utilizar para o modo presentación de diapositivas en pantalla completa.</ahelp>"
#: 06080000.xhp
#, fuzzy
msgctxt ""
"06080000.xhp\n"
"par_id4846339\n"
"help.text"
msgid "If the system allows to span a window over all available monitors, you can also select \"All monitors\". In this case the presentation spans over all available monitors."
msgid "If the system allows the user to span a window over all available monitors, you can also select \"All monitors\". In this case the presentation is spanned over all available monitors."
msgstr "Se o sistema permite que unha xanela ocupe todos os monitores dispoñíbeis, pódese seleccionar \"Todos os monitores\". Así, a presentación pasa a abarcar todos os monitores dispoñíbeis."
#: 06080000.xhp
@@ -7387,12 +7352,12 @@ msgid "Define Custom Slide Show"
msgstr "Definir presentación personalizada de diapositivas"
#: 06100100.xhp
#, fuzzy
msgctxt ""
"06100100.xhp\n"
"par_id3154659\n"
"2\n"
"help.text"
msgid "<variable id=\"neu\"><ahelp hid=\"\" visibility=\"visible\">Creates a custom slide show.</ahelp></variable>"
msgid "<variable id=\"neu\"><ahelp hid=\".\" visibility=\"visible\">Creates a custom slide show.</ahelp></variable>"
msgstr "<variable id=\"neu\"><ahelp hid=\"\" visibility=\"visible\">Crea unha presentación personalizada de diapositivas.</ahelp></variable>"
#: 06100100.xhp

View File

@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-04-16 21:40+0200\n"
"PO-Revision-Date: 2015-12-11 12:28+0000\n"
"Last-Translator: system user <>\n"
"POT-Creation-Date: 2016-05-07 21:35+0200\n"
"PO-Revision-Date: 2016-05-02 11:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
"X-POOTLE-MTIME: 1449836929.000000\n"
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1462190142.000000\n"
#: 3d_create.xhp
msgctxt ""
@@ -1311,7 +1311,7 @@ msgctxt ""
"footer.xhp\n"
"par_id8403576\n"
"help.text"
msgid "To edit a slide master, choose <emph>View - Master - Slide Master</emph>. Click the Close Master View icon on the Master View toolbar, or choose <emph>View - Normal</emph>, to leave the slide master."
msgid "To edit a slide master, choose <emph>View - Slide Master</emph>. Click the Close Master View icon on the Master View toolbar, or choose <emph>View - Normal</emph>, to leave the slide master."
msgstr ""
#: footer.xhp
@@ -1319,7 +1319,7 @@ msgctxt ""
"footer.xhp\n"
"par_id5641651\n"
"help.text"
msgid "To edit a notes master, choose <emph>View - Master - Notes Master</emph>. Click the Close Master View icon on the Master View toolbar, or choose <emph>View - Normal</emph>, to leave the notes master."
msgid "To edit a notes master, choose <emph>View - Notes Master</emph>. Click the Close Master View icon on the Master View toolbar, or choose <emph>View - Normal</emph>, to leave the notes master."
msgstr ""
#: footer.xhp
@@ -1351,7 +1351,7 @@ msgctxt ""
"footer.xhp\n"
"par_id8217413\n"
"help.text"
msgid "When you switch to the master view, you can move that areas to any position on the master. You can enter additional text and resize the areas. You can select the contents of the areas and apply text formats. For example, you can change the font size or color."
msgid "When you switch to the master view, you can move those areas to any position on the master. Also, you can enter additional text into them, resize them, and select their contents to apply text formatting. For example, you can change the font size or color."
msgstr ""
#: footer.xhp
@@ -1371,11 +1371,12 @@ msgid "Objects that you insert on a slide master are visible on all slides that
msgstr ""
#: footer.xhp
#, fuzzy
msgctxt ""
"footer.xhp\n"
"par_id8843043\n"
"help.text"
msgid "Choose <emph>View - Header and Footer</emph>."
msgid "Choose <emph>Insert - Header and Footer</emph>."
msgstr "Escolla <emph>Ver - Clasificador de diapositivas</emph>."
#: footer.xhp
@@ -1383,7 +1384,7 @@ msgctxt ""
"footer.xhp\n"
"par_id1876583\n"
"help.text"
msgid "You see a dialog with two tab pages: <emph>Slide</emph> and <emph>Notes and Handouts</emph> where you can enter contents to the predefined areas."
msgid "You see a dialog with two tab pages: <emph>Slides</emph> and <emph>Notes and Handouts</emph> where you can enter contents to the predefined areas."
msgstr ""
#: footer.xhp
@@ -1460,13 +1461,13 @@ msgid "You can add a text object anywhere on the slide master."
msgstr ""
#: footer.xhp
#, fuzzy
msgctxt ""
"footer.xhp\n"
"par_id3148866\n"
"14\n"
"help.text"
msgid "Choose <emph>View - Master - Slide Master</emph>."
msgstr "Escolla<emph>Ver- Principal - Diapositiva principal</emph>."
msgid "Choose <emph>View - Slide Master</emph>."
msgstr "Escolla <emph>Ver - Clasificador de diapositivas</emph>."
#: footer.xhp
msgctxt ""
@@ -1496,23 +1497,14 @@ msgid "Choose <emph>View - Normal</emph> when you are finished."
msgstr "Ao rematar, escolla <emph>Ver - Normal</emph>."
#: footer.xhp
#, fuzzy
msgctxt ""
"footer.xhp\n"
"par_id3150476\n"
"17\n"
"help.text"
msgid "You can also add fields, such as the date or page number, to a header or footer by choosing <emph>Insert - Fields</emph>."
msgid "You can also add fields, such as the date or page number, to a header or footer by choosing <emph>Insert - Field</emph>."
msgstr "Tamén pode engadir campos (por exemplo, data e número de páxina) a unha cabeceira e a un pé de páxina, escollendo <emph>Inserir - Campos</emph>."
#: footer.xhp
msgctxt ""
"footer.xhp\n"
"par_id3156320\n"
"18\n"
"help.text"
msgid "You can hide the header or footer on the current slide by choosing <emph>Format</emph> - <link href=\"text/simpress/01/05130000.xhp\" name=\"Modify Layout\">Slide<emph> Layout</emph></link>, and clearing the <emph>Objects on background</emph> check box."
msgstr "Pode ocultar a cabeceira ou o pé de páxina da diapositiva activa, escollendo <emph>Formato</emph> - <link href=\"text/simpress/01/05130000.xhp\" name=\"Modificar deseño\"><emph>Modificar deseño</emph></link> e desmarcando a caixa de verificación <emph>Obxectos no fondo</emph>."
#: footer.xhp
msgctxt ""
"footer.xhp\n"

View File

@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-04-16 21:40+0200\n"
"PO-Revision-Date: 2016-04-16 23:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"POT-Creation-Date: 2016-05-23 21:37+0200\n"
"PO-Revision-Date: 2016-05-02 11:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,88 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.7\n"
"X-POOTLE-MTIME: 1460848285.000000\n"
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1462190151.000000\n"
#: classificationbar.xhp
msgctxt ""
"classificationbar.xhp\n"
"tit\n"
"help.text"
msgid "Classification Bar"
msgstr ""
#: classificationbar.xhp
msgctxt ""
"classificationbar.xhp\n"
"hd_id3150342\n"
"help.text"
msgid "<link href=\"text/swriter/classificationbar.xhp\" name=\"Classification Bar\">Classification Bar</link>"
msgstr ""
#: classificationbar.xhp
msgctxt ""
"classificationbar.xhp\n"
"par_id3150202\n"
"help.text"
msgid "<ahelp hid=\".\">The <emph>Classification</emph> bar contains tools to help secure document handling.</ahelp>"
msgstr ""
#: classificationbar.xhp
msgctxt ""
"classificationbar.xhp\n"
"par_id31502029\n"
"help.text"
msgid "The purpose of this toolbar is that in case the user is required to follow a policy when editing a document, then $[officename] can help the user respect these rules in case $[officename] is informed about the rules. Transglobal Secure Collaboration Participation (TSCP) provides standards to describe document classification: Business Authentication Framework (BAF) describes how to specify a policy this toolbar can handle, and Business Authorization Identification and Labeling Scheme (BAILS) describes how to refer to this policy in documents."
msgstr ""
#: classificationbar.xhp
msgctxt ""
"classificationbar.xhp\n"
"par_idN106B0\n"
"help.text"
msgid "Intellectual Property"
msgstr ""
#: classificationbar.xhp
msgctxt ""
"classificationbar.xhp\n"
"par_idN106C0\n"
"help.text"
msgid "Selects the category of this document from the available BAF categories for the intellectual property policy type. The selected category influences the infobar, headers, footers and the watermark of the document."
msgstr ""
#: classificationbar.xhp
msgctxt ""
"classificationbar.xhp\n"
"par_idN106CD\n"
"help.text"
msgid "National Security"
msgstr ""
#: classificationbar.xhp
msgctxt ""
"classificationbar.xhp\n"
"par_idN106DD\n"
"help.text"
msgid "Selects the category of this document for the national security policy type. The selected category is saved together with the document as BAILS metadata, but it does not influence the user interface."
msgstr ""
#: classificationbar.xhp
msgctxt ""
"classificationbar.xhp\n"
"par_idN106EA\n"
"help.text"
msgid "Export Control"
msgstr ""
#: classificationbar.xhp
msgctxt ""
"classificationbar.xhp\n"
"par_idN106FA\n"
"help.text"
msgid "Selects the category of this document for the export control policy type. The selected category is saved together with the document as BAILS metadata, but it does not influence the user interface."
msgstr ""
#: main0000.xhp
msgctxt ""
@@ -385,12 +465,13 @@ msgid "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>"
msgstr "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>"
#: main0104.xhp
#, fuzzy
msgctxt ""
"main0104.xhp\n"
"tit\n"
"help.text"
msgid ".uno:InsertHeaderFooterMenu"
msgstr ""
msgid "Insert"
msgstr "Inserir"
#: main0104.xhp
msgctxt ""
@@ -1564,7 +1645,6 @@ msgstr "Barra de estado"
msgctxt ""
"main0208.xhp\n"
"hd_id3153397\n"
"1\n"
"help.text"
msgid "<link href=\"text/swriter/main0208.xhp\" name=\"Status Bar\">Status Bar</link>"
msgstr "<link href=\"text/swriter/main0208.xhp\" name=\"Barra Estado\">Barra Estado</link>"
@@ -1573,7 +1653,6 @@ msgstr "<link href=\"text/swriter/main0208.xhp\" name=\"Barra Estado\">Barra Est
msgctxt ""
"main0208.xhp\n"
"par_id3153414\n"
"2\n"
"help.text"
msgid "The Status Bar contains information about the current document and offers various buttons with special functions."
msgstr "A barra Estado contén información sobre o documento así como varios botóns con funcións especiais."
@@ -1619,11 +1698,12 @@ msgid "Zoom & View Layout"
msgstr "Deseño da visualización e o zoom"
#: main0208.xhp
#, fuzzy
msgctxt ""
"main0208.xhp\n"
"par_id7723929\n"
"help.text"
msgid "Three controls on the Writer Status Bar allow to change the zoom and view layout of your text documents."
msgid "Three controls on the Writer Status Bar allow you to change the zoom and view layout of your text documents."
msgstr "Tres controis na Barra de estado de Writer permítenlle cambiar o zoom e ver o deseño dos seus documentos."
#: main0208.xhp

View File

@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-04-16 21:40+0200\n"
"PO-Revision-Date: 2016-03-06 16:08+0000\n"
"Last-Translator: system user <>\n"
"POT-Creation-Date: 2016-05-23 21:36+0200\n"
"PO-Revision-Date: 2016-04-16 23:07+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
"X-POOTLE-MTIME: 1457280510.000000\n"
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1460848057.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -559,93 +559,92 @@ msgid "<variable id=\"manuellerumbruch\">Choose <emph>Insert - Manual Break</emp
msgstr "<variable id=\"manuellerumbruch\">Escolla <emph>Inserir - Quebra manual</emph></variable>"
#: 00000404.xhp
#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3154654\n"
"3\n"
"help.text"
msgid "Choose <emph>Insert - Fields</emph>"
msgid "Choose <emph>Insert - Field</emph>"
msgstr "Escolla <emph>Inserir - Campos</emph>"
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3146966\n"
"90\n"
"help.text"
msgid "Open context menu - choose <emph>Fields</emph> (inserted fields)"
msgstr "Abra o menú de contexto e escolla <emph>Campos</emph> (campos inseridos)"
#: 00000404.xhp
#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3149053\n"
"44\n"
"help.text"
msgid "<variable id=\"feldbefehldatum\">Choose <emph>Insert - Fields - Date</emph></variable>"
msgid "<variable id=\"feldbefehldatum\">Choose <emph>Insert - Field - Date</emph></variable>"
msgstr "<variable id=\"feldbefehldatum\">Escolla <emph>Inserir - Campos - Data</emph></variable>"
#: 00000404.xhp
#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3151393\n"
"45\n"
"help.text"
msgid "<variable id=\"feldbefehluhrzeit\">Choose <emph>Insert - Fields - Time</emph></variable>"
msgid "<variable id=\"feldbefehluhrzeit\">Choose <emph>Insert - Field - Time</emph></variable>"
msgstr "<variable id=\"feldbefehluhrzeit\">Escolla <emph>Inserir - Campos - Hora</emph></variable>"
#: 00000404.xhp
#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3146325\n"
"46\n"
"help.text"
msgid "<variable id=\"feldbefehlseitennummer\">Choose <emph>Insert - Fields - Page Number</emph></variable>"
msgid "<variable id=\"feldbefehlseitennummer\">Choose <emph>Insert - Field - Page Number</emph></variable>"
msgstr "<variable id=\"feldbefehlseitennummer\">Escolla <emph>Inserir - Campos - Número de páxina</emph></variable>"
#: 00000404.xhp
#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3149356\n"
"47\n"
"help.text"
msgid "<variable id=\"feldbefehlseitenanzahl\">Choose <emph>Insert - Fields - Page Count</emph></variable>"
msgid "<variable id=\"feldbefehlseitenanzahl\">Choose <emph>Insert - Field - Page Count</emph></variable>"
msgstr "<variable id=\"feldbefehlseitenanzahl\">Escolla <emph>Inserir - Campos - Conta de páxinas</emph></variable>"
#: 00000404.xhp
#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3153003\n"
"48\n"
"help.text"
msgid "<variable id=\"feldbefehlthema\">Choose <emph>Insert - Fields - Subject</emph></variable>"
msgid "<variable id=\"feldbefehlthema\">Choose <emph>Insert - Field - Subject</emph></variable>"
msgstr "<variable id=\"feldbefehlthema\">Escolla <emph>Inserir - Campos - Asunto</emph></variable>"
#: 00000404.xhp
#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3150016\n"
"49\n"
"help.text"
msgid "<variable id=\"feldbefehltitel\">Choose <emph>Insert - Fields - Title</emph></variable>"
msgid "<variable id=\"feldbefehltitel\">Choose <emph>Insert - Field - Title</emph></variable>"
msgstr "<variable id=\"feldbefehltitel\">Escolla <emph>Inserir - Campos - Título</emph></variable>"
#: 00000404.xhp
#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3150564\n"
"50\n"
"help.text"
msgid "<variable id=\"feldbefehlautor\">Choose <emph>Insert - Fields - Author</emph></variable>"
msgid "<variable id=\"feldbefehlautor\">Choose <emph>Insert - Field - Author</emph></variable>"
msgstr "<variable id=\"feldbefehlautor\">Escolla <emph>Inserir - Campos - Autor</emph></variable>"
#: 00000404.xhp
#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3148386\n"
"4\n"
"help.text"
msgid "Choose <emph>Insert - Fields - More Fields</emph>"
msgid "Choose <emph>Insert - Field - More Fields</emph>"
msgstr "Escolla <emph>Inserir - Campos - Outros campos</emph>"
#: 00000404.xhp
@@ -684,66 +683,65 @@ msgid "Insert Fields"
msgstr "Inserir campos"
#: 00000404.xhp
#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3149295\n"
"56\n"
"help.text"
msgid "<variable id=\"felddokument\">Choose <emph>Insert - Fields - More Fields - Document</emph> tab </variable>"
msgid "<variable id=\"felddokument\">Choose <emph>Insert - Field - More Fields - Document</emph> tab</variable>"
msgstr "<variable id=\"felddokument\">Escolla a lapela <emph>Inserir - Campos - Máis campos - Documento</emph></variable>"
#: 00000404.xhp
#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3154692\n"
"51\n"
"help.text"
msgid "Choose <emph>Insert - Fields - More Fields - Cross-references</emph> tab"
msgid "Choose <emph>Insert - Field - More Fields - Cross-references</emph> tab"
msgstr "Escolla a lapela <emph>Inserir - Campos - Outros - Referencias cruzadas</emph>"
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3145411\n"
"63\n"
"help.text"
msgid "Choose <emph>Insert - Cross-reference</emph>"
msgstr "Escolla<emph>Inserir - Referencia cruzada</emph>."
#: 00000404.xhp
#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3147515\n"
"52\n"
"help.text"
msgid "<variable id=\"feldfunktionen\">Choose <emph>Insert - Fields - More Fields - Functions</emph> tab </variable>"
msgid "<variable id=\"feldfunktionen\">Choose <emph>Insert - Field - More Fields - Functions</emph> tab</variable>"
msgstr "<variable id=\"feldfunktionen\">Escolla <emph>Inserir - Campos - Outros - Funcións </emph> e prema no separador <emph>Funcións</emph></variable>"
#: 00000404.xhp
#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3153581\n"
"53\n"
"help.text"
msgid "<variable id=\"felddokumentinfo\">Choose <emph>Insert - Fields - More Fields - DocInformation</emph> tab </variable>"
msgid "<variable id=\"felddokumentinfo\">Choose <emph>Insert - Field - More Fields - DocInformation</emph> tab</variable>"
msgstr "<variable id=\"felddokumentinfo\">Escolla <emph>Inserir - Campos - Outros - Información do documento</emph>, separador <emph>Información do documento</emph></variable>"
#: 00000404.xhp
#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3150710\n"
"54\n"
"help.text"
msgid "<variable id=\"feldvariablen\">Choose <emph>Insert - Fields - More Fields - Variables</emph> tab </variable>"
msgid "<variable id=\"feldvariablen\">Choose <emph>Insert - Field - More Fields - Variables</emph> tab</variable>"
msgstr "<variable id=\"feldvariablen\">Escolla <emph>Inserir - Campos - Outros</emph>, separador <emph>Variábeis </emph></variable>"
#: 00000404.xhp
#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3152945\n"
"55\n"
"help.text"
msgid "<variable id=\"felddatenbank\">Choose <emph>Insert - Fields - More Fields - Database</emph> tab </variable>"
msgid "<variable id=\"felddatenbank\">Choose <emph>Insert - Field - More Fields - Database</emph> tab</variable>"
msgstr "<variable id=\"felddatenbank\">Escolla <emph>Inserir - Campos - Outros</emph>, lapela <emph>Base de datos</emph></variable>"
#: 00000404.xhp
@@ -1008,12 +1006,13 @@ msgid "<variable id=\"benutzerverz\">Choose <emph>Insert - Table of Contents and
msgstr ""
#: 00000404.xhp
#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3146342\n"
"help.text"
msgid "<variable id=\"stichwortverzeichnisverz1\">Choose <emph>Insert - Table of Contents and Index - Table of Contents, Index or Bibliography - Index or Table of Contents</emph> tab</variable>"
msgstr ""
msgstr "<variable id=\"verz31\">Escolla <emph>Inserir - Índices - Índices </emph> e prema no separador <emph>Entradas</emph> (cando o tipo seleccionado é Índice)</variable>"
#: 00000404.xhp
#, fuzzy
@@ -1088,12 +1087,13 @@ msgid "<variable id=\"verz27\">Choose <emph>Insert - Table of Contents and Index
msgstr "<variable id=\"verz31\">Escolla <emph>Inserir - Índices - Índices </emph> e prema no separador <emph>Entradas</emph> (cando o tipo seleccionado é Índice)</variable>"
#: 00000404.xhp
#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3153295\n"
"help.text"
msgid "<variable id=\"verz28\">Choose <emph>Insert - Table of Contents and Index - Table of Contents, Index or Bibliography - Index or Table of Contents</emph>, mark \"Additional Styles\" check box and then click <emph>Assign styles</emph></variable>"
msgstr ""
msgstr "<variable id=\"verz31\">Escolla <emph>Inserir - Índices - Índices </emph> e prema no separador <emph>Entradas</emph> (cando o tipo seleccionado é Índice)</variable>"
#: 00000404.xhp
#, fuzzy

View File

@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-04-16 21:40+0200\n"
"PO-Revision-Date: 2016-04-16 23:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"POT-Creation-Date: 2016-05-23 21:36+0200\n"
"PO-Revision-Date: 2016-05-02 11:56+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.7\n"
"X-POOTLE-MTIME: 1460848285.000000\n"
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1462190191.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -107,12 +107,12 @@ msgid "<variable id=\"serienbrieftext\"><ahelp hid=\".uno:MergeDialog\">Opens th
msgstr "<variable id=\"serienbrieftext\"><ahelp hid=\".uno:MergeDialog\">Abre o diálogo<emph>Combinación de correspondencia</emph>, que axuda a imprimir e gardarcartas modelo.</ahelp></variable>"
#: 01150000.xhp
#, fuzzy
msgctxt ""
"01150000.xhp\n"
"par_id3154102\n"
"4\n"
"help.text"
msgid "During printing, the database information replaces the corresponding database fields (placeholders). For more information about inserting database fields refer to the <link href=\"text/swriter/01/04090006.xhp\" name=\"Database\"><emph>Database</emph></link> tab page under <emph>Insert - Fields - More Fields</emph>."
msgid "During printing, the database information replaces the corresponding database fields (placeholders). For more information about inserting database fields refer to the <link href=\"text/swriter/01/04090006.xhp\" name=\"Database\"><emph>Database</emph></link> tab page under <emph>Insert - Field - More Fields</emph>."
msgstr "Durante a impresión, a información da base de datos substitúe os campos correspondentes da base de datos (marcadores de posición). Para máis información sobre a inserción de campos de base de datos, consulte a lapela sobre <link href=\"text/swriter/01/04090006.xhp\" name=\"Database\"><emph>Bases de datos</emph></link> en <emph>Inserir - Campos - Máis campos</emph>."
#: 01150000.xhp
@@ -10167,12 +10167,12 @@ msgid "To display conditional text based on the number of pages:"
msgstr "Para mostrar texto condicional baseado no número de páxinas:"
#: 04090200.xhp
#, fuzzy
msgctxt ""
"04090200.xhp\n"
"par_id3150333\n"
"136\n"
"help.text"
msgid "Choose <emph>Insert - Fields - More Fields</emph>, and then click the <emph>Functions</emph> tab."
msgid "Choose <emph>Insert - Field - More Fields</emph>, and then click the <emph>Functions</emph> tab."
msgstr "Escolla <emph>Inserir - Campos - Outros</emph> e a seguir prema na lapela <emph>Funcións</emph>."
#: 04090200.xhp
@@ -10230,12 +10230,12 @@ msgid "To display conditional text based on a user-defined Variable"
msgstr "Para mostrar texto condicional baseado nunha variábel definida polo usuario:"
#: 04090200.xhp
#, fuzzy
msgctxt ""
"04090200.xhp\n"
"par_id3155836\n"
"138\n"
"help.text"
msgid "Choose <emph>Insert - Fields - More Fields</emph>, and then click the <emph>Variables</emph> tab."
msgid "Choose <emph>Insert - Field - More Fields</emph>, and then click the <emph>Variables</emph> tab."
msgstr "Escolla <emph>Inserir - Campos - Outros</emph> e a seguir prema na lapela <emph>Variábeis</emph>."
#: 04090200.xhp
@@ -10347,12 +10347,12 @@ msgid "The first part of this example inserts a space between the \"First Name\"
msgstr "A primeira parte deste exemplo inserir un espazo entre o \"Nome \" ecampos\"Apelidos \" nun documento, eo segundo texto insercións de pezas con base no contido dun campo. Este exemplo require que unha fonte de datos de enderezos está rexistrado con $ [officename]."
#: 04090200.xhp
#, fuzzy
msgctxt ""
"04090200.xhp\n"
"par_id3150523\n"
"145\n"
"help.text"
msgid "Choose <emph>Insert - Fields - More Fields</emph>, and then click the <emph>Database</emph> tab."
msgid "Choose <emph>Insert - Field - More Fields</emph>, and then click the <emph>Database</emph> tab."
msgstr "Escolla <emph>Inserir - Campos - Outros</emph> e a seguir prema na lapela <emph>Base de datos</emph>."
#: 04090200.xhp
@@ -13232,18 +13232,18 @@ msgid "Edit Concordance File"
msgstr "Editar ficheiro de concordancia"
#: 04120250.xhp
#, fuzzy
msgctxt ""
"04120250.xhp\n"
"bm_id3148768\n"
"help.text"
msgid "<bookmark_value>editing; concordance files</bookmark_value><bookmark_value>concordance files; definition</bookmark_value>"
msgid "<bookmark_value>editing; concordance files</bookmark_value> <bookmark_value>concordance files; definition</bookmark_value>"
msgstr "<Bookmark_value> edición; ficheiros de concordancia </ bookmark_value> <bookmark_value> ficheiros de concordancia; definición </ bookmark_value>"
#: 04120250.xhp
msgctxt ""
"04120250.xhp\n"
"hd_id3148768\n"
"1\n"
"help.text"
msgid "Edit Concordance File"
msgstr "Editar ficheiro de concordancia"
@@ -13252,24 +13252,23 @@ msgstr "Editar ficheiro de concordancia"
msgctxt ""
"04120250.xhp\n"
"par_id3151180\n"
"2\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/createautomarkdialog/CreateAutomarkDialog\">Create or edit a list of words to include in an Alphabetical Index.</ahelp> A concordance file lists words that should be referenced in an alphabetical index, together with the page number(s) where they appear in the document."
msgstr "<ahelp hid=\"modules/swriter/ui/createautomarkdialog/CreateAutomarkDialog\"> Crear ou editar unha lista de palabras para incluírnun índice alfabético.</ahelp> Un ficheiro de concordancia lista palabrasque deben ser referenciados nun índice alfabético, xunto co número (s)páxina onde aparecen no documento."
#: 04120250.xhp
#, fuzzy
msgctxt ""
"04120250.xhp\n"
"par_id837427\n"
"help.text"
msgid "You can use the Find All button on the Find & Replace dialog to highlight all places where a word appears, then open the Insert Index Entry dialog to add that word and places to the alphabetical index. However, if you need the same set of alphabetical indexes in multiple documents, the concordance file allows to enter every word just once, then use the list many times."
msgid "You can use the Find All button on the Find & Replace dialog to highlight all places where a word appears, then open the Insert Index Entry dialog to add that word and places to the alphabetical index. However, if you need the same set of alphabetical indexes in multiple documents, the concordance file allows you to enter every word just once, then use the list many times."
msgstr "Pode usar o botón Buscar todos no diálogo Localizar e substituír para destacar todas as partes onde a palabra aparece, logo abra a caixa de diálogo Inserir entrada de índice para engadir esta palabra e lugares para o índice alfabético. Con todo, se precisa dun mesmo conxunto de índices alfabéticos en varios documentos, o ficheiro de concordancia permite entrar cada palabra só unha vez, a seguir, use a lista varias veces."
#: 04120250.xhp
msgctxt ""
"04120250.xhp\n"
"hd_id3154645\n"
"19\n"
"help.text"
msgid "To access the Edit Concordance File dialog:"
msgstr "Para acceder á caixa de diálogo Editar ficheiro de concordancia:"
@@ -13286,7 +13285,6 @@ msgstr ""
msgctxt ""
"04120250.xhp\n"
"par_id3145420\n"
"21\n"
"help.text"
msgid "In the <emph>Type </emph>box, select \"Alphabetical Index\"."
msgstr "Na <emph>Introduza</emph> caixa, seleccione \"Índice Alfabético \"."
@@ -13295,7 +13293,6 @@ msgstr "Na <emph>Introduza</emph> caixa, seleccione \"Índice Alfabético \"."
msgctxt ""
"04120250.xhp\n"
"par_id3154107\n"
"22\n"
"help.text"
msgid "In the <emph>Options </emph>area, select the <emph>Concordance file</emph> check box."
msgstr "En <emph>Opcións</emph> área, seleccione o <emph>ficheiro de concordancia caixa de opción</emph>."
@@ -13304,7 +13301,6 @@ msgstr "En <emph>Opcións</emph> área, seleccione o <emph>ficheiro de concordan
msgctxt ""
"04120250.xhp\n"
"par_id3153668\n"
"23\n"
"help.text"
msgid "Click the <emph>File</emph> button, and then choose <emph>New</emph> or <emph>Edit</emph>."
msgstr "Prema no arquivo <emph>botón <emph /> e escolla <emph>Nova</emph> ou <emph>Editar</emph>."
@@ -13313,7 +13309,6 @@ msgstr "Prema no arquivo <emph>botón <emph /> e escolla <emph>Nova</emph> ou <e
msgctxt ""
"04120250.xhp\n"
"par_id3154470\n"
"24\n"
"help.text"
msgid "A concordance file contains the following fields:"
msgstr "Os ficheiros de concordancia conteñen os seguintes campos:"
@@ -13322,7 +13317,6 @@ msgstr "Os ficheiros de concordancia conteñen os seguintes campos:"
msgctxt ""
"04120250.xhp\n"
"par_id3152953\n"
"3\n"
"help.text"
msgid "\"Search term\" refers to the index entry that you want to mark in the document."
msgstr "A opción \"Termo de busca\" refírese á entrada de índice que desexa marcar no documento."
@@ -13331,7 +13325,6 @@ msgstr "A opción \"Termo de busca\" refírese á entrada de índice que desexa
msgctxt ""
"04120250.xhp\n"
"par_id3155896\n"
"4\n"
"help.text"
msgid "\"Alternative entry\" refers to the index entry that you want to appear in the index."
msgstr "A opción \"Entrada alternativa\" refírese á entrada de índice que debe aparecer no índice."
@@ -13340,7 +13333,6 @@ msgstr "A opción \"Entrada alternativa\" refírese á entrada de índice que de
msgctxt ""
"04120250.xhp\n"
"par_id3154194\n"
"5\n"
"help.text"
msgid "The 1st and 2nd Keys are parent index entries. The \"Search term\" or the \"Alternative entry\" appears as a subentry under the 1st and 2nd Keys."
msgstr "A primeira e a segunda chave son entradas superiores de índice.\"Termo de busca\" ou \"Entrada alternativa\" aparecen como subentrada so a primeira e a segunda chave."
@@ -13349,7 +13341,6 @@ msgstr "A primeira e a segunda chave son entradas superiores de índice.\"Termo
msgctxt ""
"04120250.xhp\n"
"par_id3155184\n"
"6\n"
"help.text"
msgid "\"Match case\" means that uppercase and lowercase letters are considered."
msgstr "O campo \"Diferenciar maiúsculas de minúsculas\" indica que se fai distinción entre letras maiúsculas e minúsculas."
@@ -13358,7 +13349,6 @@ msgstr "O campo \"Diferenciar maiúsculas de minúsculas\" indica que se fai dis
msgctxt ""
"04120250.xhp\n"
"par_id3143282\n"
"7\n"
"help.text"
msgid "\"Word only\" searches for the term as a single word."
msgstr "A opción \"Só palabra\" busca o termo como unha única palabra."
@@ -13367,7 +13357,6 @@ msgstr "A opción \"Só palabra\" busca o termo como unha única palabra."
msgctxt ""
"04120250.xhp\n"
"par_id3147220\n"
"8\n"
"help.text"
msgid "To enable the \"Match case\" or \"Word only\" options, click in the corresponding cell, and then select the check box."
msgstr "Para activar as opcións \"Diferenciar maiúsculas de minúsculas\" ou \"Só palabra\", prema na cela correspondente e, a seguir, marque a caixa de opción."
@@ -13376,7 +13365,6 @@ msgstr "Para activar as opcións \"Diferenciar maiúsculas de minúsculas\" ou \
msgctxt ""
"04120250.xhp\n"
"hd_id3153629\n"
"25\n"
"help.text"
msgid "To create a concordance file without the Edit Concordance File dialog:"
msgstr "Para crear un ficheiro de concordancia sen utilizar a caixa de diálogo Editar ficheiro de concordancia:"
@@ -13385,7 +13373,6 @@ msgstr "Para crear un ficheiro de concordancia sen utilizar a caixa de diálogo
msgctxt ""
"04120250.xhp\n"
"par_id3153644\n"
"9\n"
"help.text"
msgid "Use the following format guidelines when you create a concordance file:"
msgstr "Cando cree ficheiros de concordancia utilice as seguintes directrices de formato:"
@@ -13394,7 +13381,6 @@ msgstr "Cando cree ficheiros de concordancia utilice as seguintes directrices de
msgctxt ""
"04120250.xhp\n"
"par_id3152770\n"
"10\n"
"help.text"
msgid "Each entry in the concordance file is on a separate line."
msgstr "As entradas do ficheiro de concordancia deben estar en liñas separadas."
@@ -13403,7 +13389,6 @@ msgstr "As entradas do ficheiro de concordancia deben estar en liñas separadas.
msgctxt ""
"04120250.xhp\n"
"par_id3155142\n"
"26\n"
"help.text"
msgid "Commented lines start with #."
msgstr "As liñas comentadas comezan por #."
@@ -13412,7 +13397,6 @@ msgstr "As liñas comentadas comezan por #."
msgctxt ""
"04120250.xhp\n"
"par_id3153354\n"
"11\n"
"help.text"
msgid "Use the following format for the entries:"
msgstr "Utilice o seguinte formato para as entradas:"
@@ -13421,7 +13405,6 @@ msgstr "Utilice o seguinte formato para as entradas:"
msgctxt ""
"04120250.xhp\n"
"par_id3149172\n"
"12\n"
"help.text"
msgid "Search term;Alternative entry;1st key;2nd key;Match case;Word only"
msgstr "Termo de busca;Entrada alternativa;Primeira chave;Segunda chave;Diferenciar maiúsculas de minúsculas;Só palabra"
@@ -13430,7 +13413,6 @@ msgstr "Termo de busca;Entrada alternativa;Primeira chave;Segunda chave;Diferenc
msgctxt ""
"04120250.xhp\n"
"par_id3156270\n"
"13\n"
"help.text"
msgid "The entries \"Match case\" and \"Word only\" are interpreted as \"No\" or FALSE if they are empty or zero (0). All other contents are interpreted as \"Yes\" or TRUE."
msgstr "As entradas \"Diferenciar maiúsculas de minúsculas\" e \"Só palabra\" interprétanse como \"Non\" ou FALSE se están baleiras ou son cero (0). Os demais contidos interprétanse como \"Si\" ou TRUE."
@@ -13439,7 +13421,6 @@ msgstr "As entradas \"Diferenciar maiúsculas de minúsculas\" e \"Só palabra\"
msgctxt ""
"04120250.xhp\n"
"hd_id3145778\n"
"27\n"
"help.text"
msgid "Example"
msgstr "Exemplo"
@@ -13448,7 +13429,6 @@ msgstr "Exemplo"
msgctxt ""
"04120250.xhp\n"
"par_id3155907\n"
"14\n"
"help.text"
msgid "For example, to include the word \"Boston\" in your alphabetical index under the \"Cities\" entry, enter the following line in the concordance file:"
msgstr "Por exemplo, para incluír a palabra \"Ourense\" no índice alfabético dentro da entrada \"Cidades\", introduza a seguinte liña no ficheiro de concordancia:"
@@ -13457,7 +13437,6 @@ msgstr "Por exemplo, para incluír a palabra \"Ourense\" no índice alfabético
msgctxt ""
"04120250.xhp\n"
"par_id3151370\n"
"15\n"
"help.text"
msgid "Boston;Boston;Cities;;0;0"
msgstr "Ourense;Ourense;Cidades;;0;0"
@@ -13466,7 +13445,6 @@ msgstr "Ourense;Ourense;Cidades;;0;0"
msgctxt ""
"04120250.xhp\n"
"par_id3151383\n"
"16\n"
"help.text"
msgid "This also finds \"Boston\" if it is written in lowercase letters."
msgstr "Este procedemento tamén localiza a palabra \"Ourense\" se está escrita con letras minúsculas."
@@ -13475,7 +13453,6 @@ msgstr "Este procedemento tamén localiza a palabra \"Ourense\" se está escrita
msgctxt ""
"04120250.xhp\n"
"par_id3155866\n"
"17\n"
"help.text"
msgid "To include the \"Beacon Hill\" district in Boston under the \"Cities\" entry, enter the following line:"
msgstr "Para incluír o barrio \"O Couto\" da cidade de Ourense dentro da entrada \"Cidades\", introduza a seguinte liña:"
@@ -13484,7 +13461,6 @@ msgstr "Para incluír o barrio \"O Couto\" da cidade de Ourense dentro da entrad
msgctxt ""
"04120250.xhp\n"
"par_id3150116\n"
"18\n"
"help.text"
msgid "Beacon Hill;Boston;Cities;"
msgstr "O Couto;Ourense;Cidades;"
@@ -14575,16 +14551,17 @@ msgctxt ""
"04220000.xhp\n"
"par_id3153921\n"
"help.text"
msgid "To remove a header, choose <emph>Insert - </emph><emph>Header and Footer - </emph><emph>Header</emph>, and then select the page style containing the header. The header is removed from all of the pages that use this page style."
msgid "To remove a header, choose <emph>Insert - Header and Footer - Header</emph>, and then select the page style containing the header. The header is removed from all of the pages that use this page style."
msgstr "Para eliminar unha cabeceira, escolla <emph>Inserir - Cabeceira</emph>, e logo seleccione o estilo de páxina que contén a cabeceira. A cabeceira é eliminado de todas as páxinas que usan ese estilo de páxina."
#: 04220000.xhp
#, fuzzy
msgctxt ""
"04220000.xhp\n"
"par_id3150761\n"
"help.text"
msgid "To add or remove headers from all of the page styles that are in use in the document, choose <emph>Insert - </emph><emph>Header and Footer - </emph><emph>Header - All</emph>."
msgstr ""
msgid "To add or remove headers from all of the page styles that are in use in the document, choose <emph>Insert - Header and Footer - Header - All</emph>."
msgstr "Para engadir ou eliminar cabeceiras de todos os estilos de páxina que están en uso no documento, escolla <emph>Inserir - Cabeceira - Todos</emph>."
#: 04220000.xhp
msgctxt ""
@@ -14642,16 +14619,17 @@ msgctxt ""
"04230000.xhp\n"
"par_id3150566\n"
"help.text"
msgid "To remove a footer, choose <emph>Insert - </emph><emph>Header and Footer - </emph><emph>Footer</emph>, and then select the page style containing the footer. The footer is removed from all of the pages that use this page style."
msgid "To remove a footer, choose <emph>Insert - Header and Footer - Footer</emph>, and then select the page style containing the footer. The footer is removed from all of the pages that use this page style."
msgstr "Para eliminar un pé, seleccione <emph>Inserir - Pé</emph>, e logo seleccione o estilo de páxina que contén o rodapé. O pé é eliminado de todas as páxinas que usan ese estilo de páxina."
#: 04230000.xhp
#, fuzzy
msgctxt ""
"04230000.xhp\n"
"par_id3153923\n"
"help.text"
msgid "To add or remove footers from all of the page styles that are in use in the document, choose <emph>Insert - </emph><emph>Header and Footer - </emph><emph>Footer - All</emph>."
msgstr ""
msgid "To add or remove footers from all of the page styles that are in use in the document, choose <emph>Insert - Header and Footer - Footer - All</emph>."
msgstr "Para engadir ou eliminar rodapés de todos os estilos de páxina que están en uso no documento, escolla <emph>Inserir - Pé - Todos</emph>."
#: 04230000.xhp
msgctxt ""

View File

@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-04-16 21:40+0200\n"
"PO-Revision-Date: 2015-12-11 12:29+0000\n"
"Last-Translator: system user <>\n"
"POT-Creation-Date: 2016-05-23 21:36+0200\n"
"PO-Revision-Date: 2016-04-16 23:10+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
"X-POOTLE-MTIME: 1449836987.000000\n"
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1460848236.000000\n"
#: 02110000.xhp
msgctxt ""
@@ -3441,9 +3441,8 @@ msgstr "<ahelp hid=\".uno:InsertDateField\">Insire a data actual como un campo.<
msgctxt ""
"18030100.xhp\n"
"par_id3151312\n"
"3\n"
"help.text"
msgid "If you would like to define a different date format, or have the date updated automatically, select <emph>Insert - Fields - More Fields</emph> to insert a field command and make the desired settings in the <link href=\"text/swriter/01/04090000.xhp\" name=\"Fields\"><emph>Fields</emph></link> dialog. The format of an existing date field can be modified at any time by choosing <link href=\"text/swriter/01/02140000.xhp\" name=\"Edit - Fields\"><emph>Edit - Fields</emph></link>."
msgid "If you would like to define a different date format, or have the date updated automatically, select <emph>Insert - Field - More Fields</emph> to insert a field command and make the desired settings in the <link href=\"text/swriter/01/04090000.xhp\" name=\"Fields\"><emph>Fields</emph></link> dialog. The format of an existing date field can be modified at any time by choosing <link href=\"text/swriter/01/02140000.xhp\" name=\"Edit - Fields\"><emph>Edit - Fields</emph></link>."
msgstr "Se desexa definir outro formato de data ou que a data se actualice automaticamente, seleccione <emph>Inserir - Campos - Outros</emph> para inserir unha orde de campo e definir a configuración desexada na caixa de diálogo <link href=\"text/swriter/01/04090000.xhp\" name=\"Campos\"><emph>Campos</emph></link>. O formato dos campos de data poden modificarse en <link href=\"text/swriter/01/02140000.xhp\" name=\"Editar - Campos\"><emph>Editar - Campos</emph></link>."
#: 18030200.xhp
@@ -3485,9 +3484,8 @@ msgstr "<ahelp hid=\".uno:InsertTimeField\" visibility=\"visible\">Insire a hora
msgctxt ""
"18030200.xhp\n"
"par_id3151177\n"
"3\n"
"help.text"
msgid "To assign a different time format, or adapt the actual time data, select <emph>Insert - Fields - More Fields</emph> and make the desired changes in the <link href=\"text/swriter/01/04090000.xhp\" name=\"Fields\"><emph>Fields</emph></link> dialog. Additionally, you can modify the format of an inserted time field at any time by choosing <link href=\"text/swriter/01/02140000.xhp\" name=\"Edit - Fields\"><emph>Edit - Fields</emph></link>."
msgid "To assign a different time format, or adapt the actual time data, select <emph>Insert - Field - More Fields</emph> and make the desired changes in the <link href=\"text/swriter/01/04090000.xhp\" name=\"Fields\"><emph>Fields</emph></link> dialog. Additionally, you can modify the format of an inserted time field at any time by choosing <link href=\"text/swriter/01/02140000.xhp\" name=\"Edit - Fields\"><emph>Edit - Fields</emph></link>."
msgstr "Para atribuír outro formato de hora ou adaptar á hora real, seleccione <emph>Inserir - Campos - Outros</emph> e realice as modificacións que desexe na caixa de diálogo <link href=\"text/swriter/01/04090000.xhp\" name=\"Campos\"><emph>Campos</emph></link>. Alén diso, pode modificar o formato dos campos de hora inseridos escollendo <link href=\"text/swriter/01/02140000.xhp\" name=\"Editar - Campos\"><emph>Editar - Campos</emph></link>."
#: 18030300.xhp
@@ -3513,7 +3511,7 @@ msgctxt ""
"18030300.xhp\n"
"par_id3150760\n"
"help.text"
msgid "<ahelp hid=\".\">Inserts the current page number as a field at the cursor position.</ahelp> The default setting is for it to use the <emph>Page </emph><emph>Number</emph> character style."
msgid "<ahelp hid=\".\">Inserts the current page number as a field at the cursor position.</ahelp> The default setting is for it to use the <emph>Page Number</emph> character style."
msgstr ""
#: 18030300.xhp
@@ -3522,7 +3520,7 @@ msgctxt ""
"18030300.xhp\n"
"par_id3151175\n"
"help.text"
msgid "If you would like to define a different format or modify the page number, insert a field with <emph>Insert - Fields - More Fields</emph> and make the desired settings in the <link href=\"text/swriter/01/04090000.xhp\" name=\"Fields\"><emph>Fields</emph></link> dialog. It is also possible to edit a field inserted with the <emph>Page Number</emph> command with <link href=\"text/swriter/01/02140000.xhp\" name=\"Edit - Fields\"><emph>Edit - Fields</emph></link>. To change page numbers, read the <link href=\"text/swriter/guide/pagenumbers.xhp\" name=\"Page Numbers\"><emph>Page Numbers</emph></link> guide."
msgid "If you would like to define a different format or modify the page number, insert a field with <emph>Insert - Field - More Fields</emph> and make the desired settings in the <link href=\"text/swriter/01/04090000.xhp\" name=\"Fields\"><emph>Fields</emph></link> dialog. It is also possible to edit a field inserted with the <emph>Page Number</emph> command with <link href=\"text/swriter/01/02140000.xhp\" name=\"Edit - Fields\"><emph>Edit - Fields</emph></link>. To change page numbers, read the <link href=\"text/swriter/guide/pagenumbers.xhp\" name=\"Page Numbers\"><emph>Page Numbers</emph></link> guide."
msgstr "Se desexa definir un formato diferente ou modificar o número de páxinas, insira un campo en <emph>Inserir - Campos - Outro</emph> e defina a configuración que desexe na caixa de diálogo <link href=\"text/swriter/01/04090000.xhp\" name=\"Campos\"><emph>Campos</emph></link>. Tamén é posíbel editar un campo inserido coa orde <emph>Numeración de páxina</emph> en <link href=\"text/swriter/01/02140000.xhp\" name=\"Editar - Campos\"><emph>Editar - Campos</emph></link>. Para modificar a numeración de páxina, lea a guía <link href=\"text/swriter/guide/pagenumbers.xhp\" name=\"Numeración de páxina\"><emph>Numeración de páxina</emph></link>."
#: 18030400.xhp
@@ -3600,9 +3598,8 @@ msgstr "<ahelp hid=\".uno:InsertTopicField\">Insire como campo o asunto especifi
msgctxt ""
"18030500.xhp\n"
"par_id3156380\n"
"3\n"
"help.text"
msgid "If you would like to insert a different document property as a field, select <emph>Insert - Fields - More Fields</emph> and make the desired settings in the <link href=\"text/swriter/01/04090000.xhp\" name=\"Fields\"><emph>Fields</emph></link> dialog. The <emph>DocInformation</emph> category contains all of the fields shown in the document properties."
msgid "If you would like to insert a different document property as a field, select <emph>Insert - Field - More Fields</emph> and make the desired settings in the <link href=\"text/swriter/01/04090000.xhp\" name=\"Fields\"><emph>Fields</emph></link> dialog. The <emph>DocInformation</emph> category contains all of the fields shown in the document properties."
msgstr "Se desexa inserir unha propriedade diferente de documento, seleccione <emph>Inserir - Campos - Outros...</emph> e defina a configuración desexada na caixa de diálogo <link href=\"text/swriter/01/04090000.xhp\" name=\"Campos\"><emph>Campos</emph></link>. A categoría <emph>Información do documento</emph>contén todos os campos mostrados nas propiedades."
#: 18030600.xhp
@@ -3636,9 +3633,8 @@ msgstr "<ahelp hid=\".uno:InsertTitleField\">Insire como un campo o título espe
msgctxt ""
"18030600.xhp\n"
"par_id3148768\n"
"3\n"
"help.text"
msgid "If you would like to insert a different document property as a field, select <emph>Insert - Fields - More Fields</emph> and make the desired settings in the <link href=\"text/swriter/01/04090000.xhp\" name=\"Fields\"><emph>Fields</emph></link> dialog. The <emph>DocInformation</emph> category contains all of the fields shown in the document properties."
msgid "If you would like to insert a different document property as a field, select <emph>Insert - Field - More Fields</emph> and make the desired settings in the <link href=\"text/swriter/01/04090000.xhp\" name=\"Fields\"><emph>Fields</emph></link> dialog. The <emph>DocInformation</emph> category contains all of the fields shown in the document properties."
msgstr "Se desexa inserir unha propriedade diferente de documento, seleccione <emph>Inserir - Campos - Outros...</emph> e defina a configuración desexada na caixa de diálogo <link href=\"text/swriter/01/04090000.xhp\" name=\"Campos\"><emph>Campos</emph></link>. A categoría <emph>Información do documento</emph>contén todos os campos mostrados nas propiedades."
#: 18030700.xhp

View File

@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-01-08 13:42+0100\n"
"PO-Revision-Date: 2015-05-11 18:30+0000\n"
"Last-Translator: system user <>\n"
"POT-Creation-Date: 2016-05-23 21:36+0200\n"
"PO-Revision-Date: 2016-05-02 11:56+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
"X-POOTLE-MTIME: 1431369008.000000\n"
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1462190193.000000\n"
#: 01020000.xhp
msgctxt ""
@@ -1314,12 +1314,13 @@ msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinlin
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Opción </caseinline><defaultinline>Alt</defaultinline></switchinline>+Teclas de frecha"
#: 01020000.xhp
#, fuzzy
msgctxt ""
"01020000.xhp\n"
"par_id6164433\n"
"help.text"
msgid "Move cursor to end of paragraph."
msgstr "Mova o cursor até o final do parágrafo."
msgid "Move cursor to beginning of next paragraph."
msgstr "Mover o cursor para o principio do parágrafo anterior"
#: 01020000.xhp
#, fuzzy

View File

@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-04-16 21:40+0200\n"
"PO-Revision-Date: 2016-04-16 23:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"POT-Creation-Date: 2016-05-23 21:37+0200\n"
"PO-Revision-Date: 2016-05-02 11:57+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.7\n"
"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1460848285.000000\n"
"X-POOTLE-MTIME: 1462190224.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -3267,11 +3267,12 @@ msgid "The first part of the example is to define a variable for the condition s
msgstr "A primeira parte do exemplo define a variábel para a instrución de condición."
#: conditional_text.xhp
#, fuzzy
msgctxt ""
"conditional_text.xhp\n"
"par_id3155566\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Insert - Fields - More Fields</item>, and then click the <item type=\"menuitem\">Variables</item> tab."
msgid "Choose <item type=\"menuitem\">Insert - Field - More Fields</item>, and then click the <item type=\"menuitem\">Variables</item> tab."
msgstr "Escolla <item type=\"menuitem\">Inserir - Campos - Outros</item> e a seguir prema na lapela <emph>Variábeis</emph>."
#: conditional_text.xhp
@@ -3333,11 +3334,12 @@ msgid "Place the cursor where you want to insert the conditional text in your te
msgstr "Coloque o cursor onde desexe inserir o texto condicional."
#: conditional_text.xhp
#, fuzzy
msgctxt ""
"conditional_text.xhp\n"
"par_id3151212\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Insert - Fields - More Fields</item>, and then click the <item type=\"menuitem\">Functions</item> tab."
msgid "Choose <item type=\"menuitem\">Insert - Field - More Fields</item>, and then click the <item type=\"menuitem\">Functions</item> tab."
msgstr "Escolla <item type=\"menuitem\">Inserir - Campos - Outros</item> e a seguir prema na lapela <item type=\"menuitem\">Funcións</item>."
#: conditional_text.xhp
@@ -3473,19 +3475,21 @@ msgid "Place the cursor in your document where you want to insert the page count
msgstr "Coloque o cursor no lugar onde desexa inserir a conta de páxinas."
#: conditional_text2.xhp
#, fuzzy
msgctxt ""
"conditional_text2.xhp\n"
"par_id3150513\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Insert - Fields - Page Count</item>, and then enter a space."
msgid "Choose <item type=\"menuitem\">Insert - Field - Page Count</item>, and then enter a space."
msgstr "Escolla <item type =\"menuitem\"> Inserir - Campos - Páxina Conde </ item>, e logo escriba un espazo."
#: conditional_text2.xhp
#, fuzzy
msgctxt ""
"conditional_text2.xhp\n"
"par_id3150537\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Insert - Fields - More Fields</item>, and then click the <item type=\"menuitem\">Functions</item> tab."
msgid "Choose <item type=\"menuitem\">Insert - Field - More Fields</item>, and then click the <item type=\"menuitem\">Functions</item> tab."
msgstr "Escolla <item type=\"menuitem\">Inserir - Campos - Outros</item> e a seguir prema na lapela <item type=\"menuitem\">Funcións</item>."
#: conditional_text2.xhp
@@ -4150,7 +4154,7 @@ msgctxt ""
"fields_date.xhp\n"
"par_id3147679\n"
"help.text"
msgid "Choose <emph>Insert - Fields - More Fields</emph> and click the <emph>Document</emph> tab."
msgid "Choose <emph>Insert - Field - More Fields</emph> and click the <emph>Document</emph> tab."
msgstr "Escolla <emph>Inserir - Campos - Outros</emph> e prema na lapela <emph>Funcións</emph>."
#: fields_date.xhp
@@ -4220,7 +4224,7 @@ msgctxt ""
"fields_enter.xhp\n"
"par_id3145776\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Insert - Fields - More Fields</item> and click the <item type=\"menuitem\">Functions</item> tab."
msgid "Choose <item type=\"menuitem\">Insert - Field - More Fields</item> and click the <item type=\"menuitem\">Functions</item> tab."
msgstr "Escolla <item type=\"menuitem\">Inserir - Campos - Outros</item> e a seguir prema na lapela <item type=\"menuitem\">Funcións</item>."
#: fields_enter.xhp
@@ -5078,11 +5082,12 @@ msgid "Choose <emph>Insert - Footer</emph> and select the page style that you wa
msgstr "Escolla <emph>Inserir - Pé de páxina</emph> e seleccione o estilo de páxina ao que desexa engadir o pé de páxina."
#: footer_nextpage.xhp
#, fuzzy
msgctxt ""
"footer_nextpage.xhp\n"
"par_id3147109\n"
"help.text"
msgid "Place the cursor in the footer and choose <emph>Insert - Fields - More Fields</emph>."
msgid "Place the cursor in the footer and choose <emph>Insert - Field - More Fields</emph>."
msgstr "Coloque o cursor no pé de páxina e escolla <emph>Inserir - Campos - Outros</emph>."
#: footer_nextpage.xhp
@@ -5177,12 +5182,12 @@ msgid "Choose <emph>Insert - Footer</emph> and select the page style that you wa
msgstr "Escolla <emph>Inserir - Pé de páxina</emph> e seleccione o estilo de páxina ao que desexa engadir o pé de páxina."
#: footer_pagenumber.xhp
#, fuzzy
msgctxt ""
"footer_pagenumber.xhp\n"
"par_id3150534\n"
"3\n"
"help.text"
msgid "Choose <emph>Insert - Fields - Page Number</emph>."
msgid "Choose <emph>Insert - Field - Page Number</emph>."
msgstr "Escolla <emph>Inserir - Campos - Número de páxina</emph>."
#: footer_pagenumber.xhp
@@ -5212,12 +5217,12 @@ msgid "Click in front of the page number field, type <item type=\"literal\">Page
msgstr "Prema diante do campo de número de páxina, tipo <item type=\"literal\"> páxina </ item> e introduza un espazo; prema despois do campo, introduza un espazo e escriba <item type=\"literal\"> de </ item> e entrar en outro espazo."
#: footer_pagenumber.xhp
#, fuzzy
msgctxt ""
"footer_pagenumber.xhp\n"
"par_id3155554\n"
"7\n"
"help.text"
msgid "Choose <emph>Insert - Fields - Page Count</emph>."
msgid "Choose <emph>Insert - Field - Page Count</emph>."
msgstr "Escolla <emph>Inserir - Campos - Conta de páxinas</emph>."
#: footnote_usage.xhp
@@ -6509,7 +6514,7 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3146863\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Insert - Fields - More Fields</item> and click the <item type=\"menuitem\">Document</item> tab."
msgid "Choose <item type=\"menuitem\">Insert - Field - More Fields</item> and click the <item type=\"menuitem\">Document</item> tab."
msgstr "Escolla <item type=\"menuitem\">Inserir - Campos - Outros</item> e a seguir prema na lapela <item type=\"menuitem\">Funcións</item>."
#: header_with_chapter.xhp
@@ -6664,12 +6669,12 @@ msgid "To Create a Variable"
msgstr "Para crear unha variable"
#: hidden_text.xhp
#, fuzzy
msgctxt ""
"hidden_text.xhp\n"
"par_id3153131\n"
"20\n"
"help.text"
msgid "Click in your document and choose <emph>Insert - Fields - More Fields</emph>."
msgid "Click in your document and choose <emph>Insert - Field - More Fields</emph>."
msgstr "Prema no documento e escolla <emph>Inserir - Campos - Outro</emph>."
#: hidden_text.xhp
@@ -6745,12 +6750,12 @@ msgid "Click in the document where you want to add the text."
msgstr "Prema no lugar onde desexe engadir o texto."
#: hidden_text.xhp
#, fuzzy
msgctxt ""
"hidden_text.xhp\n"
"par_id3145409\n"
"5\n"
"help.text"
msgid "Choose <emph>Insert - Fields - More Fields</emph> and click the <emph>Functions</emph> tab."
msgid "Choose <emph>Insert - Field - More Fields</emph> and click the <emph>Functions</emph> tab."
msgstr "Escolla <emph>Inserir - Campos - Outros</emph> e prema na lapela <emph>Funcións</emph>."
#: hidden_text.xhp
@@ -6808,13 +6813,13 @@ msgid "Click in the paragraph where you want to add the text."
msgstr "Prema no parágrafo no cal desexa engadir o texto."
#: hidden_text.xhp
#, fuzzy
msgctxt ""
"hidden_text.xhp\n"
"par_id3154872\n"
"35\n"
"help.text"
msgid "Choose <emph>Insert - Fields - More Fields</emph> and click the <emph>Functions</emph> tab."
msgstr "Escolla <emph>Inserir - Campos - Outros</emph> e prema na lapela <emph\">Funcións</emph>."
msgid "Choose <emph>Insert - Field - More Fields</emph> and click the <emph>Functions</emph> tab."
msgstr "Escolla <emph>Inserir - Campos - Outros</emph> e prema na lapela <emph>Funcións</emph>."
#: hidden_text.xhp
msgctxt ""
@@ -6916,9 +6921,8 @@ msgstr "<link href=\"text/swriter/guía/nonprintable_text.xhp \" name =\"Creaci
msgctxt ""
"hidden_text.xhp\n"
"par_id3148603\n"
"10\n"
"help.text"
msgid "<link href=\"text/swriter/01/04090000.xhp\" name=\"Insert - Fields - Other\">Insert - Fields - More Fields</link>"
msgid "<link href=\"text/swriter/01/04090000.xhp\" name=\"Insert - Fields - Other\">Insert - Field - More Fields</link>"
msgstr ""
#: hidden_text.xhp
@@ -9679,7 +9683,7 @@ msgctxt ""
"number_sequence.xhp\n"
"par_id3155048\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Insert - Fields - More Fields</item>, and then click the <item type=\"menuitem\">Variables</item> tab."
msgid "Choose <item type=\"menuitem\">Insert - Field - More Fields</item>, and then click the <item type=\"menuitem\">Variables</item> tab."
msgstr "Escolla <item type=\"menuitem\">Inserir - Campos - Outros</item> e a seguir prema na lapela <emph>Variábeis</emph>."
#: number_sequence.xhp
@@ -10553,11 +10557,12 @@ msgid "To Insert Page Numbers"
msgstr "Para inserir números de páxina"
#: pagenumbers.xhp
#, fuzzy
msgctxt ""
"pagenumbers.xhp\n"
"par_id8611102\n"
"help.text"
msgid "Choose <emph>Insert - Fields - Page Number</emph> to insert a page number at the current cursor position."
msgid "Choose <emph>Insert - Field - Page Number</emph> to insert a page number at the current cursor position."
msgstr "Escolla <emph>Inserir - Campos - Número de páxina</emph> para inserir o número de páxina na posición actual do cursor."
#: pagenumbers.xhp
@@ -13765,11 +13770,12 @@ msgid "You can manually check the spelling and grammar of a text selection or th
msgstr "Podes comprobar manualmente a ortografía ea gramática dunha selección de texto ou todo o documento."
#: spellcheck_dialog.xhp
#, fuzzy
msgctxt ""
"spellcheck_dialog.xhp\n"
"par_id0525200902184476\n"
"help.text"
msgid "To check the spelling and the grammar of a text, the appropriate dictionaries must be installed. For many languages three different dictionaries exist: a spellchecker, a hyphenation dictionary, and a thesaurus. Each dictionary covers one language only. Grammar checkers can be downloaded and installed as extensions. See the <link href=\"http://extensions.libreoffice.org/dictionary\">extensions web page</link>."
msgid "To check the spelling and the grammar of a text, the appropriate dictionaries must be installed. For many languages three different dictionaries exist: a spellchecker, a hyphenation dictionary, and a thesaurus. Each dictionary covers one language only. Grammar checkers can be downloaded and installed as extensions. See the <link href=\"http://extensions.libreoffice.org/extension-center?getCategories=Dictionary\">extensions web page</link>."
msgstr "Para comprobar a ortografía ea gramática do texto, os dicionarios axeitados deben ser instalados. Para moitas linguas existen tres dicionarios diferentes: un corrector ortográfico, un dicionario de hifenização, e un dicionario de sinónimos. Cada dicionario abrangue só unha lingua. Gramaticais poden ser descargados e instalados como extensións. Vexa o <link href=\"http: //extensions.libreoffice.org/dictionary \"> extensións páxina web </ link>."
#: spellcheck_dialog.xhp

View File

@@ -0,0 +1,150 @@
#. extracted from helpcontent2/source/text/swriter/menu
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-05-07 21:35+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
#: insert_footnote_endnote.xhp
msgctxt ""
"insert_footnote_endnote.xhp\n"
"tit\n"
"help.text"
msgid "Footnote and Endnote"
msgstr ""
#: insert_footnote_endnote.xhp
msgctxt ""
"insert_footnote_endnote.xhp\n"
"hd_id03042016113344773\n"
"help.text"
msgid "<link href=\"text/swriter/menu/insert_footnote_endnote.xhp\">Footnote and Endnote</link>"
msgstr ""
#: insert_footnote_endnote.xhp
msgctxt ""
"insert_footnote_endnote.xhp\n"
"par_id030420161136126396\n"
"help.text"
msgid "<ahelp hid=\".\">The menu contains commands to insert a footnote or endnote with or without additional user interaction.</ahelp>"
msgstr ""
#: insert_footnote_endnote.xhp
msgctxt ""
"insert_footnote_endnote.xhp\n"
"par_id03042016113613789\n"
"help.text"
msgid "Footnote"
msgstr ""
#: insert_footnote_endnote.xhp
msgctxt ""
"insert_footnote_endnote.xhp\n"
"par_id030420161138373075\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertFootnote\">Insert a footnote at the current cursor position without a prompt.</ahelp>"
msgstr ""
#: insert_footnote_endnote.xhp
msgctxt ""
"insert_footnote_endnote.xhp\n"
"hd_id030420161138377837\n"
"help.text"
msgid "Endnote"
msgstr ""
#: insert_footnote_endnote.xhp
msgctxt ""
"insert_footnote_endnote.xhp\n"
"par_id030420161138378865\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertEndnote\">Insert a endnote at the current cursor position without a prompt.</ahelp>"
msgstr ""
#: insert_footnote_endnote.xhp
msgctxt ""
"insert_footnote_endnote.xhp\n"
"hd_id3147231\n"
"help.text"
msgid "<link href=\"text/swriter/01/04030000.xhp\" name=\"Footnote\">Footnote or Endnote</link>"
msgstr ""
#: insert_frame.xhp
msgctxt ""
"insert_frame.xhp\n"
"tit\n"
"help.text"
msgid "Frame"
msgstr ""
#: insert_frame.xhp
msgctxt ""
"insert_frame.xhp\n"
"hd_id030720160601535384\n"
"help.text"
msgid "<link href=\"text/swriter/menu/insert_frame.xhp\">Frame</link>"
msgstr ""
#: insert_frame.xhp
msgctxt ""
"insert_frame.xhp\n"
"par_id030720160603138925\n"
"help.text"
msgid "<ahelp hid=\".\">This submenu contains both interactive and non-interactive means of inserting a frame.</ahelp>"
msgstr ""
#: insert_frame.xhp
msgctxt ""
"insert_frame.xhp\n"
"hd_id030720160605268360\n"
"help.text"
msgid "Frame Interactively"
msgstr ""
#: insert_frame.xhp
msgctxt ""
"insert_frame.xhp\n"
"par_id030720160605261333\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertFrameInteract\">Insert a frame by drawing its shape with the mouse cursor.</ahelp>"
msgstr ""
#: insert_frame.xhp
msgctxt ""
"insert_frame.xhp\n"
"hd_id3150951\n"
"help.text"
msgid "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Floating Frame</link>"
msgstr ""
#: insert_header_footer.xhp
msgctxt ""
"insert_header_footer.xhp\n"
"tit\n"
"help.text"
msgid "Header and Footer"
msgstr ""
#: insert_header_footer.xhp
msgctxt ""
"insert_header_footer.xhp\n"
"hd_id030720160441573285\n"
"help.text"
msgid "<link href=\"text/swriter/menu/insert_header_footer.xhp\">Header and Footer</link>"
msgstr ""
#: insert_header_footer.xhp
msgctxt ""
"insert_header_footer.xhp\n"
"par_id030720160442296603\n"
"help.text"
msgid "<ahelp hid=\".\">This submenu includes commands to add and remove page headers and footers.</ahelp>"
msgstr ""