summaryrefslogtreecommitdiff
path: root/sc/source/core/src/compiler.src
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2000-09-18 23:16:46 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2000-09-18 23:16:46 +0000
commitd0484bcdcbffd42d242647a2fdc1a203d176b775 (patch)
tree5a55e322eba52fffac58b43beb88568721d13a9b /sc/source/core/src/compiler.src
parent9ae5a91f7955e44d3b24a3f7741f9bca02ac7f24 (diff)
initial import
Diffstat (limited to 'sc/source/core/src/compiler.src')
-rw-r--r--sc/source/core/src/compiler.src7409
1 files changed, 7409 insertions, 0 deletions
diff --git a/sc/source/core/src/compiler.src b/sc/source/core/src/compiler.src
new file mode 100644
index 000000000000..8a485068108b
--- /dev/null
+++ b/sc/source/core/src/compiler.src
@@ -0,0 +1,7409 @@
+/*************************************************************************
+ *
+ * $RCSfile: compiler.src,v $
+ *
+ * $Revision: 1.1.1.1 $
+ *
+ * last change: $Author: hr $ $Date: 2000-09-19 00:16:16 $
+ *
+ * The Contents of this file are made available subject to the terms of
+ * either of the following licenses
+ *
+ * - GNU Lesser General Public License Version 2.1
+ * - Sun Industry Standards Source License Version 1.1
+ *
+ * Sun Microsystems Inc., October, 2000
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2000 by Sun Microsystems, Inc.
+ * 901 San Antonio Road, Palo Alto, CA 94303, USA
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ *
+ * Sun Industry Standards Source License Version 1.1
+ * =================================================
+ * The contents of this file are subject to the Sun Industry Standards
+ * Source License Version 1.1 (the "License"); You may not use this file
+ * except in compliance with the License. You may obtain a copy of the
+ * License at http://www.openoffice.org/license.html.
+ *
+ * Software provided under this License is provided on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
+ * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
+ * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
+ * See the License for the specific provisions governing your rights and
+ * obligations concerning the Software.
+ *
+ * The Initial Developer of the Original Code is: Sun Microsystems, Inc.
+ *
+ * Copyright: 2000 by Sun Microsystems, Inc.
+ *
+ * All Rights Reserved.
+ *
+ * Contributor(s): _______________________________________
+ *
+ *
+ ************************************************************************/
+#include "sc.hrc" // Definition RID_XXX
+#include "compiler.hrc" // Definition SC_OPCODE_XXX (interne OpCodes)
+
+Resource RID_SC_FUNCTION_NAMES
+{
+ String SC_OPCODE_IF
+ {
+ Text = "WENN" ;
+ Text [ english ] = "IF" ;
+ Text [ norwegian ] = "HVIS" ;
+ Text [ italian ] = "SE" ;
+ Text [ portuguese_brazilian ] = "IF" ;
+ Text [ portuguese ] = "SE" ;
+ Text [ finnish ] = "IF" ;
+ Text [ danish ] = "HVIS" ;
+ Text [ french ] = "SI" ;
+ Text [ swedish ] = "OM" ;
+ Text [ dutch ] = "ALS" ;
+ Text [ spanish ] = "SI" ;
+ Text [ english_us ] = "IF" ;
+ Text[ chinese_simplified ] = "IF";
+ Text[ russian ] = "";
+ Text[ polish ] = "GDY";
+ Text[ japanese ] = "IF";
+ Text[ chinese_traditional ] = "IF";
+ Text[ arabic ] = "IF";
+ Text[ dutch ] = "ALS";
+ Text[ chinese_simplified ] = "IF";
+ Text[ greek ] = "IF";
+ Text[ korean ] = "IF";
+ Text[ turkish ] = "IF";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_CHOSE
+ {
+ Text = "WAHL" ;
+ Text [ english ] = "CHOOSE" ;
+ Text [ norwegian ] = "VELG" ;
+ Text [ italian ] = "SCEGLI" ;
+ Text [ portuguese_brazilian ] = "ESCOLHER" ;
+ Text [ portuguese ] = "SELECCIONAR" ;
+ Text [ finnish ] = "CHOSE" ;
+ Text [ danish ] = "VLG" ;
+ Text [ french ] = "CHOISIR" ;
+ Text [ swedish ] = "VLJ" ;
+ Text [ dutch ] = "KIEZEN" ;
+ Text [ spanish ] = "ELEGIR" ;
+ Text [ english_us ] = "CHOOSE" ;
+ Text[ chinese_simplified ] = "CHOOSE";
+ Text[ russian ] = "";
+ Text[ polish ] = "WYBIERZ";
+ Text[ japanese ] = "CHOOSE";
+ Text[ chinese_traditional ] = "CHOOSE";
+ Text[ arabic ] = "CHOOSE";
+ Text[ dutch ] = "KIEZEN";
+ Text[ chinese_simplified ] = "CHOOSE";
+ Text[ greek ] = "CHOOSE";
+ Text[ korean ] = "CHOOSE";
+ Text[ turkish ] = "CHOOSE";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_OPEN { Text = "(" ; };
+ String SC_OPCODE_CLOSE { Text = ")" ; };
+ String SC_OPCODE_SEP { Text = ";" ; };
+ String SC_OPCODE_ADD { Text = "+" ; };
+ String SC_OPCODE_SUB { Text = "-" ; };
+ String SC_OPCODE_MUL { Text = "*" ; };
+ String SC_OPCODE_DIV { Text = "/" ; };
+ String SC_OPCODE_AMPERSAND { Text = "&" ; };
+ String SC_OPCODE_POW { Text = "^" ; };
+ String SC_OPCODE_EQUAL { Text = "=" ; };
+ String SC_OPCODE_NOT_EQUAL { Text = "<>" ; };
+ String SC_OPCODE_LESS { Text = "<" ; };
+ String SC_OPCODE_GREATER { Text = ">" ; };
+ String SC_OPCODE_LESS_EQUAL { Text = "<=" ; };
+ String SC_OPCODE_GREATER_EQUAL { Text = ">=" ; };
+ String SC_OPCODE_AND
+ {
+ Text = "UND" ;
+ Text [ english ] = "AND" ;
+ Text [ norwegian ] = "OG" ;
+ Text [ italian ] = "E" ;
+ Text [ portuguese_brazilian ] = "E" ;
+ Text [ portuguese ] = "E" ;
+ Text [ finnish ] = "AND" ;
+ Text [ danish ] = "OG" ;
+ Text [ french ] = "ET" ;
+ Text [ swedish ] = "OCH" ;
+ Text [ dutch ] = "EN" ;
+ Text [ spanish ] = "Y" ;
+ Text [ english_us ] = "AND" ;
+ Text[ chinese_simplified ] = "AND";
+ Text[ russian ] = "";
+ Text[ polish ] = "I";
+ Text[ japanese ] = "AND";
+ Text[ chinese_traditional ] = "AND";
+ Text[ arabic ] = "AND";
+ Text[ dutch ] = "EN";
+ Text[ chinese_simplified ] = "AND";
+ Text[ greek ] = "KAI";
+ Text[ korean ] = "AND";
+ Text[ turkish ] = "AND";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_OR
+ {
+ Text = "ODER" ;
+ Text [ english ] = "OR" ;
+ Text [ norwegian ] = "ELLER" ;
+ Text [ italian ] = "O" ;
+ Text [ portuguese_brazilian ] = "OU" ;
+ Text [ portuguese ] = "OU" ;
+ Text [ finnish ] = "OR" ;
+ Text [ danish ] = "ELLER" ;
+ Text [ french ] = "OU" ;
+ Text [ swedish ] = "ELLER" ;
+ Text [ dutch ] = "OF" ;
+ Text [ spanish ] = "O" ;
+ Text [ english_us ] = "OR" ;
+ Text[ chinese_simplified ] = "OR";
+ Text[ russian ] = "";
+ Text[ polish ] = "LUB";
+ Text[ japanese ] = "OR";
+ Text[ chinese_traditional ] = "OR";
+ Text[ arabic ] = "OR";
+ Text[ dutch ] = "OF";
+ Text[ chinese_simplified ] = "OR";
+ Text[ greek ] = "OR";
+ Text[ korean ] = "OR";
+ Text[ turkish ] = "OR";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_INTERSECT { Text = "!" ; };
+ String SC_OPCODE_UNION { Text = ";" ; };
+ String SC_OPCODE_RANGE { Text = ":" ; };
+ String SC_OPCODE_NOT
+ {
+ Text = "NICHT" ;
+ Text [ english ] = "NOT" ;
+ Text [ norwegian ] = "IKKE" ;
+ Text [ italian ] = "NON" ;
+ Text [ portuguese_brazilian ] = "NO" ;
+ Text [ portuguese ] = "NO" ;
+ Text [ finnish ] = "NOT" ;
+ Text [ danish ] = "IKKE" ;
+ Text [ french ] = "NON" ;
+ Text [ swedish ] = "ICKE" ;
+ Text [ dutch ] = "NIET" ;
+ Text [ spanish ] = "NO" ;
+ Text [ english_us ] = "NOT" ;
+ Text[ chinese_simplified ] = "NOT";
+ Text[ russian ] = "";
+ Text[ polish ] = "NIE";
+ Text[ japanese ] = "NOT";
+ Text[ chinese_traditional ] = "NOT";
+ Text[ arabic ] = "NOT";
+ Text[ dutch ] = "NIET";
+ Text[ chinese_simplified ] = "NOT";
+ Text[ greek ] = "NOT";
+ Text[ korean ] = "NOT";
+ Text[ turkish ] = "NOT";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_NEG { Text = "NEG" ; };
+ String SC_OPCODE_NEG_SUB { Text = "-" ; };
+ String SC_OPCODE_PI
+ {
+ Text = "PI" ;
+ Text [ english ] = "PI" ;
+ Text [ norwegian ] = "PI" ;
+ Text [ italian ] = "PI.GRECO" ;
+ // ???
+ Text [ portuguese_brazilian ] = "PI" ;
+ Text [ portuguese ] = "PI" ;
+ Text [ finnish ] = "PI" ;
+ Text [ danish ] = "PI" ;
+ Text [ french ] = "PI" ;
+ Text [ swedish ] = "PI" ;
+ Text [ dutch ] = "PI" ;
+ Text [ spanish ] = "PI" ;
+ Text [ english_us ] = "PI" ;
+ Text[ chinese_simplified ] = "PI";
+ Text[ russian ] = "";
+ Text[ polish ] = "PI";
+ Text[ japanese ] = "PI";
+ Text[ chinese_traditional ] = "PI";
+ Text[ arabic ] = "PI";
+ Text[ dutch ] = "PI";
+ Text[ chinese_simplified ] = "PI";
+ Text[ greek ] = "PI";
+ Text[ korean ] = "PI";
+ Text[ turkish ] = "PI";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_RANDOM
+ {
+ Text = "ZUFALLSZAHL" ;
+ Text [ english ] = "RAND" ;
+ Text [ norwegian ] = "TILFELDIG" ;
+ Text [ italian ] = "CASUALE" ;
+ Text [ portuguese_brazilian ] = "ALEA" ;
+ Text [ portuguese ] = "ALEATRIO" ;
+ Text [ finnish ] = "RAND" ;
+ Text [ danish ] = "SLUMP" ;
+ Text [ french ] = "ALEA" ;
+ Text [ swedish ] = "SLUMP" ;
+ Text [ dutch ] = "ASELECT" ;
+ Text [ spanish ] = "ALEATORIO" ;
+ Text [ english_us ] = "RAND" ;
+ Text[ chinese_simplified ] = "RAND";
+ Text[ russian ] = "";
+ Text[ polish ] = "LOS";
+ Text[ japanese ] = "RAND";
+ Text[ chinese_traditional ] = "RAND";
+ Text[ arabic ] = "RAND";
+ Text[ dutch ] = "ASELECT";
+ Text[ chinese_simplified ] = "RAND";
+ Text[ greek ] = "RAND";
+ Text[ korean ] = "RAND";
+ Text[ turkish ] = "RAND";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_TRUE
+ {
+ Text = "WAHR" ;
+ Text [ english ] = "TRUE" ;
+ Text [ norwegian ] = "RIKTIG" ;
+ Text [ italian ] = "VERO" ;
+ Text [ portuguese_brazilian ] = "VERDADEIRO" ;
+ Text [ portuguese ] = "VERDADEIRO" ;
+ Text [ finnish ] = "TRUE" ;
+ Text [ danish ] = "SAND" ;
+ Text [ french ] = "VRAI" ;
+ Text [ swedish ] = "SANT" ;
+ Text [ dutch ] = "WAAR" ;
+ Text [ spanish ] = "VERDADERO" ;
+ Text [ english_us ] = "TRUE" ;
+ Text[ chinese_simplified ] = "TRUE";
+ Text[ russian ] = "";
+ Text[ polish ] = "PRAWDA";
+ Text[ japanese ] = "TRUE";
+ Text[ chinese_traditional ] = "TRUE";
+ Text[ arabic ] = "TRUE";
+ Text[ dutch ] = "WAAR";
+ Text[ chinese_simplified ] = "TRUE";
+ Text[ greek ] = "TRUE";
+ Text[ korean ] = "TRUE";
+ Text[ turkish ] = "TRUE";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_FALSE
+ {
+ Text = "FALSCH" ;
+ Text [ english ] = "FALSE" ;
+ Text [ norwegian ] = "GALT" ;
+ Text [ italian ] = "FALSO" ;
+ Text [ portuguese_brazilian ] = "FALSO" ;
+ Text [ portuguese ] = "FALSO" ;
+ Text [ finnish ] = "FALSE" ;
+ Text [ danish ] = "FALSK" ;
+ Text [ french ] = "FAUX" ;
+ Text [ swedish ] = "FALSKT" ;
+ Text [ dutch ] = "ONWAAR" ;
+ Text [ spanish ] = "FALSO" ;
+ Text [ english_us ] = "FALSE" ;
+ Text[ chinese_simplified ] = "FALSE";
+ Text[ russian ] = "";
+ Text[ polish ] = "FASZ";
+ Text[ japanese ] = "FALSE";
+ Text[ chinese_traditional ] = "FALSE";
+ Text[ arabic ] = "FALSE";
+ Text[ dutch ] = "ONWAAR";
+ Text[ chinese_simplified ] = "FALSE";
+ Text[ greek ] = "FALSE";
+ Text[ korean ] = "FALSE";
+ Text[ turkish ] = "FALSE";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_GET_ACT_DATE
+ {
+ Text = "HEUTE" ;
+ Text [ english ] = "TODAY" ;
+ Text [ norwegian ] = "I.DAG" ;
+ Text [ italian ] = "OGGI" ;
+ Text [ portuguese_brazilian ] = "HOJE" ;
+ Text [ portuguese ] = "HOJE" ;
+ Text [ finnish ] = "TODAY" ;
+ Text [ danish ] = "IDAG" ;
+ Text [ french ] = "AUJOURDHUI" ;
+ Text [ swedish ] = "IDAG" ;
+ Text [ dutch ] = "VANDAAG" ;
+ Text [ spanish ] = "HOY" ;
+ Text [ english_us ] = "TODAY" ;
+ Text[ chinese_simplified ] = "TODAY";
+ Text[ russian ] = "";
+ Text[ polish ] = "DZISIAJ";
+ Text[ japanese ] = "TODAY";
+ Text[ chinese_traditional ] = "TODAY";
+ Text[ arabic ] = "TODAY";
+ Text[ dutch ] = "VANDAAG";
+ Text[ chinese_simplified ] = "TODAY";
+ Text[ greek ] = "TODAY";
+ Text[ korean ] = "TODAY";
+ Text[ turkish ] = "TODAY";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_GET_ACT_TIME
+ {
+ Text = "JETZT" ;
+ Text [ english ] = "NOW" ;
+ Text [ norwegian ] = "N" ;
+ Text [ italian ] = "ADESSO" ;
+ Text [ portuguese_brazilian ] = "AGORA" ;
+ Text [ portuguese ] = "AGORA" ;
+ Text [ finnish ] = "NOW" ;
+ Text [ danish ] = "NU" ;
+ Text [ french ] = "MAINTENANT" ;
+ Text [ swedish ] = "NU" ;
+ Text [ dutch ] = "NU" ;
+ Text [ spanish ] = "AHORA" ;
+ Text [ english_us ] = "NOW" ;
+ Text[ chinese_simplified ] = "NOW";
+ Text[ russian ] = "";
+ Text[ polish ] = "TERAZ";
+ Text[ japanese ] = "NOW";
+ Text[ chinese_traditional ] = "NOW";
+ Text[ arabic ] = "NOW";
+ Text[ dutch ] = "NU";
+ Text[ chinese_simplified ] = "NOW";
+ Text[ greek ] = "NOW";
+ Text[ korean ] = "NOW";
+ Text[ turkish ] = "NOW";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_NO_VALUE
+ {
+ Text = "NV" ;
+ Text [ english ] = "NA" ;
+ Text [ norwegian ] = "IT" ;
+ Text [ italian ] = "NON.DISP" ;
+ Text [ portuguese_brazilian ] = "NA" ;
+ Text [ portuguese ] = "NA" ;
+ Text [ finnish ] = "NA" ;
+ Text [ danish ] = "IKKE.TILGNGELIG" ;
+ Text [ french ] = "NA" ;
+ Text [ swedish ] = "SAKNAS" ;
+ Text [ dutch ] = "NB" ;
+ Text [ spanish ] = "NOD" ;
+ Text [ english_us ] = "NA" ;
+ Text[ chinese_simplified ] = "NA";
+ Text[ russian ] = "";
+ Text[ polish ] = "NA";
+ Text[ japanese ] = "NA";
+ Text[ chinese_traditional ] = "NA";
+ Text[ arabic ] = "NA";
+ Text[ dutch ] = "NB";
+ Text[ chinese_simplified ] = "NA";
+ Text[ greek ] = "NA";
+ Text[ korean ] = "NA";
+ Text[ turkish ] = "NA";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_CURRENT
+ {
+ Text = "AKTUELL" ;
+ Text [ english ] = "CURRENT" ;
+ Text [ norwegian ] = "CURRENT" ;
+ Text [ italian ] = "CURRENT" ;
+ Text [ portuguese_brazilian ] = "CURRENT" ;
+ Text [ portuguese ] = "ACTUAL" ;
+ Text [ finnish ] = "CURRENT" ;
+ Text [ danish ] = "AKTUEL" ;
+ Text [ french ] = "ACTUELLE" ;
+ Text [ swedish ] = "AKTUELL" ;
+ Text [ dutch ] = "ACTUEEL" ;
+ Text [ spanish ] = "ACTUAL" ;
+ Text [ english_us ] = "CURRENT" ;
+ Text[ chinese_simplified ] = "CURRENT";
+ Text[ russian ] = "";
+ Text[ polish ] = "AKTUALNY";
+ Text[ japanese ] = "CURRENT";
+ Text[ chinese_traditional ] = "CURRENT";
+ Text[ arabic ] = "CURRENT";
+ Text[ dutch ] = "ACTUEEL";
+ Text[ chinese_simplified ] = "CURRENT";
+ Text[ greek ] = "CURRENT";
+ Text[ korean ] = "CURRENT";
+ Text[ turkish ] = "CURRENT";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_DEG
+ {
+ Text = "DEG" ;
+ Text [ english ] = "DEGREES" ;
+ Text [ norwegian ] = "GRADER" ;
+ Text [ italian ] = "GRADI" ;
+ Text [ portuguese_brazilian ] = "GRAUS" ;
+ Text [ portuguese ] = "GRAUS" ;
+ Text [ finnish ] = "DEGREES" ;
+ Text [ danish ] = "GRADER" ;
+ Text [ french ] = "DEGRES" ;
+ Text [ swedish ] = "GRADER" ;
+ Text [ dutch ] = "GRADEN" ;
+ Text [ spanish ] = "GRADOS" ;
+ Text [ english_us ] = "DEGREES" ;
+ Text[ chinese_simplified ] = "DEGREES";
+ Text[ russian ] = "";
+ Text[ polish ] = "STOPNIE";
+ Text[ japanese ] = "DEGREES";
+ Text[ chinese_traditional ] = "DEGREES";
+ Text[ arabic ] = "DEGREES";
+ Text[ dutch ] = "GRADEN";
+ Text[ chinese_simplified ] = "DEGREES";
+ Text[ greek ] = "DEGREES";
+ Text[ korean ] = "DEGREES";
+ Text[ turkish ] = "DEGREES";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_RAD
+ {
+ Text = "RAD" ;
+ Text [ english ] = "RADIANS" ;
+ Text [ norwegian ] = "RADIUS" ;
+ Text [ italian ] = "RADIANTI" ;
+ Text [ portuguese_brazilian ] = "RADIANOS" ;
+ Text [ portuguese ] = "RADIANOS" ;
+ Text [ finnish ] = "RADIANS" ;
+ Text [ danish ] = "RADIANER" ;
+ Text [ french ] = "RADIANS" ;
+ Text [ swedish ] = "RADIANER" ;
+ Text [ dutch ] = "RADIALEN" ;
+ Text [ spanish ] = "RADIANES" ;
+ Text [ english_us ] = "RADIANS" ;
+ Text[ chinese_simplified ] = "RADIANS";
+ Text[ russian ] = "";
+ Text[ polish ] = "RADIANY";
+ Text[ japanese ] = "RADIANS";
+ Text[ chinese_traditional ] = "RADIANS";
+ Text[ arabic ] = "RADIANS";
+ Text[ dutch ] = "RADIALEN";
+ Text[ chinese_simplified ] = "RADIANS";
+ Text[ greek ] = "RADIANS";
+ Text[ korean ] = "RADIANS";
+ Text[ turkish ] = "RADIANS";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_SIN
+ {
+ Text = "SIN" ;
+ Text [ english ] = "SIN" ;
+ Text [ norwegian ] = "SIN" ;
+ Text [ italian ] = "SEN" ;
+ Text [ portuguese_brazilian ] = "SEN" ;
+ Text [ portuguese ] = "SEN" ;
+ Text [ finnish ] = "SIN" ;
+ Text [ danish ] = "SIN" ;
+ Text [ french ] = "SIN" ;
+ Text [ swedish ] = "SIN" ;
+ Text [ dutch ] = "SIN" ;
+ Text [ spanish ] = "SENO" ;
+ Text [ english_us ] = "SIN" ;
+ Text[ chinese_simplified ] = "SIN";
+ Text[ russian ] = "SIN";
+ Text[ polish ] = "SIN";
+ Text[ japanese ] = "SIN";
+ Text[ chinese_traditional ] = "SIN";
+ Text[ arabic ] = "SIN";
+ Text[ dutch ] = "SIN";
+ Text[ chinese_simplified ] = "SIN";
+ Text[ greek ] = "SIN";
+ Text[ korean ] = "SIN";
+ Text[ turkish ] = "SIN";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_COS { Text = "COS" ; };
+ String SC_OPCODE_TAN { Text = "TAN" ; };
+ String SC_OPCODE_COT { Text = "COT" ; };
+ String SC_OPCODE_ARC_SIN
+ {
+ Text = "ARCSIN" ;
+ Text [ english ] = "ASIN" ;
+ Text [ norwegian ] = "ASIN" ;
+ Text [ italian ] = "ARCSEN" ;
+ Text [ portuguese_brazilian ] = "ASEN" ;
+ Text [ portuguese ] = "ASEN" ;
+ Text [ finnish ] = "ASIN" ;
+ Text [ danish ] = "ARCSIN" ;
+ Text [ french ] = "ASIN" ;
+ Text [ swedish ] = "ARCSIN" ;
+ Text [ dutch ] = "BOOGSIN" ;
+ Text [ spanish ] = "ASENO" ;
+ Text [ english_us ] = "ASIN" ;
+ Text[ chinese_simplified ] = "ASIN";
+ Text[ russian ] = "ASIN";
+ Text[ polish ] = "ASIN";
+ Text[ japanese ] = "ASIN";
+ Text[ chinese_traditional ] = "ASIN";
+ Text[ arabic ] = "ASIN";
+ Text[ dutch ] = "BOOGSIN";
+ Text[ chinese_simplified ] = "ASIN";
+ Text[ greek ] = "ASIN";
+ Text[ korean ] = "ASIN";
+ Text[ turkish ] = "ASIN";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_ARC_COS
+ {
+ Text = "ARCCOS" ;
+ Text [ english ] = "ACOS" ;
+ Text [ norwegian ] = "ACOS" ;
+ Text [ italian ] = "ARCCOS" ;
+ Text [ portuguese_brazilian ] = "ACOS" ;
+ Text [ portuguese ] = "ACOS" ;
+ Text [ finnish ] = "ACOS" ;
+ Text [ danish ] = "ARCCOS" ;
+ Text [ french ] = "ACOS" ;
+ Text [ swedish ] = "ARCCOS" ;
+ Text [ dutch ] = "BOOGCOS" ;
+ Text [ spanish ] = "ACOS" ;
+ Text [ english_us ] = "ACOS" ;
+ Text[ chinese_simplified ] = "ACOS";
+ Text[ russian ] = "ACOS";
+ Text[ polish ] = "ACOS";
+ Text[ japanese ] = "ACOS";
+ Text[ chinese_traditional ] = "ACOS";
+ Text[ arabic ] = "ACOS";
+ Text[ dutch ] = "BOOGCOS";
+ Text[ chinese_simplified ] = "ACOS";
+ Text[ greek ] = "ACOS";
+ Text[ korean ] = "ACOS";
+ Text[ turkish ] = "ACOS";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_ARC_TAN
+ {
+ Text = "ARCTAN" ;
+ Text [ english ] = "ATAN" ;
+ Text [ norwegian ] = "ATAN" ;
+ Text [ italian ] = "ARCTAN" ;
+ Text [ portuguese_brazilian ] = "ATAN" ;
+ Text [ portuguese ] = "ATAN" ;
+ Text [ finnish ] = "ATAN" ;
+ Text [ danish ] = "ARCTAN" ;
+ Text [ french ] = "ATAN" ;
+ Text [ swedish ] = "ARCTAN" ;
+ Text [ dutch ] = "BOOGTAN" ;
+ Text [ spanish ] = "ATAN" ;
+ Text [ english_us ] = "ATAN" ;
+ Text[ chinese_simplified ] = "ATAN";
+ Text[ russian ] = "ATAN";
+ Text[ polish ] = "ATAN";
+ Text[ japanese ] = "ATAN";
+ Text[ chinese_traditional ] = "ATAN";
+ Text[ arabic ] = "ATAN";
+ Text[ dutch ] = "BOOGTAN";
+ Text[ chinese_simplified ] = "ATAN";
+ Text[ greek ] = "ATAN";
+ Text[ korean ] = "ATAN";
+ Text[ turkish ] = "ATAN";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_ARC_COT
+ {
+ Text = "ARCCOT" ;
+ Text [ english ] = "ACOT" ;
+ Text [ norwegian ] = "ACOT" ;
+ Text [ italian ] = "ARCCOT" ;
+ Text [ portuguese_brazilian ] = "ACOT" ;
+ Text [ portuguese ] = "ATAN" ;
+ Text [ finnish ] = "ACOT" ;
+ Text [ danish ] = "ARCCOT" ;
+ Text [ french ] = "ACOT" ;
+ Text [ swedish ] = "ARCCOT" ;
+ Text [ dutch ] = "BOOGCOT" ;
+ Text [ spanish ] = "ACOT" ;
+ Text [ english_us ] = "ACOT" ;
+ Text[ chinese_simplified ] = "ACOT";
+ Text[ russian ] = "ACOT";
+ Text[ polish ] = "ACOT";
+ Text[ japanese ] = "ACOT";
+ Text[ chinese_traditional ] = "ACOT";
+ Text[ arabic ] = "ACOT";
+ Text[ dutch ] = "BOOGCOT";
+ Text[ chinese_simplified ] = "ACOT";
+ Text[ greek ] = "ACOT";
+ Text[ korean ] = "ACOT";
+ Text[ turkish ] = "ACOT";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_SIN_HYP
+ {
+ Text = "SINHYP" ;
+ Text [ english ] = "SINH" ;
+ Text [ norwegian ] = "SINH" ;
+ Text [ italian ] = "SENH" ;
+ Text [ portuguese_brazilian ] = "SENH" ;
+ Text [ portuguese ] = "SENH" ;
+ Text [ finnish ] = "SINH" ;
+ Text [ danish ] = "SINH" ;
+ Text [ french ] = "SINH" ;
+ Text [ swedish ] = "SINH" ;
+ Text [ dutch ] = "SINH" ;
+ Text [ spanish ] = "SENOH" ;
+ Text [ english_us ] = "SINH" ;
+ Text[ chinese_simplified ] = "SINH";
+ Text[ russian ] = "SINH";
+ Text[ polish ] = "SINH";
+ Text[ japanese ] = "SINH";
+ Text[ chinese_traditional ] = "SINH";
+ Text[ arabic ] = "SINH";
+ Text[ dutch ] = "SINH";
+ Text[ chinese_simplified ] = "SINH";
+ Text[ greek ] = "SINH";
+ Text[ korean ] = "SINH";
+ Text[ turkish ] = "SINH";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_COS_HYP
+ {
+ Text = "COSHYP" ;
+ Text [ english ] = "COSH" ;
+ Text [ norwegian ] = "COSH" ;
+ Text [ italian ] = "COSH" ;
+ Text [ portuguese_brazilian ] = "COSH" ;
+ Text [ portuguese ] = "COSH" ;
+ Text [ finnish ] = "COSH" ;
+ Text [ danish ] = "COSH" ;
+ Text [ french ] = "COSH" ;
+ Text [ swedish ] = "COSH" ;
+ Text [ dutch ] = "COSH" ;
+ Text [ spanish ] = "COSH" ;
+ Text [ english_us ] = "COSH" ;
+ Text[ chinese_simplified ] = "COSH";
+ Text[ russian ] = "COSH";
+ Text[ polish ] = "COSH";
+ Text[ japanese ] = "COSH";
+ Text[ chinese_traditional ] = "COSH";
+ Text[ arabic ] = "COSH";
+ Text[ dutch ] = "COSH";
+ Text[ chinese_simplified ] = "COSH";
+ Text[ greek ] = "COSH";
+ Text[ korean ] = "COSH";
+ Text[ turkish ] = "COSH";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_TAN_HYP
+ {
+ Text = "TANHYP" ;
+ Text [ english ] = "TANH" ;
+ Text [ norwegian ] = "TANH" ;
+ Text [ italian ] = "TANH" ;
+ Text [ portuguese_brazilian ] = "TANH" ;
+ Text [ portuguese ] = "TANH" ;
+ Text [ finnish ] = "TANH" ;
+ Text [ danish ] = "TANH" ;
+ Text [ french ] = "TANH" ;
+ Text [ swedish ] = "TANH" ;
+ Text [ dutch ] = "TANH" ;
+ Text [ spanish ] = "TANH" ;
+ Text [ english_us ] = "TANH" ;
+ Text[ chinese_simplified ] = "TANH";
+ Text[ russian ] = "TANH";
+ Text[ polish ] = "TANH";
+ Text[ japanese ] = "TANH";
+ Text[ chinese_traditional ] = "TANH";
+ Text[ arabic ] = "TANH";
+ Text[ dutch ] = "TANH";
+ Text[ chinese_simplified ] = "TANH";
+ Text[ greek ] = "TANH";
+ Text[ korean ] = "TANH";
+ Text[ turkish ] = "TANH";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_COT_HYP
+ {
+ Text = "COTHYP" ;
+ Text [ english ] = "COTH" ;
+ Text [ norwegian ] = "COTH" ;
+ Text [ italian ] = "COTH" ;
+ Text [ portuguese_brazilian ] = "COTH" ;
+ Text [ portuguese ] = "COTH" ;
+ Text [ finnish ] = "COTH" ;
+ Text [ danish ] = "COTH" ;
+ Text [ french ] = "COTH" ;
+ Text [ swedish ] = "COTH" ;
+ Text [ dutch ] = "COTH" ;
+ Text [ spanish ] = "COTH" ;
+ Text [ english_us ] = "COTH" ;
+ Text[ chinese_simplified ] = "COTH";
+ Text[ russian ] = "COTH";
+ Text[ polish ] = "COTH";
+ Text[ japanese ] = "COTH";
+ Text[ chinese_traditional ] = "COTH";
+ Text[ arabic ] = "COTH";
+ Text[ dutch ] = "COTH";
+ Text[ chinese_simplified ] = "COTH";
+ Text[ greek ] = "COTH";
+ Text[ korean ] = "COTH";
+ Text[ turkish ] = "COTH";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_ARC_SIN_HYP
+ {
+ Text = "ARCSINHYP" ;
+ Text [ english ] = "ASINH" ;
+ Text [ norwegian ] = "ASINH" ;
+ Text [ italian ] = "ARCSENH" ;
+ Text [ portuguese_brazilian ] = "ASENH" ;
+ Text [ portuguese ] = "ASENH" ;
+ Text [ finnish ] = "ASINH" ;
+ Text [ danish ] = "ARCSINH" ;
+ Text [ french ] = "ASINH" ;
+ Text [ swedish ] = "ARCSINH" ;
+ Text [ dutch ] = "BOOGSINH" ;
+ Text [ spanish ] = "ASENOH" ;
+ Text [ english_us ] = "ASINH" ;
+ Text[ chinese_simplified ] = "ASINH";
+ Text[ russian ] = "ASINH";
+ Text[ polish ] = "ASINH";
+ Text[ japanese ] = "ASINH";
+ Text[ chinese_traditional ] = "ASINH";
+ Text[ arabic ] = "ASINH";
+ Text[ dutch ] = "BOOGSINH";
+ Text[ chinese_simplified ] = "ASINH";
+ Text[ greek ] = "ASINH";
+ Text[ korean ] = "ASINH";
+ Text[ turkish ] = "ASINH";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_ARC_COS_HYP
+ {
+ Text = "ARCCOSHYP" ;
+ Text [ english ] = "ACOSH" ;
+ Text [ norwegian ] = "ACOSH" ;
+ Text [ italian ] = "ARCCOSH" ;
+ Text [ portuguese_brazilian ] = "ACOSH" ;
+ Text [ portuguese ] = "ACOSH" ;
+ Text [ finnish ] = "ACOSH" ;
+ Text [ danish ] = "ARCCOSH" ;
+ Text [ french ] = "ACOSH" ;
+ Text [ swedish ] = "ARCCOSH" ;
+ Text [ dutch ] = "BOOGCOSH" ;
+ Text [ spanish ] = "ACOSH" ;
+ Text [ english_us ] = "ACOSH" ;
+ Text[ chinese_simplified ] = "ACOSH";
+ Text[ russian ] = "ACOSH";
+ Text[ polish ] = "ACOSH";
+ Text[ japanese ] = "ACOSH";
+ Text[ chinese_traditional ] = "ACOSH";
+ Text[ arabic ] = "ACOSH";
+ Text[ dutch ] = "BOOGCOSH";
+ Text[ chinese_simplified ] = "ACOSH";
+ Text[ greek ] = "ACOSH";
+ Text[ korean ] = "ACOSH";
+ Text[ turkish ] = "ACOSH";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_ARC_TAN_HYP
+ {
+ Text = "ARCTANHYP" ;
+ Text [ english ] = "ATANH" ;
+ Text [ norwegian ] = "ATANH" ;
+ Text [ italian ] = "ARCTANH" ;
+ Text [ portuguese_brazilian ] = "ATANH" ;
+ Text [ portuguese ] = "ATANH" ;
+ Text [ finnish ] = "ATANH" ;
+ Text [ danish ] = "ARCTANH" ;
+ Text [ french ] = "ATANH" ;
+ Text [ swedish ] = "ARCTANH" ;
+ Text [ dutch ] = "BOOGTANH" ;
+ Text [ spanish ] = "ATANH" ;
+ Text [ english_us ] = "ATANH" ;
+ Text[ chinese_simplified ] = "ATANH";
+ Text[ russian ] = "ATANH";
+ Text[ polish ] = "ATANH";
+ Text[ japanese ] = "ATANH";
+ Text[ chinese_traditional ] = "ATANH";
+ Text[ arabic ] = "ATANH";
+ Text[ dutch ] = "BOOGTANH";
+ Text[ chinese_simplified ] = "ATANH";
+ Text[ greek ] = "ATANH";
+ Text[ korean ] = "ATANH";
+ Text[ turkish ] = "ATANH";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_ARC_COT_HYP
+ {
+ Text = "ARCCOTHYP" ;
+ Text [ english ] = "ACOTH" ;
+ Text [ norwegian ] = "ACOTH" ;
+ Text [ italian ] = "ARCCOTH" ;
+ Text [ portuguese_brazilian ] = "ACOTH" ;
+ Text [ portuguese ] = "ATANH" ;
+ Text [ finnish ] = "ACOTH" ;
+ Text [ danish ] = "ARCCOTH" ;
+ Text [ french ] = "ACOTH" ;
+ Text [ swedish ] = "ARCCOTH" ;
+ Text [ dutch ] = "BOOGCOTH" ;
+ Text [ spanish ] = "ACOTH" ;
+ Text [ english_us ] = "ACOTH" ;
+ Text[ chinese_simplified ] = "ACOTH";
+ Text[ russian ] = "ACOTH";
+ Text[ polish ] = "ACOTH";
+ Text[ japanese ] = "ACOTH";
+ Text[ chinese_traditional ] = "ACOTH";
+ Text[ arabic ] = "ACOTH";
+ Text[ dutch ] = "BOOGCOTH";
+ Text[ chinese_simplified ] = "ACOTH";
+ Text[ greek ] = "ACOTH";
+ Text[ korean ] = "ACOTH";
+ Text[ turkish ] = "ACOTH";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_EXP { Text = "EXP" ; };
+ String SC_OPCODE_LN { Text = "LN" ; };
+ String SC_OPCODE_SQRT
+ {
+ Text = "WURZEL" ;
+ Text [ english ] = "SQRT" ;
+ Text [ norwegian ] = "SQRT" ;
+ Text [ italian ] = "RADQ" ;
+ Text [ portuguese_brazilian ] = "SQRT" ;
+ Text [ portuguese ] = "RAZ.Q" ;
+ Text [ finnish ] = "SQRT" ;
+ Text [ danish ] = "KVROD" ;
+ Text [ french ] = "RACINE" ;
+ Text [ swedish ] = "ROT" ;
+ Text [ dutch ] = "WORTEL" ;
+ Text [ spanish ] = "RAZ" ;
+ Text [ english_us ] = "SQRT" ;
+ Text[ chinese_simplified ] = "SQRT";
+ Text[ russian ] = "";
+ Text[ polish ] = "PIERWIASTEK";
+ Text[ japanese ] = "SQRT";
+ Text[ chinese_traditional ] = "SQRT";
+ Text[ arabic ] = "SQRT";
+ Text[ dutch ] = "WORTEL";
+ Text[ chinese_simplified ] = "SQRT";
+ Text[ greek ] = "SQRT";
+ Text[ korean ] = "SQRT";
+ Text[ turkish ] = "SQRT";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_FACT
+ {
+ /* ### ACHTUNG: Neuer Text in Resource? FAKULTT : FAKULTT */
+ Text = "FAKULTT" ;
+ Text [ english ] = "FACT" ;
+ Text [ norwegian ] = "FACT" ;
+ Text [ italian ] = "FATTORIALE" ;
+ Text [ portuguese_brazilian ] = "FATORIAL" ;
+ Text [ portuguese ] = "FACT" ;
+ Text [ finnish ] = "FACT" ;
+ Text [ danish ] = "FAKULTET" ;
+ Text [ french ] = "FACT" ;
+ Text [ swedish ] = "FAKULTET" ;
+ Text [ dutch ] = "FACULTEIT" ;
+ Text [ spanish ] = "FACT" ;
+ Text [ english_us ] = "FACT" ;
+ Text[ chinese_simplified ] = "FACT";
+ Text[ russian ] = "";
+ Text[ polish ] = "SILNIA";
+ Text[ japanese ] = "FACT";
+ Text[ chinese_traditional ] = "FACT";
+ Text[ arabic ] = "FACT";
+ Text[ dutch ] = "FACULTEIT";
+ Text[ chinese_simplified ] = "FACT";
+ Text[ greek ] = "FACT";
+ Text[ korean ] = "FACT";
+ Text[ turkish ] = "FACT";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_GET_YEAR
+ {
+ Text = "JAHR" ;
+ Text [ english ] = "YEAR" ;
+ Text [ norwegian ] = "YEAR" ;
+ Text [ italian ] = "ANNO" ;
+ Text [ portuguese_brazilian ] = "YEAR" ;
+ Text [ portuguese ] = "ANO" ;
+ Text [ finnish ] = "YEAR" ;
+ Text [ danish ] = "R" ;
+ Text [ french ] = "ANNEE" ;
+ Text [ swedish ] = "R" ;
+ Text [ dutch ] = "JAAR" ;
+ Text [ spanish ] = "AO" ;
+ Text [ english_us ] = "YEAR" ;
+ Text[ chinese_simplified ] = "YEAR";
+ Text[ russian ] = "";
+ Text[ polish ] = "ROK";
+ Text[ japanese ] = "YEAR";
+ Text[ chinese_traditional ] = "YEAR";
+ Text[ arabic ] = "YEAR";
+ Text[ dutch ] = "JAAR";
+ Text[ chinese_simplified ] = "YEAR";
+ Text[ greek ] = "YEAR";
+ Text[ korean ] = "YEAR";
+ Text[ turkish ] = "YEAR";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_GET_MONTH
+ {
+ Text = "MONAT" ;
+ Text [ english ] = "MONTH" ;
+ Text [ norwegian ] = "MONTH" ;
+ Text [ italian ] = "MESE" ;
+ Text [ portuguese_brazilian ] = "MONTH" ;
+ Text [ portuguese ] = "MS" ;
+ Text [ finnish ] = "MONTH" ;
+ Text [ danish ] = "MNED" ;
+ Text [ french ] = "MOIS" ;
+ Text [ swedish ] = "MNAD" ;
+ Text [ dutch ] = "MAAND" ;
+ Text [ spanish ] = "MES" ;
+ Text [ english_us ] = "MONTH" ;
+ Text[ chinese_simplified ] = "MONTH";
+ Text[ russian ] = "";
+ Text[ polish ] = "MIESIC";
+ Text[ japanese ] = "MONTH";
+ Text[ chinese_traditional ] = "MONTH";
+ Text[ arabic ] = "MONTH";
+ Text[ dutch ] = "MAAND";
+ Text[ chinese_simplified ] = "MONTH";
+ Text[ greek ] = "MONTH";
+ Text[ korean ] = "MONTH";
+ Text[ turkish ] = "AY";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_GET_DAY
+ {
+ Text = "TAG" ;
+ Text [ english ] = "DAY" ;
+ Text [ norwegian ] = "DAY" ;
+ Text [ italian ] = "GIORNO" ;
+ Text [ portuguese_brazilian ] = "DAY" ;
+ Text [ portuguese ] = "DIA" ;
+ Text [ finnish ] = "DAY" ;
+ Text [ danish ] = "DAG" ;
+ Text [ french ] = "JOUR" ;
+ Text [ swedish ] = "DAG" ;
+ Text [ dutch ] = "DAG" ;
+ Text [ spanish ] = "DA" ;
+ Text [ english_us ] = "DAY" ;
+ Text[ chinese_simplified ] = "DAY";
+ Text[ russian ] = "";
+ Text[ polish ] = "DZIE";
+ Text[ japanese ] = "DAY";
+ Text[ chinese_traditional ] = "DAY";
+ Text[ arabic ] = "DAY";
+ Text[ dutch ] = "DAG";
+ Text[ chinese_simplified ] = "DAY";
+ Text[ greek ] = "DAY";
+ Text[ korean ] = "DAY";
+ Text[ turkish ] = "DAY";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_GET_HOUR
+ {
+ Text = "STUNDE" ;
+ Text [ english ] = "HOUR" ;
+ Text [ norwegian ] = "TIME" ;
+ Text [ italian ] = "ORA" ;
+ Text [ portuguese_brazilian ] = "HORA" ;
+ Text [ portuguese ] = "HORA" ;
+ Text [ finnish ] = "HOUR" ;
+ Text [ danish ] = "TIME" ;
+ Text [ french ] = "HEURE" ;
+ Text [ swedish ] = "TIMME" ;
+ Text [ dutch ] = "UUR" ;
+ Text [ spanish ] = "HORA" ;
+ Text [ english_us ] = "HOUR" ;
+ Text[ chinese_simplified ] = "HOUR";
+ Text[ russian ] = "";
+ Text[ polish ] = "GODZINA";
+ Text[ japanese ] = "HOUR";
+ Text[ chinese_traditional ] = "HOUR";
+ Text[ arabic ] = "HOUR";
+ Text[ dutch ] = "UUR";
+ Text[ chinese_simplified ] = "HOUR";
+ Text[ greek ] = "HOUR";
+ Text[ korean ] = "HOUR";
+ Text[ turkish ] = "HOUR";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_GET_MIN
+ {
+ Text = "MINUTE" ;
+ Text [ english ] = "MINUTE" ;
+ Text [ norwegian ] = "MINUTT" ;
+ Text [ italian ] = "MINUTO" ;
+ Text [ portuguese_brazilian ] = "MINUTO" ;
+ Text [ portuguese ] = "MINUTO" ;
+ Text [ finnish ] = "MINUTE" ;
+ Text [ danish ] = "MINUT" ;
+ Text [ french ] = "MINUTE" ;
+ Text [ swedish ] = "MINUT" ;
+ Text [ dutch ] = "MINUUT" ;
+ Text [ spanish ] = "MINUTO" ;
+ Text [ english_us ] = "MINUTE" ;
+ Text[ chinese_simplified ] = "MINUTE";
+ Text[ russian ] = "";
+ Text[ polish ] = "MINUTA";
+ Text[ japanese ] = "MINUTE";
+ Text[ chinese_traditional ] = "MINUTE";
+ Text[ arabic ] = "MINUTE";
+ Text[ dutch ] = "MINUUT";
+ Text[ chinese_simplified ] = "MINUTE";
+ Text[ greek ] = "MINUTE";
+ Text[ korean ] = "MINUTE";
+ Text[ turkish ] = "MINUTE";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_GET_SEC
+ {
+ Text = "SEKUNDE" ;
+ Text [ english ] = "SECOND" ;
+ Text [ norwegian ] = "SEKUND" ;
+ Text [ italian ] = "SECONDO" ;
+ Text [ portuguese_brazilian ] = "SEGUNDO" ;
+ Text [ portuguese ] = "SEGUNDO" ;
+ Text [ finnish ] = "SECOND" ;
+ Text [ danish ] = "SEKUND" ;
+ Text [ french ] = "SECONDE" ;
+ Text [ swedish ] = "SEKUND" ;
+ Text [ dutch ] = "SECONDE" ;
+ Text [ spanish ] = "SEGUNDO" ;
+ Text [ english_us ] = "SECOND" ;
+ Text[ chinese_simplified ] = "SECOND";
+ Text[ russian ] = "";
+ Text[ polish ] = "SEKUNDA";
+ Text[ japanese ] = "SECOND";
+ Text[ chinese_traditional ] = "SECOND";
+ Text[ arabic ] = "SECOND";
+ Text[ dutch ] = "SECONDE";
+ Text[ chinese_simplified ] = "SECOND";
+ Text[ greek ] = "SECOND";
+ Text[ korean ] = "SECOND";
+ Text[ turkish ] = "SECOND";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_PLUS_MINUS
+ {
+ Text = "VORZEICHEN" ;
+ Text [ english ] = "SIGN" ;
+ Text [ norwegian ] = "SIGNATUR" ;
+ Text [ italian ] = "SEGNO" ;
+ Text [ portuguese_brazilian ] = "SIGN" ;
+ Text [ portuguese ] = "SINAL" ;
+ Text [ finnish ] = "SIGN" ;
+ Text [ danish ] = "FORTEGN" ;
+ Text [ french ] = "SIGNE" ;
+ Text [ swedish ] = "TECKEN" ;
+ Text [ dutch ] = "POS.NEG" ;
+ Text [ spanish ] = "SIGNO" ;
+ Text [ english_us ] = "SIGN" ;
+ Text[ chinese_simplified ] = "SIGN";
+ Text[ russian ] = "";
+ Text[ polish ] = "ZNAK.LICZBY";
+ Text[ japanese ] = "SIGN";
+ Text[ chinese_traditional ] = "SIGN";
+ Text[ arabic ] = "SIGN";
+ Text[ dutch ] = "POS.NEG";
+ Text[ chinese_simplified ] = "SIGN";
+ Text[ greek ] = "SIGN";
+ Text[ korean ] = "SIGN";
+ Text[ turkish ] = "SIGN";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_ABS
+ {
+ Text = "ABS" ;
+ Text [ english ] = "ABS" ;
+ Text [ norwegian ] = "ABS" ;
+ Text [ italian ] = "ASS" ;
+ Text [ portuguese_brazilian ] = "ABS" ;
+ Text [ portuguese ] = "ABS" ;
+ Text [ finnish ] = "ABS" ;
+ Text [ danish ] = "ABS" ;
+ Text [ french ] = "ABS" ;
+ Text [ swedish ] = "ABS" ;
+ Text [ dutch ] = "ABS" ;
+ Text [ spanish ] = "ABS" ;
+ Text [ english_us ] = "ABS" ;
+ Text[ chinese_simplified ] = "ABS";
+ Text[ russian ] = "ABS";
+ Text[ polish ] = "ABS";
+ Text[ japanese ] = "ABS";
+ Text[ chinese_traditional ] = "ABS";
+ Text[ arabic ] = "ABS";
+ Text[ dutch ] = "ABS";
+ Text[ chinese_simplified ] = "ABS";
+ Text[ greek ] = "ABS";
+ Text[ korean ] = "ABS";
+ Text[ turkish ] = "ABS";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_INT
+ {
+ Text = "GANZZAHL" ;
+ Text [ english ] = "INT" ;
+ Text [ norwegian ] = "INT" ;
+ Text [ italian ] = "INT" ;
+ Text [ portuguese_brazilian ] = "INT" ;
+ Text [ portuguese ] = "NM.INT" ;
+ Text [ finnish ] = "INT" ;
+ Text [ danish ] = "HELTAL" ;
+ Text [ french ] = "ENT" ;
+ Text [ swedish ] = "HELTAL" ;
+ Text [ dutch ] = "INTEGERSNIJPUNT" ;
+ Text [ spanish ] = "ENTERO" ;
+ Text [ english_us ] = "INT" ;
+ Text[ chinese_simplified ] = "INT";
+ Text[ russian ] = "";
+ Text[ polish ] = "ZAOKR.DO.CAK";
+ Text[ japanese ] = "INT";
+ Text[ chinese_traditional ] = "INT";
+ Text[ arabic ] = "INT";
+ Text[ dutch ] = "INTEGERSNIJPUNT";
+ Text[ chinese_simplified ] = "INT";
+ Text[ greek ] = "INT";
+ Text[ korean ] = "INT";
+ Text[ turkish ] = "INT";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_PHI { Text = "PHI" ; };
+ String SC_OPCODE_GAUSS { Text = "GAUSS" ; };
+ String SC_OPCODE_IS_EMPTY
+ {
+ Text = "ISTLEER" ;
+ Text [ english ] = "ISBLANK" ;
+ Text [ norwegian ] = "ERBLANK" ;
+ Text [ italian ] = "VAL.VUOTO" ;
+ Text [ portuguese_brazilian ] = "ISVAZIO" ;
+ Text [ portuguese ] = ".CL.VAZIA" ;
+ Text [ finnish ] = "ISBLANK" ;
+ Text [ danish ] = "ER.TOM" ;
+ Text [ french ] = "ESTVIDE" ;
+ Text [ swedish ] = "RTOM" ;
+ Text [ dutch ] = "ISLEEG" ;
+ Text [ spanish ] = "ESBLANCO" ;
+ Text [ english_us ] = "ISBLANK" ;
+ Text[ chinese_simplified ] = "ISBLANK";
+ Text[ russian ] = "";
+ Text[ polish ] = "JESTPUSTY";
+ Text[ japanese ] = "ISBLANK";
+ Text[ chinese_traditional ] = "ISBLANK";
+ Text[ arabic ] = "ISBLANK";
+ Text[ dutch ] = "ISLEEG";
+ Text[ chinese_simplified ] = "ISBLANK";
+ Text[ greek ] = "ISBLANK";
+ Text[ korean ] = "ISBLANK";
+ Text[ turkish ] = "ISTBLANK";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_IS_STRING
+ {
+ Text = "ISTTEXT" ;
+ Text [ english ] = "ISTEXT" ;
+ Text [ norwegian ] = "ERTEKST" ;
+ Text [ italian ] = "VAL.TESTO" ;
+ Text [ portuguese_brazilian ] = "ISTEXTO" ;
+ Text [ portuguese ] = ".TEXTO" ;
+ Text [ finnish ] = "ISTEXT" ;
+ Text [ danish ] = "ER.TEKST" ;
+ Text [ french ] = "ESTTEXTE" ;
+ Text [ swedish ] = "RTEXT" ;
+ Text [ dutch ] = "ISTEKST" ;
+ Text [ spanish ] = "ESTEXTO" ;
+ Text [ english_us ] = "ISTEXT" ;
+ Text[ chinese_simplified ] = "ISTEXT";
+ Text[ russian ] = "";
+ Text[ polish ] = "CZY.TEKST";
+ Text[ japanese ] = "ISTEXT";
+ Text[ chinese_traditional ] = "ISTEXT";
+ Text[ arabic ] = "ISTEXT";
+ Text[ dutch ] = "ISTEKST";
+ Text[ chinese_simplified ] = "ISTEXT";
+ Text[ greek ] = "ISTEXT";
+ Text[ korean ] = "ISTEXT";
+ Text[ turkish ] = "ISTEXT";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_IS_NON_STRING
+ {
+ Text = "ISTKTEXT" ;
+ Text [ english ] = "ISNONTEXT" ;
+ Text [ norwegian ] = "ERIKKETEKST" ;
+ Text [ italian ] = "VAL.NON.TESTO" ;
+ Text [ portuguese_brazilian ] = "ISNAOTEXTO" ;
+ Text [ portuguese ] = ".NO.TEXTO" ;
+ Text [ finnish ] = "ISNONTEXT" ;
+ Text [ danish ] = "ER.IKKE.TEKST" ;
+ Text [ french ] = "ESTNONTEXTE" ;
+ Text [ swedish ] = "REJTEXT" ;
+ Text [ dutch ] = "ISGEENTEKST" ;
+ Text [ spanish ] = "ESNOTEXTO" ;
+ Text [ english_us ] = "ISNONTEXT" ;
+ Text[ chinese_simplified ] = "ISNONTEXT";
+ Text[ russian ] = "";
+ Text[ polish ] = "CZY.NIE.TEKST";
+ Text[ japanese ] = "ISNONTEXT";
+ Text[ chinese_traditional ] = "ISNONTEXT";
+ Text[ arabic ] = "ISNONTEXT";
+ Text[ dutch ] = "ISGEENTEKST";
+ Text[ chinese_simplified ] = "ISNONTEXT";
+ Text[ greek ] = "ISNONTEXT";
+ Text[ korean ] = "ISNONTEXT";
+ Text[ turkish ] = "ISNONTEXT";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_IS_LOGICAL
+ {
+ Text = "ISTLOG" ;
+ Text [ english ] = "ISLOGICAL" ;
+ Text [ norwegian ] = "ERLOGISK" ;
+ Text [ italian ] = "VAL.LOGICO" ;
+ Text [ portuguese_brazilian ] = "ISLOGICO" ;
+ Text [ portuguese ] = ".LGICO" ;
+ Text [ finnish ] = "ISLOGICAL" ;
+ Text [ danish ] = "ER.LOGISK" ;
+ Text [ french ] = "ESTLOGIQUE" ;
+ Text [ swedish ] = "RLOGISK" ;
+ Text [ dutch ] = "ISLOGISCH" ;
+ Text [ spanish ] = "ESLOGICO" ;
+ Text [ english_us ] = "ISLOGICAL" ;
+ Text[ chinese_simplified ] = "ISLOGICAL";
+ Text[ russian ] = "";
+ Text[ polish ] = "CZY.LOGICZNA";
+ Text[ japanese ] = "ISLOGICAL";
+ Text[ chinese_traditional ] = "ISLOGICAL";
+ Text[ arabic ] = "ISLOGICAL";
+ Text[ dutch ] = "ISLOGISCH";
+ Text[ chinese_simplified ] = "ISLOGICAL";
+ Text[ greek ] = "ISLOGICAL";
+ Text[ korean ] = "ISLOGICAL";
+ Text[ turkish ] = "ISTLOGICAL";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_TYPE
+ {
+ Text = "TYP" ;
+ Text [ english ] = "TYPE" ;
+ Text [ norwegian ] = "TYPE" ;
+ Text [ italian ] = "TIPO" ;
+ Text [ portuguese_brazilian ] = "TIPO" ;
+ Text [ portuguese ] = "TIPO" ;
+ Text [ finnish ] = "TYPE" ;
+ Text [ danish ] = "VRDITYPE" ;
+ Text [ french ] = "TYPE" ;
+ Text [ swedish ] = "VRDETYP" ;
+ Text [ dutch ] = "TYPE" ;
+ Text [ spanish ] = "TIPO" ;
+ Text [ english_us ] = "TYPE" ;
+ Text[ chinese_simplified ] = "TYPE";
+ Text[ russian ] = "";
+ Text[ polish ] = "TYP";
+ Text[ japanese ] = "TYPE";
+ Text[ chinese_traditional ] = "TYPE";
+ Text[ arabic ] = "TYPE";
+ Text[ dutch ] = "TYPE";
+ Text[ chinese_simplified ] = "TYPE";
+ Text[ greek ] = "TYPE";
+ Text[ korean ] = "TYPE";
+ Text[ turkish ] = "TYPE";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_IS_REF
+ {
+ Text = "ISTBEZUG" ;
+ Text [ english ] = "ISREF" ;
+ Text [ norwegian ] = "ERREF" ;
+ Text [ italian ] = "VAL.RIF" ;
+ Text [ portuguese_brazilian ] = "ISREF" ;
+ Text [ portuguese ] = ".REF" ;
+ Text [ finnish ] = "ISREF" ;
+ Text [ danish ] = "ER.REFERENCE" ;
+ Text [ french ] = "ESTREF" ;
+ Text [ swedish ] = "RREF" ;
+ Text [ dutch ] = "ISVERWIJZING" ;
+ Text [ spanish ] = "ESREF" ;
+ Text [ english_us ] = "ISREF" ;
+ Text[ chinese_simplified ] = "ISREF";
+ Text[ russian ] = "";
+ Text[ polish ] = "CZY.ADR";
+ Text[ japanese ] = "ISREF";
+ Text[ chinese_traditional ] = "ISREF";
+ Text[ arabic ] = "ISREF";
+ Text[ dutch ] = "ISVERWIJZING";
+ Text[ chinese_simplified ] = "ISREF";
+ Text[ greek ] = "ISREF";
+ Text[ korean ] = "ISREF";
+ Text[ turkish ] = "ISREF";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_IS_VALUE
+ {
+ Text = "ISTZAHL" ;
+ Text [ english ] = "ISNUMBER" ;
+ Text [ norwegian ] = "ERNUMMER" ;
+ Text [ italian ] = "VAL.NUMERO" ;
+ Text [ portuguese_brazilian ] = "ISNUMERO" ;
+ Text [ portuguese ] = ".NMERO" ;
+ Text [ finnish ] = "ISNUMBER" ;
+ Text [ danish ] = "ER.TAL" ;
+ Text [ french ] = "ESTNUM" ;
+ Text [ swedish ] = "RTAL" ;
+ Text [ dutch ] = "ISGETAL" ;
+ Text [ spanish ] = "ESNMERO" ;
+ Text [ english_us ] = "ISNUMBER" ;
+ Text[ chinese_simplified ] = "ISNUMBER";
+ Text[ russian ] = "";
+ Text[ polish ] = "CZY.LICZBA";
+ Text[ japanese ] = "ISNUMBER";
+ Text[ chinese_traditional ] = "ISNUMBER";
+ Text[ arabic ] = "ISNUMBER";
+ Text[ dutch ] = "ISGETAL";
+ Text[ chinese_simplified ] = "ISNUMBER";
+ Text[ greek ] = "ISNUMBER";
+ Text[ korean ] = "ISNUMBER";
+ Text[ turkish ] = "ISNUMBER";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_IS_FORMULA
+ {
+ Text = "ISTFORMEL" ;
+ Text [ english ] = "ISFORMULA" ;
+ Text [ norwegian ] = "ERFORMEL" ;
+ Text [ italian ] = "VAL.FORMULA" ;
+ Text [ portuguese_brazilian ] = "ISFORMULA" ;
+ Text [ portuguese ] = ".FRMULA" ;
+ Text [ finnish ] = "ISFORMULA" ;
+ Text [ danish ] = "ER.FORMEL" ;
+ Text [ french ] = "ESTFORMULE" ;
+ Text [ swedish ] = "RFORMEL" ;
+ Text [ dutch ] = "ISFORMULE" ;
+ Text [ spanish ] = "ESFRMULA" ;
+ Text [ english_us ] = "ISFORMULA" ;
+ Text[ chinese_simplified ] = "ISFORMULA";
+ Text[ russian ] = "";
+ Text[ polish ] = "JESTFORMU";
+ Text[ japanese ] = "ISFORMULA";
+ Text[ chinese_traditional ] = "ISFORMULA";
+ Text[ arabic ] = "ISFORMULA";
+ Text[ dutch ] = "ISFORMULE";
+ Text[ chinese_simplified ] = "ISFORMULA";
+ Text[ greek ] = "ISFORMULA";
+ Text[ korean ] = "ISFORMULA";
+ Text[ turkish ] = "ISTFORMULA";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_IS_NV
+ {
+ Text = "ISTNV" ;
+ Text [ english ] = "ISNA" ;
+ Text [ norwegian ] = "ERIT" ;
+ Text [ italian ] = "VAL.NON.DISP" ;
+ Text [ portuguese_brazilian ] = "ISNA" ;
+ Text [ portuguese ] = ".NO.DISP" ;
+ Text [ finnish ] = "ISNA" ;
+ Text [ danish ] = "ER.IKKE.TILGNGELIG" ;
+ Text [ french ] = "ESTNA" ;
+ Text [ swedish ] = "RSAKNAD" ;
+ Text [ dutch ] = "ISNB" ;
+ Text [ spanish ] = "ESNOD" ;
+ Text [ english_us ] = "ISNA" ;
+ Text[ chinese_simplified ] = "ISNA";
+ Text[ russian ] = "";
+ Text[ polish ] = "CZY.BRAK";
+ Text[ japanese ] = "ISNA";
+ Text[ chinese_traditional ] = "ISNA";
+ Text[ arabic ] = "ISNA";
+ Text[ dutch ] = "ISNB";
+ Text[ chinese_simplified ] = "ISNA";
+ Text[ greek ] = "ISNA";
+ Text[ korean ] = "ISNA";
+ Text[ turkish ] = "ISNA";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_IS_ERR
+ {
+ Text = "ISTFEHL" ;
+ Text [ english ] = "ISERR" ;
+ Text [ norwegian ] = "ERFEIL" ;
+ Text [ italian ] = "VAL.ERR" ;
+ Text [ portuguese_brazilian ] = "ISERR" ;
+ Text [ portuguese ] = ".ERRO" ;
+ Text [ finnish ] = "ISERR" ;
+ Text [ danish ] = "ER.FJL" ;
+ Text [ french ] = "ESTERR" ;
+ Text [ swedish ] = "RF" ;
+ Text [ dutch ] = "ISERR" ;
+ Text [ spanish ] = "ESERR" ;
+ Text [ english_us ] = "ISERR" ;
+ Text[ chinese_simplified ] = "ISERR";
+ Text[ russian ] = "";
+ Text[ polish ] = "CZY.B";
+ Text[ japanese ] = "ISERR";
+ Text[ chinese_traditional ] = "ISERR";
+ Text[ arabic ] = "ISERR";
+ Text[ dutch ] = "ISERR";
+ Text[ chinese_simplified ] = "ISERR";
+ Text[ greek ] = "ISERR";
+ Text[ korean ] = "ISERR";
+ Text[ turkish ] = "ISTERR";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_IS_ERROR
+ {
+ Text = "ISTFEHLER" ;
+ Text [ english ] = "ISERROR" ;
+ Text [ norwegian ] = "ERFEIL" ;
+ Text [ italian ] = "VAL.ERRORE" ;
+ Text [ portuguese_brazilian ] = "ISERRO" ;
+ Text [ portuguese ] = ".ERROS" ;
+ Text [ finnish ] = "ISERROR" ;
+ Text [ danish ] = "ER.FEJL" ;
+ Text [ french ] = "ESTERREUR" ;
+ Text [ swedish ] = "RFEL" ;
+ Text [ dutch ] = "ISFOUT" ;
+ Text [ spanish ] = "ESERROR" ;
+ Text [ english_us ] = "ISERROR" ;
+ Text[ chinese_simplified ] = "ISERROR";
+ Text[ russian ] = "";
+ Text[ polish ] = "CZY.BD";
+ Text[ japanese ] = "ISERROR";
+ Text[ chinese_traditional ] = "ISERROR";
+ Text[ arabic ] = "ISERROR";
+ Text[ dutch ] = "ISFOUT";
+ Text[ chinese_simplified ] = "ISERROR";
+ Text[ greek ] = "ISERROR";
+ Text[ korean ] = "ISERROR";
+ Text[ turkish ] = "ISTERROR";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_IS_EVEN
+ {
+ Text = "ISTGERADE" ;
+ Text [ english ] = "ISEVEN" ;
+ Text [ norwegian ] = "ERPAR" ;
+ Text [ italian ] = "VAL.PARI" ;
+ Text [ portuguese_brazilian ] = "ISPAR" ;
+ Text [ portuguese ] = ".PAR" ;
+ Text [ finnish ] = "ISEVEN" ;
+ Text [ danish ] = "ER.LIGE" ;
+ Text [ french ] = "ESTPAIR" ;
+ Text [ swedish ] = "RJMN" ;
+ Text [ dutch ] = "ISEVEN" ;
+ Text [ spanish ] = "ESPAR" ;
+ Text [ english_us ] = "ISEVEN" ;
+ Text[ chinese_simplified ] = "ISEVEN";
+ Text[ russian ] = "";
+ Text[ polish ] = "ZAOKR.DO PARZ";
+ Text[ japanese ] = "ISEVEN";
+ Text[ chinese_traditional ] = "ISEVEN";
+ Text[ arabic ] = "ISEVEN";
+ Text[ dutch ] = "ISEVEN";
+ Text[ chinese_simplified ] = "ISEVEN";
+ Text[ greek ] = "ISEVEN";
+ Text[ korean ] = "ISEVEN";
+ Text[ turkish ] = "ISTEVEN";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_IS_ODD
+ {
+ Text = "ISTUNGERADE" ;
+ Text [ english ] = "ISODD" ;
+ Text [ norwegian ] = "ERODDE" ;
+ Text [ italian ] = "VAL.DISPARI" ;
+ Text [ portuguese_brazilian ] = "ISIMPAR" ;
+ Text [ portuguese ] = ".MPAR" ;
+ Text [ finnish ] = "ISODD" ;
+ Text [ danish ] = "ER.ULIGE" ;
+ Text [ french ] = "ESTIMPAIR" ;
+ Text [ swedish ] = "RUDDA" ;
+ Text [ dutch ] = "ISONEVEN" ;
+ Text [ spanish ] = "ESIMPAR" ;
+ Text [ english_us ] = "ISODD" ;
+ Text[ chinese_simplified ] = "ISODD";
+ Text[ russian ] = "";
+ Text[ polish ] = "JESTNIEPARZYSTY";
+ Text[ japanese ] = "ISODD";
+ Text[ chinese_traditional ] = "ISODD";
+ Text[ arabic ] = "ISODD";
+ Text[ dutch ] = "ISONEVEN";
+ Text[ chinese_simplified ] = "ISODD";
+ Text[ greek ] = "ISODD";
+ Text[ korean ] = "ISODD";
+ Text[ turkish ] = "ISODD";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_N
+ {
+ Text = "N" ;
+ Text [ english ] = "N" ;
+ Text [ norwegian ] = "N" ;
+ Text [ italian ] = "NUM" ;
+ Text [ portuguese_brazilian ] = "N" ;
+ Text [ portuguese ] = "N" ;
+ Text [ finnish ] = "N" ;
+ Text [ danish ] = "N" ;
+ Text [ french ] = "N" ;
+ Text [ swedish ] = "N" ;
+ Text [ dutch ] = "N" ;
+ Text [ spanish ] = "N" ;
+ Text [ english_us ] = "N" ;
+ Text[ chinese_simplified ] = "N";
+ Text[ russian ] = "";
+ Text[ polish ] = "N";
+ Text[ japanese ] = "N";
+ Text[ chinese_traditional ] = "N";
+ Text[ arabic ] = "N";
+ Text[ dutch ] = "N";
+ Text[ chinese_simplified ] = "N";
+ Text[ greek ] = "N";
+ Text[ korean ] = "N";
+ Text[ turkish ] = "N";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_GET_DATE_VALUE
+ {
+ Text = "DATWERT" ;
+ Text [ english ] = "DATEVALUE" ;
+ Text [ norwegian ] = "DATOVERDI" ;
+ Text [ italian ] = "DATA.VALORE" ;
+ Text [ portuguese_brazilian ] = "DATA.VALOR" ;
+ Text [ portuguese ] = "DATA.VALOR" ;
+ Text [ finnish ] = "DATEVALUE" ;
+ Text [ danish ] = "DATOVRDI" ;
+ Text [ french ] = "DATEVAL" ;
+ Text [ swedish ] = "DATUMVRDE" ;
+ Text [ dutch ] = "DATUMWAARDE" ;
+ Text [ spanish ] = "FECHANMERO" ;
+ Text [ english_us ] = "DATEVALUE" ;
+ Text[ chinese_simplified ] = "DATEVALUE";
+ Text[ russian ] = "";
+ Text[ polish ] = "DATA.WARTO";
+ Text[ japanese ] = "DATEVALUE";
+ Text[ chinese_traditional ] = "DATEVALUE";
+ Text[ arabic ] = "DATEVALUE";
+ Text[ dutch ] = "DATUMWAARDE";
+ Text[ chinese_simplified ] = "DATEVALUE";
+ Text[ greek ] = "DATEVALUE";
+ Text[ korean ] = "DATEVALUE";
+ Text[ turkish ] = "DATEVALUE";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_GET_TIME_VALUE
+ {
+ Text = "ZEITWERT" ;
+ Text [ english ] = "TIMEVALUE" ;
+ Text [ norwegian ] = "TIDSVERDI" ;
+ Text [ italian ] = "ORARIO.VALORE" ;
+ Text [ portuguese_brazilian ] = "VALOR.TEMPO" ;
+ Text [ portuguese ] = "VALOR.TEMPO" ;
+ Text [ finnish ] = "TIMEVALUE" ;
+ Text [ danish ] = "TIDSVRDI" ;
+ Text [ french ] = "TEMPSVAL" ;
+ Text [ swedish ] = "TIDVRDE" ;
+ Text [ dutch ] = "TIJDWAARDE" ;
+ Text [ spanish ] = "HORANMERO" ;
+ Text [ english_us ] = "TIMEVALUE" ;
+ Text[ chinese_simplified ] = "TIMEVALUE";
+ Text[ russian ] = "";
+ Text[ polish ] = "CZAS.WARTO";
+ Text[ japanese ] = "TIMEVALUE";
+ Text[ chinese_traditional ] = "TIMEVALUE";
+ Text[ arabic ] = "TIMEVALUE";
+ Text[ dutch ] = "TIJDWAARDE";
+ Text[ chinese_simplified ] = "TIMEVALUE";
+ Text[ greek ] = "TIMEVALUE";
+ Text[ korean ] = "TIMEVALUE";
+ Text[ turkish ] = "TIMEVALUE";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_CODE
+ {
+ Text = "CODE" ;
+ Text [ english ] = "CODE" ;
+ Text [ norwegian ] = "KODE" ;
+ Text [ italian ] = "CODICE" ;
+ Text [ portuguese_brazilian ] = "CODIGO" ;
+ Text [ portuguese ] = "CDIGO" ;
+ Text [ finnish ] = "CODE" ;
+ Text [ danish ] = "KODE" ;
+ Text [ french ] = "CODE" ;
+ Text [ swedish ] = "KOD" ;
+ Text [ dutch ] = "CODE" ;
+ Text [ spanish ] = "CDIGO" ;
+ Text [ english_us ] = "CODE" ;
+ Text[ chinese_simplified ] = "CODE";
+ Text[ russian ] = "";
+ Text[ polish ] = "KOD";
+ Text[ japanese ] = "CODE";
+ Text[ chinese_traditional ] = "CODE";
+ Text[ arabic ] = "CODE";
+ Text[ dutch ] = "CODE";
+ Text[ chinese_simplified ] = "CODE";
+ Text[ greek ] = "CODE";
+ Text[ korean ] = "CODE";
+ Text[ turkish ] = "CODE";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_TRIM
+ {
+ /* ### ACHTUNG: Neuer Text in Resource? GLTTEN : GLTTEN */
+ Text = "GLTTEN" ;
+ Text [ english ] = "TRIM" ;
+ Text [ norwegian ] = "TRIM" ;
+ Text [ italian ] = "ANNULLA.SPAZI" ;
+ Text [ portuguese_brazilian ] = "ARRUMAR" ;
+ Text [ portuguese ] = "COMPACTAR" ;
+ Text [ finnish ] = "TRIM" ;
+ Text [ danish ] = "TRIM" ;
+ Text [ french ] = "SUPPRESPACE" ;
+ Text [ swedish ] = "RENSA" ;
+ Text [ dutch ] = "SPATIES.WISSEN" ;
+ Text [ spanish ] = "COMPACTAR" ;
+ Text [ english_us ] = "TRIM" ;
+ Text[ chinese_simplified ] = "TRIM";
+ Text[ russian ] = "";
+ Text[ polish ] = "USU.ZBDNE.ODSTPY";
+ Text[ japanese ] = "TRIM";
+ Text[ chinese_traditional ] = "TRIM";
+ Text[ arabic ] = "TRIM";
+ Text[ dutch ] = "SPATIES.WISSEN";
+ Text[ chinese_simplified ] = "TRIM";
+ Text[ greek ] = "TRIM";
+ Text[ korean ] = "TRIM";
+ Text[ turkish ] = "TRIM";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_UPPER
+ {
+ Text = "GROSS" ;
+ Text [ english ] = "UPPER" ;
+ Text [ norwegian ] = "STORE" ;
+ Text [ italian ] = "MAIUSC" ;
+ Text [ portuguese_brazilian ] = "MAIUSCULA" ;
+ Text [ portuguese ] = "MAISCULA" ;
+ Text [ finnish ] = "UPPER" ;
+ Text [ danish ] = "STORE.BOGSTAVER" ;
+ Text [ french ] = "MAJUSCULE" ;
+ Text [ swedish ] = "VERSALER" ;
+ Text [ dutch ] = "HOOFDLETTERS" ;
+ Text [ spanish ] = "MAYSC" ;
+ Text [ english_us ] = "UPPER" ;
+ Text[ chinese_simplified ] = "UPPER";
+ Text[ russian ] = "";
+ Text[ polish ] = "LITERY.WIELKIE";
+ Text[ japanese ] = "UPPER";
+ Text[ chinese_traditional ] = "UPPER";
+ Text[ arabic ] = "UPPER";
+ Text[ dutch ] = "HOOFDLETTERS";
+ Text[ chinese_simplified ] = "UPPER";
+ Text[ greek ] = "UPPER";
+ Text[ korean ] = "UPPER";
+ Text[ turkish ] = "UPPER";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_PROPPER
+ {
+ Text = "GROSS2" ;
+ Text [ english ] = "PROPER" ;
+ Text [ norwegian ] = "PROPER" ;
+ Text [ italian ] = "MAIUSC.INIZ" ;
+ Text [ portuguese_brazilian ] = "PRIMAIUSCULA" ;
+ Text [ portuguese ] = "INICIAL.MAISCULA" ;
+ Text [ finnish ] = "PROPER" ;
+ Text [ danish ] = "STORT.FORBOGSTAV" ;
+ Text [ french ] = "NOMPROPRE" ;
+ Text [ swedish ] = "INITIAL" ;
+ Text [ dutch ] = "BEGINLETTERS" ;
+ Text [ spanish ] = "NOMPROPIO" ;
+ Text [ english_us ] = "PROPER" ;
+ Text[ chinese_simplified ] = "PROPER";
+ Text[ russian ] = "";
+ Text[ polish ] = "Z.WIELKIEJ.LITERY";
+ Text[ japanese ] = "PROPER";
+ Text[ chinese_traditional ] = "PROPER";
+ Text[ arabic ] = "PROPER";
+ Text[ dutch ] = "BEGINLETTERS";
+ Text[ chinese_simplified ] = "PROPER";
+ Text[ greek ] = "PROPER";
+ Text[ korean ] = "PROPER";
+ Text[ turkish ] = "PROPER";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_LOWER
+ {
+ Text = "KLEIN" ;
+ Text [ english ] = "LOWER" ;
+ Text [ norwegian ] = "SM" ;
+ Text [ italian ] = "MINUSC" ;
+ Text [ portuguese_brazilian ] = "MINUSCULA" ;
+ Text [ portuguese ] = "MINSCULA" ;
+ Text [ finnish ] = "LOWER" ;
+ Text [ danish ] = "SM.BOGSTAVER" ;
+ Text [ french ] = "MINUSCULE" ;
+ Text [ swedish ] = "GEMENER" ;
+ Text [ dutch ] = "KLEINE.LETTERS" ;
+ Text [ spanish ] = "MINUSC" ;
+ Text [ english_us ] = "LOWER" ;
+ Text[ chinese_simplified ] = "LOWER";
+ Text[ russian ] = "";
+ Text[ polish ] = "MAY";
+ Text[ japanese ] = "LOWER";
+ Text[ chinese_traditional ] = "LOWER";
+ Text[ arabic ] = "LOWER";
+ Text[ dutch ] = "KLEINE.LETTERS";
+ Text[ chinese_simplified ] = "LOWER";
+ Text[ greek ] = "LOWER";
+ Text[ korean ] = "LOWER";
+ Text[ turkish ] = "LOWER";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_LEN
+ {
+ /* ### ACHTUNG: Neuer Text in Resource? LNGE : LNGE */
+ Text = "LNGE" ;
+ Text [ english ] = "LEN" ;
+ Text [ norwegian ] = "LEN" ;
+ Text [ italian ] = "LUNGHEZZA" ;
+ Text [ portuguese_brazilian ] = "NUM.CARACT" ;
+ Text [ portuguese ] = "NM.CARACT" ;
+ Text [ finnish ] = "LEN" ;
+ Text [ danish ] = "LNGDE" ;
+ Text [ french ] = "NBCAR" ;
+ Text [ swedish ] = "LNGD" ;
+ Text [ dutch ] = "LENGTE" ;
+ Text [ spanish ] = "LARGO" ;
+ Text [ english_us ] = "LEN" ;
+ Text[ chinese_simplified ] = "LEG";
+ Text[ russian ] = "";
+ Text[ polish ] = "DUGO";
+ Text[ japanese ] = "LEN";
+ Text[ chinese_traditional ] = "LEG";
+ Text[ arabic ] = "LEN";
+ Text[ dutch ] = "LENGTE";
+ Text[ chinese_simplified ] = "LEG";
+ Text[ greek ] = "LEN";
+ Text[ korean ] = "LEN";
+ Text[ turkish ] = "LEN";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_T { Text = "T" ; };
+ String SC_OPCODE_VALUE
+ {
+ Text = "WERT" ;
+ Text [ english ] = "VALUE" ;
+ Text [ norwegian ] = "VERDI" ;
+ Text [ italian ] = "VALORE" ;
+ Text [ portuguese_brazilian ] = "VALOR" ;
+ Text [ portuguese ] = "VALOR" ;
+ Text [ finnish ] = "VALUE" ;
+ Text [ danish ] = "VRDI" ;
+ Text [ french ] = "CNUM" ;
+ Text [ swedish ] = "TEXTNUM" ;
+ Text [ dutch ] = "WAARDE" ;
+ Text [ spanish ] = "VALOR" ;
+ Text [ english_us ] = "VALUE" ;
+ Text[ chinese_simplified ] = "VALUE";
+ Text[ russian ] = "";
+ Text[ polish ] = "WARTO";
+ Text[ japanese ] = "VALUE";
+ Text[ chinese_traditional ] = "VALUE";
+ Text[ arabic ] = "VALUE";
+ Text[ dutch ] = "WAARDE";
+ Text[ chinese_simplified ] = "VALUE";
+ Text[ greek ] = "VALUE";
+ Text[ korean ] = "VALUE";
+ Text[ turkish ] = "VALUE";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_CLEAN
+ {
+ /* ### ACHTUNG: Neuer Text in Resource? SUBERN : SUBERN */
+ Text = "SUBERN" ;
+ Text [ english ] = "CLEAN" ;
+ Text [ norwegian ] = "CLEAN" ;
+ Text [ italian ] = "LIBERA" ;
+ Text [ portuguese_brazilian ] = "TIRAR" ;
+ Text [ portuguese ] = "LIMPAR" ;
+ Text [ finnish ] = "CLEAN" ;
+ Text [ danish ] = "RENS" ;
+ Text [ french ] = "EPURAGE" ;
+ Text [ swedish ] = "STDA" ;
+ Text [ dutch ] = "WISSEN.CONTROL" ;
+ Text [ spanish ] = "LIMPIAR" ;
+ Text [ english_us ] = "CLEAN" ;
+ Text[ chinese_simplified ] = "CLEAN";
+ Text[ russian ] = "";
+ Text[ polish ] = "WYCZY";
+ Text[ japanese ] = "CLEAN";
+ Text[ chinese_traditional ] = "CLEAN";
+ Text[ arabic ] = "CLEAN";
+ Text[ dutch ] = "WISSEN.CONTROL";
+ Text[ chinese_simplified ] = "CLEAN";
+ Text[ greek ] = "CLEAN";
+ Text[ korean ] = "CLEAN";
+ Text[ turkish ] = "CLEAN";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_CHAR
+ {
+ Text = "ZEICHEN" ;
+ Text [ english ] = "CHAR" ;
+ Text [ norwegian ] = "TEGN" ;
+ Text [ italian ] = "CODICE.CARATT" ;
+ Text [ portuguese_brazilian ] = "CARACT" ;
+ Text [ portuguese ] = "CARACT" ;
+ Text [ finnish ] = "CHAR" ;
+ Text [ danish ] = "TEGN" ;
+ Text [ french ] = "CAR" ;
+ Text [ swedish ] = "TECKENKOD" ;
+ Text [ dutch ] = "TEKEN" ;
+ Text [ spanish ] = "CARCTER" ;
+ Text [ english_us ] = "CHAR" ;
+ Text[ chinese_simplified ] = "CHAR";
+ Text[ russian ] = "";
+ Text[ polish ] = "ZNAK";
+ Text[ japanese ] = "CHAR";
+ Text[ chinese_traditional ] = "CHAR";
+ Text[ arabic ] = "CHAR";
+ Text[ dutch ] = "TEKEN";
+ Text[ chinese_simplified ] = "CHAR";
+ Text[ greek ] = "CHAR";
+ Text[ korean ] = "CHAR";
+ Text[ turkish ] = "CHAR";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_LOG10 { Text = "LOG10" ; };
+ String SC_OPCODE_EVEN
+ {
+ Text = "GERADE" ;
+ Text [ english ] = "EVEN" ;
+ Text [ norwegian ] = "PAR" ;
+ Text [ italian ] = "PARI" ;
+ Text [ portuguese_brazilian ] = "PAR" ;
+ Text [ portuguese ] = "PAR" ;
+ Text [ finnish ] = "EVEN" ;
+ Text [ danish ] = "LIGE" ;
+ Text [ french ] = "PAIR" ;
+ Text [ swedish ] = "JMN" ;
+ Text [ dutch ] = "EVEN" ;
+ Text [ spanish ] = "REDONDEA.PAR" ;
+ Text [ english_us ] = "EVEN" ;
+ Text[ chinese_simplified ] = "EVEN";
+ Text[ russian ] = "";
+ Text[ polish ] = "ZAOKR.DO.PARZ";
+ Text[ japanese ] = "EVEN";
+ Text[ chinese_traditional ] = "EVEN";
+ Text[ arabic ] = "EVEN";
+ Text[ dutch ] = "EVEN";
+ Text[ chinese_simplified ] = "EVEN";
+ Text[ greek ] = "EVEN";
+ Text[ korean ] = "EVEN";
+ Text[ turkish ] = "EVEN";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_ODD
+ {
+ Text = "UNGERADE" ;
+ Text [ english ] = "ODD" ;
+ Text [ norwegian ] = "ODDE" ;
+ Text [ italian ] = "DISPARI" ;
+ Text [ portuguese_brazilian ] = "IMPAR" ;
+ Text [ portuguese ] = "MPAR" ;
+ Text [ finnish ] = "ODD" ;
+ Text [ danish ] = "ULIGE" ;
+ Text [ french ] = "IMPAIR" ;
+ Text [ swedish ] = "UDDA" ;
+ Text [ dutch ] = "ONEVEN" ;
+ Text [ spanish ] = "REDONDEA.IMPAR" ;
+ Text [ english_us ] = "ODD" ;
+ Text[ chinese_simplified ] = "ODD";
+ Text[ russian ] = "";
+ Text[ polish ] = "ZAOK.DO.NPARZ";
+ Text[ japanese ] = "ODD";
+ Text[ chinese_traditional ] = "ODD";
+ Text[ arabic ] = "ODD";
+ Text[ dutch ] = "ONEVEN";
+ Text[ chinese_simplified ] = "ODD";
+ Text[ greek ] = "ODD";
+ Text[ korean ] = "ODD";
+ Text[ turkish ] = "ODD";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_STD_NORM_DIST
+ {
+ Text = "STANDNORMVERT" ;
+ Text [ english ] = "NORMSDIST" ;
+ Text [ norwegian ] = "NORMSDIST" ;
+ Text [ italian ] = "DISTRIB.NORM.ST" ;
+ Text [ portuguese_brazilian ] = "NORMSDIST" ;
+ Text [ portuguese ] = "DIST.NORM.P" ;
+ Text [ finnish ] = "NORMSDIST" ;
+ Text [ danish ] = "STANDARDNORMFORDELING" ;
+ Text [ french ] = "LOI.NORMALE.STANDARD" ;
+ Text [ swedish ] = "NORMSFRD" ;
+ Text [ dutch ] = "STAND.NORM.VERD" ;
+ Text [ spanish ] = "DISTR.NORM.ESTAND" ;
+ Text [ english_us ] = "NORMSDIST" ;
+ Text[ chinese_simplified ] = "NORMSDIST";
+ Text[ russian ] = "";
+ Text[ polish ] = "ROZKAD.NORMALNY.S";
+ Text[ japanese ] = "NORMSDIST";
+ Text[ chinese_traditional ] = "NORMSDIST";
+ Text[ arabic ] = "NORMSDIST";
+ Text[ dutch ] = "STAND.NORM.VERD";
+ Text[ chinese_simplified ] = "NORMSDIST";
+ Text[ greek ] = "NORMSDIST";
+ Text[ korean ] = "NORMSDIST";
+ Text[ turkish ] = "STANDNORMDIST";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_FISHER { Text = "FISHER" ; };
+ String SC_OPCODE_FISHER_INV
+ {
+ Text = "FISHERINV" ;
+ Text [ english ] = "FISHERINV" ;
+ Text [ norwegian ] = "FISHERINV" ;
+ Text [ italian ] = "INV.FISHER" ;
+ Text [ portuguese_brazilian ] = "FISHERINV" ;
+ Text [ portuguese ] = "INV.FISHER" ;
+ Text [ finnish ] = "FISHERINV" ;
+ Text [ danish ] = "FISHERINV" ;
+ Text [ french ] = "FISHER.INVERSE" ;
+ Text [ swedish ] = "FISHERINV" ;
+ Text [ dutch ] = "FISHER.INV" ;
+ Text [ spanish ] = "PRUEBA.FISHER.INV" ;
+ Text [ english_us ] = "FISHERINV" ;
+ Text[ chinese_simplified ] = "FISHERINV";
+ Text[ russian ] = "";
+ Text[ polish ] = "ROZKAD.FISHER.ODW.";
+ Text[ japanese ] = "FISHERINV";
+ Text[ chinese_traditional ] = "FISHERINV";
+ Text[ arabic ] = "FISHERINV";
+ Text[ dutch ] = "FISHER.INV";
+ Text[ chinese_simplified ] = "FISHERINV";
+ Text[ greek ] = "FISHERINV";
+ Text[ korean ] = "FISHERINV";
+ Text[ turkish ] = "FISHERINV";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_S_NORM_INV
+ {
+ Text = "STANDNORMINV" ;
+ Text [ english ] = "NORMSINV" ;
+ Text [ norwegian ] = "NORMSINV" ;
+ Text [ italian ] = "INV.NORM.ST" ;
+ Text [ portuguese_brazilian ] = "NORMSINV" ;
+ Text [ portuguese ] = "INV.NORM.P" ;
+ Text [ finnish ] = "NORMSINV" ;
+ Text [ danish ] = "STANDARDNORMINV" ;
+ Text [ french ] = "LOI.NORMALE.STANDARD.INVERSE" ;
+ Text [ swedish ] = "NORMSINV" ;
+ Text [ dutch ] = "STAND.NORM.INV" ;
+ Text [ spanish ] = "DISTR.NORM.ESTAND.INV" ;
+ Text [ english_us ] = "NORMSINV" ;
+ Text[ chinese_simplified ] = "NORMSINV";
+ Text[ russian ] = "";
+ Text[ polish ] = "ROZKAD.NORMALNY.S.ODW";
+ Text[ japanese ] = "NORMSINV";
+ Text[ chinese_traditional ] = "NORMSINV";
+ Text[ arabic ] = "NORMSINV";
+ Text[ dutch ] = "STAND.NORM.INV";
+ Text[ chinese_simplified ] = "NORMSINV";
+ Text[ greek ] = "NORMSINV";
+ Text[ korean ] = "NORMSINV";
+ Text[ turkish ] = "NORMSINV";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_GAMMA_LN
+ {
+ Text = "GAMMALN" ;
+ Text [ english ] = "GAMMALN" ;
+ Text [ norwegian ] = "GAMMALN" ;
+ Text [ italian ] = "LN.GAMMA" ;
+ Text [ portuguese_brazilian ] = "GAMMALN" ;
+ Text [ portuguese ] = "LN.GAMMA" ;
+ Text [ finnish ] = "GAMMALN" ;
+ Text [ danish ] = "GAMMALN" ;
+ Text [ french ] = "LNGAMMA" ;
+ Text [ swedish ] = "GAMMALN" ;
+ Text [ dutch ] = "GAMMA.LN" ;
+ Text [ spanish ] = "GAMMA.LN" ;
+ Text [ english_us ] = "GAMMALN" ;
+ Text[ chinese_simplified ] = "GAMMALN";
+ Text[ russian ] = "";
+ Text[ polish ] = "ROZKAD.LIN.GAMMA";
+ Text[ japanese ] = "GAMMALN";
+ Text[ chinese_traditional ] = "GAMMALN";
+ Text[ arabic ] = "GAMMALN";
+ Text[ dutch ] = "GAMMA.LN";
+ Text[ chinese_simplified ] = "GAMMALN";
+ Text[ greek ] = "GAMMALN";
+ Text[ korean ] = "GAMMALN";
+ Text[ turkish ] = "GAMMALN";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_ERROR_TYPE
+ {
+ Text = "FEHLERTYP" ;
+ Text [ english ] = "ERRORTYPE" ;
+ Text [ norwegian ] = "ERRORTYPE" ;
+ Text [ italian ] = "ERRORE.TIPO" ;
+ Text [ portuguese_brazilian ] = "ERRORTYPE" ;
+ Text [ portuguese ] = "TIPO.ERRO" ;
+ Text [ finnish ] = "ERRORTYPE" ;
+ Text [ danish ] = "FEJLTYPE" ;
+ Text [ french ] = "TYPE.ERREUR" ;
+ Text [ swedish ] = "FELTYP" ;
+ Text [ dutch ] = "TYPE.FOUT" ;
+ Text [ spanish ] = "TIPO.DE.ERROR" ;
+ Text [ english_us ] = "ERRORTYPE" ;
+ Text[ chinese_simplified ] = "ERRORTYPE";
+ Text[ russian ] = ".";
+ Text[ polish ] = "TYP.BDU";
+ Text[ japanese ] = "ERROR.TYPE";
+ Text[ chinese_traditional ] = "ERRORTYPE";
+ Text[ arabic ] = "ERRORTYPE";
+ Text[ dutch ] = "TYPE.FOUT";
+ Text[ chinese_simplified ] = "ERRORTYPE";
+ Text[ greek ] = "ERRORTYPE";
+ Text[ korean ] = "ERRORTYPE";
+ Text[ turkish ] = "ERRORTYPE";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_ERR_CELL { Text = "ZellError" ; }; // ?? Text klein, dt. & engl. gemischt ??
+ String SC_OPCODE_FORMULA
+ {
+ Text = "FORMEL";
+ Text [ english ] = "FORMULA" ;
+ Text [ english_us ] = "FORMULA" ;
+ Text[ portuguese ] = "FORMULA";
+ Text[ russian ] = "";
+ Text[ greek ] = "FORMULA";
+ Text[ dutch ] = "FORMULE";
+ Text[ french ] = "FORMULE";
+ Text[ spanish ] = "FORMULA";
+ Text[ italian ] = "FORMULA";
+ Text[ danish ] = "FORMEL";
+ Text[ swedish ] = "FORMEL";
+ Text[ polish ] = "FORMUA";
+ Text[ portuguese_brazilian ] = "FORMULA";
+ Text[ japanese ] = "FORMULA";
+ Text[ korean ] = "FORMULA";
+ Text[ chinese_simplified ] = "FORMULA";
+ Text[ chinese_traditional ] = "FORMULA";
+ Text[ arabic ] = "FORMULA";
+ Text[ turkish ] = "FORMULA";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_ARC_TAN_2
+ {
+ Text = "ARCTAN2" ;
+ Text [ english ] = "ATAN2" ;
+ Text [ norwegian ] = "ATAN2" ;
+ Text [ italian ] = "ARCTAN.2" ;
+ Text [ portuguese_brazilian ] = "ATAN2" ;
+ Text [ portuguese ] = "ATAN2" ;
+ Text [ finnish ] = "ATAN2" ;
+ Text [ danish ] = "ARCTAN2" ;
+ Text [ french ] = "ATAN2" ;
+ Text [ swedish ] = "ARCTAN2" ;
+ Text [ dutch ] = "BOOGTAN2" ;
+ Text [ spanish ] = "ATAN2" ;
+ Text [ english_us ] = "ATAN2" ;
+ Text[ chinese_simplified ] = "ATAN2";
+ Text[ russian ] = "ATAN2";
+ Text[ polish ] = "ATAN2";
+ Text[ japanese ] = "ATAN2";
+ Text[ chinese_traditional ] = "ATAN2";
+ Text[ arabic ] = "ATAN2";
+ Text[ dutch ] = "BOOGTAN2";
+ Text[ chinese_simplified ] = "ATAN2";
+ Text[ greek ] = "ATAN2";
+ Text[ korean ] = "ATAN2";
+ Text[ turkish ] = "ATAN2";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_CEIL
+ {
+ Text = "OBERGRENZE" ;
+ Text [ english ] = "CEILING" ;
+ Text [ norwegian ] = "TAK" ;
+ Text [ italian ] = "ARROTONDA.ECCESSO" ;
+ Text [ portuguese_brazilian ] = "TETO" ;
+ Text [ portuguese ] = "LIMITE.SUPERIOR" ;
+ Text [ finnish ] = "CEILING" ;
+ Text [ danish ] = "AFRUND.LOFT" ;
+ Text [ french ] = "PLAFOND" ;
+ Text [ swedish ] = "RUNDA.UPP" ;
+ Text [ dutch ] = "AFRONDEN.BOVEN" ;
+ Text [ spanish ] = "MLTIPLO.SUPERIOR" ;
+ Text [ english_us ] = "CEILING" ;
+ Text[ chinese_simplified ] = "CEILING";
+ Text[ russian ] = "";
+ Text[ polish ] = "ZAOKR.W.GR";
+ Text[ japanese ] = "CEILING";
+ Text[ chinese_traditional ] = "CEILING";
+ Text[ arabic ] = "CEILING";
+ Text[ dutch ] = "AFRONDEN.BOVEN";
+ Text[ chinese_simplified ] = "CEILING";
+ Text[ greek ] = "CEILING";
+ Text[ korean ] = "CEILING";
+ Text[ turkish ] = "CEILING";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_FLOOR
+ {
+ Text = "UNTERGRENZE" ;
+ Text [ english ] = "FLOOR" ;
+ Text [ norwegian ] = "GULV" ;
+ Text [ italian ] = "ARROTONDA.DIFETTO" ;
+ Text [ portuguese_brazilian ] = "BASE" ;
+ Text [ portuguese ] = "LIMITE.INFERIOR" ;
+ Text [ finnish ] = "FLOOR" ;
+ Text [ danish ] = "AFRUND.GULV" ;
+ Text [ french ] = "PLANCHER" ;
+ Text [ swedish ] = "RUNDA.NER" ;
+ Text [ dutch ] = "AFRONDEN.BENEDEN" ;
+ Text [ spanish ] = "MLTIPLO.INFERIOR" ;
+ Text [ english_us ] = "FLOOR" ;
+ Text[ chinese_simplified ] = "FLOOR";
+ Text[ russian ] = "";
+ Text[ polish ] = "ZAOKR.W.Dӣ";
+ Text[ japanese ] = "FLOOR";
+ Text[ chinese_traditional ] = "FLOOR";
+ Text[ arabic ] = "FLOOR";
+ Text[ dutch ] = "AFRONDEN.BENEDEN";
+ Text[ chinese_simplified ] = "FLOOR";
+ Text[ greek ] = "FLOOR";
+ Text[ korean ] = "FLOOR";
+ Text[ turkish ] = "FLOOR";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_ROUND
+ {
+ Text = "RUNDEN" ;
+ Text [ english ] = "ROUND" ;
+ Text [ norwegian ] = "ROUND" ;
+ Text [ italian ] = "ARROTONDA" ;
+ Text [ portuguese_brazilian ] = "ARREDONDAR" ;
+ Text [ portuguese ] = "ARREDONDAR" ;
+ Text [ finnish ] = "ROUND" ;
+ Text [ danish ] = "AFRUND" ;
+ Text [ french ] = "ARRONDI" ;
+ Text [ swedish ] = "AVRUNDA" ;
+ Text [ dutch ] = "AFRONDEN" ;
+ Text [ spanish ] = "REDONDEAR" ;
+ Text [ english_us ] = "ROUND" ;
+ Text[ chinese_simplified ] = "ROUND";
+ Text[ russian ] = "";
+ Text[ polish ] = "ZAOKR";
+ Text[ japanese ] = "ROUND";
+ Text[ chinese_traditional ] = "ROUND";
+ Text[ arabic ] = "ROUND";
+ Text[ dutch ] = "AFRONDEN";
+ Text[ chinese_simplified ] = "ROUND";
+ Text[ greek ] = "ROUND";
+ Text[ korean ] = "ROUND";
+ Text[ turkish ] = "ROUND";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_ROUND_UP
+ {
+ Text = "AUFRUNDEN" ;
+ Text [ english ] = "ROUNDUP" ;
+ Text [ norwegian ] = "ROUNDUP" ;
+ Text [ italian ] = "ARROTONDA.PER.ECC" ;
+ Text [ portuguese_brazilian ] = "ARREDONDARPARACIMA" ;
+ Text [ portuguese ] = "ARRED.PARA.CIMA" ;
+ Text [ finnish ] = "ROUNDUP" ;
+ Text [ danish ] = "RUND.OP" ;
+ Text [ french ] = "ARRONDI.SUP" ;
+ Text [ swedish ] = "AVRUNDA.UPPT" ;
+ Text [ dutch ] = "AFRONDEN.NAAR.BOVEN" ;
+ Text [ spanish ] = "REDONDEAR.MAS" ;
+ Text [ english_us ] = "ROUNDUP" ;
+ Text[ chinese_simplified ] = "ROUNDUP";
+ Text[ russian ] = "";
+ Text[ polish ] = "ZAOKR.GRA";
+ Text[ japanese ] = "ROUNDUP";
+ Text[ chinese_traditional ] = "ROUNDUP";
+ Text[ arabic ] = "ROUNDUP";
+ Text[ dutch ] = "AFRONDEN.NAAR.BOVEN";
+ Text[ chinese_simplified ] = "ROUNDUP";
+ Text[ greek ] = "ROUNDUP";
+ Text[ korean ] = "ROUNDUP";
+ Text[ turkish ] = "ROUNDUP";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_ROUND_DOWN
+ {
+ Text = "ABRUNDEN" ;
+ Text [ english ] = "ROUNDDOWN" ;
+ Text [ norwegian ] = "ROUNDDOWN" ;
+ Text [ italian ] = "ARROTONDA.PER.DIF" ;
+ Text [ portuguese_brazilian ] = "ARREDONDARPARABAIXO" ;
+ Text [ portuguese ] = "ARRED.PARA.BAIXO" ;
+ Text [ finnish ] = "ROUNDDOWN" ;
+ Text [ danish ] = "RUND.NED" ;
+ Text [ french ] = "ARRONDI.INF" ;
+ Text [ swedish ] = "AVRUNDA.NEDT" ;
+ Text [ dutch ] = "AFRONDEN.NAAR.BENEDEN" ;
+ Text [ spanish ] = "REDONDEAR.MENOS" ;
+ Text [ english_us ] = "ROUNDDOWN" ;
+ Text[ chinese_simplified ] = "ROUNDDOWN";
+ Text[ russian ] = "";
+ Text[ polish ] = "ZAOKR.Dӣ";
+ Text[ japanese ] = "ROUNDDOWN";
+ Text[ chinese_traditional ] = "ROUNDDOWN";
+ Text[ arabic ] = "ROUNDDOWN";
+ Text[ dutch ] = "AFRONDEN.NAAR.BENEDEN";
+ Text[ chinese_simplified ] = "ROUNDDOWN";
+ Text[ greek ] = "ROUNDDOWN";
+ Text[ korean ] = "ROUNDDOWN";
+ Text[ turkish ] = "ROUNDDOWN";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_TRUNC
+ {
+ /* ### ACHTUNG: Neuer Text in Resource? KRZEN : KRZEN */
+ Text = "KRZEN" ;
+ Text [ english ] = "TRUNC" ;
+ Text [ norwegian ] = "TRUNC" ;
+ Text [ italian ] = "TRONCA" ;
+ Text [ portuguese_brazilian ] = "TRUNCAR" ;
+ Text [ portuguese ] = "TRUNCAR" ;
+ Text [ finnish ] = "TRUNC" ;
+ Text [ danish ] = "AFKORT" ;
+ Text [ french ] = "TRONQUE" ;
+ Text [ swedish ] = "AVKORTA" ;
+ Text [ dutch ] = "GEHEEL" ;
+ Text [ spanish ] = "TRUNCAR" ;
+ Text [ english_us ] = "TRUNC" ;
+ Text[ chinese_simplified ] = "TRUNC";
+ Text[ russian ] = "";
+ Text[ polish ] = "LICZBA.CAK";
+ Text[ japanese ] = "TRUNC";
+ Text[ chinese_traditional ] = "TRUNC";
+ Text[ arabic ] = "TRUNC";
+ Text[ dutch ] = "GEHEEL";
+ Text[ chinese_simplified ] = "TRUNC";
+ Text[ greek ] = "TRUNC";
+ Text[ korean ] = "TRUNC";
+ Text[ turkish ] = "TRUNC";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_LOG { Text = "LOG" ; };
+ String SC_OPCODE_POWER
+ {
+ Text = "POTENZ" ;
+ Text [ english ] = "POWER" ;
+ Text [ norwegian ] = "POWER" ;
+ Text [ italian ] = "POTENZA" ;
+ Text [ portuguese_brazilian ] = "POTENCIA" ;
+ Text [ portuguese ] = "POTNCIA" ;
+ Text [ finnish ] = "POWER" ;
+ Text [ danish ] = "POTENS" ;
+ Text [ french ] = "PUISSANCE" ;
+ Text [ swedish ] = "UPPHJT.TILL" ;
+ Text [ dutch ] = "MACHT" ;
+ Text [ spanish ] = "POTENCIA" ;
+ Text [ english_us ] = "POWER" ;
+ Text[ chinese_simplified ] = "POWER";
+ Text[ russian ] = "";
+ Text[ polish ] = "POTGA";
+ Text[ japanese ] = "POWER";
+ Text[ chinese_traditional ] = "POWER";
+ Text[ arabic ] = "POWER";
+ Text[ dutch ] = "MACHT";
+ Text[ chinese_simplified ] = "POWER";
+ Text[ greek ] = "POWER";
+ Text[ korean ] = "POWER";
+ Text[ turkish ] = "POWER";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_GGT
+ {
+ Text = "GGT" ;
+ Text [ english ] = "GCD" ;
+ Text [ norwegian ] = "GCD" ;
+ Text [ italian ] = "MCD" ;
+ Text [ portuguese_brazilian ] = "GCD" ;
+ Text [ portuguese ] = "MDC" ;
+ Text [ finnish ] = "GCD" ;
+ Text [ danish ] = "STRSTE.FLLES.DIVISOR" ;
+ Text [ french ] = "PGCD" ;
+ Text [ swedish ] = "SGN" ;
+ Text [ dutch ] = "GGD" ;
+ Text [ spanish ] = "M.C.D" ;
+ Text [ english_us ] = "GCD" ;
+ Text[ chinese_simplified ] = "GCD";
+ Text[ russian ] = "";
+ Text[ polish ] = "GCD";
+ Text[ japanese ] = "GCD";
+ Text[ chinese_traditional ] = "GCD";
+ Text[ arabic ] = "GCD";
+ Text[ dutch ] = "GGD";
+ Text[ chinese_simplified ] = "GCD";
+ Text[ greek ] = "GCD";
+ Text[ korean ] = "GCD";
+ Text[ turkish ] = "GCD";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_KGV
+ {
+ Text = "KGV" ;
+ Text [ english ] = "LCM" ;
+ Text [ norwegian ] = "LCD" ;
+ Text [ italian ] = "MCM" ;
+ Text [ portuguese_brazilian ] = "LCD" ;
+ Text [ portuguese ] = "MIN.MLT.COMUM" ;
+ Text [ finnish ] = "LCD" ;
+ Text [ danish ] = "MINDSTE.FLLES.MULTIPLUM" ;
+ Text [ french ] = "PPCM" ;
+ Text [ swedish ] = "MGT" ;
+ Text [ dutch ] = "KGV" ;
+ Text [ spanish ] = "M.C.M" ;
+ Text [ english_us ] = "LCM" ;
+ Text[ chinese_simplified ] = "LCM";
+ Text[ russian ] = "";
+ Text[ polish ] = "LCM";
+ Text[ japanese ] = "LCM";
+ Text[ chinese_traditional ] = "LCM";
+ Text[ arabic ] = "LCM";
+ Text[ dutch ] = "KGV";
+ Text[ chinese_simplified ] = "LCM";
+ Text[ greek ] = "LCM";
+ Text[ korean ] = "LCM";
+ Text[ turkish ] = "LCM";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_MOD
+ {
+ Text = "REST" ;
+ Text [ english ] = "MOD" ;
+ Text [ norwegian ] = "MOD" ;
+ Text [ italian ] = "RESTO" ;
+ Text [ portuguese_brazilian ] = "MOD" ;
+ Text [ portuguese ] = "RESTO" ;
+ Text [ finnish ] = "MOD" ;
+ Text [ danish ] = "REST" ;
+ Text [ french ] = "MOD" ;
+ Text [ swedish ] = "REST" ;
+ Text [ dutch ] = "REST" ;
+ Text [ spanish ] = "RESIDUO" ;
+ Text [ english_us ] = "MOD" ;
+ Text[ chinese_simplified ] = "MOD";
+ Text[ russian ] = "";
+ Text[ polish ] = "MOD";
+ Text[ japanese ] = "MOD";
+ Text[ chinese_traditional ] = "MOD";
+ Text[ arabic ] = "MOD";
+ Text[ dutch ] = "REST";
+ Text[ chinese_simplified ] = "MOD";
+ Text[ greek ] = "MOD";
+ Text[ korean ] = "MOD";
+ Text[ turkish ] = "MOD";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_SUM_PRODUCT
+ {
+ Text = "SUMMENPRODUKT" ;
+ Text [ english ] = "SUMPRODUCT" ;
+ Text [ norwegian ] = "SUMPRODUKT" ;
+ Text [ italian ] = "MATR.SOMMA.PRODOTTO" ;
+ Text [ portuguese_brazilian ] = "SOMARPRODUT" ;
+ Text [ portuguese ] = "SOMAR.PRODUTO" ;
+ Text [ finnish ] = "SUMPRODUCT" ;
+ Text [ danish ] = "SUMPRODUKT" ;
+ Text [ french ] = "SOMMEPROD" ;
+ Text [ swedish ] = "PRODUKTSUMMA" ;
+ Text [ dutch ] = "SOMPRODUKT" ;
+ Text [ spanish ] = "SUMA.PRODUCTO" ;
+ Text [ english_us ] = "SUMPRODUCT" ;
+ Text[ chinese_simplified ] = "SUMPRODUCT";
+ Text[ russian ] = "";
+ Text[ polish ] = "SUMA.ILOCZYNW";
+ Text[ japanese ] = "SUMPRODUCT";
+ Text[ chinese_traditional ] = "SUMPRODUCT";
+ Text[ arabic ] = "SUMPRODUCT";
+ Text[ dutch ] = "SOMPRODUKT";
+ Text[ chinese_simplified ] = "SUMPRODUCT";
+ Text[ greek ] = "SUMPRODUCT";
+ Text[ korean ] = "SUMPRODUCT";
+ Text[ turkish ] = "SUMPRODUCT";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_SUM_SQ
+ {
+ Text = "QUADRATESUMME" ;
+ Text [ english ] = "SUMSQ" ;
+ Text [ norwegian ] = "SUMSQ" ;
+ Text [ italian ] = "SOMMA.Q" ;
+ Text [ portuguese_brazilian ] = "SOMARSQ" ;
+ Text [ portuguese ] = "SOMARQUAD" ;
+ Text [ finnish ] = "SUMSQ" ;
+ Text [ danish ] = "SUMKV" ;
+ Text [ french ] = "SOMME.CARRES" ;
+ Text [ swedish ] = "KVADRATSUMMA" ;
+ Text [ dutch ] = "KWADRATENSOM" ;
+ Text [ spanish ] = "SUMA.CUADRADOS" ;
+ Text [ english_us ] = "SUMSQ" ;
+ Text[ chinese_simplified ] = "SUMSQ";
+ Text[ russian ] = "";
+ Text[ polish ] = "SUMA.KWADRATW";
+ Text[ japanese ] = "SUMSQ";
+ Text[ chinese_traditional ] = "SUMSQ";
+ Text[ arabic ] = "SUMSQ";
+ Text[ dutch ] = "KWADRATENSOM";
+ Text[ chinese_simplified ] = "SUMSQ";
+ Text[ greek ] = "SUMSQ";
+ Text[ korean ] = "SUMSQ";
+ Text[ turkish ] = "SUMSQ";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_SUM_X2MY2
+ {
+ Text = "SUMMEX2MY2" ;
+ Text [ english ] = "SUMX2MY2" ;
+ Text [ norwegian ] = "SUMX2MY2" ;
+ Text [ italian ] = "SOMMA.DIFF.Q" ;
+ Text [ portuguese_brazilian ] = "SOMARX2MY2" ;
+ Text [ portuguese ] = "SOMA.X2MY2" ;
+ Text [ finnish ] = "SUMX2MY2" ;
+ Text [ danish ] = "SUMX2MY2" ;
+ Text [ french ] = "SOMME.X2MY2" ;
+ Text [ swedish ] = "SUMMAX2MY2" ;
+ Text [ dutch ] = "SOM.X2MINY2" ;
+ Text [ spanish ] = "SUMAX2MENOSY2" ;
+ Text [ english_us ] = "SUMX2MY2" ;
+ Text[ chinese_simplified ] = "SUMX2MY2";
+ Text[ russian ] = "";
+ Text[ polish ] = "SUMA.X2.M.Y2";
+ Text[ japanese ] = "SUMX2MY2";
+ Text[ chinese_traditional ] = "SUMX2MY2";
+ Text[ arabic ] = "SUMX2MY2";
+ Text[ dutch ] = "SOM.X2MINY2";
+ Text[ chinese_simplified ] = "SUMX2MY2";
+ Text[ greek ] = "SUMX2MY2";
+ Text[ korean ] = "SUMX2MY2";
+ Text[ turkish ] = "SUMX2MY2";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_SUM_X2DY2
+ {
+ Text = "SUMMEX2PY2" ;
+ Text [ english ] = "SUMX2PY2" ;
+ Text [ norwegian ] = "SUMX2DY2" ;
+ Text [ italian ] = "SOMMA.SOMMA.Q" ;
+ Text [ portuguese_brazilian ] = "SOMARX2DY2" ;
+ Text [ portuguese ] = "SOMA.X2PY2" ;
+ Text [ finnish ] = "SUMX2DY2" ;
+ Text [ danish ] = "SUMX2PY2" ;
+ Text [ french ] = "SOMME.X2PY2" ;
+ Text [ swedish ] = "SUMMAX2PY2" ;
+ Text [ dutch ] = "SOM.X2PLUSY2" ;
+ Text [ spanish ] = "SUMAX2MASY2" ;
+ Text [ english_us ] = "SUMX2PY2" ;
+ Text[ chinese_simplified ] = "SUMX2PY2";
+ Text[ russian ] = "";
+ Text[ polish ] = "SUMA.X2.P.Y2";
+ Text[ japanese ] = "SUMX2PY2";
+ Text[ chinese_traditional ] = "SUMX2PY2";
+ Text[ arabic ] = "SUMX2PY2";
+ Text[ dutch ] = "SOM.X2PLUSY2";
+ Text[ chinese_simplified ] = "SUMX2PY2";
+ Text[ greek ] = "SUMX2PY2";
+ Text[ korean ] = "SUMX2PY2";
+ Text[ turkish ] = "SUMX2PY2";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_SUM_XMY2
+ {
+ Text = "SUMMEXMY2" ;
+ Text [ english ] = "SUMXMY2" ;
+ Text [ norwegian ] = "SUMXMY2" ;
+ Text [ italian ] = "SOMMA.Q.DIFF" ;
+ Text [ portuguese_brazilian ] = "SOMARXMY2" ;
+ Text [ portuguese ] = "SOMA.XMY2" ;
+ Text [ finnish ] = "SUMXMY2" ;
+ Text [ danish ] = "SUMXMY2" ;
+ Text [ french ] = "SOMME.XMY2" ;
+ Text [ swedish ] = "SUMMAXMY2" ;
+ Text [ dutch ] = "SOM.XMINY.2" ;
+ Text [ spanish ] = "SUMAXMENOSY2" ;
+ Text [ english_us ] = "SUMXMY2" ;
+ Text[ chinese_simplified ] = "SUMXMY2";
+ Text[ russian ] = "";
+ Text[ polish ] = "SUMA.XMY.2";
+ Text[ japanese ] = "SUMXMY2";
+ Text[ chinese_traditional ] = "SUMXMY2";
+ Text[ arabic ] = "SUMXMY2";
+ Text[ dutch ] = "SOM.XMINY.2";
+ Text[ chinese_simplified ] = "SUMXMY2";
+ Text[ greek ] = "SUMXMY2";
+ Text[ korean ] = "SUMXMY2";
+ Text[ turkish ] = "SUMXMY2";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_GET_DATE
+ {
+ Text = "DATUM" ;
+ Text [ english ] = "DATE" ;
+ Text [ norwegian ] = "DATO" ;
+ Text [ italian ] = "DATA" ;
+ Text [ portuguese_brazilian ] = "DATA" ;
+ Text [ portuguese ] = "DATA" ;
+ Text [ finnish ] = "DATE" ;
+ Text [ danish ] = "DATO" ;
+ Text [ french ] = "DATE" ;
+ Text [ swedish ] = "DATUM" ;
+ Text [ dutch ] = "DATUM" ;
+ Text [ spanish ] = "FECHA" ;
+ Text [ english_us ] = "DATE" ;
+ Text[ chinese_simplified ] = "DATE";
+ Text[ russian ] = "";
+ Text[ polish ] = "DATA";
+ Text[ japanese ] = "DATE";
+ Text[ chinese_traditional ] = "DATE";
+ Text[ arabic ] = "DATE";
+ Text[ dutch ] = "DATUM";
+ Text[ chinese_simplified ] = "DATE";
+ Text[ greek ] = "DATE";
+ Text[ korean ] = "DATE";
+ Text[ turkish ] = "DATE";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_GET_TIME
+ {
+ Text = "ZEIT" ;
+ Text [ english ] = "TIME" ;
+ Text [ norwegian ] = "TID" ;
+ Text [ italian ] = "ORARIO" ;
+ Text [ portuguese_brazilian ] = "HORA" ;
+ Text [ portuguese ] = "TEMPO" ;
+ Text [ finnish ] = "TIME" ;
+ Text [ danish ] = "TID" ;
+ Text [ french ] = "TEMPS" ;
+ Text [ swedish ] = "KLOCKSLAG" ;
+ Text [ dutch ] = "TIJD" ;
+ Text [ spanish ] = "NSHORA" ;
+ Text [ english_us ] = "TIME" ;
+ Text[ chinese_simplified ] = "TIME";
+ Text[ russian ] = "";
+ Text[ polish ] = "CZAS";
+ Text[ japanese ] = "TIME";
+ Text[ chinese_traditional ] = "TIME";
+ Text[ arabic ] = "TIME";
+ Text[ dutch ] = "TIJD";
+ Text[ chinese_simplified ] = "TIME";
+ Text[ greek ] = "TIME";
+ Text[ korean ] = "TIME";
+ Text[ turkish ] = "TIME";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_GET_DIFF_DATE
+ {
+ Text = "TAGE" ;
+ Text [ english ] = "DAYS" ;
+ Text [ norwegian ] = "DAGER" ;
+ Text [ italian ] = "GIORNI" ;
+ Text [ portuguese_brazilian ] = "DIA" ;
+ Text [ portuguese ] = "DIAS" ;
+ Text [ finnish ] = "DAYS" ;
+ Text [ danish ] = "DAGE" ;
+ Text [ french ] = "JOURS" ;
+ Text [ swedish ] = "DAGAR" ;
+ Text [ dutch ] = "DAGEN" ;
+ Text [ spanish ] = "DAS" ;
+ Text [ english_us ] = "DAYS" ;
+ Text[ chinese_simplified ] = "DAYS";
+ Text[ russian ] = "";
+ Text[ polish ] = "DNI";
+ Text[ japanese ] = "DAYS";
+ Text[ chinese_traditional ] = "DAYS";
+ Text[ arabic ] = "DAYS";
+ Text[ dutch ] = "DAGEN";
+ Text[ chinese_simplified ] = "DAYS";
+ Text[ greek ] = "DAYS";
+ Text[ korean ] = "DAYS";
+ Text[ turkish ] = "DAYS";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_GET_DIFF_DATE_360
+ {
+ Text = "TAGE360" ;
+ Text [ english ] = "DAYS360" ;
+ Text [ norwegian ] = "DAGER360" ;
+ Text [ italian ] = "GIORNO360" ;
+ Text [ portuguese_brazilian ] = "DIAS360" ;
+ Text [ portuguese ] = "DIAS360" ;
+ Text [ finnish ] = "DAYS360" ;
+ Text [ danish ] = "DAGE360" ;
+ Text [ french ] = "JOURS360" ;
+ Text [ swedish ] = "DAGAR360" ;
+ Text [ dutch ] = "DAGEN360" ;
+ Text [ spanish ] = "DAS360" ;
+ Text [ english_us ] = "DAYS360" ;
+ Text[ chinese_simplified ] = "DAYS360";
+ Text[ russian ] = "360";
+ Text[ polish ] = "DNI360";
+ Text[ japanese ] = "DAYS360";
+ Text[ chinese_traditional ] = "DAYS360";
+ Text[ arabic ] = "DAYS360";
+ Text[ dutch ] = "DAGEN360";
+ Text[ chinese_simplified ] = "DAYS360";
+ Text[ greek ] = "DAYS360";
+ Text[ korean ] = "DAYS360";
+ Text[ turkish ] = "DAYS360";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_MIN
+ {
+ Text = "MIN" ;
+ Text [ english ] = "MIN" ;
+ Text [ norwegian ] = "MIN" ;
+ Text [ italian ] = "MIN" ;
+ Text [ portuguese_brazilian ] = "MIN" ;
+ Text [ portuguese ] = "MNIMO" ;
+ Text [ finnish ] = "MIN" ;
+ Text [ danish ] = "MIN" ;
+ Text [ french ] = "MIN" ;
+ Text [ swedish ] = "MIN" ;
+ Text [ dutch ] = "MIN" ;
+ Text [ spanish ] = "MN" ;
+ Text [ english_us ] = "MIN" ;
+ Text[ chinese_simplified ] = "MIN";
+ Text[ russian ] = "";
+ Text[ polish ] = "MIN";
+ Text[ japanese ] = "MIN";
+ Text[ chinese_traditional ] = "MIN";
+ Text[ arabic ] = "MIN";
+ Text[ dutch ] = "MIN";
+ Text[ chinese_simplified ] = "MIN";
+ Text[ greek ] = "MIN";
+ Text[ korean ] = "MIN";
+ Text[ turkish ] = "MIN";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_MIN_A
+ {
+ Text = "MINA" ;
+ Text [ english ] = "MINA" ;
+ Text [ norwegian ] = "MINA" ;
+ Text [ italian ] = "MIN.VALORI" ;
+ Text [ portuguese_brazilian ] = "MINA" ;
+ Text [ portuguese ] = "MNIMOA" ;
+ Text [ finnish ] = "MINA" ;
+ Text [ danish ] = "MINV" ;
+ Text [ french ] = "MINA" ;
+ Text [ swedish ] = "MINA" ;
+ Text [ dutch ] = "MINA" ;
+ Text [ spanish ] = "MNA" ;
+ Text [ english_us ] = "MINA" ;
+ Text[ chinese_simplified ] = "MINA";
+ Text[ russian ] = "";
+ Text[ polish ] = "MIN.A";
+ Text[ japanese ] = "MINA";
+ Text[ chinese_traditional ] = "MINA";
+ Text[ arabic ] = "MINA";
+ Text[ dutch ] = "MINA";
+ Text[ chinese_simplified ] = "MINA";
+ Text[ greek ] = "MINA";
+ Text[ korean ] = "MINA";
+ Text[ turkish ] = "MINA";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_MAX
+ {
+ Text = "MAX" ;
+ Text [ english ] = "MAX" ;
+ Text [ norwegian ] = "MAKS" ;
+ Text [ italian ] = "MAX" ;
+ Text [ portuguese_brazilian ] = "MAX" ;
+ Text [ portuguese ] = "MXIMO" ;
+ Text [ finnish ] = "MAX" ;
+ Text [ danish ] = "MAKS" ;
+ Text [ french ] = "MAX" ;
+ Text [ swedish ] = "MAX" ;
+ Text [ dutch ] = "MAX" ;
+ Text [ spanish ] = "MX" ;
+ Text [ english_us ] = "MAX" ;
+ Text[ chinese_simplified ] = "MAX";
+ Text[ russian ] = "";
+ Text[ polish ] = "MAX";
+ Text[ japanese ] = "MAX";
+ Text[ chinese_traditional ] = "MAX";
+ Text[ arabic ] = "MAX";
+ Text[ dutch ] = "MAX";
+ Text[ chinese_simplified ] = "MAX";
+ Text[ greek ] = "MAX";
+ Text[ korean ] = "MAX";
+ Text[ turkish ] = "MAX";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_MAX_A
+ {
+ Text = "MAXA" ;
+ Text [ english ] = "MAXA" ;
+ Text [ norwegian ] = "MAKS" ;
+ Text [ italian ] = "MAX.VALORI" ;
+ Text [ portuguese_brazilian ] = "MAXA" ;
+ Text [ portuguese ] = "MXIMOA" ;
+ Text [ finnish ] = "MAXA" ;
+ Text [ danish ] = "MAKSV" ;
+ Text [ french ] = "MAXA" ;
+ Text [ swedish ] = "MAXA" ;
+ Text [ dutch ] = "MAXA" ;
+ Text [ spanish ] = "MXA" ;
+ Text [ english_us ] = "MAXA" ;
+ Text[ chinese_simplified ] = "MAXA";
+ Text[ russian ] = "";
+ Text[ polish ] = "MAX.A";
+ Text[ japanese ] = "MAXA";
+ Text[ chinese_traditional ] = "MAXA";
+ Text[ arabic ] = "MAXA";
+ Text[ dutch ] = "MAXA";
+ Text[ chinese_simplified ] = "MAXA";
+ Text[ greek ] = "MAXA";
+ Text[ korean ] = "MAXA";
+ Text[ turkish ] = "MAXA";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_SUM
+ {
+ Text = "SUMME" ;
+ Text [ english ] = "SUM" ;
+ Text [ norwegian ] = "SUM" ;
+ Text [ italian ] = "SOMMA" ;
+ Text [ portuguese_brazilian ] = "SOMA" ;
+ Text [ portuguese ] = "SOMA" ;
+ Text [ finnish ] = "SUM" ;
+ Text [ danish ] = "SUM" ;
+ Text [ french ] = "SOMME" ;
+ Text [ swedish ] = "SUMMA" ;
+ Text [ dutch ] = "SOM" ;
+ Text [ spanish ] = "SUMA" ;
+ Text [ english_us ] = "SUM" ;
+ Text[ chinese_simplified ] = "SUM";
+ Text[ russian ] = "";
+ Text[ polish ] = "SUMA";
+ Text[ japanese ] = "SUM";
+ Text[ chinese_traditional ] = "SUM";
+ Text[ arabic ] = "SUM";
+ Text[ dutch ] = "SOM";
+ Text[ chinese_simplified ] = "SUM";
+ Text[ greek ] = "SUM";
+ Text[ korean ] = "SUM";
+ Text[ turkish ] = "SUM";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_PRODUCT
+ {
+ Text = "PRODUKT" ;
+ Text [ english ] = "PRODUCT" ;
+ Text [ norwegian ] = "PRODUKT" ;
+ Text [ italian ] = "PRODOTTO" ;
+ Text [ portuguese_brazilian ] = "PRODUTO" ;
+ Text [ portuguese ] = "PRODUTO" ;
+ Text [ finnish ] = "PRODUCT" ;
+ Text [ danish ] = "PRODUKT" ;
+ Text [ french ] = "PRODUIT" ;
+ Text [ swedish ] = "PRODUKT" ;
+ Text [ dutch ] = "PRODUKT" ;
+ Text [ spanish ] = "PRODUCTO" ;
+ Text [ english_us ] = "PRODUCT" ;
+ Text[ chinese_simplified ] = "PRODUCT";
+ Text[ russian ] = "";
+ Text[ polish ] = "ILOCZYN";
+ Text[ japanese ] = "PRODUCT";
+ Text[ chinese_traditional ] = "PRODUCT";
+ Text[ arabic ] = "PRODUCT";
+ Text[ dutch ] = "PRODUKT";
+ Text[ chinese_simplified ] = "PRODUCT";
+ Text[ greek ] = "PRODUCT";
+ Text[ korean ] = "PRODUCT";
+ Text[ turkish ] = "PRODUCT";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_AVERAGE
+ {
+ Text = "MITTELWERT" ;
+ Text [ english ] = "AVERAGE" ;
+ Text [ norwegian ] = "GJENNOMSNITT" ;
+ Text [ italian ] = "MEDIA" ;
+ Text [ portuguese_brazilian ] = "MDIA" ;
+ Text [ portuguese ] = "MDIA" ;
+ Text [ finnish ] = "AVERAGE" ;
+ Text [ danish ] = "MIDDEL" ;
+ Text [ french ] = "MOYENNE" ;
+ Text [ swedish ] = "MEDEL" ;
+ Text [ dutch ] = "GEMIDDELDE" ;
+ Text [ spanish ] = "PROMEDIO" ;
+ Text [ english_us ] = "AVERAGE" ;
+ Text[ chinese_simplified ] = "AVERAGE";
+ Text[ russian ] = "";
+ Text[ polish ] = "REDNIA";
+ Text[ japanese ] = "AVERAGE";
+ Text[ chinese_traditional ] = "AVERAGE";
+ Text[ arabic ] = "AVERAGE";
+ Text[ dutch ] = "GEMIDDELDE";
+ Text[ chinese_simplified ] = "AVERAGE";
+ Text[ greek ] = "AVERAGE";
+ Text[ korean ] = "AVERAGE";
+ Text[ turkish ] = "AVERAGE";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_AVERAGE_A
+ {
+ Text = "MITTELWERTA" ;
+ Text [ english ] = "AVERAGEA" ;
+ Text [ norwegian ] = "GJENNOMSNITTA" ;
+ Text [ italian ] = "MEDIA.VALORI" ;
+ Text [ portuguese_brazilian ] = "MDIAA" ;
+ Text [ portuguese ] = "MDIAA" ;
+ Text [ finnish ] = "AVERAGEA" ;
+ Text [ danish ] = "MIDDELV" ;
+ Text [ french ] = "MOYENNEA" ;
+ Text [ swedish ] = "MEDELA" ;
+ Text [ dutch ] = "GEMIDDELDEA" ;
+ Text [ spanish ] = "PROMEDIOA" ;
+ Text [ english_us ] = "AVERAGEA" ;
+ Text[ chinese_simplified ] = "AVERAGEA";
+ Text[ russian ] = "";
+ Text[ polish ] = "REDNIAA";
+ Text[ japanese ] = "AVERAGEA";
+ Text[ chinese_traditional ] = "AVERAGEA";
+ Text[ arabic ] = "AVERAGEA";
+ Text[ dutch ] = "GEMIDDELDEA";
+ Text[ chinese_simplified ] = "AVERAGEA";
+ Text[ greek ] = "AVERAGEA";
+ Text[ korean ] = "AVERAGEA";
+ Text[ turkish ] = "AVERAGEA";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_COUNT
+ {
+ Text = "ANZAHL" ;
+ Text [ english ] = "COUNT" ;
+ Text [ norwegian ] = "COUNT" ;
+ Text [ italian ] = "CONTA.NUMERI" ;
+ Text [ portuguese_brazilian ] = "CONTA" ;
+ Text [ portuguese ] = "CONTAR.NMEROS" ;
+ Text [ finnish ] = "COUNT" ;
+ Text [ danish ] = "TL" ;
+ Text [ french ] = "NB" ;
+ Text [ swedish ] = "ANTAL" ;
+ Text [ dutch ] = "AANTAL" ;
+ Text [ spanish ] = "CONTAR" ;
+ Text [ english_us ] = "COUNT" ;
+ Text[ chinese_simplified ] = "COUNT";
+ Text[ russian ] = "";
+ Text[ polish ] = "ILE.LICZB";
+ Text[ japanese ] = "COUNT";
+ Text[ chinese_traditional ] = "COUNT";
+ Text[ arabic ] = "COUNT";
+ Text[ dutch ] = "AANTAL";
+ Text[ chinese_simplified ] = "COUNT";
+ Text[ greek ] = "COUNT";
+ Text[ korean ] = "COUNT";
+ Text[ turkish ] = "COUNT";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_COUNT_2
+ {
+ Text = "ANZAHL2" ;
+ Text [ english ] = "COUNTA" ;
+ Text [ norwegian ] = "COUNTA" ;
+ Text [ italian ] = "CONTA.VALORI" ;
+ Text [ portuguese_brazilian ] = "CONT.VALORES" ;
+ Text [ portuguese ] = "CONTAR.VAL" ;
+ Text [ finnish ] = "COUNTA" ;
+ Text [ danish ] = "TLV" ;
+ Text [ french ] = "NBVAL" ;
+ Text [ swedish ] = "ANTALV" ;
+ Text [ dutch ] = "AANTALARG" ;
+ Text [ spanish ] = "CONTARA" ;
+ Text [ english_us ] = "COUNTA" ;
+ Text[ chinese_simplified ] = "COUNTA";
+ Text[ russian ] = "2";
+ Text[ polish ] = "ILE.NIEPUSTYCH";
+ Text[ japanese ] = "COUNTA";
+ Text[ chinese_traditional ] = "COUNTA";
+ Text[ arabic ] = "COUNTA";
+ Text[ dutch ] = "AANTALARG";
+ Text[ chinese_simplified ] = "COUNTA";
+ Text[ greek ] = "COUNTA";
+ Text[ korean ] = "COUNTA";
+ Text[ turkish ] = "COUNTA";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_NBW
+ {
+ Text = "NBW" ;
+ Text [ english ] = "NPV" ;
+ Text [ norwegian ] = "NPV" ;
+ Text [ italian ] = "VAN" ;
+ Text [ portuguese_brazilian ] = "VPL" ;
+ Text [ portuguese ] = "VPL" ;
+ Text [ finnish ] = "NPV" ;
+ Text [ danish ] = "NUTIDSVRDI" ;
+ Text [ french ] = "VAN" ;
+ Text [ swedish ] = "NETNUVRDE" ;
+ Text [ dutch ] = "NHW" ;
+ Text [ spanish ] = "VNA" ;
+ Text [ english_us ] = "NPV" ;
+ Text[ chinese_simplified ] = "NPV";
+ Text[ russian ] = "";
+ Text[ polish ] = "NPW";
+ Text[ japanese ] = "NPV";
+ Text[ chinese_traditional ] = "NPV";
+ Text[ arabic ] = "NPV";
+ Text[ dutch ] = "NHW";
+ Text[ chinese_simplified ] = "NPV";
+ Text[ greek ] = "NPV";
+ Text[ korean ] = "NPV";
+ Text[ turkish ] = "NPV";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_IKV
+ {
+ Text = "IKV" ;
+ Text [ english ] = "IRR" ;
+ Text [ norwegian ] = "IRR" ;
+ Text [ italian ] = "TIR.COST" ;
+ Text [ portuguese_brazilian ] = "TIR" ;
+ Text [ portuguese ] = "TIR" ;
+ Text [ finnish ] = "IRR" ;
+ Text [ danish ] = "IA" ;
+ Text [ french ] = "TRI" ;
+ Text [ swedish ] = "IR" ;
+ Text [ dutch ] = "IR" ;
+ Text [ spanish ] = "TIR" ;
+ Text [ english_us ] = "IRR" ;
+ Text[ chinese_simplified ] = "IRR";
+ Text[ russian ] = "";
+ Text[ polish ] = "IRR";
+ Text[ japanese ] = "IRR";
+ Text[ chinese_traditional ] = "IRR";
+ Text[ arabic ] = "IRR";
+ Text[ dutch ] = "IR";
+ Text[ chinese_simplified ] = "IRR";
+ Text[ greek ] = "IRR";
+ Text[ korean ] = "IRR";
+ Text[ turkish ] = "IRR";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_VAR
+ {
+ Text = "VARIANZ" ;
+ Text [ english ] = "VAR" ;
+ Text [ norwegian ] = "VAR" ;
+ Text [ italian ] = "VAR" ;
+ Text [ portuguese_brazilian ] = "VAR" ;
+ Text [ portuguese ] = "VAR" ;
+ Text [ finnish ] = "VAR" ;
+ Text [ danish ] = "VARIANS" ;
+ Text [ french ] = "VAR" ;
+ Text [ swedish ] = "VARIANS" ;
+ Text [ dutch ] = "VAR" ;
+ Text [ spanish ] = "VAR" ;
+ Text [ english_us ] = "VAR" ;
+ Text[ chinese_simplified ] = "VAR";
+ Text[ russian ] = "";
+ Text[ polish ] = "WARIANCJA";
+ Text[ japanese ] = "VAR";
+ Text[ chinese_traditional ] = "VAR";
+ Text[ arabic ] = "VAR";
+ Text[ dutch ] = "VAR";
+ Text[ chinese_simplified ] = "VAR";
+ Text[ greek ] = "VAR";
+ Text[ korean ] = "VAR";
+ Text[ turkish ] = "VAR";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_VAR_A
+ {
+ Text = "VARIANZA" ;
+ Text [ english ] = "VARA" ;
+ Text [ norwegian ] = "VARA" ;
+ Text [ italian ] = "VAR.VALORI" ;
+ Text [ portuguese_brazilian ] = "VARA" ;
+ Text [ portuguese ] = "VARA" ;
+ Text [ finnish ] = "VARA" ;
+ Text [ danish ] = "VARIANSV" ;
+ Text [ french ] = "VARA" ;
+ Text [ swedish ] = "VARIANSA" ;
+ Text [ dutch ] = "VARA" ;
+ Text [ spanish ] = "VARA" ;
+ Text [ english_us ] = "VARA" ;
+ Text[ chinese_simplified ] = "VARA";
+ Text[ russian ] = "";
+ Text[ polish ] = "WARIANCJA.A";
+ Text[ japanese ] = "VARA";
+ Text[ chinese_traditional ] = "VARA";
+ Text[ arabic ] = "VARA";
+ Text[ dutch ] = "VARA";
+ Text[ chinese_simplified ] = "VARA";
+ Text[ greek ] = "VARA";
+ Text[ korean ] = "VARA";
+ Text[ turkish ] = "VARA";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_VAR_P
+ {
+ Text = "VARIANZEN" ;
+ Text [ english ] = "VARP" ;
+ Text [ norwegian ] = "VARP" ;
+ Text [ italian ] = "VAR.POP" ;
+ Text [ portuguese_brazilian ] = "VARP" ;
+ Text [ portuguese ] = "VARP" ;
+ Text [ finnish ] = "VARP" ;
+ Text [ danish ] = "VARIANSP" ;
+ Text [ french ] = "VAR.P" ;
+ Text [ swedish ] = "VARIANSP" ;
+ Text [ dutch ] = "VARP" ;
+ Text [ spanish ] = "VARP" ;
+ Text [ english_us ] = "VARP" ;
+ Text[ chinese_simplified ] = "VARP";
+ Text[ russian ] = "";
+ Text[ polish ] = "WARIANCJA.POPUL";
+ Text[ japanese ] = "VARP";
+ Text[ chinese_traditional ] = "VARP";
+ Text[ arabic ] = "VARP";
+ Text[ dutch ] = "VARP";
+ Text[ chinese_simplified ] = "VARP";
+ Text[ greek ] = "VARP";
+ Text[ korean ] = "VARP";
+ Text[ turkish ] = "VARP";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_VAR_P_A
+ {
+ Text = "VARIANZENA" ;
+ Text [ english ] = "VARPA" ;
+ Text [ norwegian ] = "VARPA" ;
+ Text [ italian ] = "VAR.POP.VALORI" ;
+ Text [ portuguese_brazilian ] = "VARPA" ;
+ Text [ portuguese ] = "VARPA" ;
+ Text [ finnish ] = "VARPA" ;
+ Text [ danish ] = "VARIANSNV" ;
+ Text [ french ] = "VAR.PA" ;
+ Text [ swedish ] = "VARIANSPA" ;
+ Text [ dutch ] = "VARPA" ;
+ Text [ spanish ] = "VARPA" ;
+ Text [ english_us ] = "VARPA" ;
+ Text[ chinese_simplified ] = "VARPA";
+ Text[ russian ] = "";
+ Text[ polish ] = "WARIANCJA.POPUL.A";
+ Text[ japanese ] = "VARPA";
+ Text[ chinese_traditional ] = "VARPA";
+ Text[ arabic ] = "VARPA";
+ Text[ dutch ] = "VARPA";
+ Text[ chinese_simplified ] = "VARPA";
+ Text[ greek ] = "VARPA";
+ Text[ korean ] = "VARPA";
+ Text[ turkish ] = "VARPA";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_ST_DEV
+ {
+ Text = "STABW" ;
+ Text [ english ] = "STDEV" ;
+ Text [ norwegian ] = "STAVV" ;
+ Text [ italian ] = "DEV.ST" ;
+ Text [ portuguese_brazilian ] = "DESVPAD" ;
+ Text [ portuguese ] = "DESV.PAD" ;
+ Text [ finnish ] = "STDEV" ;
+ Text [ danish ] = "STDAFV" ;
+ Text [ french ] = "ECARTYPE" ;
+ Text [ swedish ] = "STDAV" ;
+ Text [ dutch ] = "STDEV" ;
+ Text [ spanish ] = "DESVEST" ;
+ Text [ english_us ] = "STDEV" ;
+ Text[ chinese_simplified ] = "STDEV";
+ Text[ russian ] = "";
+ Text[ polish ] = "ODCH.STANDARDOWE";
+ Text[ japanese ] = "STDEV";
+ Text[ chinese_traditional ] = "STDEV";
+ Text[ arabic ] = "STDEV";
+ Text[ dutch ] = "STDEV";
+ Text[ chinese_simplified ] = "STDEV";
+ Text[ greek ] = "STDEV";
+ Text[ korean ] = "STDEV";
+ Text[ turkish ] = "STDEV";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_ST_DEV_A
+ {
+ Text = "STABWA" ;
+ Text [ english ] = "STDEVA" ;
+ Text [ norwegian ] = "STAVVA" ;
+ Text [ italian ] = "DEV.ST.VALORI" ;
+ Text [ portuguese_brazilian ] = "DESVPADA" ;
+ Text [ portuguese ] = "DESV.PADA" ;
+ Text [ finnish ] = "STDEVA" ;
+ Text [ danish ] = "STDAFVV" ;
+ Text [ french ] = "ECARTYPEA" ;
+ Text [ swedish ] = "STDAVA" ;
+ Text [ dutch ] = "STDEVA" ;
+ Text [ spanish ] = "DESVESTA" ;
+ Text [ english_us ] = "STDEVA" ;
+ Text[ chinese_simplified ] = "STDEVA";
+ Text[ russian ] = "";
+ Text[ polish ] = "ODCH.STANDARDOWE.A";
+ Text[ japanese ] = "STDEVA";
+ Text[ chinese_traditional ] = "STDEVA";
+ Text[ arabic ] = "STDEVA";
+ Text[ dutch ] = "STDEVA";
+ Text[ chinese_simplified ] = "STDEVA";
+ Text[ greek ] = "STDEVA";
+ Text[ korean ] = "STDEVA";
+ Text[ turkish ] = "STDEVA";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_ST_DEV_P
+ {
+ Text = "STABWN" ;
+ Text [ english ] = "STDEVP" ;
+ Text [ norwegian ] = "STAVVP" ;
+ Text [ italian ] = "DEV.ST.POP" ;
+ Text [ portuguese_brazilian ] = "STDEVP" ;
+ Text [ portuguese ] = "DESV.PAD.P" ;
+ Text [ finnish ] = "STDEVP" ;
+ Text [ danish ] = "STDAFVP" ;
+ Text [ french ] = "ECARTYPEP" ;
+ Text [ swedish ] = "STDAVP" ;
+ Text [ dutch ] = "STDEVP" ;
+ Text [ spanish ] = "DESVESTP" ;
+ Text [ english_us ] = "STDEVP" ;
+ Text[ chinese_simplified ] = "STDEVP";
+ Text[ russian ] = "";
+ Text[ polish ] = "ODCH.STANDARD.POPUL";
+ Text[ japanese ] = "STDEVP";
+ Text[ chinese_traditional ] = "STDEVP";
+ Text[ arabic ] = "STDEVP";
+ Text[ dutch ] = "STDEVP";
+ Text[ chinese_simplified ] = "STDEVP";
+ Text[ greek ] = "STDEVP";
+ Text[ korean ] = "STDEVP";
+ Text[ turkish ] = "STDEVP";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_ST_DEV_P_A
+ {
+ Text = "STABWNA" ;
+ Text [ english ] = "STDEVPA" ;
+ Text [ norwegian ] = "STAVVPA" ;
+ Text [ italian ] = "DEV.ST.POP.VALORI" ;
+ Text [ portuguese_brazilian ] = "STDEVPA" ;
+ Text [ portuguese ] = "DESV.PAD.PA" ;
+ Text [ finnish ] = "STDEVPA" ;
+ Text [ danish ] = "STDAFVPV" ;
+ Text [ french ] = "ECARTYPEPA" ;
+ Text [ swedish ] = "STDAVPA" ;
+ Text [ dutch ] = "STDEVPA" ;
+ Text [ spanish ] = "DESVESTPA" ;
+ Text [ english_us ] = "STDEVPA" ;
+ Text[ chinese_simplified ] = "STDEVPA";
+ Text[ russian ] = "";
+ Text[ polish ] = "ODCH.STANDARDOWE.POPUL.A";
+ Text[ japanese ] = "STDEVPA";
+ Text[ chinese_traditional ] = "STDEVPA";
+ Text[ arabic ] = "STDEVPA";
+ Text[ dutch ] = "STDEVPA";
+ Text[ chinese_simplified ] = "STDEVPA";
+ Text[ greek ] = "STDEVPA";
+ Text[ korean ] = "STDEVPA";
+ Text[ turkish ] = "STDEVPA";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_B { Text = "B" ; };
+ String SC_OPCODE_NORM_DIST
+ {
+ Text = "NORMVERT" ;
+ Text [ english ] = "NORMDIST" ;
+ Text [ norwegian ] = "NORMDIST" ;
+ Text [ italian ] = "DISTRIB.NORM" ;
+ Text [ portuguese_brazilian ] = "NORMDIST" ;
+ Text [ portuguese ] = "DIST.NORM" ;
+ Text [ finnish ] = "NORMDIST" ;
+ Text [ danish ] = "NORMFORDELING" ;
+ Text [ french ] = "LOI.NORMALE" ;
+ Text [ swedish ] = "NORMFRD" ;
+ Text [ dutch ] = "NORM.VERD" ;
+ Text [ spanish ] = "DISTR.NORM" ;
+ Text [ english_us ] = "NORMDIST" ;
+ Text[ chinese_simplified ] = "NORMDIST";
+ Text[ russian ] = "";
+ Text[ polish ] = "ROZKAD";
+ Text[ japanese ] = "NORMDIST";
+ Text[ chinese_traditional ] = "NORMDIST";
+ Text[ arabic ] = "NORMDIST";
+ Text[ dutch ] = "NORM.VERD";
+ Text[ chinese_simplified ] = "NORMDIST";
+ Text[ greek ] = "NORMDIST";
+ Text[ korean ] = "NORMDIST";
+ Text[ turkish ] = "NORMDIST";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_EXP_DIST
+ {
+ Text = "EXPONVERT" ;
+ Text [ english ] = "EXPONDIST" ;
+ Text [ norwegian ] = "EXPONDIST" ;
+ Text [ italian ] = "DISTRIB.EXP" ;
+ Text [ portuguese_brazilian ] = "EXPONDIST" ;
+ Text [ portuguese ] = "DIST.EXPON" ;
+ Text [ finnish ] = "EXPONDIST" ;
+ Text [ danish ] = "EKSPFORDELING" ;
+ Text [ french ] = "LOI.EXPONENTIELLE" ;
+ Text [ swedish ] = "EXPONFRD" ;
+ Text [ dutch ] = "EXPON.VERD" ;
+ Text [ spanish ] = "DISTR.EXP" ;
+ Text [ english_us ] = "EXPONDIST" ;
+ Text[ chinese_simplified ] = "EXPONDIST";
+ Text[ russian ] = "";
+ Text[ polish ] = "ROZKAD.EXP";
+ Text[ japanese ] = "EXPONDIST";
+ Text[ chinese_traditional ] = "EXPONDIST";
+ Text[ arabic ] = "EXPONDIST";
+ Text[ dutch ] = "EXPON.VERD";
+ Text[ chinese_simplified ] = "EXPONDIST";
+ Text[ greek ] = "EXPONDIST";
+ Text[ korean ] = "EXPONDIST";
+ Text[ turkish ] = "EXPONDIST";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_BINOM_DIST
+ {
+ Text = "BINOMVERT" ;
+ Text [ english ] = "BINOMDIST" ;
+ Text [ norwegian ] = "BINOMDIST" ;
+ Text [ italian ] = "DISTRIB.BINOM" ;
+ Text [ portuguese_brazilian ] = "BINOMDIST" ;
+ Text [ portuguese ] = "DISTR.BINOM" ;
+ Text [ finnish ] = "BINOMDIST" ;
+ Text [ danish ] = "BINOMINALFORDELING" ;
+ Text [ french ] = "LOI.BINOMIALE" ;
+ Text [ swedish ] = "BINOMFRD" ;
+ Text [ dutch ] = "BINOMIALE.VERD" ;
+ Text [ spanish ] = "DISTR.BINOM" ;
+ Text [ english_us ] = "BINOMDIST" ;
+ Text[ chinese_simplified ] = "BINOMDIST";
+ Text[ russian ] = "";
+ Text[ polish ] = "ROZKAD.DWUM";
+ Text[ japanese ] = "BINOMDIST";
+ Text[ chinese_traditional ] = "BINOMDIST";
+ Text[ arabic ] = "BINOMDIST";
+ Text[ dutch ] = "BINOMIALE.VERD";
+ Text[ chinese_simplified ] = "BINOMDIST";
+ Text[ greek ] = "BINOMDIST";
+ Text[ korean ] = "BINOMDIST";
+ Text[ turkish ] = "BINOMDIST";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_POISSON_DIST
+ {
+ Text = "POISSON" ;
+ Text [ english ] = "POISSON" ;
+ Text [ norwegian ] = "POISSON" ;
+ Text [ italian ] = "POISSON" ;
+ Text [ portuguese_brazilian ] = "POISSON" ;
+ Text [ portuguese ] = "POISSON" ;
+ Text [ finnish ] = "POISSON" ;
+ Text [ danish ] = "POISSON" ;
+ Text [ french ] = "LOI.POISSON" ;
+ Text [ swedish ] = "POISSON" ;
+ Text [ dutch ] = "POISSON" ;
+ Text [ spanish ] = "POISSON" ;
+ Text [ english_us ] = "POISSON" ;
+ Text[ chinese_simplified ] = "POISSON";
+ Text[ russian ] = "";
+ Text[ polish ] = "ROZKAD.POISSON";
+ Text[ japanese ] = "POISSON";
+ Text[ chinese_traditional ] = "POISSON";
+ Text[ arabic ] = "POISSON";
+ Text[ dutch ] = "POISSON";
+ Text[ chinese_simplified ] = "POISSON";
+ Text[ greek ] = "POISSON";
+ Text[ korean ] = "POISSON";
+ Text[ turkish ] = "POISSON";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_KOMBIN
+ {
+ Text = "KOMBINATIONEN" ;
+ Text [ english ] = "COMBIN" ;
+ Text [ norwegian ] = "COMBIN" ;
+ Text [ italian ] = "COMBINAZIONE" ;
+ Text [ portuguese_brazilian ] = "COMBIN" ;
+ Text [ portuguese ] = "COMBIN" ;
+ Text [ finnish ] = "COMBIN" ;
+ Text [ danish ] = "KOMBIN" ;
+ Text [ french ] = "COMBIN" ;
+ Text [ swedish ] = "KOMBIN" ;
+ Text [ dutch ] = "COMBINATIES" ;
+ Text [ spanish ] = "COMBINAR" ;
+ Text [ english_us ] = "COMBIN" ;
+ Text[ chinese_simplified ] = "COMBIN";
+ Text[ russian ] = "";
+ Text[ polish ] = "KOMBINACJE";
+ Text[ japanese ] = "COMBIN";
+ Text[ chinese_traditional ] = "COMBIN";
+ Text[ arabic ] = "COMBIN";
+ Text[ dutch ] = "COMBINATIES";
+ Text[ chinese_simplified ] = "COMBIN";
+ Text[ greek ] = "COMBIN";
+ Text[ korean ] = "COMBIN";
+ Text[ turkish ] = "COMBIN";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_KOMBIN_2
+ {
+ Text = "KOMBINATIONEN2" ;
+ Text [ english ] = "COMBINA" ;
+ Text [ norwegian ] = "COMBINA" ;
+ Text [ italian ] = "COMBINA" ;
+ Text [ portuguese_brazilian ] = "COMBINA" ;
+ Text [ portuguese ] = "COMBIN2" ;
+ Text [ finnish ] = "COMBINA" ;
+ Text [ danish ] = "KOMBIN2" ;
+ Text [ french ] = "COMBINA" ;
+ Text [ swedish ] = "KOMBIN2" ;
+ Text [ dutch ] = "COMBINATIES2" ;
+ Text [ spanish ] = "COMBINAR2" ;
+ Text [ english_us ] = "COMBINA" ;
+ Text[ chinese_simplified ] = "COMBINA";
+ Text[ russian ] = "2";
+ Text[ polish ] = "KOMBINACJE2";
+ Text[ japanese ] = "COMBINA";
+ Text[ chinese_traditional ] = "COMBINA";
+ Text[ arabic ] = "COMBINA";
+ Text[ dutch ] = "COMBINATIES2";
+ Text[ chinese_simplified ] = "COMBINA";
+ Text[ greek ] = "COMBINA";
+ Text[ korean ] = "COMBINA";
+ Text[ turkish ] = "COMBINA";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_VARIATIONEN
+ {
+ Text = "VARIATIONEN" ;
+ Text [ english ] = "PERMUT" ;
+ Text [ norwegian ] = "PERMUT" ;
+ Text [ italian ] = "PERMUTAZIONE" ;
+ Text [ portuguese_brazilian ] = "PERMUT" ;
+ Text [ portuguese ] = "PERMUTAO" ;
+ Text [ finnish ] = "PERMUT" ;
+ Text [ danish ] = "PERMUT" ;
+ Text [ french ] = "PERMUTATION" ;
+ Text [ swedish ] = "PERMUT" ;
+ Text [ dutch ] = "PERMUTATIES" ;
+ Text [ spanish ] = "PERMUTACIONES" ;
+ Text [ english_us ] = "PERMUT" ;
+ Text[ chinese_simplified ] = "PERMUT";
+ Text[ russian ] = "";
+ Text[ polish ] = "PERMUTACJE";
+ Text[ japanese ] = "PERMUT";
+ Text[ chinese_traditional ] = "PERMUT";
+ Text[ arabic ] = "PERMUT";
+ Text[ dutch ] = "PERMUTATIES";
+ Text[ chinese_simplified ] = "PERMUT";
+ Text[ greek ] = "PERMUT";
+ Text[ korean ] = "PERMUT";
+ Text[ turkish ] = "PERMUT";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_VARIATIONEN_2
+ {
+ Text = "VARIATIONEN2" ;
+ Text [ english ] = "PERMUTATIONA" ;
+ Text [ norwegian ] = "PERMUTA" ;
+ Text [ italian ] = "PERMUTATIONA" ;
+ Text [ portuguese_brazilian ] = "PERMUTA" ;
+ Text [ portuguese ] = "COMBIN" ;
+ Text [ finnish ] = "PERMUTA" ;
+ Text [ danish ] = "PERMUT2" ;
+ Text [ french ] = "PERMUTATIONA" ;
+ Text [ swedish ] = "PERMUT2" ;
+ Text [ dutch ] = "PERMUTATIES2" ;
+ Text [ spanish ] = "PERMUTACIONESA" ;
+ Text [ english_us ] = "PERMUTATIONA" ;
+ Text[ chinese_simplified ] = "PERMUTATIONA";
+ Text[ russian ] = "2";
+ Text[ polish ] = "PERMUTACJE2";
+ Text[ japanese ] = "PERMUTATIONA";
+ Text[ chinese_traditional ] = "PERMUTATIONA";
+ Text[ arabic ] = "PERMUTATIONA";
+ Text[ dutch ] = "PERMUTATIES2";
+ Text[ chinese_simplified ] = "PERMUTATIONA";
+ Text[ greek ] = "PERMUTATIONA";
+ Text[ korean ] = "PERMUTATIONA";
+ Text[ turkish ] = "PERMUTATIONA";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_BW
+ {
+ Text = "BW" ;
+ Text [ english ] = "PV" ;
+ Text [ norwegian ] = "PV" ;
+ Text [ italian ] = "VA" ;
+ Text [ portuguese_brazilian ] = "PV" ;
+ Text [ portuguese ] = "VA" ;
+ Text [ finnish ] = "PV" ;
+ Text [ danish ] = "NV" ;
+ Text [ french ] = "VA" ;
+ Text [ swedish ] = "NUVRDE" ;
+ Text [ dutch ] = "HW" ;
+ Text [ spanish ] = "VA" ;
+ Text [ english_us ] = "PV" ;
+ Text[ chinese_simplified ] = "PV";
+ Text[ russian ] = "";
+ Text[ polish ] = "PV";
+ Text[ japanese ] = "PV";
+ Text[ chinese_traditional ] = "PV";
+ Text[ arabic ] = "PV";
+ Text[ dutch ] = "HW";
+ Text[ chinese_simplified ] = "PV";
+ Text[ greek ] = "PV";
+ Text[ korean ] = "PV";
+ Text[ turkish ] = "PV";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_DIA
+ {
+ Text = "DIA" ;
+ Text [ english ] = "SYD" ;
+ Text [ norwegian ] = "SYD" ;
+ Text [ italian ] = "AMMORT.ANNUO" ;
+ Text [ portuguese_brazilian ] = "SDA" ;
+ Text [ portuguese ] = "SYD" ;
+ Text [ finnish ] = "SYD" ;
+ Text [ danish ] = "RSAFSKRIVNING" ;
+ Text [ french ] = "SYD" ;
+ Text [ swedish ] = "RSAVSKR" ;
+ Text [ dutch ] = "SYD" ;
+ Text [ spanish ] = "SYD" ;
+ Text [ english_us ] = "SYD" ;
+ Text[ chinese_simplified ] = "SYD";
+ Text[ russian ] = "";
+ Text[ polish ] = "SYD";
+ Text[ japanese ] = "SYD";
+ Text[ chinese_traditional ] = "SYD";
+ Text[ arabic ] = "SYD";
+ Text[ dutch ] = "SYD";
+ Text[ chinese_simplified ] = "SYD";
+ Text[ greek ] = "SYD";
+ Text[ korean ] = "SYD";
+ Text[ turkish ] = "SYD";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_GDA
+ {
+ Text = "GDA" ;
+ Text [ english ] = "DDB" ;
+ Text [ norwegian ] = "DDB" ;
+ Text [ italian ] = "AMMORT" ;
+ Text [ portuguese_brazilian ] = "BDD" ;
+ Text [ portuguese ] = "BDD" ;
+ Text [ finnish ] = "DDB" ;
+ Text [ danish ] = "DSA" ;
+ Text [ french ] = "DDB" ;
+ Text [ swedish ] = "DEGAVSKR" ;
+ Text [ dutch ] = "DDB" ;
+ Text [ spanish ] = "DDB" ;
+ Text [ english_us ] = "DDB" ;
+ Text[ chinese_simplified ] = "DDB";
+ Text[ russian ] = "";
+ Text[ polish ] = "DDB";
+ Text[ japanese ] = "DDB";
+ Text[ chinese_traditional ] = "DDB";
+ Text[ arabic ] = "DDB";
+ Text[ dutch ] = "DDB";
+ Text[ chinese_simplified ] = "DDB";
+ Text[ greek ] = "DDB";
+ Text[ korean ] = "DDB";
+ Text[ turkish ] = "DDB";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_GDA_2
+ {
+ Text = "GDA2" ;
+ Text [ english ] = "DB" ;
+ Text [ norwegian ] = "DB" ;
+ Text [ italian ] = "AMMORT.FISSO" ;
+ Text [ portuguese_brazilian ] = "BD" ;
+ Text [ portuguese ] = "BD" ;
+ Text [ finnish ] = "DB" ;
+ Text [ danish ] = "DB" ;
+ Text [ french ] = "DB" ;
+ Text [ swedish ] = "DB" ;
+ Text [ dutch ] = "DB" ;
+ Text [ spanish ] = "DB" ;
+ Text [ english_us ] = "DB" ;
+ Text[ chinese_simplified ] = "DB";
+ Text[ russian ] = "";
+ Text[ polish ] = "DB";
+ Text[ japanese ] = "DB";
+ Text[ chinese_traditional ] = "DB";
+ Text[ arabic ] = "DB";
+ Text[ dutch ] = "DB";
+ Text[ chinese_simplified ] = "DB";
+ Text[ greek ] = "DB";
+ Text[ korean ] = "DB";
+ Text[ turkish ] = "DB";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_VBD
+ {
+ Text = "VDB" ;
+ Text [ english ] = "VDB" ;
+ Text [ norwegian ] = "VDB" ;
+ Text [ italian ] = "AMMORT.VAR" ;
+ Text [ portuguese_brazilian ] = "BDV" ;
+ Text [ portuguese ] = "BDV" ;
+ Text [ finnish ] = "VDB" ;
+ Text [ danish ] = "VSA" ;
+ Text [ french ] = "VDB" ;
+ Text [ swedish ] = "VDEGAVSKR" ;
+ Text [ dutch ] = "VDB" ;
+ Text [ spanish ] = "DVS" ;
+ Text [ english_us ] = "VDB" ;
+ Text[ chinese_simplified ] = "VDB";
+ Text[ russian ] = "";
+ Text[ polish ] = "VDB";
+ Text[ japanese ] = "VDB";
+ Text[ chinese_traditional ] = "VDB";
+ Text[ arabic ] = "VDB";
+ Text[ dutch ] = "VDB";
+ Text[ chinese_simplified ] = "VDB";
+ Text[ greek ] = "VDB";
+ Text[ korean ] = "VDB";
+ Text[ turkish ] = "VDB";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_LAUFZ
+ {
+ Text = "LAUFZEIT" ;
+ Text [ english ] = "DURATION" ;
+ Text [ norwegian ] = "VARIGHET" ;
+ Text [ italian ] = "DURATA" ;
+ Text [ portuguese_brazilian ] = "DURATION" ;
+ Text [ portuguese ] = "DURAO" ;
+ Text [ finnish ] = "DURATION" ;
+ Text [ danish ] = "VARIGHED" ;
+ Text [ french ] = "DUREE" ;
+ Text [ swedish ] = "LPTID" ;
+ Text [ dutch ] = "DUUR" ;
+ Text [ spanish ] = "PLAZO" ;
+ Text [ english_us ] = "DURATION" ;
+ Text[ chinese_simplified ] = "DURATION";
+ Text[ russian ] = "";
+ Text[ polish ] = "CZAS TRWANIA";
+ Text[ japanese ] = "DURATION";
+ Text[ chinese_traditional ] = "DURATION";
+ Text[ arabic ] = "DURATION";
+ Text[ dutch ] = "DUUR";
+ Text[ chinese_simplified ] = "DURATION";
+ Text[ greek ] = "DURATION";
+ Text[ korean ] = "DURATION";
+ Text[ turkish ] = "DURATION";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_LIA
+ {
+ Text = "LIA" ;
+ Text [ english ] = "SLN" ;
+ Text [ norwegian ] = "SLN" ;
+ Text [ italian ] = "AMMORT.COST" ;
+ Text [ portuguese_brazilian ] = "DPD" ;
+ Text [ portuguese ] = "AMORLINC" ;
+ Text [ finnish ] = "SLN" ;
+ Text [ danish ] = "LA" ;
+ Text [ french ] = "AMORLIN" ;
+ Text [ swedish ] = "LINAVSKR" ;
+ Text [ dutch ] = "LIN.AFSCHR" ;
+ Text [ spanish ] = "SLN" ;
+ Text [ english_us ] = "SLN" ;
+ Text[ chinese_simplified ] = "SLN";
+ Text[ russian ] = "";
+ Text[ polish ] = "SLN";
+ Text[ japanese ] = "SLN";
+ Text[ chinese_traditional ] = "SLN";
+ Text[ arabic ] = "SLN";
+ Text[ dutch ] = "LIN.AFSCHR";
+ Text[ chinese_simplified ] = "SLN";
+ Text[ greek ] = "SLN";
+ Text[ korean ] = "SLN";
+ Text[ turkish ] = "SLN";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_RMZ
+ {
+ Text = "RMZ" ;
+ Text [ english ] = "PMT" ;
+ Text [ norwegian ] = "PMT" ;
+ Text [ italian ] = "RATA" ;
+ Text [ portuguese_brazilian ] = "PGTO" ;
+ Text [ portuguese ] = "PGTO" ;
+ Text [ finnish ] = "PMT" ;
+ Text [ danish ] = "YDELSE" ;
+ Text [ french ] = "VPM" ;
+ Text [ swedish ] = "BETALNING" ;
+ Text [ dutch ] = "RMB" ;
+ Text [ spanish ] = "PAGO" ;
+ Text [ english_us ] = "PMT" ;
+ Text[ chinese_simplified ] = "PMT";
+ Text[ russian ] = "";
+ Text[ polish ] = "PMT";
+ Text[ japanese ] = "PMT";
+ Text[ chinese_traditional ] = "PMT";
+ Text[ arabic ] = "PMT";
+ Text[ dutch ] = "RMB";
+ Text[ chinese_simplified ] = "PMT";
+ Text[ greek ] = "PMT";
+ Text[ korean ] = "PMT";
+ Text[ turkish ] = "PMT";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_COLUMNS
+ {
+ Text = "SPALTEN" ;
+ Text [ english ] = "COLUMNS" ;
+ Text [ norwegian ] = "KOLONNER" ;
+ Text [ italian ] = "COLONNE" ;
+ Text [ portuguese_brazilian ] = "COLUNAS" ;
+ Text [ portuguese ] = "COLUNAS" ;
+ Text [ finnish ] = "COLUMNS" ;
+ Text [ danish ] = "KOLONNER" ;
+ Text [ french ] = "COLONNES" ;
+ Text [ swedish ] = "KOLUMNER" ;
+ Text [ dutch ] = "KOLOMMEN" ;
+ Text [ spanish ] = "COLUMNAS" ;
+ Text [ english_us ] = "COLUMNS" ;
+ Text[ chinese_simplified ] = "COLUMNS";
+ Text[ russian ] = "";
+ Text[ polish ] = "KOLUMNY";
+ Text[ japanese ] = "COLUMNS";
+ Text[ chinese_traditional ] = "COLUMNS";
+ Text[ arabic ] = "COLUMNS";
+ Text[ dutch ] = "KOLOMMEN";
+ Text[ chinese_simplified ] = "COLUMNS";
+ Text[ greek ] = "COLUMNS";
+ Text[ korean ] = "COLUMNS";
+ Text[ turkish ] = "COLUMNS";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_ROWS
+ {
+ Text = "ZEILEN" ;
+ Text [ english ] = "ROWS" ;
+ Text [ norwegian ] = "RADER" ;
+ Text [ italian ] = "RIGHE" ;
+ Text [ portuguese_brazilian ] = "LINHAS" ;
+ Text [ portuguese ] = "LINHAS" ;
+ Text [ finnish ] = "ROWS" ;
+ Text [ danish ] = "RKKER" ;
+ Text [ french ] = "LIGNES" ;
+ Text [ swedish ] = "RADER" ;
+ Text [ dutch ] = "RIJEN" ;
+ Text [ spanish ] = "FILAS" ;
+ Text [ english_us ] = "ROWS" ;
+ Text[ chinese_simplified ] = "ROWS";
+ Text[ russian ] = "";
+ Text[ polish ] = "WIERSZE";
+ Text[ japanese ] = "ROWS";
+ Text[ chinese_traditional ] = "ROWS";
+ Text[ arabic ] = "ROWS";
+ Text[ dutch ] = "RIJEN";
+ Text[ chinese_simplified ] = "ROWS";
+ Text[ greek ] = "ROWS";
+ Text[ korean ] = "ROWS";
+ Text[ turkish ] = "ROWS";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_TABLES
+ {
+ Text = "TABELLEN" ;
+ Text [ english ] = "SHEETS" ;
+ Text [ portuguese ] = "FOLHAS" ;
+ Text [ english_us ] = "SHEETS" ;
+ Text [ portuguese_brazilian ] = "TABELLEN" ;
+ Text [ swedish ] = "TABELLER" ;
+ Text [ danish ] = "TABELLER" ;
+ Text [ italian ] = "TABELLE" ;
+ Text [ spanish ] = "HOJAS" ;
+ Text [ french ] = "FEUILLES" ;
+ Text [ dutch ] = "TABELLEN" ;
+ Text[ chinese_simplified ] = "SHEETS";
+ Text[ russian ] = "";
+ Text[ polish ] = "ARKUSZE";
+ Text[ japanese ] = "SHEETS";
+ Text[ chinese_traditional ] = "SHEETS";
+ Text[ arabic ] = "SHEETS";
+ Text[ dutch ] = "TABELLEN";
+ Text[ chinese_simplified ] = "SHEETS";
+ Text[ greek ] = "SHEETS";
+ Text[ korean ] = "SHEETS";
+ Text[ turkish ] = "SHEETS";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_COLUMN
+ {
+ Text = "SPALTE" ;
+ Text [ english ] = "COLUMN" ;
+ Text [ norwegian ] = "KOLONNE" ;
+ Text [ italian ] = "RIF.COLONNA" ;
+ Text [ portuguese_brazilian ] = "COLUNA" ;
+ Text [ portuguese ] = "COLUNA" ;
+ Text [ finnish ] = "COLUMN" ;
+ Text [ danish ] = "KOLONNE" ;
+ Text [ french ] = "COLONNE" ;
+ Text [ swedish ] = "KOLUMN" ;
+ Text [ dutch ] = "KOLOM" ;
+ Text [ spanish ] = "COLUMNA" ;
+ Text [ english_us ] = "COLUMN" ;
+ Text[ chinese_simplified ] = "COLUMN";
+ Text[ russian ] = "";
+ Text[ polish ] = "KOLUMNA";
+ Text[ japanese ] = "COLUMN";
+ Text[ chinese_traditional ] = "COLUMN";
+ Text[ arabic ] = "COLUMN";
+ Text[ dutch ] = "KOLOM";
+ Text[ chinese_simplified ] = "COLUMN";
+ Text[ greek ] = "COLUMN";
+ Text[ korean ] = "COLUMN";
+ Text[ turkish ] = "COLUMN";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_ROW
+ {
+ Text = "ZEILE" ;
+ Text [ english ] = "ROW" ;
+ Text [ norwegian ] = "RAD" ;
+ Text [ italian ] = "RIF.RIGA" ;
+ Text [ portuguese_brazilian ] = "LINHA" ;
+ Text [ portuguese ] = "LINHA" ;
+ Text [ finnish ] = "ROW" ;
+ Text [ danish ] = "RKKE" ;
+ Text [ french ] = "LIGNE" ;
+ Text [ swedish ] = "RAD" ;
+ Text [ dutch ] = "RIJ" ;
+ Text [ spanish ] = "FILA" ;
+ Text [ english_us ] = "ROW" ;
+ Text[ chinese_simplified ] = "ROW";
+ Text[ russian ] = "";
+ Text[ polish ] = "WIERSZ";
+ Text[ japanese ] = "ROW";
+ Text[ chinese_traditional ] = "ROW";
+ Text[ arabic ] = "ROW";
+ Text[ dutch ] = "RIJ";
+ Text[ chinese_simplified ] = "ROW";
+ Text[ greek ] = "ROW";
+ Text[ korean ] = "ROW";
+ Text[ turkish ] = "ROW";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_TABLE
+ {
+ Text = "TABELLE" ;
+ Text [ english ] = "SHEET" ;
+ Text [ portuguese ] = "FOLHA" ;
+ Text [ english_us ] = "SHEET" ;
+ Text [ portuguese_brazilian ] = "TABELLE" ;
+ Text [ swedish ] = "TABELL" ;
+ Text [ danish ] = "TABEL" ;
+ Text [ italian ] = "TABELLA" ;
+ Text [ spanish ] = "HOJA" ;
+ Text [ french ] = "FEUILLE" ;
+ Text [ dutch ] = "TABEL" ;
+ Text[ chinese_simplified ] = "SHEET";
+ Text[ russian ] = "";
+ Text[ polish ] = "ARKUSZ";
+ Text[ japanese ] = "SHEET";
+ Text[ chinese_traditional ] = "SHEET";
+ Text[ arabic ] = "SHEET";
+ Text[ dutch ] = "TABEL";
+ Text[ chinese_simplified ] = "SHEET";
+ Text[ greek ] = "SHEET";
+ Text[ korean ] = "SHEET";
+ Text[ turkish ] = "SHEET";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_ZGZ
+ {
+ Text = "ZGZ" ;
+ Text [ english ] = "ZGZ" ;
+ Text [ portuguese ] = "ZGZ" ;
+ Text [ english_us ] = "RRI" ;
+ Text [ portuguese_brazilian ] = "ZGZ" ;
+ Text [ swedish ] = "ZGZ" ;
+ Text [ danish ] = "RRI" ;
+ Text [ italian ] = "ZGZ" ;
+ Text [ spanish ] = "ZGZ" ;
+ Text [ french ] = "RENTINVEST" ;
+ Text [ dutch ] = "ZGZ" ;
+ Text[ chinese_simplified ] = "ZGZ";
+ Text[ russian ] = "";
+ Text[ polish ] = "ZGZ";
+ Text[ japanese ] = "ZGZ";
+ Text[ chinese_traditional ] = "ZGZ";
+ Text[ arabic ] = "ZGZ";
+ Text[ dutch ] = "ZGZ";
+ Text[ chinese_simplified ] = "ZGZ";
+ Text[ greek ] = "ZGZ";
+ Text[ korean ] = "ZGZ";
+ Text[ turkish ] = "ZGZ";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_ZW
+ {
+ Text = "ZW" ;
+ Text [ english ] = "FV" ;
+ Text [ norwegian ] = "FV" ;
+ Text [ italian ] = "VAL.FUT" ;
+ Text [ portuguese_brazilian ] = "VF" ;
+ Text [ portuguese ] = "VF" ;
+ Text [ finnish ] = "FV" ;
+ Text [ danish ] = "FV" ;
+ Text [ french ] = "VC" ;
+ Text [ swedish ] = "SLUTVRDE" ;
+ Text [ dutch ] = "TW" ;
+ Text [ spanish ] = "VF" ;
+ Text [ english_us ] = "FV" ;
+ Text[ chinese_simplified ] = "FV";
+ Text[ russian ] = "";
+ Text[ polish ] = "FV";
+ Text[ japanese ] = "FV";
+ Text[ chinese_traditional ] = "FV";
+ Text[ arabic ] = "FV";
+ Text[ dutch ] = "TW";
+ Text[ chinese_simplified ] = "FV";
+ Text[ greek ] = "FV";
+ Text[ korean ] = "FV";
+ Text[ turkish ] = "FV";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_ZZR
+ {
+ Text = "ZZR" ;
+ Text [ english ] = "NPER" ;
+ Text [ norwegian ] = "NPER" ;
+ Text [ italian ] = "NUM.RATE" ;
+ Text [ portuguese_brazilian ] = "NPER" ;
+ Text [ portuguese ] = "NPER" ;
+ Text [ finnish ] = "NPER" ;
+ Text [ danish ] = "NPER" ;
+ Text [ french ] = "NPM" ;
+ Text [ swedish ] = "PERIODER" ;
+ Text [ dutch ] = "NPER" ;
+ Text [ spanish ] = "NPER" ;
+ Text [ english_us ] = "NPER" ;
+ Text[ chinese_simplified ] = "NPER";
+ Text[ russian ] = "";
+ Text[ polish ] = "LICZBA_RAT";
+ Text[ japanese ] = "NPER";
+ Text[ chinese_traditional ] = "NPER";
+ Text[ arabic ] = "NPER";
+ Text[ dutch ] = "NPER";
+ Text[ chinese_simplified ] = "NPER";
+ Text[ greek ] = "NPER";
+ Text[ korean ] = "NPER";
+ Text[ turkish ] = "NPER";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_ZINS
+ {
+ Text = "ZINS" ;
+ Text [ english ] = "RATE" ;
+ Text [ norwegian ] = "RATE" ;
+ Text [ italian ] = "TASSO" ;
+ Text [ portuguese_brazilian ] = "TAXA" ;
+ Text [ portuguese ] = "TAXA" ;
+ Text [ finnish ] = "RATE" ;
+ Text [ danish ] = "RENTE" ;
+ Text [ french ] = "TAUX" ;
+ Text [ swedish ] = "RNTA" ;
+ Text [ dutch ] = "RENTE" ;
+ Text [ spanish ] = "TASA" ;
+ Text [ english_us ] = "RATE" ;
+ Text[ chinese_simplified ] = "RATE";
+ Text[ russian ] = "";
+ Text[ polish ] = "RATE";
+ Text[ japanese ] = "RATE";
+ Text[ chinese_traditional ] = "RATE";
+ Text[ arabic ] = "RATE";
+ Text[ dutch ] = "RENTE";
+ Text[ chinese_simplified ] = "RATE";
+ Text[ greek ] = "RATE";
+ Text[ korean ] = "RATE";
+ Text[ turkish ] = "RATE";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_ZINS_Z
+ {
+ Text = "ZINSZ" ;
+ Text [ english ] = "IPMT" ;
+ Text [ norwegian ] = "PPMT" ;
+ Text [ italian ] = "P.RATA" ;
+ Text [ portuguese_brazilian ] = "PPGTO" ;
+ Text [ portuguese ] = "PPGTO" ;
+ Text [ finnish ] = "PPMT" ;
+ Text [ danish ] = "R.YDELSE" ;
+ Text [ french ] = "INTPER" ;
+ Text [ swedish ] = "RBETALNING" ;
+ Text [ dutch ] = "IBET" ;
+ Text [ spanish ] = "PAGOINT" ;
+ Text [ english_us ] = "IPMT" ;
+ Text[ chinese_simplified ] = "IPMT";
+ Text[ russian ] = "";
+ Text[ polish ] = "PPMT";
+ Text[ japanese ] = "IPMT";
+ Text[ chinese_traditional ] = "IPMT";
+ Text[ arabic ] = "IPMT";
+ Text[ dutch ] = "IBET";
+ Text[ chinese_simplified ] = "IPMT";
+ Text[ greek ] = "IPMT";
+ Text[ korean ] = "IPMT";
+ Text[ turkish ] = "IPMT";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_KAPZ
+ {
+ Text = "KAPZ" ;
+ Text [ english ] = "PPMT" ;
+ Text [ norwegian ] = "IPMT" ;
+ Text [ italian ] = "INTERESSI" ;
+ Text [ portuguese_brazilian ] = "IPGTO" ;
+ Text [ portuguese ] = "IPGTO" ;
+ Text [ finnish ] = "IPMT" ;
+ Text [ danish ] = "H.YDELSE" ;
+ Text [ french ] = "PRINCPER" ;
+ Text [ swedish ] = "AMORT" ;
+ Text [ dutch ] = "PBET" ;
+ Text [ spanish ] = "AMORTIZACION" ;
+ Text [ english_us ] = "PPMT" ;
+ Text[ chinese_simplified ] = "PPMT";
+ Text[ russian ] = "";
+ Text[ polish ] = "IPMT";
+ Text[ japanese ] = "PPMT";
+ Text[ chinese_traditional ] = "PPMT";
+ Text[ arabic ] = "PPMT";
+ Text[ dutch ] = "PBET";
+ Text[ chinese_simplified ] = "PPMT";
+ Text[ greek ] = "PPMT";
+ Text[ korean ] = "PPMT";
+ Text[ turkish ] = "PPMT";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_KUM_ZINS_Z
+ {
+ Text = "KUMZINSZ" ;
+ Text [ english ] = "CUMIPMT" ;
+ Text [ norwegian ] = "CUMPPMT" ;
+ Text [ italian ] = "INT.CUMUL" ;
+ Text [ portuguese_brazilian ] = "CUMPPMT" ;
+ Text [ portuguese ] = "PGTO.JUR.ACUM" ;
+ Text [ finnish ] = "CUMPPMT" ;
+ Text [ danish ] = "AKKUM.RENTE" ;
+ Text [ french ] = "CUMUL.INTER" ;
+ Text [ swedish ] = "KUMRNTA" ;
+ Text [ dutch ] = "CUM.RENTE" ;
+ Text [ spanish ] = "PAGO.INT.ENTRE" ;
+ Text [ english_us ] = "CUMIPMT" ;
+ Text[ chinese_simplified ] = "CUMIPMT";
+ Text[ russian ] = "";
+ Text[ polish ] = "CUMIPMT";
+ Text[ japanese ] = "CUMIPMT";
+ Text[ chinese_traditional ] = "CUMIPMT";
+ Text[ arabic ] = "CUMIPMT";
+ Text[ dutch ] = "CUM.RENTE";
+ Text[ chinese_simplified ] = "CUMIPMT";
+ Text[ greek ] = "CUMIPMT";
+ Text[ korean ] = "CUMIPMT";
+ Text[ turkish ] = "CUMIPMT";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_KUM_KAP_Z
+ {
+ Text = "KUMKAPITAL" ;
+ Text [ english ] = "CUMPRINC" ;
+ Text [ norwegian ] = "CUMIPMT" ;
+ Text [ italian ] = "CAP.CUM" ;
+ Text [ portuguese_brazilian ] = "CUMIPMT" ;
+ Text [ portuguese ] = "PGTO.CAP.ACUM" ;
+ Text [ finnish ] = "CUMIPMT" ;
+ Text [ danish ] = "AKKUM.HOVEDSTOL" ;
+ Text [ french ] = "CUMUL.PRINCPER" ;
+ Text [ swedish ] = "KUMKAPITAL" ;
+ Text [ dutch ] = "CUM.HOOFDSOM" ;
+ Text [ spanish ] = "PAGO.PRINC.ENTRE" ;
+ Text [ english_us ] = "CUMPRINC" ;
+ Text[ chinese_simplified ] = "CUMPRINC";
+ Text[ russian ] = "";
+ Text[ polish ] = "CUMIPMT";
+ Text[ japanese ] = "CUMPRINC";
+ Text[ chinese_traditional ] = "CUMPRINC";
+ Text[ arabic ] = "CUMPRINC";
+ Text[ dutch ] = "CUM.HOOFDSOM";
+ Text[ chinese_simplified ] = "CUMPRINC";
+ Text[ greek ] = "CUMPRINC";
+ Text[ korean ] = "CUMPRINC";
+ Text[ turkish ] = "CUMPRINC";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_EFFEKTIV
+ {
+ Text = "EFFEKTIV" ;
+ Text [ english ] = "EFFECTIVE" ;
+ Text [ norwegian ] = "EFFEKTIV" ;
+ Text [ italian ] = "EFFETTIVO" ;
+ Text [ portuguese_brazilian ] = "EFETIVO" ;
+ Text [ portuguese ] = "EFECTIVA" ;
+ Text [ finnish ] = "EFFECTIVE" ;
+ Text [ danish ] = "EFFEKTIV" ;
+ Text [ french ] = "EFFECTIF" ;
+ Text [ swedish ] = "EFFEKTIV" ;
+ Text [ dutch ] = "EFFECT.RENTE" ;
+ Text [ spanish ] = "INT.EFECTIVO" ;
+ Text [ english_us ] = "EFFECTIVE" ;
+ Text[ chinese_simplified ] = "EFFECTIVE";
+ Text[ russian ] = "";
+ Text[ polish ] = "EFEKTYWNY";
+ Text[ japanese ] = "EFFECTIVE";
+ Text[ chinese_traditional ] = "EFFECTIVE";
+ Text[ arabic ] = "EFFECTIVE";
+ Text[ dutch ] = "EFFECT.RENTE";
+ Text[ chinese_simplified ] = "EFFECTIVE";
+ Text[ greek ] = "EFFECTIVE";
+ Text[ korean ] = "EFFECTIVE";
+ Text[ turkish ] = "EFFECTIVE";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_NOMINAL
+ {
+ Text = "NOMINAL" ;
+ Text [ english ] = "NOMINAL" ;
+ Text [ norwegian ] = "NOMINELL" ;
+ Text [ italian ] = "NOMINALE" ;
+ Text [ portuguese_brazilian ] = "NOMINAL" ;
+ Text [ portuguese ] = "NOMINAL" ;
+ Text [ finnish ] = "NOMINAL" ;
+ Text [ danish ] = "NOMINEL" ;
+ Text [ french ] = "NOMINAL" ;
+ Text [ swedish ] = "NOMINAL" ;
+ Text [ dutch ] = "NOMINALE.RENTE" ;
+ Text [ spanish ] = "TASA.NOMINAL" ;
+ Text [ english_us ] = "NOMINAL" ;
+ Text[ chinese_simplified ] = "NOMINAL";
+ Text[ russian ] = "";
+ Text[ polish ] = "NOMINALNY";
+ Text[ japanese ] = "NOMINAL";
+ Text[ chinese_traditional ] = "NOMINAL";
+ Text[ arabic ] = "NOMINAL";
+ Text[ dutch ] = "NOMINALE.RENTE";
+ Text[ chinese_simplified ] = "NOMINAL";
+ Text[ greek ] = "NOMINAL";
+ Text[ korean ] = "NOMINAL";
+ Text[ turkish ] = "NOMINAL";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_SUB_TOTAL
+ {
+ Text = "TEILERGEBNIS" ;
+ Text [ english ] = "SUBTOTAL" ;
+ Text [ norwegian ] = "SUM" ;
+ Text [ italian ] = "SUBTOTALE" ;
+ Text [ portuguese_brazilian ] = "SUBTOTAL" ;
+ Text [ portuguese ] = "SUBTOTAL" ;
+ Text [ finnish ] = "SUBTOTAL" ;
+ Text [ danish ] = "SUBTOTAL" ;
+ Text [ french ] = "SOUS.TOTAL" ;
+ Text [ swedish ] = "DELRESULTAT" ;
+ Text [ dutch ] = "SUBTOTAAL" ;
+ Text [ spanish ] = "SUBTOTALES" ;
+ Text [ english_us ] = "SUBTOTAL" ;
+ Text[ chinese_simplified ] = "SUBTOTAL";
+ Text[ russian ] = "";
+ Text[ polish ] = "SUMY.POREDNIE";
+ Text[ japanese ] = "SUBTOTAL";
+ Text[ chinese_traditional ] = "SUBTOTAL";
+ Text[ arabic ] = "SUBTOTAL";
+ Text[ dutch ] = "SUBTOTAAL";
+ Text[ chinese_simplified ] = "SUBTOTAL";
+ Text[ greek ] = "SUBTOTAL";
+ Text[ korean ] = "SUBTOTAL";
+ Text[ turkish ] = "SUBTOTAL";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_DB_SUM
+ {
+ Text = "DBSUMME" ;
+ Text [ english ] = "DSUM" ;
+ Text [ norwegian ] = "DSUM" ;
+ Text [ italian ] = "DB.SOMMA" ;
+ Text [ portuguese_brazilian ] = "BDSOMA" ;
+ Text [ portuguese ] = "BDSOMA" ;
+ Text [ finnish ] = "DSUM" ;
+ Text [ danish ] = "DSUM" ;
+ Text [ french ] = "BDSOMME" ;
+ Text [ swedish ] = "DSUMMA" ;
+ Text [ dutch ] = "DBSOM" ;
+ Text [ spanish ] = "BDSUMA" ;
+ Text [ english_us ] = "DSUM" ;
+ Text[ chinese_simplified ] = "DSUM";
+ Text[ russian ] = "";
+ Text[ polish ] = "BD.SUMA";
+ Text[ japanese ] = "DSUM";
+ Text[ chinese_traditional ] = "DSUM";
+ Text[ arabic ] = "DSUM";
+ Text[ dutch ] = "DBSOM";
+ Text[ chinese_simplified ] = "DSUM";
+ Text[ greek ] = "DSUM";
+ Text[ korean ] = "DSUM";
+ Text[ turkish ] = "DSUM";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_DB_COUNT
+ {
+ Text = "DBANZAHL" ;
+ Text [ english ] = "DCOUNT" ;
+ Text [ norwegian ] = "DCOUNT" ;
+ Text [ italian ] = "DB.CONTA.NUMERI" ;
+ Text [ portuguese_brazilian ] = "BDCONTAR" ;
+ Text [ portuguese ] = "BDCONTAR" ;
+ Text [ finnish ] = "DCOUNT" ;
+ Text [ danish ] = "DTL" ;
+ Text [ french ] = "BDNB" ;
+ Text [ swedish ] = "DANTAL" ;
+ Text [ dutch ] = "DBAANTAL" ;
+ Text [ spanish ] = "BDCONTAR" ;
+ Text [ english_us ] = "DCOUNT" ;
+ Text[ chinese_simplified ] = "DCOUNT";
+ Text[ russian ] = "";
+ Text[ polish ] = "BD.ILE.REKORDW";
+ Text[ japanese ] = "DCOUNT";
+ Text[ chinese_traditional ] = "DCOUNT";
+ Text[ arabic ] = "DCOUNT";
+ Text[ dutch ] = "DBAANTAL";
+ Text[ chinese_simplified ] = "DCOUNT";
+ Text[ greek ] = "DCOUNT";
+ Text[ korean ] = "DCOUNT";
+ Text[ turkish ] = "DBCOUNT";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_DB_COUNT_2
+ {
+ Text = "DBANZAHL2" ;
+ Text [ english ] = "DCOUNTA" ;
+ Text [ norwegian ] = "DCOUNTA" ;
+ Text [ italian ] = "DB.CONTA.VALORI" ;
+ Text [ portuguese_brazilian ] = "DCONTAGEMA" ;
+ Text [ portuguese ] = "BDCONTAR.VAL" ;
+ Text [ finnish ] = "DCOUNTA" ;
+ Text [ danish ] = "DTLV" ;
+ Text [ french ] = "BDNBVAL" ;
+ Text [ swedish ] = "DANTALV" ;
+ Text [ dutch ] = "DBAANTALC" ;
+ Text [ spanish ] = "BDCONTARA" ;
+ Text [ english_us ] = "DCOUNTA" ;
+ Text[ chinese_simplified ] = "DCOUNTA";
+ Text[ russian ] = "2";
+ Text[ polish ] = "BD.ILE.REKORDW.A";
+ Text[ japanese ] = "DCOUNTA";
+ Text[ chinese_traditional ] = "DCOUNTA";
+ Text[ arabic ] = "DCOUNTA";
+ Text[ dutch ] = "DBAANTALC";
+ Text[ chinese_simplified ] = "DCOUNTA";
+ Text[ greek ] = "DCOUNTA";
+ Text[ korean ] = "DCOUNTA";
+ Text[ turkish ] = "DCOUNTA";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_DB_AVERAGE
+ {
+ Text = "DBMITTELWERT" ;
+ Text [ english ] = "DAVERAGE" ;
+ Text [ norwegian ] = "DAVERAGE" ;
+ Text [ italian ] = "DB.MEDIA" ;
+ Text [ portuguese_brazilian ] = "BDMDIA" ;
+ Text [ portuguese ] = "BDMDIA" ;
+ Text [ finnish ] = "DAVERAGE" ;
+ Text [ danish ] = "DMIDDEL" ;
+ Text [ french ] = "BDMOYENNE" ;
+ Text [ swedish ] = "DMEDEL" ;
+ Text [ dutch ] = "DBGEMIDDELDE" ;
+ Text [ spanish ] = "BDPROMEDIO" ;
+ Text [ english_us ] = "DAVERAGE" ;
+ Text[ chinese_simplified ] = "DAVERAGE";
+ Text[ russian ] = "";
+ Text[ polish ] = "BD.REDNIA";
+ Text[ japanese ] = "DAVERAGE";
+ Text[ chinese_traditional ] = "DAVERAGE";
+ Text[ arabic ] = "DAVERAGE";
+ Text[ dutch ] = "DBGEMIDDELDE";
+ Text[ chinese_simplified ] = "DAVERAGE";
+ Text[ greek ] = "DAVERAGE";
+ Text[ korean ] = "DAVERAGE";
+ Text[ turkish ] = "DAVERAGE";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_DB_GET
+ {
+ Text = "DBAUSZUG" ;
+ Text [ english ] = "DGET" ;
+ Text [ norwegian ] = "DGET" ;
+ Text [ italian ] = "DB.VALORI" ;
+ Text [ portuguese_brazilian ] = "BDEXTRAIR" ;
+ Text [ portuguese ] = "BDOBTER" ;
+ Text [ finnish ] = "DGET" ;
+ Text [ danish ] = "DHENT" ;
+ Text [ french ] = "BDLIRE" ;
+ Text [ swedish ] = "DHMTA" ;
+ Text [ dutch ] = "DBLEZEN" ;
+ Text [ spanish ] = "BDEXTRAER" ;
+ Text [ english_us ] = "DGET" ;
+ Text[ chinese_simplified ] = "DGET";
+ Text[ russian ] = "";
+ Text[ polish ] = "BD.POLE";
+ Text[ japanese ] = "DGET";
+ Text[ chinese_traditional ] = "DGET";
+ Text[ arabic ] = "DGET";
+ Text[ dutch ] = "DBLEZEN";
+ Text[ chinese_simplified ] = "DGET";
+ Text[ greek ] = "DGET";
+ Text[ korean ] = "DGET";
+ Text[ turkish ] = "DGET";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_DB_MAX
+ {
+ Text = "DBMAX" ;
+ Text [ english ] = "DMAX" ;
+ Text [ norwegian ] = "DMAX" ;
+ Text [ italian ] = "DB.MAX" ;
+ Text [ portuguese_brazilian ] = "BDMAX" ;
+ Text [ portuguese ] = "BDMX" ;
+ Text [ finnish ] = "DMAX" ;
+ Text [ danish ] = "DMAKS" ;
+ Text [ french ] = "BDMAX" ;
+ Text [ swedish ] = "DMAX" ;
+ Text [ dutch ] = "DBMAX" ;
+ Text [ spanish ] = "BDMAX" ;
+ Text [ english_us ] = "DMAX" ;
+ Text[ chinese_simplified ] = "DMAX";
+ Text[ russian ] = "";
+ Text[ polish ] = "BD.MAX";
+ Text[ japanese ] = "DMAX";
+ Text[ chinese_traditional ] = "DMAX";
+ Text[ arabic ] = "DMAX";
+ Text[ dutch ] = "DBMAX";
+ Text[ chinese_simplified ] = "DMAX";
+ Text[ greek ] = "DMAX";
+ Text[ korean ] = "DMAX";
+ Text[ turkish ] = "DMAX";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_DB_MIN
+ {
+ Text = "DBMIN" ;
+ Text [ english ] = "DMIN" ;
+ Text [ norwegian ] = "DMIN" ;
+ Text [ italian ] = "DB.MIN" ;
+ Text [ portuguese_brazilian ] = "BDMIN" ;
+ Text [ portuguese ] = "BDMIN" ;
+ Text [ finnish ] = "DMIN" ;
+ Text [ danish ] = "DMIN" ;
+ Text [ french ] = "BDMIN" ;
+ Text [ swedish ] = "DMIN" ;
+ Text [ dutch ] = "DBMIN" ;
+ Text [ spanish ] = "BDMIN" ;
+ Text [ english_us ] = "DMIN" ;
+ Text[ chinese_simplified ] = "DMIN";
+ Text[ russian ] = "";
+ Text[ polish ] = "BD.MIN";
+ Text[ japanese ] = "DMIN";
+ Text[ chinese_traditional ] = "DMIN";
+ Text[ arabic ] = "DMIN";
+ Text[ dutch ] = "DBMIN";
+ Text[ chinese_simplified ] = "DMIN";
+ Text[ greek ] = "DMIN";
+ Text[ korean ] = "DMIN";
+ Text[ turkish ] = "DMIN";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_DB_PRODUCT
+ {
+ Text = "DBPRODUKT" ;
+ Text [ english ] = "DPRODUCT" ;
+ Text [ norwegian ] = "DPRODUKT" ;
+ Text [ italian ] = "DB.PRODOTTO" ;
+ Text [ portuguese_brazilian ] = "DMULTIPL" ;
+ Text [ portuguese ] = "DMULTIPL" ;
+ Text [ finnish ] = "DPRODUCT" ;
+ Text [ danish ] = "DPRODUKT" ;
+ Text [ french ] = "BDPRODUIT" ;
+ Text [ swedish ] = "DPRODUKT" ;
+ Text [ dutch ] = "DBPRODUKT" ;
+ Text [ spanish ] = "BDPRODUCTO" ;
+ Text [ english_us ] = "DPRODUCT" ;
+ Text[ chinese_simplified ] = "DPRODUCT";
+ Text[ russian ] = "";
+ Text[ polish ] = "BD.ILOCZYN";
+ Text[ japanese ] = "DPRODUKT";
+ Text[ chinese_traditional ] = "DPRODUCT";
+ Text[ arabic ] = "DPRODUCT";
+ Text[ dutch ] = "DBPRODUKT";
+ Text[ chinese_simplified ] = "DPRODUCT";
+ Text[ greek ] = "DPRODUCT";
+ Text[ korean ] = "DPRODUCT";
+ Text[ turkish ] = "DPRODUCT";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_DB_STD_DEV
+ {
+ Text = "DBSTDABW" ;
+ Text [ english ] = "DSTDEV" ;
+ Text [ norwegian ] = "DSTDEV" ;
+ Text [ italian ] = "DB.DEV.ST" ;
+ Text [ portuguese_brazilian ] = "BDEST" ;
+ Text [ portuguese ] = "BDDESVPAD" ;
+ Text [ finnish ] = "DSTDEV" ;
+ Text [ danish ] = "DSTAFV" ;
+ Text [ french ] = "BDECARTYPE" ;
+ Text [ swedish ] = "DSTDAV" ;
+ Text [ dutch ] = "DBSTDEV" ;
+ Text [ spanish ] = "BDDESVEST" ;
+ Text [ english_us ] = "DSTDEV" ;
+ Text[ chinese_simplified ] = "DSTDEV";
+ Text[ russian ] = "";
+ Text[ polish ] = "BD.ODCH.STANDARD";
+ Text[ japanese ] = "DSTDEV";
+ Text[ chinese_traditional ] = "DSTDEV";
+ Text[ arabic ] = "DSTDEV";
+ Text[ dutch ] = "DBSTDEV";
+ Text[ chinese_simplified ] = "DSTDEV";
+ Text[ greek ] = "DSTDEV";
+ Text[ korean ] = "DSTDEV";
+ Text[ turkish ] = "DSTDEV";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_DB_STD_DEV_P
+ {
+ Text = "DBSTDABWN" ;
+ Text [ english ] = "DSTDEVP" ;
+ Text [ norwegian ] = "DSTDEVP" ;
+ Text [ italian ] = "DB.DEV.ST.POP" ;
+ Text [ portuguese_brazilian ] = "BDDESVPA" ;
+ Text [ portuguese ] = "BDDESVPADP" ;
+ Text [ finnish ] = "DSTDEVP" ;
+ Text [ danish ] = "DSTAFVP" ;
+ Text [ french ] = "BDECARTYPEP" ;
+ Text [ swedish ] = "DSTDAVP" ;
+ Text [ dutch ] = "DBSTDEVP" ;
+ Text [ spanish ] = "BDDESVESTP" ;
+ Text [ english_us ] = "DSTDEVP" ;
+ Text[ chinese_simplified ] = "DSTDEVP";
+ Text[ russian ] = "";
+ Text[ polish ] = "BD.ODCH.STANDARD.POPUL";
+ Text[ japanese ] = "DSTDEVP";
+ Text[ chinese_traditional ] = "DSTDEVP";
+ Text[ arabic ] = "DSTDEVP";
+ Text[ dutch ] = "DBSTDEVP";
+ Text[ chinese_simplified ] = "DSTDEVP";
+ Text[ greek ] = "DSTDEVP";
+ Text[ korean ] = "DSTDEVP";
+ Text[ turkish ] = "DSTDEVP";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_DB_VAR
+ {
+ Text = "DBVARIANZ" ;
+ Text [ english ] = "DVAR" ;
+ Text [ norwegian ] = "DVAR" ;
+ Text [ italian ] = "DB.VAR" ;
+ Text [ portuguese_brazilian ] = "BDVAREST" ;
+ Text [ portuguese ] = "BDVAR" ;
+ Text [ finnish ] = "DVAR" ;
+ Text [ danish ] = "DVARIANS" ;
+ Text [ french ] = "BDVAR" ;
+ Text [ swedish ] = "DVARIANS" ;
+ Text [ dutch ] = "DBVAR" ;
+ Text [ spanish ] = "BDVAR" ;
+ Text [ english_us ] = "DVAR" ;
+ Text[ chinese_simplified ] = "DVAR";
+ Text[ russian ] = "";
+ Text[ polish ] = "BD.WARIANCJA";
+ Text[ japanese ] = "DVAR";
+ Text[ chinese_traditional ] = "DVAR";
+ Text[ arabic ] = "DVAR";
+ Text[ dutch ] = "DBVAR";
+ Text[ chinese_simplified ] = "DVAR";
+ Text[ greek ] = "DVAR";
+ Text[ korean ] = "DVAR";
+ Text[ turkish ] = "DVAR";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_DB_VAR_P
+ {
+ Text = "DBVARIANZEN" ;
+ Text [ english ] = "DVARP" ;
+ Text [ norwegian ] = "DVARP" ;
+ Text [ italian ] = "DB.VAR.POP" ;
+ Text [ portuguese_brazilian ] = "BDVARP" ;
+ Text [ portuguese ] = "BDVARP" ;
+ Text [ finnish ] = "DVARP" ;
+ Text [ danish ] = "DVARIANSP" ;
+ Text [ french ] = "BDVARP" ;
+ Text [ swedish ] = "DVARIANSP" ;
+ Text [ dutch ] = "DBVARP" ;
+ Text [ spanish ] = "BDVARP" ;
+ Text [ english_us ] = "DVARP" ;
+ Text[ chinese_simplified ] = "DVARP";
+ Text[ russian ] = "";
+ Text[ polish ] = "BD.WARIANCJA.POPUL";
+ Text[ japanese ] = "DVARP";
+ Text[ chinese_traditional ] = "DVARP";
+ Text[ arabic ] = "DVARP";
+ Text[ dutch ] = "DBVARP";
+ Text[ chinese_simplified ] = "DVARP";
+ Text[ greek ] = "DVARP";
+ Text[ korean ] = "DVARP";
+ Text[ turkish ] = "DVARP";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_INDIRECT
+ {
+ Text = "INDIREKT" ;
+ Text [ english ] = "INDIRECT" ;
+ Text [ norwegian ] = "INDIREKT" ;
+ Text [ italian ] = "INDIRETTO" ;
+ Text [ portuguese_brazilian ] = "INDIRETO" ;
+ Text [ portuguese ] = "INDIRECTO" ;
+ Text [ finnish ] = "INDIRECT" ;
+ Text [ danish ] = "INDIREKTE" ;
+ Text [ french ] = "INDIRECT" ;
+ Text [ swedish ] = "INDIREKT" ;
+ Text [ dutch ] = "INDIRECT" ;
+ Text [ spanish ] = "INDIRECTO" ;
+ Text [ english_us ] = "INDIRECT" ;
+ Text[ chinese_simplified ] = "INDIRECT";
+ Text[ russian ] = "INDIREKT";
+ Text[ polish ] = "ADR.POR";
+ Text[ japanese ] = "INDIREKT";
+ Text[ chinese_traditional ] = "INDIRECT";
+ Text[ arabic ] = "INDIRECT";
+ Text[ dutch ] = "INDIRECT";
+ Text[ chinese_simplified ] = "INDIRECT";
+ Text[ greek ] = "INDIRECT";
+ Text[ korean ] = "INDIRECT";
+ Text[ turkish ] = "INDIRECT";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_ADRESS
+ {
+ Text = "ADRESSE" ;
+ Text [ english ] = "ADDRESS" ;
+ Text [ norwegian ] = "ADRESSE" ;
+ Text [ italian ] = "INDIRIZZO" ;
+ Text [ portuguese_brazilian ] = "ENDEREO" ;
+ Text [ portuguese ] = "ENDEREO" ;
+ Text [ finnish ] = "ADRESS" ;
+ Text [ danish ] = "ADRESSE" ;
+ Text [ french ] = "ADRESSE" ;
+ Text [ swedish ] = "ADRESS" ;
+ Text [ dutch ] = "ADRES" ;
+ Text [ spanish ] = "DIRECCIN" ;
+ Text [ english_us ] = "ADDRESS" ;
+ Text[ chinese_simplified ] = "ADDRESS";
+ Text[ russian ] = "";
+ Text[ polish ] = "ADRES";
+ Text[ japanese ] = "ADDRESS";
+ Text[ chinese_traditional ] = "ADDRESS";
+ Text[ arabic ] = "ADDRESS";
+ Text[ dutch ] = "ADRES";
+ Text[ chinese_simplified ] = "ADDRESS";
+ Text[ greek ] = "ADDRESS";
+ Text[ korean ] = "ּ";
+ Text[ turkish ] = "ADDRESS";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_MATCH
+ {
+ Text = "VERGLEICH" ;
+ Text [ english ] = "MATCH" ;
+ Text [ norwegian ] = "MATCH" ;
+ Text [ italian ] = "CONFRONTA" ;
+ Text [ portuguese_brazilian ] = "CORRESP" ;
+ Text [ portuguese ] = "CORRESP" ;
+ Text [ finnish ] = "MATCH" ;
+ Text [ danish ] = "SAMMENLIGN" ;
+ Text [ french ] = "EQUIV" ;
+ Text [ swedish ] = "PASSA" ;
+ Text [ dutch ] = "VERGELIJKEN" ;
+ Text [ spanish ] = "COINCIDIR" ;
+ Text [ english_us ] = "MATCH" ;
+ Text[ chinese_simplified ] = "MATCH";
+ Text[ russian ] = "";
+ Text[ polish ] = "DODAJ.POZYCJ";
+ Text[ japanese ] = "MATCH";
+ Text[ chinese_traditional ] = "MATCH";
+ Text[ arabic ] = "MATCH";
+ Text[ dutch ] = "VERGELIJKEN";
+ Text[ chinese_simplified ] = "MATCH";
+ Text[ greek ] = "MATCH";
+ Text[ korean ] = "MATCH";
+ Text[ turkish ] = "MATCH";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_COUNT_EMPTY_CELLS
+ {
+ Text = "ANZAHLLEEREZELLEN" ;
+ Text [ english ] = "COUNTBLANK" ;
+ Text [ norwegian ] = "COUNTBLANK" ;
+ Text [ italian ] = "CONTA.VUOTE" ;
+ Text [ portuguese_brazilian ] = "CONTAR.VAZIO" ;
+ Text [ portuguese ] = "CONTAR.VAZIO" ;
+ Text [ finnish ] = "COUNTBLANK" ;
+ Text [ danish ] = "ANTAL.BLANKE" ;
+ Text [ french ] = "NB.VIDE" ;
+ Text [ swedish ] = "ANTAL.TOMMA" ;
+ Text [ dutch ] = "AANTAL.LEGE.CELLEN" ;
+ Text [ spanish ] = "CONTAR.BLANCO" ;
+ Text [ english_us ] = "COUNTBLANK" ;
+ Text[ chinese_simplified ] = "COUNTBLANK";
+ Text[ russian ] = "";
+ Text[ polish ] = "LICZ.PUSTE";
+ Text[ japanese ] = "COUNTBLANK";
+ Text[ chinese_traditional ] = "COUNTBLANK";
+ Text[ arabic ] = "COUNTBLANK";
+ Text[ dutch ] = "AANTAL.LEGE.CELLEN";
+ Text[ chinese_simplified ] = "COUNTBLANK";
+ Text[ greek ] = "COUNTBLANK";
+ Text[ korean ] = "COUNTBLANK";
+ Text[ turkish ] = "COUNTBLANK";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_COUNT_IF
+ {
+ /* ### ACHTUNG: Neuer Text in Resource? ZHLENWENN : ZHLENWENN */
+ Text = "ZHLENWENN" ;
+ Text [ english ] = "COUNTIF" ;
+ Text [ norwegian ] = "COUNTIF" ;
+ Text [ italian ] = "CONTA.SE" ;
+ Text [ portuguese_brazilian ] = "CONT.SE" ;
+ Text [ portuguese ] = "CONTAR.SE" ;
+ Text [ finnish ] = "COUNTIF" ;
+ Text [ danish ] = "TLHVIS" ;
+ Text [ french ] = "NB.SI" ;
+ Text [ swedish ] = "ANTAL.OM" ;
+ Text [ dutch ] = "AANTAL.ALS" ;
+ Text [ spanish ] = "CONTAR.SI" ;
+ Text [ english_us ] = "COUNTIF" ;
+ Text[ chinese_simplified ] = "COUNTIF";
+ Text[ russian ] = "";
+ Text[ polish ] = "LICZ.JEELI";
+ Text[ japanese ] = "COUNTIF";
+ Text[ chinese_traditional ] = "COUNTIF";
+ Text[ arabic ] = "COUNTIF";
+ Text[ dutch ] = "AANTAL.ALS";
+ Text[ chinese_simplified ] = "COUNTIF";
+ Text[ greek ] = "COUNTIF";
+ Text[ korean ] = "COUNTIF";
+ Text[ turkish ] = "COUNTIF";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_SUM_IF
+ {
+ Text = "SUMMEWENN" ;
+ Text [ english ] = "SUMIF" ;
+ Text [ norwegian ] = "SUMIF" ;
+ Text [ italian ] = "SOMMA.SE" ;
+ Text [ portuguese_brazilian ] = "SOMASE" ;
+ Text [ portuguese ] = "SOMA.SE" ;
+ Text [ finnish ] = "SUMIF" ;
+ Text [ danish ] = "SUM.HVIS" ;
+ Text [ french ] = "SOMME.SI" ;
+ Text [ swedish ] = "SUMMA.OM" ;
+ Text [ dutch ] = "SOM.ALS" ;
+ Text [ spanish ] = "SUMAR.SI" ;
+ Text [ english_us ] = "SUMIF" ;
+ Text[ chinese_simplified ] = "SUMIF";
+ Text[ russian ] = "";
+ Text[ polish ] = "SUMA.JEELI";
+ Text[ japanese ] = "SUMIF";
+ Text[ chinese_traditional ] = "SUMIF";
+ Text[ arabic ] = "SUMIF";
+ Text[ dutch ] = "SOM.ALS";
+ Text[ chinese_simplified ] = "SUMIF";
+ Text[ greek ] = "SUMIF";
+ Text[ korean ] = "SUMIF";
+ Text[ turkish ] = "SUMIF";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_LOOKUP
+ {
+ Text = "VERWEIS" ;
+ Text [ english ] = "LOOKUP" ;
+ Text [ norwegian ] = "LOOKUP" ;
+ Text [ italian ] = "CERCA" ;
+ Text [ portuguese_brazilian ] = "PROC" ;
+ Text [ portuguese ] = "REFERNCIA" ;
+ Text [ finnish ] = "LOOKUP" ;
+ Text [ danish ] = "SL.OP" ;
+ Text [ french ] = "RECHERCHE" ;
+ Text [ swedish ] = "LETAUPP" ;
+ Text [ dutch ] = "ZOEKEN" ;
+ Text [ spanish ] = "BUSCAR" ;
+ Text [ english_us ] = "LOOKUP" ;
+ Text[ chinese_simplified ] = "LOOKUP";
+ Text[ russian ] = "";
+ Text[ polish ] = "WYSZUKAJ";
+ Text[ japanese ] = "LOOKUP";
+ Text[ chinese_traditional ] = "LOOKUP";
+ Text[ arabic ] = "LOOKUP";
+ Text[ dutch ] = "ZOEKEN";
+ Text[ chinese_simplified ] = "LOOKUP";
+ Text[ greek ] = "LOOKUP";
+ Text[ korean ] = "LOOKUP";
+ Text[ turkish ] = "LOOKUP";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_V_LOOKUP
+ {
+ Text = "SVERWEIS" ;
+ Text [ english ] = "VLOOKUP" ;
+ Text [ norwegian ] = "VLOOKUP" ;
+ Text [ italian ] = "CERCA.VERT" ;
+ Text [ portuguese_brazilian ] = "PROCV" ;
+ Text [ portuguese ] = "PROCV" ;
+ Text [ finnish ] = "VLOOKUP" ;
+ Text [ danish ] = "LOPSLAG" ;
+ Text [ french ] = "RECHERCHEV" ;
+ Text [ swedish ] = "LETARAD" ;
+ Text [ dutch ] = "VERT.ZOEKEN" ;
+ Text [ spanish ] = "BUSCARV" ;
+ Text [ english_us ] = "VLOOKUP" ;
+ Text[ chinese_simplified ] = "VLOOKUP";
+ Text[ russian ] = "";
+ Text[ polish ] = "WYSZUKAJ.PIONOWO";
+ Text[ japanese ] = "VLOOKUP";
+ Text[ chinese_traditional ] = "VLOOKUP";
+ Text[ arabic ] = "VLOOKUP";
+ Text[ dutch ] = "VERT.ZOEKEN";
+ Text[ chinese_simplified ] = "VLOOKUP";
+ Text[ greek ] = "VLOOKUP";
+ Text[ korean ] = "VLOOKUP";
+ Text[ turkish ] = "VLOOKUP";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_H_LOOKUP
+ {
+ Text = "WVERWEIS" ;
+ Text [ english ] = "HLOOKUP" ;
+ Text [ norwegian ] = "HLOOKUP" ;
+ Text [ italian ] = "CERCA.ORIZZ" ;
+ Text [ portuguese_brazilian ] = "PROCH" ;
+ Text [ portuguese ] = "PROCH" ;
+ Text [ finnish ] = "HLOOKUP" ;
+ Text [ danish ] = "VOPSLAG" ;
+ Text [ french ] = "RECHERCHEH" ;
+ Text [ swedish ] = "LETAKOLUMN" ;
+ Text [ dutch ] = "HORIZ.ZOEKEN" ;
+ Text [ spanish ] = "BUSCARH" ;
+ Text [ english_us ] = "HLOOKUP" ;
+ Text[ chinese_simplified ] = "HLOOKUP";
+ Text[ russian ] = "";
+ Text[ polish ] = "WYSZUKAJ.POZIOMO";
+ Text[ japanese ] = "HLOOKUP";
+ Text[ chinese_traditional ] = "HLOOKUP";
+ Text[ arabic ] = "HLOOKUP";
+ Text[ dutch ] = "HORIZ.ZOEKEN";
+ Text[ chinese_simplified ] = "HLOOKUP";
+ Text[ greek ] = "HLOOKUP";
+ Text[ korean ] = "HLOOKUP";
+ Text[ turkish ] = "HLOOKUP";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_MULTI_AREA
+ {
+ Text = "MULTIBEREICH" ;
+ Text [ english ] = "MULTIRANGE" ;
+ Text [ norwegian ] = "FLERSEKTORMULTIRANGE" ;
+ Text [ italian ] = "MULTIRANGE" ;
+ Text [ portuguese_brazilian ] = "MULTIFAIXAS" ;
+ Text [ portuguese ] = "INTERV.MLTIPL." ;
+ Text [ finnish ] = "MULTIRANGE" ;
+ Text [ danish ] = "MULTIOMRDE" ;
+ Text [ french ] = "MULTIRANGE" ;
+ Text [ swedish ] = "MULTIOMRDE" ;
+ Text [ dutch ] = "MULTIBEREIK" ;
+ Text [ spanish ] = "MULTIRANGO" ;
+ Text [ english_us ] = "MULTIRANGE" ;
+ Text[ chinese_simplified ] = "MULTIRANGE";
+ Text[ russian ] = "";
+ Text[ polish ] = "MULTIZAKRES";
+ Text[ japanese ] = "MULTIRANGE";
+ Text[ chinese_traditional ] = "MULTIRANGE";
+ Text[ arabic ] = "MULTIRANGE";
+ Text[ dutch ] = "MULTIBEREIK";
+ Text[ chinese_simplified ] = "MULTIRANGE";
+ Text[ greek ] = "MULTIRANGE";
+ Text[ korean ] = "MULTIRANGE";
+ Text[ turkish ] = "MULTIRANGE";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_OFFSET
+ {
+ Text = "VERSCHIEBUNG" ;
+ Text [ english ] = "OFFSET" ;
+ Text [ norwegian ] = "FORSKYVNINGOFFSET" ;
+ Text [ italian ] = "SCARTO" ;
+ Text [ portuguese_brazilian ] = "OFFSET" ;
+ Text [ portuguese ] = "DESLOCAMENTO" ;
+ Text [ finnish ] = "OFFSET" ;
+ Text [ danish ] = "FORSKYDNING" ;
+ Text [ french ] = "DECALER" ;
+ Text [ swedish ] = "FRSKJUTA" ;
+ Text [ dutch ] = "VERSCHUIVING" ;
+ Text [ spanish ] = "DESREF" ;
+ Text [ english_us ] = "OFFSET" ;
+ Text[ chinese_simplified ] = "OFFSET";
+ Text[ russian ] = "";
+ Text[ polish ] = "PRZESUNICIE";
+ Text[ japanese ] = "OFFSET";
+ Text[ chinese_traditional ] = "OFFSET";
+ Text[ arabic ] = "OFFSET";
+ Text[ dutch ] = "VERSCHUIVING";
+ Text[ chinese_simplified ] = "OFFSET";
+ Text[ greek ] = "OFFSET";
+ Text[ korean ] = "OFFSET";
+ Text[ turkish ] = "OFFSET";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_INDEX
+ {
+ Text = "INDEX" ;
+ Text [ english ] = "INDEX" ;
+ Text [ norwegian ] = "INDEKS" ;
+ Text [ italian ] = "INDICE" ;
+ Text [ portuguese_brazilian ] = "NDICE" ;
+ // ?? erstes Zeichen = I ??
+ Text [ portuguese ] = "NDICE" ;
+ Text [ finnish ] = "INDEX" ;
+ Text [ danish ] = "INDEKS" ;
+ Text [ french ] = "INDICE" ;
+ Text [ swedish ] = "INDEX" ;
+ Text [ dutch ] = "INDEX" ;
+ Text [ spanish ] = "NDICE" ;
+ Text [ english_us ] = "INDEX" ;
+ Text[ chinese_simplified ] = "INDEX";
+ Text[ russian ] = "";
+ Text[ polish ] = "INDEKS";
+ Text[ japanese ] = "INDEX";
+ Text[ chinese_traditional ] = "INDEX";
+ Text[ arabic ] = "INDEX";
+ Text[ dutch ] = "INDEX";
+ Text[ chinese_simplified ] = "INDEX";
+ Text[ greek ] = "INDEX";
+ Text[ korean ] = "INDEX";
+ Text[ turkish ] = "INDEX";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_AREAS
+ {
+ Text = "BEREICHE" ;
+ Text [ english ] = "AREAS" ;
+ Text [ norwegian ] = "OMRDER" ;
+ Text [ italian ] = "AREE" ;
+ Text [ portuguese_brazilian ] = "AREAS" ;
+ Text [ portuguese ] = "REAS" ;
+ Text [ finnish ] = "AREAS" ;
+ Text [ danish ] = "OMRDER" ;
+ Text [ french ] = "ZONES" ;
+ Text [ swedish ] = "OMRDEN" ;
+ Text [ dutch ] = "BEREIKEN" ;
+ Text [ spanish ] = "REAS" ;
+ Text [ english_us ] = "AREAS" ;
+ Text[ chinese_simplified ] = "AREAS";
+ Text[ russian ] = "";
+ Text[ polish ] = "OBSZARY";
+ Text[ japanese ] = "AREAS";
+ Text[ chinese_traditional ] = "AREAS";
+ Text[ arabic ] = "AREAS";
+ Text[ dutch ] = "BEREIKEN";
+ Text[ chinese_simplified ] = "AREAS";
+ Text[ greek ] = "AREAS";
+ Text[ korean ] = "AREAS";
+ Text[ turkish ] = "AREAS";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_CURRENCY
+ {
+ Text = "DM" ;
+ Text [ english ] = "DOLLAR" ;
+ Text [ norwegian ] = "DOLLAR" ;
+ Text [ italian ] = "VALUTA" ;
+ Text [ portuguese_brazilian ] = "DLAR" ;
+ Text [ portuguese ] = "MOEDA" ;
+ Text [ finnish ] = "DOLLAR" ;
+ Text [ danish ] = "KR" ;
+ Text [ french ] = "FRANC" ;
+ Text [ swedish ] = "VALUTA" ;
+ Text [ dutch ] = "GULDEN" ;
+ Text [ spanish ] = "MONEDA" ;
+ Text [ english_us ] = "DOLLAR" ;
+ Text[ chinese_simplified ] = "RMB";
+ Text[ russian ] = "";
+ Text[ polish ] = "KWOTA";
+ Text[ japanese ] = "YEN";
+ Text[ chinese_traditional ] = "DOLLAR";
+ Text[ arabic ] = "DOLLAR";
+ Text[ dutch ] = "GULDEN";
+ Text[ chinese_simplified ] = "RMB";
+ Text[ greek ] = "DOLLAR";
+ Text[ korean ] = "DOLLAR";
+ Text[ turkish ] = "TL";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_REPLACE
+ {
+ Text = "ERSETZEN" ;
+ Text [ english ] = "REPLACE" ;
+ Text [ norwegian ] = "ERSTATTE" ;
+ Text [ italian ] = "RIMPIAZZA" ;
+ Text [ portuguese_brazilian ] = "SUBSTITUIR" ;
+ Text [ portuguese ] = "SUBSTITUIR" ;
+ Text [ finnish ] = "REPLACE" ;
+ Text [ danish ] = "ERSTAT" ;
+ Text [ french ] = "REMPLACER" ;
+ Text [ swedish ] = "ERSTT" ;
+ Text [ dutch ] = "VERVANGEN" ;
+ Text [ spanish ] = "REEMPLAZAR" ;
+ Text [ english_us ] = "REPLACE" ;
+ Text[ chinese_simplified ] = "REPLACE";
+ Text[ russian ] = "";
+ Text[ polish ] = "ZAMIE";
+ Text[ japanese ] = "REPLACE";
+ Text[ chinese_traditional ] = "REPLACE";
+ Text[ arabic ] = "REPLACE";
+ Text[ dutch ] = "VERVANGEN";
+ Text[ chinese_simplified ] = "REPLACE";
+ Text[ greek ] = "REPLACE";
+ Text[ korean ] = "REPLACE";
+ Text[ turkish ] = "REPLACE";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_FIXED
+ {
+ Text = "FEST" ;
+ Text [ english ] = "FIXED" ;
+ Text [ norwegian ] = "FIXED" ;
+ Text [ italian ] = "FISSO" ;
+ Text [ portuguese_brazilian ] = "FIXO" ;
+ Text [ portuguese ] = "FIXAR" ;
+ Text [ finnish ] = "FIXED" ;
+ Text [ danish ] = "FAST" ;
+ Text [ french ] = "CTXT" ;
+ Text [ swedish ] = "FASTTAL" ;
+ Text [ dutch ] = "VAST" ;
+ Text [ spanish ] = "DECIMAL" ;
+ Text [ english_us ] = "FIXED" ;
+ Text[ chinese_simplified ] = "FIXED";
+ Text[ russian ] = "";
+ Text[ polish ] = "ZAOKR.DO.TEKST";
+ Text[ japanese ] = "FIXED";
+ Text[ chinese_traditional ] = "FIXED";
+ Text[ arabic ] = "FIXED";
+ Text[ dutch ] = "VAST";
+ Text[ chinese_simplified ] = "FIXED";
+ Text[ greek ] = "FIXED";
+ Text[ korean ] = "FIXED";
+ Text[ turkish ] = "FIXED";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_FIND
+ {
+ Text = "FINDEN" ;
+ Text [ english ] = "FIND" ;
+ Text [ norwegian ] = "FINN" ;
+ Text [ italian ] = "CERCA1" ;
+ Text [ portuguese_brazilian ] = "ENCONTRAR" ;
+ Text [ portuguese ] = "LOCALIZAR" ;
+ Text [ finnish ] = "FIND" ;
+ Text [ danish ] = "FIND" ;
+ Text [ french ] = "TROUVE" ;
+ Text [ swedish ] = "HITTA" ;
+ Text [ dutch ] = "VIND.ALLES" ;
+ Text [ spanish ] = "ENCONTRAR" ;
+ Text [ english_us ] = "FIND" ;
+ Text[ chinese_simplified ] = "FIND";
+ Text[ russian ] = "";
+ Text[ polish ] = "ZNAJD";
+ Text[ japanese ] = "FIND";
+ Text[ chinese_traditional ] = "FIND";
+ Text[ arabic ] = "FIND";
+ Text[ dutch ] = "VIND.ALLES";
+ Text[ chinese_simplified ] = "FIND";
+ Text[ greek ] = "FIND";
+ Text[ korean ] = "FIND";
+ Text[ turkish ] = "FIND";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_EXACT
+ {
+ Text = "IDENTISCH" ;
+ Text [ english ] = "EXACT" ;
+ Text [ norwegian ] = "EXACT" ;
+ Text [ italian ] = "IDENTICO" ;
+ Text [ portuguese_brazilian ] = "EXATO" ;
+ Text [ portuguese ] = "EXACTO" ;
+ Text [ finnish ] = "EXACT" ;
+ Text [ danish ] = "EKSAKT" ;
+ Text [ french ] = "EXACT" ;
+ Text [ swedish ] = "EXAKT" ;
+ Text [ dutch ] = "GELIJK" ;
+ Text [ spanish ] = "IGUAL" ;
+ Text [ english_us ] = "EXACT" ;
+ Text[ chinese_simplified ] = "EXACT";
+ Text[ russian ] = "";
+ Text[ polish ] = "IDENTYCZNY";
+ Text[ japanese ] = "EXACT";
+ Text[ chinese_traditional ] = "EXACT";
+ Text[ arabic ] = "EXACT";
+ Text[ dutch ] = "GELIJK";
+ Text[ chinese_simplified ] = "EXACT";
+ Text[ greek ] = "EXACT";
+ Text[ korean ] = "EXACT";
+ Text[ turkish ] = "EXACT";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_LEFT
+ {
+ Text = "LINKS" ;
+ Text [ english ] = "LEFT" ;
+ Text [ norwegian ] = "VENSTRE" ;
+ Text [ italian ] = "SINISTRA" ;
+ Text [ portuguese_brazilian ] = "ESQUERDA" ;
+ Text [ portuguese ] = "ESQUERDA" ;
+ Text [ finnish ] = "LEFT" ;
+ Text [ danish ] = "VENSTRE" ;
+ Text [ french ] = "GAUCHE" ;
+ Text [ swedish ] = "VNSTER" ;
+ Text [ dutch ] = "LINKS" ;
+ Text [ spanish ] = "IZQUIERDA" ;
+ Text [ english_us ] = "LEFT" ;
+ Text[ chinese_simplified ] = "LEFT";
+ Text[ russian ] = "";
+ Text[ polish ] = "LEWY";
+ Text[ japanese ] = "LEFT";
+ Text[ chinese_traditional ] = "LEFT";
+ Text[ arabic ] = "LEFT";
+ Text[ dutch ] = "LINKS";
+ Text[ chinese_simplified ] = "LEFT";
+ Text[ greek ] = "LEFT";
+ Text[ korean ] = "LEFT";
+ Text[ turkish ] = "LEFT";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_RIGHT
+ {
+ Text = "RECHTS" ;
+ Text [ english ] = "RIGHT" ;
+ Text [ norwegian ] = "HYRE" ;
+ Text [ italian ] = "DESTRA" ;
+ Text [ portuguese_brazilian ] = "DIREITA" ;
+ Text [ portuguese ] = "DIREITA" ;
+ Text [ finnish ] = "RIGHT" ;
+ Text [ danish ] = "HJRE" ;
+ Text [ french ] = "DROITE" ;
+ Text [ swedish ] = "HGER" ;
+ Text [ dutch ] = "RECHTS" ;
+ Text [ spanish ] = "DERECHA" ;
+ Text [ english_us ] = "RIGHT" ;
+ Text[ chinese_simplified ] = "RIGHT";
+ Text[ russian ] = "";
+ Text[ polish ] = "PRAWY";
+ Text[ japanese ] = "RIGHT";
+ Text[ chinese_traditional ] = "RIGHT";
+ Text[ arabic ] = "RIGHT";
+ Text[ dutch ] = "RECHTS";
+ Text[ chinese_simplified ] = "RIGHT";
+ Text[ greek ] = "";
+ Text[ korean ] = "RIGHT";
+ Text[ turkish ] = "RIGHT";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_SEARCH
+ {
+ Text = "SUCHEN" ;
+ Text [ english ] = "SEARCH" ;
+ Text [ norwegian ] = "LET" ;
+ Text [ italian ] = "CERCA2" ;
+ Text [ portuguese_brazilian ] = "PROCURAR" ;
+ Text [ portuguese ] = "PROCURAR" ;
+ Text [ finnish ] = "SEARCH" ;
+ Text [ danish ] = "SG" ;
+ Text [ french ] = "CHERCHE" ;
+ Text [ swedish ] = "SK" ;
+ Text [ dutch ] = "VIND.SPEC" ;
+ Text [ spanish ] = "HALLAR" ;
+ Text [ english_us ] = "SEARCH" ;
+ Text[ chinese_simplified ] = "SEARCH";
+ Text[ russian ] = "";
+ Text[ polish ] = "SZUKAJ";
+ Text[ japanese ] = "SEARCH";
+ Text[ chinese_traditional ] = "SEARCH";
+ Text[ arabic ] = "SEARCH";
+ Text[ dutch ] = "VIND.SPEC";
+ Text[ chinese_simplified ] = "SEARCH";
+ Text[ greek ] = "SEARCH";
+ Text[ korean ] = "SEARCH";
+ Text[ turkish ] = "SEARCH";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_MID
+ {
+ Text = "TEIL" ;
+ Text [ english ] = "MID" ;
+ Text [ norwegian ] = "MID" ;
+ Text [ italian ] = "STRINGA.ESTRAI" ;
+ Text [ portuguese_brazilian ] = "MEIO" ;
+ Text [ portuguese ] = "MDIA" ;
+ Text [ finnish ] = "MID" ;
+ Text [ danish ] = "MIDT" ;
+ Text [ french ] = "STXT" ;
+ Text [ swedish ] = "EXTEXT" ;
+ Text [ dutch ] = "DEEL" ;
+ Text [ spanish ] = "EXTRAE" ;
+ Text [ english_us ] = "MID" ;
+ Text[ chinese_simplified ] = "MID";
+ Text[ russian ] = "";
+ Text[ polish ] = "FRAGMENT.TEKSTU";
+ Text[ japanese ] = "MID";
+ Text[ chinese_traditional ] = "MID";
+ Text[ arabic ] = "MID";
+ Text[ dutch ] = "DEEL";
+ Text[ chinese_simplified ] = "MID";
+ Text[ greek ] = "MID";
+ Text[ korean ] = "MID";
+ Text[ turkish ] = "MID";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_TEXT
+ {
+ Text = "TEXT" ;
+ Text [ english ] = "TEXT" ;
+ Text [ norwegian ] = "TEKST" ;
+ Text [ italian ] = "TESTO" ;
+ Text [ portuguese_brazilian ] = "TEXTO" ;
+ Text [ portuguese ] = "TEXTO" ;
+ Text [ finnish ] = "TEXT" ;
+ Text [ danish ] = "TEKST" ;
+ Text [ french ] = "TEXTE" ;
+ Text [ swedish ] = "TEXT" ;
+ Text [ dutch ] = "TEKST" ;
+ Text [ spanish ] = "TEXTO" ;
+ Text [ english_us ] = "TEXT" ;
+ Text[ chinese_simplified ] = "TEXT";
+ Text[ russian ] = "";
+ Text[ polish ] = "TEKST";
+ Text[ japanese ] = "TEXT";
+ Text[ chinese_traditional ] = "TEXT";
+ Text[ arabic ] = "TEXT";
+ Text[ dutch ] = "TEKST";
+ Text[ chinese_simplified ] = "TEXT";
+ Text[ greek ] = "TEXT";
+ Text[ korean ] = "TEXT";
+ Text[ turkish ] = "TEXT";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_SUBSTITUTE
+ {
+ Text = "WECHSELN" ;
+ Text [ english ] = "SUBSTITUTE" ;
+ Text [ norwegian ] = "ERSTATT" ;
+ Text [ italian ] = "SOSTITUISCI" ;
+ Text [ portuguese_brazilian ] = "SUBSTITUIR" ;
+ Text [ portuguese ] = "SUBSTITUIR" ;
+ Text [ finnish ] = "SUBSTITUTE" ;
+ Text [ danish ] = "UDSKIFT" ;
+ Text [ french ] = "SUBSTITUE" ;
+ Text [ swedish ] = "BYT.UT" ;
+ Text [ dutch ] = "SUBSTITUEREN" ;
+ Text [ spanish ] = "SUSTITUIR" ;
+ Text [ english_us ] = "SUBSTITUTE" ;
+ Text[ chinese_simplified ] = "SUBSTITUTE";
+ Text[ russian ] = "";
+ Text[ polish ] = "PODSTAW";
+ Text[ japanese ] = "SUBSTITUTE";
+ Text[ chinese_traditional ] = "SUBSTITUTE";
+ Text[ arabic ] = "SUBSTITUTE";
+ Text[ dutch ] = "SUBSTITUEREN";
+ Text[ chinese_simplified ] = "SUBSTITUTE";
+ Text[ greek ] = "SUBSTITUTE";
+ Text[ korean ] = "SUBSTITUTE";
+ Text[ turkish ] = "SUBSTITUTE";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_REPT
+ {
+ Text = "WIEDERHOLEN" ;
+ Text [ english ] = "REPT" ;
+ Text [ norwegian ] = "REPT" ;
+ Text [ italian ] = "RIPETI" ;
+ Text [ portuguese_brazilian ] = "REPET" ;
+ Text [ portuguese ] = "REPETIR" ;
+ Text [ finnish ] = "REPT" ;
+ Text [ danish ] = "GENTAG" ;
+ Text [ french ] = "REPT" ;
+ Text [ swedish ] = "REP" ;
+ Text [ dutch ] = "HERHALING" ;
+ Text [ spanish ] = "REPETIR" ;
+ Text [ english_us ] = "REPT" ;
+ Text[ chinese_simplified ] = "REPT";
+ Text[ russian ] = "";
+ Text[ polish ] = "PONW";
+ Text[ japanese ] = "REPT";
+ Text[ chinese_traditional ] = "REPT";
+ Text[ arabic ] = "REPT";
+ Text[ dutch ] = "HERHALING";
+ Text[ chinese_simplified ] = "REPT";
+ Text[ greek ] = "REPT";
+ Text[ korean ] = "REPT";
+ Text[ turkish ] = "REPT";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_CONCAT
+ {
+ Text = "VERKETTEN" ;
+ Text [ english ] = "CONCATENATE" ;
+ Text [ norwegian ] = "CONCATENATE" ;
+ Text [ italian ] = "CONCATENA" ;
+ Text [ portuguese_brazilian ] = "CONCATENAR" ;
+ Text [ portuguese ] = "CONCATENAR" ;
+ Text [ finnish ] = "CONCATENATE" ;
+ Text [ danish ] = "SAMMENKDNING" ;
+ Text [ french ] = "CONCATENER" ;
+ Text [ swedish ] = "SAMMANFOGA" ;
+ Text [ dutch ] = "TEKST.SAMENVOEGEN" ;
+ Text [ spanish ] = "CONCATENAR" ;
+ Text [ english_us ] = "CONCATENATE" ;
+ Text[ chinese_simplified ] = "CONCATENATE";
+ Text[ russian ] = "";
+ Text[ polish ] = "ZCZ.TEKSTY";
+ Text[ japanese ] = "CONCATENATE";
+ Text[ chinese_traditional ] = "CONCATENATE";
+ Text[ arabic ] = "CONCATENATE";
+ Text[ dutch ] = "TEKST.SAMENVOEGEN";
+ Text[ chinese_simplified ] = "CONCATENATE";
+ Text[ greek ] = "CONCATENATE";
+ Text[ korean ] = "CONCATENATE";
+ Text[ turkish ] = "CONCATENATE";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_MAT_VALUE
+ {
+ Text = "MWERT" ;
+ Text [ english ] = "MVALUE" ;
+ Text [ norwegian ] = "MVALUE" ;
+ Text [ italian ] = "MATR.VALORE" ;
+ Text [ portuguese_brazilian ] = "MVALOR" ;
+ Text [ portuguese ] = "VALOR.MATRIZ" ;
+ Text [ finnish ] = "MVALUE" ;
+ Text [ danish ] = "MVRDI" ;
+ Text [ french ] = "MVALUE" ;
+ Text [ swedish ] = "MVRDE" ;
+ Text [ dutch ] = "WAARDEMAT" ;
+ Text [ spanish ] = "MVALOR" ;
+ Text [ english_us ] = "MVALUE" ;
+ Text[ chinese_simplified ] = "MVALUE";
+ Text[ russian ] = "";
+ Text[ polish ] = "WARTOM";
+ Text[ japanese ] = "MVALUE";
+ Text[ chinese_traditional ] = "MVALUE";
+ Text[ arabic ] = "MVALUE";
+ Text[ dutch ] = "WAARDEMAT";
+ Text[ chinese_simplified ] = "MVALUE";
+ Text[ greek ] = "MVALUE";
+ Text[ korean ] = "MVALUE";
+ Text[ turkish ] = "MVALUE";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_MAT_DET
+ {
+ Text = "MDET" ;
+ Text [ english ] = "MDETERM" ;
+ Text [ norwegian ] = "MDETERM" ;
+ Text [ italian ] = "MATR.DETERM" ;
+ Text [ portuguese_brazilian ] = "MDETERM" ;
+ Text [ portuguese ] = "MATRIZ.DETERM" ;
+ Text [ finnish ] = "MDETERM" ;
+ Text [ danish ] = "MDETERM" ;
+ Text [ french ] = "DETERMAT" ;
+ Text [ swedish ] = "MDETERM" ;
+ Text [ dutch ] = "DETERMINANT.MAT" ;
+ Text [ spanish ] = "MDETERM" ;
+ Text [ english_us ] = "MDETERM" ;
+ Text[ chinese_simplified ] = "MDETERM";
+ Text[ russian ] = "";
+ Text[ polish ] = "WYZNACZNIK.MACIERZY";
+ Text[ japanese ] = "MDETERM";
+ Text[ chinese_traditional ] = "MDETERM";
+ Text[ arabic ] = "MDETERM";
+ Text[ dutch ] = "DETERMINANT.MAT";
+ Text[ chinese_simplified ] = "MDETERM";
+ Text[ greek ] = "MDETERM";
+ Text[ korean ] = "MDETERM";
+ Text[ turkish ] = "MDETERM";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_MAT_INV
+ {
+ Text = "MINV" ;
+ Text [ english ] = "MINVERSE" ;
+ Text [ norwegian ] = "MINVERSE" ;
+ Text [ italian ] = "MATR.INVERSA" ;
+ Text [ portuguese_brazilian ] = "MINVERSO" ;
+ Text [ portuguese ] = "MATRIZ.INVERSA" ;
+ Text [ finnish ] = "MINVERSE" ;
+ Text [ danish ] = "MINVERT" ;
+ Text [ french ] = "INVERSEMAT" ;
+ Text [ swedish ] = "MINVERT" ;
+ Text [ dutch ] = "INVERSEMAT" ;
+ Text [ spanish ] = "MINVERSA" ;
+ Text [ english_us ] = "MINVERSE" ;
+ Text[ chinese_simplified ] = "MINVERSE";
+ Text[ russian ] = "";
+ Text[ polish ] = "MACIERZ.ODW";
+ Text[ japanese ] = "MINVERSE";
+ Text[ chinese_traditional ] = "MINVERSE";
+ Text[ arabic ] = "MINVERSE";
+ Text[ dutch ] = "INVERSEMAT";
+ Text[ chinese_simplified ] = "MINVERSE";
+ Text[ greek ] = "MINVERSE";
+ Text[ korean ] = "MINVERSE";
+ Text[ turkish ] = "MINVERSE";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_MAT_MULT
+ {
+ Text = "MMULT" ;
+ Text [ english ] = "MMULT" ;
+ Text [ norwegian ] = "MMULT" ;
+ Text [ italian ] = "MATR.PRODOTTO" ;
+ Text [ portuguese_brazilian ] = "MMULT" ;
+ Text [ portuguese ] = "MATRIZ.MULT" ;
+ Text [ finnish ] = "MMULT" ;
+ Text [ danish ] = "MPRODUKT" ;
+ Text [ french ] = "PRODUITMAT" ;
+ Text [ swedish ] = "MMULT" ;
+ Text [ dutch ] = "PRODUKTMAT" ;
+ Text [ spanish ] = "MMULT" ;
+ Text [ english_us ] = "MMULT" ;
+ Text[ chinese_simplified ] = "MMULT";
+ Text[ russian ] = "";
+ Text[ polish ] = "MACIERZ.ILOCZYN";
+ Text[ japanese ] = "MMULT";
+ Text[ chinese_traditional ] = "MMULT";
+ Text[ arabic ] = "MMULT";
+ Text[ dutch ] = "PRODUKTMAT";
+ Text[ chinese_simplified ] = "MMULT";
+ Text[ greek ] = "MMULT";
+ Text[ korean ] = "MMULT";
+ Text[ turkish ] = "MMULT";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_MAT_TRANS
+ {
+ Text = "MTRANS" ;
+ Text [ english ] = "TRANSPOSE" ;
+ Text [ norwegian ] = "MTRANS" ;
+ Text [ italian ] = "MATR.TRASPOSTA" ;
+ Text [ portuguese_brazilian ] = "MTRANS" ;
+ Text [ portuguese ] = "TRANSPOR" ;
+ Text [ finnish ] = "MTRANS" ;
+ Text [ danish ] = "TRANSPONER" ;
+ Text [ french ] = "TRANSPOSE" ;
+ Text [ swedish ] = "MTRANS" ;
+ Text [ dutch ] = "TRANSPONEREN" ;
+ Text [ spanish ] = "TRANSPONER" ;
+ Text [ english_us ] = "TRANSPOSE" ;
+ Text[ chinese_simplified ] = "TRANSPOSE";
+ Text[ russian ] = "";
+ Text[ polish ] = "TRANSPONUJ";
+ Text[ japanese ] = "TRANSPOSE";
+ Text[ chinese_traditional ] = "TRANSPOSE";
+ Text[ arabic ] = "TRANSPOSE";
+ Text[ dutch ] = "TRANSPONEREN";
+ Text[ chinese_simplified ] = "TRANSPOSE";
+ Text[ greek ] = "TRANSPOSE";
+ Text[ korean ] = "TRANSPOSE";
+ Text[ turkish ] = "TRANSPOSE";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_MATRIX_UNIT
+ {
+ Text = "EINHEITSMATRIX" ;
+ Text [ english ] = "MUNIT" ;
+ Text [ norwegian ] = "MUNIT" ;
+ Text [ italian ] = "MUNIT" ;
+ Text [ portuguese_brazilian ] = "MUNIT" ;
+ Text [ portuguese ] = "MATRIZ.UNITRIA" ;
+ Text [ finnish ] = "MUNIT" ;
+ Text [ danish ] = "ENHEDSMATRIX" ;
+ Text [ french ] = "MUNIT" ;
+ Text [ swedish ] = "ENHETSMATRIS" ;
+ Text [ dutch ] = "EENHEIDSMAT" ;
+ Text [ spanish ] = "MUNITARIA" ;
+ Text [ english_us ] = "MUNIT" ;
+ Text[ chinese_simplified ] = "MUNIT";
+ Text[ russian ] = "";
+ Text[ polish ] = "MACIERZUNITARNA";
+ Text[ japanese ] = "MUNIT";
+ Text[ chinese_traditional ] = "MUNIT";
+ Text[ arabic ] = "MUNIT";
+ Text[ dutch ] = "EENHEIDSMAT";
+ Text[ chinese_simplified ] = "MUNIT";
+ Text[ greek ] = "MUNIT";
+ Text[ korean ] = "MUNIT";
+ Text[ turkish ] = "MUNIT";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_BACK_SOLVER
+ {
+ Text = "ZIELWERTSUCHE" ;
+ Text [ english ] = "GOALSEEK" ;
+ Text [ norwegian ] = "MLSK" ;
+ Text [ italian ] = "RICERCA VALORE DESTINAZIONE" ;
+ Text [ portuguese_brazilian ] = "BUSCADEOBJETIVO" ;
+ Text [ portuguese ] = "ATINGIROBJECTIVO" ;
+ Text [ finnish ] = "GOALSEEK" ;
+ Text [ danish ] = "MLSGNING" ;
+ Text [ french ] = "CHERCHEVALCIBLE" ;
+ Text [ swedish ] = "MLSKNING" ;
+ Text [ dutch ] = "DOELZOEKEN" ;
+ Text [ spanish ] = "VALORPRETENDIDO" ;
+ Text [ english_us ] = "GOALSEEK" ;
+ Text[ chinese_simplified ] = "GOALSEEK";
+ Text[ russian ] = "";
+ Text[ polish ] = "SZUKAJ WYNIKU";
+ Text[ japanese ] = "GOALSEEK";
+ Text[ chinese_traditional ] = "GOALSEEK";
+ Text[ arabic ] = " ";
+ Text[ dutch ] = "DOELZOEKEN";
+ Text[ chinese_simplified ] = "GOALSEEK";
+ Text[ greek ] = "GOALSEEK";
+ Text[ korean ] = "GOALSEEK";
+ Text[ turkish ] = "GOALSEEK";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_HYP_GEOM_DIST
+ {
+ Text = "HYPGEOMVERT" ;
+ Text [ english ] = "HYPGEOMDIST" ;
+ Text [ norwegian ] = "HYPGEOMDIST" ;
+ Text [ italian ] = "DISTRIB.IPERGEOM" ;
+ Text [ portuguese_brazilian ] = "HYPGEOMDIST" ;
+ Text [ portuguese ] = "DIST.HIPERGEOM" ;
+ Text [ finnish ] = "HYPGEOMDIST" ;
+ Text [ danish ] = "HYPGEOFORDELING" ;
+ Text [ french ] = "LOI.HYPERGEOMETRIQUE" ;
+ Text [ swedish ] = "HYPGEOMFRD" ;
+ Text [ dutch ] = "HYPERGEO.VERD" ;
+ Text [ spanish ] = "DISTR.HIPERGEOM" ;
+ Text [ english_us ] = "HYPGEOMDIST" ;
+ Text[ chinese_simplified ] = "HYPGEOMDIST";
+ Text[ russian ] = "";
+ Text[ polish ] = "ROZKAD.HIPERGEOM";
+ Text[ japanese ] = "HYPGEOMDIST";
+ Text[ chinese_traditional ] = "HYPGEOMDIST";
+ Text[ arabic ] = "HYPGEOMDIST";
+ Text[ dutch ] = "HYPERGEO.VERD";
+ Text[ chinese_simplified ] = "HYPGEOMDIST";
+ Text[ greek ] = "HYPGEOMDIST";
+ Text[ korean ] = "HYPGEOMDIST";
+ Text[ turkish ] = "HYPGEOMDIST";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_LOG_NORM_DIST
+ {
+ Text = "LOGNORMVERT" ;
+ Text [ english ] = "LOGNORMDIST" ;
+ Text [ norwegian ] = "LOGNORMDIST" ;
+ Text [ italian ] = "DISTRIB.LOGNORM" ;
+ Text [ portuguese_brazilian ] = "LOGNORMDIST" ;
+ Text [ portuguese ] = "DIST.NORMAL.LOG" ;
+ Text [ finnish ] = "LOGNORMDIST" ;
+ Text [ danish ] = "LOGNORMFORDELING" ;
+ Text [ french ] = "LOI.LOGNORMALE" ;
+ Text [ swedish ] = "LOGNORMFRD" ;
+ Text [ dutch ] = "LOG.NORM.VERD" ;
+ Text [ spanish ] = "DISTR.LOG.NORM" ;
+ Text [ english_us ] = "LOGNORMDIST" ;
+ Text[ chinese_simplified ] = "LOGNORMDIST";
+ Text[ russian ] = "";
+ Text[ polish ] = "ROZKAD.LOG";
+ Text[ japanese ] = "LOGNORMDIST";
+ Text[ chinese_traditional ] = "LOGNORMDIST";
+ Text[ arabic ] = "LOGNORMDIST";
+ Text[ dutch ] = "LOG.NORM.VERD";
+ Text[ chinese_simplified ] = "LOGNORMDIST";
+ Text[ greek ] = "LOGNORMDIST";
+ Text[ korean ] = "LOGNORMDIST";
+ Text[ turkish ] = "LOGNORMDIST";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_T_DIST
+ {
+ Text = "TVERT" ;
+ Text [ english ] = "TDIST" ;
+ Text [ norwegian ] = "TDIST" ;
+ Text [ italian ] = "DISTRIB.T" ;
+ Text [ portuguese_brazilian ] = "TDIST" ;
+ Text [ portuguese ] = "DIST.T" ;
+ Text [ finnish ] = "TDIST" ;
+ Text [ danish ] = "TFORDELING" ;
+ Text [ french ] = "LOI.STUDENT" ;
+ Text [ swedish ] = "TFRD" ;
+ Text [ dutch ] = "T.VERD" ;
+ Text [ spanish ] = "DISTR.T" ;
+ Text [ english_us ] = "TDIST" ;
+ Text[ chinese_simplified ] = "TDIST";
+ Text[ russian ] = "";
+ Text[ polish ] = "ROZKAD.T";
+ Text[ japanese ] = "TDIST";
+ Text[ chinese_traditional ] = "TDIST";
+ Text[ arabic ] = "TDIST";
+ Text[ dutch ] = "T.VERD";
+ Text[ chinese_simplified ] = "TDIST";
+ Text[ greek ] = "TDIST";
+ Text[ korean ] = "TDIST";
+ Text[ turkish ] = "TDIST";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_F_DIST
+ {
+ Text = "FVERT" ;
+ Text [ english ] = "FDIST" ;
+ Text [ norwegian ] = "FDIST" ;
+ Text [ italian ] = "DISTRIB.F" ;
+ Text [ portuguese_brazilian ] = "FDIST" ;
+ Text [ portuguese ] = "DIST.F" ;
+ Text [ finnish ] = "FDIST" ;
+ Text [ danish ] = "FFORDELING" ;
+ Text [ french ] = "LOI.F" ;
+ Text [ swedish ] = "FFRD" ;
+ Text [ dutch ] = "F.VERDELING" ;
+ Text [ spanish ] = "DISTR.F" ;
+ Text [ english_us ] = "FDIST" ;
+ Text[ chinese_simplified ] = "FDIST";
+ Text[ russian ] = "F";
+ Text[ polish ] = "ROZKAD.F";
+ Text[ japanese ] = "FDIST";
+ Text[ chinese_traditional ] = "FDIST";
+ Text[ arabic ] = "FDIST";
+ Text[ dutch ] = "F.VERDELING";
+ Text[ chinese_simplified ] = "FDIST";
+ Text[ greek ] = "FDIST";
+ Text[ korean ] = "FDIST";
+ Text[ turkish ] = "FDIST";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_CHI_DIST
+ {
+ Text = "CHIVERT" ;
+ Text [ english ] = "CHIDIST" ;
+ Text [ norwegian ] = "CHIDIST" ;
+ Text [ italian ] = "DISTRIB.CHI" ;
+ Text [ portuguese_brazilian ] = "CHIDIST" ;
+ Text [ portuguese ] = "DIST.CHI" ;
+ Text [ finnish ] = "CHIDIST" ;
+ Text [ danish ] = "CHIFORDELING" ;
+ Text [ french ] = "LOI.KHIDEUX" ;
+ Text [ swedish ] = "CHI2FRD" ;
+ Text [ dutch ] = "CHI.KWADRAAT" ;
+ Text [ spanish ] = "DISTR.JI" ;
+ Text [ english_us ] = "CHIDIST" ;
+ Text[ chinese_simplified ] = "CHIDIST";
+ Text[ russian ] = "2";
+ Text[ polish ] = "ROZKAD.CHI";
+ Text[ japanese ] = "CHIDIST";
+ Text[ chinese_traditional ] = "CHIDIST";
+ Text[ arabic ] = "CHIDIST";
+ Text[ dutch ] = "CHI.KWADRAAT";
+ Text[ chinese_simplified ] = "CHIDIST";
+ Text[ greek ] = "CHIDIST";
+ Text[ korean ] = "CHIDIST";
+ Text[ turkish ] = "CHIDIST";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_WEIBULL
+ {
+ Text = "WEIBULL" ;
+ Text [ english ] = "WEIBULL" ;
+ Text [ norwegian ] = "WEIBULL" ;
+ Text [ italian ] = "WEIBULL" ;
+ Text [ portuguese_brazilian ] = "WEIBULL" ;
+ Text [ portuguese ] = "WEIBULL" ;
+ Text [ finnish ] = "WEIBULL" ;
+ Text [ danish ] = "WEIBULL" ;
+ Text [ french ] = "LOI.WEIBULL" ;
+ Text [ swedish ] = "WEIBULL" ;
+ Text [ dutch ] = "WEIBULL" ;
+ Text [ spanish ] = "DIST.WEIBULL" ;
+ Text [ english_us ] = "WEIBULL" ;
+ Text[ chinese_simplified ] = "WEIBULL";
+ Text[ russian ] = "";
+ Text[ polish ] = "ROZKAD.WEIBULL";
+ Text[ japanese ] = "WEIBULL";
+ Text[ chinese_traditional ] = "WEIBULL";
+ Text[ arabic ] = "WEIBULL";
+ Text[ dutch ] = "WEIBULL";
+ Text[ chinese_simplified ] = "WEIBULL";
+ Text[ greek ] = "WEIBULL";
+ Text[ korean ] = "WEIBULL";
+ Text[ turkish ] = "WEIBULL";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_NEG_BINOM_VERT
+ {
+ Text = "NEGBINOMVERT" ;
+ Text [ english ] = "NEGBINOMDIST" ;
+ Text [ norwegian ] = "NEGBINOMDIST" ;
+ Text [ italian ] = "DISTRIB.BINOM.NEG" ;
+ Text [ portuguese_brazilian ] = "NEGBINOMDIST" ;
+ Text [ portuguese ] = "DIST.BINOM.NEG" ;
+ Text [ finnish ] = "NEGBINOMDIST" ;
+ Text [ danish ] = "NEGBINOMFORDELING" ;
+ Text [ french ] = "LOI.BINOMIALE.NEG" ;
+ Text [ swedish ] = "NEGBINOMFRD" ;
+ Text [ dutch ] = "NEG.BINOM.VERD" ;
+ Text [ spanish ] = "NEGBINOMDIST" ;
+ Text [ english_us ] = "NEGBINOMDIST" ;
+ Text[ chinese_simplified ] = "NEGBINOMDIST";
+ Text[ russian ] = "";
+ Text[ polish ] = "NEG.ROZKAD.DWUMIANOWY";
+ Text[ japanese ] = "NEGBINOMDIST";
+ Text[ chinese_traditional ] = "NEGBINOMDIST";
+ Text[ arabic ] = "NEGBINOMDIST";
+ Text[ dutch ] = "NEG.BINOM.VERD";
+ Text[ chinese_simplified ] = "NEGBINOMDIST";
+ Text[ greek ] = "NEGBINOMDIST";
+ Text[ korean ] = "NEGBINOMDIST";
+ Text[ turkish ] = "NEGBINOMDIST";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_KRIT_BINOM
+ {
+ Text = "KRITBINOM" ;
+ Text [ english ] = "CRITBINOM" ;
+ Text [ norwegian ] = "CRITBINOM" ;
+ Text [ italian ] = "CRIT.BINOM" ;
+ Text [ portuguese_brazilian ] = "CRITBINOM" ;
+ Text [ portuguese ] = "CRIT.BINOM" ;
+ Text [ finnish ] = "CRITBINOM" ;
+ Text [ danish ] = "KRITBINOM" ;
+ Text [ french ] = "CRITERE.LOI.BINOMIALE" ;
+ Text [ swedish ] = "KRITBINOM" ;
+ Text [ dutch ] = "CRIT.BINOM" ;
+ Text [ spanish ] = "BINOM.CRIT" ;
+ Text [ english_us ] = "CRITBINOM" ;
+ Text[ chinese_simplified ] = "CRITBINOM";
+ Text[ russian ] = "";
+ Text[ polish ] = "PRG.ROZKAD.DWUM";
+ Text[ japanese ] = "CRITBINOM";
+ Text[ chinese_traditional ] = "CRITBINOM";
+ Text[ arabic ] = "CRITBINOM";
+ Text[ dutch ] = "CRIT.BINOM";
+ Text[ chinese_simplified ] = "CRITBINOM";
+ Text[ greek ] = "CRITBINOM";
+ Text[ korean ] = "CRITBINOM";
+ Text[ turkish ] = "CRITBINOM";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_KURT
+ {
+ Text = "KURT" ;
+ Text [ english ] = "KURT" ;
+ Text [ norwegian ] = "KURT" ;
+ Text [ italian ] = "CURTOSI" ;
+ Text [ portuguese_brazilian ] = "KURT" ;
+ Text [ portuguese ] = "KURT" ;
+ Text [ finnish ] = "KURT" ;
+ Text [ danish ] = "TOPSTEJL" ;
+ Text [ french ] = "KURTOSIS" ;
+ Text [ swedish ] = "TOPPIGHET" ;
+ Text [ dutch ] = "KURTOSIS" ;
+ Text [ spanish ] = "CURTOSIS" ;
+ Text [ english_us ] = "KURT" ;
+ Text[ chinese_simplified ] = "KURT";
+ Text[ russian ] = "";
+ Text[ polish ] = "KURTOZA";
+ Text[ japanese ] = "KURT";
+ Text[ chinese_traditional ] = "KURT";
+ Text[ arabic ] = "KURT";
+ Text[ dutch ] = "KURTOSIS";
+ Text[ chinese_simplified ] = "KURT";
+ Text[ greek ] = "KURT";
+ Text[ korean ] = "KURT";
+ Text[ turkish ] = "KURT";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_HAR_MEAN
+ {
+ Text = "HARMITTEL" ;
+ Text [ english ] = "HARMEAN" ;
+ Text [ norwegian ] = "HARMEAN" ;
+ Text [ italian ] = "MEDIA.ARMONICA" ;
+ Text [ portuguese_brazilian ] = "HARMEAN" ;
+ Text [ portuguese ] = "MDIA.HARMNICA" ;
+ Text [ finnish ] = "HARMEAN" ;
+ Text [ danish ] = "HARMIDDELVRDI" ;
+ Text [ french ] = "MOYENNE.HARMONIQUE" ;
+ Text [ swedish ] = "HARMMEDEL" ;
+ Text [ dutch ] = "HARM.GEM" ;
+ Text [ spanish ] = "MEDIA.ARMO" ;
+ Text [ english_us ] = "HARMEAN" ;
+ Text[ chinese_simplified ] = "HARMEAN";
+ Text[ russian ] = "";
+ Text[ polish ] = "REDNIA.HARMONICZNA";
+ Text[ japanese ] = "HARMEAN";
+ Text[ chinese_traditional ] = "HARMEAN";
+ Text[ arabic ] = "HARMEAN";
+ Text[ dutch ] = "HARM.GEM";
+ Text[ chinese_simplified ] = "HARMEAN";
+ Text[ greek ] = "HARMEAN";
+ Text[ korean ] = "HARMEAN";
+ Text[ turkish ] = "HARMEAN";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_GEO_MEAN
+ {
+ Text = "GEOMITTEL" ;
+ Text [ english ] = "GEOMEAN" ;
+ Text [ norwegian ] = "GEOMEAN" ;
+ Text [ italian ] = "MEDIA.GEOMETRICA" ;
+ Text [ portuguese_brazilian ] = "GEOMEAN" ;
+ Text [ portuguese ] = "MDIA.GEOMTRICA" ;
+ Text [ finnish ] = "GEOMEAN" ;
+ Text [ danish ] = "GEOMIDDELVRDI" ;
+ Text [ french ] = "MOYENNE.GEOMETRIQUE" ;
+ Text [ swedish ] = "GEOMEAN" ;
+ Text [ dutch ] = "MEETK.GEM" ;
+ Text [ spanish ] = "MEDIA.GEOM" ;
+ Text [ english_us ] = "GEOMEAN" ;
+ Text[ chinese_simplified ] = "GEOMEAN";
+ Text[ russian ] = "";
+ Text[ polish ] = "REDNIA.GEOMETRYCZNA";
+ Text[ japanese ] = "GEOMEAN";
+ Text[ chinese_traditional ] = "GEOMEAN";
+ Text[ arabic ] = "GEOMEAN";
+ Text[ dutch ] = "MEETK.GEM";
+ Text[ chinese_simplified ] = "GEOMEAN";
+ Text[ greek ] = "GEOMEAN";
+ Text[ korean ] = "GEOMEAN";
+ Text[ turkish ] = "GEOMEAN";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_STANDARD
+ {
+ Text = "STANDARDISIERUNG" ;
+ Text [ english ] = "STANDARDIZE" ;
+ Text [ norwegian ] = "STANDARDIZE" ;
+ Text [ italian ] = "NORMALIZZA" ;
+ Text [ portuguese_brazilian ] = "STANDARDIZE" ;
+ Text [ portuguese ] = "NORMALIZAR" ;
+ Text [ finnish ] = "STANDARDIZE" ;
+ Text [ danish ] = "STANDARDISER" ;
+ Text [ french ] = "CENTREE.REDUITE" ;
+ Text [ swedish ] = "STANDARDISERA" ;
+ Text [ dutch ] = "STANDAARDISERING" ;
+ Text [ spanish ] = "NORMALIZACIN" ;
+ Text [ english_us ] = "STANDARDIZE" ;
+ Text[ chinese_simplified ] = "STANDARDIZE";
+ Text[ russian ] = "";
+ Text[ polish ] = "NORMALIZUJ";
+ Text[ japanese ] = "STANDARDIZE";
+ Text[ chinese_traditional ] = "STANDARDIZE";
+ Text[ arabic ] = "STANDARDIZE";
+ Text[ dutch ] = "STANDAARDISERING";
+ Text[ chinese_simplified ] = "STANDARDIZE";
+ Text[ greek ] = "STANDARDIZE";
+ Text[ korean ] = "STANDARDIZE";
+ Text[ turkish ] = "STANDARDIZE";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_AVE_DEV
+ {
+ Text = "MITTELABW" ;
+ Text [ english ] = "AVEDEV" ;
+ Text [ norwegian ] = "AVEDEV" ;
+ Text [ italian ] = "MEDIA.DEV" ;
+ Text [ portuguese_brazilian ] = "AVEDEV" ;
+ Text [ portuguese ] = "DESV.MDIO" ;
+ Text [ finnish ] = "AVEDEV" ;
+ Text [ danish ] = "MAD" ;
+ Text [ french ] = "ECART.MOYEN" ;
+ Text [ swedish ] = "MEDELAVV" ;
+ Text [ dutch ] = "GEM.DEVIATIE" ;
+ Text [ spanish ] = "DESVPROM" ;
+ Text [ english_us ] = "AVEDEV" ;
+ Text[ chinese_simplified ] = "AVEDEV";
+ Text[ russian ] = "";
+ Text[ polish ] = "ODCH.REDNIE";
+ Text[ japanese ] = "AVEDEV";
+ Text[ chinese_traditional ] = "AVEDEV";
+ Text[ arabic ] = "AVEDEV";
+ Text[ dutch ] = "GEM.DEVIATIE";
+ Text[ chinese_simplified ] = "AVEDEV";
+ Text[ greek ] = "AVEDEV";
+ Text[ korean ] = "AVEDEV";
+ Text[ turkish ] = "AVEDEV";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_SCHIEFE
+ {
+ Text = "SCHIEFE" ;
+ Text [ english ] = "SKEW" ;
+ Text [ norwegian ] = "SKEW" ;
+ Text [ italian ] = "ASIMMETRIA" ;
+ Text [ portuguese_brazilian ] = "SKEW" ;
+ Text [ portuguese ] = "ASSIMETRIA" ;
+ Text [ finnish ] = "SKEW" ;
+ Text [ danish ] = "SKVHED" ;
+ Text [ french ] = "COEFFICIENT.ASYMETRIE" ;
+ Text [ swedish ] = "SNEDHET" ;
+ Text [ dutch ] = "SCHEEFHEID" ;
+ Text [ spanish ] = "COEFICIENTE.ASIMETRIA" ;
+ Text [ english_us ] = "SKEW" ;
+ Text[ chinese_simplified ] = "SKEW";
+ Text[ russian ] = "";
+ Text[ polish ] = "SKONO";
+ Text[ japanese ] = "SKEW";
+ Text[ chinese_traditional ] = "SKEW";
+ Text[ arabic ] = "SKEW";
+ Text[ dutch ] = "SCHEEFHEID";
+ Text[ chinese_simplified ] = "SKEW";
+ Text[ greek ] = "SKEW";
+ Text[ korean ] = "SKEW";
+ Text[ turkish ] = "SKEW";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_DEV_SQ
+ {
+ Text = "SUMQUADABW" ;
+ Text [ english ] = "DEVSQ" ;
+ Text [ norwegian ] = "DEVSQ" ;
+ Text [ italian ] = "DEV.Q" ;
+ Text [ portuguese_brazilian ] = "DEVSQ" ;
+ Text [ portuguese ] = "DEVSQ" ;
+ Text [ finnish ] = "DEVSQ" ;
+ Text [ danish ] = "SAK" ;
+ Text [ french ] = "SOMME.CARRES.ECARTS" ;
+ Text [ swedish ] = "KVADAVV" ;
+ Text [ dutch ] = "DEV.KWAD" ;
+ Text [ spanish ] = "DESVIA2" ;
+ Text [ english_us ] = "DEVSQ" ;
+ Text[ chinese_simplified ] = "DEVSQ";
+ Text[ russian ] = "";
+ Text[ polish ] = "ODCH.KWADRATOWE";
+ Text[ japanese ] = "DEVSQ";
+ Text[ chinese_traditional ] = "DEVSQ";
+ Text[ arabic ] = "DEVSQ";
+ Text[ dutch ] = "DEV.KWAD";
+ Text[ chinese_simplified ] = "DEVSQ";
+ Text[ greek ] = "DEVSQ";
+ Text[ korean ] = "DEVSQ";
+ Text[ turkish ] = "DEVSQ";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_MEDIAN
+ {
+ Text = "MEDIAN" ;
+ Text [ english ] = "MEDIAN" ;
+ Text [ norwegian ] = "MEDIAN" ;
+ Text [ italian ] = "MEDIANA" ;
+ Text [ portuguese_brazilian ] = "MEDIAN" ;
+ Text [ portuguese ] = "MEDIANA" ;
+ Text [ finnish ] = "MEDIAN" ;
+ Text [ danish ] = "MEDIAN" ;
+ Text [ french ] = "MEDIANE" ;
+ Text [ swedish ] = "MEDIAN" ;
+ Text [ dutch ] = "MEDIAAN" ;
+ Text [ spanish ] = "MEDIANA" ;
+ Text [ english_us ] = "MEDIAN" ;
+ Text[ chinese_simplified ] = "MEDIAN";
+ Text[ russian ] = "";
+ Text[ polish ] = "MEDIANA";
+ Text[ japanese ] = "MEDIAN";
+ Text[ chinese_traditional ] = "MEDIAN";
+ Text[ arabic ] = "MEDIAN";
+ Text[ dutch ] = "MEDIAAN";
+ Text[ chinese_simplified ] = "MEDIAN";
+ Text[ greek ] = "MEDIAN";
+ Text[ korean ] = "MEDIAN";
+ Text[ turkish ] = "MEDIAN";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_MODAL_VALUE
+ {
+ Text = "MODALWERT" ;
+ Text [ english ] = "MODE" ;
+ Text [ norwegian ] = "MODE" ;
+ Text [ italian ] = "MODA" ;
+ Text [ portuguese_brazilian ] = "MODE" ;
+ Text [ portuguese ] = "MODAL" ;
+ Text [ finnish ] = "MODE" ;
+ Text [ danish ] = "HYPPIGST" ;
+ Text [ french ] = "MODE" ;
+ Text [ swedish ] = "TYPVRDE" ;
+ Text [ dutch ] = "MODUS" ;
+ Text [ spanish ] = "MODA" ;
+ Text [ english_us ] = "MODE" ;
+ Text[ chinese_simplified ] = "MODE";
+ Text[ russian ] = "";
+ Text[ polish ] = "WYST.NAJCZʌCIEJ";
+ Text[ japanese ] = "MODE";
+ Text[ chinese_traditional ] = "MODE";
+ Text[ arabic ] = "MODE";
+ Text[ dutch ] = "MODUS";
+ Text[ chinese_simplified ] = "MODE";
+ Text[ greek ] = "MODE";
+ Text[ korean ] = "MODE";
+ Text[ turkish ] = "MODE";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_Z_TEST
+ {
+ Text = "GTEST" ;
+ Text [ english ] = "ZTEST" ;
+ Text [ norwegian ] = "ZTEST" ;
+ Text [ italian ] = "TEST.Z" ;
+ Text [ portuguese_brazilian ] = "ZTEST" ;
+ Text [ portuguese ] = "TESTEZ" ;
+ Text [ finnish ] = "ZTEST" ;
+ Text [ danish ] = "ZTEST" ;
+ Text [ french ] = "TEST.Z" ;
+ Text [ swedish ] = "ZTEST" ;
+ Text [ dutch ] = "Z.TOETS" ;
+ Text [ spanish ] = "PRUEBA.Z" ;
+ Text [ english_us ] = "ZTEST" ;
+ Text[ chinese_simplified ] = "ZTEST";
+ Text[ russian ] = "Z";
+ Text[ polish ] = "TEST.Z";
+ Text[ japanese ] = "ZTEST";
+ Text[ chinese_traditional ] = "ZTEST";
+ Text[ arabic ] = "ZTEST";
+ Text[ dutch ] = "Z.TOETS";
+ Text[ chinese_simplified ] = "ZTEST";
+ Text[ greek ] = "ZTEST";
+ Text[ korean ] = "ZTEST";
+ Text[ turkish ] = "ZTEST";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_T_TEST
+ {
+ Text = "TTEST" ;
+ Text [ english ] = "TTEST" ;
+ Text [ norwegian ] = "TTEST" ;
+ Text [ italian ] = "TEST.T" ;
+ Text [ portuguese_brazilian ] = "TTEST" ;
+ Text [ portuguese ] = "TESTE.T" ;
+ Text [ finnish ] = "TTEST" ;
+ Text [ danish ] = "TTEST" ;
+ Text [ french ] = "TEST.STUDENT" ;
+ Text [ swedish ] = "TTEST" ;
+ Text [ dutch ] = "T.TOETS" ;
+ Text [ spanish ] = "PRUEBA.T" ;
+ Text [ english_us ] = "TTEST" ;
+ Text[ chinese_simplified ] = "TTEST";
+ Text[ russian ] = "";
+ Text[ polish ] = "TEST.T";
+ Text[ japanese ] = "TTEST";
+ Text[ chinese_traditional ] = "TTEST";
+ Text[ arabic ] = "TTEST";
+ Text[ dutch ] = "T.TOETS";
+ Text[ chinese_simplified ] = "TTEST";
+ Text[ greek ] = "TTEST";
+ Text[ korean ] = "TTEST";
+ Text[ turkish ] = "TTEST";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_RANK
+ {
+ Text = "RANG" ;
+ Text [ english ] = "RANK" ;
+ Text [ norwegian ] = "REKKE" ;
+ Text [ italian ] = "RANGO" ;
+ Text [ portuguese_brazilian ] = "RANK" ;
+ Text [ portuguese ] = "ORDEM" ;
+ Text [ finnish ] = "RANK" ;
+ Text [ danish ] = "PLADS" ;
+ Text [ french ] = "RANG" ;
+ Text [ swedish ] = "RANG" ;
+ Text [ dutch ] = "RANG" ;
+ Text [ spanish ] = "JERARQUA" ;
+ Text [ english_us ] = "RANK" ;
+ Text[ chinese_simplified ] = "RANK";
+ Text[ russian ] = "";
+ Text[ polish ] = "POZYCJA";
+ Text[ japanese ] = "RANK";
+ Text[ chinese_traditional ] = "RANK";
+ Text[ arabic ] = "RANK";
+ Text[ dutch ] = "RANG";
+ Text[ chinese_simplified ] = "RANK";
+ Text[ greek ] = "RANK";
+ Text[ korean ] = "RANK";
+ Text[ turkish ] = "RANK";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_PERCENTILE
+ {
+ Text = "QUANTIL" ;
+ Text [ english ] = "PERCENTILE" ;
+ Text [ norwegian ] = "PERSENTIL" ;
+ Text [ italian ] = "PERCENTILE" ;
+ Text [ portuguese_brazilian ] = "PERCENTILE" ;
+ Text [ portuguese ] = "PERCENTIL" ;
+ Text [ finnish ] = "PERCENTILE" ;
+ Text [ danish ] = "FRAKTIL" ;
+ Text [ french ] = "CENTILE" ;
+ Text [ swedish ] = "PERCENTIL" ;
+ Text [ dutch ] = "PERCENTIEL" ;
+ Text [ spanish ] = "PERCENTIL" ;
+ Text [ english_us ] = "PERCENTILE" ;
+ Text[ chinese_simplified ] = "PERCENTILE";
+ Text[ russian ] = "";
+ Text[ polish ] = "PERCENTYL";
+ Text[ japanese ] = "PERCENTILE";
+ Text[ chinese_traditional ] = "PERCENTILE";
+ Text[ arabic ] = "PERCENTILE";
+ Text[ dutch ] = "PERCENTIEL";
+ Text[ chinese_simplified ] = "PERCENTILE";
+ Text[ greek ] = "PERCENTILE";
+ Text[ korean ] = "PERCENTILE";
+ Text[ turkish ] = "PERCENTILE";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_PERCENT_RANK
+ {
+ Text = "QUANTILSRANG" ;
+ Text [ english ] = "PERCENTRANK" ;
+ Text [ norwegian ] = "PROSENTREKKE" ;
+ Text [ italian ] = "PERCENT.RANGO" ;
+ Text [ portuguese_brazilian ] = "PERCENTRANK" ;
+ Text [ portuguese ] = "ORDEM.PERCENTUAL" ;
+ Text [ finnish ] = "PERCENTRANK" ;
+ Text [ danish ] = "PROCENTPLADS" ;
+ Text [ french ] = "RANG.POURCENTAGE" ;
+ Text [ swedish ] = "PROCENTRANG" ;
+ Text [ dutch ] = "PERCENT.RANG" ;
+ Text [ spanish ] = "RANGO.PERCENTIL" ;
+ Text [ english_us ] = "PERCENTRANK" ;
+ Text[ chinese_simplified ] = "PERCENTRANK";
+ Text[ russian ] = "";
+ Text[ polish ] = "PROCENT.POZYCJA";
+ Text[ japanese ] = "PERCENTRANK";
+ Text[ chinese_traditional ] = "PERCENTRANK";
+ Text[ arabic ] = "PERCENTRANK";
+ Text[ dutch ] = "PERCENT.RANG";
+ Text[ chinese_simplified ] = "PERCENTRANK";
+ Text[ greek ] = "PERCENTRANK";
+ Text[ korean ] = "PERCENTRANK";
+ Text[ turkish ] = "PERCENTRANK";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_LARGE
+ {
+ /* ### ACHTUNG: Neuer Text in Resource? KGRSSTE : KGRSSTE */
+ Text = "KGRSSTE" ;
+ Text [ english ] = "LARGE" ;
+ Text [ norwegian ] = "STOR" ;
+ Text [ italian ] = "GRANDE" ;
+ Text [ portuguese_brazilian ] = "LARGE" ;
+ Text [ portuguese ] = "MAIOR" ;
+ Text [ finnish ] = "LARGE" ;
+ Text [ danish ] = "STRSTE" ;
+ Text [ french ] = "GRANDE.VALEUR" ;
+ Text [ swedish ] = "STRSTA" ;
+ Text [ dutch ] = "GROOTSTE" ;
+ Text [ spanish ] = "K.ESIMO.MAYOR" ;
+ Text [ english_us ] = "LARGE" ;
+ Text[ chinese_simplified ] = "LARGE";
+ Text[ russian ] = "";
+ Text[ polish ] = "MAX.K";
+ Text[ japanese ] = "LARGE";
+ Text[ chinese_traditional ] = "LARGE";
+ Text[ arabic ] = "LARGE";
+ Text[ dutch ] = "GROOTSTE";
+ Text[ chinese_simplified ] = "LARGE";
+ Text[ greek ] = "LARGE";
+ Text[ korean ] = "LARGE";
+ Text[ turkish ] = "LARGE";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_SMALL
+ {
+ Text = "KKLEINSTE" ;
+ Text [ english ] = "SMALL" ;
+ Text [ norwegian ] = "LITEN" ;
+ Text [ italian ] = "PICCOLO" ;
+ Text [ portuguese_brazilian ] = "SMALL" ;
+ Text [ portuguese ] = "MENOR" ;
+ Text [ finnish ] = "SMALL" ;
+ Text [ danish ] = "MINDSTE" ;
+ Text [ french ] = "PETITE.VALEUR" ;
+ Text [ swedish ] = "MINSTA" ;
+ Text [ dutch ] = "KLEINSTE" ;
+ Text [ spanish ] = "K.ESIMO.MENOR" ;
+ Text [ english_us ] = "SMALL" ;
+ Text[ chinese_simplified ] = "SMALL";
+ Text[ russian ] = "";
+ Text[ polish ] = "MIN.K";
+ Text[ japanese ] = "SMALL";
+ Text[ chinese_traditional ] = "SMALL";
+ Text[ arabic ] = "SMALL";
+ Text[ dutch ] = "KLEINSTE";
+ Text[ chinese_simplified ] = "SMALL";
+ Text[ greek ] = "SMALL";
+ Text[ korean ] = "SMALL";
+ Text[ turkish ] = "SMALL";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_FREQUENCY
+ {
+ /* ### ACHTUNG: Neuer Text in Resource? HUFIGKEIT : HUFIGKEIT */
+ Text = "HUFIGKEIT" ;
+ Text [ english ] = "FREQUENCY" ;
+ Text [ norwegian ] = "FREKVENS" ;
+ Text [ italian ] = "FREQUENZA" ;
+ Text [ portuguese_brazilian ] = "FREQUENCY" ;
+ Text [ portuguese ] = "FREQUNCIA" ;
+ Text [ finnish ] = "FREQUENCY" ;
+ Text [ danish ] = "FREKVENS" ;
+ Text [ french ] = "FREQUENCE" ;
+ Text [ swedish ] = "FREKVENS" ;
+ Text [ dutch ] = "INTERVAL" ;
+ Text [ spanish ] = "FRECUENCIA" ;
+ Text [ english_us ] = "FREQUENCY" ;
+ Text[ chinese_simplified ] = "FREQUENCY";
+ Text[ russian ] = "";
+ Text[ polish ] = "CZSTO";
+ Text[ japanese ] = "FREQUENCY";
+ Text[ chinese_traditional ] = "FREQUENCY";
+ Text[ arabic ] = "FREQUENCY";
+ Text[ dutch ] = "INTERVAL";
+ Text[ chinese_simplified ] = "FREQUENCY";
+ Text[ greek ] = "FREQUENCY";
+ Text[ korean ] = "FREQUENCY";
+ Text[ turkish ] = "FREQUENCY";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_QUARTILE
+ {
+ Text = "QUARTILE" ;
+ Text [ english ] = "QUARTILE" ;
+ Text [ norwegian ] = "QUARTILE" ;
+ Text [ italian ] = "QUARTILE" ;
+ Text [ portuguese_brazilian ] = "QUARTILE" ;
+ Text [ portuguese ] = "QUARTIL" ;
+ Text [ finnish ] = "QUARTILE" ;
+ Text [ danish ] = "KVARTILE" ;
+ Text [ french ] = "QUARTILE" ;
+ Text [ swedish ] = "KVARTIL" ;
+ Text [ dutch ] = "KWARTIEL" ;
+ Text [ spanish ] = "CUARTIL" ;
+ Text [ english_us ] = "QUARTILE" ;
+ Text[ chinese_simplified ] = "QUARTILE";
+ Text[ russian ] = "";
+ Text[ polish ] = "KWARTYL";
+ Text[ japanese ] = "QUARTILE";
+ Text[ chinese_traditional ] = "QUARTILE";
+ Text[ arabic ] = "QUARTILE";
+ Text[ dutch ] = "KWARTIEL";
+ Text[ chinese_simplified ] = "QUARTILE";
+ Text[ greek ] = "QUARTILE";
+ Text[ korean ] = "QUARTILE";
+ Text[ turkish ] = "QUARTILE";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_NORM_INV
+ {
+ Text = "NORMINV" ;
+ Text [ english ] = "NORMINV" ;
+ Text [ norwegian ] = "NORMINV" ;
+ Text [ italian ] = "INV.NORM" ;
+ Text [ portuguese_brazilian ] = "NORMINV" ;
+ Text [ portuguese ] = "INV.NORM" ;
+ Text [ finnish ] = "NORMINV" ;
+ Text [ danish ] = "NORMINV" ;
+ Text [ french ] = "LOI.NORMALE.INVERSE" ;
+ Text [ swedish ] = "NORMINV" ;
+ Text [ dutch ] = "NORM.INV" ;
+ Text [ spanish ] = "DISTR.NORM.INV" ;
+ Text [ english_us ] = "NORMINV" ;
+ Text[ chinese_simplified ] = "NORMINV";
+ Text[ russian ] = "";
+ Text[ polish ] = "ROZKAD.NORMALNY.ODW";
+ Text[ japanese ] = "NORMINV";
+ Text[ chinese_traditional ] = "NORMINV";
+ Text[ arabic ] = "NORMINV";
+ Text[ dutch ] = "NORM.INV";
+ Text[ chinese_simplified ] = "NORMINV";
+ Text[ greek ] = "NORMINV";
+ Text[ korean ] = "NORMINV";
+ Text[ turkish ] = "NORMINV";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_CONFIDENCE
+ {
+ Text = "KONFIDENZ" ;
+ Text [ english ] = "CONFIDENCE" ;
+ Text [ norwegian ] = "CONFIDENCE" ;
+ Text [ italian ] = "CONFIDENZA" ;
+ Text [ portuguese_brazilian ] = "CONFIDENCE" ;
+ Text [ portuguese ] = "INT.CONFIANA" ;
+ Text [ finnish ] = "CONFIDENCE" ;
+ Text [ danish ] = "KONFIDENSINTERVAL" ;
+ Text [ french ] = "INTERVALLE.CONFIANCE" ;
+ Text [ swedish ] = "KONFIDENS" ;
+ Text [ dutch ] = "BETROUWBAARHEID" ;
+ Text [ spanish ] = "INTERVALO.CONFIANZA" ;
+ Text [ english_us ] = "CONFIDENCE" ;
+ Text[ chinese_simplified ] = "CONFIDENCE";
+ Text[ russian ] = "";
+ Text[ polish ] = "UFNO";
+ Text[ japanese ] = "CONFIDENCE";
+ Text[ chinese_traditional ] = "CONFIDENCE";
+ Text[ arabic ] = "CONFIDENCE";
+ Text[ dutch ] = "BETROUWBAARHEID";
+ Text[ chinese_simplified ] = "CONFIDENCE";
+ Text[ greek ] = "CONFIDENCE";
+ Text[ korean ] = "CONFIDENCE";
+ Text[ turkish ] = "CONFIDENCE";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_F_TEST
+ {
+ Text = "FTEST" ;
+ Text [ english ] = "FTEST" ;
+ Text [ norwegian ] = "FTEST" ;
+ Text [ italian ] = "TEST.F" ;
+ Text [ portuguese_brazilian ] = "FTEST" ;
+ Text [ portuguese ] = "TESTEF" ;
+ Text [ finnish ] = "FTEST" ;
+ Text [ danish ] = "FTEST" ;
+ Text [ french ] = "TEST.F" ;
+ Text [ swedish ] = "FTEST" ;
+ Text [ dutch ] = "F.TOETS" ;
+ Text [ spanish ] = "PRUEBA.F" ;
+ Text [ english_us ] = "FTEST" ;
+ Text[ chinese_simplified ] = "FTEST";
+ Text[ russian ] = "F";
+ Text[ polish ] = "TEST.F";
+ Text[ japanese ] = "FTEST";
+ Text[ chinese_traditional ] = "FTEST";
+ Text[ arabic ] = "FTEST";
+ Text[ dutch ] = "F.TOETS";
+ Text[ chinese_simplified ] = "FTEST";
+ Text[ greek ] = "FTEST";
+ Text[ korean ] = "FTEST";
+ Text[ turkish ] = "FTEST";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_TRIM_MEAN
+ {
+ Text = "GESTUTZTMITTEL" ;
+ Text [ english ] = "TRIMMEAN" ;
+ Text [ norwegian ] = "TRIMMEAN" ;
+ Text [ italian ] = "MEDIA.TRONCATA" ;
+ Text [ portuguese_brazilian ] = "TRIMMEAN" ;
+ Text [ portuguese ] = "MDIA.INTERNA" ;
+ Text [ finnish ] = "TRIMMEAN" ;
+ Text [ danish ] = "TRIMMIDDELVRDI" ;
+ Text [ french ] = "MOYENNE.REDUITE" ;
+ Text [ swedish ] = "TRIMMEDEL" ;
+ Text [ dutch ] = "GETRIMD.GEM" ;
+ Text [ spanish ] = "MEDIA.ACOTADA" ;
+ Text [ english_us ] = "TRIMMEAN" ;
+ Text[ chinese_simplified ] = "TRIMMEAN";
+ Text[ russian ] = "";
+ Text[ polish ] = "REDNIA.WEWN";
+ Text[ japanese ] = "TRIMMEAN";
+ Text[ chinese_traditional ] = "TRIMMEAN";
+ Text[ arabic ] = "TRIMMEAN";
+ Text[ dutch ] = "GETRIMD.GEM";
+ Text[ chinese_simplified ] = "TRIMMEAN";
+ Text[ greek ] = "TRIMMEAN";
+ Text[ korean ] = "TRIMMEAN";
+ Text[ turkish ] = "TRIMMEAN";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_PROB
+ {
+ Text = "WAHRSCHBEREICH" ;
+ Text [ english ] = "PROB" ;
+ Text [ norwegian ] = "PROB" ;
+ Text [ italian ] = "PROBABILIT" ;
+ Text [ portuguese_brazilian ] = "PROB" ;
+ Text [ portuguese ] = "PROB" ;
+ Text [ finnish ] = "PROB" ;
+ Text [ danish ] = "SANDSYNLIGHED" ;
+ Text [ french ] = "PROBABILITE" ;
+ Text [ swedish ] = "SANNOLIKHET" ;
+ Text [ dutch ] = "KANS" ;
+ Text [ spanish ] = "PROBABILIDAD" ;
+ Text [ english_us ] = "PROB" ;
+ Text[ chinese_simplified ] = "PROB";
+ Text[ russian ] = "";
+ Text[ polish ] = "PRAWDPD";
+ Text[ japanese ] = "PROB";
+ Text[ chinese_traditional ] = "PROB";
+ Text[ arabic ] = "PROB";
+ Text[ dutch ] = "KANS";
+ Text[ chinese_simplified ] = "PROB";
+ Text[ greek ] = "PROB";
+ Text[ korean ] = "PROB";
+ Text[ turkish ] = "PROB";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_CORREL
+ {
+ Text = "KORREL" ;
+ Text [ english ] = "CORREL" ;
+ Text [ norwegian ] = "CORREL" ;
+ Text [ italian ] = "CORRELAZIONE" ;
+ Text [ portuguese_brazilian ] = "CORREL" ;
+ Text [ portuguese ] = "CORREL" ;
+ Text [ finnish ] = "CORREL" ;
+ Text [ danish ] = "KORRELATION" ;
+ Text [ french ] = "COEFFICIENT.CORRELATION" ;
+ Text [ swedish ] = "KORREL" ;
+ Text [ dutch ] = "CORRELATIE" ;
+ Text [ spanish ] = "COEF.DE.CORREL" ;
+ Text [ english_us ] = "CORREL" ;
+ Text[ chinese_simplified ] = "CORREL";
+ Text[ russian ] = "";
+ Text[ polish ] = "WSP.KORELACJI";
+ Text[ japanese ] = "CORREL";
+ Text[ chinese_traditional ] = "CORREL";
+ Text[ arabic ] = "CORREL";
+ Text[ dutch ] = "CORRELATIE";
+ Text[ chinese_simplified ] = "CORREL";
+ Text[ greek ] = "CORREL";
+ Text[ korean ] = "CORREL";
+ Text[ turkish ] = "CORREL";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_COVAR
+ {
+ Text = "KOVAR" ;
+ Text [ english ] = "COVAR" ;
+ Text [ norwegian ] = "COVAR" ;
+ Text [ italian ] = "COVARIANZA" ;
+ Text [ portuguese_brazilian ] = "COVAR" ;
+ Text [ portuguese ] = "COVAR" ;
+ Text [ finnish ] = "COVAR" ;
+ Text [ danish ] = "KOVARIANS" ;
+ Text [ french ] = "COVARIANCE" ;
+ Text [ swedish ] = "KOVAR" ;
+ Text [ dutch ] = "COVARIANTIE" ;
+ Text [ spanish ] = "COVAR" ;
+ Text [ english_us ] = "COVAR" ;
+ Text[ chinese_simplified ] = "COVAR";
+ Text[ russian ] = "";
+ Text[ polish ] = "KOWARIANCJA";
+ Text[ japanese ] = "COVAR";
+ Text[ chinese_traditional ] = "COVAR";
+ Text[ arabic ] = "COVAR";
+ Text[ dutch ] = "COVARIANTIE";
+ Text[ chinese_simplified ] = "COVAR";
+ Text[ greek ] = "COVAR";
+ Text[ korean ] = "COVAR";
+ Text[ turkish ] = "COVAR";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_PEARSON
+ {
+ Text = "PEARSON" ;
+ Text [ english ] = "PEARSON" ;
+ Text [ norwegian ] = "PEARSON" ;
+ Text [ italian ] = "PEARSON" ;
+ Text [ portuguese_brazilian ] = "PEARSON" ;
+ Text [ portuguese ] = "PEARSON" ;
+ Text [ finnish ] = "PEARSON" ;
+ Text [ danish ] = "PEARSON" ;
+ Text [ french ] = "PEARSON" ;
+ Text [ swedish ] = "PEARSON" ;
+ Text [ dutch ] = "PEARSON" ;
+ Text [ spanish ] = "PEARSON" ;
+ Text [ english_us ] = "PEARSON" ;
+ Text[ chinese_simplified ] = "PEARSON";
+ Text[ russian ] = "";
+ Text[ polish ] = "PEARSON";
+ Text[ japanese ] = "PEARSON";
+ Text[ chinese_traditional ] = "PEARSON";
+ Text[ arabic ] = "PEARSON";
+ Text[ dutch ] = "PEARSON";
+ Text[ chinese_simplified ] = "PEARSON";
+ Text[ greek ] = "PEARSON";
+ Text[ korean ] = "PEARSON";
+ Text[ turkish ] = "PEARSON";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_RSQ
+ {
+ Text = "BESTIMMTHEITSMASS" ;
+ Text [ english ] = "RSQ" ;
+ Text [ norwegian ] = "RSQ" ;
+ Text [ italian ] = "RQ" ;
+ Text [ portuguese_brazilian ] = "RSQ" ;
+ Text [ portuguese ] = "R.QUAD" ;
+ Text [ finnish ] = "RSQ" ;
+ Text [ danish ] = "FORKLARINGSGRAD" ;
+ Text [ french ] = "COEFFICIENT.DETERMINATION" ;
+ Text [ swedish ] = "RKV" ;
+ Text [ dutch ] = "R.KWADRAAT" ;
+ Text [ spanish ] = "COEFICIENTE.R2" ;
+ Text [ english_us ] = "RSQ" ;
+ Text[ chinese_simplified ] = "RSQ";
+ Text[ russian ] = "";
+ Text[ polish ] = "R.KWADRAT";
+ Text[ japanese ] = "RSQ";
+ Text[ chinese_traditional ] = "RSQ";
+ Text[ arabic ] = "RSQ";
+ Text[ dutch ] = "R.KWADRAAT";
+ Text[ chinese_simplified ] = "RSQ";
+ Text[ greek ] = "RSQ";
+ Text[ korean ] = "RSQ";
+ Text[ turkish ] = "RSQ";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_STEYX
+ {
+ Text = "STFEHLERYX" ;
+ Text [ english ] = "STEYX" ;
+ Text [ norwegian ] = "STEYX" ;
+ Text [ italian ] = "ERR.STD.YX" ;
+ Text [ portuguese_brazilian ] = "STEYX" ;
+ Text [ portuguese ] = "ERRO.TIPO.YX" ;
+ Text [ finnish ] = "STEYX" ;
+ Text [ danish ] = "STFYX" ;
+ Text [ french ] = "ERREUR.TYPE.XY" ;
+ Text [ swedish ] = "STDFELYX" ;
+ Text [ dutch ] = "STFOUTYX" ;
+ Text [ spanish ] = "ERROR.TPICO.XY" ;
+ Text [ english_us ] = "STEYX" ;
+ Text[ chinese_simplified ] = "STEYX";
+ Text[ russian ] = "YX";
+ Text[ polish ] = "REGBSTD";
+ Text[ japanese ] = "STEYX";
+ Text[ chinese_traditional ] = "STEYX";
+ Text[ arabic ] = "STEYX";
+ Text[ dutch ] = "STFOUTYX";
+ Text[ chinese_simplified ] = "STEYX";
+ Text[ greek ] = "STEYX";
+ Text[ korean ] = "STEYX";
+ Text[ turkish ] = "STEYX";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_SLOPE
+ {
+ Text = "STEIGUNG" ;
+ Text [ english ] = "SLOPE" ;
+ Text [ norwegian ] = "SLOPE" ;
+ Text [ italian ] = "PENDENZA" ;
+ Text [ portuguese_brazilian ] = "SLOPE" ;
+ Text [ portuguese ] = "DECLIVE" ;
+ Text [ finnish ] = "SLOPE" ;
+ Text [ danish ] = "STIGNING" ;
+ Text [ french ] = "PENTE" ;
+ Text [ swedish ] = "LUTNING" ;
+ Text [ dutch ] = "STIJGING" ;
+ Text [ spanish ] = "PENDIENTE" ;
+ Text [ english_us ] = "SLOPE" ;
+ Text[ chinese_simplified ] = "SLOPE";
+ Text[ russian ] = "";
+ Text[ polish ] = "NACHYLENIE";
+ Text[ japanese ] = "SLOPE";
+ Text[ chinese_traditional ] = "SLOPE";
+ Text[ arabic ] = "SLOPE";
+ Text[ dutch ] = "STIJGING";
+ Text[ chinese_simplified ] = "SLOPE";
+ Text[ greek ] = "SLOPE";
+ Text[ korean ] = "SLOPE";
+ Text[ turkish ] = "SLOPE";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_INTERCEPT
+ {
+ Text = "ACHSENABSCHNITT" ;
+ Text [ english ] = "INTERCEPT" ;
+ Text [ norwegian ] = "INTERCEPT" ;
+ Text [ italian ] = "INTERCETTA" ;
+ Text [ portuguese_brazilian ] = "INTERCEPT" ;
+ Text [ portuguese ] = "INTERCEPO" ;
+ Text [ finnish ] = "INTERCEPT" ;
+ Text [ danish ] = "SKRING" ;
+ Text [ french ] = "ORDONNEE.ORIGINE" ;
+ Text [ swedish ] = "SKRNINGSPUNKT" ;
+ Text [ dutch ] = "SNIJPUNT" ;
+ Text [ spanish ] = "INTERSECCIN.EJE" ;
+ Text [ english_us ] = "INTERCEPT" ;
+ Text[ chinese_simplified ] = "INTERCEPT";
+ Text[ russian ] = "";
+ Text[ polish ] = "ODCITA";
+ Text[ japanese ] = "INTERCEPT";
+ Text[ chinese_traditional ] = "INTERCEPT";
+ Text[ arabic ] = "INTERCEPT";
+ Text[ dutch ] = "SNIJPUNT";
+ Text[ chinese_simplified ] = "INTERCEPT";
+ Text[ greek ] = "INTERCEPT";
+ Text[ korean ] = "INTERCEPT";
+ Text[ turkish ] = "INTERCEPT";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_TREND
+ {
+ Text = "TREND" ;
+ Text [ english ] = "TREND" ;
+ Text [ norwegian ] = "TREND" ;
+ Text [ italian ] = "TENDENZA" ;
+ Text [ portuguese_brazilian ] = "TREND" ;
+ Text [ portuguese ] = "TENDNCIA" ;
+ Text [ finnish ] = "TREND" ;
+ Text [ danish ] = "TENDENS" ;
+ Text [ french ] = "TENDANCE" ;
+ Text [ swedish ] = "TREND" ;
+ Text [ dutch ] = "TREND" ;
+ Text [ spanish ] = "TENDENCIA" ;
+ Text [ english_us ] = "TREND" ;
+ Text[ chinese_simplified ] = "TREND";
+ Text[ russian ] = "";
+ Text[ polish ] = "REGLINW";
+ Text[ japanese ] = "TREND";
+ Text[ chinese_traditional ] = "TREND";
+ Text[ arabic ] = "TREND";
+ Text[ dutch ] = "TREND";
+ Text[ chinese_simplified ] = "TREND";
+ Text[ greek ] = "TREND";
+ Text[ korean ] = "TREND";
+ Text[ turkish ] = "TREND";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_GROWTH
+ {
+ Text = "VARIATION" ;
+ Text [ english ] = "GROWTH" ;
+ Text [ norwegian ] = "VEKST" ;
+ Text [ italian ] = "CRESCITA" ;
+ Text [ portuguese_brazilian ] = "GROWTH" ;
+ Text [ portuguese ] = "CRESCIMENTO" ;
+ Text [ finnish ] = "GROWTH" ;
+ Text [ danish ] = "FORGELSE" ;
+ Text [ french ] = "CROISSANCE" ;
+ Text [ swedish ] = "EXPTREND" ;
+ Text [ dutch ] = "GROEI" ;
+ Text [ spanish ] = "CRECIMIENTO" ;
+ Text [ english_us ] = "GROWTH" ;
+ Text[ chinese_simplified ] = "GROWTH";
+ Text[ russian ] = "";
+ Text[ polish ] = "REGEXPW";
+ Text[ japanese ] = "GROWTH";
+ Text[ chinese_traditional ] = "GROWTH";
+ Text[ arabic ] = "GROWTH";
+ Text[ dutch ] = "GROEI";
+ Text[ chinese_simplified ] = "GROWTH";
+ Text[ greek ] = "GROWTH";
+ Text[ korean ] = "GROWTH";
+ Text[ turkish ] = "GROWTH";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_RGP
+ {
+ Text = "RGP" ;
+ Text [ english ] = "LINEST" ;
+ Text [ norwegian ] = "LINEST" ;
+ Text [ italian ] = "REGR.LIN" ;
+ Text [ portuguese_brazilian ] = "LINEST" ;
+ Text [ portuguese ] = "REGR.LINEAR" ;
+ Text [ finnish ] = "LINEST" ;
+ Text [ danish ] = "LINREGR" ;
+ Text [ french ] = "DROITEREG" ;
+ Text [ swedish ] = "REGR" ;
+ Text [ dutch ] = "LIJNSCH" ;
+ Text [ spanish ] = "ESTIMACIN.LINEAL" ;
+ Text [ english_us ] = "LINEST" ;
+ Text[ chinese_simplified ] = "LINEST";
+ Text[ russian ] = "";
+ Text[ polish ] = "REG.LINP";
+ Text[ japanese ] = "LINEST";
+ Text[ chinese_traditional ] = "LINEST";
+ Text[ arabic ] = "LINEST";
+ Text[ dutch ] = "LIJNSCH";
+ Text[ chinese_simplified ] = "LINEST";
+ Text[ greek ] = "LINEST";
+ Text[ korean ] = "LINEST";
+ Text[ turkish ] = "LINEST";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_RKP
+ {
+ Text = "RKP" ;
+ Text [ english ] = "LOGEST" ;
+ Text [ norwegian ] = "LOGEST" ;
+ Text [ italian ] = "REGR.LOG" ;
+ Text [ portuguese_brazilian ] = "LOGEST" ;
+ Text [ portuguese ] = "LOGEST" ;
+ Text [ finnish ] = "LOGEST" ;
+ Text [ danish ] = "LOGREGR" ;
+ Text [ french ] = "LOGREG" ;
+ Text [ swedish ] = "EXPREGR" ;
+ Text [ dutch ] = "LOGSCH" ;
+ Text [ spanish ] = "ESTIMACIN.LOGARTMICA" ;
+ Text [ english_us ] = "LOGEST" ;
+ Text[ chinese_simplified ] = "LOGEST";
+ Text[ russian ] = "";
+ Text[ polish ] = "REGEXPP";
+ Text[ japanese ] = "LOGEST";
+ Text[ chinese_traditional ] = "LOGEST";
+ Text[ arabic ] = "LOGEST";
+ Text[ dutch ] = "LOGSCH";
+ Text[ chinese_simplified ] = "LOGEST";
+ Text[ greek ] = "LOGEST";
+ Text[ korean ] = "LOGEST";
+ Text[ turkish ] = "LOGEST";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_FORECAST
+ {
+ /* ### ACHTUNG: Neuer Text in Resource? SCHTZER : SCHTZER */
+ Text = "SCHTZER" ;
+ Text [ english ] = "FORECAST" ;
+ Text [ norwegian ] = "FORECAST" ;
+ Text [ italian ] = "PREVISIONE" ;
+ Text [ portuguese_brazilian ] = "FORECAST" ;
+ Text [ portuguese ] = "REGRESSO.LINEAR" ;
+ Text [ finnish ] = "FORECAST" ;
+ Text [ danish ] = "PROGNOSE" ;
+ Text [ french ] = "PREVISION" ;
+ Text [ swedish ] = "PREDIKTION" ;
+ Text [ dutch ] = "VOORSPELLEN" ;
+ Text [ spanish ] = "PRONSTICO" ;
+ Text [ english_us ] = "FORECAST" ;
+ Text[ chinese_simplified ] = "FORECAST";
+ Text[ russian ] = "";
+ Text[ polish ] = "REGLINX";
+ Text[ japanese ] = "FORECAST";
+ Text[ chinese_traditional ] = "FORECAST";
+ Text[ arabic ] = "FORECAST";
+ Text[ dutch ] = "VOORSPELLEN";
+ Text[ chinese_simplified ] = "FORECAST";
+ Text[ greek ] = "FORECAST";
+ Text[ korean ] = "FORECAST";
+ Text[ turkish ] = "FORECAST";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_CHI_INV
+ {
+ Text = "CHIINV" ;
+ Text [ english ] = "CHIINV" ;
+ Text [ norwegian ] = "CHIINV" ;
+ Text [ italian ] = "INV.CHI" ;
+ Text [ portuguese_brazilian ] = "CHIINV" ;
+ Text [ portuguese ] = "INV.CHI" ;
+ Text [ finnish ] = "CHIINV" ;
+ Text [ danish ] = "CHIINV" ;
+ Text [ french ] = "KHIDEUX.INVERSE" ;
+ Text [ swedish ] = "CHI2INV" ;
+ Text [ dutch ] = "CHI.KWADRAAT.INV" ;
+ Text [ spanish ] = "PRUEBA.JI.INV" ;
+ Text [ english_us ] = "CHIINV" ;
+ Text[ chinese_simplified ] = "CHIINV";
+ Text[ russian ] = "2";
+ Text[ polish ] = "ROZKAD.CHI.ODW";
+ Text[ japanese ] = "CHIINV";
+ Text[ chinese_traditional ] = "CHIINV";
+ Text[ arabic ] = "CHIINV";
+ Text[ dutch ] = "CHI.KWADRAAT.INV";
+ Text[ chinese_simplified ] = "CHIINV";
+ Text[ greek ] = "CHIINV";
+ Text[ korean ] = "CHIINV";
+ Text[ turkish ] = "CHIINV";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_GAMMA_DIST
+ {
+ Text = "GAMMAVERT" ;
+ Text [ english ] = "GAMMADIST" ;
+ Text [ norwegian ] = "GAMMADIST" ;
+ Text [ italian ] = "DISTRIB.GAMMA" ;
+ Text [ portuguese_brazilian ] = "GAMMADIST" ;
+ Text [ portuguese ] = "DIST.GAMMA" ;
+ Text [ finnish ] = "GAMMADIST" ;
+ Text [ danish ] = "GAMMAFORDELING" ;
+ Text [ french ] = "LOI.GAMMA" ;
+ Text [ swedish ] = "GAMMAFRD" ;
+ Text [ dutch ] = "GAMMA.VERD" ;
+ Text [ spanish ] = "DISTR.GAMMA" ;
+ Text [ english_us ] = "GAMMADIST" ;
+ Text[ chinese_simplified ] = "GAMMADIST";
+ Text[ russian ] = "";
+ Text[ polish ] = "ROZKAD.GAMMA";
+ Text[ japanese ] = "GAMMADIST";
+ Text[ chinese_traditional ] = "GAMMADIST";
+ Text[ arabic ] = "GAMMADIST";
+ Text[ dutch ] = "GAMMA.VERD";
+ Text[ chinese_simplified ] = "GAMMADIST";
+ Text[ greek ] = "GAMMADIST";
+ Text[ korean ] = "GAMMADIST";
+ Text[ turkish ] = "GAMMADIST";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_GAMMA_INV
+ {
+ Text = "GAMMAINV" ;
+ Text [ english ] = "GAMMAINV" ;
+ Text [ norwegian ] = "GAMMAINV" ;
+ Text [ italian ] = "INV.GAMMA" ;
+ Text [ portuguese_brazilian ] = "GAMMAINV" ;
+ Text [ portuguese ] = "INV.GAMMA" ;
+ Text [ finnish ] = "GAMMAINV" ;
+ Text [ danish ] = "GAMMAINV" ;
+ Text [ french ] = "LOI.GAMMA.INVERSE" ;
+ Text [ swedish ] = "GAMMAINV" ;
+ Text [ dutch ] = "GAMMA.INV" ;
+ Text [ spanish ] = "DISTR.GAMMA.INV" ;
+ Text [ english_us ] = "GAMMAINV" ;
+ Text[ chinese_simplified ] = "GAMMAINV";
+ Text[ russian ] = "";
+ Text[ polish ] = "ROZKAD.GAMMA.ODW";
+ Text[ japanese ] = "GAMMAINV";
+ Text[ chinese_traditional ] = "GAMMAINV";
+ Text[ arabic ] = "GAMMAINV";
+ Text[ dutch ] = "GAMMA.INV";
+ Text[ chinese_simplified ] = "GAMMAINV";
+ Text[ greek ] = "GAMMAINV";
+ Text[ korean ] = "GAMMAINV";
+ Text[ turkish ] = "GAMMAINV";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_T_INV
+ {
+ Text = "TINV" ;
+ Text [ english ] = "TINV" ;
+ Text [ norwegian ] = "TINV" ;
+ Text [ italian ] = "INV.T" ;
+ Text [ portuguese_brazilian ] = "TINV" ;
+ Text [ portuguese ] = "INV.T" ;
+ Text [ finnish ] = "TINV" ;
+ Text [ danish ] = "TINV" ;
+ Text [ french ] = "LOI.STUDENT.INVERSE" ;
+ Text [ swedish ] = "TINV" ;
+ Text [ dutch ] = "T.INV" ;
+ Text [ spanish ] = "DISTR.T.INV" ;
+ Text [ english_us ] = "TINV" ;
+ Text[ chinese_simplified ] = "TINV";
+ Text[ russian ] = "";
+ Text[ polish ] = "ROZKAD.T.ODW";
+ Text[ japanese ] = "TINV";
+ Text[ chinese_traditional ] = "TINV";
+ Text[ arabic ] = "TINV";
+ Text[ dutch ] = "T.INV";
+ Text[ chinese_simplified ] = "TINV";
+ Text[ greek ] = "TINV";
+ Text[ korean ] = "TINV";
+ Text[ turkish ] = "TINV";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_F_INV
+ {
+ Text = "FINV" ;
+ Text [ english ] = "FINV" ;
+ Text [ norwegian ] = "FINV" ;
+ Text [ italian ] = "INV.F" ;
+ Text [ portuguese_brazilian ] = "FINV" ;
+ Text [ portuguese ] = "INV.F" ;
+ Text [ finnish ] = "FINV" ;
+ Text [ danish ] = "FINV" ;
+ Text [ french ] = "INVERSE.LOI.F" ;
+ Text [ swedish ] = "FINV" ;
+ Text [ dutch ] = "F.INVERSE" ;
+ Text [ spanish ] = "DISTR.F.INV" ;
+ Text [ english_us ] = "FINV" ;
+ Text[ chinese_simplified ] = "FINV";
+ Text[ russian ] = "F";
+ Text[ polish ] = "ROZKAD.F.ODW.";
+ Text[ japanese ] = "FINV";
+ Text[ chinese_traditional ] = "FINV";
+ Text[ arabic ] = "FINV";
+ Text[ dutch ] = "F.INVERSE";
+ Text[ chinese_simplified ] = "FINV";
+ Text[ greek ] = "FINV";
+ Text[ korean ] = "FINV";
+ Text[ turkish ] = "FINV";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_CHI_TEST
+ {
+ Text = "CHITEST" ;
+ Text [ english ] = "CHITEST" ;
+ Text [ norwegian ] = "CHITEST" ;
+ Text [ italian ] = "TEST.CHI" ;
+ Text [ portuguese_brazilian ] = "CHITEST" ;
+ Text [ portuguese ] = "TESTE.CHI" ;
+ Text [ finnish ] = "CHITEST" ;
+ Text [ danish ] = "CHITEST" ;
+ Text [ french ] = "TEST.KHIDEUX" ;
+ Text [ swedish ] = "CHI2TEST" ;
+ Text [ dutch ] = "CHI.TOETS" ;
+ Text [ spanish ] = "PRUEBA.JI" ;
+ Text [ english_us ] = "CHITEST" ;
+ Text[ chinese_simplified ] = "CHITEST";
+ Text[ russian ] = "2";
+ Text[ polish ] = "TEST.CHI";
+ Text[ japanese ] = "CHITEST";
+ Text[ chinese_traditional ] = "CHITEST";
+ Text[ arabic ] = "CHITEST";
+ Text[ dutch ] = "CHI.TOETS";
+ Text[ chinese_simplified ] = "CHITEST";
+ Text[ greek ] = "CHITEST";
+ Text[ korean ] = "CHITEST";
+ Text[ turkish ] = "CHITEST";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_LOG_INV
+ {
+ Text = "LOGINV" ;
+ Text [ english ] = "LOGINV" ;
+ Text [ norwegian ] = "LOGINV" ;
+ Text [ italian ] = "INV.LOGNORM" ;
+ Text [ portuguese_brazilian ] = "LOGINV" ;
+ Text [ portuguese ] = "INV.LOG" ;
+ Text [ finnish ] = "LOGINV" ;
+ Text [ danish ] = "LOGINV" ;
+ Text [ french ] = "LOI.LOGNORMALE.INVERSE" ;
+ Text [ swedish ] = "LOGINV" ;
+ Text [ dutch ] = "LOG.NORM.INV" ;
+ Text [ spanish ] = "INV.LOG" ;
+ Text [ english_us ] = "LOGINV" ;
+ Text[ chinese_simplified ] = "LOGINV";
+ Text[ russian ] = "";
+ Text[ polish ] = "ROZKAD.LOG.ODW";
+ Text[ japanese ] = "LOGINV";
+ Text[ chinese_traditional ] = "LOGINV";
+ Text[ arabic ] = "LOGINV";
+ Text[ dutch ] = "LOG.NORM.INV";
+ Text[ chinese_simplified ] = "LOGINV";
+ Text[ greek ] = "LOGINV";
+ Text[ korean ] = "LOGINV";
+ Text[ turkish ] = "LOGINV";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_TABLE_OP
+ {
+ Text = "MEHRFACHOPERATION" ;
+ Text [ english ] = "TABLE" ;
+ Text [ norwegian ] = "TABLEOPERATION" ;
+ Text [ italian ] = "OPERAZIONE.MULTIPLA" ;
+ Text [ portuguese_brazilian ] = "TABLEOPERATION" ;
+ Text [ portuguese ] = "OPERAO.MLTIPLA" ;
+ Text [ finnish ] = "TABLEOPERATION" ;
+ Text [ danish ] = "MULTIOPERATION" ;
+ Text [ french ] = "OPERATION.MULTIPLE" ;
+ Text [ swedish ] = "MULTIPEL.OPERATION" ;
+ Text [ dutch ] = "MEERVOUD.OPERATIE" ;
+ Text [ spanish ] = "OPERACIN.MLTIPLE" ;
+ Text [ english_us ] = "MULTIPLE.OPERATIONS" ;
+ Text[ chinese_simplified ] = "MULTIPLE.OPERATIONS";
+ Text[ russian ] = "";
+ Text[ polish ] = "OPERACJE.WIELOKROTNE";
+ Text[ japanese ] = "MULTIPLE.OPERATIONS";
+ Text[ chinese_traditional ] = "MULTIPLE.OPERATIONS";
+ Text[ arabic ] = "MULTIPLE OPERATIONS";
+ Text[ dutch ] = "MEERVOUD.OPERATIE";
+ Text[ chinese_simplified ] = "MULTIPLE.OPERATIONS";
+ Text[ greek ] = "MULTIPLE.OPERATIONS";
+ Text[ korean ] = "MULTIPLE.OPERATIONS";
+ Text[ turkish ] = "MULTIPLE OPERATIONS";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_BETA_DIST
+ {
+ Text = "BETAVERT" ;
+ Text [ english ] = "BETADIST" ;
+ Text [ norwegian ] = "BETADIST" ;
+ Text [ italian ] = "DISTRIB.BETA" ;
+ Text [ portuguese_brazilian ] = "BETADIST" ;
+ Text [ portuguese ] = "DIST.BETA" ;
+ Text [ finnish ] = "BETADIST" ;
+ Text [ danish ] = "BETAFORDELING" ;
+ Text [ french ] = "LOI.BETA" ;
+ Text [ swedish ] = "BETAFRD" ;
+ Text [ dutch ] = "BETA.VERD" ;
+ Text [ spanish ] = "DISTR.BETA" ;
+ Text [ english_us ] = "BETADIST" ;
+ Text[ chinese_simplified ] = "BETADIST";
+ Text[ russian ] = "";
+ Text[ polish ] = "ROZKAD.BETA";
+ Text[ japanese ] = "BETADIST";
+ Text[ chinese_traditional ] = "BETADIST";
+ Text[ arabic ] = "BETADIST";
+ Text[ dutch ] = "BETA.VERD";
+ Text[ chinese_simplified ] = "BETADIST";
+ Text[ greek ] = "BETADIST";
+ Text[ korean ] = "BETADIST";
+ Text[ turkish ] = "BETADIST";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_BETA_INV
+ {
+ Text = "BETAINV" ;
+ Text [ english ] = "BETAINV" ;
+ Text [ norwegian ] = "BETAINV" ;
+ Text [ italian ] = "INV.BETA" ;
+ Text [ portuguese_brazilian ] = "BETAINV" ;
+ Text [ portuguese ] = "INV.BETA" ;
+ Text [ finnish ] = "BETAINV" ;
+ Text [ danish ] = "BETAINV" ;
+ Text [ french ] = "BETA.INVERSE" ;
+ Text [ swedish ] = "BETAINV" ;
+ Text [ dutch ] = "BETA.INV" ;
+ Text [ spanish ] = "DISTR.BETA.INV" ;
+ Text [ english_us ] = "BETAINV" ;
+ Text[ chinese_simplified ] = "BETAINV";
+ Text[ russian ] = "";
+ Text[ polish ] = "ROZKAD.BETA.ODW";
+ Text[ japanese ] = "BETAINV";
+ Text[ chinese_traditional ] = "BETAINV";
+ Text[ arabic ] = "BETAINV";
+ Text[ dutch ] = "BETA.INV";
+ Text[ chinese_simplified ] = "BETAINV";
+ Text[ greek ] = "BETAINV";
+ Text[ korean ] = "BETAINV";
+ Text[ turkish ] = "BETAINV";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_WEEK
+ {
+ Text = "KALENDERWOCHE" ;
+ Text [ english ] = "WEEKNUM" ;
+ Text [ norwegian ] = "WEEKOFYEAR" ;
+ Text [ italian ] = "NUM.SETTIMANA" ;
+ Text [ portuguese_brazilian ] = "WEEKOFYEAR" ;
+ Text [ portuguese ] = "SEMANACALENDRIO" ;
+ Text [ finnish ] = "WEEKOFYEAR" ;
+ Text [ danish ] = "KALENDERUGE" ;
+ Text [ french ] = "NO.SEMAINE" ;
+ Text [ swedish ] = "KALENDERVECKA" ;
+ Text [ dutch ] = "KALENDERWEEK" ;
+ Text [ spanish ] = "SEM.DEL.AO" ;
+ Text [ english_us ] = "WEEKNUM" ;
+ Text[ chinese_simplified ] = "WEEKNUM";
+ Text[ russian ] = ".";
+ Text[ polish ] = "TYDZIEKALENDARZOWY";
+ Text[ japanese ] = "WEEKNUM";
+ Text[ chinese_traditional ] = "WEEKNUM";
+ Text[ arabic ] = "WEEKNUM";
+ Text[ dutch ] = "KALENDERWEEK";
+ Text[ chinese_simplified ] = "WEEKNUM";
+ Text[ greek ] = "WEEKNUM";
+ Text[ korean ] = "WEEKNUM";
+ Text[ turkish ] = "WEEKNUM";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_EASTERSUNDAY
+ {
+ Text = "OSTERSONNTAG" ;
+ Text [ english ] = "EASTERSUNDAY" ;
+ Text [ english_us ] = "EASTERSUNDAY" ;
+ Text[ portuguese ] = "DOMINGOPSCOA";
+ Text[ russian ] = "";
+ Text[ dutch ] = "EERSTEPAASDAG";
+ Text[ french ] = "DIMANCHEDEPQUES";
+ Text[ spanish ] = "DOMINGOPASCUA";
+ Text[ italian ] = "DOMENICADIPASQUA";
+ Text[ danish ] = "PSKESNDAG";
+ Text[ swedish ] = "PSKDAGEN";
+ Text[ polish ] = "NIEDZIELAWIELKANOCNA";
+ Text[ portuguese_brazilian ] = "EASTERSUNDAY";
+ Text[ japanese ] = "EASTERSUNDAY";
+ Text[ chinese_simplified ] = "EASTERSUNDAY";
+ Text[ chinese_traditional ] = "EASTERSUNDAY";
+ Text[ arabic ] = "EASTERSUNDAY";
+ Text[ dutch ] = "EERSTEPAASDAG";
+ Text[ chinese_simplified ] = "EASTERSUNDAY";
+ Text[ greek ] = "EASTERSUNDAY";
+ Text[ korean ] = "EASTERSUNDAY";
+ Text[ turkish ] = "EASTERSUNDAY";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_GET_DAY_OF_WEEK
+ {
+ Text = "WOCHENTAG" ;
+ Text [ english ] = "WEEKDAY" ;
+ Text [ norwegian ] = "WEEKDAY" ;
+ Text [ italian ] = "GIORNO.SETTIMANA" ;
+ Text [ portuguese_brazilian ] = "WEEKDAY" ;
+ Text [ portuguese ] = "DIA.SEMANA" ;
+ Text [ finnish ] = "WEEKDAY" ;
+ Text [ danish ] = "UGEDAG" ;
+ Text [ french ] = "JOURSEM" ;
+ Text [ swedish ] = "VECKODAG" ;
+ Text [ dutch ] = "WEEKDAG" ;
+ Text [ spanish ] = "DASEM" ;
+ Text [ english_us ] = "WEEKDAY" ;
+ Text[ chinese_simplified ] = "WEEKDAY";
+ Text[ russian ] = "";
+ Text[ polish ] = "DZIE.TYGODNIA";
+ Text[ japanese ] = "WEEKDAY";
+ Text[ chinese_traditional ] = "WEEKDAY";
+ Text[ arabic ] = "WEEKDAY";
+ Text[ dutch ] = "WEEKDAG";
+ Text[ chinese_simplified ] = "WEEKDAY";
+ Text[ greek ] = "WEEKDAY";
+ Text[ korean ] = "WEEKDAY";
+ Text[ turkish ] = "WEEKDAY";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_NO_NAME
+ {
+ Text = "#NAME!" ;
+ Text [ english ] = "#NAME!" ;
+ Text [ norwegian ] = "#NAVN!" ;
+ Text [ italian ] = "#NOME!" ;
+ Text [ portuguese_brazilian ] = "#NOME!" ;
+ Text [ portuguese ] = "#NOME!" ;
+ Text [ finnish ] = "#NAME!" ;
+ Text [ danish ] = "#NAVN!" ;
+ Text [ french ] = "#NOM!" ;
+ Text [ swedish ] = "#NAMN!" ;
+ Text [ dutch ] = "#NAAM!" ;
+ Text [ spanish ] = "#NOMBRE!" ;
+ Text [ english_us ] = "#NAME!" ;
+ Text[ chinese_simplified ] = "#NAME!";
+ Text[ russian ] = "#!";
+ Text[ polish ] = "#NAZWA!";
+ Text[ japanese ] = "#NAME!";
+ Text[ chinese_traditional ] = "#NAME!";
+ Text[ arabic ] = "#!";
+ Text[ dutch ] = "#NAAM!";
+ Text[ chinese_simplified ] = "#NAME!";
+ Text[ greek ] = "#NAME!";
+ Text[ korean ] = "#NAME!";
+ Text[ turkish ] = "#NAME!";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_STYLE
+ {
+ Text = "VORLAGE" ;
+ Text [ english ] = "STYLE" ;
+ Text [ norwegian ] = "STYLE" ;
+ Text [ italian ] = "MODELLO" ;
+ Text [ portuguese_brazilian ] = "STYLE" ;
+ Text [ portuguese ] = "ESTILO" ;
+ Text [ finnish ] = "STYLE" ;
+ Text [ danish ] = "TYPOGRAFI" ;
+ Text [ french ] = "STYLE" ;
+ Text [ swedish ] = "FORMATMALL" ;
+ Text [ dutch ] = "PROFIEL" ;
+ Text [ spanish ] = "ESTILO" ;
+ Text [ english_us ] = "STYLE" ;
+ Text[ chinese_simplified ] = "STYLE";
+ Text[ russian ] = "";
+ Text[ polish ] = "STYL";
+ Text[ japanese ] = "STYLE";
+ Text[ chinese_traditional ] = "STYLE";
+ Text[ arabic ] = "STYLE";
+ Text[ dutch ] = "PROFIEL";
+ Text[ chinese_simplified ] = "STYLE";
+ Text[ greek ] = "STYLE";
+ Text[ korean ] = "STYLE";
+ Text[ turkish ] = "STYLE";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_DDE { Text = "DDE" ; };
+ String SC_OPCODE_BASE
+ {
+ Text = "BASIS" ;
+ Text [ english ] = "BASE" ;
+ Text [ portuguese ] = "BASE" ;
+ Text [ english_us ] = "BASE" ;
+ Text [ portuguese_brazilian ] = "BASIS" ;
+ Text [ swedish ] = "BAS" ;
+ Text [ danish ] = "BASIS" ;
+ Text [ italian ] = "BASE" ;
+ Text [ spanish ] = "BASE" ;
+ Text [ french ] = "BASE" ;
+ Text [ dutch ] = "BASIS" ;
+ Text[ chinese_simplified ] = "BASE";
+ Text[ russian ] = "";
+ Text[ polish ] = "BAZA";
+ Text[ japanese ] = "BASE";
+ Text[ chinese_traditional ] = "BASE";
+ Text[ arabic ] = "BASE";
+ Text[ dutch ] = "BASIS";
+ Text[ chinese_simplified ] = "BASE";
+ Text[ greek ] = "BASE";
+ Text[ korean ] = "BASE";
+ Text[ turkish ] = "BASE";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_DECIMAL
+ {
+ Text = "DEZIMAL" ;
+ Text [ english ] = "DECIMAL" ;
+ Text [ english_us ] = "DECIMAL" ;
+ Text[ portuguese ] = "DECIMAL";
+ Text[ russian ] = "";
+ Text[ dutch ] = "DECIMAAL";
+ Text[ french ] = "DCIMAL";
+ Text[ spanish ] = "DECIMAL";
+ Text[ italian ] = "DECIMALE";
+ Text[ danish ] = "DECIMAL";
+ Text[ swedish ] = "DECIMAL";
+ Text[ polish ] = "DZIESITNY";
+ Text[ portuguese_brazilian ] = "DECIMAL";
+ Text[ japanese ] = "DECIMAL";
+ Text[ chinese_simplified ] = "DECIMAL";
+ Text[ chinese_traditional ] = "DECIMAL";
+ Text[ arabic ] = "DECIMAL";
+ Text[ dutch ] = "DECIMAAL";
+ Text[ chinese_simplified ] = "DECIMAL";
+ Text[ greek ] = "DECIMAL";
+ Text[ korean ] = "DECIMAL";
+ Text[ turkish ] = "DECIMAL";
+ Text[ language_user1 ] = " ";
+ };
+ String SC_OPCODE_CONVERT
+ {
+ Text = "UMRECHNEN" ;
+ Text [ english ] = "CONVERT" ;
+ Text[ english_us ] = "CONVERT";
+ Text[ portuguese ] = "CONVERTER";
+ Text[ russian ] = "";
+ Text[ dutch ] = "CONVERTEREN";
+ Text[ french ] = "CONVERTIR";
+ Text[ spanish ] = "CONVERTIR";
+ Text[ italian ] = "CONVERTI";
+ Text[ danish ] = "OMREGN";
+ Text[ swedish ] = "OMRKNA";
+ Text[ polish ] = "PRZELICZ";
+ Text[ portuguese_brazilian ] = "CONVERT";
+ Text[ japanese ] = "CONVERT";
+ Text[ chinese_simplified ] = "CONVERT";
+ Text[ chinese_traditional ] = "CONVERT";
+ Text[ arabic ] = "CONVERT";
+ Text[ dutch ] = "CONVERTEREN";
+ Text[ chinese_simplified ] = "CONVERT";
+ Text[ greek ] = "CONVERT";
+ Text[ korean ] = "";
+ Text[ turkish ] = "CONVERT";
+ Text[ language_user1 ] = " ";
+ };
+};
+Resource RID_SC_FUNCTION_NAMES_ENGLISH
+{
+ String SC_OPCODE_IF { Text = "IF" ; };
+ String SC_OPCODE_CHOSE { Text = "CHOOSE" ; };
+ String SC_OPCODE_OPEN { Text = "(" ; };
+ String SC_OPCODE_CLOSE { Text = ")" ; };
+ String SC_OPCODE_SEP { Text = ";" ; };
+ String SC_OPCODE_ADD { Text = "+" ; };
+ String SC_OPCODE_SUB { Text = "-" ; };
+ String SC_OPCODE_MUL { Text = "*" ; };
+ String SC_OPCODE_DIV { Text = "/" ; };
+ String SC_OPCODE_AMPERSAND { Text = "&" ; };
+ String SC_OPCODE_POW { Text = "^" ; };
+ String SC_OPCODE_EQUAL { Text = "=" ; };
+ String SC_OPCODE_NOT_EQUAL { Text = "<>" ; };
+ String SC_OPCODE_LESS { Text = "<" ; };
+ String SC_OPCODE_GREATER { Text = ">" ; };
+ String SC_OPCODE_LESS_EQUAL { Text = "<=" ; };
+ String SC_OPCODE_GREATER_EQUAL { Text = ">=" ; };
+ String SC_OPCODE_AND { Text = "AND" ; };
+ String SC_OPCODE_OR { Text = "OR" ; };
+ String SC_OPCODE_INTERSECT { Text = "!" ; };
+ String SC_OPCODE_UNION { Text = ";" ; };
+ String SC_OPCODE_RANGE { Text = ":" ; };
+ String SC_OPCODE_NOT { Text = "NOT" ; };
+ String SC_OPCODE_NEG { Text = "NEG" ; };
+ String SC_OPCODE_NEG_SUB { Text = "-" ; };
+ String SC_OPCODE_PI { Text = "PI" ; };
+ String SC_OPCODE_RANDOM { Text = "RAND" ; };
+ String SC_OPCODE_TRUE { Text = "TRUE" ; };
+ String SC_OPCODE_FALSE { Text = "FALSE" ; };
+ String SC_OPCODE_GET_ACT_DATE { Text = "TODAY" ; };
+ String SC_OPCODE_GET_ACT_TIME { Text = "NOW" ; };
+ String SC_OPCODE_NO_VALUE { Text = "NA" ; };
+ String SC_OPCODE_CURRENT { Text = "CURRENT" ; };
+ String SC_OPCODE_DEG { Text = "DEGREES" ; };
+ String SC_OPCODE_RAD { Text = "RADIANS" ; };
+ String SC_OPCODE_SIN { Text = "SIN" ; };
+ String SC_OPCODE_COS { Text = "COS" ; };
+ String SC_OPCODE_TAN { Text = "TAN" ; };
+ String SC_OPCODE_COT { Text = "COT" ; };
+ String SC_OPCODE_ARC_SIN { Text = "ASIN" ; };
+ String SC_OPCODE_ARC_COS { Text = "ACOS" ; };
+ String SC_OPCODE_ARC_TAN { Text = "ATAN" ; };
+ String SC_OPCODE_ARC_COT { Text = "ACOT" ; };
+ String SC_OPCODE_SIN_HYP { Text = "SINH" ; };
+ String SC_OPCODE_COS_HYP { Text = "COSH" ; };
+ String SC_OPCODE_TAN_HYP { Text = "TANH" ; };
+ String SC_OPCODE_COT_HYP { Text = "COTH" ; };
+ String SC_OPCODE_ARC_SIN_HYP { Text = "ASINH" ; };
+ String SC_OPCODE_ARC_COS_HYP { Text = "ACOSH" ; };
+ String SC_OPCODE_ARC_TAN_HYP { Text = "ATANH" ; };
+ String SC_OPCODE_ARC_COT_HYP { Text = "ACOTH" ; };
+ String SC_OPCODE_EXP { Text = "EXP" ; };
+ String SC_OPCODE_LN { Text = "LN" ; };
+ String SC_OPCODE_SQRT { Text = "SQRT" ; };
+ String SC_OPCODE_FACT { Text = "FACT" ; };
+ String SC_OPCODE_GET_YEAR { Text = "YEAR" ; };
+ String SC_OPCODE_GET_MONTH { Text = "MONTH" ; };
+ String SC_OPCODE_GET_DAY { Text = "DAY" ; };
+ String SC_OPCODE_GET_HOUR { Text = "HOUR" ; };
+ String SC_OPCODE_GET_MIN { Text = "MINUTE" ; };
+ String SC_OPCODE_GET_SEC { Text = "SECOND" ; };
+ String SC_OPCODE_PLUS_MINUS { Text = "SIGN" ; };
+ String SC_OPCODE_ABS { Text = "ABS" ; };
+ String SC_OPCODE_INT { Text = "INT" ; };
+ String SC_OPCODE_PHI { Text = "PHI" ; };
+ String SC_OPCODE_GAUSS { Text = "GAUSS" ; };
+ String SC_OPCODE_IS_EMPTY { Text = "ISBLANK" ; };
+ String SC_OPCODE_IS_STRING { Text = "ISTEXT" ; };
+ String SC_OPCODE_IS_NON_STRING { Text = "ISNONTEXT" ; };
+ String SC_OPCODE_IS_LOGICAL { Text = "ISLOGICAL" ; };
+ String SC_OPCODE_TYPE { Text = "TYPE" ; };
+ String SC_OPCODE_IS_REF { Text = "ISREF" ; };
+ String SC_OPCODE_IS_VALUE { Text = "ISNUMBER" ; };
+ String SC_OPCODE_IS_FORMULA { Text = "ISFORMULA" ; };
+ String SC_OPCODE_IS_NV { Text = "ISNA" ; };
+ String SC_OPCODE_IS_ERR { Text = "ISERR" ; };
+ String SC_OPCODE_IS_ERROR { Text = "ISERROR" ; };
+ String SC_OPCODE_IS_EVEN { Text = "ISEVEN" ; };
+ String SC_OPCODE_IS_ODD { Text = "ISODD" ; };
+ String SC_OPCODE_N { Text = "N" ; };
+ String SC_OPCODE_GET_DATE_VALUE { Text = "DATEVALUE" ; };
+ String SC_OPCODE_GET_TIME_VALUE { Text = "TIMEVALUE" ; };
+ String SC_OPCODE_CODE { Text = "CODE" ; };
+ String SC_OPCODE_TRIM { Text = "TRIM" ; };
+ String SC_OPCODE_UPPER { Text = "UPPER" ; };
+ String SC_OPCODE_PROPPER { Text = "PROPER" ; };
+ String SC_OPCODE_LOWER { Text = "LOWER" ; };
+ String SC_OPCODE_LEN { Text = "LEN" ; };
+ String SC_OPCODE_T { Text = "T" ; };
+ String SC_OPCODE_VALUE { Text = "VALUE" ; };
+ String SC_OPCODE_CLEAN { Text = "CLEAN" ; };
+ String SC_OPCODE_CHAR { Text = "CHAR" ; };
+ String SC_OPCODE_LOG10 { Text = "LOG10" ; };
+ String SC_OPCODE_EVEN { Text = "EVEN" ; };
+ String SC_OPCODE_ODD { Text = "ODD" ; };
+ String SC_OPCODE_STD_NORM_DIST { Text = "NORMSDIST" ; };
+ String SC_OPCODE_FISHER { Text = "FISHER" ; };
+ String SC_OPCODE_FISHER_INV { Text = "FISHERINV" ; };
+ String SC_OPCODE_S_NORM_INV { Text = "NORMSINV" ; };
+ String SC_OPCODE_GAMMA_LN { Text = "GAMMALN" ; };
+ String SC_OPCODE_ERROR_TYPE { Text = "ERRORTYPE" ; };
+ String SC_OPCODE_ERR_CELL { Text = "ZellError" ; }; // ?? Text klein, dt. & engl. gemischt ??
+ String SC_OPCODE_FORMULA { Text = "FORMULA"; };
+ String SC_OPCODE_ARC_TAN_2 { Text = "ATAN2" ; };
+ String SC_OPCODE_CEIL { Text = "CEILING" ; };
+ String SC_OPCODE_FLOOR { Text = "FLOOR" ; };
+ String SC_OPCODE_ROUND { Text = "ROUND" ; };
+ String SC_OPCODE_ROUND_UP { Text = "ROUNDUP" ; };
+ String SC_OPCODE_ROUND_DOWN { Text = "ROUNDDOWN" ; };
+ String SC_OPCODE_TRUNC { Text = "TRUNC" ; };
+ String SC_OPCODE_LOG { Text = "LOG" ; };
+ String SC_OPCODE_POWER { Text = "POWER" ; };
+ String SC_OPCODE_GGT { Text = "GCD" ; };
+ String SC_OPCODE_KGV { Text = "LCM" ; };
+ String SC_OPCODE_MOD { Text = "MOD" ; };
+ String SC_OPCODE_SUM_PRODUCT { Text = "SUMPRODUCT" ; };
+ String SC_OPCODE_SUM_SQ { Text = "SUMSQ" ; };
+ String SC_OPCODE_SUM_X2MY2 { Text = "SUMX2MY2" ; };
+ String SC_OPCODE_SUM_X2DY2 { Text = "SUMX2PY2" ; };
+ String SC_OPCODE_SUM_XMY2 { Text = "SUMXMY2" ; };
+ String SC_OPCODE_GET_DATE { Text = "DATE" ; };
+ String SC_OPCODE_GET_TIME { Text = "TIME" ; };
+ String SC_OPCODE_GET_DIFF_DATE { Text = "DAYS" ; };
+ String SC_OPCODE_GET_DIFF_DATE_360 { Text = "DAYS360" ; };
+ String SC_OPCODE_MIN { Text = "MIN" ; };
+ String SC_OPCODE_MIN_A { Text = "MINA" ; };
+ String SC_OPCODE_MAX { Text = "MAX" ; };
+ String SC_OPCODE_MAX_A { Text = "MAXA" ; };
+ String SC_OPCODE_SUM { Text = "SUM" ; };
+ String SC_OPCODE_PRODUCT { Text = "PRODUCT" ; };
+ String SC_OPCODE_AVERAGE { Text = "AVERAGE" ; };
+ String SC_OPCODE_AVERAGE_A { Text = "AVERAGEA" ; };
+ String SC_OPCODE_COUNT { Text = "COUNT" ; };
+ String SC_OPCODE_COUNT_2 { Text = "COUNTA" ; };
+ String SC_OPCODE_NBW { Text = "NPV" ; };
+ String SC_OPCODE_IKV { Text = "IRR" ; };
+ String SC_OPCODE_VAR { Text = "VAR" ; };
+ 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_ST_DEV { Text = "STDEV" ; };
+ String SC_OPCODE_ST_DEV_A { Text = "STDEVA" ; };
+ String SC_OPCODE_ST_DEV_P { Text = "STDEVP" ; };
+ String SC_OPCODE_ST_DEV_P_A { Text = "STDEVPA" ; };
+ String SC_OPCODE_B { Text = "B" ; };
+ String SC_OPCODE_NORM_DIST { Text = "NORMDIST" ; };
+ String SC_OPCODE_EXP_DIST { Text = "EXPONDIST" ; };
+ String SC_OPCODE_BINOM_DIST { Text = "BINOMDIST" ; };
+ String SC_OPCODE_POISSON_DIST { Text = "POISSON" ; };
+ String SC_OPCODE_KOMBIN { Text = "COMBIN" ; };
+ String SC_OPCODE_KOMBIN_2 { Text = "COMBINA" ; };
+ String SC_OPCODE_VARIATIONEN { Text = "PERMUT" ; };
+ String SC_OPCODE_VARIATIONEN_2 { Text = "PERMUTATIONA" ; };
+ String SC_OPCODE_BW { Text = "PV" ; };
+ String SC_OPCODE_DIA { Text = "SYD" ; };
+ String SC_OPCODE_GDA { Text = "DDB" ; };
+ String SC_OPCODE_GDA_2 { Text = "DB" ; };
+ String SC_OPCODE_VBD { Text = "VDB" ; };
+ String SC_OPCODE_LAUFZ { Text = "DURATION" ; };
+ String SC_OPCODE_LIA { Text = "SLN" ; };
+ String SC_OPCODE_RMZ { Text = "PMT" ; };
+ String SC_OPCODE_COLUMNS { Text = "COLUMNS" ; };
+ String SC_OPCODE_ROWS { Text = "ROWS" ; };
+ String SC_OPCODE_TABLES { Text = "SHEETS" ; };
+ String SC_OPCODE_COLUMN { Text = "COLUMN" ; };
+ String SC_OPCODE_ROW { Text = "ROW" ; };
+ String SC_OPCODE_TABLE { Text = "SHEET" ; };
+ String SC_OPCODE_ZGZ { Text = "ZGZ" ; };
+ String SC_OPCODE_ZW { Text = "FV" ; };
+ String SC_OPCODE_ZZR { Text = "NPER" ; };
+ String SC_OPCODE_ZINS { Text = "RATE" ; };
+ String SC_OPCODE_ZINS_Z { Text = "IPMT" ; };
+ String SC_OPCODE_KAPZ { Text = "PPMT" ; };
+ String SC_OPCODE_KUM_ZINS_Z { Text = "CUMIPMT" ; };
+ String SC_OPCODE_KUM_KAP_Z { Text = "CUMPRINC" ; };
+ String SC_OPCODE_EFFEKTIV { Text = "EFFECTIVE" ; };
+ String SC_OPCODE_NOMINAL { Text = "NOMINAL" ; };
+ String SC_OPCODE_SUB_TOTAL { Text = "SUBTOTAL" ; };
+ String SC_OPCODE_DB_SUM { Text = "DSUM" ; };
+ String SC_OPCODE_DB_COUNT { Text = "DCOUNT" ; };
+ String SC_OPCODE_DB_COUNT_2 { Text = "DCOUNTA" ; };
+ String SC_OPCODE_DB_AVERAGE { Text = "DAVERAGE" ; };
+ String SC_OPCODE_DB_GET { Text = "DGET" ; };
+ String SC_OPCODE_DB_MAX { Text = "DMAX" ; };
+ String SC_OPCODE_DB_MIN { Text = "DMIN" ; };
+ String SC_OPCODE_DB_PRODUCT { Text = "DPRODUCT" ; };
+ String SC_OPCODE_DB_STD_DEV { Text = "DSTDEV" ; };
+ String SC_OPCODE_DB_STD_DEV_P { Text = "DSTDEVP" ; };
+ String SC_OPCODE_DB_VAR { Text = "DVAR" ; };
+ String SC_OPCODE_DB_VAR_P { Text = "DVARP" ; };
+ String SC_OPCODE_INDIRECT { Text = "INDIRECT" ; };
+ String SC_OPCODE_ADRESS { Text = "ADDRESS" ; };
+ String SC_OPCODE_MATCH { Text = "MATCH" ; };
+ String SC_OPCODE_COUNT_EMPTY_CELLS { Text = "COUNTBLANK" ; };
+ String SC_OPCODE_COUNT_IF { Text = "COUNTIF" ; };
+ String SC_OPCODE_SUM_IF { Text = "SUMIF" ; };
+ String SC_OPCODE_LOOKUP { Text = "LOOKUP" ; };
+ String SC_OPCODE_V_LOOKUP { Text = "VLOOKUP" ; };
+ String SC_OPCODE_H_LOOKUP { Text = "HLOOKUP" ; };
+ String SC_OPCODE_MULTI_AREA { Text = "MULTIRANGE" ; };
+ String SC_OPCODE_OFFSET { Text = "OFFSET" ; };
+ String SC_OPCODE_INDEX { Text = "INDEX" ; };
+ String SC_OPCODE_AREAS { Text = "AREAS" ; };
+ String SC_OPCODE_CURRENCY { Text = "DOLLAR" ; };
+ String SC_OPCODE_REPLACE { Text = "REPLACE" ; };
+ String SC_OPCODE_FIXED { Text = "FIXED" ; };
+ String SC_OPCODE_FIND { Text = "FIND" ; };
+ String SC_OPCODE_EXACT { Text = "EXACT" ; };
+ String SC_OPCODE_LEFT { Text = "LEFT" ; };
+ String SC_OPCODE_RIGHT { Text = "RIGHT" ; };
+ String SC_OPCODE_SEARCH { Text = "SEARCH" ; };
+ String SC_OPCODE_MID { Text = "MID" ; };
+ String SC_OPCODE_TEXT { Text = "TEXT" ; };
+ String SC_OPCODE_SUBSTITUTE { Text = "SUBSTITUTE" ; };
+ String SC_OPCODE_REPT { Text = "REPT" ; };
+ String SC_OPCODE_CONCAT { Text = "CONCATENATE" ; };
+ String SC_OPCODE_MAT_VALUE { Text = "MVALUE" ; };
+ String SC_OPCODE_MAT_DET { Text = "MDETERM" ; };
+ String SC_OPCODE_MAT_INV { Text = "MINVERSE" ; };
+ String SC_OPCODE_MAT_MULT { Text = "MMULT" ; };
+ String SC_OPCODE_MAT_TRANS { Text = "TRANSPOSE" ; };
+ String SC_OPCODE_MATRIX_UNIT { Text = "MUNIT" ; };
+ String SC_OPCODE_BACK_SOLVER { Text = "GOALSEEK" ; };
+ String SC_OPCODE_HYP_GEOM_DIST { Text = "HYPGEOMDIST" ; };
+ String SC_OPCODE_LOG_NORM_DIST { Text = "LOGNORMDIST" ; };
+ String SC_OPCODE_T_DIST { Text = "TDIST" ; };
+ String SC_OPCODE_F_DIST { Text = "FDIST" ; };
+ String SC_OPCODE_CHI_DIST { Text = "CHIDIST" ; };
+ String SC_OPCODE_WEIBULL { Text = "WEIBULL" ; };
+ String SC_OPCODE_NEG_BINOM_VERT { Text = "NEGBINOMDIST" ; };
+ String SC_OPCODE_KRIT_BINOM { Text = "CRITBINOM" ; };
+ String SC_OPCODE_KURT { Text = "KURT" ; };
+ String SC_OPCODE_HAR_MEAN { Text = "HARMEAN" ; };
+ String SC_OPCODE_GEO_MEAN { Text = "GEOMEAN" ; };
+ String SC_OPCODE_STANDARD { Text = "STANDARDIZE" ; };
+ String SC_OPCODE_AVE_DEV { Text = "AVEDEV" ; };
+ String SC_OPCODE_SCHIEFE { Text = "SKEW" ; };
+ String SC_OPCODE_DEV_SQ { Text = "DEVSQ" ; };
+ String SC_OPCODE_MEDIAN { Text = "MEDIAN" ; };
+ String SC_OPCODE_MODAL_VALUE { Text = "MODE" ; };
+ String SC_OPCODE_Z_TEST { Text = "ZTEST" ; };
+ String SC_OPCODE_T_TEST { Text = "TTEST" ; };
+ String SC_OPCODE_RANK { Text = "RANK" ; };
+ String SC_OPCODE_PERCENTILE { Text = "PERCENTILE" ; };
+ String SC_OPCODE_PERCENT_RANK { Text = "PERCENTRANK" ; };
+ String SC_OPCODE_LARGE { Text = "LARGE" ; };
+ String SC_OPCODE_SMALL { Text = "SMALL" ; };
+ String SC_OPCODE_FREQUENCY { Text = "FREQUENCY" ; };
+ String SC_OPCODE_QUARTILE { Text = "QUARTILE" ; };
+ String SC_OPCODE_NORM_INV { Text = "NORMINV" ; };
+ String SC_OPCODE_CONFIDENCE { Text = "CONFIDENCE" ; };
+ String SC_OPCODE_F_TEST { Text = "FTEST" ; };
+ String SC_OPCODE_TRIM_MEAN { Text = "TRIMMEAN" ; };
+ String SC_OPCODE_PROB { Text = "PROB" ; };
+ String SC_OPCODE_CORREL { Text = "CORREL" ; };
+ String SC_OPCODE_COVAR { Text = "COVAR" ; };
+ String SC_OPCODE_PEARSON { Text = "PEARSON" ; };
+ String SC_OPCODE_RSQ { Text = "RSQ" ; };
+ String SC_OPCODE_STEYX { Text = "STEYX" ; };
+ String SC_OPCODE_SLOPE { Text = "SLOPE" ; };
+ String SC_OPCODE_INTERCEPT { Text = "INTERCEPT" ; };
+ String SC_OPCODE_TREND { Text = "TREND" ; };
+ String SC_OPCODE_GROWTH { Text = "GROWTH" ; };
+ String SC_OPCODE_RGP { Text = "LINEST" ; };
+ String SC_OPCODE_RKP { Text = "LOGEST" ; };
+ String SC_OPCODE_FORECAST { Text = "FORECAST" ; };
+ String SC_OPCODE_CHI_INV { Text = "CHIINV" ; };
+ String SC_OPCODE_GAMMA_DIST { Text = "GAMMADIST" ; };
+ String SC_OPCODE_GAMMA_INV { Text = "GAMMAINV" ; };
+ String SC_OPCODE_T_INV { Text = "TINV" ; };
+ String SC_OPCODE_F_INV { Text = "FINV" ; };
+ String SC_OPCODE_CHI_TEST { Text = "CHITEST" ; };
+ String SC_OPCODE_LOG_INV { Text = "LOGINV" ; };
+ String SC_OPCODE_TABLE_OP { Text = "TABLE" ; };
+ String SC_OPCODE_BETA_DIST { Text = "BETADIST" ; };
+ String SC_OPCODE_BETA_INV { Text = "BETAINV" ; };
+ String SC_OPCODE_WEEK { Text = "WEEKNUM" ; };
+ String SC_OPCODE_EASTERSUNDAY { Text = "EASTERSUNDAY" ; };
+ String SC_OPCODE_GET_DAY_OF_WEEK { Text = "WEEKDAY" ; };
+ String SC_OPCODE_NO_NAME { Text = "#NAME!" ; };
+ String SC_OPCODE_STYLE { Text = "STYLE" ; };
+ String SC_OPCODE_DDE { Text = "DDE" ; };
+ String SC_OPCODE_BASE { Text = "BASE" ; };
+ String SC_OPCODE_DECIMAL { Text = "DECIMAL" ; };
+ String SC_OPCODE_CONVERT { Text = "CONVERT" ; };
+};