diff options
author | Winfried Donkers <winfrieddonkers@libreoffice.org> | 2017-07-20 15:18:18 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2017-07-25 10:36:41 +0200 |
commit | a5ec33c9e108a822f418884ab470a7788de3d0e7 (patch) | |
tree | 825e2f103831f22725208e6410a28bf1dd126ee5 /sc/inc/scfuncs.hrc | |
parent | a542fe8d38811dff152b69796380e1feec7daa28 (diff) |
tdf#107135 Add missing ODFF function FINDB.
Change-Id: I96bbca8e6d91448fbb27fe95a57ce62a78d1b2c5
Reviewed-on: https://gerrit.libreoffice.org/40242
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'sc/inc/scfuncs.hrc')
-rw-r--r-- | sc/inc/scfuncs.hrc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sc/inc/scfuncs.hrc b/sc/inc/scfuncs.hrc index 37e78ffc401e..b1b64d24dd09 100644 --- a/sc/inc/scfuncs.hrc +++ b/sc/inc/scfuncs.hrc @@ -4080,6 +4080,18 @@ const char* SC_OPCODE_REPLACEB_ARY[] = NC_("SC_OPCODE_REPLACEB", "The text to be inserted.") }; + // -=*# Resource for function FINDB #*=- +const char* SC_OPCODE_FINDB_ARY[] = +{ + NC_("SC_OPCODE_FINDB", "Looks for a string of text within another (case sensitive), using byte positions."), + NC_("SC_OPCODE_FINDB", "find_text"), + NC_("SC_OPCODE_FINDB", "The text to be found."), + NC_("SC_OPCODE_FINDB", "text"), + NC_("SC_OPCODE_FINDB", "The text in which a search is to be made."), + NC_("SC_OPCODE_FINDB", "position"), + NC_("SC_OPCODE_FINDB", "The position in the text from which the search starts.") +}; + #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |