aboutsummaryrefslogtreecommitdiff
path: root/source/is/helpcontent2/source/text/scalc/01.po
diff options
context:
space:
mode:
Diffstat (limited to 'source/is/helpcontent2/source/text/scalc/01.po')
-rw-r--r--source/is/helpcontent2/source/text/scalc/01.po120
1 files changed, 116 insertions, 4 deletions
diff --git a/source/is/helpcontent2/source/text/scalc/01.po b/source/is/helpcontent2/source/text/scalc/01.po
index fb3374645fa..6783874ace7 100644
--- a/source/is/helpcontent2/source/text/scalc/01.po
+++ b/source/is/helpcontent2/source/text/scalc/01.po
@@ -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: 2018-11-12 12:22+0100\n"
-"PO-Revision-Date: 2017-08-29 23:38+0000\n"
-"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
+"POT-Creation-Date: 2018-11-16 22:41+0100\n"
+"PO-Revision-Date: 2018-11-12 13:45+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: is\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1504049883.000000\n"
+"X-POOTLE-MTIME: 1542030324.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -55175,6 +55175,118 @@ msgctxt ""
msgid "<item type=\"literal\">RAWSUBTRACT(0.987654321098765)</item> returns Err:511 (Missing variable) because RAWSUBTRACT requires a minimum of two numbers."
msgstr ""
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"tit\n"
+"help.text"
+msgid "REGEX Function"
+msgstr ""
+
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"bm_id831542233029549\n"
+"help.text"
+msgid "<bookmark_value>REGEX function</bookmark_value> <bookmark_value>regular expressions;extracting in spreadsheets</bookmark_value> <bookmark_value>regular expressions;REGEX function</bookmark_value>"
+msgstr ""
+
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"hd_id961542230672100\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/func_regex.xhp\" name=\"function REGEX\">REGEX</link>"
+msgstr ""
+
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"par_id541542230672101\n"
+"help.text"
+msgid "<variable id=\"func_regex_desc\"><ahelp hid=\".\">Matches and extracts or optionally replaces text using regular expressions.</ahelp></variable>"
+msgstr ""
+
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"par_id701542231253817\n"
+"help.text"
+msgid "REGEX( Text ; Expression [ ; [ Replacement ] [ ; Flags ] ] )"
+msgstr ""
+
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"par_id621542232197446\n"
+"help.text"
+msgid "<emph>Text</emph>: A text or reference to a cell where the regular expression is to be applied."
+msgstr ""
+
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"par_id211542232209275\n"
+"help.text"
+msgid "<emph>Expression</emph>: A text representing the regular expression, using <link href=\"https://userguide.icu-project.org/strings/regexp\" name=\"ICU REGEXP\">ICU regular expressions</link>. If there is no match, #N/A is returned."
+msgstr ""
+
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"par_id581542232755604\n"
+"help.text"
+msgid "<emph>Replacement</emph>: Optional. The replacement text and references to capture groups. If there is no match, <emph>Text</emph> is returned unmodified."
+msgstr ""
+
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"par_id421542232246840\n"
+"help.text"
+msgid "<emph>Flags</emph>: Optional. \"g\" replaces all matches of <emph>Expression</emph> in <emph>Text</emph>, not extracted. If there is no match, <emph>Text</emph> is returned unmodified."
+msgstr ""
+
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"par_id371542291684176\n"
+"help.text"
+msgid "<item type=\"input\">=REGEX(\"123456ABCDEF\";\"[:digit:]\";\"Z\")</item> returns \"Z23456ABCDEF\", where the first match of a digit is replaced by \"Z\"."
+msgstr ""
+
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"par_id891542291697194\n"
+"help.text"
+msgid "<item type=\"input\">=REGEX(\"123456ABCDEF\";\"[:digit:]\";\"Z\";\"g\")</item> returns \"ZZZZZZABCDEF\", where all digits were replaced by \"Z\"."
+msgstr ""
+
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"par_id21542291705695\n"
+"help.text"
+msgid "<item type=\"input\">=REGEX(\"123456ABCDEF\";\"[1|2|6]\";\"\";\"g\")</item> returns \"345ABCDEF\", where any occurrence of \"1\", \"2\" or \"6\" is replaced by the empty string, thus deleted."
+msgstr ""
+
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"par_id711542233602553\n"
+"help.text"
+msgid "<link href=\"text/shared/01/02100001.xhp\" name=\"regex lists\">List of regular expressions</link>"
+msgstr ""
+
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"par_id431542233650614\n"
+"help.text"
+msgid "<link href=\"https://userguide.icu-project.org/strings/regexp\" name=\"ICU REGEXP\">ICU regular expressions</link>"
+msgstr ""
+
#: func_roundsig.xhp
msgctxt ""
"func_roundsig.xhp\n"