diff options
author | Xisco Fauli <xiscofauli@libreoffice.org> | 2025-02-04 13:01:08 +0100 |
---|---|---|
committer | Xisco Fauli <xiscofauli@libreoffice.org> | 2025-02-04 17:16:15 +0100 |
commit | 094e26cd989b1b51a3b3b612b9a9e3857f8d228c (patch) | |
tree | 288a085cec2ad3924b642b589b273eaf1552ef70 /sc/inc | |
parent | eba3c7d18ba0bf75aab4234c91239155f4fa7c59 (diff) |
tdf#150868: Add support for HSTACK function
Change-Id: I105ffabc8dd1fa58bf3acec4a81c3217061d3a26
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/181100
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Tested-by: Jenkins
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/helpids.h | 1 | ||||
-rw-r--r-- | sc/inc/scfuncs.hrc | 10 |
2 files changed, 11 insertions, 0 deletions
diff --git a/sc/inc/helpids.h b/sc/inc/helpids.h index e961d70f5dc3..7f2803f12b94 100644 --- a/sc/inc/helpids.h +++ b/sc/inc/helpids.h @@ -604,6 +604,7 @@ inline constexpr OUString HID_FUNC_CHOOSECOLS_MS = u"SC_HID_FUNC_CHOOSECOLS_MS"_ inline constexpr OUString HID_FUNC_CHOOSEROWS_MS = u"SC_HID_FUNC_CHOOSEROWS_MS"_ustr; inline constexpr OUString HID_FUNC_DROP_MS = u"SC_HID_FUNC_DROP_MS"_ustr; inline constexpr OUString HID_FUNC_EXPAND_MS = u"SC_HID_FUNC_EXPAND_MS"_ustr; +inline constexpr OUString HID_FUNC_HSTACK_MS = u"SC_HID_FUNC_HSTACK_MS"_ustr; inline constexpr OUString HID_FUNC_TAKE_MS = u"SC_HID_FUNC_TAKE_MS"_ustr; inline constexpr OUString HID_FUNC_TOCOL_MS = u"SC_HID_FUNC_TOCOL_MS"_ustr; inline constexpr OUString HID_FUNC_TOROW_MS = u"SC_HID_FUNC_TOROW_MS"_ustr; diff --git a/sc/inc/scfuncs.hrc b/sc/inc/scfuncs.hrc index d88090aaee2e..8552e1c4420c 100644 --- a/sc/inc/scfuncs.hrc +++ b/sc/inc/scfuncs.hrc @@ -4301,6 +4301,16 @@ const TranslateId SC_OPCODE_EXPAND_ARY[] = NC_("SC_OPCODE_EXPAND", "The value with which to pad. The default is #N/A.") }; +// -=*# Resource for function HSTACK #*=- +const TranslateId SC_OPCODE_HSTACK_ARY[] = +{ + NC_("SC_OPCODE_HSTACK", "Appends arrays horizontally to create a larger array"), + NC_("SC_OPCODE_HSTACK", "Array"), + NC_("SC_OPCODE_HSTACK", "The first array to append."), + NC_("SC_OPCODE_HSTACK", "Array 2"), + NC_("SC_OPCODE_HSTACK", "Array 2, Array 3,... The following arrays to append. if an array has fewer rows, #N/A error will be returned in the additional rows."), +}; + // -=*# Resource for function TAKE #*=- const TranslateId SC_OPCODE_TAKE_ARY[] = { |