diff options
author | Winfried Donkers <winfrieddonkers@libreoffice.org> | 2014-04-17 21:58:26 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2014-04-25 09:39:31 +0000 |
commit | 29c9712b042e410e93e92dead15f353f6ca1e263 (patch) | |
tree | 73c8f7511450fcab912750d3c1b6054804a83519 /formula/source | |
parent | 2e41702ed4f224f195d33054e2e714f546b4442c (diff) |
fdo#73148 (partial patch) Add Excel 2010 function AGGREGATE
Change-Id: If8fc8608699a14e573456af2e1180342be942dd1
Reviewed-on: https://gerrit.libreoffice.org/8475
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'formula/source')
-rw-r--r-- | formula/source/core/resource/core_resource.src | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/formula/source/core/resource/core_resource.src b/formula/source/core/resource/core_resource.src index 90544a41f2b9..1aecc1ae46a2 100644 --- a/formula/source/core/resource/core_resource.src +++ b/formula/source/core/resource/core_resource.src @@ -321,6 +321,7 @@ Resource RID_STRLIST_FUNCTION_NAMES_ENGLISH_ODFF String SC_OPCODE_MODAL_VALUE_MULTI { Text = "COM.MICROSOFT.MODE.MULT" ; }; String SC_OPCODE_Z_TEST { Text = "ZTEST" ; }; String SC_OPCODE_Z_TEST_MS { Text = "COM.MICROSOFT.Z.TEST" ; }; + String SC_OPCODE_AGGREGATE { Text = "COM.MICROSOFT.AGGREGATE" ; }; String SC_OPCODE_T_TEST { Text = "TTEST" ; }; String SC_OPCODE_T_TEST_MS { Text = "COM.MICROSOFT.T.TEST" ; }; String SC_OPCODE_RANK { Text = "RANK" ; }; @@ -726,6 +727,7 @@ Resource RID_STRLIST_FUNCTION_NAMES_ENGLISH_OOXML String SC_OPCODE_MODAL_VALUE_MULTI { Text = "_xlfn.MODE.MULT" ; }; String SC_OPCODE_Z_TEST { Text = "ZTEST" ; }; String SC_OPCODE_Z_TEST_MS { Text = "_xlfn.Z.TEST" ; }; + String SC_OPCODE_AGGREGATE { Text = "_xlfn.AGGREGATE" ; }; String SC_OPCODE_T_TEST { Text = "TTEST" ; }; String SC_OPCODE_T_TEST_MS { Text = "_xlfn.T.TEST" ; }; String SC_OPCODE_RANK { Text = "RANK" ; }; @@ -1133,6 +1135,7 @@ Resource RID_STRLIST_FUNCTION_NAMES_ENGLISH String SC_OPCODE_MODAL_VALUE_MULTI { Text = "MODE.MULT" ; }; String SC_OPCODE_Z_TEST { Text = "ZTEST" ; }; String SC_OPCODE_Z_TEST_MS { Text = "Z.TEST" ; }; + String SC_OPCODE_AGGREGATE { Text = "AGGREGATE" ; }; String SC_OPCODE_T_TEST { Text = "TTEST" ; }; String SC_OPCODE_T_TEST_MS { Text = "T.TEST" ; }; String SC_OPCODE_RANK { Text = "RANK" ; }; @@ -2362,6 +2365,10 @@ Resource RID_STRLIST_FUNCTION_NAMES { Text [ en-US ] = "Z.TEST" ; }; + String SC_OPCODE_AGGREGATE + { + Text = "AGGREGATE" ; + }; String SC_OPCODE_T_TEST { Text [ en-US ] = "TTEST" ; |