diff options
author | Winfried Donkers <winfrieddonkers@libreoffice.org> | 2014-03-27 13:33:15 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2014-04-02 14:01:28 +0000 |
commit | 22dac22fe256b28b78c8e0783f2625aee0f75ace (patch) | |
tree | 95b026cc7820f2597f07c8e00f98c4ccfca9e9b3 /formula | |
parent | 50bf123ddbeb457b89636621a99c971834adf3ab (diff) |
fdo#73147 add Excel2010 functions NETWORKDAYS.INTL and WORKDAY.INTL
Change-Id: I3ab9dde5c421a3a3e6022a27be37f23547197317
Reviewed-on: https://gerrit.libreoffice.org/8772
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 | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/formula/source/core/resource/core_resource.src b/formula/source/core/resource/core_resource.src index 28ecee3ee5bc..e008f6ced508 100644 --- a/formula/source/core/resource/core_resource.src +++ b/formula/source/core/resource/core_resource.src @@ -385,6 +385,8 @@ Resource RID_STRLIST_FUNCTION_NAMES_ENGLISH_ODFF String SC_OPCODE_WEEK { Text = "ISOWEEKNUM" ; }; String SC_OPCODE_EASTERSUNDAY { Text = "ORG.OPENOFFICE.EASTERSUNDAY" ; }; String SC_OPCODE_GET_DAY_OF_WEEK { Text = "WEEKDAY" ; }; + String SC_OPCODE_NETWORKDAYS_MS { Text = "COM.MICROSOFT.NETWORKDAYS.INTL" ; }; + String SC_OPCODE_WORKDAY_MS { Text = "COM.MICROSOFT.WORKDAY.INTL" ; }; String SC_OPCODE_NO_NAME { Text = "#NAME!" ; }; String SC_OPCODE_STYLE { Text = "ORG.OPENOFFICE.STYLE" ; }; String SC_OPCODE_DDE { Text = "DDE" ; }; @@ -786,6 +788,8 @@ Resource RID_STRLIST_FUNCTION_NAMES_ENGLISH_OOXML String SC_OPCODE_WEEK { Text = "WEEKNUM" ; }; String SC_OPCODE_EASTERSUNDAY { Text = "EASTERSUNDAY" ; }; String SC_OPCODE_GET_DAY_OF_WEEK { Text = "WEEKDAY" ; }; + String SC_OPCODE_NETWORKDAYS_MS { Text = "NETWORKDAYS.INTL" ; }; + String SC_OPCODE_WORKDAY_MS { Text = "WORKDAY.INTL" ; }; String SC_OPCODE_NO_NAME { Text = "#NAME!" ; }; String SC_OPCODE_STYLE { Text = "STYLE" ; }; String SC_OPCODE_DDE { Text = "DDE" ; }; @@ -1189,6 +1193,8 @@ Resource RID_STRLIST_FUNCTION_NAMES_ENGLISH String SC_OPCODE_WEEK { Text = "WEEKNUM" ; }; String SC_OPCODE_EASTERSUNDAY { Text = "EASTERSUNDAY" ; }; String SC_OPCODE_GET_DAY_OF_WEEK { Text = "WEEKDAY" ; }; + String SC_OPCODE_NETWORKDAYS_MS { Text = "NETWORKDAYS.INTL" ; }; + String SC_OPCODE_WORKDAY_MS { Text = "WORKDAY.INTL" ; }; String SC_OPCODE_NO_NAME { Text = "#NAME!" ; }; String SC_OPCODE_STYLE { Text = "STYLE" ; }; String SC_OPCODE_DDE { Text = "DDE" ; }; @@ -2606,6 +2612,14 @@ Resource RID_STRLIST_FUNCTION_NAMES { Text [ en-US ] = "WEEKDAY" ; }; + String SC_OPCODE_NETWORKDAYS_MS + { + Text [ en-US ] = "NETWORKDAYS.INTL" ; + }; + String SC_OPCODE_WORKDAY_MS + { + Text [ en-US ] = "WORKDAY.INTL" ; + }; String SC_OPCODE_NO_NAME { Text [ en-US ] = "#NAME!" ; |