summaryrefslogtreecommitdiff
path: root/formula
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2015-03-11 21:01:54 +0100
committerEike Rathke <erack@redhat.com>2015-03-11 21:09:33 +0100
commit7867b976e8cb68a30df3cc825ccaa021269e219a (patch)
tree54f035d19f4e8d724f4b37ce4afbb293e2fa2987 /formula
parent53488caa1ea0c67c8da2bc8f887cf9c8acfbd9cf (diff)
TableRef: add item specifiers and opcodes
Change-Id: I043db29e3e1023566682b1df63a1d663dd432fee
Diffstat (limited to 'formula')
-rw-r--r--formula/source/core/resource/core_resource.src31
1 files changed, 31 insertions, 0 deletions
diff --git a/formula/source/core/resource/core_resource.src b/formula/source/core/resource/core_resource.src
index 0fd104f4dcae..b6e6f7e25f77 100644
--- a/formula/source/core/resource/core_resource.src
+++ b/formula/source/core/resource/core_resource.src
@@ -30,6 +30,7 @@ Resource RID_STRLIST_FUNCTION_NAMES_ENGLISH_ODFF
String SC_OPCODE_CHOOSE { Text = "CHOOSE" ; };
String SC_OPCODE_OPEN { Text = "(" ; };
String SC_OPCODE_CLOSE { Text = ")" ; };
+ // SC_OPCODE_TABLE_REF_... not supported in ODFF
String SC_OPCODE_ARRAY_OPEN { Text = "{" ; };
String SC_OPCODE_ARRAY_CLOSE { Text = "}" ; };
String SC_OPCODE_ARRAY_ROW_SEP { Text = "|" ; };
@@ -441,6 +442,11 @@ Resource RID_STRLIST_FUNCTION_NAMES_ENGLISH_OOXML
String SC_OPCODE_CLOSE { Text = ")" ; };
String SC_OPCODE_TABLE_REF_OPEN { Text = "[" ; };
String SC_OPCODE_TABLE_REF_CLOSE { Text = "]" ; };
+ String SC_OPCODE_TABLE_REF_ITEM_ALL { Text = "#All" ; };
+ String SC_OPCODE_TABLE_REF_ITEM_HEADERS { Text = "#Headers" ; };
+ String SC_OPCODE_TABLE_REF_ITEM_DATA { Text = "#Data" ; };
+ String SC_OPCODE_TABLE_REF_ITEM_TOTALS { Text = "#Totals" ; };
+ String SC_OPCODE_TABLE_REF_ITEM_THIS_ROW { Text = "#This Row" ; };
String SC_OPCODE_ARRAY_OPEN { Text = "{" ; };
String SC_OPCODE_ARRAY_CLOSE { Text = "}" ; };
String SC_OPCODE_ARRAY_ROW_SEP { Text = ";" ; };
@@ -854,6 +860,11 @@ Resource RID_STRLIST_FUNCTION_NAMES_ENGLISH
String SC_OPCODE_CLOSE { Text = ")" ; };
String SC_OPCODE_TABLE_REF_OPEN { Text = "[" ; };
String SC_OPCODE_TABLE_REF_CLOSE { Text = "]" ; };
+ String SC_OPCODE_TABLE_REF_ITEM_ALL { Text = "#All" ; };
+ String SC_OPCODE_TABLE_REF_ITEM_HEADERS { Text = "#Headers" ; };
+ String SC_OPCODE_TABLE_REF_ITEM_DATA { Text = "#Data" ; };
+ String SC_OPCODE_TABLE_REF_ITEM_TOTALS { Text = "#Totals" ; };
+ String SC_OPCODE_TABLE_REF_ITEM_THIS_ROW { Text = "#This Row" ; };
String SC_OPCODE_ARRAY_OPEN { Text = "{" ; };
String SC_OPCODE_ARRAY_CLOSE { Text = "}" ; };
String SC_OPCODE_ARRAY_ROW_SEP { Text = "|" ; };
@@ -1276,6 +1287,26 @@ Resource RID_STRLIST_FUNCTION_NAMES
String SC_OPCODE_CLOSE { Text = ")" ; };
String SC_OPCODE_TABLE_REF_OPEN { Text = "[" ; };
String SC_OPCODE_TABLE_REF_CLOSE { Text = "]" ; };
+ String SC_OPCODE_TABLE_REF_ITEM_ALL
+ {
+ Text [ en-US ] = "#All" ;
+ };
+ String SC_OPCODE_TABLE_REF_ITEM_HEADERS
+ {
+ Text [ en-US ] = "#Headers" ;
+ };
+ String SC_OPCODE_TABLE_REF_ITEM_DATA
+ {
+ Text [ en-US ] = "#Data" ;
+ };
+ String SC_OPCODE_TABLE_REF_ITEM_TOTALS
+ {
+ Text [ en-US ] = "#Totals" ;
+ };
+ String SC_OPCODE_TABLE_REF_ITEM_THIS_ROW
+ {
+ Text [ en-US ] = "#This Row" ;
+ };
String SC_OPCODE_ARRAY_OPEN { Text = "{" ; };
String SC_OPCODE_ARRAY_CLOSE { Text = "}" ; };
String SC_OPCODE_ARRAY_ROW_SEP { Text = "|" ; };