diff options
author | Winfried Donkers <winfrieddonkers@libreoffice.org> | 2013-10-29 17:30:42 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2013-10-30 17:54:28 +0000 |
commit | 781363934af5c0ff3401161c385c6c93c9352c2c (patch) | |
tree | 031226875d06e73f7d62d71dba9e08cf43b5e8ad /formula | |
parent | 83397d0415f248bb61829b13eb7c6364d7a71508 (diff) |
fdo#61002 add Excel 2010 functions VAR.P and VAR.S
Change-Id: I23f286eaaef79d196a65e8079b62cf577539e9f1
Reviewed-on: https://gerrit.libreoffice.org/6477
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'formula')
-rw-r--r-- | formula/source/core/resource/core_resource.src | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/formula/source/core/resource/core_resource.src b/formula/source/core/resource/core_resource.src index c6aec3ac6c26..3ec56c03bd3b 100644 --- a/formula/source/core/resource/core_resource.src +++ b/formula/source/core/resource/core_resource.src @@ -184,6 +184,8 @@ Resource RID_STRLIST_FUNCTION_NAMES_ENGLISH_ODFF String SC_OPCODE_VAR_A { Text = "VARA" ; }; String SC_OPCODE_VAR_P { Text = "VARP" ; }; String SC_OPCODE_VAR_P_A { Text = "VARPA" ; }; + String SC_OPCODE_VAR_P_MS { Text = "COM.MICROSOFT.VAR.P" ; }; + String SC_OPCODE_VAR_S { Text = "COM.MICROSOFT.VAR.S" ; }; String SC_OPCODE_ST_DEV { Text = "STDEV" ; }; String SC_OPCODE_ST_DEV_A { Text = "STDEVA" ; }; String SC_OPCODE_ST_DEV_P { Text = "STDEVP" ; }; @@ -536,6 +538,8 @@ Resource RID_STRLIST_FUNCTION_NAMES_ENGLISH String SC_OPCODE_VAR_A { Text = "VARA" ; }; String SC_OPCODE_VAR_P { Text = "VARP" ; }; String SC_OPCODE_VAR_P_A { Text = "VARPA" ; }; + String SC_OPCODE_VAR_P_MS { Text = "VAR.P" ; }; + String SC_OPCODE_VAR_S { Text = "VAR.S" ; }; String SC_OPCODE_ST_DEV { Text = "STDEV" ; }; String SC_OPCODE_ST_DEV_A { Text = "STDEVA" ; }; String SC_OPCODE_ST_DEV_P { Text = "STDEVP" ; }; @@ -1295,6 +1299,14 @@ Resource RID_STRLIST_FUNCTION_NAMES { Text [ en-US ] = "VARPA" ; }; + String SC_OPCODE_VAR_P_MS + { + Text [ en-US ] = "VAR.P" ; + }; + String SC_OPCODE_VAR_S + { + Text [ en-US ] = "VAR.S" ; + }; String SC_OPCODE_ST_DEV { Text [ en-US ] = "STDEV" ; |