xref: /AOO42X/main/sc/source/core/src/compiler.src (revision 701181a70686d0af3beb0de9c58f2e00c6a8c121)
182177cdbSAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
382177cdbSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
482177cdbSAndrew Rist * or more contributor license agreements.  See the NOTICE file
582177cdbSAndrew Rist * distributed with this work for additional information
682177cdbSAndrew Rist * regarding copyright ownership.  The ASF licenses this file
782177cdbSAndrew Rist * to you under the Apache License, Version 2.0 (the
882177cdbSAndrew Rist * "License"); you may not use this file except in compliance
982177cdbSAndrew Rist * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir *
1182177cdbSAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir *
1382177cdbSAndrew Rist * Unless required by applicable law or agreed to in writing,
1482177cdbSAndrew Rist * software distributed under the License is distributed on an
1582177cdbSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
1682177cdbSAndrew Rist * KIND, either express or implied.  See the License for the
1782177cdbSAndrew Rist * specific language governing permissions and limitations
1882177cdbSAndrew Rist * under the License.
19cdf0e10cSrcweir *
2082177cdbSAndrew Rist *************************************************************/
2182177cdbSAndrew Rist
2282177cdbSAndrew Rist
23*701181a7Smseidel
24cdf0e10cSrcweir#include "sc.hrc" // Definition RID_XXX
25cdf0e10cSrcweir#include <formula/compiler.hrc> // Definition SC_OPCODE_XXX (interne OpCodes)
26cdf0e10cSrcweir
27cdf0e10cSrcweirResource RID_FUNCTION_CATEGORIES
28cdf0e10cSrcweir{
29cdf0e10cSrcweir    String 1
30cdf0e10cSrcweir    {
31cdf0e10cSrcweir        Text [ en-US ] = "Database" ;
32cdf0e10cSrcweir    };
33cdf0e10cSrcweir    String 2
34cdf0e10cSrcweir    {
35cdf0e10cSrcweir        Text [ en-US ] = "Date & Time" ;
36cdf0e10cSrcweir    };
37cdf0e10cSrcweir    String 3
38cdf0e10cSrcweir    {
39cdf0e10cSrcweir        Text [ en-US ] = "Financial" ;
40cdf0e10cSrcweir    };
41cdf0e10cSrcweir    String 4
42cdf0e10cSrcweir    {
43cdf0e10cSrcweir        Text [ en-US ] = "Information" ;
44cdf0e10cSrcweir    };
45cdf0e10cSrcweir    String 5
46cdf0e10cSrcweir    {
47cdf0e10cSrcweir        Text [ en-US ] = "Logical" ;
48cdf0e10cSrcweir    };
49cdf0e10cSrcweir    String 6
50cdf0e10cSrcweir    {
51cdf0e10cSrcweir        Text [ en-US ] = "Mathematical" ;
52cdf0e10cSrcweir    };
53cdf0e10cSrcweir    String 7
54cdf0e10cSrcweir    {
55cdf0e10cSrcweir        Text [ en-US ] = "Array" ;
56cdf0e10cSrcweir    };
57cdf0e10cSrcweir    String 8
58cdf0e10cSrcweir    {
59cdf0e10cSrcweir        Text [ en-US ] = "Statistical" ;
60cdf0e10cSrcweir    };
61cdf0e10cSrcweir    String 9
62cdf0e10cSrcweir    {
63cdf0e10cSrcweir        Text [ en-US ] = "Spreadsheet" ;
64cdf0e10cSrcweir    };
65cdf0e10cSrcweir    String 10
66cdf0e10cSrcweir    {
67cdf0e10cSrcweir        Text [ en-US ] = "Text" ;
68cdf0e10cSrcweir    };
69cdf0e10cSrcweir    String 11
70cdf0e10cSrcweir    {
71cdf0e10cSrcweir        Text [ en-US ] = "Add-in" ;
72cdf0e10cSrcweir    };
73cdf0e10cSrcweir};
74cdf0e10cSrcweir
75*701181a7Smseidel// ********************************************************************** EOF
76