diff options
author | Kohei Yoshida <kyoshida@novell.com> | 2010-09-15 21:29:01 +0200 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2010-09-15 21:29:01 +0200 |
commit | 81571e00b1b423929459ffdb34fd519e7f3d0961 (patch) | |
tree | 58fc6c1217a5451f903153afb279deb93b4bacc6 /officecfg | |
parent | f1ed85df61f12ef37b3ac293e9af548c19616898 (diff) |
calc-formula-variable-separators-officecfg.diff: formula separators changeable
n#447164, i#92056
Make the formula separators changeable per locale setting, and add new
configuration page for formula syntax and separators.
Diffstat (limited to 'officecfg')
-rw-r--r-- | officecfg/registry/schema/org/openoffice/Office/Calc.xcs | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/officecfg/registry/schema/org/openoffice/Office/Calc.xcs b/officecfg/registry/schema/org/openoffice/Office/Calc.xcs index 913902731f29..2db99d25807c 100644 --- a/officecfg/registry/schema/org/openoffice/Office/Calc.xcs +++ b/officecfg/registry/schema/org/openoffice/Office/Calc.xcs @@ -1217,6 +1217,31 @@ </info> <value>true</value> </prop> + <prop oor:name="FormulaSyntax" oor:type="xs:int"> + <!-- UIHints: Tools - Options Spreadsheet Calculate --> + <!-- This node is deprecated, but we still need to keep it for migration purposes. --> + <info> + <author>kyoshida</author> + <desc>Specifies what formula syntax type to use.</desc> + </info> + <constraints> + <enumeration oor:value="0"> + <info> + <desc>Calc A1</desc> + </info> + </enumeration> + <enumeration oor:value="1"> + <info> + <desc>Excel A1</desc> + </info> + </enumeration> + <enumeration oor:value="2"> + <info> + <desc>Excel R1C1</desc> + </info> + </enumeration> + </constraints> + </prop> <node-ref oor:name="Date" oor:node-type="Date"> <info> <desc>Specifies the date that is represented by the number 0.</desc> @@ -1224,6 +1249,64 @@ </node-ref> </group> </group> + <group oor:name="Formula"> + <info> + <desc>Contains settings that affect formula handling.</desc> + </info> + <group oor:name="Syntax"> + <info> + <desc>Contains settings for formula syntax.</desc> + </info> + <prop oor:name="Grammar" oor:type="xs:int"> + <!-- UIHints: Tools - Options Spreadsheet Formula --> + <info> + <author>kyoshida</author> + <desc>Specifies what formula syntax type to use.</desc> + </info> + <constraints> + <enumeration oor:value="0"> + <info> + <desc>Calc A1</desc> + </info> + </enumeration> + <enumeration oor:value="1"> + <info> + <desc>Excel A1</desc> + </info> + </enumeration> + <enumeration oor:value="2"> + <info> + <desc>Excel R1C1</desc> + </info> + </enumeration> + </constraints> + </prop> + <prop oor:name="SeparatorArg" oor:type="xs:string"> + <!-- UIHints: Tools - Options Spreadsheet Formula --> + <info> + <author>kyoshida</author> + <desc>Argument separator in worksheet function</desc> + </info> + <value></value> + </prop> + <prop oor:name="SeparatorArrayRow" oor:type="xs:string"> + <!-- UIHints: Tools - Options Spreadsheet Formula --> + <info> + <author>kyoshida</author> + <desc>Row separator in array constant</desc> + </info> + <value></value> + </prop> + <prop oor:name="SeparatorArrayCol" oor:type="xs:string"> + <!-- UIHints: Tools - Options Spreadsheet Formula --> + <info> + <author>kyoshida</author> + <desc>Column separator in array constant</desc> + </info> + <value></value> + </prop> + </group> + </group> <group oor:name="Revision"> <info> <desc>Contains settings that affect revision marking.</desc> |