summaryrefslogtreecommitdiff
path: root/scaddins
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2003-03-26 16:46:50 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2003-03-26 16:46:50 +0000
commitff721adbe05f7a6659d9dffcf46c671f8a644da7 (patch)
tree86e9959f447ba69c201e6c2f95a296df8ea7ab7a /scaddins
parentdce26a72240ba8716580b9c23fdfe0e9b65c9652 (diff)
MWS_SRX644: migrate branch mws_srx644 -> HEAD
Diffstat (limited to 'scaddins')
-rw-r--r--scaddins/source/analysis/analysis.cxx18
-rw-r--r--scaddins/source/analysis/analysis.src3595
-rw-r--r--scaddins/source/analysis/analysis_funcnames.src520
-rw-r--r--scaddins/source/analysis/analysisdefs.hxx8
-rw-r--r--scaddins/source/analysis/analysishelper.cxx102
-rw-r--r--scaddins/source/analysis/analysishelper.hxx6
-rw-r--r--scaddins/source/analysis/financial.cxx107
-rw-r--r--scaddins/source/datefunc/datefunc.src313
8 files changed, 2373 insertions, 2296 deletions
diff --git a/scaddins/source/analysis/analysis.cxx b/scaddins/source/analysis/analysis.cxx
index b14ca62ed08a..291e6065c93e 100644
--- a/scaddins/source/analysis/analysis.cxx
+++ b/scaddins/source/analysis/analysis.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: analysis.cxx,v $
*
- * $Revision: 1.31 $
+ * $Revision: 1.32 $
*
- * last change: $Author: dr $ $Date: 2001-10-12 09:27:13 $
+ * last change: $Author: hr $ $Date: 2003-03-26 17:46:41 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -64,7 +64,7 @@
#include <cppuhelper/factory.hxx>
#include <osl/diagnose.h>
#include <rtl/ustrbuf.hxx>
-#include <tools/solmath.hxx>
+#include <rtl/math.hxx>
#include <string.h>
#include <tools/resmgr.hxx>
@@ -848,7 +848,7 @@ double SAL_CALL AnalysisAddIn::getSeriessum( double fX, double fN, double fM, co
double SAL_CALL AnalysisAddIn::getQuotient( double fNum, double fDenum ) THROWDEF_RTE_IAE
{
- double fRet = SolarMath::ApproxFloor( fNum / fDenum );
+ double fRet = ::rtl::math::approxFloor( fNum / fDenum );
RETURN_FINITE( fRet );
}
@@ -858,7 +858,7 @@ double SAL_CALL AnalysisAddIn::getMround( double fNum, double fMult ) THROWDEF_R
if( fMult == 0.0 )
return fMult;
- double fRet = fMult * SolarMath::Round( fNum / fMult );
+ double fRet = fMult * ::rtl::math::round( fNum / fMult );
RETURN_FINITE( fRet );
}
@@ -872,9 +872,9 @@ double SAL_CALL AnalysisAddIn::getSqrtpi( double fNum ) THROWDEF_RTE_IAE
double SAL_CALL AnalysisAddIn::getRandbetween( double fMin, double fMax ) THROWDEF_RTE_IAE
{
- const SolarMathRoundingMode eRM = SolarMathRoundUp;
- fMin = SolarMath::Round( fMin, 0, eRM );
- fMax = SolarMath::Round( fMax, 0, eRM );
+ const rtl_math_RoundingMode eRM = rtl_math_RoundingMode_Up;
+ fMin = ::rtl::math::round( fMin, 0, eRM );
+ fMax = ::rtl::math::round( fMax, 0, eRM );
if( fMin > fMax )
THROW_IAE;
@@ -883,7 +883,7 @@ double SAL_CALL AnalysisAddIn::getRandbetween( double fMin, double fMax ) THROWD
fMax -= fMin;
fMax /= double( RAND_MAX );
- double fRet = SolarMath::Round( fMin + fMax * double( rand() ) );
+ double fRet = ::rtl::math::round( fMin + fMax * double( rand() ) );
RETURN_FINITE( fRet );
}
diff --git a/scaddins/source/analysis/analysis.src b/scaddins/source/analysis/analysis.src
index 4f30d730af49..59eef9fe00f6 100644
--- a/scaddins/source/analysis/analysis.src
+++ b/scaddins/source/analysis/analysis.src
@@ -2,9 +2,9 @@
*
* $RCSfile: analysis.src,v $
*
- * $Revision: 1.55 $
+ * $Revision: 1.56 $
*
- * last change: $Author: vg $ $Date: 2002-06-12 10:24:44 $
+ * last change: $Author: hr $ $Date: 2003-03-26 17:46:41 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -74,19 +74,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Returns the serial number of the date before or after a specified number of workdays";
Text[ portuguese ] = "Devolve o nmero de srie da data antes ou depois de um determinado nmero de dias teis.";
- Text[ russian ] = " , , .";
+ Text[ russian ] = " , , .";
Text[ greek ] = "Returns the serial number of the date before or after a specified number of workdays";
- Text[ dutch ] = "Returns the serial number of the date before or after a specified number of workdays";
+ Text[ dutch ] = "Geeft als resultaat de waarde van de datum die voor of na een bepaald aantal werkdagen valt.";
Text[ french ] = "Renvoie le numro de srie de la date prcdant ou suivant un nombre spcifi de jours ouvrs.";
Text[ spanish ] = "Devuelve el nmero de serie de la fecha anterior o posterior a un nmero determinado de das laborales.";
Text[ finnish ] = "Palauttaa pivmrn sarjanumeron alkupivmr edeltvlt tai seuraavalta ajalta (mritys pivin)";
Text[ italian ] = "Restituisce la data espressa in numero seriale del giorno precedente o successivo al numero specificato di giorni lavorativi.";
- Text[ danish ] = "Returns the serial number of the date before or after a specified number of workdays";
+ Text[ danish ] = "Returnerer det fortlbende tal for datoen, som ligger fr eller efter et bestemt antal arbejdsdage.";
Text[ swedish ] = "Returnerar serienumret fr datumet som ligger fre eller efter ett visst antal arbetsdagar.";
Text[ polish ] = "Podaje warto liczby seryjnej daty przed lub po okrelonej liczbie dni roboczych.";
Text[ portuguese_brazilian ] = "Returns the serial number of the date before or after a specified number of workdays";
Text[ japanese ] = "開始日から起算して指定された週日の数だけ前または後の日付を表すシリアル値を返します。";
- Text[ korean ] = "지정된 업무일의 수보다 이전 또는 이후에 있는 날짜의 연속 날짜값을 반환합니다";
+ Text[ korean ] = "지정된 업무일의 수보다 이전 또는 이후에 있는 날짜의 연속 날짜값을 구합니다.";
Text[ chinese_simplified ] = "返回某一指定工作日日期之前或之后相隔的日期数值。";
Text[ chinese_traditional ] = "傳回日期(起始日期)之前幾天或後幾天之工作日的日期。";
Text[ turkish ] = "Returns the serial number of the date before or after a specified number of workdays";
@@ -102,14 +102,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Start date";
Text[ portuguese ] = "Data inicial";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "start date";
Text[ dutch ] = "Begindatum";
Text[ french ] = "Date initiale";
Text[ spanish ] = "Fecha inicial";
Text[ finnish ] = "Alkupivmr";
Text[ italian ] = "Data iniziale";
- Text[ danish ] = "start date";
+ Text[ danish ] = "Startdato";
Text[ swedish ] = "Startdatum";
Text[ polish ] = "Data pocztkowa";
Text[ portuguese_brazilian ] = "start date";
@@ -137,7 +137,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Fecha inicial";
Text[ finnish ] = "Aloituspivmr";
Text[ italian ] = "Data iniziale";
- Text[ danish ] = "start date";
+ Text[ danish ] = "Startdato";
Text[ swedish ] = "Startdatum";
Text[ polish ] = "Liczba seryjna okrelajca dat pocztkow.";
Text[ portuguese_brazilian ] = "start date";
@@ -165,7 +165,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Das";
Text[ finnish ] = "Pivien mr";
Text[ italian ] = "Giorni";
- Text[ danish ] = "days";
+ Text[ danish ] = "Dage";
Text[ swedish ] = "Dagar";
Text[ polish ] = "Dni";
Text[ portuguese_brazilian ] = "days";
@@ -193,12 +193,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Nmero de das laborales anteriores o posteriores a la fecha inicial.";
Text[ finnish ] = "Aloituspivmr edeltvien tai seuraavien pivien mr";
Text[ italian ] = "Numero dei giorni lavorativi precedenti o successivi alla data iniziale.";
- Text[ danish ] = "days";
+ Text[ danish ] = "Antal arbejdsdage fr eller efter startdatoen.";
Text[ swedish ] = "Antalet arbetsdagar fre eller efter startdatumet.";
Text[ polish ] = "Liczba dni roboczych przed lub po dacie pocztkowej.";
Text[ portuguese_brazilian ] = "days";
Text[ japanese ] = "開始日から起算して週末や祭日を除く週日の日数。";
- Text[ korean ] = "일";
+ Text[ korean ] = "시작일 전과 후의 근무 일수";
Text[ chinese_simplified ] = "开始日期之前或之后的工作日的天数。";
Text[ chinese_traditional ] = "為起始日期之前或之後的工作日的天數。";
Text[ turkish ] = "days";
@@ -218,10 +218,10 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ greek ] = "holidays";
Text[ dutch ] = "Vrije dagen";
Text[ french ] = "Congs et ftes";
- Text[ spanish ] = "Das libres";
+ Text[ spanish ] = "Vacaciones";
Text[ finnish ] = "Loma-ajat";
Text[ italian ] = "Vacanze";
- Text[ danish ] = "holidays";
+ Text[ danish ] = "Fridage";
Text[ swedish ] = "Lediga dagar";
Text[ polish ] = "Dni wolne od pracy";
Text[ portuguese_brazilian ] = "holidays";
@@ -242,14 +242,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "List of date values of days off (vacation, holidays, etc.)";
Text[ portuguese ] = "Lista incluindo as datas de dias feriados (frias, feriados, etc.).";
- Text[ russian ] = " (, , ..)";
+ Text[ russian ] = " (, ..)";
Text[ greek ] = "holidays";
- Text[ dutch ] = "Lijst met datumswaarden van vrije dagen (vakantie, nat. feestdagen, etc.)";
+ Text[ dutch ] = "Lijst met datumwaarden van vrije dagen (vakantie, nationale feestdagen, enz.)";
Text[ french ] = "Liste comprenant les dates des congs, jours fris, etc.";
Text[ spanish ] = "Lista con valores de das festivos (vacaciones, festivos, etc.)";
Text[ finnish ] = "Luettelo vapaapivien (lomat, vapaa-aika ja niin edelleen) pivmrarvoista";
Text[ italian ] = "Lista con le date dei giorni festivi, vacanze, ecc.";
- Text[ danish ] = "holidays";
+ Text[ danish ] = "Liste med datovrdier for fridage (ferie, helligdage, etc.).";
Text[ swedish ] = "Lista med datumvrden fr lediga dagar (semester, helgdagar o.s.v.).";
Text[ polish ] = "Wykaz dni wolnych (urlopw, wit pastwowych lub kocielnych itp.).";
Text[ portuguese_brazilian ] = "holidays";
@@ -273,19 +273,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Returns the number of whole days between 'start date' and 'end date' as a year fraction";
Text[ portuguese ] = "Calcula a fraco do ano representado pelo nmero de dias entre a data inicial e a data final.";
- Text[ russian ] = " , ( ).";
+ Text[ russian ] = " , .";
Text[ greek ] = "Returns the year fraction representing the number of whole days between start_date and end_date";
- Text[ dutch ] = "Returns the year fraction representing the number of whole days between start_date and end_date";
+ Text[ dutch ] = "Berekent het verschil tussen begindatum en einddatum in de vorm van een deel van een jaar.";
Text[ french ] = "Renvoie la diffrence entre deux dates sous forme de fraction d'anne.";
Text[ spanish ] = "Calcula la diferencia entre la fecha inicial y final como fraccin de aos.";
- Text[ finnish ] = "Palauttaa alku- ja loppupivmrn vlisten pivien lukumrn (vuosina, murtoluku)";
+ Text[ finnish ] = "Palauttaa alku- ja loppupivmrn vlisten pivien mrn vuosina, murtolukuna";
Text[ italian ] = "Restituisce la differenza tra la data iniziale e la data finale come frazione dell'anno.";
- Text[ danish ] = "Returns the year fraction representing the number of whole days between start_date and end_date";
+ Text[ danish ] = "Beregner forskellen mellem startdato og slutdato som brkdel af r.";
Text[ swedish ] = "Berknar antalet hela dagar av ett r mellan startdatum och slutdatum.";
Text[ polish ] = "Podaje, jak cz roku stanowi pena liczba dni pomidzy dat pocztkow a kocow.";
Text[ portuguese_brazilian ] = "Returns the year fraction representing the number of whole days between start_date and end_date";
Text[ japanese ] = "開始日と終了日の間の日数が1年間に対して占める割合を返します。";
- Text[ korean ] = "시작 날짜와 끝 날짜 사이에 속하는 전체 날짜의 수를 나타내는 연도 분수를 반환합니다.";
+ Text[ korean ] = "시작일과 만료일 사이에 있는 모든 일수를 연도의 분수로 구합니다.";
Text[ chinese_simplified ] = "计算某一开始日期和结束日期之间的天数和全年天数的百分比。";
Text[ chinese_traditional ] = "計算起始日期與結束日期之間的天數於一年中的比例。";
Text[ turkish ] = "Returns the year fraction representing the number of whole days between start_date and end_date";
@@ -301,19 +301,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Start date";
Text[ portuguese ] = "Data inicial";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "start date";
Text[ dutch ] = "Begindatum";
Text[ french ] = "Date initiale";
Text[ spanish ] = "Fecha inicial";
Text[ finnish ] = "Alkupivmr";
Text[ italian ] = "Data iniziale";
- Text[ danish ] = "start date";
+ Text[ danish ] = "Startdato";
Text[ swedish ] = "Startdatum";
Text[ polish ] = "Data pocztkowa";
Text[ portuguese_brazilian ] = "start date";
Text[ japanese ] = "開始日";
- Text[ korean ] = "시작 날짜";
+ Text[ korean ] = "시작일";
Text[ chinese_simplified ] = "start_date";
Text[ chinese_traditional ] = "start_date";
Text[ turkish ] = "start date";
@@ -336,12 +336,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Fecha inicial";
Text[ finnish ] = "Aloituspivmr";
Text[ italian ] = "Data iniziale";
- Text[ danish ] = "start date";
+ Text[ danish ] = "Startdato";
Text[ swedish ] = "Startdatum";
Text[ polish ] = "Liczba okrelajca dat pocztkow.";
Text[ portuguese_brazilian ] = "start date";
Text[ japanese ] = "対象期間の初日を表す日付";
- Text[ korean ] = "시작 날짜";
+ Text[ korean ] = "시작일";
Text[ chinese_simplified ] = "开始日期";
Text[ chinese_traditional ] = "起始日期";
Text[ turkish ] = "start date";
@@ -357,14 +357,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "End date";
Text[ portuguese ] = "Data final";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "end date";
Text[ dutch ] = "Einddatum";
Text[ french ] = "Date de fin";
Text[ spanish ] = "Fecha final";
Text[ finnish ] = "Loppupivmr";
Text[ italian ] = "Data finale";
- Text[ danish ] = "end date";
+ Text[ danish ] = "Slutdato";
Text[ swedish ] = "Slutdatum";
Text[ polish ] = "Data kocowa";
Text[ portuguese_brazilian ] = "end date";
@@ -385,14 +385,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The end date";
Text[ portuguese ] = "Data final";
- Text[ russian ] = " ";
+ Text[ russian ] = " .";
Text[ greek ] = "end date";
Text[ dutch ] = "Einddatum";
Text[ french ] = "Date de fin";
Text[ spanish ] = "Fecha final";
Text[ finnish ] = "Lopetuspivmr";
Text[ italian ] = "Data finale";
- Text[ danish ] = "end date";
+ Text[ danish ] = "Slutdato";
Text[ swedish ] = "Slutdatum";
Text[ polish ] = "Liczba okrelajca dat kocow.";
Text[ portuguese_brazilian ] = "end date";
@@ -420,10 +420,10 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Base";
Text[ finnish ] = "Kantaluku";
Text[ italian ] = "Base";
- Text[ danish ] = "basis";
+ Text[ danish ] = "BASIS";
Text[ swedish ] = "Bas";
Text[ polish ] = "Podstawa";
- Text[ portuguese_brazilian ] = "basis";
+ Text[ portuguese_brazilian ] = "A base";
Text[ japanese ] = "基準";
Text[ korean ] = "기준";
Text[ chinese_simplified ] = "basis";
@@ -444,16 +444,16 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ russian ] = " .";
Text[ greek ] = " ";
Text[ dutch ] = "Basis";
- Text[ french ] = "Base pour le comptage des jours.";
+ Text[ french ] = "Base pour le comptage des jours";
Text[ spanish ] = "Base para determinar los das de intereses";
Text[ finnish ] = "Korkopivien mrityksess kytettv kantaluku";
Text[ italian ] = "Base per il calcolo dei giorni.";
- Text[ danish ] = "basis";
+ Text[ danish ] = "Basis for bestemmelsen af rentedage";
Text[ swedish ] = "Bas fr bestmning av rntedagar";
Text[ polish ] = "Typ przyjtego systemu liczenia dni.";
Text[ portuguese_brazilian ] = "basis";
Text[ japanese ] = "1年を何日として計算するかを数値で指定";
- Text[ korean ] = "기본";
+ Text[ korean ] = "이자 일수 지정을 위한 기준";
Text[ chinese_simplified ] = "表示确定利息天数的基数";
Text[ chinese_traditional ] = "用於設定利息天數的利基。";
Text[ turkish ] = "Taban";
@@ -474,17 +474,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Returns the serial number of the date that is the indicated number of months before or after the start date";
Text[ russian ] = " , , .";
Text[ greek ] = "Returns the serial number of the date that is the indicated number of months before or after the start date";
- Text[ dutch ] = "Returns the serial number of the date that is the indicated number of months before or after the start date";
+ Text[ dutch ] = "Geeft als resultaat de waarde van de datum die een bepaald aantal maanden voor of na de begindatum valt.";
Text[ french ] = "Renvoie le numro de srie de la date situe avant ou aprs un nombre spcifi de mois par rapport la date de dpart.";
Text[ spanish ] = "Devuelve el nmero de serie de la fecha anterior o posterior, en un nmero determinado de meses, a la fecha inicial.";
- Text[ finnish ] = "Palauttaa pivmrn sarjanumeron alkupivmr edeltvlt tai seuraavalta ajalta (mritys kuukausina)!<";
+ Text[ finnish ] = "Palauttaa pivmrn sarjanumeron alkupivmr edeltvlt tai seuraavalta ajalta (mritys kuukausina)";
Text[ italian ] = "Restituisce la data espressa in numero seriale del mese precedente o successivo alla data iniziale.";
- Text[ danish ] = "Returns the serial number of the date that is the indicated number of months before or after the start date";
+ Text[ danish ] = "Returnerer det fortlbende tal for datoen, som et bestemt antal mneder ligger fr eller efter startdatoen.";
Text[ swedish ] = "Returnerar serienumret fr det datum som ligger ett visst antal mnader fre resp. efter startdatumet.";
Text[ polish ] = "Podaje warto liczby seryjnej daty, przypadajcej na podan liczb miesicy przed lub po dacie pocztkowej.";
Text[ portuguese_brazilian ] = "Returns the serial number of the date that is the indicated number of months before or after the start date";
Text[ japanese ] = "開始日から起算して指定された月数だけ前または後の日付に対応するシリアル値を返します。";
- Text[ korean ] = "시작 날짜보다 이전 또는 이후에 지정된 개월 수를 나타내는 날짜의 연속 날짜값을 반환합니다.";
+ Text[ korean ] = "시작일 이전 또는 이후에 지정된 개월수를 나타내는 일수의 연속값을 구합니다.";
Text[ chinese_simplified ] = "返回某一指定日期之前或之后指定月份数的日期系列数。";
Text[ chinese_traditional ] = "傳回某個開始日期之前幾個月或後幾個月的某一天的日期時間序列編號。";
Text[ turkish ] = "Returns the serial number of the date that is the indicated number of months before or after the start date";
@@ -500,19 +500,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Start date";
Text[ portuguese ] = "start date";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "start date";
Text[ dutch ] = "Begindatum";
Text[ french ] = "Date initiale";
Text[ spanish ] = "Fecha inicial";
Text[ finnish ] = "Alkupivmr";
Text[ italian ] = "Data iniziale";
- Text[ danish ] = "start date";
+ Text[ danish ] = "Startdato";
Text[ swedish ] = "Startdatum";
Text[ polish ] = "Data pocztkowa";
Text[ portuguese_brazilian ] = "start date";
Text[ japanese ] = "開始日";
- Text[ korean ] = "시작 날짜";
+ Text[ korean ] = "시작일";
Text[ chinese_simplified ] = "start_date";
Text[ chinese_traditional ] = "start_date";
Text[ turkish ] = "start date";
@@ -535,12 +535,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Fecha inicial";
Text[ finnish ] = "Aloituspivmr";
Text[ italian ] = "Data iniziale";
- Text[ danish ] = "start date";
+ Text[ danish ] = "Startdato";
Text[ swedish ] = "Startdatum";
Text[ polish ] = "Liczba okrelajca dat pocztkow.";
Text[ portuguese_brazilian ] = "start date";
Text[ japanese ] = "起算日を表す日付";
- Text[ korean ] = "시작 날짜";
+ Text[ korean ] = "시작일";
Text[ chinese_simplified ] = "开始日期";
Text[ chinese_traditional ] = "起始日期";
Text[ turkish ] = "start date";
@@ -563,7 +563,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Meses";
Text[ finnish ] = "Kuukausien mr";
Text[ italian ] = "Mesi";
- Text[ danish ] = "months";
+ Text[ danish ] = "Mneder";
Text[ swedish ] = "Mnader";
Text[ polish ] = "Miesice";
Text[ portuguese_brazilian ] = "months";
@@ -584,19 +584,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Number of months before or after the start date";
Text[ portuguese ] = "months";
- Text[ russian ] = " .";
+ Text[ russian ] = " ";
Text[ greek ] = "months";
Text[ dutch ] = "Maanden";
Text[ french ] = "Nombre de mois avant ou aprs la date initiale.";
Text[ spanish ] = "Cantidad de meses anterior o posterior a la fecha inicial.";
Text[ finnish ] = "Aloituspivmr edeltvien tai seuraavien kuukausien mr";
Text[ italian ] = "Numero di mesi precedenti o successivi alla data iniziale.";
- Text[ danish ] = "months";
+ Text[ danish ] = "Antal mneder fr eller efter startdatoen.";
Text[ swedish ] = "Antal mnader fre eller efter startdatum.";
Text[ polish ] = "Liczba miesicy przed lub po dacie pocztkowej.";
Text[ portuguese_brazilian ] = "months";
Text[ japanese ] = "開始日から起算した前または後の月数。";
- Text[ korean ] = "개월";
+ Text[ korean ] = "시작일 이전 또는 이후의 개월수";
Text[ chinese_simplified ] = "某一指定日期之前或之后的月份数。";
Text[ chinese_traditional ] = "為起始日期之前或之後的月數。";
Text[ turkish ] = "months";
@@ -614,24 +614,24 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ english ] = "Returns the week number in year";
Text[ english_us ] = "Returns the number of the calendar week in which the specified date occurs.";
Text[ portuguese ] = "Devolve um nmero indicando em que semana do ano recai a data especificada.";
- Text[ russian ] = " , , .";
+ Text[ russian ] = " , .";
Text[ greek ] = "Returns the week number in year";
- Text[ dutch ] = "Geeft als restultaat het weeknummer waarin de aangegeven datum valt.";
+ Text[ dutch ] = "Geeft een getal dat de week van een jaar aangeeft waarin de opgegeven datum valt.";
Text[ french ] = "Renvoie un numro indiquant la semaine calendaire de la date spcifie.";
Text[ spanish ] = "Devuelve un nmero que muestra la semana del ao correspondiente a la fecha indicada.";
- Text[ finnish ] = "Returns the week number in year";
+ Text[ finnish ] = "Palauttaa pivien mrn kalenteriviikossa, jossa annettu piv on";
Text[ italian ] = "Restituisce il numero della settimana dell'anno della data specificata.";
- Text[ danish ] = "Returns the week number in year";
+ Text[ danish ] = "Returnerer et tal, som angiver, i hvilken uge i et r den angivne dato falder.";
Text[ swedish ] = "Returnerar ett tal som anger i vilken vecka det angivna datumet infaller ett visst r.";
Text[ polish ] = "Podaje numer tygodnia w roku.";
Text[ portuguese_brazilian ] = "Returns the week number in year";
Text[ japanese ] = "指定した日付がその年の何週目にあたるかを数値で返します。";
- Text[ korean ] = "지정된 날짜가 한 해의 어느 주에 해당하는지를 지정하는 값을 제공합니다.";
+ Text[ korean ] = "지정된 날짜가 한 해의 몇번째 주에 해당하는지를 구합니다.";
Text[ chinese_simplified ] = "计算某一日期在一年当中的周序列数。";
Text[ chinese_traditional ] = "傳回某一日期在一年當中的週序列數。";
Text[ turkish ] = "Returns the week number in year";
Text[ arabic ] = "Returns the week number in year";
- Text[ catalan ] = "Returns the week number in year";
+ Text[ catalan ] = "Torna el nmero de la setmana de l'any";
Text[ thai ] = "ส่งกลับจำนวนสัปดาห์ตามปฏิทินในวันที่ระบุที่เกิดขึ้น";
};
@@ -668,7 +668,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ english ] = "Datum";
Text[ english_us ] = "The date";
Text[ portuguese ] = "Data";
- Text[ russian ] = ", .";
+ Text[ russian ] = "";
Text[ greek ] = "";
Text[ dutch ] = "Datum";
Text[ french ] = "Date";
@@ -695,14 +695,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ english ] = "Rckgabetyp";
Text[ english_us ] = "Return type";
Text[ portuguese ] = "Mtodo";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "Rckgabetyp";
Text[ dutch ] = "Type resultaat";
Text[ french ] = "Mthode";
Text[ spanish ] = "Tipo de devolucin";
Text[ finnish ] = "Palautetyyppi";
Text[ italian ] = "Metodo";
- Text[ danish ] = "Rckgabetyp";
+ Text[ danish ] = "Returtype";
Text[ swedish ] = "Returtyp";
Text[ polish ] = "Typ wyniku";
Text[ portuguese_brazilian ] = "Rckgabetyp";
@@ -712,7 +712,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "return_type";
Text[ turkish ] = "Rckgabetyp";
Text[ arabic ] = "Rckgabetyp";
- Text[ catalan ] = "Tipus de devoluci";
+ Text[ catalan ] = "Tipus de retorn";
Text[ thai ] = "ส่งกลับชนิด";
};
@@ -722,14 +722,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ english ] = "Eine Zahl von 1 bis 3, die angibt, mit welchem Tag eine Woche beginnt.";
Text[ english_us ] = "A number from 1 to 3 that specifies the day with which a week begins";
Text[ portuguese ] = "Um nmero de 1 a 3 que indica o dia de incio da semana.";
- Text[ russian ] = " 1 3, , .";
+ Text[ russian ] = " 1 3, , .";
Text[ greek ] = "Eine Zahl von 1 bis 3, die angibt, mit welchem Tag eine Woche beginnt.";
- Text[ dutch ] = "Een getal tussen 1 en 3 dat aangeeft, met welke dag een week begint.";
+ Text[ dutch ] = "Een getal tussen 1 en 3 dat de dag aangeeft waarop de week begint.";
Text[ french ] = "Un nombre spcifiant le jour du dbut de la semaine (1, 2 ou 3).";
Text[ spanish ] = "Un nmero del 1 al 3 que indica el da con el que comienza una semana.";
Text[ finnish ] = "Luku 1 - 3, joka mritt, mik viikonpiv on viikon alkupiv.";
Text[ italian ] = "Un numero (da 1 a 3) che indica con quale giorno inizia la settimana.";
- Text[ danish ] = "Eine Zahl von 1 bis 3, die angibt, mit welchem Tag eine Woche beginnt.";
+ Text[ danish ] = "Et tal fra 1 til 3, som angiver, med hvilken dag en uge begynder.";
Text[ swedish ] = "Ett tal frn 1 till 3 som anger med vilken dag en vecka brjar.";
Text[ polish ] = "Liczba (1 do 3) okrelajca typ zwracanej wartoci.";
Text[ portuguese_brazilian ] = "Eine Zahl von 1 bis 3, die angibt, mit welchem Tag eine Woche beginnt.";
@@ -739,7 +739,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "1至3其中的一個數字代表某一天為一週的開始。";
Text[ turkish ] = "Eine Zahl von 1 bis 3, die angibt, mit welchem Tag eine Woche beginnt.";
Text[ arabic ] = "Eine Zahl von 1 bis 3, die angibt, mit welchem Tag eine Woche beginnt.";
- Text[ catalan ] = "Un nombre de l'1 al 3 que indica el dia amb el qual comena la setmana";
+ Text[ catalan ] = "Un nmero del 1 al 3 que indica el dia que comena una setmana.";
Text[ thai ] = "ตัวเลขจาก 1 ถึง 3 ที่ระบุวันด้วยสัปดาห์เริ่มต้น";
};
};
@@ -753,14 +753,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Returns the serial number of the last day of the month that comes a certain number of months before or after the start date";
Text[ portuguese ] = "Returns the serial number of the last day of the month before or after a specified number of months";
- Text[ russian ] = " , .";
+ Text[ russian ] = " , .";
Text[ greek ] = "Returns the serial number of the last day of the month before or after a specified number of months";
- Text[ dutch ] = "Returns the serial number of the last day of the month before or after a specified number of months";
+ Text[ dutch ] = "Geeft als resultaat de waarde van de datum van de laatste dag van de maand die een bepaald aantal maanden voor of na de begindatum valt.";
Text[ french ] = "Renvoie le numro de srie du dernier jour du mois situ avant ou aprs un nombre spcifi de mois par rapport la date de dpart.";
Text[ spanish ] = "Devuelve el nmero de serie de la fecha que representa el ltimo da del mes anterior o posterior a un nmero determinado de meses.";
Text[ finnish ] = "Palauttaa kuukauden viimeisen pivmrn sarjanumeron alkupivmr edeltvlt tai seuraavalta ajalta (mritys kuukausina)";
Text[ italian ] = "Restituisce la data dell'ultimo giorno di un mese che anticipa o segue di alcuni mesi la data iniziale.";
- Text[ danish ] = "Returns the serial number of the last day of the month before or after a specified number of months";
+ Text[ danish ] = "Returnerer det fortlbende tal for den dato, som reprsenterer den sidste dag i den mned, der ligger et bestemt antal mneder fr eller efter startdatoen.";
Text[ swedish ] = "Returnerar ett serienummer fr det datum som representerar den sista dagen i mnaden som ligger ett visst antal mnader fre eller efter startdatumet.";
Text[ polish ] = "Podaje warto liczby seryjnej daty ostatniego dnia miesica przed lub po podanej liczbie miesicy.";
Text[ portuguese_brazilian ] = "Returns the serial number of the last day of the month before or after a specified number of months";
@@ -770,7 +770,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "傳回在起始日期之前或之後指定月數的這一個月最後一天的序列號碼。";
Text[ turkish ] = "Returns the serial number of the last day of the month before or after a specified number of months";
Text[ arabic ] = "Returns the serial number of the last day of the month before or after a specified number of months";
- Text[ catalan ] = "Torna el nombre de srie de la data que representa l'ltim dia del mes anterior o posterior a un nombre determinat de mesos.";
+ Text[ catalan ] = "Torna el nmero de srie de l'ltim dia del mes abans o desprs d'un nmero especificat de mesos";
Text[ thai ] = "ส่งกลับหมายเลขลำดับของวันสุดท้ายของเดือนที่มากับจำนวนเดือนที่แน่นอนก่อนหรือหลังจากวันที่เริ่มต้น";
};
@@ -781,19 +781,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Start date";
Text[ portuguese ] = "start date";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "start date";
- Text[ dutch ] = "start date";
+ Text[ dutch ] = "Begindatum";
Text[ french ] = "Date initiale";
Text[ spanish ] = "Fecha inicial";
Text[ finnish ] = "Alkupivmr";
Text[ italian ] = "Data iniziale";
- Text[ danish ] = "start date";
+ Text[ danish ] = "Startdato";
Text[ swedish ] = "Startdatum";
Text[ polish ] = "Data pocztkowa";
Text[ portuguese_brazilian ] = "start date";
Text[ japanese ] = "開始日";
- Text[ korean ] = "시작 날짜";
+ Text[ korean ] = "시작일";
Text[ chinese_simplified ] = "start_date";
Text[ chinese_traditional ] = "start_date";
Text[ turkish ] = "start date";
@@ -809,19 +809,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The start date";
Text[ portuguese ] = "start date";
- Text[ russian ] = " .";
+ Text[ russian ] = " ";
Text[ greek ] = "start date";
- Text[ dutch ] = "start date";
+ Text[ dutch ] = "Begindatum";
Text[ french ] = "Date initiale";
Text[ spanish ] = "Fecha inicial";
Text[ finnish ] = "Aloituspivmr";
Text[ italian ] = "Data iniziale";
- Text[ danish ] = "start date";
+ Text[ danish ] = "Startdato";
Text[ swedish ] = "Startdatum";
Text[ polish ] = "Liczba okrelajca dat pocztkow.";
Text[ portuguese_brazilian ] = "start date";
Text[ japanese ] = "起算日を表す日付";
- Text[ korean ] = "시작 날짜";
+ Text[ korean ] = "시작일";
Text[ chinese_simplified ] = "开始日期";
Text[ chinese_traditional ] = "起始日期";
Text[ turkish ] = "start date";
@@ -839,12 +839,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "months";
Text[ russian ] = "";
Text[ greek ] = "months";
- Text[ dutch ] = "months";
+ Text[ dutch ] = "Maanden";
Text[ french ] = "Mois";
Text[ spanish ] = "Meses";
Text[ finnish ] = "Kuukausien mr";
Text[ italian ] = "Mesi";
- Text[ danish ] = "months";
+ Text[ danish ] = "Mneder";
Text[ swedish ] = "Mnader";
Text[ polish ] = "Miesice";
Text[ portuguese_brazilian ] = "months";
@@ -865,19 +865,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Number of months before or after the start date";
Text[ portuguese ] = "months";
- Text[ russian ] = " .";
+ Text[ russian ] = " .";
Text[ greek ] = "months";
- Text[ dutch ] = "months";
+ Text[ dutch ] = "Aantal maanden voor of na de begindatum";
Text[ french ] = "Nombre de mois avant ou aprs la date initiale.";
Text[ spanish ] = "Cantidad de meses anterior o posterior a la fecha inicial";
Text[ finnish ] = "Aloituspivmr edeltvien tai seuraavien kuukausien mr";
Text[ italian ] = "Numero di mesi precedenti o successivi alla data iniziale.";
- Text[ danish ] = "months";
+ Text[ danish ] = "Antal mneder fr eller efter startdatoen";
Text[ swedish ] = "Antal mnader fre eller efter startdatum";
Text[ polish ] = "Liczba miesicy przed lub po dacie pocztkowej.";
Text[ portuguese_brazilian ] = "months";
Text[ japanese ] = "開始日から起算した前または後の月数。";
- Text[ korean ] = "개월";
+ Text[ korean ] = "시작일 이전 또는 이후 개월수";
Text[ chinese_simplified ] = "开始日期之前或之后的月份数。";
Text[ chinese_traditional ] = "起始日期之前或之後的月數。";
Text[ turkish ] = "months";
@@ -896,14 +896,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Returns the number of workdays between two dates";
Text[ portuguese ] = "Returns the number of whole workdays between to dates";
- Text[ russian ] = " ( ).";
+ Text[ russian ] = " .";
Text[ greek ] = "Returns the number of whole workdays between to dates";
- Text[ dutch ] = "Returns the number of whole workdays between to dates";
+ Text[ dutch ] = "Geeft het aantal werkdagen in een tijdsinterval";
Text[ french ] = "Renvoie le nombre de jours ouvrs compris entre deux dates.";
Text[ spanish ] = "Devuelve el nmero de das en un intervalo de tiempo";
- Text[ finnish ] = "Palauttaa kahden pivmrn vlisten typivien lukumrn.";
+ Text[ finnish ] = "Palauttaa kahden pivmrn vlisten typivien mrn.";
Text[ italian ] = "Restituisce il numero dei giorni lavorativi compresi tra due date";
- Text[ danish ] = "Returns the number of whole workdays between to dates";
+ Text[ danish ] = "Returnerer antal hverdage i et tidsinterval";
Text[ swedish ] = "Returnerar antalet arbetsdagar i ett tidsintervall";
Text[ polish ] = "Podaje liczb dni roboczych midzy dwiema datami.";
Text[ portuguese_brazilian ] = "Returns the number of whole workdays between to dates";
@@ -924,19 +924,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Start date";
Text[ portuguese ] = "start date";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "start date";
- Text[ dutch ] = "start date";
+ Text[ dutch ] = "Begindatum";
Text[ french ] = "Date initiale";
Text[ spanish ] = "Fecha inicial";
Text[ finnish ] = "Alkupivmr";
Text[ italian ] = "Data iniziale";
- Text[ danish ] = "start date";
+ Text[ danish ] = "Startdato";
Text[ swedish ] = "Startdatum";
Text[ polish ] = "Data pocztkowa";
Text[ portuguese_brazilian ] = "start date";
Text[ japanese ] = "開始日";
- Text[ korean ] = "시작 날짜";
+ Text[ korean ] = "시작일";
Text[ chinese_simplified ] = "start_date";
Text[ chinese_traditional ] = "start_date";
Text[ turkish ] = "start date";
@@ -952,19 +952,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The start date";
Text[ portuguese ] = "start date";
- Text[ russian ] = " .";
+ Text[ russian ] = " ";
Text[ greek ] = "start date";
- Text[ dutch ] = "start date";
+ Text[ dutch ] = "Begindatum";
Text[ french ] = "Date initiale";
Text[ spanish ] = "Fecha inicial";
Text[ finnish ] = "Aloituspivmr";
Text[ italian ] = "Data iniziale";
- Text[ danish ] = "start date";
+ Text[ danish ] = "Startdato";
Text[ swedish ] = "Startdatum";
Text[ polish ] = "Liczba okrelajca dat pocztkow.";
Text[ portuguese_brazilian ] = "start date";
Text[ japanese ] = "対象期間の初日を表す日付";
- Text[ korean ] = "시작 날짜";
+ Text[ korean ] = "시작일";
Text[ chinese_simplified ] = "开始日期";
Text[ chinese_traditional ] = "起始日期";
Text[ turkish ] = "start date";
@@ -980,19 +980,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "End date";
Text[ portuguese ] = "end date";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "end date";
- Text[ dutch ] = "end date";
+ Text[ dutch ] = "Einddatum";
Text[ french ] = "Date de fin";
Text[ spanish ] = "Fecha final";
Text[ finnish ] = "Loppupivmr";
Text[ italian ] = "Data finale";
- Text[ danish ] = "end date";
+ Text[ danish ] = "Slutdato";
Text[ swedish ] = "Slutdatum";
Text[ polish ] = "Data kocowa";
Text[ portuguese_brazilian ] = "end date";
Text[ japanese ] = "終了日";
- Text[ korean ] = "끝 날짜";
+ Text[ korean ] = "최종 날짜";
Text[ chinese_simplified ] = "end_date";
Text[ chinese_traditional ] = "end_date";
Text[ turkish ] = "end date";
@@ -1008,19 +1008,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The end date";
Text[ portuguese ] = "end date";
- Text[ russian ] = " .";
+ Text[ russian ] = " ";
Text[ greek ] = "end date";
Text[ dutch ] = "Einddatum";
Text[ french ] = "Date de fin";
Text[ spanish ] = "Fecha final";
Text[ finnish ] = "Lopetuspivmr";
Text[ italian ] = "Data finale";
- Text[ danish ] = "end date";
+ Text[ danish ] = "Slutdato";
Text[ swedish ] = "Slutdatum";
Text[ polish ] = "Liczba okrelajca dat kocow.";
Text[ portuguese_brazilian ] = "end date";
Text[ japanese ] = "対象期間の最終日を表す日付";
- Text[ korean ] = "끝 날짜";
+ Text[ korean ] = "최종 날짜";
Text[ chinese_simplified ] = "结束日期";
Text[ chinese_traditional ] = "結束日期";
Text[ turkish ] = "end date";
@@ -1040,10 +1040,10 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ greek ] = "holidays";
Text[ dutch ] = "Vrije dagen";
Text[ french ] = "Congs et ftes";
- Text[ spanish ] = "Das libres";
+ Text[ spanish ] = "Vacaciones";
Text[ finnish ] = "Loma-ajat";
Text[ italian ] = "Vacanze";
- Text[ danish ] = "holidays";
+ Text[ danish ] = "Fridage";
Text[ swedish ] = "Lediga dagar";
Text[ polish ] = "Dni wolne od pracy";
Text[ portuguese_brazilian ] = "holidays";
@@ -1064,19 +1064,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "List of date values representing days off (vacation, holidays, etc.)";
Text[ portuguese ] = "holidays";
- Text[ russian ] = " , (, , ..).";
+ Text[ russian ] = " , (, ..).";
Text[ greek ] = "holidays";
- Text[ dutch ] = "holidays";
+ Text[ dutch ] = "Lijst met datumwaarden voor vrije dagen (vakantie, feestdagen, enz.)";
Text[ french ] = "Liste comprenant les dates des congs, jours fris, etc.";
Text[ spanish ] = "Lista von los valores de fecha que representan los das festivos (vacaciones, festivos, etc.)";
Text[ finnish ] = "Luettelo vapaapivien (lomat, vapaa-aika ja niin edelleen) arvovastineista";
Text[ italian ] = "Lista con le date dei giorni festivi, vacanze, ecc.";
- Text[ danish ] = "holidays";
+ Text[ danish ] = "Liste med datovrdier, som viser fridagene (ferie, helligdage, etc.).";
Text[ swedish ] = "Lista med datumvrden som representerar lediga dagar (semester, helgdagar o.s.v.).";
Text[ polish ] = "Wykaz dni wolnych (urlopw, wit pastwowych, kocielnych itp.).";
Text[ portuguese_brazilian ] = "holidays";
Text[ japanese ] = "国民の祝日や有給休暇など、稼動日数の計算から除外する日付のリスト。";
- Text[ korean ] = "휴일";
+ Text[ korean ] = "공휴일, 휴가와 명절등의 휴일을 표시하는 날짜값의 목록 ";
Text[ chinese_simplified ] = "一个包含休假和法定节假日等的日期数据列单。";
Text[ chinese_traditional ] = "一個包含國定假日和不定期假日的日期清單。";
Text[ turkish ] = "holidays";
@@ -1094,14 +1094,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ english ] = "Returns true if the number is even";
Text[ english_us ] = "Returns the value 'true' if the number is even";
Text[ portuguese ] = "Devolve o valor VERDADEIRO se o nmero for par.";
- Text[ russian ] = " , .";
+ Text[ russian ] = " , .";
Text[ greek ] = "Returns true if the number is even";
- Text[ dutch ] = "Geeft als resultaat de waarde WAAR als het getal even is.";
+ Text[ dutch ] = "Retourneert de waarde WAAR als het getal even is.";
Text[ french ] = "Renvoie la valeur VRAI si le nombre est pair.";
Text[ spanish ] = "Devuelve el valor VERDADERO si el nmero es par.";
- Text[ finnish ] = "Returns true if the number is even";
+ Text[ finnish ] = "Palauttaa arvon \"tosi\", jos luku on parillinen";
Text[ italian ] = "Restituisce il valore VERO se il numero pari.";
- Text[ danish ] = "Returns true if the number is even";
+ Text[ danish ] = "Returnerer vrdien SAND, hvis tallet er lige.";
Text[ swedish ] = "Returnerar vrdet SANT om talet r jmnt.";
Text[ polish ] = "Zwraca warto PRAWDA, jeli liczba jest parzysta.";
Text[ portuguese_brazilian ] = "Returns true if the number is even";
@@ -1111,7 +1111,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "如果參數為偶數,傳回邏輯值 TRUE ,反之傳回 FALSE 。";
Text[ turkish ] = "Returns true if the number is even";
Text[ arabic ] = "Returns true if the number is even";
- Text[ catalan ] = "Returns true if the number is even";
+ Text[ catalan ] = "Torna cert si el nmero s senar";
Text[ thai ] = "ส่งกลับค่า 'จริง' ถ้าเป็นจำนวนคู่";
};
@@ -1128,7 +1128,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Nmero";
Text[ finnish ] = "Luku";
Text[ italian ] = "Numero";
- Text[ danish ] = "Sandsynlighed";
+ Text[ danish ] = "Tal";
Text[ swedish ] = "Tal";
Text[ polish ] = "Liczba";
Text[ portuguese_brazilian ] = "Zahl";
@@ -1138,7 +1138,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "number";
Text[ turkish ] = "Say";
Text[ arabic ] = "";
- Text[ catalan ] = "Nmero";
+ Text[ catalan ] = "nmero";
Text[ thai ] = "ตัวเลข";
};
@@ -1148,14 +1148,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ english ] = "Zahl";
Text[ english_us ] = "The number";
Text[ portuguese ] = "Nmero";
- Text[ russian ] = " .";
+ Text[ russian ] = ".";
Text[ greek ] = "";
Text[ dutch ] = "Getal";
Text[ french ] = "Nombre";
Text[ spanish ] = "Nmero";
- Text[ finnish ] = "Luku";
+ Text[ finnish ] = "Luku, jonka kaksoiskerroin palautetaan";
Text[ italian ] = "Numero";
- Text[ danish ] = "Serienummer";
+ Text[ danish ] = "Tal";
Text[ swedish ] = "Tal";
Text[ polish ] = "Testowana warto.";
Text[ portuguese_brazilian ] = "Zahl";
@@ -1165,7 +1165,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "數字";
Text[ turkish ] = "Say";
Text[ arabic ] = "";
- Text[ catalan ] = "Nmero";
+ Text[ catalan ] = "nmero";
Text[ thai ] = "ตัวเลข";
};
};
@@ -1180,12 +1180,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Devolve o valor VERDADEIRO se o nmero for mpar.";
Text[ russian ] = " , .";
Text[ greek ] = "Returns true if the number is odd";
- Text[ dutch ] = "Geeft als resultaat de waarde WAAR als het getal oneven is.";
+ Text[ dutch ] = "Retourneert de waarde WAAR als het getal oneven is.";
Text[ french ] = "Renvoie la valeur VRAI si le nombre est impair.";
Text[ spanish ] = "Devuelve el valor VERDADERO si el nmero es impar.";
- Text[ finnish ] = "Returns true if the number is odd";
+ Text[ finnish ] = "Palauttaa arvon \"tosi\", jos luku on pariton";
Text[ italian ] = "Restituisce il valore VERO se il numero dispari.";
- Text[ danish ] = "Returns true if the number is odd";
+ Text[ danish ] = "Returnerer vrdien SAND, hvis tallet er ulige.";
Text[ swedish ] = "Returnerar vrdet SANT om talet r udda.";
Text[ polish ] = "Zwraca warto PRAWDA, jeli liczba jest nieparzysta.";
Text[ portuguese_brazilian ] = "Returns true if the number is odd";
@@ -1195,7 +1195,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "如果為奇數,就傳回邏輯值 TRUE 。";
Text[ turkish ] = "Returns true if the number is odd";
Text[ arabic ] = "Returns true if the number is odd";
- Text[ catalan ] = "Returns true if the number is odd";
+ Text[ catalan ] = "Torna cert si el nmero s parell";
Text[ thai ] = "ส่งกลับค่า 'จริง' ถ้าเป็นจำนวนคี่";
};
@@ -1222,7 +1222,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "number";
Text[ turkish ] = "Say";
Text[ arabic ] = "";
- Text[ catalan ] = "Nmero";
+ Text[ catalan ] = "nmero";
Text[ thai ] = "ตัวเลข";
};
@@ -1232,14 +1232,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ english ] = "Zahl";
Text[ english_us ] = "The number";
Text[ portuguese ] = "Nmero";
- Text[ russian ] = " .";
+ Text[ russian ] = ".";
Text[ greek ] = "";
Text[ dutch ] = "Getal";
Text[ french ] = "Nombre";
Text[ spanish ] = "Nmero";
- Text[ finnish ] = "Luku";
+ Text[ finnish ] = "Luku, jonka kaksoiskerroin palautetaan";
Text[ italian ] = "Numero";
- Text[ danish ] = "Sandsynlighed";
+ Text[ danish ] = "Tal";
Text[ swedish ] = "Tal";
Text[ polish ] = "Testowana warto.";
Text[ portuguese_brazilian ] = "Zahl";
@@ -1249,7 +1249,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "數字";
Text[ turkish ] = "Say";
Text[ arabic ] = "Value";
- Text[ catalan ] = "Nmero";
+ Text[ catalan ] = "nmero";
Text[ thai ] = "ตัวเลข";
};
};
@@ -1263,14 +1263,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Returns the multinomial coefficient of a set of numbers";
Text[ portuguese ] = "Devolve o coeficiente polinomial de um conjunto de nmeros.";
- Text[ russian ] = " .";
+ Text[ russian ] = " , .";
Text[ greek ] = "Returns the multinomial of a set of numbers";
- Text[ dutch ] = "Returns the multinomial of a set of numbers";
+ Text[ dutch ] = "Berekent de multinominaalcofficint van een groep getallen.";
Text[ french ] = "Renvoie le coefficient multinomial d'un ensemble de nombres.";
Text[ spanish ] = "Devuelve el coeficiente multinomial de un grupo de nmeros.";
Text[ finnish ] = "Palauttaa lukujoukon multinomikertoimen";
Text[ italian ] = "Calcola il coefficiente multinominale di un insieme di numeri.";
- Text[ danish ] = "Returns the multinomial of a set of numbers";
+ Text[ danish ] = "Beregner polynomialkoefficienten af en gruppe tal.";
Text[ swedish ] = "Berknar multinomialkoefficienten fr en grupp av tal.";
Text[ polish ] = "Podaje warto wielomianu zbioru liczb.";
Text[ portuguese_brazilian ] = "Returns the multinomial of a set of numbers";
@@ -1293,17 +1293,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Nmero(s)";
Text[ russian ] = "()";
Text[ greek ] = "numbers";
- Text[ dutch ] = "numbers";
+ Text[ dutch ] = "Getal(len)";
Text[ french ] = "Nombre(s)";
Text[ spanish ] = "Nmero(s)";
Text[ finnish ] = "Luvut";
Text[ italian ] = "Numero/i";
- Text[ danish ] = "numbers";
+ Text[ danish ] = "Tal";
Text[ swedish ] = "Tal";
Text[ polish ] = "Liczba(y)";
Text[ portuguese_brazilian ] = "numbers";
Text[ japanese ] = "数値";
- Text[ korean ] = "수들";
+ Text[ korean ] = "수치";
Text[ chinese_simplified ] = "numbers";
Text[ chinese_traditional ] = "numbers";
Text[ turkish ] = "numbers";
@@ -1319,19 +1319,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Number or list of numbers for which you want the multinomial coefficient";
Text[ portuguese ] = "Nmero ou srie de nmeros para os quais se ir determinar o coeficiente polinomial.";
- Text[ russian ] = " , .";
+ Text[ russian ] = " , .";
Text[ greek ] = "numbers";
- Text[ dutch ] = "numbers";
+ Text[ dutch ] = "Getal of lijst met getallen waarvan de multinominaalcofficint moet worden bepaald.";
Text[ french ] = "Nombre ou srie de nombres dont le coefficient multinomial est dterminer.";
Text[ spanish ] = "Nmero o lista de nmeros cuyo coeficiente multinomial debe determinarse.";
Text[ finnish ] = "Luku tai lukujoukko, jonka multinomikertoimen haluat laskea";
Text[ italian ] = "Numero o serie di numeri per i quali si vuole calcolare il coefficiente multinominale.";
- Text[ danish ] = "numbers";
+ Text[ danish ] = "Tal eller liste af tal, hvis polynomialkoefficient skal bestemmes.";
Text[ swedish ] = "Tal eller lista med tal vars multinomialkoefficienter ska bestmmas.";
Text[ polish ] = "Warto lub spis wartoci do wyznaczenia wielomianu.";
Text[ portuguese_brazilian ] = "numbers";
Text[ japanese ] = "数値、または多項係数の計算の対象となる数値のリスト。";
- Text[ korean ] = "수들";
+ Text[ korean ] = "다항 계수가 지정되어야 하는 수 또는 수의 목록";
Text[ chinese_simplified ] = "要计算其阶乘的比值的数据或数据列单。";
Text[ chinese_traditional ] = "為一組要求出函數 multinomial 的數值。";
Text[ turkish ] = "numbers";
@@ -1352,12 +1352,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Devolve a soma de uma srie de potncias.";
Text[ russian ] = " .";
Text[ greek ] = "Returns the sum of a power series based on the formula";
- Text[ dutch ] = "Returns the sum of a power series based on the formula";
+ Text[ dutch ] = "Berekent de som van de machtreeks.";
Text[ french ] = "Renvoie la somme d'une srie de puissances.";
Text[ spanish ] = "Calcula la suma de potencias";
Text[ finnish ] = "Palauttaa potenssisarjan summan";
Text[ italian ] = "Calcola la somma di potenze.";
- Text[ danish ] = "Returns the sum of a power series based on the formula";
+ Text[ danish ] = "Beregner summen af potenser.";
Text[ swedish ] = "Berknar summan av en potensserie.";
Text[ polish ] = "Oblicza sum szeregu potgowego.";
Text[ portuguese_brazilian ] = "Returns the sum of a power series based on the formula";
@@ -1385,7 +1385,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "X";
Text[ finnish ] = "X";
Text[ italian ] = "x";
- Text[ danish ] = "Tal_s";
+ Text[ danish ] = "X";
Text[ swedish ] = "X";
Text[ polish ] = "X";
Text[ portuguese_brazilian ] = "X";
@@ -1395,7 +1395,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "X";
Text[ turkish ] = "rn";
Text[ arabic ] = "Number_s";
- Text[ catalan ] = "Nombre";
+ Text[ catalan ] = "X";
Text[ thai ] = "ตัวเลข";
};
@@ -1406,14 +1406,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The independent variable of the power series";
Text[ portuguese ] = "Varivel independente da srie de potncias.";
- Text[ russian ] = " .";
+ Text[ russian ] = " .";
Text[ greek ] = "X";
Text[ dutch ] = "Onafhankelijke variabele in de machtreeks.";
Text[ french ] = "Variable indpendante de la srie de puissances.";
Text[ spanish ] = "Variable independiente de la serie de potencias.";
Text[ finnish ] = "Potenssisarjan kantaluku";
Text[ italian ] = "Variabile indipendente della serie di potenze.";
- Text[ danish ] = "X";
+ Text[ danish ] = "Uafhngig variabel for potensrkken.";
Text[ swedish ] = "Oberoende variabel i potensserien.";
Text[ polish ] = "Warto pocztkowa szeregu potgowego.";
Text[ portuguese_brazilian ] = "X";
@@ -1441,7 +1441,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "N";
Text[ finnish ] = "N";
Text[ italian ] = "n";
- Text[ danish ] = "Forsg";
+ Text[ danish ] = "N";
Text[ swedish ] = "N";
Text[ polish ] = "N";
Text[ portuguese_brazilian ] = "N";
@@ -1451,8 +1451,8 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "N";
Text[ turkish ] = "Deney";
Text[ arabic ] = "Trials";
- Text[ catalan ] = "mida";
- Text[ thai ] = "ทดลอง";
+ Text[ catalan ] = "N";
+ Text[ thai ] = "การทดลอง";
};
String 5 // description of parameter 2 Seriessum
@@ -1469,7 +1469,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Potencia inicial a la que debe elevarse x";
Text[ finnish ] = "Potenssi, johon X korotetaan";
Text[ italian ] = "Potenza iniziale a cui elevare x.";
- Text[ danish ] = "N";
+ Text[ danish ] = "Startpotens, som x skal oplftes til.";
Text[ swedish ] = "Initialpotens som x ska upphjas till.";
Text[ polish ] = "Potga pocztkowa, do ktrej ma by podniesiona warto x.";
Text[ portuguese_brazilian ] = "N";
@@ -1497,7 +1497,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "M";
Text[ finnish ] = "M";
Text[ italian ] = "m";
- Text[ danish ] = "Population_s";
+ Text[ danish ] = "M";
Text[ swedish ] = "M";
Text[ polish ] = "M";
Text[ portuguese_brazilian ] = "M";
@@ -1507,7 +1507,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "M";
Text[ turkish ] = "Baar";
Text[ arabic ] = "Population_s";
- Text[ catalan ] = "xits";
+ Text[ catalan ] = "M";
Text[ thai ] = "ความสำเร็จ";
};
@@ -1518,14 +1518,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The increment by which to increase n for each term in the series";
Text[ portuguese ] = "M";
- Text[ russian ] = ", n .";
+ Text[ russian ] = ", n ";
Text[ greek ] = "M";
- Text[ dutch ] = "M";
+ Text[ dutch ] = "Stap waarmee n in elk deel van de reeks moet worden verhoogd.";
Text[ french ] = "Incrment selon lequel augmenter n pour chacun des termes de la srie.";
Text[ spanish ] = "Incremento en el cual debe aumentar n en cada miembro de la serie.";
Text[ finnish ] = "Potenssin (N) lisys sarjassa";
Text[ italian ] = "Incremento di n per ciascun termine della serie.";
- Text[ danish ] = "M";
+ Text[ danish ] = "Inkrement, som n i hvert led i rkken skal forges med.";
Text[ swedish ] = "Steg med vilket n ska kas i varje term i serien.";
Text[ polish ] = "Krok, o ktry wzrasta n kadego skadnika w szeregu.";
Text[ portuguese_brazilian ] = "M";
@@ -1548,12 +1548,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Coefficients";
Text[ russian ] = "";
Text[ greek ] = "Coefficients";
- Text[ dutch ] = "Coefficients";
+ Text[ dutch ] = "Cofficinten";
Text[ french ] = "Coefficients";
Text[ spanish ] = "Coeficientes";
Text[ finnish ] = "Kertoimet";
Text[ italian ] = "Coefficienti.";
- Text[ danish ] = "Coefficients";
+ Text[ danish ] = "Koefficienter";
Text[ swedish ] = "Koefficienter";
Text[ polish ] = "Wspczynniki";
Text[ portuguese_brazilian ] = "Coefficients";
@@ -1576,17 +1576,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Coefficients";
Text[ russian ] = " , x.";
Text[ greek ] = "Coefficients";
- Text[ dutch ] = "Coefficients";
+ Text[ dutch ] = "Groep cofficinten waarmee opeenvolgende machtswaarden van de variabele x worden vermenigvuldigd.";
Text[ french ] = "Ensemble des coefficients par lesquels multiplier les puissances successives de la variable x.";
Text[ spanish ] = "Grupo de coeficientes con los que se multiplicarn potencias sucesivas de la variable x.";
Text[ finnish ] = "Kerroinsarja, joilla kukin muuttujan X potenssi kerrotaan";
Text[ italian ] = "Insieme di coefficienti con cui vengono moltiplicate le potenze successive di x.";
- Text[ danish ] = "Coefficients";
+ Text[ danish ] = "Gruppe af koefficienter, hvormed p hinanden flgende potenser for variablerne x skal multipliceres.";
Text[ swedish ] = "Grupp av koefficienter som varje efterfljande potens av variabeln x ska multipliceras med.";
Text[ polish ] = "Zbir wspczynnikw, przez ktre mnoy si kad kolejn potg x.";
Text[ portuguese_brazilian ] = "Coefficients";
Text[ japanese ] = "変数 X のべき乗である各項にかける一連の係数。";
- Text[ korean ] = "계수";
+ Text[ korean ] = "변수 X의 각각 연속 제곱되는 계수 집합";
Text[ chinese_simplified ] = "是一系列与 x 各级乘幂相乘的系数。";
Text[ chinese_traditional ] = "為方程式中各次方的 X 的一組係數。";
Text[ turkish ] = "Coefficients";
@@ -1605,14 +1605,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Returns the integer portion of a division";
Text[ portuguese ] = "Returns the integer portion of a division";
- Text[ russian ] = " .";
+ Text[ russian ] = " .";
Text[ greek ] = "Returns the integer portion of a division";
- Text[ dutch ] = "Returns the integer portion of a division";
+ Text[ dutch ] = "Retourneert het gehele getal van het quotint van een deling.";
Text[ french ] = "Renvoie la partie entire d'une division.";
Text[ spanish ] = "Devuelve la parte entera de una divisin.";
Text[ finnish ] = "Palauttaa jakotulon kokonaisluvun";
Text[ italian ] = "Restituisce il quoziente di una divisione.";
- Text[ danish ] = "Returns the integer portion of a division";
+ Text[ danish ] = "Giver heltalsandelen af en division.";
Text[ swedish ] = "Returnerar heltalsdelen av en division.";
Text[ polish ] = "Zwraca cz cakowit z dzielenia.";
Text[ portuguese_brazilian ] = "Returns the integer portion of a division";
@@ -1635,12 +1635,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "numerator";
Text[ russian ] = "";
Text[ greek ] = "numerator";
- Text[ dutch ] = "numerator";
+ Text[ dutch ] = "Teller";
Text[ french ] = "Numrateur";
Text[ spanish ] = "Numerador";
Text[ finnish ] = "Osoittaja";
Text[ italian ] = "Numeratore";
- Text[ danish ] = "numerator";
+ Text[ danish ] = "Tller";
Text[ swedish ] = "Tljare";
Text[ polish ] = "Dzielna";
Text[ portuguese_brazilian ] = "numerator";
@@ -1661,14 +1661,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The dividend";
Text[ portuguese ] = "numerator";
- Text[ russian ] = " ().";
+ Text[ russian ] = " ()";
Text[ greek ] = "numerator";
- Text[ dutch ] = "numerator";
+ Text[ dutch ] = "Teller (deeltal)";
Text[ french ] = "Numrateur (dividende)";
Text[ spanish ] = "Numerador (dividendo)";
Text[ finnish ] = "Jaettava luku";
Text[ italian ] = "Numeratore (dividendo)";
- Text[ danish ] = "numerator";
+ Text[ danish ] = "Tller (dividend)";
Text[ swedish ] = "Tljare (dividend)";
Text[ polish ] = "Warto dzielnej (licznik).";
Text[ portuguese_brazilian ] = "numerator";
@@ -1691,12 +1691,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "denominator";
Text[ russian ] = "";
Text[ greek ] = "denominator";
- Text[ dutch ] = "denominator";
+ Text[ dutch ] = "Noemer";
Text[ french ] = "Dnominateur";
Text[ spanish ] = "Denominador";
Text[ finnish ] = "Nimittj";
Text[ italian ] = "Denominatore";
- Text[ danish ] = "denominator";
+ Text[ danish ] = "Nvner";
Text[ swedish ] = "Nmnare";
Text[ polish ] = "Dzielnik";
Text[ portuguese_brazilian ] = "denominator";
@@ -1717,19 +1717,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The divisor";
Text[ portuguese ] = "denominator";
- Text[ russian ] = ".";
+ Text[ russian ] = "";
Text[ greek ] = "denominator";
- Text[ dutch ] = "denominator";
+ Text[ dutch ] = "Noemer (deler)";
Text[ french ] = "Dnominateur (diviseur)";
Text[ spanish ] = "Denominador (divisor)";
Text[ finnish ] = "Luku, jolla jaetaan";
Text[ italian ] = "Denominatore (divisore)";
- Text[ danish ] = "denominator";
+ Text[ danish ] = "Nvner (divisor)";
Text[ swedish ] = "Nmnare (divisor)";
Text[ polish ] = "Warto dzielnika (mianownik).";
Text[ portuguese_brazilian ] = "denominator";
Text[ japanese ] = "分母(割る数)";
- Text[ korean ] = "분모";
+ Text[ korean ] = "분모(제수)";
Text[ chinese_simplified ] = "分母";
Text[ chinese_traditional ] = "除數";
Text[ turkish ] = "denominator";
@@ -1748,14 +1748,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Returns a number rounded to a specified multiple";
Text[ portuguese ] = "Returns a number rounded to the desire multiple";
- Text[ russian ] = " , .";
+ Text[ russian ] = " , ";
Text[ greek ] = "Returns a number rounded to the desire multiple";
- Text[ dutch ] = "Returns a number rounded to the desire multiple";
+ Text[ dutch ] = "Geeft een getal dat op een veelvoud is afgerond.";
Text[ french ] = "Renvoie un nombre arrondi au multiple spcifi.";
Text[ spanish ] = "Devuelve un nmero redondeado al mltiplo deseado.";
Text[ finnish ] = "Palauttaa pyristetyn luvun";
Text[ italian ] = "Restituisce un numero arrotondato al multiplo desiderato.";
- Text[ danish ] = "Returns a number rounded to the desire multiple";
+ Text[ danish ] = "Returnerer et tal afrundet til multiplum.";
Text[ swedish ] = "Returnerar ett tal avrundat till en multipel.";
Text[ polish ] = "Zwraca warto liczby zaokrglonej do podanej wielokrotnoci.";
Text[ portuguese_brazilian ] = "Returns a number rounded to the desire multiple";
@@ -1778,12 +1778,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "number";
Text[ russian ] = "";
Text[ greek ] = "number";
- Text[ dutch ] = "number";
+ Text[ dutch ] = "Getal";
Text[ french ] = "Nombre";
Text[ spanish ] = "Nmero";
Text[ finnish ] = "Luku";
Text[ italian ] = "Numero";
- Text[ danish ] = "number";
+ Text[ danish ] = "Tal";
Text[ swedish ] = "Tal";
Text[ polish ] = "Liczba";
Text[ portuguese_brazilian ] = "number";
@@ -1804,14 +1804,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The number to round off";
Text[ portuguese ] = "number";
- Text[ russian ] = " .";
+ Text[ russian ] = " ";
Text[ greek ] = "number";
- Text[ dutch ] = "number";
+ Text[ dutch ] = "Het getal dat u wilt afronden";
Text[ french ] = "Nombre arrondir.";
Text[ spanish ] = "El nmero que desea redondear.";
Text[ finnish ] = "Pyristettv luku";
Text[ italian ] = "Il numero da arrotondare.";
- Text[ danish ] = "number";
+ Text[ danish ] = "Tallet, som skal afrundes";
Text[ swedish ] = "Talet som ska avrundas";
Text[ polish ] = "Warto, ktra zostanie zaokrglona.";
Text[ portuguese_brazilian ] = "number";
@@ -1832,14 +1832,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Multiple";
Text[ portuguese ] = "multiple";
- Text[ russian ] = "";
+ Text[ russian ] = "";
Text[ greek ] = "multiple";
- Text[ dutch ] = "multiple";
+ Text[ dutch ] = "Veelvoud";
Text[ french ] = "Multiple";
Text[ spanish ] = "Mltiplo";
Text[ finnish ] = "Monikerta";
Text[ italian ] = "Multiplo";
- Text[ danish ] = "multiple";
+ Text[ danish ] = "Multiplum";
Text[ swedish ] = "Multipel";
Text[ polish ] = "Wielokrotno";
Text[ portuguese_brazilian ] = "multiple";
@@ -1860,14 +1860,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The multiple to which you want to round number";
Text[ portuguese ] = "multiple";
- Text[ russian ] = ", .";
+ Text[ russian ] = ", ";
Text[ greek ] = "multiple";
- Text[ dutch ] = "multiple";
+ Text[ dutch ] = "De waarde die de basis vormt voor het veelvoud waarop moet worden afgerond.";
Text[ french ] = "Multiple auquel arrondir le nombre.";
Text[ spanish ] = "El valor al cual se desea redondear.";
Text[ finnish ] = "Luvun pyristystarkkuus";
Text[ italian ] = "Il multilpo a cui arrotondare il valore.";
- Text[ danish ] = "multiple";
+ Text[ danish ] = "Vrdien, hvis multiplum der skal afrundes til.";
Text[ swedish ] = "Vrdet vars multipel talet ska avrundas till.";
Text[ polish ] = "Wielokrotno, do ktrej naley zaokrgli liczb.";
Text[ portuguese_brazilian ] = "multiple";
@@ -1891,14 +1891,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Returns the square root of a number which has been multiplied by pi";
Text[ portuguese ] = "Returns the square root of ( number * pi )";
- Text[ russian ] = " , .";
+ Text[ russian ] = " , ";
Text[ greek ] = "Returns the square root of ( number * pi )";
- Text[ dutch ] = "Returns the square root of ( number * pi )";
+ Text[ dutch ] = "Berekent de wortel van een getal dat met Pi is vermenigvuldigd.";
Text[ french ] = "Renvoie la racine carre d'un nombre multipli par pi.";
Text[ spanish ] = "Calcula la raz de un nmero multiplicado por Pi.";
Text[ finnish ] = "Palauttaa piill kerrotun luvun nelinjuuren";
Text[ italian ] = "Calcola la radice quadrata di un numero per il quale si moltiplica pi greco.";
- Text[ danish ] = "Returns the square root of ( number * pi )";
+ Text[ danish ] = "Beregner roden for et tal ganget med pi.";
Text[ swedish ] = "Berknar kvadratroten ur ett tal multiplicerat med pi.";
Text[ polish ] = "Zwraca pierwiastek kwadratowy z liczby pomonoonej przez pi.";
Text[ portuguese_brazilian ] = "Returns the square root of ( number * pi )";
@@ -1908,7 +1908,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "傳回某一個數值乘於 pi 的平方根。";
Text[ turkish ] = "Returns the square root of ( number * pi )";
Text[ arabic ] = "Returns the square root of ( number * pi )";
- Text[ catalan ] = "Torna l'arrel quadrada del ( nombre * pi )";
+ Text[ catalan ] = "Torna l'arrel quadrada del nmero ( nmero * pi )";
Text[ thai ] = "ส่งกลับรากที่สองของจำนวนที่คูณด้วยไพ";
};
@@ -1921,12 +1921,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "number";
Text[ russian ] = "";
Text[ greek ] = "number";
- Text[ dutch ] = "number";
+ Text[ dutch ] = "Getal";
Text[ french ] = "Nombre";
Text[ spanish ] = "Nmero";
Text[ finnish ] = "Luku";
Text[ italian ] = "Numero";
- Text[ danish ] = "number";
+ Text[ danish ] = "Tal";
Text[ swedish ] = "Tal";
Text[ polish ] = "Liczba";
Text[ portuguese_brazilian ] = "number";
@@ -1936,7 +1936,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "number";
Text[ turkish ] = "number";
Text[ arabic ] = "number";
- Text[ catalan ] = "nombre";
+ Text[ catalan ] = "nmero";
Text[ thai ] = "ตัวเลข";
};
@@ -1947,14 +1947,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The number by which pi is multiplied";
Text[ portuguese ] = "number";
- Text[ russian ] = ", .";
+ Text[ russian ] = ", ";
Text[ greek ] = "number";
- Text[ dutch ] = "number";
+ Text[ dutch ] = "Getal";
Text[ french ] = "Nombre";
Text[ spanish ] = "Nmero";
Text[ finnish ] = "Luku, joka kerrotaan piill";
Text[ italian ] = "Numero";
- Text[ danish ] = "number";
+ Text[ danish ] = "Tal";
Text[ swedish ] = "Tal";
Text[ polish ] = "Liczba mnoona przez pi.";
Text[ portuguese_brazilian ] = "number";
@@ -1964,7 +1964,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "要乘 pi 的數值。";
Text[ turkish ] = "number";
Text[ arabic ] = "number";
- Text[ catalan ] = "nombre";
+ Text[ catalan ] = "nmero";
Text[ thai ] = "ตัวเลขที่คูณกับไพ";
};
};
@@ -1978,14 +1978,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Returns a random integer between the numbers you specify";
Text[ portuguese ] = "Returns a random integer number between the numbers you specify";
- Text[ russian ] = " .";
+ Text[ russian ] = " .";
Text[ greek ] = "Returns a random integer number between the numbers you specify";
- Text[ dutch ] = "Returns a random integer number between the numbers you specify";
+ Text[ dutch ] = "Geeft een willekeurig geheel getal uit het opgegeven bereik.";
Text[ french ] = "Renvoie un nombre alatoire entier compris entre les nombres spcifis.";
Text[ spanish ] = "Devuelve el nmero aleatorio del rea indicada.";
Text[ finnish ] = "Palauttaa satunnaisen kokonaisluvun mrittmltsi arvovlilt";
Text[ italian ] = "Restituisce un numero casuale intero compreso tra i numeri specificati.";
- Text[ danish ] = "Returns a random integer number between the numbers you specify";
+ Text[ danish ] = "Returnerer et helt, tilfldigt tal fra det angivne omrde.";
Text[ swedish ] = "Returnerar ett slumptal mellan de tal som du anger.";
Text[ polish ] = "Zwraca liczb losow z przedziau pomidzy podanymi wartociami.";
Text[ portuguese_brazilian ] = "Returns a random integer number between the numbers you specify";
@@ -2006,14 +2006,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Bottom";
Text[ portuguese ] = "bottom";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "bottom";
- Text[ dutch ] = "bottom";
+ Text[ dutch ] = "Kleinste getal";
Text[ french ] = "Minimum";
Text[ spanish ] = "Menor";
Text[ finnish ] = "Alaraja";
Text[ italian ] = "Minore";
- Text[ danish ] = "bottom";
+ Text[ danish ] = "Mindste tal";
Text[ swedish ] = "Minsta tal";
Text[ polish ] = "Dolna granica";
Text[ portuguese_brazilian ] = "bottom";
@@ -2036,12 +2036,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "bottom";
Text[ russian ] = " , .";
Text[ greek ] = "bottom";
- Text[ dutch ] = "bottom";
+ Text[ dutch ] = "Het kleinste getal dat mag worden geretourneerd.";
Text[ french ] = "Le plus petit nombre pouvant tre renvoy.";
Text[ spanish ] = "El nmero menor que debe devolverse.";
Text[ finnish ] = "Arvovlin pienin kokonaisluku";
Text[ italian ] = "Il numero pi piccolo da calcolare.";
- Text[ danish ] = "bottom";
+ Text[ danish ] = "Det mindste tal, som skal returneres.";
Text[ swedish ] = "Det minsta talet som ska returneras.";
Text[ polish ] = "Najmniejsza liczba, jaka moe zosta podana.";
Text[ portuguese_brazilian ] = "bottom";
@@ -2062,14 +2062,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Top";
Text[ portuguese ] = "top";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "top";
- Text[ dutch ] = "top";
+ Text[ dutch ] = "Grootste getal";
Text[ french ] = "Maximum";
Text[ spanish ] = "Mayor";
Text[ finnish ] = "Ylraja";
Text[ italian ] = "Maggiore";
- Text[ danish ] = "top";
+ Text[ danish ] = "Strste tal";
Text[ swedish ] = "Strsta tal";
Text[ polish ] = "Grna granica";
Text[ portuguese_brazilian ] = "top";
@@ -2092,12 +2092,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "top";
Text[ russian ] = " , .";
Text[ greek ] = "top";
- Text[ dutch ] = "top";
+ Text[ dutch ] = "Het grootste getal dat mag worden geretourneerd.";
Text[ french ] = "Le plus grand nombre pouvant tre renvoy.";
Text[ spanish ] = "El nmero mayor que se debe devolver.";
Text[ finnish ] = "Arvovlin suurin kokonaisluku";
Text[ italian ] = "Il numero pi grande da calcolare.";
- Text[ danish ] = "top";
+ Text[ danish ] = "Det strste tal, som skal returneres.";
Text[ swedish ] = "Det strsta talet som ska returneras.";
Text[ polish ] = "Najwiksza liczba, jaka moe zosta podana.";
Text[ portuguese_brazilian ] = "top";
@@ -2122,12 +2122,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Devolve o maior divisor comum.";
Text[ russian ] = " .";
Text[ greek ] = "Returns the greatest common divisor";
- Text[ dutch ] = "Geeft als resultaat de grootste gemene deler.";
+ Text[ dutch ] = "Geeft de grootste gemene deler.";
Text[ french ] = "Renvoie le plus grand commun diviseur.";
Text[ spanish ] = "Devuelve el mximo comn divisor.";
- Text[ finnish ] = "Returns the greatest common divisor";
+ Text[ finnish ] = "Palauttaa suurimman yhteisen jakajan";
Text[ italian ] = "Calcola il massimo comun divisore.";
- Text[ danish ] = "Returns the greatest common divisor";
+ Text[ danish ] = "Returnerer den strste flles divisor.";
Text[ swedish ] = "Returnerar strsta gemensamma divisor.";
Text[ polish ] = "Podaje warto najwikszego wsplnego dzielnika.";
Text[ portuguese_brazilian ] = "Returns the greatest common divisor";
@@ -2137,7 +2137,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "傳回一個最大的公約數。";
Text[ turkish ] = "Returns the greatest common divisor";
Text[ arabic ] = "Returns the greatest common divisor";
- Text[ catalan ] = "Returns the greatest common divisor";
+ Text[ catalan ] = "Torna el mxim com divisor";
Text[ thai ] = "ส่งกลับตัวหารร่วมมาก";
};
@@ -2154,7 +2154,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Nmero(s)";
Text[ finnish ] = "Luvut";
Text[ italian ] = "Numero/i";
- Text[ danish ] = "Zahl(en)";
+ Text[ danish ] = "Tal";
Text[ swedish ] = "Tal";
Text[ polish ] = "Liczba(y)";
Text[ portuguese_brazilian ] = "Zahl(en)";
@@ -2164,7 +2164,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "number(s)";
Text[ turkish ] = "Zahl(en)";
Text[ arabic ] = "Zahl(en)";
- Text[ catalan ] = "nombres";
+ Text[ catalan ] = "nmero(s)";
Text[ thai ] = "ตัวเลข";
};
@@ -2179,9 +2179,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Getal of lijst met getallen";
Text[ french ] = "Nombre ou srie de nombres.";
Text[ spanish ] = "Nmero o lista de nmeros";
- Text[ finnish ] = "Valinta tai valintaluettelo";
+ Text[ finnish ] = "Luku tai lukujen luettelo";
Text[ italian ] = "Numero o serie di numeri.";
- Text[ danish ] = "Zahl oder Liste von Zahlen";
+ Text[ danish ] = "Tal eller liste med tal";
Text[ swedish ] = "Tal eller lista med tal";
Text[ polish ] = "Liczba lub wykaz liczb.";
Text[ portuguese_brazilian ] = "Zahl oder Liste von Zahlen";
@@ -2191,7 +2191,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "數字或數字清單。";
Text[ turkish ] = "Zahl oder Liste von Zahlen";
Text[ arabic ] = "Zahl oder Liste von Zahlen";
- Text[ catalan ] = "Nmero o llista de nombres";
+ Text[ catalan ] = "Nmero o llista de nmeros";
Text[ thai ] = "จำนวนหรือรายการตัวเลข";
};
};
@@ -2206,12 +2206,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Devolve o menor mltiplo comum.";
Text[ russian ] = " .";
Text[ greek ] = "Returns the least common multiple";
- Text[ dutch ] = "Geeft als resultaat het kleinste gemene veelvoud.";
+ Text[ dutch ] = "Geeft het kleinste gemene veelvoud.";
Text[ french ] = "Renvoie le plus petit commun multiple.";
Text[ spanish ] = "Devuelve el mnimo comn mltiplo.";
- Text[ finnish ] = "Returns the least common multiple";
+ Text[ finnish ] = "Palauttaa pienimmn yhteisen kertoimen";
Text[ italian ] = "Calcola il minimo comune multiplo.";
- Text[ danish ] = "Returns the least common multiple";
+ Text[ danish ] = "Returnerer det mindste flles multiplum.";
Text[ swedish ] = "Returnerar minsta gemensamma multipel.";
Text[ polish ] = "Podaje najmniejsz wspln wielokrotno.";
Text[ portuguese_brazilian ] = "Returns the least common multiple";
@@ -2221,7 +2221,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "傳回一個最小的公倍數。";
Text[ turkish ] = "Returns the least common multiple";
Text[ arabic ] = "Returns the least common multiple";
- Text[ catalan ] = "Returns the least common multiple";
+ Text[ catalan ] = "Torna el mnim com mltiple";
Text[ thai ] = "ส่งกลับผลคูณร่วมน้อย";
};
@@ -2238,7 +2238,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Nmero(s)";
Text[ finnish ] = "Luvut";
Text[ italian ] = "Numero/i";
- Text[ danish ] = "Zahl(en)";
+ Text[ danish ] = "Tal";
Text[ swedish ] = "Tal";
Text[ polish ] = "Liczba(y)";
Text[ portuguese_brazilian ] = "Zahl(en)";
@@ -2248,7 +2248,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "number";
Text[ turkish ] = "Zahl(en)";
Text[ arabic ] = "Zahl(en)";
- Text[ catalan ] = "nombres";
+ Text[ catalan ] = "nmero(s)";
Text[ thai ] = "ตัวเลข";
};
@@ -2263,9 +2263,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Getal of lijst met getallen";
Text[ french ] = "Nombre ou srie de nombres.";
Text[ spanish ] = "Nmero o lista de nmeros";
- Text[ finnish ] = "Valinta tai valintaluettelo";
+ Text[ finnish ] = "Luku tai lukujen luettelo";
Text[ italian ] = "Numero o serie di numeri.";
- Text[ danish ] = "Zahl oder Liste von Zahlen";
+ Text[ danish ] = "Tal eller liste med tal";
Text[ swedish ] = "Tal eller lista med tal";
Text[ polish ] = "Liczba lub wykaz liczb.";
Text[ portuguese_brazilian ] = "Zahl oder Liste von Zahlen";
@@ -2275,7 +2275,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "數字或數字清單。";
Text[ turkish ] = "Zahl oder Liste von Zahlen";
Text[ arabic ] = "Zahl oder Liste von Zahlen";
- Text[ catalan ] = "Nmero o llista de nombres";
+ Text[ catalan ] = "Nmero o llista de nmeros";
Text[ thai ] = "จำนวนหรือรายการตัวเลข";
};
};
@@ -2291,12 +2291,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Returns the modified Bessel function In(x)";
Text[ russian ] = " In(x).";
Text[ greek ] = "Returns the modified Bessel function In(x)";
- Text[ dutch ] = "Returns the modified Bessel function In(x)";
+ Text[ dutch ] = "Berekent de gewijzigde Bessel-functie In(x).";
Text[ french ] = "Calcule la fonction de Bessel modifie In(x).";
Text[ spanish ] = "Calcula la funcin Bessel modificada In(x).";
Text[ finnish ] = "Palauttaa muokatun In(x) Bessel-funktion";
Text[ italian ] = "Restituisce la funzione modificata di Bessel In(x).";
- Text[ danish ] = "Returns the modified Bessel function In(x)";
+ Text[ danish ] = "Beregner den modificerede Besselfunktion In(x).";
Text[ swedish ] = "Berknar den modifierade Bessel-funktionen In(x).";
Text[ polish ] = "Podaje warto zmodyfikowanej funkcji Bessela In(x).";
Text[ portuguese_brazilian ] = "Returns the modified Bessel function In(x)";
@@ -2306,7 +2306,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "傳回修正的 Bessel 函數值 In(x) 。";
Text[ turkish ] = "Returns the modified Bessel function In(x)";
Text[ arabic ] = "Returns the modified Bessel function In(x)";
- Text[ catalan ] = "Torna la funci de Bessel modificada In(x)";
+ Text[ catalan ] = "Torna la funci modificada de Bessel In(x)";
Text[ thai ] = "ส่งกลับฟังก์ชั่น Bessel ที่ดัดแปลงแก้ไข In(x)";
};
@@ -2319,12 +2319,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Nm_s";
Text[ russian ] = "X";
Text[ greek ] = "";
- Text[ dutch ] = "x";
+ Text[ dutch ] = "X";
Text[ french ] = "X";
Text[ spanish ] = "X";
Text[ finnish ] = "X";
Text[ italian ] = "X";
- Text[ danish ] = "Tal_s";
+ Text[ danish ] = "X";
Text[ swedish ] = "X";
Text[ polish ] = "X";
Text[ portuguese_brazilian ] = "x";
@@ -2334,7 +2334,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "x";
Text[ turkish ] = "rn";
Text[ arabic ] = "Number_s";
- Text[ catalan ] = "Nombre";
+ Text[ catalan ] = "x";
Text[ thai ] = "ตัวเลข";
};
@@ -2347,12 +2347,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "x";
Text[ russian ] = ", .";
Text[ greek ] = "x";
- Text[ dutch ] = "x";
+ Text[ dutch ] = "De waarde waarvoor de functie moet worden berekend.";
Text[ french ] = "La valeur laquelle la fonction est valuer.";
Text[ spanish ] = "El valor con el que se evala la funcin.";
Text[ finnish ] = "Arvo, jota kytetn funktion laskennassa";
Text[ italian ] = "Il valore secondo il quale si deve calcolare la funzione.";
- Text[ danish ] = "x";
+ Text[ danish ] = "Den vrdi, for hvilken funktionen skal beregnes.";
Text[ swedish ] = "Vrdet som funktionen ska berknas fr.";
Text[ polish ] = "Warto, przy ktrej naley wyliczy funkcj.";
Text[ portuguese_brazilian ] = "x";
@@ -2375,12 +2375,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Tentativas";
Text[ russian ] = "N";
Text[ greek ] = "";
- Text[ dutch ] = "n";
+ Text[ dutch ] = "N";
Text[ french ] = "N";
Text[ spanish ] = "N";
Text[ finnish ] = "N";
Text[ italian ] = "N";
- Text[ danish ] = "Forsg";
+ Text[ danish ] = "N";
Text[ swedish ] = "N";
Text[ polish ] = "N";
Text[ portuguese_brazilian ] = "n";
@@ -2390,8 +2390,8 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "n";
Text[ turkish ] = "Deney";
Text[ arabic ] = "Trials";
- Text[ catalan ] = "avaluacions";
- Text[ thai ] = "ทดลอง";
+ Text[ catalan ] = "n";
+ Text[ thai ] = "การทดลอง";
};
String 5 // description of parameter 2 BesselI
@@ -2403,12 +2403,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "n";
Text[ russian ] = " .";
Text[ greek ] = "n";
- Text[ dutch ] = "n";
+ Text[ dutch ] = "Ordening van de Bessel-functie";
Text[ french ] = "Ordre de la fonction Bessel.";
Text[ spanish ] = "Orden de la funcin Bessel.";
Text[ finnish ] = "Bessel-funktion jrjestys";
Text[ italian ] = "Ordine nella funzione di Bessel.";
- Text[ danish ] = "n";
+ Text[ danish ] = "Besselfunktionens orden";
Text[ swedish ] = "Ordningstalet fr Bessel-funktionen";
Text[ polish ] = "Rzd funkcji Bessela.";
Text[ portuguese_brazilian ] = "n";
@@ -2434,12 +2434,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Returns the Bessel function Jn(x)";
Text[ russian ] = " Jn(x).";
Text[ greek ] = "Returns the Bessel function Jn(x)";
- Text[ dutch ] = "Returns the Bessel function Jn(x)";
+ Text[ dutch ] = "Berekent de Bessel-functie Jn(x).";
Text[ french ] = "Calcule la fonction de Bessel Jn(x).";
Text[ spanish ] = "Calcula la funcin Bessel Jn(x)";
Text[ finnish ] = "Palauttaa Jn(x) Bessel-funktion arvon";
Text[ italian ] = "Restituisce la funzione di Bessel Jn(x).";
- Text[ danish ] = "Returns the Bessel function Jn(x)";
+ Text[ danish ] = "Beregner Besselfunktionen Jn(x).";
Text[ swedish ] = "Berknar Bessel-funktionen Jn(x).";
Text[ polish ] = "Podaje warto funkcji Bessela Jn(x).";
Text[ portuguese_brazilian ] = "Returns the Bessel function Jn(x)";
@@ -2449,7 +2449,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "傳回 Bessel 函數 Jn(x) 。";
Text[ turkish ] = "Returns the Bessel function Jn(x)";
Text[ arabic ] = "Returns the Bessel function Jn(x)";
- Text[ catalan ] = "Torna la funci de Bessel Jn(x)";
+ Text[ catalan ] = "Torna la funci modificada de Bessel Jn(x)";
Text[ thai ] = "ส่งกลับฟังก์ชั่น Bessel Jn(x)";
};
@@ -2462,12 +2462,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Nm_s";
Text[ russian ] = "X";
Text[ greek ] = "";
- Text[ dutch ] = "x";
+ Text[ dutch ] = "X";
Text[ french ] = "X";
Text[ spanish ] = "X";
Text[ finnish ] = "X";
Text[ italian ] = "X";
- Text[ danish ] = "Tal_s";
+ Text[ danish ] = "X";
Text[ swedish ] = "X";
Text[ polish ] = "X";
Text[ portuguese_brazilian ] = "x";
@@ -2477,7 +2477,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "x";
Text[ turkish ] = "rn";
Text[ arabic ] = "Number_s";
- Text[ catalan ] = "Nombre";
+ Text[ catalan ] = "x";
Text[ thai ] = "ตัวเลข";
};
@@ -2490,12 +2490,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "x";
Text[ russian ] = ", .";
Text[ greek ] = "x";
- Text[ dutch ] = "x";
+ Text[ dutch ] = "De waarde waarvoor de functie moet worden berekend.";
Text[ french ] = "La valeur laquelle la fonction est valuer.";
Text[ spanish ] = "El valor con el que se evala la funcin.";
Text[ finnish ] = "Arvo, jota kytetn funktion laskennassa";
Text[ italian ] = "Il valore secondo il quale si deve calcolare la funzione.";
- Text[ danish ] = "x";
+ Text[ danish ] = "Den vrdi, for hvilken funktionen skal beregnes.";
Text[ swedish ] = "Vrdet som funktionen ska berknas fr.";
Text[ polish ] = "Warto, przy ktrej naley wyliczy funkcj.";
Text[ portuguese_brazilian ] = "x";
@@ -2518,12 +2518,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Tentativas";
Text[ russian ] = "N";
Text[ greek ] = "";
- Text[ dutch ] = "n";
+ Text[ dutch ] = "N";
Text[ french ] = "N";
Text[ spanish ] = "N";
Text[ finnish ] = "N";
Text[ italian ] = "N";
- Text[ danish ] = "Forsg";
+ Text[ danish ] = "N";
Text[ swedish ] = "N";
Text[ polish ] = "N";
Text[ portuguese_brazilian ] = "n";
@@ -2533,8 +2533,8 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "n";
Text[ turkish ] = "Deney";
Text[ arabic ] = "Trials";
- Text[ catalan ] = "avaluacions";
- Text[ thai ] = "ทดลอง";
+ Text[ catalan ] = "n";
+ Text[ thai ] = "การทดลอง";
};
String 5 // description of parameter 2 BesselJ
@@ -2546,12 +2546,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "n";
Text[ russian ] = " .";
Text[ greek ] = "n";
- Text[ dutch ] = "n";
+ Text[ dutch ] = "Ordening van de Bessel-functie";
Text[ french ] = "Ordre de la fonction Bessel.";
Text[ spanish ] = "Orden de la funcin Bessel";
Text[ finnish ] = "Bessel-funktion jrjestys";
Text[ italian ] = "Ordine della funzione di Bessel.";
- Text[ danish ] = "n";
+ Text[ danish ] = "Besselfunktionens orden";
Text[ swedish ] = "Ordningstalet fr Bessel-funktionen";
Text[ polish ] = "Rzd funkcji Bessela.";
Text[ portuguese_brazilian ] = "n";
@@ -2575,14 +2575,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Returns the Bessel function Kn(x)";
Text[ portuguese ] = "Returns the Bessel function Kn(x)";
- Text[ russian ] = " Kn(x).";
+ Text[ russian ] = " Kn(x).";
Text[ greek ] = "Returns the Bessel function Kn(x)";
- Text[ dutch ] = "Returns the Bessel function Kn(x)";
+ Text[ dutch ] = "Berekent de gewijzigde Bessel-functie Kn(x).";
Text[ french ] = "Calcule la fonction de Bessel modifie Kn(x).";
Text[ spanish ] = "Calcula la funcin de Bessel modificada Kn(x)";
- Text[ finnish ] = "Palauttaa En(x) Bessel-funktion arvon";
+ Text[ finnish ] = "Palauttaa Kn(x) Bessel-funktion arvon";
Text[ italian ] = "Restituisce la funzione modificata di Bessel Kn(x).";
- Text[ danish ] = "Returns the Bessel function Kn(x)";
+ Text[ danish ] = "Beregner den modificerede Besselfunktion Kn(x).";
Text[ swedish ] = "Berknar den modifierade Bessel-funktionen Kn(x).";
Text[ polish ] = "Podaje warto zmodyfikowanej funkcji Bessela Kn(x).";
Text[ portuguese_brazilian ] = "Returns the Bessel function Kn(x)";
@@ -2592,7 +2592,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "傳回修改過的 Bessel 函數 Kn(x) 。";
Text[ turkish ] = "Returns the Bessel function Kn(x)";
Text[ arabic ] = "Returns the Bessel function Kn(x)";
- Text[ catalan ] = "Torna la funci de Bessel Kn(x)";
+ Text[ catalan ] = "Torna la funci modificada de Bessel Kn(x)";
Text[ thai ] = "ส่งกลับฟังก์ชั่น Bessel Kn(x)";
};
@@ -2605,12 +2605,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Nm_s";
Text[ russian ] = "X";
Text[ greek ] = "";
- Text[ dutch ] = "x";
+ Text[ dutch ] = "X";
Text[ french ] = "X";
Text[ spanish ] = "X";
Text[ finnish ] = "X";
Text[ italian ] = "X";
- Text[ danish ] = "Tal_s";
+ Text[ danish ] = "X";
Text[ swedish ] = "X";
Text[ polish ] = "X";
Text[ portuguese_brazilian ] = "x";
@@ -2620,7 +2620,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "x";
Text[ turkish ] = "rn";
Text[ arabic ] = "Number_s";
- Text[ catalan ] = "Nombre";
+ Text[ catalan ] = "x";
Text[ thai ] = "ตัวเลข";
};
@@ -2633,12 +2633,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "x";
Text[ russian ] = ", .";
Text[ greek ] = "x";
- Text[ dutch ] = "x";
+ Text[ dutch ] = "De waarde waarvoor de functie moet worden berekend.";
Text[ french ] = "La valeur laquelle la fonction est valuer.";
Text[ spanish ] = "El valor con el que se evala la funcin.";
Text[ finnish ] = "Arvo, jota kytetn funktion laskennassa";
Text[ italian ] = "Il valore secondo il quale si deve calcolare la funzione.";
- Text[ danish ] = "x";
+ Text[ danish ] = "Den vrdi, for hvilken funktionen skal beregnes.";
Text[ swedish ] = "Vrdet som funktionen ska berknas fr.";
Text[ polish ] = "Warto, przy ktrej naley wyliczy funkcj.";
Text[ portuguese_brazilian ] = "x";
@@ -2661,12 +2661,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Tentativas";
Text[ russian ] = "N";
Text[ greek ] = "";
- Text[ dutch ] = "n";
+ Text[ dutch ] = "N";
Text[ french ] = "N";
Text[ spanish ] = "N";
Text[ finnish ] = "N";
Text[ italian ] = "N";
- Text[ danish ] = "Forsg";
+ Text[ danish ] = "N";
Text[ swedish ] = "N";
Text[ polish ] = "N";
Text[ portuguese_brazilian ] = "n";
@@ -2676,8 +2676,8 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "n";
Text[ turkish ] = "Deney";
Text[ arabic ] = "Trials";
- Text[ catalan ] = "avaluacions";
- Text[ thai ] = "ทดลอง";
+ Text[ catalan ] = "n";
+ Text[ thai ] = "การทดลอง";
};
String 5 // description of parameter 2 BesselK
@@ -2689,12 +2689,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "n";
Text[ russian ] = " .";
Text[ greek ] = "n";
- Text[ dutch ] = "n";
+ Text[ dutch ] = "Ordening van de Bessel-functie";
Text[ french ] = "Ordre de la fonction Bessel.";
Text[ spanish ] = "Orden de la funcin Bessel";
Text[ finnish ] = "Bessel-funktion jrjestys";
Text[ italian ] = "Ordine della funzione di Bessel.";
- Text[ danish ] = "n";
+ Text[ danish ] = "Besselfunktionens orden";
Text[ swedish ] = "Ordningstalet fr Bessel-funktionen";
Text[ polish ] = "Rzd funkcji Bessela.";
Text[ portuguese_brazilian ] = "n";
@@ -2720,12 +2720,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Returns the Bessel function Yn(x)";
Text[ russian ] = " Yn(x).";
Text[ greek ] = "Returns the Bessel function Yn(x)";
- Text[ dutch ] = "Returns the Bessel function Yn(x)";
+ Text[ dutch ] = "Berekent de Bessel-functie Yn(x).";
Text[ french ] = "Calcule la fonction de Bessel Yn(x).";
Text[ spanish ] = "Devuelve la funcin Bessel Yn(x)";
Text[ finnish ] = "Palauttaa Yn(x) Bessel-funktion arvon";
Text[ italian ] = "Restituisce la funzione di Bessel Yn(x).";
- Text[ danish ] = "Returns the Bessel function Yn(x)";
+ Text[ danish ] = "Beregner Besselfunktionen Yn(x).";
Text[ swedish ] = "Berknar Bessel-funktionen Yn(x).";
Text[ polish ] = "Podaje warto funkcji Bessela Yn(x).";
Text[ portuguese_brazilian ] = "Returns the Bessel function Yn(x)";
@@ -2735,7 +2735,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "傳回 Bessel 函數 Yn(x) 。";
Text[ turkish ] = "Returns the Bessel function Yn(x)";
Text[ arabic ] = "Returns the Bessel function Yn(x)";
- Text[ catalan ] = "Torna la funci de Bessel Yn(x)";
+ Text[ catalan ] = "Torna la funci modificada de Bessel Yn(x)";
Text[ thai ] = "ส่งกลับฟังก์ชั่น Bessel Yn(x)";
};
@@ -2748,12 +2748,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Nm_s";
Text[ russian ] = "X";
Text[ greek ] = "";
- Text[ dutch ] = "x";
+ Text[ dutch ] = "X";
Text[ french ] = "X";
Text[ spanish ] = "X";
Text[ finnish ] = "X";
Text[ italian ] = "X";
- Text[ danish ] = "Tal_s";
+ Text[ danish ] = "X";
Text[ swedish ] = "X";
Text[ polish ] = "X";
Text[ portuguese_brazilian ] = "x";
@@ -2763,7 +2763,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "x";
Text[ turkish ] = "rn";
Text[ arabic ] = "Number_s";
- Text[ catalan ] = "Nombre";
+ Text[ catalan ] = "x";
Text[ thai ] = "ตัวเลข";
};
@@ -2776,12 +2776,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "x";
Text[ russian ] = ", .";
Text[ greek ] = "x";
- Text[ dutch ] = "x";
+ Text[ dutch ] = "De waarde waarvoor de functie moet worden berekend.";
Text[ french ] = "La valeur laquelle la fonction est valuer.";
Text[ spanish ] = "El valor para el que se evala la funcin.";
Text[ finnish ] = "Arvo, jota kytetn funktion laskennassa";
Text[ italian ] = "Il valore secondo il quale si deve calcolare la funzione.";
- Text[ danish ] = "x";
+ Text[ danish ] = "Den vrdi, for hvilken funktionen skal beregnes.";
Text[ swedish ] = "Vrdet som funktionen ska berknas fr.";
Text[ polish ] = "Warto, przy ktrej naley wyliczy funkcj.";
Text[ portuguese_brazilian ] = "x";
@@ -2804,12 +2804,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Tentativas";
Text[ russian ] = "N";
Text[ greek ] = "";
- Text[ dutch ] = "n";
+ Text[ dutch ] = "N";
Text[ french ] = "N";
Text[ spanish ] = "N";
Text[ finnish ] = "N";
Text[ italian ] = "N";
- Text[ danish ] = "Forsg";
+ Text[ danish ] = "N";
Text[ swedish ] = "N";
Text[ polish ] = "N";
Text[ portuguese_brazilian ] = "n";
@@ -2819,8 +2819,8 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "n";
Text[ turkish ] = "Deney";
Text[ arabic ] = "Trials";
- Text[ catalan ] = "avaluacions";
- Text[ thai ] = "ทดลอง";
+ Text[ catalan ] = "n";
+ Text[ thai ] = "การทดลอง";
};
String 5 // description of parameter 2 BesselY
@@ -2832,12 +2832,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "n";
Text[ russian ] = " .";
Text[ greek ] = "n";
- Text[ dutch ] = "n";
+ Text[ dutch ] = "Ordening van de Bessel-functie";
Text[ french ] = "Ordre de la fonction Bessel.";
Text[ spanish ] = "Orden de la funcin Bessel.";
Text[ finnish ] = "Bessel-funktion jrjestys";
Text[ italian ] = "Ordine della funzione di Bessel.";
- Text[ danish ] = "n";
+ Text[ danish ] = "Besselfunktionens orden";
Text[ swedish ] = "Ordningstalet fr Bessel-funktionen";
Text[ polish ] = "Rzd funkcji Bessela.";
Text[ portuguese_brazilian ] = "n";
@@ -2863,12 +2863,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Converts a binary number to octal";
Text[ russian ] = " .";
Text[ greek ] = "Converts a binary number to octal";
- Text[ dutch ] = "Converts a binary number to octal";
+ Text[ dutch ] = "Converteert een binair getal naar een getal uit het achttallig stelsel.";
Text[ french ] = "Convertit un nombre binaire en nombre octal.";
Text[ spanish ] = "Convierte un nmero binario en uno octal.";
- Text[ finnish ] = "Muuntaa binriluvun oktaaliluvuksi";
+ Text[ finnish ] = "Muuntaa binaariluvun oktaaliluvuksi";
Text[ italian ] = "Converte un numero binario in ottale.";
- Text[ danish ] = "Converts a binary number to octal";
+ Text[ danish ] = "Konverterer et binrt tal til et oktaltal.";
Text[ swedish ] = "Omvandlar ett binrt tal till ett oktalt.";
Text[ polish ] = "Zamienia liczb dwjkow na liczb w kodzie semkowym.";
Text[ portuguese_brazilian ] = "Converts a binary number to octal";
@@ -2891,12 +2891,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "number";
Text[ russian ] = "";
Text[ greek ] = "number";
- Text[ dutch ] = "number";
+ Text[ dutch ] = "Getal";
Text[ french ] = "Nombre";
Text[ spanish ] = "Nmero";
Text[ finnish ] = "Luku";
Text[ italian ] = "Numero";
- Text[ danish ] = "number";
+ Text[ danish ] = "Tal";
Text[ swedish ] = "Tal";
Text[ polish ] = "Liczba";
Text[ portuguese_brazilian ] = "number";
@@ -2917,19 +2917,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The binary number to be converted (as text)";
Text[ portuguese ] = "number";
- Text[ russian ] = " ( ).";
+ Text[ russian ] = " ( ).";
Text[ greek ] = "number";
- Text[ dutch ] = "number";
+ Text[ dutch ] = "Binair getal (als tekst)";
Text[ french ] = "Nombre binaire (texte)";
Text[ spanish ] = "Nmero binario (como texto)";
- Text[ finnish ] = "Muunnettava binriluku (tekstimuodossa)";
+ Text[ finnish ] = "Muunnettava binaariluku (tekstimuodossa)";
Text[ italian ] = "Numero binario (testo)";
- Text[ danish ] = "number";
+ Text[ danish ] = "Binrt tal (som tekst)";
Text[ swedish ] = "Binrt tal (som text)";
Text[ polish ] = "Liczba dwjkowa (w postaci tekstu).";
Text[ portuguese_brazilian ] = "number";
Text[ japanese ] = "2進数(文字列として)";
- Text[ korean ] = "수";
+ Text[ korean ] = "2진수(문자열만)";
Text[ chinese_simplified ] = "是一个当作文字的二进制数字。";
Text[ chinese_traditional ] = "一個當作文字的要轉換的二進位數字。";
Text[ turkish ] = "number";
@@ -2947,12 +2947,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "places";
Text[ russian ] = "";
Text[ greek ] = "places";
- Text[ dutch ] = "places";
+ Text[ dutch ] = "Decimalen";
Text[ french ] = "Chiffres";
Text[ spanish ] = "Cifras";
Text[ finnish ] = "Desimaalit";
Text[ italian ] = "Cifre";
- Text[ danish ] = "places";
+ Text[ danish ] = "Cifre";
Text[ swedish ] = "Antal siffror";
Text[ polish ] = "Miejsca";
Text[ portuguese_brazilian ] = "places";
@@ -2975,12 +2975,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "places";
Text[ russian ] = " .";
Text[ greek ] = "places";
- Text[ dutch ] = "places";
+ Text[ dutch ] = "Aantal gebruikte decimalen.";
Text[ french ] = "Nombre de chiffres utiliser.";
Text[ spanish ] = "Cantidad de cifras usadas.";
Text[ finnish ] = "Desimaalien mr";
Text[ italian ] = "Numero dei caratteri da usare.";
- Text[ danish ] = "places";
+ Text[ danish ] = "Antal anvendte cifre.";
Text[ swedish ] = "Antal anvnda siffror.";
Text[ polish ] = "Liczba znakw dla wartoci wynikowej.";
Text[ portuguese_brazilian ] = "places";
@@ -3006,17 +3006,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Converts a binary number to decimal";
Text[ russian ] = " .";
Text[ greek ] = "Converts a binary number to decimal";
- Text[ dutch ] = "Converts a binary number to decimal";
+ Text[ dutch ] = "Converteert een binair getal naar een decimaal getal.";
Text[ french ] = "Convertit un nombre binaire en nombre dcimal.";
Text[ spanish ] = "Convierte und nmero binario en uno decimal.";
- Text[ finnish ] = "Muuntaa binriluvun desimaaliluvuksi";
+ Text[ finnish ] = "Muuntaa binaariluvun desimaaliluvuksi";
Text[ italian ] = "Converte un numero binario in decimale.";
- Text[ danish ] = "Converts a binary number to decimal";
+ Text[ danish ] = "Konverterer et binrt tal til et decimaltal.";
Text[ swedish ] = "Omvandlar ett binrt tal till ett decimalt.";
Text[ polish ] = "Przeksztaca liczb dwjkow na dziesitn.";
Text[ portuguese_brazilian ] = "Converts a binary number to decimal";
Text[ japanese ] = "2進数を10進数に変換します。";
- Text[ korean ] = "2진수를 10진수로 변환합니다";
+ Text[ korean ] = "2진수를 10진수로 변환합니다.";
Text[ chinese_simplified ] = "将一个二进制的数字转换成十进制的数字。";
Text[ chinese_traditional ] = "將一個二進位數字轉換成十進位數字。";
Text[ turkish ] = "Converts a binary number to decimal";
@@ -3034,12 +3034,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "number";
Text[ russian ] = "";
Text[ greek ] = "number";
- Text[ dutch ] = "number";
+ Text[ dutch ] = "Getal";
Text[ french ] = "Nombre";
Text[ spanish ] = "Nmero";
Text[ finnish ] = "Luku";
Text[ italian ] = "Numero";
- Text[ danish ] = "number";
+ Text[ danish ] = "Tal";
Text[ swedish ] = "Tal";
Text[ polish ] = "Liczba";
Text[ portuguese_brazilian ] = "number";
@@ -3060,19 +3060,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The binary number to be converted (as text)";
Text[ portuguese ] = "number";
- Text[ russian ] = " ( ).";
+ Text[ russian ] = " ( ).";
Text[ greek ] = "number";
- Text[ dutch ] = "number";
+ Text[ dutch ] = "Binair getal (als tekst)";
Text[ french ] = "Nombre binaire (texte)";
Text[ spanish ] = "Nmero binario (como texto)";
- Text[ finnish ] = "Muunnettava binriluku (tekstimuodossa)";
+ Text[ finnish ] = "Muunnettava binaariluku (tekstimuodossa)";
Text[ italian ] = "Numero binario (testo)";
- Text[ danish ] = "number";
+ Text[ danish ] = "Binrt tal (som tekst)";
Text[ swedish ] = "Binrt tal (som text)";
Text[ polish ] = "Liczba dwjkowa (w postaci tekstu).";
Text[ portuguese_brazilian ] = "number";
Text[ japanese ] = "2進数(文字列として)";
- Text[ korean ] = "수";
+ Text[ korean ] = "2진수(문자열만)";
Text[ chinese_simplified ] = "是一个当作文字的二进制数字。";
Text[ chinese_traditional ] = "為一個當作文字的二進位數字。";
Text[ turkish ] = "number";
@@ -3093,17 +3093,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Converts a binary number to hexadecimal";
Text[ russian ] = " .";
Text[ greek ] = "Converts a binary number to hexadecimal";
- Text[ dutch ] = "Converts a binary number to hexadecimal";
+ Text[ dutch ] = "Converteert een binair getal naar een hexadecimaal getal.";
Text[ french ] = "Convertit un nombre binaire en nombre hexadcimal.";
Text[ spanish ] = "Convierte un nmero binario en hexadecimal.";
- Text[ finnish ] = "Muuntaa binriluvun heksadesimaaliluvuksi";
+ Text[ finnish ] = "Muuntaa binaariluvun heksadesimaaliluvuksi";
Text[ italian ] = "Converte un numero binario in esadecimale.";
- Text[ danish ] = "Converts a binary number to hexadecimal";
+ Text[ danish ] = "Konverterer et binrt tal til et heksadecimaltal.";
Text[ swedish ] = "Omvandlar ett binrt tal till ett hexadecimalt.";
Text[ polish ] = "Zamienia liczb dwjkow na liczb w kodzie szesnastkowym.";
Text[ portuguese_brazilian ] = "Converts a binary number to hexadecimal";
Text[ japanese ] = "2進数を16進数に変換します。";
- Text[ korean ] = "2진수를 16진수로 변환합니다";
+ Text[ korean ] = "2진수를 16진수로 변환합니다.";
Text[ chinese_simplified ] = "将一个二进制数字转换成十六进制数字。";
Text[ chinese_traditional ] = "將一個二進位數字轉換成十六進位數字。";
Text[ turkish ] = "Converts a binary number to hexadecimal";
@@ -3121,12 +3121,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "number";
Text[ russian ] = "";
Text[ greek ] = "number";
- Text[ dutch ] = "number";
+ Text[ dutch ] = "Getal";
Text[ french ] = "Nombre";
Text[ spanish ] = "Nmero";
Text[ finnish ] = "Luku";
Text[ italian ] = "Numero";
- Text[ danish ] = "number";
+ Text[ danish ] = "Tal";
Text[ swedish ] = "Tal";
Text[ polish ] = "Liczba";
Text[ portuguese_brazilian ] = "number";
@@ -3147,19 +3147,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The binary number to be converted (as text)";
Text[ portuguese ] = "number";
- Text[ russian ] = " ( ).";
+ Text[ russian ] = " ( ).";
Text[ greek ] = "number";
- Text[ dutch ] = "number";
+ Text[ dutch ] = "Binair getal (als tekst)";
Text[ french ] = "Nombre binaire (texte)";
Text[ spanish ] = "Nmero binario (como texto)";
- Text[ finnish ] = "Muunnettava binriluku (tekstimuodossa)";
+ Text[ finnish ] = "Muunnettava binaariluku (tekstimuodossa)";
Text[ italian ] = "Numero binario (testo)";
- Text[ danish ] = "number";
+ Text[ danish ] = "Binrt tal (som tekst)";
Text[ swedish ] = "Binrt tal (som text)";
Text[ polish ] = "Liczba dwjkowa (w postaci tekstu).";
Text[ portuguese_brazilian ] = "number";
Text[ japanese ] = "2進数(文字列として)";
- Text[ korean ] = "수";
+ Text[ korean ] = "2진수(문자열만)";
Text[ chinese_simplified ] = "一个当作文字的二进制数字。";
Text[ chinese_traditional ] = "爲一個當作文字的二進位數字。";
Text[ turkish ] = "number";
@@ -3182,7 +3182,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Cifras";
Text[ finnish ] = "Desimaalit";
Text[ italian ] = "Cifre";
- Text[ danish ] = "places";
+ Text[ danish ] = "Cifre";
Text[ swedish ] = "Antal siffror";
Text[ polish ] = "Miejsca";
Text[ portuguese_brazilian ] = "places";
@@ -3210,7 +3210,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Cantidad de cifras usadas.";
Text[ finnish ] = "Desimaalien mr.";
Text[ italian ] = "Numero dei caratteri da usare.";
- Text[ danish ] = "places";
+ Text[ danish ] = "Antal anvendte cifre.";
Text[ swedish ] = "Antal anvnda siffror.";
Text[ polish ] = "Liczba znakw dla wartoci wynikowej.";
Text[ portuguese_brazilian ] = "places";
@@ -3236,12 +3236,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Converts a octal number to binary";
Text[ russian ] = " .";
Text[ greek ] = "Converts a octal number to binary";
- Text[ dutch ] = "Converts a octal number to binary";
+ Text[ dutch ] = "Converteert een getal uit het achttallig stelsel naar een binair getal.";
Text[ french ] = "Convertit un nombre octal en nombre binaire.";
Text[ spanish ] = "Convierte un nmero octal en binario.";
- Text[ finnish ] = "Muuntaa oktaaliluvun binriluvuksi";
+ Text[ finnish ] = "Muuntaa oktaaliluvun binaariluvuksi";
Text[ italian ] = "Converte un numero ottale in binario.";
- Text[ danish ] = "Converts a octal number to binary";
+ Text[ danish ] = "Konverterer et oktaltal til et binrt tal.";
Text[ swedish ] = "Omvandlar ett oktalt tal till ett binrt.";
Text[ polish ] = "Zamienia liczb semkow na liczb w kodzie dwjkowym.";
Text[ portuguese_brazilian ] = "Converts a octal number to binary";
@@ -3264,12 +3264,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "number";
Text[ russian ] = "";
Text[ greek ] = "number";
- Text[ dutch ] = "number";
+ Text[ dutch ] = "Getal";
Text[ french ] = "Nombre";
Text[ spanish ] = "Nmero";
Text[ finnish ] = "Luku";
Text[ italian ] = "Numero";
- Text[ danish ] = "number";
+ Text[ danish ] = "Tal";
Text[ swedish ] = "Tal";
Text[ polish ] = "Liczba";
Text[ portuguese_brazilian ] = "number";
@@ -3290,14 +3290,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The octal number to be converted (as text)";
Text[ portuguese ] = "number";
- Text[ russian ] = " ( ).";
+ Text[ russian ] = " ( ).";
Text[ greek ] = "number";
- Text[ dutch ] = "number";
+ Text[ dutch ] = "Getal uit achttallig stelsel (als tekst)";
Text[ french ] = "Nombre octal (texte)";
Text[ spanish ] = "Nmero octal (como texto)";
Text[ finnish ] = "Muunnettava oktaaliluku (tekstimuodossa)";
Text[ italian ] = "Numero ottale (testo)";
- Text[ danish ] = "number";
+ Text[ danish ] = "Oktaltal (som tekst)";
Text[ swedish ] = "Oktalt tal (som text)";
Text[ polish ] = "Liczba semkowa (w postaci tekstu).";
Text[ portuguese_brazilian ] = "number";
@@ -3320,12 +3320,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "places";
Text[ russian ] = "";
Text[ greek ] = "places";
- Text[ dutch ] = "places";
+ Text[ dutch ] = "Decimalen";
Text[ french ] = "Chiffres";
Text[ spanish ] = "Cifras";
Text[ finnish ] = "Desimaalit";
Text[ italian ] = "Cifre";
- Text[ danish ] = "places";
+ Text[ danish ] = "Cifre";
Text[ swedish ] = "Antal siffror";
Text[ polish ] = "Miejsca";
Text[ portuguese_brazilian ] = "places";
@@ -3348,12 +3348,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "places";
Text[ russian ] = " .";
Text[ greek ] = "places";
- Text[ dutch ] = "places";
+ Text[ dutch ] = "Aantal gebruikte decimalen.";
Text[ french ] = "Nombre de chiffres utiliser.";
Text[ spanish ] = "Cantidad de cifras usadas.";
Text[ finnish ] = "Desimaalien mr";
Text[ italian ] = "Numero di caratteri da usare.";
- Text[ danish ] = "places";
+ Text[ danish ] = "Antal anvendte cifre.";
Text[ swedish ] = "Antal anvnda siffror.";
Text[ polish ] = "Liczba znakw dla wartoci wynikowej.";
Text[ portuguese_brazilian ] = "places";
@@ -3379,17 +3379,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Converts a octal number to decimal";
Text[ russian ] = " .";
Text[ greek ] = "Converts a octal number to decimal";
- Text[ dutch ] = "Converts a octal number to decimal";
+ Text[ dutch ] = "Converteert een getal uit het achttallig stelsel naar een decimaal getal.";
Text[ french ] = "Convertit un nombre octal en nombre dcimal.";
Text[ spanish ] = "Convierte un nmero octal en uno decimal.";
Text[ finnish ] = "Muuntaa oktaaliluvun desimaaliluvuksi";
Text[ italian ] = "Converte un numero ottale in decimale.";
- Text[ danish ] = "Converts a octal number to decimal";
+ Text[ danish ] = "Konverterer et oktaltal til et decimaltal.";
Text[ swedish ] = "Omvandlar ett oktalt tal till ett decimalt.";
Text[ polish ] = "Zamienia liczb semkow na dziesitn.";
Text[ portuguese_brazilian ] = "Converts a octal number to decimal";
Text[ japanese ] = "8進数を10進数に変換します。";
- Text[ korean ] = "8진수를 10진수로 변환합니다";
+ Text[ korean ] = "8진수를 10진수로 변환합니다.";
Text[ chinese_simplified ] = "将一个八进制数字转换成十进制数字。";
Text[ chinese_traditional ] = "將一個八進位數字轉換成十進位數字。";
Text[ turkish ] = "Converts a octal number to decimal";
@@ -3407,12 +3407,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "number";
Text[ russian ] = "";
Text[ greek ] = "number";
- Text[ dutch ] = "number";
+ Text[ dutch ] = "Getal";
Text[ french ] = "Nombre";
Text[ spanish ] = "Nmero";
Text[ finnish ] = "Luku";
Text[ italian ] = "Numero";
- Text[ danish ] = "number";
+ Text[ danish ] = "Tal";
Text[ swedish ] = "Tal";
Text[ polish ] = "Liczba";
Text[ portuguese_brazilian ] = "number";
@@ -3435,12 +3435,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "number";
Text[ russian ] = " ( ).";
Text[ greek ] = "number";
- Text[ dutch ] = "number";
+ Text[ dutch ] = "Getal uit achttallig stelsel (als tekst)";
Text[ french ] = "Nombre octal (texte)";
Text[ spanish ] = "Nmero octal (como texto)";
Text[ finnish ] = "Muunnettava oktaaliluku (tekstimuodossa)";
Text[ italian ] = "Numero ottale (testo)";
- Text[ danish ] = "number";
+ Text[ danish ] = "Oktaltal (som tekst)";
Text[ swedish ] = "Oktalt tal (som text)";
Text[ polish ] = "Liczba semkowa (w postaci tekstu).";
Text[ portuguese_brazilian ] = "number";
@@ -3466,17 +3466,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Converts a octal number to hexadecimal";
Text[ russian ] = " .";
Text[ greek ] = "Converts a octal number to hexadecimal";
- Text[ dutch ] = "Converts a octal number to hexadecimal";
+ Text[ dutch ] = "Converteert een getal uit het achttallig stelsel naar een hexadecimaal getal.";
Text[ french ] = "Convertit un nombre octal en nombre hexadcimal.";
Text[ spanish ] = "Convierte un nmero octal en uno hexadecimal.";
Text[ finnish ] = "Muuntaa oktaaliluvun heksadesimaaliluvuksi";
Text[ italian ] = "Converte un numero ottale in esadecimale.";
- Text[ danish ] = "Converts a octal number to hexadecimal";
+ Text[ danish ] = "Konverterer et oktaltal til et heksadecimaltal.";
Text[ swedish ] = "Omvandlar ett oktalt tal till ett hexadecimalt.";
Text[ polish ] = "Zamienia liczb semkow na liczb w kodzie szesnastkowym.";
Text[ portuguese_brazilian ] = "Converts a octal number to hexadecimal";
Text[ japanese ] = "8進数を16進数に変換します。";
- Text[ korean ] = "8진수를 16진수로 변환합니다";
+ Text[ korean ] = "8진수를 16진수로 변환합니다.";
Text[ chinese_simplified ] = "将一个八进制数字转换成十六进制数字。";
Text[ chinese_traditional ] = "將一個八進位數字轉換成十六進位數字。";
Text[ turkish ] = "Converts a octal number to hexadecimal";
@@ -3494,12 +3494,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "number";
Text[ russian ] = "";
Text[ greek ] = "number";
- Text[ dutch ] = "number";
+ Text[ dutch ] = "Getal";
Text[ french ] = "Nombre";
Text[ spanish ] = "Nmero";
Text[ finnish ] = "Luku";
Text[ italian ] = "Numero";
- Text[ danish ] = "number";
+ Text[ danish ] = "Tal";
Text[ swedish ] = "Tal";
Text[ polish ] = "Liczba";
Text[ portuguese_brazilian ] = "number";
@@ -3522,12 +3522,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "number";
Text[ russian ] = " ( ).";
Text[ greek ] = "number";
- Text[ dutch ] = "number";
+ Text[ dutch ] = "Getal uit achttallig stelsel (als tekst)";
Text[ french ] = "Nombre octal (texte)";
Text[ spanish ] = "Nmero octal (como texto)";
Text[ finnish ] = "Muunnettava oktaaliluku (tekstimuodossa)";
Text[ italian ] = "Numero ottale (testo)";
- Text[ danish ] = "number";
+ Text[ danish ] = "Oktaltal (som tekst)";
Text[ swedish ] = "Oktalt tal (som text)";
Text[ polish ] = "Liczba semkowa (w postaci tekstu).";
Text[ portuguese_brazilian ] = "number";
@@ -3550,12 +3550,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "places";
Text[ russian ] = "";
Text[ greek ] = "places";
- Text[ dutch ] = "places";
+ Text[ dutch ] = "Decimalen";
Text[ french ] = "Chiffres";
Text[ spanish ] = "Cifras";
Text[ finnish ] = "Desimaalit";
Text[ italian ] = "Cifre";
- Text[ danish ] = "places";
+ Text[ danish ] = "Cifre";
Text[ swedish ] = "Antal siffror";
Text[ polish ] = "Miejsca";
Text[ portuguese_brazilian ] = "places";
@@ -3578,12 +3578,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "places";
Text[ russian ] = " .";
Text[ greek ] = "places";
- Text[ dutch ] = "places";
+ Text[ dutch ] = "Aantal gebruikte decimalen.";
Text[ french ] = "Nombre de chiffres utiliser.";
Text[ spanish ] = "Cantidad de cifras usadas.";
Text[ finnish ] = "Desimaalien mr";
Text[ italian ] = "Numero dei caratteri da usare.";
- Text[ danish ] = "places";
+ Text[ danish ] = "Antal anvendte cifre.";
Text[ swedish ] = "Antal anvnda siffror.";
Text[ polish ] = "Liczba znakw dla wartoci wynikowej.";
Text[ portuguese_brazilian ] = "places";
@@ -3609,17 +3609,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Converts a decimal number to binary";
Text[ russian ] = " .";
Text[ greek ] = "Converts a decimal number to binary";
- Text[ dutch ] = "Converts a decimal number to binary";
+ Text[ dutch ] = "Converteert een decimaal getal naar een binair getal.";
Text[ french ] = "Convertit un nombre dcimal en nombre binaire.";
Text[ spanish ] = "Convierte un nmero decimal en uno binario.";
- Text[ finnish ] = "Muuntaa desimaaliluvun binriluvuksi";
+ Text[ finnish ] = "Muuntaa desimaaliluvun binaariluvuksi";
Text[ italian ] = "Converte un numero decimale in binario.";
- Text[ danish ] = "Converts a decimal number to binary";
+ Text[ danish ] = "Konverterer et decimaltal til et binrt tal.";
Text[ swedish ] = "Omvandlar ett decimalt tal till ett binrt.";
Text[ polish ] = "Zamienia liczb dziesitn na liczb w kodzie dwjkowym.";
Text[ portuguese_brazilian ] = "Converts a decimal number to binary";
Text[ japanese ] = "10進数を2進数に変換します。";
- Text[ korean ] = "10진수를 2진수로 변환합니다";
+ Text[ korean ] = "10진수를 2진수로 변환합니다.";
Text[ chinese_simplified ] = "将一个十进制数字转换成二进制数字。";
Text[ chinese_traditional ] = "將一個十進位數字轉換成二進位數字。";
Text[ turkish ] = "Converts a decimal number to binary";
@@ -3637,12 +3637,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "number";
Text[ russian ] = "";
Text[ greek ] = "number";
- Text[ dutch ] = "number";
+ Text[ dutch ] = "Getal";
Text[ french ] = "Nombre";
Text[ spanish ] = "Nmero";
Text[ finnish ] = "Luku";
Text[ italian ] = "Numero";
- Text[ danish ] = "number";
+ Text[ danish ] = "Tal";
Text[ swedish ] = "Tal";
Text[ polish ] = "Liczba";
Text[ portuguese_brazilian ] = "number";
@@ -3665,17 +3665,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "number";
Text[ russian ] = " .";
Text[ greek ] = "number";
- Text[ dutch ] = "number";
+ Text[ dutch ] = "Decimaal getal";
Text[ french ] = "Nombre dcimal";
Text[ spanish ] = "Nmero decimal";
Text[ finnish ] = "Muunnettava desimaaliluku.";
Text[ italian ] = "Numero decimale";
- Text[ danish ] = "number";
+ Text[ danish ] = "Decimaltal";
Text[ swedish ] = "Decimaltal";
Text[ polish ] = "Liczba dziesitna.";
Text[ portuguese_brazilian ] = "number";
Text[ japanese ] = "10進数";
- Text[ korean ] = "수";
+ Text[ korean ] = "10진수";
Text[ chinese_simplified ] = "十进制数字";
Text[ chinese_traditional ] = "為一個十進位數字。";
Text[ turkish ] = "number";
@@ -3693,12 +3693,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "places";
Text[ russian ] = "";
Text[ greek ] = "places";
- Text[ dutch ] = "places";
+ Text[ dutch ] = "Decimalen";
Text[ french ] = "Chiffres";
Text[ spanish ] = "Cifras";
Text[ finnish ] = "Desimaalit";
Text[ italian ] = "Cifre";
- Text[ danish ] = "places";
+ Text[ danish ] = "Cifre";
Text[ swedish ] = "Antal siffror";
Text[ polish ] = "Miejsca";
Text[ portuguese_brazilian ] = "places";
@@ -3721,12 +3721,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "places";
Text[ russian ] = " .";
Text[ greek ] = "places";
- Text[ dutch ] = "places";
+ Text[ dutch ] = "Aantal gebruikte decimalen.";
Text[ french ] = "Nombre de chiffres utiliser.";
Text[ spanish ] = "Cantidad de cifras usadas.";
Text[ finnish ] = "Desimaalien mr";
Text[ italian ] = "Numero dei caratteri da usare.";
- Text[ danish ] = "places";
+ Text[ danish ] = "Antal anvendte cifre.";
Text[ swedish ] = "Antal anvnda siffror.";
Text[ polish ] = "Liczba znakw dla wartoci wynikowej.";
Text[ portuguese_brazilian ] = "places";
@@ -3752,17 +3752,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Converts a decimal number to hexadecimal";
Text[ russian ] = " .";
Text[ greek ] = "Converts a decimal number to hexadecimal";
- Text[ dutch ] = "Converts a decimal number to hexadecimal";
+ Text[ dutch ] = "Converteert een decimaal getal naar een hexadecimaal getal.";
Text[ french ] = "Convertit un nombre dcimal en nombre hexadcimal.";
Text[ spanish ] = "Convierte un nmero decimal en uno hexadecimal.";
Text[ finnish ] = "Muuntaa desimaaliluvun heksadesimaaliluvuksi";
Text[ italian ] = "Converte un numero decimale in esadecimale.";
- Text[ danish ] = "Converts a decimal number to hexadecimal";
+ Text[ danish ] = "Konverterer et decimaltal til et heksadecimaltal.";
Text[ swedish ] = "Omvandlar ett decimalt tal till ett hexadecimalt.";
Text[ polish ] = "Zamienia liczb dziesitn na liczb w kodzie szesnastkowym.";
Text[ portuguese_brazilian ] = "Converts a decimal number to hexadecimal";
Text[ japanese ] = "10進数を16進数に変換します。";
- Text[ korean ] = "10진수를 16진수로 변환합니다";
+ Text[ korean ] = "10진수를 16진수로 변환합니다.";
Text[ chinese_simplified ] = "将一个十进制数字转换成十六进制数字。";
Text[ chinese_traditional ] = "將一個十進位數字轉換成十六進位數字。";
Text[ turkish ] = "Converts a decimal number to hexadecimal";
@@ -3780,12 +3780,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "number";
Text[ russian ] = "";
Text[ greek ] = "number";
- Text[ dutch ] = "number";
+ Text[ dutch ] = "Getal";
Text[ french ] = "Nombre";
Text[ spanish ] = "Nmero";
Text[ finnish ] = "Luku";
Text[ italian ] = "Numero";
- Text[ danish ] = "number";
+ Text[ danish ] = "Tal";
Text[ swedish ] = "Tal";
Text[ polish ] = "Liczba";
Text[ portuguese_brazilian ] = "number";
@@ -3808,17 +3808,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "number";
Text[ russian ] = " .";
Text[ greek ] = "number";
- Text[ dutch ] = "number";
+ Text[ dutch ] = "Decimaal getal";
Text[ french ] = "Nombre dcimal";
Text[ spanish ] = "Nmero decimal";
- Text[ finnish ] = "Muunnettava desimaaliluku.";
+ Text[ finnish ] = "Muunnettava desimaaliluku";
Text[ italian ] = "Numero deciamle";
- Text[ danish ] = "number";
+ Text[ danish ] = "Decimaltal";
Text[ swedish ] = "Decimaltal";
Text[ polish ] = "Liczba dziesitna.";
Text[ portuguese_brazilian ] = "number";
Text[ japanese ] = "10進数";
- Text[ korean ] = "수";
+ Text[ korean ] = "10진수";
Text[ chinese_simplified ] = "十进制数字";
Text[ chinese_traditional ] = "為一個十進位數字。";
Text[ turkish ] = "number";
@@ -3836,12 +3836,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "places";
Text[ russian ] = "";
Text[ greek ] = "places";
- Text[ dutch ] = "places";
+ Text[ dutch ] = "Decimalen";
Text[ french ] = "Chiffres";
Text[ spanish ] = "Cifras";
Text[ finnish ] = "Desimaalit";
Text[ italian ] = "Cifre";
- Text[ danish ] = "places";
+ Text[ danish ] = "Cifre";
Text[ swedish ] = "Antal siffror";
Text[ polish ] = "Miejsca";
Text[ portuguese_brazilian ] = "places";
@@ -3864,12 +3864,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "places";
Text[ russian ] = " .";
Text[ greek ] = "places";
- Text[ dutch ] = "places";
+ Text[ dutch ] = "Aantal gebruikte decimalen.";
Text[ french ] = "Nombre de chiffres utiliser.";
Text[ spanish ] = "Cantidad de cifras usadas.";
Text[ finnish ] = "Desimaalien mr";
Text[ italian ] = "Numero dei caratteri da usare.";
- Text[ danish ] = "places";
+ Text[ danish ] = "Antal anvendte cifre.";
Text[ swedish ] = "Antal anvnda siffror.";
Text[ polish ] = "Liczba znakw dla wartoci wynikowej.";
Text[ portuguese_brazilian ] = "places";
@@ -3897,14 +3897,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Converteert een decimaal getal naar een octaal getal";
Text[ french ] = "Convertit un nombre dcimal en nombre octal.";
Text[ spanish ] = "Convierte un nmero decimal en un octal.";
- Text[ finnish ] = "Muuntaa desimaaliluvun oktaaliluvuksi.";
+ Text[ finnish ] = "Muuntaa desimaaliluvun oktaaliluvuksi";
Text[ italian ] = "Converte un numero decimale in ottale.";
- Text[ danish ] = "Wandelt eine Dezimalzahl in eine Oktalzahl um.";
+ Text[ danish ] = "Konverterer et decimaltal til et oktaltal.";
Text[ swedish ] = "Omvandlar ett decimalt tal till ett oktalt.";
Text[ polish ] = "Zamienia liczb dziesitn na liczb w kodzie semkowym.";
Text[ portuguese_brazilian ] = "Wandelt eine Dezimalzahl in eine Oktalzahl um.";
Text[ japanese ] = "10進数を8進数に変換します。";
- Text[ korean ] = "소수를 8진수로 변환합니다";
+ Text[ korean ] = "소수를 8진수로 변환합니다.";
Text[ chinese_simplified ] = "将一个十进制的数字传换成一个八进制的数字。";
Text[ chinese_traditional ] = "將一個十進位的數字轉換成八進位的數字。";
Text[ turkish ] = "Wandelt eine Dezimalzahl in eine Oktalzahl um.";
@@ -3926,7 +3926,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Nmero";
Text[ finnish ] = "Luku";
Text[ italian ] = "Numero";
- Text[ danish ] = "Serienummer";
+ Text[ danish ] = "Tal";
Text[ swedish ] = "Tal";
Text[ polish ] = "Liczba";
Text[ portuguese_brazilian ] = "Zahl";
@@ -3951,9 +3951,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Decimaal getal";
Text[ french ] = "Nombre dcimal";
Text[ spanish ] = "Nmero decimal";
- Text[ finnish ] = "Luku";
+ Text[ finnish ] = "Valuutta desimaaleina";
Text[ italian ] = "Numero decimale";
- Text[ danish ] = "Dezimalzahl";
+ Text[ danish ] = "Decimaltal";
Text[ swedish ] = "Decimaltal";
Text[ polish ] = "Liczba dziesitna poddana przeksztaceniu.";
Text[ portuguese_brazilian ] = "Dezimalzahl";
@@ -3980,7 +3980,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Cifras";
Text[ finnish ] = "Desimaalit";
Text[ italian ] = "Cifre";
- Text[ danish ] = "Stellen";
+ Text[ danish ] = "Cifre";
Text[ swedish ] = "Antal siffror";
Text[ polish ] = "Miejsca";
Text[ portuguese_brazilian ] = "Stellen";
@@ -4005,9 +4005,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Aantal gebruikte plaatsen.";
Text[ french ] = "Nombre de chiffres utiliser.";
Text[ spanish ] = "Cantidad de cifras usadas.";
- Text[ finnish ] = "Desimaalien mr.";
+ Text[ finnish ] = "Desimaalien mr";
Text[ italian ] = "Numero dei caratteri da usare.";
- Text[ danish ] = "Anzahl der verwendeten Stellen.";
+ Text[ danish ] = "Antal anvendte cifre.";
Text[ swedish ] = "Antal anvnda siffror.";
Text[ polish ] = "Liczba znakw dla wartoci wynikowej.";
Text[ portuguese_brazilian ] = "Anzahl der verwendeten Stellen.";
@@ -4017,7 +4017,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "爲要使用的字元數。";
Text[ turkish ] = "Anzahl der verwendeten Stellen.";
Text[ arabic ] = "Anzahl der verwendeten Stellen.";
- Text[ catalan ] = "xifres";
+ Text[ catalan ] = "Nmero de xifres utilitzades.";
Text[ thai ] = "จำนวนตำแหน่งที่ใช้";
};
};
@@ -4033,17 +4033,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Converts a hexadecimal number to binary";
Text[ russian ] = " .";
Text[ greek ] = "Converts a hexadecimal number to binary";
- Text[ dutch ] = "Converts a hexadecimal number to binary";
+ Text[ dutch ] = "Converteert een hexadecimaal getal naar een binair getal.";
Text[ french ] = "Convertit un nombre hexadcimal en nombre binaire.";
Text[ spanish ] = "Convierte un nmero hexadecimal en uno binario.";
- Text[ finnish ] = "Muuntaa heksadesimaaliluvun binriluvuksi";
+ Text[ finnish ] = "Muuntaa heksadesimaaliluvun binaariluvuksi";
Text[ italian ] = "Converte un numero esadecimale in binario.";
- Text[ danish ] = "Converts a hexadecimal number to binary";
+ Text[ danish ] = "Konverterer et heksadecimaltal til et binrt tal.";
Text[ swedish ] = "Omvandlar ett hexadecimalt tal till ett binrt.";
Text[ polish ] = "Zamienia liczb szesnastkow na liczb w kodzie dwjkowym.";
Text[ portuguese_brazilian ] = "Converts a hexadecimal number to binary";
Text[ japanese ] = "16進数を2進数に変換します。";
- Text[ korean ] = "16진수를 2진수로 변환합니다";
+ Text[ korean ] = "16진수를 2진수로 변환합니다.";
Text[ chinese_simplified ] = "将一个十六进制数字转换成二进制数字。";
Text[ chinese_traditional ] = "將一個十六進位數字轉換成二進位數字。";
Text[ turkish ] = "Converts a hexadecimal number to binary";
@@ -4061,12 +4061,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "number";
Text[ russian ] = "";
Text[ greek ] = "number";
- Text[ dutch ] = "number";
+ Text[ dutch ] = "Getal";
Text[ french ] = "Nombre";
Text[ spanish ] = "Nmero";
Text[ finnish ] = "Luku";
Text[ italian ] = "Numero";
- Text[ danish ] = "number";
+ Text[ danish ] = "Tal";
Text[ swedish ] = "Tal";
Text[ polish ] = "Liczba";
Text[ portuguese_brazilian ] = "number";
@@ -4089,17 +4089,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "number";
Text[ russian ] = " ( ).";
Text[ greek ] = "number";
- Text[ dutch ] = "number";
+ Text[ dutch ] = "Hexadecimaal getal (als tekst)";
Text[ french ] = "Nombre hexadcimal (texte)";
Text[ spanish ] = "Nmero hexadecimal (como texto)";
Text[ finnish ] = "Muunnettava heksadesimaaliluku (tekstimuodossa)";
Text[ italian ] = "Numero esadecimale (testo)";
- Text[ danish ] = "number";
+ Text[ danish ] = "Heksadecimaltal (som tekst)";
Text[ swedish ] = "Hexadecimalt tal (som text)";
Text[ polish ] = "Liczba szesnastkowa (w postaci tekstu).";
Text[ portuguese_brazilian ] = "number";
Text[ japanese ] = "16進数(文字列として)";
- Text[ korean ] = "수";
+ Text[ korean ] = "16진수(문자열로)";
Text[ chinese_simplified ] = "一个当作文字的十六进制数字";
Text[ chinese_traditional ] = "為一個當作文字的十六進位數字。";
Text[ turkish ] = "number";
@@ -4117,12 +4117,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "places";
Text[ russian ] = "";
Text[ greek ] = "places";
- Text[ dutch ] = "places";
+ Text[ dutch ] = "Decimalen";
Text[ french ] = "Chiffres";
Text[ spanish ] = "Cifras";
Text[ finnish ] = "Desimaalit";
Text[ italian ] = "Cifre";
- Text[ danish ] = "places";
+ Text[ danish ] = "Cifre";
Text[ swedish ] = "Antal siffror";
Text[ polish ] = "Miejsca";
Text[ portuguese_brazilian ] = "places";
@@ -4145,12 +4145,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "places";
Text[ russian ] = " .";
Text[ greek ] = "places";
- Text[ dutch ] = "places";
+ Text[ dutch ] = "Aantal gebruikte decimalen.";
Text[ french ] = "Nombre de chiffres utiliser.";
Text[ spanish ] = "Cantidad de cifras usadas.";
Text[ finnish ] = "Desimaalien mr";
Text[ italian ] = "Numero dei caratteri da usare.";
- Text[ danish ] = "places";
+ Text[ danish ] = "Antal anvendte cifre.";
Text[ swedish ] = "Antal anvnda siffror.";
Text[ polish ] = "Liczba znakw dla wartoci wynikowej.";
Text[ portuguese_brazilian ] = "places";
@@ -4176,17 +4176,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Converts a hexadecimal number to decimal";
Text[ russian ] = " .";
Text[ greek ] = "Converts a hexadecimal number to decimal";
- Text[ dutch ] = "Converts a hexadecimal number to decimal";
+ Text[ dutch ] = "Converteert een hexadecimaal getal naar een decimaal getal.";
Text[ french ] = "Convertit un nombre hexadcimal en nombre dcimal.";
Text[ spanish ] = "Convierte un nmero hexadecimal en uno decimal.";
Text[ finnish ] = "Muuntaa heksadesimaaliluvun desimaaliluvuksi";
Text[ italian ] = "Converte un numero esadecimale in un decimale.";
- Text[ danish ] = "Converts a hexadecimal number to decimal";
+ Text[ danish ] = "Konverterer et heksadecimaltal til et decimaltal.";
Text[ swedish ] = "Omvandlar ett hexadecimalt tal till ett decimalt.";
Text[ polish ] = "Przeksztaca liczb szesnastkow na dziesitn.";
Text[ portuguese_brazilian ] = "Converts a hexadecimal number to decimal";
Text[ japanese ] = "16進数を10進数に変換します。";
- Text[ korean ] = "16진수를 10진수로 변환합니다";
+ Text[ korean ] = "16진수를 10진수로 변환합니다.";
Text[ chinese_simplified ] = "将一个十六进制数字转换成十进制数字。";
Text[ chinese_traditional ] = "將一個十六進位數字轉換為十進位數字。";
Text[ turkish ] = "Converts a hexadecimal number to decimal";
@@ -4209,7 +4209,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Nmero";
Text[ finnish ] = "Luku";
Text[ italian ] = "Numero";
- Text[ danish ] = "number";
+ Text[ danish ] = "Tal";
Text[ swedish ] = "Tal";
Text[ polish ] = "Liczba";
Text[ portuguese_brazilian ] = "number";
@@ -4232,17 +4232,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "number";
Text[ russian ] = " ( ).";
Text[ greek ] = "number";
- Text[ dutch ] = "number";
+ Text[ dutch ] = "Hexadecimaal getal (als tekst)";
Text[ french ] = "Nombre hexadcimal (texte)";
Text[ spanish ] = "Nmero hexadecimal (como texto)";
Text[ finnish ] = "Muunnettava heksadesimaaliluku (tekstimuodossa)";
Text[ italian ] = "Numero esadecimale (testo)";
- Text[ danish ] = "number";
+ Text[ danish ] = "Heksadecimaltal (som tekst)";
Text[ swedish ] = "Hexadecimalt tal (som text)";
Text[ polish ] = "Liczba szesnastkowa (w postaci tekstu).";
Text[ portuguese_brazilian ] = "number";
Text[ japanese ] = "16進数(文字列として)";
- Text[ korean ] = "수";
+ Text[ korean ] = "16진수(문자열로)";
Text[ chinese_simplified ] = "一个当作文字的十六进制数字。";
Text[ chinese_traditional ] = "為一個當作文字的十六進位數字。";
Text[ turkish ] = "number";
@@ -4263,17 +4263,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Converts a hexadecimal number to octal";
Text[ russian ] = " .";
Text[ greek ] = "Converts a hexadecimal number to octal";
- Text[ dutch ] = "Converts a hexadecimal number to octal";
+ Text[ dutch ] = "Converteert een hexadecimaal getal naar een getal uit het achttallig stelsel.";
Text[ french ] = "Convertit un nombre hexadcimal en nombre octal.";
Text[ spanish ] = "Convierte un nmero hexadecimal en uno octal.";
Text[ finnish ] = "Muuntaa heksadesimaaliluvun oktaaliluvuksi";
Text[ italian ] = "Converte un numero esadecimale in un ottale.";
- Text[ danish ] = "Converts a hexadecimal number to octal";
+ Text[ danish ] = "Konverterer et heksadecimaltal til et oktaltal.";
Text[ swedish ] = "Omvandlar ett hexadecimalt tal till ett oktalt.";
Text[ polish ] = "Zamienia liczb szesnastkow na liczb w kodzie semkowym.";
Text[ portuguese_brazilian ] = "Converts a hexadecimal number to octal";
Text[ japanese ] = "16進数を8進数に変換します。";
- Text[ korean ] = "16진수를 8진수로 변환합니다";
+ Text[ korean ] = "16진수를 8진수로 변환합니다.";
Text[ chinese_simplified ] = "将一个十六进制数字转换成八进制数字。";
Text[ chinese_traditional ] = "將一個十六進位數字轉換成八進位數字。";
Text[ turkish ] = "Converts a hexadecimal number to octal";
@@ -4291,12 +4291,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "number";
Text[ russian ] = "";
Text[ greek ] = "number";
- Text[ dutch ] = "number";
+ Text[ dutch ] = "Getal";
Text[ french ] = "Nombre";
Text[ spanish ] = "Nmero";
Text[ finnish ] = "Luku";
Text[ italian ] = "Numero";
- Text[ danish ] = "number";
+ Text[ danish ] = "Tal";
Text[ swedish ] = "Tal";
Text[ polish ] = "Liczba";
Text[ portuguese_brazilian ] = "number";
@@ -4319,17 +4319,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "number";
Text[ russian ] = " ( ).";
Text[ greek ] = "number";
- Text[ dutch ] = "number";
+ Text[ dutch ] = "Hexadecimaal getal (als tekst)";
Text[ french ] = "Nombre hexadcimal (texte)";
Text[ spanish ] = "Nmero hexadecimal (como texto)";
Text[ finnish ] = "Muunnettava heksadesimaaliluku (tekstimuodossa)";
Text[ italian ] = "Numero esadecimale (testo)";
- Text[ danish ] = "number";
+ Text[ danish ] = "Heksadecimaltal (som tekst)";
Text[ swedish ] = "Hexadecimalt tal (som text)";
Text[ polish ] = "Liczba szesnastkowa (w postaci tekstu).";
Text[ portuguese_brazilian ] = "number";
Text[ japanese ] = "16進数(文字列として)";
- Text[ korean ] = "수";
+ Text[ korean ] = "16진수(문자열로)";
Text[ chinese_simplified ] = "一个当作文字的十六进制数字。";
Text[ chinese_traditional ] = "為一個當作文字的十六進位數字。";
Text[ turkish ] = "number";
@@ -4347,12 +4347,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "places";
Text[ russian ] = "";
Text[ greek ] = "places";
- Text[ dutch ] = "places";
+ Text[ dutch ] = "Decimalen";
Text[ french ] = "Chiffres";
Text[ spanish ] = "Cifras";
Text[ finnish ] = "Desimaalit";
Text[ italian ] = "Cifre";
- Text[ danish ] = "places";
+ Text[ danish ] = "Cifre";
Text[ swedish ] = "Antal siffror";
Text[ polish ] = "Miejsca";
Text[ portuguese_brazilian ] = "places";
@@ -4375,12 +4375,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "places";
Text[ russian ] = " .";
Text[ greek ] = "places";
- Text[ dutch ] = "places";
+ Text[ dutch ] = "Aantal gebruikte decimalen.";
Text[ french ] = "Nombre de chiffres utiliser.";
Text[ spanish ] = "Cantidad de cifras usadas.";
Text[ finnish ] = "Desimaalien mr";
Text[ italian ] = "Numero dei caratteri da usare.";
- Text[ danish ] = "places";
+ Text[ danish ] = "Antal anvendte cifre.";
Text[ swedish ] = "Antal anvnda siffror.";
Text[ polish ] = "Liczba znakw dla wartoci wynikowej.";
Text[ portuguese_brazilian ] = "places";
@@ -4406,12 +4406,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Tests wether two numbers are equal";
Text[ russian ] = " .";
Text[ greek ] = "Tests wether two numbers are equal";
- Text[ dutch ] = "Tests wether two numbers are equal";
+ Text[ dutch ] = "Controleert of twee waarden gelijk zijn.";
Text[ french ] = "Vrifie l'galit de deux valeurs.";
Text[ spanish ] = "Comprueba si dos valores son iguales.";
Text[ finnish ] = "Testaa kahden arvon yhtsuuruuden";
Text[ italian ] = "Verifica se due valori sono uguali.";
- Text[ danish ] = "Tests wether two numbers are equal";
+ Text[ danish ] = "Kontrollerer, om to vrdier er ens.";
Text[ swedish ] = "Kontrollerar om tv vrden r lika.";
Text[ polish ] = "Sprawdza, czy dwie liczby s rwne.";
Text[ portuguese_brazilian ] = "Tests wether two numbers are equal";
@@ -4434,12 +4434,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "number 1";
Text[ russian ] = " 1";
Text[ greek ] = "number 1";
- Text[ dutch ] = "number 1";
+ Text[ dutch ] = "Getal 1";
Text[ french ] = "Nombre 1";
Text[ spanish ] = "Nmero 1";
Text[ finnish ] = "Luku 1";
Text[ italian ] = "Numero 1";
- Text[ danish ] = "number 1";
+ Text[ danish ] = "Tal 1";
Text[ swedish ] = "Tal 1";
Text[ polish ] = "Liczba 1";
Text[ portuguese_brazilian ] = "number 1";
@@ -4467,12 +4467,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Primer nmero";
Text[ finnish ] = "Ensimminen luku";
Text[ italian ] = "Il primo numero.";
- Text[ danish ] = "number 1";
+ Text[ danish ] = "Frste tal";
Text[ swedish ] = "Frsta talet";
Text[ polish ] = "Pierwsza liczba.";
Text[ portuguese_brazilian ] = "number 1";
Text[ japanese ] = "一方の数値";
- Text[ korean ] = "수 1";
+ Text[ korean ] = "첫번째 수";
Text[ chinese_simplified ] = "第一个数值";
Text[ chinese_traditional ] = "第一個數值";
Text[ turkish ] = "number 1";
@@ -4495,7 +4495,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Nmero 2";
Text[ finnish ] = "Luku 2";
Text[ italian ] = "Numero 2";
- Text[ danish ] = "number 2";
+ Text[ danish ] = "Tal 2";
Text[ swedish ] = "Tal 2";
Text[ polish ] = "Liczba 2";
Text[ portuguese_brazilian ] = "number 2";
@@ -4523,12 +4523,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Segundo nmero";
Text[ finnish ] = "Toinen luku";
Text[ italian ] = "Il secondo numero.";
- Text[ danish ] = "number 2";
+ Text[ danish ] = "Andet tal";
Text[ swedish ] = "Andra talet";
Text[ polish ] = "Druga liczba.";
Text[ portuguese_brazilian ] = "number 2";
Text[ japanese ] = "もう一方の数値";
- Text[ korean ] = "수 2";
+ Text[ korean ] = "두번째 숫자";
Text[ chinese_simplified ] = "第二个数值";
Text[ chinese_traditional ] = "第二個數值";
Text[ turkish ] = "number 2";
@@ -4549,12 +4549,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Returns the error function";
Text[ russian ] = " .";
Text[ greek ] = "Returns the error function";
- Text[ dutch ] = "Returns the error function";
+ Text[ dutch ] = "Geeft de Gauss-foutfunctie.";
Text[ french ] = "Renvoie la fonction d'erreur.";
Text[ spanish ] = "Devuelve el resultado de la funcin de error de Gauss.";
Text[ finnish ] = "Palauttaa virhefunktion";
Text[ italian ] = "Restituisce la funzione di errore.";
- Text[ danish ] = "Returns the error function";
+ Text[ danish ] = "Returnerer den gaussiske fejlfunktion.";
Text[ swedish ] = "Returnerar felfunktionen.";
Text[ polish ] = "Zwraca funkcj bdu.";
Text[ portuguese_brazilian ] = "Returns the error function";
@@ -4575,14 +4575,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Lower limit";
Text[ portuguese ] = "lower limit";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "lower limit";
Text[ dutch ] = "onderste grens";
Text[ french ] = "Limite infrieure";
Text[ spanish ] = "Lmite inferior";
Text[ finnish ] = "Alaraja";
Text[ italian ] = "Limite inferiore";
- Text[ danish ] = "lower limit";
+ Text[ danish ] = "Nederste grnse";
Text[ swedish ] = "Undre grns";
Text[ polish ] = "Dolna granica";
Text[ portuguese_brazilian ] = "lower limit";
@@ -4610,7 +4610,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "lmite inferior de la integracin";
Text[ finnish ] = "Integroinnin alaraja";
Text[ italian ] = "Limite inferiore di integrazione.";
- Text[ danish ] = "lower limit";
+ Text[ danish ] = "Nederste grnse til integration.";
Text[ swedish ] = "Undre grns fr integration.";
Text[ polish ] = "Dolne ograniczenie przy wyznaczaniu ERF.";
Text[ portuguese_brazilian ] = "lower limit";
@@ -4631,14 +4631,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Upper limit";
Text[ portuguese ] = "upper limit";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "upper limit";
Text[ dutch ] = "bovenste grens";
Text[ french ] = "Limite suprieure";
Text[ spanish ] = "Lmite superior";
Text[ finnish ] = "Ylraja";
Text[ italian ] = "Limite superiore";
- Text[ danish ] = "upper limit";
+ Text[ danish ] = "verste grnse";
Text[ swedish ] = "vre grns";
Text[ polish ] = "Grna granica";
Text[ portuguese_brazilian ] = "upper limit";
@@ -4666,7 +4666,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Lmite superior de la integracin.";
Text[ finnish ] = "Integroinnin ylraja";
Text[ italian ] = "Limite superiore di integrazione.";
- Text[ danish ] = "upper limit";
+ Text[ danish ] = "verste grnse til integration.";
Text[ swedish ] = "vre grns fr integration.";
Text[ polish ] = "Grne ograniczenie przy wyznaczaniu ERF.";
Text[ portuguese_brazilian ] = "upper limit";
@@ -4692,12 +4692,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Returns the complementary error function";
Text[ russian ] = " .";
Text[ greek ] = "Returns the complementary error function";
- Text[ dutch ] = "Returns the complementary error function";
+ Text[ dutch ] = "Geeft de complementaire Gauss-foutfunctie.";
Text[ french ] = "Renvoie la fonction d'erreur complmentaire.";
Text[ spanish ] = "Devuelve el resultado complementario de la funcin FUN.ERROR.";
Text[ finnish ] = "Palauttaa komplementrisen virhefunktion";
Text[ italian ] = "Restituisce la funzione di errore complementare.";
- Text[ danish ] = "Returns the complementary error function";
+ Text[ danish ] = "Returnerer komplementet til den gaussiske fejlfunktion.";
Text[ swedish ] = "Returnerar den komplementra felfunktionen.";
Text[ polish ] = "Zwraca kompletn funkcj bdu.";
Text[ portuguese_brazilian ] = "Returns the complementary error function";
@@ -4718,14 +4718,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Lower limit";
Text[ portuguese ] = "Limite inferior";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "lower limit";
Text[ dutch ] = "onderste grens";
Text[ french ] = "Limite infrieure";
Text[ spanish ] = "Lmite inferior";
Text[ finnish ] = "Alaraja";
Text[ italian ] = "Limite inferiore";
- Text[ danish ] = "lower limit";
+ Text[ danish ] = "Nederste grnse";
Text[ swedish ] = "Undre grns";
Text[ polish ] = "Dolna granica";
Text[ portuguese_brazilian ] = "lower limit";
@@ -4748,12 +4748,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = " o limite inferior para a integrao.";
Text[ russian ] = " .";
Text[ greek ] = "lower limit";
- Text[ dutch ] = "lower limit";
+ Text[ dutch ] = "Ondergrens voor integratie.";
Text[ french ] = "Limite infrieure pour l'intgration.";
Text[ spanish ] = "Lmite inferior de la integral.";
Text[ finnish ] = "Integroinnin alaraja";
Text[ italian ] = "Limite inferiore di integrazione.";
- Text[ danish ] = "lower limit";
+ Text[ danish ] = "Nederste grnse til integration.";
Text[ swedish ] = "Undre grns fr integration.";
Text[ polish ] = "Dolne ograniczenie przy wyznaczaniu ERF.";
Text[ portuguese_brazilian ] = "lower limit";
@@ -4779,12 +4779,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Verifica se um nmero superior a um valor limite.";
Text[ russian ] = ", .";
Text[ greek ] = "Tests wether a number is greater than a threshold value";
- Text[ dutch ] = "Tests wether a number is greater than a threshold value";
+ Text[ dutch ] = "Controleert of een getal groter is dan een drempelwaarde.";
Text[ french ] = "Vrifie si un nombre est suprieur une valeur de seuil.";
Text[ spanish ] = "Comprueba sin un nmero es mayor que el valor umbral.";
Text[ finnish ] = "Testaa onko arvo raja-arvoa suurempi";
Text[ italian ] = "Verifica se un numero maggiore del valore di soglia.";
- Text[ danish ] = "Tests wether a number is greater than a threshold value";
+ Text[ danish ] = "Kontrollerer, om et tal er strre end en trskelvrdi.";
Text[ swedish ] = "Kontrollerar om ett tal r strre n ett trskelvrde.";
Text[ polish ] = "Sprawdza, czy liczba jest wiksza ni podana warto progowa.";
Text[ portuguese_brazilian ] = "Tests wether a number is greater than a threshold value";
@@ -4794,7 +4794,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "測試數字是否大於臨界值。";
Text[ turkish ] = "Tests wether a number is greater than a threshold value";
Text[ arabic ] = "Tests wether a number is greater than a threshold value";
- Text[ catalan ] = "Comprova si un nombre s ms gran que el valor del llindar";
+ Text[ catalan ] = "Comprova si un nombre s ms gran que un valor llindar";
Text[ thai ] = "ทดสอบว่าตัวเลขมากกว่าค่าเริ่มต้นหรือไม่";
};
@@ -4807,12 +4807,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Nmero";
Text[ russian ] = "";
Text[ greek ] = "number";
- Text[ dutch ] = "number";
+ Text[ dutch ] = "Getal";
Text[ french ] = "Nombre";
Text[ spanish ] = "Nmero";
Text[ finnish ] = "Luku";
Text[ italian ] = "Numero";
- Text[ danish ] = "number";
+ Text[ danish ] = "Tal";
Text[ swedish ] = "Tal";
Text[ polish ] = "Liczba";
Text[ portuguese_brazilian ] = "number";
@@ -4835,12 +4835,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = " o valor a comparar com o valor limite.";
Text[ russian ] = " , .";
Text[ greek ] = "number";
- Text[ dutch ] = "number";
+ Text[ dutch ] = "Waarde die u op basis van de drempelwaarde wilt controleren.";
Text[ french ] = "Valeur comparer avec la valeur de seuil.";
Text[ spanish ] = "Valor a comprobar con el valor umbral.";
Text[ finnish ] = "Testattava arvo";
Text[ italian ] = "Valore da confrontare con il valore di soglia.";
- Text[ danish ] = "number";
+ Text[ danish ] = "Vrdi, som skal kontrolleres i forhold til trskelvrdi.";
Text[ swedish ] = "Vrde som ska kontrolleras mot trskelvrde.";
Text[ polish ] = "Sprawdzana warto w stosunku do wartoci progowej.";
Text[ portuguese_brazilian ] = "number";
@@ -4861,14 +4861,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Step";
Text[ portuguese ] = "Valor limite";
- Text[ russian ] = "";
+ Text[ russian ] = "";
Text[ greek ] = "";
- Text[ dutch ] = "Stap";
+ Text[ dutch ] = "Drempelwaarde";
Text[ french ] = "Seuil";
Text[ spanish ] = "Valor umbral";
Text[ finnish ] = "Raja";
Text[ italian ] = "Valore soglia";
- Text[ danish ] = "step";
+ Text[ danish ] = "Trskelvrdi";
Text[ swedish ] = "Trskelvrde";
Text[ polish ] = "Prg";
Text[ portuguese_brazilian ] = "step";
@@ -4891,12 +4891,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Valor limite";
Text[ russian ] = " .";
Text[ greek ] = "";
- Text[ dutch ] = "Stap";
+ Text[ dutch ] = "Drempelwaarde";
Text[ french ] = "Seuil";
Text[ spanish ] = "Valor umbral";
Text[ finnish ] = "Raja-arvo";
Text[ italian ] = "Valore soglia";
- Text[ danish ] = "step";
+ Text[ danish ] = "Trskelvrdi";
Text[ swedish ] = "Trskelvrde";
Text[ polish ] = "Warto progowa.";
Text[ portuguese_brazilian ] = "step";
@@ -4920,14 +4920,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Returns the double factorial of Number";
Text[ portuguese ] = "Devolve o factorial duplo de um nmero.";
- Text[ russian ] = " .";
+ Text[ russian ] = " 2.";
Text[ greek ] = "Returns the double factorial of a number";
- Text[ dutch ] = "Returns the double factorial of a number";
+ Text[ dutch ] = "Geeft de dubbele faculteit van een getal.";
Text[ french ] = "Renvoie la factorielle double d'un nombre.";
Text[ spanish ] = "Devuelve el doble factorial de un nmero.";
Text[ finnish ] = "Palauttaa luvun kaksoiskertoimen.";
Text[ italian ] = "Restituisce il fattoriale doppio di un numero.";
- Text[ danish ] = "Returns the double factorial of a number";
+ Text[ danish ] = "Returnerer det dobbelte fakultet for et tal.";
Text[ swedish ] = "Returnerar dubbelfakulteten fr ett tal.";
Text[ polish ] = "Zwraca dwukrotn silni liczby.";
Text[ portuguese_brazilian ] = "Returns the double factorial of a number";
@@ -4950,12 +4950,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Nmero";
Text[ russian ] = "";
Text[ greek ] = "number";
- Text[ dutch ] = "number";
+ Text[ dutch ] = "Getal";
Text[ french ] = "Nombre";
Text[ spanish ] = "Nmero";
Text[ finnish ] = "Luku";
Text[ italian ] = "Numero";
- Text[ danish ] = "number";
+ Text[ danish ] = "Tal";
Text[ swedish ] = "Tal";
Text[ polish ] = "Liczba";
Text[ portuguese_brazilian ] = "number";
@@ -4976,14 +4976,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The number";
Text[ portuguese ] = "Nmero";
- Text[ russian ] = ", .";
+ Text[ russian ] = ".";
Text[ greek ] = "number";
- Text[ dutch ] = "number";
+ Text[ dutch ] = "Getal";
Text[ french ] = "Nombre";
Text[ spanish ] = "Nmero";
Text[ finnish ] = "Luku, jonka kaksoiskerroin palautetaan";
Text[ italian ] = "Numero";
- Text[ danish ] = "number";
+ Text[ danish ] = "Tal";
Text[ swedish ] = "Tal";
Text[ polish ] = "Warto, dla ktrej ma zosta obliczona dwukrotna silnia.";
Text[ portuguese_brazilian ] = "number";
@@ -5007,14 +5007,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Returns the absolute value (modulus) of a complex number";
Text[ portuguese ] = "Devolve o valor absoluto (mdulo) de um nmero complexo.";
- Text[ russian ] = " () .";
+ Text[ russian ] = " () .";
Text[ greek ] = "Returns the absolute value (modulus) of a complex number";
- Text[ dutch ] = "Returns the absolute value (modulus) of a complex number";
+ Text[ dutch ] = "Geeft de waarde van een complex getal.";
Text[ french ] = "Renvoie le module d'un nombre complexe.";
Text[ spanish ] = "Devuelve el valor de un nmero complejo.";
Text[ finnish ] = "Palauttaa kompleksiluvun itseisarvon (mod)";
Text[ italian ] = "Restituisce il valore assoluto (modulo) di un numero complesso.";
- Text[ danish ] = "Returns the absolute value (modulus) of a complex number";
+ Text[ danish ] = "Returnerer vrdien for et komplekst tal.";
Text[ swedish ] = "Returnerar absolutvrdet av ett komplext tal.";
Text[ polish ] = "Podaje warto bezwzgldn (modu) liczby zespolonej.";
Text[ portuguese_brazilian ] = "Returns the absolute value (modulus) of a complex number";
@@ -5035,14 +5035,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Complex number";
Text[ portuguese ] = "Nmero complexo";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "inumber";
- Text[ dutch ] = "inumber";
+ Text[ dutch ] = "Complex getal";
Text[ french ] = "Nombre complexe";
Text[ spanish ] = "Nmero complejo";
- Text[ finnish ] = "Kluku";
+ Text[ finnish ] = "Kompleksiluku";
Text[ italian ] = "Numero complesso";
- Text[ danish ] = "inumber";
+ Text[ danish ] = "Komplekst tal";
Text[ swedish ] = "Komplext tal";
Text[ polish ] = "Liczba zesp.";
Text[ portuguese_brazilian ] = "inumber";
@@ -5063,14 +5063,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The complex number";
Text[ portuguese ] = "Nmero complexo";
- Text[ russian ] = " , .";
+ Text[ russian ] = " .";
Text[ greek ] = "inumber";
- Text[ dutch ] = "inumber";
+ Text[ dutch ] = "Complex getal";
Text[ french ] = "Nombre complexe";
Text[ spanish ] = "Nmero complejo";
Text[ finnish ] = "Kompleksiluku";
Text[ italian ] = "Numero complesso";
- Text[ danish ] = "inumber";
+ Text[ danish ] = "Komplekst tal";
Text[ swedish ] = "Komplext tal";
Text[ polish ] = "Liczba zespolona.";
Text[ portuguese_brazilian ] = "inumber";
@@ -5096,12 +5096,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Devolve o coeficiente imaginrio de um nmero complexo.";
Text[ russian ] = " .";
Text[ greek ] = "Returns the imaginary coefficient of a complex number";
- Text[ dutch ] = "Returns the imaginary coefficient of a complex number";
+ Text[ dutch ] = "Geeft het imaginaire gedeelte van een complex getal.";
Text[ french ] = "Renvoie le coefficient imaginaire d'un nombre complexe.";
Text[ spanish ] = "Devuelve el coeficiente de la parte imaginaria de un nmero complejo.";
- Text[ finnish ] = "Palauttaa kompleksiluvun imaginrikertoimen";
+ Text[ finnish ] = "Palauttaa kompleksiluvun imaginaarikertoimen";
Text[ italian ] = "Restituisce il coefficiente dell'immaginario di un numero complesso.";
- Text[ danish ] = "Returns the imaginary coefficient of a complex number";
+ Text[ danish ] = "Returnerer den imaginre enhed for et komplekst tal.";
Text[ swedish ] = "Returnerar den imaginra koefficienten av ett komplext tal.";
Text[ polish ] = "Podaje cz urojon liczby zespolonej.";
Text[ portuguese_brazilian ] = "Returns the imaginary coefficient of a complex number";
@@ -5122,14 +5122,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Complex number";
Text[ portuguese ] = "Nmero complexo";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "inumber";
- Text[ dutch ] = "inumber";
+ Text[ dutch ] = "Complex getal";
Text[ french ] = "Nombre complexe";
Text[ spanish ] = "Nmero complejo";
- Text[ finnish ] = "Kluku";
+ Text[ finnish ] = "Kompleksiluku";
Text[ italian ] = "Numero complesso";
- Text[ danish ] = "inumber";
+ Text[ danish ] = "Komplekst tal";
Text[ swedish ] = "Komplext tal";
Text[ polish ] = "Liczba zesp.";
Text[ portuguese_brazilian ] = "inumber";
@@ -5150,14 +5150,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The complex number";
Text[ portuguese ] = "Nmero complexo";
- Text[ russian ] = " , .";
+ Text[ russian ] = " .";
Text[ greek ] = "inumber";
- Text[ dutch ] = "inumber";
+ Text[ dutch ] = "Complex getal";
Text[ french ] = "Nombre complexe";
Text[ spanish ] = "Nmero complejo";
Text[ finnish ] = "Kompleksiluku";
Text[ italian ] = "Numero complesso";
- Text[ danish ] = "inumber";
+ Text[ danish ] = "Komplekst tal";
Text[ swedish ] = "Komplext tal";
Text[ polish ] = "Liczba zespolona.";
Text[ portuguese_brazilian ] = "inumber";
@@ -5181,14 +5181,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Returns a complex number raised to an integer power";
Text[ portuguese ] = "Devolve um nmero complexo elevado a uma potncia inteira.";
- Text[ russian ] = " .";
+ Text[ russian ] = " .";
Text[ greek ] = "Returns a complex number raised by a real number";
- Text[ dutch ] = "Returns a complex number raised by a real number";
+ Text[ dutch ] = "Verheft een complex getal met een geheel getal tot een bepaalde macht.";
Text[ french ] = "Renvoie un nombre complexe lev une puissance entire.";
Text[ spanish ] = "Resultado de un nmero complejo elevado a una potencia.";
- Text[ finnish ] = "Palauttaa potenssiin (kokonaisluku) korotetun kompleksiluvun";
+ Text[ finnish ] = "Palauttaa kokonaislukupotenssiin korotetun kompleksiluvun";
Text[ italian ] = "Restituisce un numero complesso elevato ad una potenza intera.";
- Text[ danish ] = "Returns a complex number raised by a real number";
+ Text[ danish ] = "Oplfter et komplekst tal i et helt tals potens.";
Text[ swedish ] = "Returnerar ett komplext tal upphjt med ett heltal.";
Text[ polish ] = "Podaje warto liczby zespolonej podniesionej do potgi cakowitej.";
Text[ portuguese_brazilian ] = "Returns a complex number raised by a real number";
@@ -5209,14 +5209,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Complex number";
Text[ portuguese ] = "Nmero complexo";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "inumber";
- Text[ dutch ] = "inumber";
+ Text[ dutch ] = "Complex getal";
Text[ french ] = "Nombre complexe";
Text[ spanish ] = "Nmero complejo";
- Text[ finnish ] = "Kluku";
+ Text[ finnish ] = "Kompleksiluku";
Text[ italian ] = "Numero complesso";
- Text[ danish ] = "inumber";
+ Text[ danish ] = "Komplekst tal";
Text[ swedish ] = "Komplext tal";
Text[ polish ] = "Liczba zesp.";
Text[ portuguese_brazilian ] = "inumber";
@@ -5237,14 +5237,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The complex number";
Text[ portuguese ] = "Nmero complexo";
- Text[ russian ] = " , .";
+ Text[ russian ] = " .";
Text[ greek ] = "inumber";
- Text[ dutch ] = "inumber";
+ Text[ dutch ] = "Complex getal";
Text[ french ] = "Nombre complexe";
Text[ spanish ] = "Nmero complejo";
Text[ finnish ] = "Kompleksiluku";
Text[ italian ] = "Numero complesso";
- Text[ danish ] = "inumber";
+ Text[ danish ] = "Komplekst tal";
Text[ swedish ] = "Komplext tal";
Text[ polish ] = "Liczba zespolona.";
Text[ portuguese_brazilian ] = "inumber";
@@ -5267,17 +5267,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Potncia";
Text[ russian ] = "";
Text[ greek ] = "number";
- Text[ dutch ] = "number";
+ Text[ dutch ] = "Macht";
Text[ french ] = "Puissance";
Text[ spanish ] = "Potencia";
Text[ finnish ] = "Luku";
Text[ italian ] = "Potenza";
- Text[ danish ] = "number";
+ Text[ danish ] = "Potens";
Text[ swedish ] = "Potens";
Text[ polish ] = "Liczba";
Text[ portuguese_brazilian ] = "number";
Text[ japanese ] = "べき乗指数";
- Text[ korean ] = "수";
+ Text[ korean ] = "지수";
Text[ chinese_simplified ] = "number";
Text[ chinese_traditional ] = "number";
Text[ turkish ] = "number";
@@ -5295,12 +5295,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = " o expoente ao qual o nmero complexo elevado.";
Text[ russian ] = ", .";
Text[ greek ] = "number";
- Text[ dutch ] = "number";
+ Text[ dutch ] = "Exponent waarmee het complexe getal tot een bepaalde macht wordt verheven.";
Text[ french ] = "Puissance laquelle lever le nombre complexe.";
Text[ spanish ] = "Exponente con el que se potenciar el nmero complejo.";
Text[ finnish ] = "Potenssi, johon kompleksiluku korotetaan";
Text[ italian ] = "Esponente al quale si vuole elevare il numero complesso.";
- Text[ danish ] = "number";
+ Text[ danish ] = "Eksponent, i hvis potens det komplekse tal skal oplftes.";
Text[ swedish ] = "Exponent som det komplexa talet upphjs med.";
Text[ polish ] = "wykadnik potgi, do ktrej podniesiona zostanie liczba zespolona";
Text[ portuguese_brazilian ] = "number";
@@ -5326,12 +5326,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Devolve o argumento teta, um ngulo expresso em radianos.";
Text[ russian ] = " , .. , .";
Text[ greek ] = "Returns the argument q, an angle expressed in radians";
- Text[ dutch ] = "Returns the argument q, an angle expressed in radians";
+ Text[ dutch ] = "Geeft de hoek in radialen waarmee het complexe getal trigonometrisch wordt weergegeven.";
Text[ french ] = "Renvoie l'argument thta d'un nombre complexe, un angle exprim en radians.";
Text[ spanish ] = "Devuelve el ngulo en radianes para la representacin trigonomtrica de un nmero complejo.";
Text[ finnish ] = "Palauttaa q-argumentin, kulman radiaaneina";
Text[ italian ] = "Restituisce l'angolo espresso in radianti per la rappresentazione trigonometrica del numero complesso.";
- Text[ danish ] = "Returns the argument q, an angle expressed in radians";
+ Text[ danish ] = "Returnerer vinklen i radianer til visning af det komplekse tal med trigonometrisk skrivemde.";
Text[ swedish ] = "Returnerar en vinkel uttryckt i radianer fr visning av ett komplext tal med trigonometriskt skrivstt.";
Text[ polish ] = "Podaje warto argumentu liczby zespolonej, kta wyraonego w radianach.";
Text[ portuguese_brazilian ] = "Returns the argument q, an angle expressed in radians";
@@ -5352,14 +5352,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Complex number";
Text[ portuguese ] = "Nmero complexo";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "inumber";
- Text[ dutch ] = "inumber";
+ Text[ dutch ] = "Complex getal";
Text[ french ] = "Nombre complexe";
Text[ spanish ] = "Nmero complejo";
- Text[ finnish ] = "Kluku";
+ Text[ finnish ] = "Kompleksiluku";
Text[ italian ] = "Numero complesso";
- Text[ danish ] = "inumber";
+ Text[ danish ] = "Komplekst tal";
Text[ swedish ] = "Komplext tal";
Text[ polish ] = "Liczba zesp.";
Text[ portuguese_brazilian ] = "inumber";
@@ -5380,14 +5380,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "A complex number";
Text[ portuguese ] = "Nmero complexo";
- Text[ russian ] = " , .";
+ Text[ russian ] = " .";
Text[ greek ] = "inumber";
- Text[ dutch ] = "inumber";
+ Text[ dutch ] = "Complex getal";
Text[ french ] = "Nombre complexe";
Text[ spanish ] = "Nmero complejo";
Text[ finnish ] = "Kompleksiluku";
Text[ italian ] = "Numero complesso";
- Text[ danish ] = "inumber";
+ Text[ danish ] = "Komplekst tal";
Text[ swedish ] = "Komplext tal";
Text[ polish ] = "Liczba zespolona.";
Text[ portuguese_brazilian ] = "inumber";
@@ -5413,12 +5413,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Devolve o coseno de um nmero complexo.";
Text[ russian ] = " .";
Text[ greek ] = "Returns the cosine of a complex number";
- Text[ dutch ] = "Returns the cosine of a complex number";
+ Text[ dutch ] = "Geeft de cosinus van een complex getal.";
Text[ french ] = "Renvoie le cosinus d'un nombre complexe.";
Text[ spanish ] = "Devuelve el coseno de un nmero complejo.";
Text[ finnish ] = "Palauttaa kompleksiluvun kosinin.";
Text[ italian ] = "Restituisce il coseno di un numero complesso.";
- Text[ danish ] = "Returns the cosine of a complex number";
+ Text[ danish ] = "Returnerer cosinus for et komplekst tal.";
Text[ swedish ] = "Returnerar cosinus av ett komplext tal.";
Text[ polish ] = "Podaje warto cosinusa liczby zespolonej.";
Text[ portuguese_brazilian ] = "Returns the cosine of a complex number";
@@ -5439,14 +5439,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Complex number";
Text[ portuguese ] = "Nmero complexo";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "inumber";
- Text[ dutch ] = "inumber";
+ Text[ dutch ] = "Complex getal";
Text[ french ] = "Nombre complexe";
Text[ spanish ] = "Nmero complejo";
- Text[ finnish ] = "Kluku";
+ Text[ finnish ] = "Kompleksiluku";
Text[ italian ] = "Numero complesso";
- Text[ danish ] = "inumber";
+ Text[ danish ] = "Komplekst tal";
Text[ swedish ] = "Komplext tal";
Text[ polish ] = "Liczba zesp.";
Text[ portuguese_brazilian ] = "inumber";
@@ -5467,14 +5467,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "A complex number";
Text[ portuguese ] = "Nmero complexo";
- Text[ russian ] = " , .";
+ Text[ russian ] = " .";
Text[ greek ] = "inumber";
- Text[ dutch ] = "inumber";
+ Text[ dutch ] = "Complex getal";
Text[ french ] = "Nombre complexe";
Text[ spanish ] = "Nmero complejo";
Text[ finnish ] = "Kompleksiluku";
Text[ italian ] = "Numero complesso";
- Text[ danish ] = "inumber";
+ Text[ danish ] = "Komplekst tal";
Text[ swedish ] = "Komplext tal";
Text[ polish ] = "Liczba zespolona.";
Text[ portuguese_brazilian ] = "inumber";
@@ -5500,12 +5500,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Devolve o quociente de dois nmeros complexos.";
Text[ russian ] = " .";
Text[ greek ] = "Returns the quotient of two complex numbers";
- Text[ dutch ] = "Returns the quotient of two complex numbers";
+ Text[ dutch ] = "Geeft het quotint van twee complexe getallen.";
Text[ french ] = "Renvoie le quotient de deux nombres complexes.";
Text[ spanish ] = "Devuelve el cociente de dos nmeros complejos.";
Text[ finnish ] = "Palauttaa kahden kompleksiluvun osamrn";
Text[ italian ] = "Restituisce il quoziente di due numeri complessi.";
- Text[ danish ] = "Returns the quotient of two complex numbers";
+ Text[ danish ] = "Returnerer kvotienten for to komplekse tal.";
Text[ swedish ] = "Returnerar kvoten av tv komplexa tal.";
Text[ polish ] = "Podaje iloraz dwch liczb zespolonych.";
Text[ portuguese_brazilian ] = "Returns the quotient of two complex numbers";
@@ -5526,14 +5526,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Numerator";
Text[ portuguese ] = "Numerador";
- Text[ russian ] = "_ 1";
+ Text[ russian ] = "";
Text[ greek ] = "inumber 1";
- Text[ dutch ] = "inumber 1";
+ Text[ dutch ] = "Teller";
Text[ french ] = "Numrateur";
Text[ spanish ] = "Numerador";
- Text[ finnish ] = "Kluku 1";
+ Text[ finnish ] = "Osoittaja";
Text[ italian ] = "Numeratore";
- Text[ danish ] = "inumber 1";
+ Text[ danish ] = "Tller";
Text[ swedish ] = "Tljare";
Text[ polish ] = "Liczba zesp. 1";
Text[ portuguese_brazilian ] = "inumber 1";
@@ -5554,14 +5554,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The dividend";
Text[ portuguese ] = " o dividendo.";
- Text[ russian ] = " .";
+ Text[ russian ] = ".";
Text[ greek ] = "inumber 1";
- Text[ dutch ] = "inumber 1";
+ Text[ dutch ] = "Teller (deeltal)";
Text[ french ] = "Numrateur (dividende)";
Text[ spanish ] = "Numerador (dividendo)";
Text[ finnish ] = "Jaettava luku";
Text[ italian ] = "Numeratore (dividendo)";
- Text[ danish ] = "inumber 1";
+ Text[ danish ] = "Tller (dividend)";
Text[ swedish ] = "Tljare (dividend)";
Text[ polish ] = "Liczba zespolona stanowica dzieln.";
Text[ portuguese_brazilian ] = "inumber 1";
@@ -5582,19 +5582,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Denominator";
Text[ portuguese ] = "Denominador";
- Text[ russian ] = "_ 2";
+ Text[ russian ] = "";
Text[ greek ] = "inumber 2";
- Text[ dutch ] = "inumber 2";
+ Text[ dutch ] = "Noemer";
Text[ french ] = "Dnominateur";
Text[ spanish ] = "Denominador";
- Text[ finnish ] = "Kluku 2";
+ Text[ finnish ] = "Nimittj";
Text[ italian ] = "Denominatore";
- Text[ danish ] = "inumber 2";
+ Text[ danish ] = "Nvner";
Text[ swedish ] = "Nmnare";
Text[ polish ] = "Liczba zesp. 2";
Text[ portuguese_brazilian ] = "inumber 2";
Text[ japanese ] = "分母";
- Text[ korean ] = "복소수 2";
+ Text[ korean ] = "분모";
Text[ chinese_simplified ] = "inumber_2";
Text[ chinese_traditional ] = "inumber_2";
Text[ turkish ] = "inumber 2";
@@ -5610,19 +5610,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The divisor";
Text[ portuguese ] = " o divisor.";
- Text[ russian ] = " .";
+ Text[ russian ] = ".";
Text[ greek ] = "inumber 2";
- Text[ dutch ] = "inumber 2";
+ Text[ dutch ] = "Noemer(deler)";
Text[ french ] = "Dnominateur (diviseur)";
Text[ spanish ] = "Denominador (divisor)";
Text[ finnish ] = "Luku, jolla jaetaan";
Text[ italian ] = "Denominatore (divisore)";
- Text[ danish ] = "inumber 2";
+ Text[ danish ] = "Nvner (divisor)";
Text[ swedish ] = "Nmnare (divisor)";
Text[ polish ] = "Liczba zespolona stanowica dzielnik.";
Text[ portuguese_brazilian ] = "inumber 2";
Text[ japanese ] = "割り算の分母";
- Text[ korean ] = "복소수 2";
+ Text[ korean ] = "분모(제수)";
Text[ chinese_simplified ] = "分母";
Text[ chinese_traditional ] = "分母";
Text[ turkish ] = "inumber 2";
@@ -5641,14 +5641,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Returns the algebraic form of the exponential of a complex number";
Text[ portuguese ] = "Devolve o exponencial de um nmero complexo.";
- Text[ russian ] = " .";
+ Text[ russian ] = " .";
Text[ greek ] = "Returns the exponential of a complex number";
- Text[ dutch ] = "Returns the exponential of a complex number";
+ Text[ dutch ] = "Geeft de algebrasche vorm van een complex getal dat exponentieel wordt weergegeven.";
Text[ french ] = "Renvoie l'exponentielle d'un nombre complexe.";
Text[ spanish ] = "Devuelve la forma algebraica de un nmero complejo representado exponencialmente.";
- Text[ finnish ] = "Palauttaa kompleksiluvun eksponentin.";
+ Text[ finnish ] = "Palauttaa kompleksiluvun eksponentin";
Text[ italian ] = "Restituisce l'esponenziale di un numero complesso.";
- Text[ danish ] = "Returns the exponential of a complex number";
+ Text[ danish ] = "Returnerer den algebraiske form af en eksponentiel visning af det foreliggende komplekse tal.";
Text[ swedish ] = "Returnerar den algebraiska formen av ett komplext tal i exponentiell visning.";
Text[ polish ] = "Podaje warto wykadnicz liczby zespolonej.";
Text[ portuguese_brazilian ] = "Returns the exponential of a complex number";
@@ -5669,14 +5669,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Complex number";
Text[ portuguese ] = "Nmero complexo";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "inumber";
- Text[ dutch ] = "inumber";
+ Text[ dutch ] = "Complex getal";
Text[ french ] = "Nombre complexe";
Text[ spanish ] = "Nmero complejo";
- Text[ finnish ] = "Kluku";
+ Text[ finnish ] = "Kompleksiluku";
Text[ italian ] = "Numero complesso";
- Text[ danish ] = "inumber";
+ Text[ danish ] = "Komplekst tal";
Text[ swedish ] = "Komplext tal";
Text[ polish ] = "Liczba zesp.";
Text[ portuguese_brazilian ] = "inumber";
@@ -5697,14 +5697,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The complex number";
Text[ portuguese ] = "Nmero complexo";
- Text[ russian ] = " , .";
+ Text[ russian ] = " .";
Text[ greek ] = "inumber";
- Text[ dutch ] = "inumber";
+ Text[ dutch ] = "Complex getal";
Text[ french ] = "Nombre complexe";
Text[ spanish ] = "Nmero complejo";
Text[ finnish ] = "Kompleksiluku";
Text[ italian ] = "Numero complesso";
- Text[ danish ] = "inumber";
+ Text[ danish ] = "Komplekst tal";
Text[ swedish ] = "Komplext tal";
Text[ polish ] = "Liczba zespolona.";
Text[ portuguese_brazilian ] = "inumber";
@@ -5730,12 +5730,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Devolve o conjugado complexo de um nmero complexo.";
Text[ russian ] = " - .";
Text[ greek ] = "Returns the comlex conjugate of a complex number";
- Text[ dutch ] = "Returns the comlex conjugate of a complex number";
+ Text[ dutch ] = "Geeft de complexe conjugatie van een complex getal.";
Text[ french ] = "Renvoie le complexe conjugu d'un nombre complexe.";
Text[ spanish ] = "Devuelve la compleja conjugada de un nmero complejo.";
- Text[ finnish ] = "Palauttaa kompleksiluvun liittoluvun (konjugaatti)";
+ Text[ finnish ] = "Palauttaa kompleksiluvun liittoluvun eli konjugaatin";
Text[ italian ] = "Restituisce il complesso coniugato di un numero complesso.";
- Text[ danish ] = "Returns the comlex conjugate of a complex number";
+ Text[ danish ] = "Returnerer den komplekst konjugerede af et komplekst tal.";
Text[ swedish ] = "Returnerar det komplexa konjugatet till ett komplext tal.";
Text[ polish ] = "Podaje warto sprzon liczby zespolonej.";
Text[ portuguese_brazilian ] = "Returns the comlex conjugate of a complex number";
@@ -5756,14 +5756,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Complex number";
Text[ portuguese ] = "Nmero complexo";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "inumber";
- Text[ dutch ] = "inumber";
+ Text[ dutch ] = "Complex getal";
Text[ french ] = "Nombre complexe";
Text[ spanish ] = "Nmero complejo";
- Text[ finnish ] = "Kluku";
+ Text[ finnish ] = "Kompleksiluku";
Text[ italian ] = "Numero complesso";
- Text[ danish ] = "inumber";
+ Text[ danish ] = "Komplekst tal";
Text[ swedish ] = "Komplext tal";
Text[ polish ] = "Liczba zesp.";
Text[ portuguese_brazilian ] = "inumber";
@@ -5784,14 +5784,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The complex number";
Text[ portuguese ] = "Nmero complexo";
- Text[ russian ] = " , .";
+ Text[ russian ] = " .";
Text[ greek ] = "inumber";
- Text[ dutch ] = "inumber";
+ Text[ dutch ] = "Complex getal";
Text[ french ] = "Nombre complexe";
Text[ spanish ] = "Nmero complejo";
Text[ finnish ] = "Kompleksiluku";
Text[ italian ] = "Numero complesso";
- Text[ danish ] = "inumber";
+ Text[ danish ] = "Komplekst tal";
Text[ swedish ] = "Komplext tal";
Text[ polish ] = "Liczba zespolona.";
Text[ portuguese_brazilian ] = "inumber";
@@ -5817,12 +5817,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Devolve o logaritmo natural de um nmero complexo.";
Text[ russian ] = " .";
Text[ greek ] = "Returns the natural logarithm of a complex number";
- Text[ dutch ] = "Returns the natural logarithm of a complex number";
+ Text[ dutch ] = "Geeft de natuurlijke logaritme van een complex getal.";
Text[ french ] = "Renvoie le logarithme nprien d'un nombre complexe.";
Text[ spanish ] = "Devuelve el logaritmo natural de un nmero complejo.";
- Text[ finnish ] = "Palauttaa kompleksiluvun luonnollisen logaritmin.";
+ Text[ finnish ] = "Palauttaa kompleksiluvun luonnollisen logaritmin";
Text[ italian ] = "Restituisce il logaritmo naturale di un numero complesso.";
- Text[ danish ] = "Returns the natural logarithm of a complex number";
+ Text[ danish ] = "Returnerer den naturlige logaritme til et komplekst tal.";
Text[ swedish ] = "Returnerar den naturliga logaritmen av ett komplext tal.";
Text[ polish ] = "Podaje warto logarytmu naturalnego liczby zespolonej.";
Text[ portuguese_brazilian ] = "Returns the natural logarithm of a complex number";
@@ -5843,14 +5843,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Complex number";
Text[ portuguese ] = "Nmero complexo";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "inumber";
- Text[ dutch ] = "inumber";
+ Text[ dutch ] = "Complex getal";
Text[ french ] = "Nombre complexe";
Text[ spanish ] = "Nmero complejo";
- Text[ finnish ] = "Kluku";
+ Text[ finnish ] = "Kompleksiluku";
Text[ italian ] = "Numero complesso";
- Text[ danish ] = "inumber";
+ Text[ danish ] = "Komplekst tal";
Text[ swedish ] = "Komplext tal";
Text[ polish ] = "Liczba zesp.";
Text[ portuguese_brazilian ] = "inumber";
@@ -5871,14 +5871,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The complex number";
Text[ portuguese ] = " o nmero complexo.";
- Text[ russian ] = " , .";
+ Text[ russian ] = " .";
Text[ greek ] = "inumber";
- Text[ dutch ] = "inumber";
+ Text[ dutch ] = "Complex getal";
Text[ french ] = "Nombre complexe";
Text[ spanish ] = "Nmero complejo";
Text[ finnish ] = "Kompleksiluku";
Text[ italian ] = "Numero complesso";
- Text[ danish ] = "inumber";
+ Text[ danish ] = "Komplekst tal";
Text[ swedish ] = "Komplext tal";
Text[ polish ] = "Liczba zespolona.";
Text[ portuguese_brazilian ] = "inumber";
@@ -5904,12 +5904,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Devolve o logaritmo comum em base 10 de um nmero complexo.";
Text[ russian ] = " .";
Text[ greek ] = "Returns the base-10 logarithm of a complex number";
- Text[ dutch ] = "Returns the base-10 logarithm of a complex number";
+ Text[ dutch ] = "Geeft de logaritme met grondtal tien van een complex getal.";
Text[ french ] = "Renvoie le logarithme en base 10 d'un nombre complexe.";
Text[ spanish ] = "Devuelve el logaritmo en base diez perteneciente a un nmero complejo.";
- Text[ finnish ] = "Palauttaa kompleksiluvun kymmenkantalogaritmin.";
+ Text[ finnish ] = "Palauttaa kompleksiluvun kymmenkantalogaritmin";
Text[ italian ] = "Restituisce il logaritmo in base 10 di un numero complesso.";
- Text[ danish ] = "Returns the base-10 logarithm of a complex number";
+ Text[ danish ] = "Returnerer titalslogaritmen til et komplekst tal.";
Text[ swedish ] = "Returnerar 10-logaritmen av ett komplext tal.";
Text[ polish ] = "Podaje warto logarytmu dziesitnego liczby zespolonej.";
Text[ portuguese_brazilian ] = "Returns the base-10 logarithm of a complex number";
@@ -5930,14 +5930,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Complex number";
Text[ portuguese ] = "Nmero complexo";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "inumber";
- Text[ dutch ] = "inumber";
+ Text[ dutch ] = "Complex getal";
Text[ french ] = "Nombre complexe";
Text[ spanish ] = "Nmero complejo";
- Text[ finnish ] = "Kluku";
+ Text[ finnish ] = "Kompleksiluku";
Text[ italian ] = "Numero complesso";
- Text[ danish ] = "inumber";
+ Text[ danish ] = "Komplekst tal";
Text[ swedish ] = "Komplext tal";
Text[ polish ] = "Liczba zesp.";
Text[ portuguese_brazilian ] = "inumber";
@@ -5958,14 +5958,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The complex number";
Text[ portuguese ] = " o nmero complexo.";
- Text[ russian ] = " , .";
+ Text[ russian ] = " .";
Text[ greek ] = "inumber";
- Text[ dutch ] = "inumber";
+ Text[ dutch ] = "Complex getal";
Text[ french ] = "Nombre complexe";
Text[ spanish ] = "Nmero complejo";
Text[ finnish ] = "Kompleksiluku";
Text[ italian ] = "Numero complesso";
- Text[ danish ] = "inumber";
+ Text[ danish ] = "Komplekst tal";
Text[ swedish ] = "Komplext tal";
Text[ polish ] = "Liczba zespolona.";
Text[ portuguese_brazilian ] = "inumber";
@@ -5989,14 +5989,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Returns the base-2 logarithm of a complex number";
Text[ portuguese ] = "Devolve o logaritmo de base 2 de um nmero complexo.";
- Text[ russian ] = " .";
+ Text[ russian ] = " 2 .";
Text[ greek ] = "Returns the base-2 logarithm of a complex number";
- Text[ dutch ] = "Returns the base-2 logarithm of a complex number";
+ Text[ dutch ] = "Geeft de logaritme met grondtal twee";
Text[ french ] = "Renvoie le logarithme en base 2 d'un nombre complexe.";
Text[ spanish ] = "Logaritmo en base 2 de un nmero complejo.";
- Text[ finnish ] = "Palauttaa kompleksiluvun kaksikantalogaritmin.";
+ Text[ finnish ] = "Palauttaa kompleksiluvun kaksikantalogaritmin";
Text[ italian ] = "Restituisce il logaritmo in base 2.";
- Text[ danish ] = "Returns the base-2 logarithm of a complex number";
+ Text[ danish ] = "Returnerer totalslogaritmen";
Text[ swedish ] = "Returnerar 2-logaritmen av ett komplext tal";
Text[ polish ] = "Podaje warto logarytmu na podstawie 2 z liczby zespolonej.";
Text[ portuguese_brazilian ] = "Returns the base-2 logarithm of a complex number";
@@ -6017,14 +6017,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Complex number";
Text[ portuguese ] = "Nmero complexo";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "inumber";
- Text[ dutch ] = "inumber";
+ Text[ dutch ] = "Complex getal";
Text[ french ] = "Nombre complexe";
Text[ spanish ] = "Nmero complejo";
- Text[ finnish ] = "Kluku";
+ Text[ finnish ] = "Kompleksiluku";
Text[ italian ] = "Numero complesso";
- Text[ danish ] = "inumber";
+ Text[ danish ] = "Komplekst tal";
Text[ swedish ] = "Komplext tal";
Text[ polish ] = "Liczba zesp.";
Text[ portuguese_brazilian ] = "inumber";
@@ -6045,14 +6045,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The complex number";
Text[ portuguese ] = " o nmero complexo.";
- Text[ russian ] = " , .";
+ Text[ russian ] = " .";
Text[ greek ] = "inumber";
- Text[ dutch ] = "inumber";
+ Text[ dutch ] = "Complex getal";
Text[ french ] = "Nombre complexe";
Text[ spanish ] = "Nmero complejo";
Text[ finnish ] = "Kompleksiluku";
Text[ italian ] = "Numero complesso";
- Text[ danish ] = "inumber";
+ Text[ danish ] = "Komplekst tal";
Text[ swedish ] = "Komplext tal";
Text[ polish ] = "Liczba zespolona.";
Text[ portuguese_brazilian ] = "inumber";
@@ -6078,12 +6078,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Devolve o produto de vrios nmeros complexos.";
Text[ russian ] = " .";
Text[ greek ] = "Returns the product of complex numbers";
- Text[ dutch ] = "Returns the product of complex numbers";
+ Text[ dutch ] = "Geeft het product van een aantal complexe getallen";
Text[ french ] = "Renvoie le produit de plusieurs nombres complexes.";
Text[ spanish ] = "Devuelve el producto de varios nmeros complejos.";
- Text[ finnish ] = "Palauttaa kompleksilukujen tulon.";
+ Text[ finnish ] = "Palauttaa kompleksilukujen tulon";
Text[ italian ] = "Restituisce il prodotto di pi numeri complessi.";
- Text[ danish ] = "Returns the product of complex numbers";
+ Text[ danish ] = "Returnerer produktet for flere komplekse tal.";
Text[ swedish ] = "Returnerar produkten av flera komplexa tal";
Text[ polish ] = "Podaje iloczyn szeregu liczb zespolonych.";
Text[ portuguese_brazilian ] = "Returns the product of complex numbers";
@@ -6104,14 +6104,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Complex number";
Text[ portuguese ] = "Nmero complexo";
- Text[ russian ] = "_ 1";
+ Text[ russian ] = " ";
Text[ greek ] = "inumber 1";
- Text[ dutch ] = "inumber 1";
+ Text[ dutch ] = "Complex getal";
Text[ french ] = "Nombre complexe";
Text[ spanish ] = "Nmero complejo";
- Text[ finnish ] = "Kluku 1";
+ Text[ finnish ] = "Kompleksiluku 1";
Text[ italian ] = "Numero complesso";
- Text[ danish ] = "inumber 1";
+ Text[ danish ] = "Komplekst tal";
Text[ swedish ] = "Komplext tal";
Text[ polish ] = "Liczba zesp. 1";
Text[ portuguese_brazilian ] = "inumber 1";
@@ -6134,12 +6134,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Primeiro nmero complexo";
Text[ russian ] = " .";
Text[ greek ] = "inumber 1";
- Text[ dutch ] = "inumber 1";
+ Text[ dutch ] = "Eerste complexe getal";
Text[ french ] = "Premier nombre complexe";
Text[ spanish ] = "Primer nmero complejo";
Text[ finnish ] = "Ensimminen kompleksiluku";
Text[ italian ] = "Il primo numero complesso";
- Text[ danish ] = "inumber 1";
+ Text[ danish ] = "Frste komplekse tal";
Text[ swedish ] = "Frsta komplexa talet";
Text[ polish ] = "Pierwsza liczba zespolona.";
Text[ portuguese_brazilian ] = "inumber 1";
@@ -6160,14 +6160,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Complex number";
Text[ portuguese ] = "Nmero complexo";
- Text[ russian ] = "_ 2";
+ Text[ russian ] = " ";
Text[ greek ] = "inumber 2";
- Text[ dutch ] = "inumber 2";
+ Text[ dutch ] = "Complex getal";
Text[ french ] = "Nombre complexe";
Text[ spanish ] = "Nmero complejo";
- Text[ finnish ] = "Kluku 2";
+ Text[ finnish ] = "Kompleksiluku 2";
Text[ italian ] = "Numero complesso";
- Text[ danish ] = "inumber 2";
+ Text[ danish ] = "Komplekst tal";
Text[ swedish ] = "Komplext tal";
Text[ polish ] = "Liczba zesp. 2";
Text[ portuguese_brazilian ] = "inumber 2";
@@ -6190,12 +6190,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Outro nmero complexo";
Text[ russian ] = " .";
Text[ greek ] = "inumber 2";
- Text[ dutch ] = "inumber 2";
+ Text[ dutch ] = "Ander complex getal";
Text[ french ] = "Autre nombre complexe";
Text[ spanish ] = "Otros nmeros complejos";
Text[ finnish ] = "Toinen kompleksiluku";
Text[ italian ] = "Ulteriore numero complesso";
- Text[ danish ] = "inumber 2";
+ Text[ danish ] = "Yderligere komplekst tal";
Text[ swedish ] = "Ytterligare komplext tal";
Text[ polish ] = "Druga liczba zespolona.";
Text[ portuguese_brazilian ] = "inumber 2";
@@ -6221,12 +6221,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Devolve o coeficiente real de um nmero complexo.";
Text[ russian ] = " .";
Text[ greek ] = "Returns the real coefficient of a complex number";
- Text[ dutch ] = "Returns the real coefficient of a complex number";
+ Text[ dutch ] = "Geeft het rele gedeelte van een complex getal.";
Text[ french ] = "Renvoie le coefficient rel d'un nombre complexe.";
Text[ spanish ] = "Devuelve el coeficiente de la parte real de un nmero complejo.";
Text[ finnish ] = "Palauttaa kompleksiluvun reaalikertoimen";
Text[ italian ] = "Restituisce la parte reale di un numero complesso.";
- Text[ danish ] = "Returns the real coefficient of a complex number";
+ Text[ danish ] = "Returnerer realdelen af et komplekst tal.";
Text[ swedish ] = "Returnerar realkoefficienten av ett komplext tal.";
Text[ polish ] = "Podaje cz rzeczywist liczby zespolonej.";
Text[ portuguese_brazilian ] = "Returns the real coefficient of a complex number";
@@ -6247,14 +6247,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Complex number";
Text[ portuguese ] = "Nmero complexo";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "inumber";
- Text[ dutch ] = "inumber";
+ Text[ dutch ] = "Complex getal";
Text[ french ] = "Nombre complexe";
Text[ spanish ] = "Nmero complejo";
- Text[ finnish ] = "Kluku";
+ Text[ finnish ] = "Kompleksiluku";
Text[ italian ] = "Numero complesso";
- Text[ danish ] = "inumber";
+ Text[ danish ] = "Komplekst tal";
Text[ swedish ] = "Komplext tal";
Text[ polish ] = "Liczba zesp.";
Text[ portuguese_brazilian ] = "inumber";
@@ -6275,14 +6275,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The complex number";
Text[ portuguese ] = " o nmero complexo.";
- Text[ russian ] = " , () .";
+ Text[ russian ] = " .";
Text[ greek ] = "inumber";
- Text[ dutch ] = "inumber";
+ Text[ dutch ] = "Complex getal";
Text[ french ] = "Nombre complexe";
Text[ spanish ] = "Nmero complejo";
Text[ finnish ] = "Kompleksiluku";
Text[ italian ] = "Numero complesso";
- Text[ danish ] = "inumber";
+ Text[ danish ] = "Komplekst tal";
Text[ swedish ] = "Komplext tal";
Text[ polish ] = "Liczba zespolona.";
Text[ portuguese_brazilian ] = "inumber";
@@ -6308,12 +6308,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Devolve o seno de um nmero complexo.";
Text[ russian ] = " .";
Text[ greek ] = "Returns the sine of a complex number";
- Text[ dutch ] = "Returns the sine of a complex number";
+ Text[ dutch ] = "Geeft de sinus van een complex getal.";
Text[ french ] = "Renvoie le sinus d'un nombre complexe.";
Text[ spanish ] = "Devuelve el seno perteneciente a un nmero complejo.";
- Text[ finnish ] = "Palauttaa kompleksiluvun sinin.";
+ Text[ finnish ] = "Palauttaa kompleksiluvun sinin";
Text[ italian ] = "Restituisce il seno di un numero complesso.";
- Text[ danish ] = "Returns the sine of a complex number";
+ Text[ danish ] = "Returnerer sinus for et komplekst tal.";
Text[ swedish ] = "Returnerar sinus av ett komplext tal.";
Text[ polish ] = "Podaje warto sinusa liczby zespolonej.";
Text[ portuguese_brazilian ] = "Returns the sine of a complex number";
@@ -6334,14 +6334,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Complex number";
Text[ portuguese ] = "Nmero complexo";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "inumber";
- Text[ dutch ] = "inumber";
+ Text[ dutch ] = "Complex getal";
Text[ french ] = "Nombre complexe";
Text[ spanish ] = "Nmero complejo";
- Text[ finnish ] = "Kluku";
+ Text[ finnish ] = "Kompleksiluku";
Text[ italian ] = "Numero complesso";
- Text[ danish ] = "inumber";
+ Text[ danish ] = "Komplekst tal";
Text[ swedish ] = "Komplext tal";
Text[ polish ] = "Liczba zesp.";
Text[ portuguese_brazilian ] = "inumber";
@@ -6362,14 +6362,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The complex number";
Text[ portuguese ] = " o nmero complexo.";
- Text[ russian ] = " , .";
+ Text[ russian ] = " .";
Text[ greek ] = "inumber";
- Text[ dutch ] = "inumber";
+ Text[ dutch ] = "Complex getal";
Text[ french ] = "Nombre complexe";
Text[ spanish ] = "Nmero complejo";
Text[ finnish ] = "Kompleksiluku";
Text[ italian ] = "Numero complesso";
- Text[ danish ] = "inumber";
+ Text[ danish ] = "Komplekst tal";
Text[ swedish ] = "Komplext tal";
Text[ polish ] = "Liczba zespolona.";
Text[ portuguese_brazilian ] = "inumber";
@@ -6393,14 +6393,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Returns the difference of two complex numbers";
Text[ portuguese ] = "Devolve a diferena entre dois nmeros complexos.";
- Text[ russian ] = " .";
+ Text[ russian ] = " .";
Text[ greek ] = "Returns the difference of two complex numbers";
- Text[ dutch ] = "Returns the difference of two complex numbers";
+ Text[ dutch ] = "Geeft het verschil tussen twee complexe getallen.";
Text[ french ] = "Renvoie la diffrence entre deux noms complexes.";
Text[ spanish ] = "Devuelve la diferencia existente entre dos nmeros complejos.";
Text[ finnish ] = "Palauttaa kahden kompleksiluvun erotuksen";
Text[ italian ] = "Restituisce la differenza di due numeri complessi.";
- Text[ danish ] = "Returns the difference of two complex numbers";
+ Text[ danish ] = "Returnerer differencen mellem to komplekse tal.";
Text[ swedish ] = "Returnerar differensen mellan tv komplexa tal.";
Text[ polish ] = "Podaje rnic dwch liczb zespolonych.";
Text[ portuguese_brazilian ] = "Returns the difference of two complex numbers";
@@ -6421,14 +6421,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Complex number 1";
Text[ portuguese ] = "Nmero complexo 1";
- Text[ russian ] = "_ 1";
+ Text[ russian ] = " 1";
Text[ greek ] = "inumber 1";
- Text[ dutch ] = "inumber 1";
+ Text[ dutch ] = "Complex getal 1";
Text[ french ] = "Nombre complexe 1";
Text[ spanish ] = "Nmero complejo 1";
- Text[ finnish ] = "Kluku 1";
+ Text[ finnish ] = "Kompleksiluku 1";
Text[ italian ] = "Numero complesso 1";
- Text[ danish ] = "inumber 1";
+ Text[ danish ] = "Komplekst tal 1";
Text[ swedish ] = "Komplext tal 1";
Text[ polish ] = "Liczba zesp. 1";
Text[ portuguese_brazilian ] = "inumber 1";
@@ -6449,14 +6449,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Complex number 1";
Text[ portuguese ] = "Nmero complexo 1";
- Text[ russian ] = " .";
+ Text[ russian ] = " 1";
Text[ greek ] = "inumber 1";
- Text[ dutch ] = "inumber 1";
+ Text[ dutch ] = "Complex getal 1";
Text[ french ] = "Nombre complexe 1";
Text[ spanish ] = "Nmero complejo 1";
- Text[ finnish ] = "Kompleksiluku, josta kompleksiluku 2 vhennetn";
+ Text[ finnish ] = "Kompleksiluku 1";
Text[ italian ] = "Numero complesso 1";
- Text[ danish ] = "inumber 1";
+ Text[ danish ] = "Komplekst tal 1";
Text[ swedish ] = "Komplext tal 1";
Text[ polish ] = "Pierwsza liczba zespolona.";
Text[ portuguese_brazilian ] = "inumber 1";
@@ -6477,14 +6477,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Complex number 2";
Text[ portuguese ] = "Nmero complexo 2";
- Text[ russian ] = "_ 2";
+ Text[ russian ] = " 2";
Text[ greek ] = "inumber 2";
- Text[ dutch ] = "inumber 2";
+ Text[ dutch ] = "Complex getal 2";
Text[ french ] = "Nombre complexe 2";
Text[ spanish ] = "Nmero complejo 2";
- Text[ finnish ] = "Kluku 2";
+ Text[ finnish ] = "Kompleksiluku 2";
Text[ italian ] = "Numero complesso 2";
- Text[ danish ] = "inumber 2";
+ Text[ danish ] = "Komplekst tal 2";
Text[ swedish ] = "Komplext tal 2";
Text[ polish ] = "Liczba zesp. 2";
Text[ portuguese_brazilian ] = "inumber 2";
@@ -6505,14 +6505,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Complex number 2";
Text[ portuguese ] = "Nmero complexo 2";
- Text[ russian ] = " .";
+ Text[ russian ] = " 2";
Text[ greek ] = "inumber 2";
- Text[ dutch ] = "inumber 2";
+ Text[ dutch ] = "Complex getal 2";
Text[ french ] = "Nombre complexe 2";
Text[ spanish ] = "Nmero complejo 2";
- Text[ finnish ] = "Kompleksiluku, joka vhennetn kompleksiluvusta 1";
+ Text[ finnish ] = "Kompleksiluku 2";
Text[ italian ] = "Numero complesso 2";
- Text[ danish ] = "inumber 2";
+ Text[ danish ] = "Komplekst tal 2";
Text[ swedish ] = "Komplext tal 2";
Text[ polish ] = "Druga liczba zespolona.";
Text[ portuguese_brazilian ] = "inumber 2";
@@ -6538,12 +6538,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Devolve a raz quadrada de um nmero complexo.";
Text[ russian ] = " .";
Text[ greek ] = "Returns the square root of a complex number";
- Text[ dutch ] = "Returns the square root of a complex number";
+ Text[ dutch ] = "Geeft de vierkantswortel van een complex getal.";
Text[ french ] = "Renvoie la racine carre d'un nombre complexe.";
Text[ spanish ] = "Devuelve la raz cuadrada de un nmero complejo.";
- Text[ finnish ] = "Palauttaa kompleksiluvun nelin.";
+ Text[ finnish ] = "Palauttaa kompleksiluvun nelin";
Text[ italian ] = "Restituisce la radice quadrata di un numero complesso.";
- Text[ danish ] = "Returns the square root of a complex number";
+ Text[ danish ] = "Returnerer kvadratroden af et komplekst tal.";
Text[ swedish ] = "Returnerar kvadratroten ur ett komplext tal.";
Text[ polish ] = "Podaje warto pierwiastka kwadratowego liczby zespolonej.";
Text[ portuguese_brazilian ] = "Returns the square root of a complex number";
@@ -6564,14 +6564,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Complex number";
Text[ portuguese ] = "Nmero complexo";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "inumber";
- Text[ dutch ] = "inumber";
+ Text[ dutch ] = "Complex getal";
Text[ french ] = "Nombre complexe";
Text[ spanish ] = "Nmero complejo";
- Text[ finnish ] = "Kluku";
+ Text[ finnish ] = "Kompleksiluku";
Text[ italian ] = "Numero complesso";
- Text[ danish ] = "inumber";
+ Text[ danish ] = "Komplekst tal";
Text[ swedish ] = "Komplext tal";
Text[ polish ] = "Liczba zesp.";
Text[ portuguese_brazilian ] = "inumber";
@@ -6592,14 +6592,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The complex number";
Text[ portuguese ] = " o nmero complexo.";
- Text[ russian ] = " , .";
+ Text[ russian ] = " .";
Text[ greek ] = "inumber";
- Text[ dutch ] = "inumber";
+ Text[ dutch ] = "Complex getal";
Text[ french ] = "Nombre complexe";
Text[ spanish ] = "Nmero complejo";
Text[ finnish ] = "Kompleksiluku";
Text[ italian ] = "Numero complesso";
- Text[ danish ] = "inumber";
+ Text[ danish ] = "Komplekst tal";
Text[ swedish ] = "Komplext tal";
Text[ polish ] = "Liczba zespolona.";
Text[ portuguese_brazilian ] = "inumber";
@@ -6625,12 +6625,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Devolve a soma de nmeros complexos.";
Text[ russian ] = " .";
Text[ greek ] = "Returns the sum of complex numbers";
- Text[ dutch ] = "Returns the sum of complex numbers";
+ Text[ dutch ] = "Geeft de som van complexe getallen";
Text[ french ] = "Renvoie la somme de plusieurs nombres complexes.";
Text[ spanish ] = "Devuelve la suma de nmeros complejos.";
- Text[ finnish ] = "Palauttaa kompleksilukujen summan.";
+ Text[ finnish ] = "Palauttaa kompleksilukujen summan";
Text[ italian ] = "Restituisce la somma di numeri complessi.";
- Text[ danish ] = "Returns the sum of complex numbers";
+ Text[ danish ] = "Returnerer summen af to komplekse tal.";
Text[ swedish ] = "Returnerar summan av komplexa tal";
Text[ polish ] = "Podaje sum liczb zespolonych.";
Text[ portuguese_brazilian ] = "Returns the sum of complex numbers";
@@ -6651,14 +6651,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Complex number";
Text[ portuguese ] = "Nmero complexo";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "inumber 1";
- Text[ dutch ] = "inumber 1";
+ Text[ dutch ] = "Complex getal";
Text[ french ] = "Nombre complexe";
Text[ spanish ] = "Nmero complejo";
- Text[ finnish ] = "Kluku 1";
+ Text[ finnish ] = "Kompleksiluku";
Text[ italian ] = "Numero complesso";
- Text[ danish ] = "inumber 1";
+ Text[ danish ] = "Komplekst tal";
Text[ swedish ] = "Komplext tal";
Text[ polish ] = "Liczba zesp. 1";
Text[ portuguese_brazilian ] = "inumber 1";
@@ -6679,14 +6679,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The complex number";
Text[ portuguese ] = "Nmero complexo";
- Text[ russian ] = " .";
+ Text[ russian ] = " .";
Text[ greek ] = "inumber 1";
- Text[ dutch ] = "inumber 1";
+ Text[ dutch ] = "Complex getal";
Text[ french ] = "Nombre complexe";
Text[ spanish ] = "Nmero complejo";
- Text[ finnish ] = "Ensimminen kompleksiluku";
+ Text[ finnish ] = "Kompleksiluku";
Text[ italian ] = "Numero complesso";
- Text[ danish ] = "inumber 1";
+ Text[ danish ] = "Komplekst tal";
Text[ swedish ] = "Komplext tal";
Text[ polish ] = "Pierwsza liczba zespolona.";
Text[ portuguese_brazilian ] = "inumber 1";
@@ -6713,12 +6713,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Converte coeficientes reais e imaginrios num nmero complexo.";
Text[ russian ] = " .";
Text[ greek ] = "Converts real and imaginary coefficients into a complex number";
- Text[ dutch ] = "Converts real and imaginary coefficients into a complex number";
+ Text[ dutch ] = "Converteert het rele en imaginaire gedeelte naar een complex getal.";
Text[ french ] = "Convertit les coefficients rels et imaginaires en nombre complexe.";
Text[ spanish ] = "Convierte los coeficientes reales e imaginarios en nmeros complejos.";
- Text[ finnish ] = "Muuntaa reaali- ja imaginrikertoimet kompleksiluvuiksi";
+ Text[ finnish ] = "Muuntaa reaali- ja imaginaarikertoimet kompleksiluvuiksi";
Text[ italian ] = "Converte la parte reale e il coefficiente immaginario in un numero complesso.";
- Text[ danish ] = "Converts real and imaginary coefficients into a complex number";
+ Text[ danish ] = "Konverterer realdelen og imaginrdelen til et komplekst tal.";
Text[ swedish ] = "Omvandlar en real- och en imaginrkoefficient till ett komplext tal.";
Text[ polish ] = "Przeksztaca wspczynnik rzeczywisty i urojony w liczb zespolon.";
Text[ portuguese_brazilian ] = "Converts real and imaginary coefficients into a complex number";
@@ -6739,14 +6739,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Real num";
Text[ portuguese ] = "Nmero real";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "real_num";
- Text[ dutch ] = "real_num";
+ Text[ dutch ] = "Reel gedeelte";
Text[ french ] = "Partie relle";
Text[ spanish ] = "Parte real";
Text[ finnish ] = "Reaaliluku";
Text[ italian ] = "Parte reale";
- Text[ danish ] = "real_num";
+ Text[ danish ] = "Realdel";
Text[ swedish ] = "Realdel";
Text[ polish ] = "Cz rzeczywista";
Text[ portuguese_brazilian ] = "real_num";
@@ -6767,14 +6767,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The real coefficient";
Text[ portuguese ] = " o coeficiente real";
- Text[ russian ] = " () .";
+ Text[ russian ] = " .";
Text[ greek ] = "real_num";
- Text[ dutch ] = "real_num";
+ Text[ dutch ] = "Reel gedeelte";
Text[ french ] = "Partie relle";
Text[ spanish ] = "Parte real";
Text[ finnish ] = "Reaalikerroin";
Text[ italian ] = "Parte reale";
- Text[ danish ] = "real_num";
+ Text[ danish ] = "Realdel";
Text[ swedish ] = "Realdel";
Text[ polish ] = "Cz rzeczywista liczby zespolonej.";
Text[ portuguese_brazilian ] = "real_num";
@@ -6795,14 +6795,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "I num";
Text[ portuguese ] = "Nmero imaginrio";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "i_num";
- Text[ dutch ] = "i_num";
+ Text[ dutch ] = "Imaginair gedeelte";
Text[ french ] = "Partie imaginaire";
Text[ spanish ] = "Parte imaginaria";
Text[ finnish ] = "I-luku";
Text[ italian ] = "Coefficiente immaginario";
- Text[ danish ] = "i_num";
+ Text[ danish ] = "Imaginrdel";
Text[ swedish ] = "Imaginrdel";
Text[ polish ] = "Cz urojona";
Text[ portuguese_brazilian ] = "i_num";
@@ -6825,12 +6825,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Nmero imaginrio";
Text[ russian ] = " .";
Text[ greek ] = "i_num";
- Text[ dutch ] = "i_num";
+ Text[ dutch ] = "Imaginair gedeelte";
Text[ french ] = "Partie imaginaire";
Text[ spanish ] = "Parte imaginaria";
- Text[ finnish ] = "Imaginrikerroin";
+ Text[ finnish ] = "Imaginaarikerroin";
Text[ italian ] = "Coefficiente immaginario";
- Text[ danish ] = "i_num";
+ Text[ danish ] = "Imaginrdel";
Text[ swedish ] = "Imaginrdel";
Text[ polish ] = "Cz urojona liczby zespolonej.";
Text[ portuguese_brazilian ] = "i_num";
@@ -6853,15 +6853,15 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Sufixo";
Text[ russian ] = "";
Text[ greek ] = "suffix";
- Text[ dutch ] = "suffix";
+ Text[ dutch ] = "Suffix";
Text[ french ] = "Suffixe";
Text[ spanish ] = "Sufijo";
Text[ finnish ] = "Jlkiliite";
Text[ italian ] = "Suffisso";
- Text[ danish ] = "suffix";
+ Text[ danish ] = "Suffiks";
Text[ swedish ] = "Suffix";
Text[ polish ] = "Jednostka urojona";
- Text[ portuguese_brazilian ] = "suffix";
+ Text[ portuguese_brazilian ] = "Sufixo";
Text[ japanese ] = "虚数単位";
Text[ korean ] = "접미사";
Text[ chinese_simplified ] = "虚数";
@@ -6879,17 +6879,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The suffix";
Text[ portuguese ] = "Sufixo";
- Text[ russian ] = " .";
+ Text[ russian ] = ".";
Text[ greek ] = "suffix";
- Text[ dutch ] = "suffix";
+ Text[ dutch ] = "Suffix";
Text[ french ] = "Suffixe";
Text[ spanish ] = "Sufijo";
- Text[ finnish ] = "Imaginriosan jlkiliite";
+ Text[ finnish ] = "Imaginaariosan jlkiliite";
Text[ italian ] = "Suffisso";
- Text[ danish ] = "suffix";
+ Text[ danish ] = "Suffiks";
Text[ swedish ] = "Suffix";
Text[ polish ] = "Symbol jednostki urojonej wykorzystywanej w zapisie liczb zespolonych.";
- Text[ portuguese_brazilian ] = "suffix";
+ Text[ portuguese_brazilian ] = "Sufixo";
Text[ japanese ] = "虚数単位";
Text[ korean ] = "접미사";
Text[ chinese_simplified ] = "虚数";
@@ -6911,12 +6911,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Converte um nmero de um sistema de medida para outro.";
Text[ russian ] = " .";
Text[ greek ] = "Converts a number from one measurement system to another";
- Text[ dutch ] = "Converteert een getal van de ene maateenheid naar een andere.";
+ Text[ dutch ] = "Converteert een getal uit een bepaald maatstelsel naar een ander maatstelsel.";
Text[ french ] = "Convertit un nombre d'un systme de mesure un autre.";
Text[ spanish ] = "Convierte un nmero de un sistema mtrico a otro.";
- Text[ finnish ] = "Converts a number from one measurement system to another";
+ Text[ finnish ] = "Muuntaa yhden mittajrjestelmn luvun toiseksi";
Text[ italian ] = "Converte un numero da un sistema di unit ad un altro.";
- Text[ danish ] = "Converts a number from one measurement system to another";
+ Text[ danish ] = "Konverterer et tal fra et mlesystem til et andet.";
Text[ swedish ] = "Omvandlar ett tal frn ett mttsystem till ett annat.";
Text[ polish ] = "Zamienia liczb z jednego systemu miar na liczb z innego.";
Text[ portuguese_brazilian ] = "Converts a number from one measurement system to another";
@@ -6926,7 +6926,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "將一個度量單位的數字轉換成另一個度量單位的數字。";
Text[ turkish ] = "Converts a number from one measurement system to another";
Text[ arabic ] = "Converts a number from one measurement system to another";
- Text[ catalan ] = "Converts a number from one measurement system to another";
+ Text[ catalan ] = "Converteix un nmero d'un sistema de mesura a un altre";
Text[ thai ] = "แปลงจำนวนจากระบบมาตรวัดหนึ่งเป็นอีกระบบหนึ่ง";
};
@@ -6943,7 +6943,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Nmero";
Text[ finnish ] = "Luku";
Text[ italian ] = "Numero";
- Text[ danish ] = "Serienummer";
+ Text[ danish ] = "Tal";
Text[ swedish ] = "Tal";
Text[ polish ] = "Liczba";
Text[ portuguese_brazilian ] = "Zahl";
@@ -6953,7 +6953,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "number";
Text[ turkish ] = "Say";
Text[ arabic ] = "";
- Text[ catalan ] = "Nmero";
+ Text[ catalan ] = "nombre";
Text[ thai ] = "ตัวเลข";
};
@@ -6963,14 +6963,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ english ] = "Zahl";
Text[ english_us ] = "The number";
Text[ portuguese ] = "Nmero";
- Text[ russian ] = " , .";
+ Text[ russian ] = ".";
Text[ greek ] = "";
Text[ dutch ] = "Getal";
Text[ french ] = "Nombre";
Text[ spanish ] = "Nmero";
- Text[ finnish ] = "Luku";
+ Text[ finnish ] = "Luku, jonka kaksoiskerroin palautetaan";
Text[ italian ] = "Numero";
- Text[ danish ] = "Serienummer";
+ Text[ danish ] = "Tal";
Text[ swedish ] = "Tal";
Text[ polish ] = "Warto poddawana przeksztaceniu.";
Text[ portuguese_brazilian ] = "Zahl";
@@ -6980,7 +6980,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "數字";
Text[ turkish ] = "Saat";
Text[ arabic ] = "";
- Text[ catalan ] = "Nmero";
+ Text[ catalan ] = "nombre";
Text[ thai ] = "ตัวเลข";
};
@@ -6990,19 +6990,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ english ] = "Von-Maeinheit";
Text[ english_us ] = "From unit";
Text[ portuguese ] = "De_unidade";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "Von-Maeinheit";
Text[ dutch ] = "Van-maateenheid";
Text[ french ] = "De unit";
Text[ spanish ] = "De unidad de medida";
Text[ finnish ] = "Yksikst";
Text[ italian ] = "Da misura";
- Text[ danish ] = "Von-Maeinheit";
+ Text[ danish ] = "Fra-mleenhed";
Text[ swedish ] = "Ursprungsenhet";
Text[ polish ] = "Jednostka wy.";
Text[ portuguese_brazilian ] = "Von-Maeinheit";
Text[ japanese ] = "変換前単位";
- Text[ korean ] = "치수 단위의";
+ Text[ korean ] = "from_unit";
Text[ chinese_simplified ] = "from_unit";
Text[ chinese_traditional ] = "from_unit";
Text[ turkish ] = "Von-Maeinheit";
@@ -7017,14 +7017,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ english ] = "Maeinheit von Zahl.";
Text[ english_us ] = "Unit of measure for number";
Text[ portuguese ] = "Unidade do nmero.";
- Text[ russian ] = " \"\".";
+ Text[ russian ] = " ";
Text[ greek ] = "Maeinheit von Zahl.";
- Text[ dutch ] = "Maateenheid van het getal.";
+ Text[ dutch ] = "Maateenheid getal";
Text[ french ] = "Unit de l'argument Nombre.";
Text[ spanish ] = "Unidad de medida de nmero";
- Text[ finnish ] = "Luvun mittayksikk.";
+ Text[ finnish ] = "Luvun mittayksikk";
Text[ italian ] = "Unit di misura del numero.";
- Text[ danish ] = "Maeinheit von Zahl.";
+ Text[ danish ] = "Mleenhed for tal.";
Text[ swedish ] = "Mttenhet fr tal.";
Text[ polish ] = "Jednostka wyjciowa przeksztacanej liczby.";
Text[ portuguese_brazilian ] = "Maeinheit von Zahl.";
@@ -7034,7 +7034,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "原來的度量單位。";
Text[ turkish ] = "Maeinheit von Zahl.";
Text[ arabic ] = "Maeinheit von Zahl.";
- Text[ catalan ] = "Unitat de mesura del nombre.";
+ Text[ catalan ] = "Unitat de mesura pel nombre.";
Text[ thai ] = "หน่วยของมาตรวัดสำหรับตัวเลข";
};
@@ -7044,14 +7044,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ english ] = "In-Maeinheit";
Text[ english_us ] = "To unit";
Text[ portuguese ] = "Para_unidade";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "In-Maeinheit";
Text[ dutch ] = "Naar-maateenheid";
Text[ french ] = " unit";
Text[ spanish ] = "En unidad de medida";
Text[ finnish ] = "Yksikkn";
Text[ italian ] = "A misura";
- Text[ danish ] = "In-Maeinheit";
+ Text[ danish ] = "Til-mleenhed";
Text[ swedish ] = "Ny enhet";
Text[ polish ] = "Jednostka docel.";
Text[ portuguese_brazilian ] = "In-Maeinheit";
@@ -7073,12 +7073,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Unidade do resultado.";
Text[ russian ] = " .";
Text[ greek ] = "Maeinheit des Ergebnisses.";
- Text[ dutch ] = "Maateenheid van het resultaat.";
+ Text[ dutch ] = "Maateenheid resultaat";
Text[ french ] = "Unit du rsultat.";
Text[ spanish ] = "Unidad de medida del resultado.";
- Text[ finnish ] = "Palautettava luvun mittayksikk.";
+ Text[ finnish ] = "Palautettava luvun mittayksikk";
Text[ italian ] = "Unit di misura del risultato.";
- Text[ danish ] = "Maeinheit des Ergebnisses.";
+ Text[ danish ] = "Mleenhed for resultatet.";
Text[ swedish ] = "Resultatets mttenhet.";
Text[ polish ] = "Jednostka docelowa wyniku.";
Text[ portuguese_brazilian ] = "Maeinheit des Ergebnisses.";
@@ -7104,17 +7104,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Devolve a amortizao em linha recta de um activo durante um determinado perodo.";
Text[ russian ] = " . .";
Text[ greek ] = "Returns the prorated linear depreciation of an asset for each accounting period";
- Text[ dutch ] = "Returns the prorated linear depreciation of an asset for each accounting period";
+ Text[ dutch ] = "Geeft het afschrijvingsbedrag voor een bepaalde afrekeningperiode op basis van het Franse boekhoudsysteem.";
Text[ french ] = "Renvoie l'amortissement linaire prorata correspondant chaque priode comptable.";
Text[ spanish ] = "Devuelve la depreciacin de una cantidad en un periodo en base al mtodo francs de amortizacin progresiva completa.";
- Text[ finnish ] = "Palauttaa resurssin jaetun lineaarisen vhennyksen kultakin tilikaudelta";
+ Text[ finnish ] = "Palauttaa resurssin jaetun lineaarisen vhennyksen kultakin tilikaudelta.";
Text[ italian ] = "Restituisce la somma di ammortamento di un periodo contabile quale ammortamento degressivo.";
- Text[ danish ] = "Returns the prorated linear depreciation of an asset for each accounting period";
+ Text[ danish ] = "Returnerer det afskrivningsbelb, der skal sttes for en regnskabsperiode p basis af det franske bogfringssystem.";
Text[ swedish ] = "Returnerar avskrivningsbeloppet fr en redovisningsperiod enligt det franska bokfringssystemet.";
Text[ polish ] = "Podaje warto amortyzacji dla kadego okresu rozliczeniowego. Funkcja ta dotyczy francuskiego systemu ksigowego.";
Text[ portuguese_brazilian ] = "Returns the prorated linear depreciation of an asset for each accounting period";
Text[ japanese ] = "フランスの会計システムを基準とした各会計期における減価償却費を返します。";
- Text[ korean ] = "각 회계 기간에 대한 할당된 선형 감가 상각을 반환합니다";
+ Text[ korean ] = "각 회계 기간에 할당된 선형 감가 상각을 구합니다.";
Text[ chinese_simplified ] = "计算一个会计周期内按比例分配的线性折旧金额。";
Text[ chinese_traditional ] = "傳回某一項固定資產按比列線性計算的會計週期的折舊金額。";
Text[ turkish ] = "Returns the prorated linear depreciation of an asset for each accounting period";
@@ -7132,12 +7132,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Custo";
Text[ russian ] = "";
Text[ greek ] = "Cost";
- Text[ dutch ] = "Cost";
+ Text[ dutch ] = "Kosten";
Text[ french ] = "Cot";
Text[ spanish ] = "Costo";
Text[ finnish ] = "Kustannus";
Text[ italian ] = "Costo";
- Text[ danish ] = "Cost";
+ Text[ danish ] = "Omkostninger";
Text[ swedish ] = "Kostnader";
Text[ polish ] = "Cena";
Text[ portuguese_brazilian ] = "Cost";
@@ -7160,12 +7160,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = " o custo inicial do activo.";
Text[ russian ] = " .";
Text[ greek ] = "Cost";
- Text[ dutch ] = "Cost";
+ Text[ dutch ] = "Aanschafkosten van het activum.";
Text[ french ] = "Cot d'acquisition du bien.";
Text[ spanish ] = "El coste de la inversin.";
Text[ finnish ] = "Resurssin hankintakustannukset";
Text[ italian ] = "Costo iniziale del bene.";
- Text[ danish ] = "Cost";
+ Text[ danish ] = "Anskaffelsesomkostninger for anlgsgoder.";
Text[ swedish ] = "Anskaffningskostnader fr tillgngen.";
Text[ polish ] = "Cena zakupu rodka trwaego.";
Text[ portuguese_brazilian ] = "Cost";
@@ -7188,17 +7188,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Data ";
Text[ russian ] = "";
Text[ greek ] = "Date purchased";
- Text[ dutch ] = "Date purchased";
+ Text[ dutch ] = "Datum";
Text[ french ] = "Date";
Text[ spanish ] = "Fecha";
Text[ finnish ] = "Hankintapiv";
Text[ italian ] = "Data";
- Text[ danish ] = "Date purchased";
+ Text[ danish ] = "Dato";
Text[ swedish ] = "Datum";
Text[ polish ] = "Data zakupu";
Text[ portuguese_brazilian ] = "Date purchased";
Text[ japanese ] = "購入日";
- Text[ korean ] = "구매일";
+ Text[ korean ] = "구매 날짜";
Text[ chinese_simplified ] = "date_purchased";
Text[ chinese_traditional ] = "date_purchased";
Text[ turkish ] = "Date purchased";
@@ -7216,17 +7216,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = " a data de aquisio do activo.";
Text[ russian ] = " .";
Text[ greek ] = "Date purchased";
- Text[ dutch ] = "Date purchased";
+ Text[ dutch ] = "Aanschafdatum van het activum";
Text[ french ] = "Date d'acquisition du bien.";
Text[ spanish ] = "Fecha de la adquisicin del bien.";
Text[ finnish ] = "Resurssin hankintapiv";
Text[ italian ] = "Data di acquisto del bene.";
- Text[ danish ] = "Date purchased";
+ Text[ danish ] = "Anskaffelsesdato for anlgsgoder";
Text[ swedish ] = "Anskaffningsdatum fr tillgngen";
Text[ polish ] = "Data zakupu rodka trwaego.";
Text[ portuguese_brazilian ] = "Date purchased";
Text[ japanese ] = "資産を購入した日付。";
- Text[ korean ] = "구매일";
+ Text[ korean ] = "자산 구매 날짜";
Text[ chinese_simplified ] = "资产的购入日期";
Text[ chinese_traditional ] = "購買資產的日期";
Text[ turkish ] = "Date purchased";
@@ -7242,14 +7242,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "First period";
Text[ portuguese ] = "Primeiro perodo";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "First period";
- Text[ dutch ] = "First period";
+ Text[ dutch ] = "Eerste periode";
Text[ french ] = "Premire priode";
Text[ spanish ] = "Primer periodo";
Text[ finnish ] = "Ensimminen kausi";
Text[ italian ] = "Primo periodo";
- Text[ danish ] = "First period";
+ Text[ danish ] = "Frste periode";
Text[ swedish ] = "Frsta period";
Text[ polish ] = "Pierwszy okres";
Text[ portuguese_brazilian ] = "First period";
@@ -7272,17 +7272,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = " a data que indica o final do primeiro perodo.";
Text[ russian ] = " .";
Text[ greek ] = "First period";
- Text[ dutch ] = "First period";
+ Text[ dutch ] = "Datum waarop de eerste periode eindigt.";
Text[ french ] = "Date indiquant la fin de la premire priode.";
Text[ spanish ] = "Fecha del final del primer periodo.";
Text[ finnish ] = "Ensimmisen poistokauden loppupivmr";
Text[ italian ] = "Data alla fine del primo periodo contabile.";
- Text[ danish ] = "First period";
+ Text[ danish ] = "Dato for slutningen af frste periode.";
Text[ swedish ] = "Datum fr slutet p den frsta perioden.";
Text[ polish ] = "Data zakoczenia pierwszego okresu.";
Text[ portuguese_brazilian ] = "First period";
Text[ japanese ] = "最初の会計期が終了する日付。";
- Text[ korean ] = "1차 기간";
+ Text[ korean ] = "1차 기간의 최종 날짜";
Text[ chinese_simplified ] = "首期的结束日期";
Text[ chinese_traditional ] = "第一期的結束日期。";
Text[ turkish ] = "First period";
@@ -7298,14 +7298,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Salvage";
Text[ portuguese ] = "Valor residual";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "Salvage";
- Text[ dutch ] = "Salvage";
+ Text[ dutch ] = "Restwaarde";
Text[ french ] = "Valeur rsiduelle";
Text[ spanish ] = "Valor residual";
Text[ finnish ] = "Loppuarvo";
Text[ italian ] = "Valore residuo";
- Text[ danish ] = "Salvage";
+ Text[ danish ] = "Restvrdi";
Text[ swedish ] = "Restvrde";
Text[ polish ] = "Odzysk";
Text[ portuguese_brazilian ] = "Salvage";
@@ -7328,12 +7328,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = " o valor residual do activo no fim da respectiva vida til.";
Text[ russian ] = " .";
Text[ greek ] = "Salvage";
- Text[ dutch ] = "Salvage";
+ Text[ dutch ] = "Restwaarde van het activum na afloop van de levensduur.";
Text[ french ] = "Valeur rsiduelle du bien au terme de l'amortissement.";
Text[ spanish ] = "Valor residual del bien al final de la depreciacin.";
Text[ finnish ] = "Resurssin lopullinen arvo, kun resurssi on kulutettu loppuun.";
Text[ italian ] = "Valore residuo del bene d'investimento calcolato alla fine della vita utile.";
- Text[ danish ] = "Salvage";
+ Text[ danish ] = "Restvrdi for anlgsgoderne ved slutningen af den driftskonomiske levetid.";
Text[ swedish ] = "Restvrdet fr tillgngen i slutet av livslngden.";
Text[ polish ] = "Warto odzysku na koniec okresu amortyzacji.";
Text[ portuguese_brazilian ] = "Salvage";
@@ -7356,12 +7356,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Perodo";
Text[ russian ] = "";
Text[ greek ] = "Period";
- Text[ dutch ] = "Period";
+ Text[ dutch ] = "Periode";
Text[ french ] = "Priode";
Text[ spanish ] = "Perodo";
Text[ finnish ] = "Kausi";
Text[ italian ] = "Periodo";
- Text[ danish ] = "Period";
+ Text[ danish ] = "Periode";
Text[ swedish ] = "Period";
Text[ polish ] = "Okres";
Text[ portuguese_brazilian ] = "Period";
@@ -7384,12 +7384,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "especifica o perodo correspondente.";
Text[ russian ] = ".";
Text[ greek ] = "Period";
- Text[ dutch ] = "Period";
+ Text[ dutch ] = "Periode";
Text[ french ] = "Priode";
Text[ spanish ] = "Perodo";
Text[ finnish ] = "Kyttkausi";
Text[ italian ] = "Periodo contabile da considerare.";
- Text[ danish ] = "Period";
+ Text[ danish ] = "Periode";
Text[ swedish ] = "Period";
Text[ polish ] = "Okres amortyzacji.";
Text[ portuguese_brazilian ] = "Period";
@@ -7412,7 +7412,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Taxa";
Text[ russian ] = "";
Text[ greek ] = "Rate";
- Text[ dutch ] = "Rate";
+ Text[ dutch ] = "Termijn";
Text[ french ] = "Taux";
Text[ spanish ] = "Tasa";
Text[ finnish ] = "Korko";
@@ -7440,17 +7440,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = " a taxa de amortizao.";
Text[ russian ] = " .";
Text[ greek ] = "Rate";
- Text[ dutch ] = "Rate";
+ Text[ dutch ] = "Afschrijving";
Text[ french ] = "Taux d'amortissement";
Text[ spanish ] = "Tasa de depreciacin";
Text[ finnish ] = "Poistonopeus";
Text[ italian ] = "Tasso di ammortamento";
- Text[ danish ] = "Rate";
+ Text[ danish ] = "Afskrivningssats";
Text[ swedish ] = "Avskrivningssats";
Text[ polish ] = "Stopa amortyzacji.";
Text[ portuguese_brazilian ] = "Rate";
Text[ japanese ] = "減価償却率";
- Text[ korean ] = "비율";
+ Text[ korean ] = "감가 상각율";
Text[ chinese_simplified ] = "折旧率";
Text[ chinese_traditional ] = "折舊率";
Text[ turkish ] = "Rate";
@@ -7468,17 +7468,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Base";
Text[ russian ] = "";
Text[ greek ] = "Year base";
- Text[ dutch ] = "Year base";
+ Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "Base";
Text[ finnish ] = "Kantaluku";
Text[ italian ] = "Base";
- Text[ danish ] = "Year base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Podstawa";
Text[ portuguese_brazilian ] = "Year base";
Text[ japanese ] = "年の基準";
- Text[ korean ] = "년식";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "basis";
Text[ chinese_traditional ] = "basis";
Text[ turkish ] = "Year base";
@@ -7496,17 +7496,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = " a base anual a ser utilizada.";
Text[ russian ] = " .";
Text[ greek ] = "Year base";
- Text[ dutch ] = "Year base";
+ Text[ dutch ] = "Gewenste jaarbasis.";
Text[ french ] = "Base annuelle utiliser.";
Text[ spanish ] = "Base anual a usar";
Text[ finnish ] = "Kytettv vuosien mr";
Text[ italian ] = "Base annua da usare.";
- Text[ danish ] = "Year base";
+ Text[ danish ] = "rsbasis, som skal anvendes.";
Text[ swedish ] = "rsbas som ska anvndas.";
Text[ polish ] = "Rodzaj podstawy wyliczania dni.";
Text[ portuguese_brazilian ] = "Year base";
Text[ japanese ] = "1年を何日として計算するかの基準。";
- Text[ korean ] = "년식";
+ Text[ korean ] = "사용할 연도 기준";
Text[ chinese_simplified ] = "要使用的年天数的基数。";
Text[ chinese_traditional ] = "要使用的年天數的基準。";
Text[ turkish ] = "Year base";
@@ -7525,19 +7525,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Returns the prorated linear depreciation of an asset for each accounting period";
Text[ portuguese ] = "Devolve a amortizao em linha recta de um activo durante um determinado perodo.";
- Text[ russian ] = " . .";
+ Text[ russian ] = " .";
Text[ greek ] = "Returns the prorated linear depreciation of an asset for each accounting period";
- Text[ dutch ] = "Returns the prorated linear depreciation of an asset for each accounting period";
+ Text[ dutch ] = "Geeft het afschrijvingsbedrag voor een bepaalde afrekeningperiode op basis van het Franse boekhoudsysteem.";
Text[ french ] = "Renvoie l'amortissement linaire prorata correspondant chaque priode comptable.";
Text[ spanish ] = "Devuelve la depreciacin de un bien en un determinado perodo en base al sistema contable francs.";
- Text[ finnish ] = "Palauttaa resurssin jaetun lineaarisen vhennyksen kultakin tilikaudelta";
+ Text[ finnish ] = "Palauttaa resurssin jaetun lineaarisen vhennyksen kultakin tilikaudelta.";
Text[ italian ] = "Restituisce la somma di ammortamento di un periodo contabile quale ammortamento lineare.";
- Text[ danish ] = "Returns the prorated linear depreciation of an asset for each accounting period";
+ Text[ danish ] = "Returnerer det afskrivningsbelb, der skal sttes for en regnskabsperiode p basis af det franske bogfringssystem.";
Text[ swedish ] = "Returnerar avskrivningsbeloppet fr en redovisningsperiod enligt det franska bokfringssystemet.";
Text[ polish ] = "Podaje warto amortyzacji dla kadego okresu rozliczeniowego. Funkcja ta dotyczy francuskiego systemu ksigowego.";
Text[ portuguese_brazilian ] = "Returns the prorated linear depreciation of an asset for each accounting period";
Text[ japanese ] = "フランスの会計システムを基準とした各会計期における減価償却費を返します。";
- Text[ korean ] = "각 회계 기간에 대한 자산의 할당된 선형 감가 상각을 반환합니다";
+ Text[ korean ] = "각 회계 기간에 대한 자산의 할당된 선형 감가 상각을 구합니다.";
Text[ chinese_simplified ] = "计算一个会计周期内按比例分配的线性折旧金额。";
Text[ chinese_traditional ] = "傳回某一項固定資產按比列線性計算的會計週期的折舊金額。";
Text[ turkish ] = "Returns the prorated linear depreciation of an asset for each accounting period";
@@ -7555,12 +7555,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Custo";
Text[ russian ] = "";
Text[ greek ] = "Cost";
- Text[ dutch ] = "Cost";
+ Text[ dutch ] = "Kosten";
Text[ french ] = "Cot";
Text[ spanish ] = "Costo";
Text[ finnish ] = "Kustannus";
Text[ italian ] = "Costo";
- Text[ danish ] = "Cost";
+ Text[ danish ] = "Omkostninger";
Text[ swedish ] = "Kostnader";
Text[ polish ] = "Cena";
Text[ portuguese_brazilian ] = "Cost";
@@ -7583,12 +7583,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = " o custo inicial do activo.";
Text[ russian ] = " .";
Text[ greek ] = "Cost";
- Text[ dutch ] = "Cost";
+ Text[ dutch ] = "Aanschafkosten van het activum.";
Text[ french ] = "Cot d'acquisition du bien.";
Text[ spanish ] = "Coste de la adquisicin del bien.";
Text[ finnish ] = "Resurssin hankintakustannukset";
Text[ italian ] = "Costo iniziale del bene.";
- Text[ danish ] = "Cost";
+ Text[ danish ] = "Anskaffelsesomkostninger for anlgsgoder.";
Text[ swedish ] = "Anskaffningskostnader fr tillgngen.";
Text[ polish ] = "Cena zakupu rodka trwaego.";
Text[ portuguese_brazilian ] = "Cost";
@@ -7609,19 +7609,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Date purchased";
Text[ portuguese ] = "Data";
- Text[ russian ] = "";
+ Text[ russian ] = " ";
Text[ greek ] = "Date purchased";
- Text[ dutch ] = "Date purchased";
+ Text[ dutch ] = "Datum";
Text[ french ] = "Date";
Text[ spanish ] = "Fecha";
Text[ finnish ] = "Hankintapiv";
Text[ italian ] = "Data";
- Text[ danish ] = "Date purchased";
+ Text[ danish ] = "Dato";
Text[ swedish ] = "Datum";
Text[ polish ] = "Data zakupu";
Text[ portuguese_brazilian ] = "Date purchased";
Text[ japanese ] = "購入日";
- Text[ korean ] = "구매일";
+ Text[ korean ] = "구매 날짜";
Text[ chinese_simplified ] = "date_purchased";
Text[ chinese_traditional ] = "date_purchased";
Text[ turkish ] = "Date purchased";
@@ -7639,17 +7639,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = " a data de aquisio do activo.";
Text[ russian ] = " .";
Text[ greek ] = "Date purchased";
- Text[ dutch ] = "Date purchased";
+ Text[ dutch ] = "Aanschafdatum van het activum";
Text[ french ] = "Date d'acquisition du bien.";
Text[ spanish ] = "Fecha de la adquisicin del bien.";
Text[ finnish ] = "Resurssin hankintapiv";
Text[ italian ] = "Data di acquisto del bene.";
- Text[ danish ] = "Date purchased";
+ Text[ danish ] = "Anskaffelsesdato for anlgsgoder";
Text[ swedish ] = "Anskaffningsdatum fr tillgngen";
Text[ polish ] = "Data zakupu rodka trwaego.";
Text[ portuguese_brazilian ] = "Date purchased";
Text[ japanese ] = "資産を購入した日付。";
- Text[ korean ] = "구매일";
+ Text[ korean ] = "자산 구매 날짜";
Text[ chinese_simplified ] = "资产的购入日期";
Text[ chinese_traditional ] = "購買資產的日期";
Text[ turkish ] = "Date purchased";
@@ -7665,14 +7665,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "First period";
Text[ portuguese ] = "Primeiro perodo";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "First period";
- Text[ dutch ] = "First period";
+ Text[ dutch ] = "Eerste periode";
Text[ french ] = "Premire priode";
Text[ spanish ] = "Primer perodo";
Text[ finnish ] = "Ensimminen kausi";
Text[ italian ] = "Primo periodo";
- Text[ danish ] = "First period";
+ Text[ danish ] = "Frste periode";
Text[ swedish ] = "Frsta period";
Text[ polish ] = "Pierwszy okres";
Text[ portuguese_brazilian ] = "First period";
@@ -7695,17 +7695,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = " a data que indica o final do primeiro perodo.";
Text[ russian ] = " .";
Text[ greek ] = "First period";
- Text[ dutch ] = "First period";
+ Text[ dutch ] = "Datum waarop de eerste periode eindigt.";
Text[ french ] = "Date indiquant la fin de la premire priode.";
Text[ spanish ] = "Fecha del final del primer perodo.";
Text[ finnish ] = "Ensimmisen poistokauden loppupivmr";
Text[ italian ] = "data alla fine del primo periodo contabile.";
- Text[ danish ] = "First period";
+ Text[ danish ] = "Dato for slutningen af frste periode.";
Text[ swedish ] = "Datum fr slutet p den frsta perioden.";
Text[ polish ] = "Data zakoczenia pierwszego okresu.";
Text[ portuguese_brazilian ] = "First period";
Text[ japanese ] = "最初の会計期が終了する日付。";
- Text[ korean ] = "1차 기간";
+ Text[ korean ] = "1차 기간의 최종 날짜";
Text[ chinese_simplified ] = "首期的结束日期。";
Text[ chinese_traditional ] = "第一期的結束日期。";
Text[ turkish ] = "First period";
@@ -7721,14 +7721,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Salvage";
Text[ portuguese ] = "Valor residual";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "Salvage";
- Text[ dutch ] = "Salvage";
+ Text[ dutch ] = "Restwaarde";
Text[ french ] = "Valeur rsiduelle";
Text[ spanish ] = "Valor residual";
Text[ finnish ] = "Loppuarvo";
Text[ italian ] = "Valore residuo";
- Text[ danish ] = "Salvage";
+ Text[ danish ] = "Restvrdi";
Text[ swedish ] = "Restvrde";
Text[ polish ] = "Odzysk";
Text[ portuguese_brazilian ] = "Salvage";
@@ -7751,12 +7751,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = " o valor residual do activo no fim da respectiva vida til.";
Text[ russian ] = " .";
Text[ greek ] = "Salvage";
- Text[ dutch ] = "Salvage";
+ Text[ dutch ] = "Restwaarde van het activum na afloop van de levensduur.";
Text[ french ] = "Valeur rsiduelle du bien au terme de l'amortissement.";
Text[ spanish ] = "Valor residual del bien al final de la depreciacin.";
Text[ finnish ] = "Resurssin lopullinen arvo, kun resurssi on kulutettu loppuun.";
Text[ italian ] = "Valore residuo del bene d'investimento calcolato alla fine della vita utile.";
- Text[ danish ] = "Salvage";
+ Text[ danish ] = "Restvrdi for anlgsgoderne ved slutningen af den driftskonomiske levetid.";
Text[ swedish ] = "Restvrde fr tillgngen i slutet av livslngden.";
Text[ polish ] = "Warto odzysku na koniec okresu amortyzacji.";
Text[ portuguese_brazilian ] = "Salvage";
@@ -7779,12 +7779,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Perodo";
Text[ russian ] = "";
Text[ greek ] = "Period";
- Text[ dutch ] = "Period";
+ Text[ dutch ] = "Periode";
Text[ french ] = "Priode";
Text[ spanish ] = "Perodo";
Text[ finnish ] = "Kausi";
Text[ italian ] = "Periodo";
- Text[ danish ] = "Period";
+ Text[ danish ] = "Periode";
Text[ swedish ] = "Period";
Text[ polish ] = "Okres";
Text[ portuguese_brazilian ] = "Period";
@@ -7807,12 +7807,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Perodo";
Text[ russian ] = ".";
Text[ greek ] = "Period";
- Text[ dutch ] = "Period";
+ Text[ dutch ] = "Periode";
Text[ french ] = "Priode";
Text[ spanish ] = "Perodo";
Text[ finnish ] = "Kyttkausi";
Text[ italian ] = "Periodo contabile da considerare.";
- Text[ danish ] = "Period";
+ Text[ danish ] = "Periode";
Text[ swedish ] = "Period";
Text[ polish ] = "Okres amortyzacji.";
Text[ portuguese_brazilian ] = "Period";
@@ -7835,7 +7835,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Taxa";
Text[ russian ] = "";
Text[ greek ] = "Rate";
- Text[ dutch ] = "Rate";
+ Text[ dutch ] = "Termijn";
Text[ french ] = "Taux";
Text[ spanish ] = "Tasa";
Text[ finnish ] = "Korko";
@@ -7863,17 +7863,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = " a taxa de amortizao.";
Text[ russian ] = " .";
Text[ greek ] = "Rate";
- Text[ dutch ] = "Rate";
+ Text[ dutch ] = "Afschrijving";
Text[ french ] = "Taux d'amortissement";
Text[ spanish ] = "Tasa de depreciacin";
Text[ finnish ] = "Poistonopeus";
Text[ italian ] = "Tasso di ammortamento";
- Text[ danish ] = "Rate";
+ Text[ danish ] = "Afskrivningssats";
Text[ swedish ] = "Avskrivningssats";
Text[ polish ] = "Stopa amortyzacji.";
Text[ portuguese_brazilian ] = "Rate";
Text[ japanese ] = "減価償却率";
- Text[ korean ] = "비율";
+ Text[ korean ] = "감가 상각율";
Text[ chinese_simplified ] = "折旧率";
Text[ chinese_traditional ] = "折舊率";
Text[ turkish ] = "Rate";
@@ -7891,17 +7891,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Base";
Text[ russian ] = "";
Text[ greek ] = "Year base";
- Text[ dutch ] = "Year base";
+ Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "Base";
Text[ finnish ] = "Kantaluku";
Text[ italian ] = "Base";
- Text[ danish ] = "Year base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Podstawa";
Text[ portuguese_brazilian ] = "Year base";
Text[ japanese ] = "年の基準";
- Text[ korean ] = "년식";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "basis";
Text[ chinese_traditional ] = "basis";
Text[ turkish ] = "Year base";
@@ -7919,17 +7919,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = " a base anual a ser utilizada.";
Text[ russian ] = " .";
Text[ greek ] = "Year base";
- Text[ dutch ] = "Year base";
+ Text[ dutch ] = "Gewenste jaarbasis.";
Text[ french ] = "Base annuelle utiliser.";
- Text[ spanish ] = "Tipo de base anual a usar.";
+ Text[ spanish ] = "Tipo de base anual que utilizar.";
Text[ finnish ] = "Kytettv vuosien mr";
Text[ italian ] = "Base annua da usare.";
- Text[ danish ] = "Year base";
+ Text[ danish ] = "rsbasis, som skal anvendes.";
Text[ swedish ] = "rsbas som ska anvndas.";
Text[ polish ] = "Rodzaj podstawy wyliczania dni.";
Text[ portuguese_brazilian ] = "Year base";
Text[ japanese ] = "1年を何日として計算するかの基準。";
- Text[ korean ] = "년식";
+ Text[ korean ] = "사용할 연도 기준";
Text[ chinese_simplified ] = "要使用的年天数的基数。";
Text[ chinese_traditional ] = "要使用的年天數的基準。";
Text[ turkish ] = "Year base";
@@ -7950,12 +7950,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Devolve os juros acumulados de um ttulo que paga uma taxa peridica de juros.";
Text[ russian ] = " .";
Text[ greek ] = "Return the accrued interest for a security that pays periodic interest";
- Text[ dutch ] = "Return the accrued interest for a security that pays periodic interest";
+ Text[ dutch ] = "Geeft de opgebouwde rente (lopende rente) op een waardepapier waarover periodiek rente wordt betaald.";
Text[ french ] = "Renvoie les intrts chus (ou intrts accumuls) d'un titre ; versement priodique des intrts.";
Text[ spanish ] = "Devuelve el inters acumulado para un valor con pagos peridicos de intereses.";
- Text[ finnish ] = "Palauttaa sellaisen joukkovelkakirjalainan tuoton, jolle maksetaan snnllist korkoa";
+ Text[ finnish ] = "Palauttaa sellaisen joukkovelkakirjalainan tuoton, jolle maksetaan snnllist korkoa.";
Text[ italian ] = "Restituisce gli interessi maturati (ratei) di un titolo a pagamenti periodici.";
- Text[ danish ] = "Return the accrued interest for a security that pays periodic interest";
+ Text[ danish ] = "Returnerer de plbne renter (obligationsrenter) for et vrdipapir med periodisk rentebetaling.";
Text[ swedish ] = "Returnerar de upplupna rntorna fr ett vrdepapper med periodisk rntebetalning.";
Text[ polish ] = "Podaje warto procentu skadanego papieru wartociowego o okresowym oprocentowaniu.";
Text[ portuguese_brazilian ] = "Return the accrued interest for a security that pays periodic interest";
@@ -7976,14 +7976,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Issue";
Text[ portuguese ] = "Emisso";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Issue";
- Text[ dutch ] = "Issue";
+ Text[ dutch ] = "Uitgifte";
Text[ french ] = "mission";
Text[ spanish ] = "Emisin";
Text[ finnish ] = "Julkistus";
Text[ italian ] = "Emissione";
- Text[ danish ] = "Issue";
+ Text[ danish ] = "Emission";
Text[ swedish ] = "Emission";
Text[ polish ] = "Emisja";
Text[ portuguese_brazilian ] = "Issue";
@@ -8006,17 +8006,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = " a data de emisso do ttulo.";
Text[ russian ] = " .";
Text[ greek ] = "Issue";
- Text[ dutch ] = "Issue";
+ Text[ dutch ] = "Datum waarop het waardepapier is uitgegeven.";
Text[ french ] = "Date de l'mission du titre.";
Text[ spanish ] = "Fecha de la emisin del valor.";
Text[ finnish ] = "Joukkovelkakirjan julkaisupivmr";
Text[ italian ] = "Data di emissione del titolo.";
- Text[ danish ] = "Issue";
+ Text[ danish ] = "Dato for vrdipapiremissionen.";
Text[ swedish ] = "Datum fr vrdepappersemission.";
Text[ polish ] = "Data emisji papieru wartociowego.";
Text[ portuguese_brazilian ] = "Issue";
Text[ japanese ] = "証券の発行日。";
- Text[ korean ] = "발행";
+ Text[ korean ] = "증권 발행 날짜";
Text[ chinese_simplified ] = "有价证券的发行日期。";
Text[ chinese_traditional ] = "有價證券的發行日期。";
Text[ turkish ] = "Issue";
@@ -8032,19 +8032,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "First interest";
Text[ portuguese ] = "Primeiro cupo";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "First interest";
- Text[ dutch ] = "First interest";
+ Text[ dutch ] = "Eerste rentetermijn";
Text[ french ] = "Premier coupon";
Text[ spanish ] = "Primer plazo de inters";
Text[ finnish ] = "Ensimminen korko";
Text[ italian ] = "Primo interesse";
- Text[ danish ] = "First interest";
+ Text[ danish ] = "Frste rentetermin";
Text[ swedish ] = "Frsta kupongdatum";
Text[ polish ] = "Pierwsze odsetki";
Text[ portuguese_brazilian ] = "First interest";
Text[ japanese ] = "最初の利払日";
- Text[ korean ] = "1차 이자";
+ Text[ korean ] = "최초 이자 지급일";
Text[ chinese_simplified ] = "first_interest";
Text[ chinese_traditional ] = "first_interest";
Text[ turkish ] = "First interest";
@@ -8060,14 +8060,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "First interest date of the security";
Text[ portuguese ] = " a data do primeiro pagamento dos juros do ttulo.";
- Text[ russian ] = " .";
+ Text[ russian ] = " .";
Text[ greek ] = "First interest";
- Text[ dutch ] = "First interest";
+ Text[ dutch ] = "Eerste rentetermijn van het waardepapier.";
Text[ french ] = "Date du premier paiement des intrts du titre.";
Text[ spanish ] = "Fecha del primer pago de inters del valor.";
Text[ finnish ] = "Joukkovelkakirjan ensimminen koron maksupiv";
Text[ italian ] = "Data della prima scadenza del titolo.";
- Text[ danish ] = "First interest";
+ Text[ danish ] = "Frste rentetermin for vrdipapiret.";
Text[ swedish ] = "Frsta rntedatum fr vrdepapperet.";
Text[ polish ] = "Data pierwszej raty odsetek od papieru wartociowego.";
Text[ portuguese_brazilian ] = "First interest";
@@ -8088,14 +8088,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Settlement";
Text[ portuguese ] = "Liquidao";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Settlement";
- Text[ dutch ] = "Settlement";
+ Text[ dutch ] = "Afrekening";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Liquidacin";
Text[ finnish ] = "Lunastus";
Text[ italian ] = "Liquidazione";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Rozliczenie";
Text[ portuguese_brazilian ] = "Settlement";
@@ -8118,12 +8118,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Liquidao";
Text[ russian ] = " .";
Text[ greek ] = "Settlement";
- Text[ dutch ] = "Settlement";
+ Text[ dutch ] = "Afrekening";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Liquidacin";
Text[ finnish ] = "Joukkovelkakirjan lunastuspivmr";
Text[ italian ] = "La data per la quale si calcola gli interessi maturati fino a quel momento.";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Data rozliczenia papieru wartociowego.";
Text[ portuguese_brazilian ] = "Settlement";
@@ -8146,17 +8146,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Taxa nominal";
Text[ russian ] = "";
Text[ greek ] = "Rate";
- Text[ dutch ] = "Rate";
+ Text[ dutch ] = "Nominale rente";
Text[ french ] = "Intrt nominal";
Text[ spanish ] = "Inters nominal";
Text[ finnish ] = "Korko";
Text[ italian ] = "Tasso interesse nominale";
- Text[ danish ] = "Rate";
+ Text[ danish ] = "Nominel rente";
Text[ swedish ] = "Nominell rnta";
Text[ polish ] = "Stopa";
Text[ portuguese_brazilian ] = "Rate";
Text[ japanese ] = "利率";
- Text[ korean ] = "비율";
+ Text[ korean ] = "이자율";
Text[ chinese_simplified ] = "rate";
Text[ chinese_traditional ] = "rate";
Text[ turkish ] = "Rate";
@@ -8174,17 +8174,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = " a taxa nominal do ttulo.";
Text[ russian ] = " .";
Text[ greek ] = "Rate";
- Text[ dutch ] = "Rate";
+ Text[ dutch ] = "Nominale rente";
Text[ french ] = "Intrt nominal";
Text[ spanish ] = "Inters nominal";
- Text[ finnish ] = "Joukkovelkakirjan vuosittainen kiinte korko";
+ Text[ finnish ] = "Joukkovelkakirjan korko";
Text[ italian ] = "Gli interessi nominali annuali (cedola d'interessi).";
- Text[ danish ] = "Rate";
+ Text[ danish ] = "Nominel rente";
Text[ swedish ] = "Nominell rnta";
Text[ polish ] = "Roczne oprocentowanie kuponu papieru wartociowego.";
Text[ portuguese_brazilian ] = "Rate";
Text[ japanese ] = "証券の年利";
- Text[ korean ] = "비율";
+ Text[ korean ] = "연간 이자율";
Text[ chinese_simplified ] = "年息票利率";
Text[ chinese_traditional ] = "為有價證券的年利率。";
Text[ turkish ] = "Rate";
@@ -8202,12 +8202,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Valor nominal";
Text[ russian ] = "";
Text[ greek ] = "Par";
- Text[ dutch ] = "Par";
+ Text[ dutch ] = "Nominale waarde";
Text[ french ] = "Valeur nominale";
Text[ spanish ] = "Valor nominal";
Text[ finnish ] = "Nimellisarvo";
Text[ italian ] = "Valore nominale";
- Text[ danish ] = "Par";
+ Text[ danish ] = "Plydende vrdi";
Text[ swedish ] = "Nominellt vrde";
Text[ polish ] = "Cena nominalna";
Text[ portuguese_brazilian ] = "Par";
@@ -8218,7 +8218,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ turkish ] = "Par";
Text[ arabic ] = "Par";
Text[ catalan ] = "Paritat";
- Text[ thai ] = "Par";
+ Text[ thai ] = "ค่าพาร์";
};
String 11 // description of parameter 5 Accrint
@@ -8230,12 +8230,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Valor nominal";
Text[ russian ] = " .";
Text[ greek ] = "Par";
- Text[ dutch ] = "Par";
+ Text[ dutch ] = "Nominale waarde";
Text[ french ] = "Valeur nominale";
Text[ spanish ] = "Valor nominal";
- Text[ finnish ] = "Joukkovelkakirjan nimellisarvo";
+ Text[ finnish ] = "Nimellisarvo";
Text[ italian ] = "Valore nominale";
- Text[ danish ] = "Par";
+ Text[ danish ] = "Plydende vrdi";
Text[ swedish ] = "Nominellt vrde";
Text[ polish ] = "Warto nominalna papieru wartociowego.";
Text[ portuguese_brazilian ] = "Par";
@@ -8246,7 +8246,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ turkish ] = "Par";
Text[ arabic ] = "Par";
Text[ catalan ] = "Paritat";
- Text[ thai ] = "The par value";
+ Text[ thai ] = "ค่าพาร์";
};
String 12 // name of parameter 6 Accrint
@@ -8258,12 +8258,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Frequncia";
Text[ russian ] = "";
Text[ greek ] = "Frequency";
- Text[ dutch ] = "Frequency";
+ Text[ dutch ] = "Frequentie";
Text[ french ] = "Frquence";
Text[ spanish ] = "Frecuencia";
Text[ finnish ] = "Maksut";
Text[ italian ] = "Frequenza";
- Text[ danish ] = "Frequency";
+ Text[ danish ] = "Frekvens";
Text[ swedish ] = "Frekvens";
Text[ polish ] = "Czsto";
Text[ portuguese_brazilian ] = "Frequency";
@@ -8286,12 +8286,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Frequncia";
Text[ russian ] = " .";
Text[ greek ] = "Frequency";
- Text[ dutch ] = "Frequency";
+ Text[ dutch ] = "Frequentie";
Text[ french ] = "Frquence";
Text[ spanish ] = "El nmero de cupones a pagar.";
Text[ finnish ] = "Kiinteiden korkomaksujen mr vuodessa";
Text[ italian ] = "Frequenza";
- Text[ danish ] = "Frequency";
+ Text[ danish ] = "Frekvens";
Text[ swedish ] = "Frekvens";
Text[ polish ] = "Liczba kuponw patnych w cigu roku.";
Text[ portuguese_brazilian ] = "Frequency";
@@ -8314,17 +8314,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Base";
Text[ russian ] = "";
Text[ greek ] = "Base";
- Text[ dutch ] = "Base";
+ Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "Base";
Text[ finnish ] = "Kantaluku";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Podstawa";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "基準";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "basis";
Text[ chinese_traditional ] = "basis";
Text[ turkish ] = "Base";
@@ -8342,17 +8342,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Base";
Text[ russian ] = " .";
Text[ greek ] = "Base";
- Text[ dutch ] = "Base";
+ Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "Base";
- Text[ finnish ] = "Kytettv kantaluku";
+ Text[ finnish ] = "Kytettv vuosien mr";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Rodzaj podstawy wyliczania dni.";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "利息計算の基礎となる日数の計算方法";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "计算利息的基数";
Text[ chinese_traditional ] = "為計算利息的日期基準";
Text[ turkish ] = "Base";
@@ -8373,12 +8373,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Devolve a taxa de juro acumulada de um ttulo que paga juros no vencimento.";
Text[ russian ] = " , .";
Text[ greek ] = "Return the accrued interest for a security that pays interest at maturity";
- Text[ dutch ] = "Return the accrued interest for a security that pays interest at maturity";
+ Text[ dutch ] = "Geeft de opgebouwde rente (lopende rente) op een waardepapier die na de vervaldatum wordt uitbetaald.";
Text[ french ] = "Renvoie les intrts chus (ou intrts accumuls) d'un titre ; versement des intrts chance.";
Text[ spanish ] = "Devuelve el inters acumulado de un valor que se pagar al vencimiento.";
- Text[ finnish ] = "Palauttaa sellaisen joukkovelkakirjan tuoton, jolle suoritetaan korko velkakirjan erntyess";
+ Text[ finnish ] = "Palauttaa sellaisen joukkovelkakirjan tuoton, jolle suoritetaan korko velkakirjan erntyess.";
Text[ italian ] = "Restituisce gli interessi maturati (ratei) di un titolo a pagamento unico alla data di scadenza.";
- Text[ danish ] = "Return the accrued interest for a security that pays interest at maturity";
+ Text[ danish ] = "Returnerer de plbne renter (obligationsrenter) for et vrdipapir, som udbetales ved forfald.";
Text[ swedish ] = "Returnerar ett vrdepappers upplupna rntor som betalas ut p frfallodagen.";
Text[ polish ] = "Podaje warto procentu skadanego papieru wartociowego oprocentowanego przy wykupie.";
Text[ portuguese_brazilian ] = "Return the accrued interest for a security that pays interest at maturity";
@@ -8399,14 +8399,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Issue";
Text[ portuguese ] = "Emisso";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Issue";
- Text[ dutch ] = "Issue";
+ Text[ dutch ] = "Uitgifte";
Text[ french ] = "mission";
Text[ spanish ] = "Emisin";
Text[ finnish ] = "Julkistus";
Text[ italian ] = "Emissione";
- Text[ danish ] = "Issue";
+ Text[ danish ] = "Emission";
Text[ swedish ] = "Emission";
Text[ polish ] = "Emisja";
Text[ portuguese_brazilian ] = "Issue";
@@ -8429,12 +8429,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Emisso";
Text[ russian ] = " .";
Text[ greek ] = "Issue";
- Text[ dutch ] = "Issue";
+ Text[ dutch ] = "Uitgifte";
Text[ french ] = "mission";
Text[ spanish ] = "Emisin";
Text[ finnish ] = "Joukkovelkakirjan julkaisupivmr";
Text[ italian ] = "Emissione";
- Text[ danish ] = "Issue";
+ Text[ danish ] = "Emission";
Text[ swedish ] = "Emission";
Text[ polish ] = "Data emisji papieru wartociowego.";
Text[ portuguese_brazilian ] = "Issue";
@@ -8455,14 +8455,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Settlement";
Text[ portuguese ] = "Liquidao";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Settlement";
- Text[ dutch ] = "Settlement";
+ Text[ dutch ] = "Afrekening";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Liquidacin";
Text[ finnish ] = "Lunastus";
Text[ italian ] = "Liquidazione";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Rozliczenie";
Text[ portuguese_brazilian ] = "Settlement";
@@ -8483,14 +8483,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The settlement";
Text[ portuguese ] = "Liquidao";
- Text[ russian ] = " ( ) .";
+ Text[ russian ] = " .";
Text[ greek ] = "Settlement";
- Text[ dutch ] = "Settlement";
+ Text[ dutch ] = "Afrekening";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Liquidacin";
- Text[ finnish ] = "Lunastus";
+ Text[ finnish ] = "Joukkovelkakirjan lunastuspivmr";
Text[ italian ] = "La data di scadenza";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Data rozliczenia papieru wartociowego.";
Text[ portuguese_brazilian ] = "Settlement";
@@ -8513,17 +8513,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Taxa nominal";
Text[ russian ] = "";
Text[ greek ] = "Rate";
- Text[ dutch ] = "Rate";
+ Text[ dutch ] = "Nominale rente";
Text[ french ] = "Intrt nominal";
Text[ spanish ] = "Inters nominal";
Text[ finnish ] = "Korko";
Text[ italian ] = "Tasso interesse nominale";
- Text[ danish ] = "Rate";
+ Text[ danish ] = "Nominel rente";
Text[ swedish ] = "Nominell rnta";
Text[ polish ] = "Stopa";
Text[ portuguese_brazilian ] = "Rate";
Text[ japanese ] = "利率";
- Text[ korean ] = "비율";
+ Text[ korean ] = "연간 이자율";
Text[ chinese_simplified ] = "rate";
Text[ chinese_traditional ] = "rate";
Text[ turkish ] = "Rate";
@@ -8541,17 +8541,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Taxa nominal";
Text[ russian ] = " .";
Text[ greek ] = "Rate";
- Text[ dutch ] = "Rate";
+ Text[ dutch ] = "Nominale rente";
Text[ french ] = "Intrt nominal";
Text[ spanish ] = "Inters nominal";
- Text[ finnish ] = "Korko";
+ Text[ finnish ] = "Joukkovelkakirjan vuosittainen kiinte korko";
Text[ italian ] = "Gli interessi nominali annuali (cedola d'interessi)";
- Text[ danish ] = "Rate";
+ Text[ danish ] = "Nominel rente";
Text[ swedish ] = "Nominell rnta";
Text[ polish ] = "Roczne oprocentowanie kuponu papieru wartociowego.";
Text[ portuguese_brazilian ] = "Rate";
Text[ japanese ] = "証券の年利";
- Text[ korean ] = "비율";
+ Text[ korean ] = "연간 이자율";
Text[ chinese_simplified ] = "有价证券的年息票利率";
Text[ chinese_traditional ] = "為有價證券的年利率。";
Text[ turkish ] = "Rate";
@@ -8569,12 +8569,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Valor nominal";
Text[ russian ] = "";
Text[ greek ] = "Par";
- Text[ dutch ] = "Par";
+ Text[ dutch ] = "Nominale waarde";
Text[ french ] = "Valeur nominale";
Text[ spanish ] = "Valor nominal";
Text[ finnish ] = "Nimellisarvo";
Text[ italian ] = "Valore nominale";
- Text[ danish ] = "Par";
+ Text[ danish ] = "Plydende vrdi";
Text[ swedish ] = "Nominellt vrde";
Text[ polish ] = "Cena nominalna";
Text[ portuguese_brazilian ] = "Par";
@@ -8597,12 +8597,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Valor nominal";
Text[ russian ] = " .";
Text[ greek ] = "Par";
- Text[ dutch ] = "Par";
+ Text[ dutch ] = "Nominale waarde";
Text[ french ] = "Valeur nominale";
Text[ spanish ] = "Valor nominal";
- Text[ finnish ] = "Nimellisarvo";
+ Text[ finnish ] = "Joukkovelkakirjan nimellisarvo";
Text[ italian ] = "Valore nominale del titolo.";
- Text[ danish ] = "Par";
+ Text[ danish ] = "Plydende vrdi";
Text[ swedish ] = "Nominellt vrde";
Text[ polish ] = "Warto nominalna papieru wartociowego.";
Text[ portuguese_brazilian ] = "Par";
@@ -8625,12 +8625,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Base";
Text[ russian ] = "";
Text[ greek ] = "Base";
- Text[ dutch ] = "Base";
+ Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "Base";
Text[ finnish ] = "Kantaluku";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Podstawa";
Text[ portuguese_brazilian ] = "Base";
@@ -8653,12 +8653,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Base";
Text[ russian ] = " .";
Text[ greek ] = "Base";
- Text[ dutch ] = "Base";
+ Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "Base";
Text[ finnish ] = "Kytettv vuosien mr";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Rodzaj podstawy wyliczania dni.";
Text[ portuguese_brazilian ] = "Base";
@@ -8684,12 +8684,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Devolve a quantia recebida no vencimento de um ttulo totalmente investido.";
Text[ russian ] = " , .";
Text[ greek ] = "Returns the amount received at maturity for a fully invested security";
- Text[ dutch ] = "Returns the amount received at maturity for a fully invested security";
+ Text[ dutch ] = "Geeft het rendement na de vervaldatum van een volledig genvesteerd waardepapier.";
Text[ french ] = "Renvoie le montant du versement au terme de l'chance pour une obligation.";
Text[ spanish ] = "Devuelve la cantidad recibida al vencimiento de un valor totalmente invertido.";
Text[ finnish ] = "Palauttaa joukkovelkakirjan erntyess maksettavan summan";
Text[ italian ] = "Restituisce l'importo che si ottiene a una determinata scadenza per un titolo a interesse fissato.";
- Text[ danish ] = "Returns the amount received at maturity for a fully invested security";
+ Text[ danish ] = "Returnerer belb til udbetaling for et fuldt investeret vrdipapir p forfaldsdagen.";
Text[ swedish ] = "Returnerar beloppet som utbetalas p frfallodagen fr ett fullinvesterat vrdepapper.";
Text[ polish ] = "Podaje warto kapitau otrzymanego przy wykupie papieru wartociowego cakowicie ulokowanego.";
Text[ portuguese_brazilian ] = "Returns the amount received at maturity for a fully invested security";
@@ -8710,14 +8710,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Settlement";
Text[ portuguese ] = "Liquidao";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Settlement";
- Text[ dutch ] = "Settlement";
+ Text[ dutch ] = "Afrekening";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Liquidacin";
Text[ finnish ] = "Lunastus";
Text[ italian ] = "Liquidazione";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Rozliczenie";
Text[ portuguese_brazilian ] = "Settlement";
@@ -8740,12 +8740,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Liquidao";
Text[ russian ] = " .";
Text[ greek ] = "Settlement";
- Text[ dutch ] = "Settlement";
+ Text[ dutch ] = "Afrekening";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Liquidacin";
Text[ finnish ] = "Joukkovelkakirjan lunastuspivmr";
Text[ italian ] = "Data di acquisto del titolo";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Data rozliczenia papieru wartociowego.";
Text[ portuguese_brazilian ] = "Settlement";
@@ -8766,14 +8766,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Maturity";
Text[ portuguese ] = "Vencimento";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Maturity";
- Text[ dutch ] = "Maturity";
+ Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Vencimiento";
- Text[ finnish ] = "Maksu";
+ Text[ finnish ] = "Erntyminen";
Text[ italian ] = "Scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty";
Text[ portuguese_brazilian ] = "Maturity";
@@ -8796,12 +8796,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Vencimento";
Text[ russian ] = " .";
Text[ greek ] = "Maturity";
- Text[ dutch ] = "Maturity";
+ Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Vencimiento";
- Text[ finnish ] = "Maksu";
+ Text[ finnish ] = "Joukkovelkakirjan erntymispivmr";
Text[ italian ] = "Data di scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty papieru wartociowego.";
Text[ portuguese_brazilian ] = "Maturity";
@@ -8824,12 +8824,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Investimento";
Text[ russian ] = "";
Text[ greek ] = "Investment";
- Text[ dutch ] = "Investment";
+ Text[ dutch ] = "Bijlage";
Text[ french ] = "Investissement";
Text[ spanish ] = "Inversin";
Text[ finnish ] = "Sijoitus";
Text[ italian ] = "Investimento";
- Text[ danish ] = "Investment";
+ Text[ danish ] = "Investering";
Text[ swedish ] = "Investering";
Text[ polish ] = "Lokata";
Text[ portuguese_brazilian ] = "Investment";
@@ -8852,12 +8852,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = " a quantia investida no ttulo.";
Text[ russian ] = " .";
Text[ greek ] = "Investment";
- Text[ dutch ] = "Investment";
+ Text[ dutch ] = "Bijlage";
Text[ french ] = "Investissement";
Text[ spanish ] = "Inversin";
Text[ finnish ] = "Sijoitus";
Text[ italian ] = "Il prezzo di acquisto.";
- Text[ danish ] = "Investment";
+ Text[ danish ] = "Investering";
Text[ swedish ] = "Investering";
Text[ polish ] = "Kwota zainwestowana w papier wartociowy.";
Text[ portuguese_brazilian ] = "Investment";
@@ -8880,12 +8880,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Desconto";
Text[ russian ] = "";
Text[ greek ] = "Discount";
- Text[ dutch ] = "Discount";
+ Text[ dutch ] = "Disconto";
Text[ french ] = "Escompte";
Text[ spanish ] = "TASA.DESC";
Text[ finnish ] = "Tappio";
Text[ italian ] = "Sconto";
- Text[ danish ] = "Discount";
+ Text[ danish ] = "Diskonto";
Text[ swedish ] = "Diskonteringsrnta";
Text[ polish ] = "Dyskonto";
Text[ portuguese_brazilian ] = "Discount";
@@ -8908,12 +8908,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = " a taxa de desconto do ttulo.";
Text[ russian ] = " .";
Text[ greek ] = "Discount";
- Text[ dutch ] = "Discount";
+ Text[ dutch ] = "Disconto";
Text[ french ] = "Escompte";
Text[ spanish ] = "Es la tasa de descuento de un valor.";
Text[ finnish ] = "Tappio";
Text[ italian ] = "La percentuale di riduzione all'acquisto del titolo.";
- Text[ danish ] = "Discount";
+ Text[ danish ] = "Diskonto";
Text[ swedish ] = "Diskonteringsrnta";
Text[ polish ] = "Stopa dyskontowa papieru wartociowego.";
Text[ portuguese_brazilian ] = "Discount";
@@ -8936,17 +8936,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Base";
Text[ russian ] = "";
Text[ greek ] = "Base";
- Text[ dutch ] = "Base";
+ Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "Base";
Text[ finnish ] = "Kantaluku";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Podstawa";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "基準";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "basis";
Text[ chinese_traditional ] = "basis";
Text[ turkish ] = "Base";
@@ -8964,17 +8964,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Base";
Text[ russian ] = " .";
Text[ greek ] = "Base";
- Text[ dutch ] = "Base";
+ Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "Base";
- Text[ finnish ] = "Kantaluku";
+ Text[ finnish ] = "Kytettv vuosien mr";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Rodzaj podstawy wyliczania dni.";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "利息計算の基礎となる日数の計算方法";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "使用的年天数的基数";
Text[ chinese_traditional ] = "要使用的年天數的基準。";
Text[ turkish ] = "Base";
@@ -8993,14 +8993,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Returns the discount rate for a security";
Text[ portuguese ] = "Devolve a taxa de desconto de um ttulo.";
- Text[ russian ] = " .";
+ Text[ russian ] = " ( ).";
Text[ greek ] = "Returns the discount rate for a security";
- Text[ dutch ] = "Returns the discount rate for a security";
+ Text[ dutch ] = "Geeft de percentuele korting (disconto) op een waardepapier";
Text[ french ] = "Renvoie le taux d'escompte d'un titre.";
Text[ spanish ] = "Es la tasa de descuento de un valor.";
Text[ finnish ] = "Palauttaa joukkovelkakirjalainan tappioprosentin";
Text[ italian ] = "Restituisce la percentuale di riduzione (sconto) di un titolo.";
- Text[ danish ] = "Returns the discount rate for a security";
+ Text[ danish ] = "Returnerer det procentuelle afslag (diskonto) p et vrdipapir";
Text[ swedish ] = "Returnerar diskonteringsrntan fr ett vrdepapper";
Text[ polish ] = "Podaje warto stopy dyskontowej papieru wartociowego.";
Text[ portuguese_brazilian ] = "Returns the discount rate for a security";
@@ -9021,14 +9021,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Settlement";
Text[ portuguese ] = "Liquidao";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Settlement";
- Text[ dutch ] = "Settlement";
+ Text[ dutch ] = "Afrekening";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Liquidacin";
Text[ finnish ] = "Lunastus";
Text[ italian ] = "Liquidazione";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Rozliczenie";
Text[ portuguese_brazilian ] = "Settlement";
@@ -9051,12 +9051,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Liquidao";
Text[ russian ] = " .";
Text[ greek ] = "Settlement";
- Text[ dutch ] = "Settlement";
+ Text[ dutch ] = "Afrekening";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Liquidacin";
Text[ finnish ] = "Joukkovelkakirjan lunastuspivmr";
Text[ italian ] = "Data di acquisto del titolo";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Data rozliczenia papieru wartociowego.";
Text[ portuguese_brazilian ] = "Settlement";
@@ -9077,14 +9077,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Maturity";
Text[ portuguese ] = "Vencimento";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Maturity";
- Text[ dutch ] = "Maturity";
+ Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Vencimiento";
Text[ finnish ] = "Erntyminen";
Text[ italian ] = "Scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty";
Text[ portuguese_brazilian ] = "Maturity";
@@ -9107,12 +9107,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Vencimento";
Text[ russian ] = " .";
Text[ greek ] = "Maturity";
- Text[ dutch ] = "Maturity";
+ Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Vencimiento";
Text[ finnish ] = "Joukkovelkakirjan erntymispivmr";
Text[ italian ] = "Tipo di scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty papieru wartociowego.";
Text[ portuguese_brazilian ] = "Maturity";
@@ -9133,14 +9133,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Price";
Text[ portuguese ] = "Preo";
- Text[ russian ] = "";
+ Text[ russian ] = "";
Text[ greek ] = "Price";
- Text[ dutch ] = "Price";
+ Text[ dutch ] = "Koers";
Text[ french ] = "Prix";
Text[ spanish ] = "Cotizacin";
Text[ finnish ] = "Hinta";
Text[ italian ] = "Prezzo";
- Text[ danish ] = "Price";
+ Text[ danish ] = "Kurs";
Text[ swedish ] = "Pris";
Text[ polish ] = "Kurs";
Text[ portuguese_brazilian ] = "Price";
@@ -9161,14 +9161,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The price";
Text[ portuguese ] = " o preo do ttulo por 1 Euro de valor nominal.";
- Text[ russian ] = " () .";
+ Text[ russian ] = " .";
Text[ greek ] = "Price";
- Text[ dutch ] = "Price";
+ Text[ dutch ] = "Koers";
Text[ french ] = "Prix";
Text[ spanish ] = "Es la cotizacin burstil del valor.";
- Text[ finnish ] = "Joukkovelkakirjan hinta nimellisarvoa (100) kohti";
+ Text[ finnish ] = "Joukkovelkakirjan hinta";
Text[ italian ] = "Il prezzo del titolo per un valore nominale di 100 unit monetarie";
- Text[ danish ] = "Price";
+ Text[ danish ] = "Kurs";
Text[ swedish ] = "Pris";
Text[ polish ] = "Cena papieru wartociowego.";
Text[ portuguese_brazilian ] = "Price";
@@ -9189,14 +9189,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Redemption";
Text[ portuguese ] = "Reembolso";
- Text[ russian ] = "";
+ Text[ russian ] = "";
Text[ greek ] = "Redemption";
- Text[ dutch ] = "Redemption";
+ Text[ dutch ] = "Aflossingsbedrag";
Text[ french ] = "Remboursement";
Text[ spanish ] = "Devolucin";
Text[ finnish ] = "Lunastus";
Text[ italian ] = "Rimborso";
- Text[ danish ] = "Redemption";
+ Text[ danish ] = "Tilbagebetaling";
Text[ swedish ] = "Inlsningsvrde";
Text[ polish ] = "Wykup";
Text[ portuguese_brazilian ] = "Redemption";
@@ -9219,12 +9219,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Reembolso";
Text[ russian ] = " .";
Text[ greek ] = "Redemption";
- Text[ dutch ] = "Redemption";
+ Text[ dutch ] = "Aflossingsbedrag";
Text[ french ] = "Remboursement";
Text[ spanish ] = "Devolucin";
- Text[ finnish ] = "Joukkovelkakirjan lunastusarvo nimellisarvoa (100) kohti";
+ Text[ finnish ] = "Joukkovelkakirjan lunastusarvo";
Text[ italian ] = "Il valore di rimborso";
- Text[ danish ] = "Redemption";
+ Text[ danish ] = "Tilbagebetaling";
Text[ swedish ] = "Inlsningsvrde";
Text[ polish ] = "Warto wykupu papieru wartociowego.";
Text[ portuguese_brazilian ] = "Redemption";
@@ -9247,17 +9247,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Base";
Text[ russian ] = "";
Text[ greek ] = "Base";
- Text[ dutch ] = "Base";
+ Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "Base";
Text[ finnish ] = "Kantaluku";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Podstawa";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "基準";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "basis";
Text[ chinese_traditional ] = "basis";
Text[ turkish ] = "Base";
@@ -9275,17 +9275,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Base";
Text[ russian ] = " .";
Text[ greek ] = "Base";
- Text[ dutch ] = "Base";
+ Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "Base";
- Text[ finnish ] = "Kantaluku";
+ Text[ finnish ] = "Kytettv vuosien mr";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Rodzaj podstawy wyliczania dni.";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "利息計算の基礎となる日数の計算方法";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "年天数的基数";
Text[ chinese_traditional ] = "要是使用的年天數的基準。";
Text[ turkish ] = "Base";
@@ -9304,14 +9304,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Returns the annual Macaulay duration of a security with periodic interest payments";
Text[ portuguese ] = "Devolve a durao Macauley de um ttulo com pagamentos de juros peridicos.";
- Text[ russian ] = " .";
+ Text[ russian ] = " .";
Text[ greek ] = "Returns the annual duration of a security with periodic interest payments";
- Text[ dutch ] = "Returns the annual duration of a security with periodic interest payments";
+ Text[ dutch ] = "Geeft de jaarlijkse Macaulay-looptijd van een waardepapier waarover periodiek rente wordt betaald.";
Text[ french ] = "Renvoie la dure Macaulay d'un titre avec des paiements d'intrts priodiques.";
Text[ spanish ] = "Devuelve la duracin anual Macaulay de un valor con pagos peridicos de intereses.";
Text[ finnish ] = "Palauttaa joukkovelkakirjan (snnllinen korko) vuosittaisen Macauley-keston.";
Text[ italian ] = "Restituisce la durata annuale (formula Macaulay) di un titolo che paga interessi periodici.";
- Text[ danish ] = "Returns the annual duration of a security with periodic interest payments";
+ Text[ danish ] = "Returnerer den rlige Macauley-lbetid for et vrdipapir med periodisk rentebetaling.";
Text[ swedish ] = "Returnerar den rliga Macauley-lptiden fr ett vrdepapper med periodisk rntebetalning.";
Text[ polish ] = "Podaje warto rocznego okresu Macauley'a w przypadku papieru wartociowego o okresowych wypatach odsetek.";
Text[ portuguese_brazilian ] = "Returns the annual duration of a security with periodic interest payments";
@@ -9332,14 +9332,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Settlement";
Text[ portuguese ] = "Liquidao";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Settlement";
- Text[ dutch ] = "Settlement";
+ Text[ dutch ] = "Afrekening";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Liquidacin";
Text[ finnish ] = "Lunastus";
Text[ italian ] = "Liquidazione";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Rozliczenie";
Text[ portuguese_brazilian ] = "Settlement";
@@ -9362,12 +9362,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Liquidao";
Text[ russian ] = " .";
Text[ greek ] = "Settlement";
- Text[ dutch ] = "Settlement";
+ Text[ dutch ] = "Afrekening";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Fecha de liquidacin del valor.";
- Text[ finnish ] = "Lunastus";
+ Text[ finnish ] = "Joukkovelkakirjan lunastuspivmr";
Text[ italian ] = "Data di acquisto del titolo";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Data rozliczenia papieru wartociowego.";
Text[ portuguese_brazilian ] = "Settlement";
@@ -9388,14 +9388,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Maturity";
Text[ portuguese ] = "Vencimento";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Maturity";
- Text[ dutch ] = "Maturity";
+ Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Vencimiento";
Text[ finnish ] = "Erntyminen";
Text[ italian ] = "Scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty";
Text[ portuguese_brazilian ] = "Maturity";
@@ -9418,12 +9418,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Vencimento";
Text[ russian ] = " .";
Text[ greek ] = "Maturity";
- Text[ dutch ] = "Maturity";
+ Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Fecha de vencimiento del valor.";
- Text[ finnish ] = "Erntyminen";
+ Text[ finnish ] = "Joukkovelkakirjan erntymispivmr";
Text[ italian ] = "Data di scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty papieru wartociowego.";
Text[ portuguese_brazilian ] = "Maturity";
@@ -9444,19 +9444,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Coupon";
Text[ portuguese ] = "Nominal";
- Text[ russian ] = "";
+ Text[ russian ] = "";
Text[ greek ] = "Coupon";
- Text[ dutch ] = "Coupon";
+ Text[ dutch ] = "Nominale rente";
Text[ french ] = "Intrt nominal";
Text[ spanish ] = "Inters nominal";
Text[ finnish ] = "Kiinte korko";
Text[ italian ] = "Tasso interesse nominale";
- Text[ danish ] = "Coupon";
+ Text[ danish ] = "Nominel rente";
Text[ swedish ] = "Nominell rnta";
Text[ polish ] = "Kupon";
Text[ portuguese_brazilian ] = "Coupon";
Text[ japanese ] = "利札";
- Text[ korean ] = "이자표";
+ Text[ korean ] = "이자";
Text[ chinese_simplified ] = "coupon";
Text[ chinese_traditional ] = "coupon";
Text[ turkish ] = "Coupon";
@@ -9474,17 +9474,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Nominal";
Text[ russian ] = " .";
Text[ greek ] = "Coupon";
- Text[ dutch ] = "Coupon";
+ Text[ dutch ] = "Nominale rente";
Text[ french ] = "Intrt nominal";
Text[ spanish ] = "Tasa de inters nominal anual.";
Text[ finnish ] = "Kiinte korko";
Text[ italian ] = "Interesse nominale annuale (cedola d'interessi).";
- Text[ danish ] = "Coupon";
+ Text[ danish ] = "Nominel rente";
Text[ swedish ] = "Nominell rnta";
Text[ polish ] = "Roczne oprocentowanie kuponu papieru wartociowego.";
Text[ portuguese_brazilian ] = "Coupon";
Text[ japanese ] = "証券の年利";
- Text[ korean ] = "이자표";
+ Text[ korean ] = "연간 이자율";
Text[ chinese_simplified ] = "有价证券的年息票利率";
Text[ chinese_traditional ] = "為有價證券的年利率。";
Text[ turkish ] = "Coupon";
@@ -9502,17 +9502,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Rendimento";
Text[ russian ] = "";
Text[ greek ] = "Yield";
- Text[ dutch ] = "Yield";
+ Text[ dutch ] = "Rendement";
Text[ french ] = "Rendement";
Text[ spanish ] = "Rdito";
Text[ finnish ] = "Tuotto";
Text[ italian ] = "Rendimento";
- Text[ danish ] = "Yield";
+ Text[ danish ] = "Afkast";
Text[ swedish ] = "Avkastning";
Text[ polish ] = "Rentowno";
Text[ portuguese_brazilian ] = "Yield";
Text[ japanese ] = "利回り";
- Text[ korean ] = "산출금";
+ Text[ korean ] = "투자 수익";
Text[ chinese_simplified ] = "yield";
Text[ chinese_traditional ] = "yield";
Text[ turkish ] = "Yield";
@@ -9528,19 +9528,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The yield";
Text[ portuguese ] = "Rendimento";
- Text[ russian ] = " .";
+ Text[ russian ] = " .";
Text[ greek ] = "Yield";
- Text[ dutch ] = "Yield";
+ Text[ dutch ] = "Rendement";
Text[ french ] = "Rendement";
Text[ spanish ] = "El rendimiento anual del valor.";
Text[ finnish ] = "Tuotto";
Text[ italian ] = "Rendimento annuo del titolo.";
- Text[ danish ] = "Yield";
+ Text[ danish ] = "Afkast";
Text[ swedish ] = "Avkastning";
Text[ polish ] = "Roczna rentowno papieru wartociowego.";
Text[ portuguese_brazilian ] = "Yield";
Text[ japanese ] = "証券の年間配当";
- Text[ korean ] = "산출금";
+ Text[ korean ] = "투자 수익";
Text[ chinese_simplified ] = "有价证券的年收益率。";
Text[ chinese_traditional ] = "為有價證券的年收益率。";
Text[ turkish ] = "Yield";
@@ -9558,12 +9558,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Frequncia";
Text[ russian ] = "";
Text[ greek ] = "Frequency";
- Text[ dutch ] = "Frequency";
+ Text[ dutch ] = "Frequentie";
Text[ french ] = "Frquence";
Text[ spanish ] = "Frecuencia";
- Text[ finnish ] = "Taajuus";
+ Text[ finnish ] = "Maksut";
Text[ italian ] = "Frequenza";
- Text[ danish ] = "Frequency";
+ Text[ danish ] = "Frekvens";
Text[ swedish ] = "Frekvens";
Text[ polish ] = "Czsto";
Text[ portuguese_brazilian ] = "Frequency";
@@ -9584,14 +9584,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The frequency";
Text[ portuguese ] = "Frequncia";
- Text[ russian ] = " .";
+ Text[ russian ] = " .";
Text[ greek ] = "Frequency";
- Text[ dutch ] = "Frequency";
+ Text[ dutch ] = "Frequentie";
Text[ french ] = "Frquence";
Text[ spanish ] = "El nmero de inters en cupones a pagar anualmente.";
- Text[ finnish ] = "Taajuus";
+ Text[ finnish ] = "Kiinteiden korkomaksujen mr vuodessa";
Text[ italian ] = "Numero di pagamenti degli interessi all'anno (1, 2 oppure 4).";
- Text[ danish ] = "Frequency";
+ Text[ danish ] = "Frekvens";
Text[ swedish ] = "Frekvens";
Text[ polish ] = "Liczba kuponw patnych w cigu roku.";
Text[ portuguese_brazilian ] = "Frequency";
@@ -9614,17 +9614,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Base";
Text[ russian ] = "";
Text[ greek ] = "Base";
- Text[ dutch ] = "Base";
+ Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "Base";
Text[ finnish ] = "Kantaluku";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Podstawa";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "基準";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "basis";
Text[ chinese_traditional ] = "basis";
Text[ turkish ] = "Base";
@@ -9642,17 +9642,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Base";
Text[ russian ] = " .";
Text[ greek ] = "Base";
- Text[ dutch ] = "Base";
+ Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "El tipo de base en el que deben contarse los das.";
- Text[ finnish ] = "Kantaluku";
+ Text[ finnish ] = "Kytettv vuosien mr";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Rodzaj podstawy wyliczania dni.";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "利息計算の基礎となる日数の計算方法";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "年天数的基数";
Text[ chinese_traditional ] = "要使用的年天數的基準。";
Text[ turkish ] = "Base";
@@ -9670,14 +9670,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ english ] = "Returns the effectiv annual interest rate";
Text[ english_us ] = "Returns the effective annual interest rate";
Text[ portuguese ] = "Devolve a taxa de juro anual efectiva.";
- Text[ russian ] = " .";
+ Text[ russian ] = " .";
Text[ greek ] = "Returns the effectiv annual interest rate";
- Text[ dutch ] = "Geeft als resultaat het jaarlijkse effectieve rentepercentage.";
+ Text[ dutch ] = "Geeft de jaarlijkse werkelijke renteopbrengst.";
Text[ french ] = "Renvoie le taux d'intrt effectif annuel.";
Text[ spanish ] = "Devuelve el inters efectivo anual.";
- Text[ finnish ] = "Returns the effectiv annual interest rate";
+ Text[ finnish ] = "Palauttaa todellisen vuosikoron";
Text[ italian ] = "Restituisce il tasso d'interesse effettivo annuale.";
- Text[ danish ] = "Returns the effectiv annual interest rate";
+ Text[ danish ] = "Returnerer den rlige effektive rente.";
Text[ swedish ] = "Returnerar den rliga effektiva rntan.";
Text[ polish ] = "Podaje warto efektywnej rocznej stopy oprocentowania.";
Text[ portuguese_brazilian ] = "Returns the effectiv annual interest rate";
@@ -9687,7 +9687,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "傳回某一項投資的實際年利率。";
Text[ turkish ] = "Returns the effectiv annual interest rate";
Text[ arabic ] = "Returns the effectiv annual interest rate";
- Text[ catalan ] = "Returns the effectiv annual interest rate";
+ Text[ catalan ] = "Torna el valor de l'inters anual efectiu";
Text[ thai ] = "ส่งกลับอัตราดอกเบี้ยประจำปีที่เป็นผล";
};
@@ -9697,24 +9697,24 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ english ] = "Nominalzins";
Text[ english_us ] = "Nominal rate";
Text[ portuguese ] = "Juro nominal";
- Text[ russian ] = "";
+ Text[ russian ] = " ";
Text[ greek ] = "Nominalzins";
Text[ dutch ] = "Nominale rente";
Text[ french ] = "Intrt nominal";
Text[ spanish ] = "Inters nominal";
- Text[ finnish ] = "Korko";
+ Text[ finnish ] = "Nimelliskorko";
Text[ italian ] = "Tasso interesse nominale";
- Text[ danish ] = "Nominalzins";
+ Text[ danish ] = "Nominel rente";
Text[ swedish ] = "Nominell rnta";
Text[ polish ] = "Stopa nominalna";
Text[ portuguese_brazilian ] = "Nominalzins";
Text[ japanese ] = "名目利率";
- Text[ korean ] = "액면 이자";
+ Text[ korean ] = "명목 이자";
Text[ chinese_simplified ] = "nominal_rate";
Text[ chinese_traditional ] = "nominal_rate";
Text[ turkish ] = "Nominalzins";
Text[ arabic ] = "Nominalzins";
- Text[ catalan ] = "Taxa";
+ Text[ catalan ] = "Inters nominal";
Text[ thai ] = "อัตราตามตัวเลข";
};
@@ -9729,19 +9729,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Nominale rente";
Text[ french ] = "Intrt nominal";
Text[ spanish ] = "Inters nominal";
- Text[ finnish ] = "Korko";
+ Text[ finnish ] = "Nimelliskorko";
Text[ italian ] = "Tasso interesse nominale";
- Text[ danish ] = "Nominalzins";
+ Text[ danish ] = "Nominel rente";
Text[ swedish ] = "Nominell rnta";
Text[ polish ] = "Nominalna stopa procentowa.";
Text[ portuguese_brazilian ] = "Nominalzins";
Text[ japanese ] = "名目年利率";
- Text[ korean ] = "액면 이자";
+ Text[ korean ] = "명목 이자";
Text[ chinese_simplified ] = "名义利息";
Text[ chinese_traditional ] = "年名義利率。";
Text[ turkish ] = "Nominalzins";
Text[ arabic ] = "Nominalzins";
- Text[ catalan ] = "Taxa";
+ Text[ catalan ] = "Inters nominal";
Text[ thai ] = "อัตราตามตัวเลข";
};
@@ -9758,7 +9758,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Periodos";
Text[ finnish ] = "Npery";
Text[ italian ] = "Periodi";
- Text[ danish ] = "Perioden";
+ Text[ danish ] = "Perioder";
Text[ swedish ] = "Perioder";
Text[ polish ] = "Okresy";
Text[ portuguese_brazilian ] = "Perioden";
@@ -9769,7 +9769,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ turkish ] = "Perioden";
Text[ arabic ] = "Perioden";
Text[ catalan ] = "Perode";
- Text[ thai ] = "Npery";
+ Text[ thai ] = "งวด";
};
String 5 // description of parameter 2 Effect_add
@@ -9783,9 +9783,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Perioden";
Text[ french ] = "Priodes";
Text[ spanish ] = "Periodos";
- Text[ finnish ] = "Npery";
+ Text[ finnish ] = "Kyttkaudet";
Text[ italian ] = "Periodi";
- Text[ danish ] = "Perioden";
+ Text[ danish ] = "Perioder";
Text[ swedish ] = "Perioder";
Text[ polish ] = "Liczba okresw skadanych w roku.";
Text[ portuguese_brazilian ] = "Perioden";
@@ -9810,12 +9810,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Returns the cumulative principal paid a loan between two periods";
Text[ russian ] = " .";
Text[ greek ] = "Returns the cumulative principal paid a loan between two periods";
- Text[ dutch ] = "Geeft als resultaat de cumulatieve hoofdsom van een lening die tussen twee perioden moet worden terugbetaald.";
+ Text[ dutch ] = "Geeft de gecumuleerde aflossing van een lening die tussen twee perioden moet worden betaald.";
Text[ french ] = "Renvoie le montant cumul des remboursements d'un emprunt verser entre deux priodes.";
Text[ spanish ] = "Devuelve la amortizacin acumulada de un prstamo que debe ser pagada entre dos periodos.";
- Text[ finnish ] = "Returns the cumulative principal paid a loan between two periods";
+ Text[ finnish ] = "Palauttaa kahden maksukauden vlill maksettavan lainan karttuvan poman";
Text[ italian ] = "Restituisce l'ammortamento accumulato per pagare un prestito da pagare tra due periodi.";
- Text[ danish ] = "Returns the cumulative principal paid a loan between two periods";
+ Text[ danish ] = "Returnerer de plbne afdrag p et ln, som skal betales mellem to perioder.";
Text[ swedish ] = "Returnerar den ackumulerade amorteringen som har betalats p ett ln som ska betalas mellan tv perioder.";
Text[ polish ] = "Podaje warto cznego kapitau spaconej poyczki pomidzy dwoma okresami.";
Text[ portuguese_brazilian ] = "Returns the cumulative principal paid a loan between two periods";
@@ -9825,7 +9825,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "傳回一筆貸款的第一期與最後一期之間的償還本金的累計值。";
Text[ turkish ] = "Returns the cumulative principal paid a loan between two periods";
Text[ arabic ] = "Returns the cumulative principal paid a loan between two periods";
- Text[ catalan ] = "Returns the cumulative principal paid a loan between two periods";
+ Text[ catalan ] = "Torna l'amortitzaci acumulada que s'ha de pagar en dos perodes";
Text[ thai ] = "ส่งกลับหลักการสะสมเงินกู้ที่จ่ายระหว่างงวดสองงวด";
};
@@ -9847,7 +9847,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ polish ] = "Stopa";
Text[ portuguese_brazilian ] = "Zins";
Text[ japanese ] = "利率";
- Text[ korean ] = "이자";
+ Text[ korean ] = "이율";
Text[ chinese_simplified ] = "rate";
Text[ chinese_traditional ] = "rate";
Text[ turkish ] = "FAZ";
@@ -9867,14 +9867,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Rente";
Text[ french ] = "Intrt";
Text[ spanish ] = "Inters";
- Text[ finnish ] = "Korko";
+ Text[ finnish ] = "Joukkovelkakirjan vuosittainen kiinte korko";
Text[ italian ] = "Tasso interesse";
Text[ danish ] = "RENTE";
Text[ swedish ] = "Rnta";
Text[ polish ] = "Stopa procentowa.";
Text[ portuguese_brazilian ] = "Zins";
Text[ japanese ] = "貸付期間を通じて一定の利率";
- Text[ korean ] = "이자";
+ Text[ korean ] = "이율";
Text[ chinese_simplified ] = "利息";
Text[ chinese_traditional ] = "利息";
Text[ turkish ] = "FAZ";
@@ -9889,12 +9889,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ english ] = "Zzr";
Text[ english_us ] = "Nper";
Text[ portuguese ] = "NPER";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "NPER";
- Text[ dutch ] = "Aantal perioden";
+ Text[ dutch ] = "NPER";
Text[ french ] = "Npm";
Text[ spanish ] = "NPER";
- Text[ finnish ] = "NPER";
+ Text[ finnish ] = "NJAKSO";
Text[ italian ] = "Numero rate";
Text[ danish ] = "NPER";
Text[ swedish ] = "Perioder";
@@ -9916,14 +9916,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ english ] = "Anzahl der Zahlungsperioden.";
Text[ english_us ] = "Number of payment periods";
Text[ portuguese ] = "Nmero de perodos de pagamento.";
- Text[ russian ] = " .";
+ Text[ russian ] = " .";
Text[ greek ] = "Anzahl der Zahlungsperioden.";
Text[ dutch ] = "Aantal betalingsperioden.";
Text[ french ] = "Nombre de priodes de paiement.";
Text[ spanish ] = "Cantidad de periodos de pago.";
- Text[ finnish ] = "Maksukausien lukumr.";
+ Text[ finnish ] = "Maksukausien umr.";
Text[ italian ] = "Numero dei periodi di pagamento.";
- Text[ danish ] = "Anzahl der Zahlungsperioden.";
+ Text[ danish ] = "Antal betalingsperioder.";
Text[ swedish ] = "Antal betalningsperioder.";
Text[ polish ] = "Cakowita liczba okresw patnoci.";
Text[ portuguese_brazilian ] = "Anzahl der Zahlungsperioden.";
@@ -9933,7 +9933,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "貸款償還期的次數。";
Text[ turkish ] = "Anzahl der Zahlungsperioden.";
Text[ arabic ] = "Anzahl der Zahlungsperioden.";
- Text[ catalan ] = "Quantitat de perodes de pagament.";
+ Text[ catalan ] = "Nombre de pagaments.";
Text[ thai ] = "จำนวนงวดการชำระเงิน";
};
@@ -9943,7 +9943,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ english ] = "Bw";
Text[ english_us ] = "Pv";
Text[ portuguese ] = "VA";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "PV";
Text[ dutch ] = "HW";
Text[ french ] = "VA";
@@ -9955,7 +9955,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ polish ] = "WB";
Text[ portuguese_brazilian ] = "Bw";
Text[ japanese ] = "現在価値";
- Text[ korean ] = "Bw";
+ Text[ korean ] = "Pv";
Text[ chinese_simplified ] = "pv";
Text[ chinese_traditional ] = "pv";
Text[ turkish ] = "PV";
@@ -9976,9 +9976,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Huidige waarde";
Text[ french ] = "Valeur actuelle";
Text[ spanish ] = "Valor del objeto";
- Text[ finnish ] = "Pv";
+ Text[ finnish ] = "Aloituskausi";
Text[ italian ] = "Valore attuale";
- Text[ danish ] = "Gegenstandswert";
+ Text[ danish ] = "Sagsgenstandens vrdi";
Text[ swedish ] = "Nuvrde";
Text[ polish ] = "Warto bieca.";
Text[ portuguese_brazilian ] = "Gegenstandswert";
@@ -9998,11 +9998,11 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ english ] = "Startperiode";
Text[ english_us ] = "Start period";
Text[ portuguese ] = "Incio_perodo";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "Startperiode";
- Text[ dutch ] = "Startperiode";
+ Text[ dutch ] = "Beginperiode";
Text[ french ] = "Priode de dbut";
- Text[ spanish ] = "Periodo de inicio";
+ Text[ spanish ] = "Periodo inicial";
Text[ finnish ] = "Aloituskausi";
Text[ italian ] = "Periodo iniziale";
Text[ danish ] = "Startperiode";
@@ -10015,7 +10015,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "start_period";
Text[ turkish ] = "Startperiode";
Text[ arabic ] = "Startperiode";
- Text[ catalan ] = "Perode d'inici";
+ Text[ catalan ] = "Perode inicial";
Text[ thai ] = "งวดเริ่มต้น";
};
@@ -10025,9 +10025,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ english ] = "Startperiode";
Text[ english_us ] = "The start period";
Text[ portuguese ] = "Incio_perodo";
- Text[ russian ] = " .";
+ Text[ russian ] = " .";
Text[ greek ] = "Startperiode";
- Text[ dutch ] = "Startperiode";
+ Text[ dutch ] = "Beginperiode";
Text[ french ] = "Priode de dbut";
Text[ spanish ] = "Periodo inicial";
Text[ finnish ] = "Aloituskausi";
@@ -10042,7 +10042,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "第一期";
Text[ turkish ] = "Startperiode";
Text[ arabic ] = "Startperiode";
- Text[ catalan ] = "Perode d'inici";
+ Text[ catalan ] = "Perode inicial";
Text[ thai ] = "งวดเริ่มต้น";
};
@@ -10052,14 +10052,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ english ] = "Endperiode";
Text[ english_us ] = "End period";
Text[ portuguese ] = "Final_perodo";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "Endperiode";
Text[ dutch ] = "Eindperiode";
Text[ french ] = "Priode de fin";
Text[ spanish ] = "Periodo final";
Text[ finnish ] = "Viimeinen kausi";
Text[ italian ] = "Periodo finale";
- Text[ danish ] = "Endperiode";
+ Text[ danish ] = "Slutperiode";
Text[ swedish ] = "Slutperiod";
Text[ polish ] = "Okres koc.";
Text[ portuguese_brazilian ] = "Endperiode";
@@ -10079,14 +10079,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ english ] = "Endperiode";
Text[ english_us ] = "The end period";
Text[ portuguese ] = "Final_perodo";
- Text[ russian ] = " .";
+ Text[ russian ] = " .";
Text[ greek ] = "Endperiode";
Text[ dutch ] = "Eindperiode";
Text[ french ] = "Priode de fin";
Text[ spanish ] = "Periodo final";
Text[ finnish ] = "Viimeinen kausi";
Text[ italian ] = "L'ultimo periodo di pagamento";
- Text[ danish ] = "Endperiode";
+ Text[ danish ] = "Slutperiode";
Text[ swedish ] = "Slutperiod";
Text[ polish ] = "Ostatni okres w wyliczeniu.";
Text[ portuguese_brazilian ] = "Endperiode";
@@ -10111,7 +10111,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Type";
Text[ french ] = "Type";
Text[ spanish ] = "Tipo";
- Text[ finnish ] = "Tyyppi";
+ Text[ finnish ] = "Laji";
Text[ italian ] = "Tipo";
Text[ danish ] = "F";
Text[ swedish ] = "Typ";
@@ -10138,9 +10138,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Type vervaldatum";
Text[ french ] = "Type de l'chance";
Text[ spanish ] = "Tipo de vencimiento";
- Text[ finnish ] = "Tyyppi";
+ Text[ finnish ] = "Erntymisen laji";
Text[ italian ] = "Tipo di scadenza";
- Text[ danish ] = "Typ der Flligkeit";
+ Text[ danish ] = "Forfaldstype";
Text[ swedish ] = "Typ av frfallodag";
Text[ polish ] = "Okrelenie typu patnoci.";
Text[ portuguese_brazilian ] = "Typ der Flligkeit";
@@ -10163,14 +10163,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ english ] = "Returns the cumulative interest paid between two periods";
Text[ english_us ] = "Returns the cumulative interest to be paid between two periods";
Text[ portuguese ] = "Devolve os juros acumulados a pagar entre dois perodos.";
- Text[ russian ] = " .";
+ Text[ russian ] = " .";
Text[ greek ] = "Returns the cumulative interest paid between two periods";
- Text[ dutch ] = "Geeft als resultaat de cumulatieve rente die tussen twee perioden moet worden betaald.";
+ Text[ dutch ] = "Geeft de gecumuleerde rente die tussen twee perioden moet worden betaald.";
Text[ french ] = "Renvoie les intrts cumuls payer entre deux priodes.";
Text[ spanish ] = "Devuelve los intereses acumulados a pagar entre dos periodos.";
- Text[ finnish ] = "Returns the cumulative interest paid between two periods";
+ Text[ finnish ] = "Palauttaa kahden maksukauden vlill maksettavan karttuvan koron";
Text[ italian ] = "Restituisce l'interesse cumulativo da pagare tra due periodi.";
- Text[ danish ] = "Returns the cumulative interest paid between two periods";
+ Text[ danish ] = "Returnerer de kumulerede renter, som skal betales mellem to perioder.";
Text[ swedish ] = "Returnerar den ackumulerade rntan som betalats mellan tv perioder.";
Text[ polish ] = "Podaje warto procentu skadanego patnego pomidzy dwoma okresami.";
Text[ portuguese_brazilian ] = "Returns the cumulative interest paid between two periods";
@@ -10180,7 +10180,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "傳回一筆貸款第一期與最後一期之間償還的利息。";
Text[ turkish ] = "Returns the cumulative interest paid between two periods";
Text[ arabic ] = "Returns the cumulative interest paid between two periods";
- Text[ catalan ] = "Returns the cumulative interest paid between two periods";
+ Text[ catalan ] = "Torna l'inters acumulat pagat entre dos perodes";
Text[ thai ] = "ส่งกลับดอกเบี้นสะสมที่จ่ายระหว่างสองงวด";
};
@@ -10202,7 +10202,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ polish ] = "Stopa";
Text[ portuguese_brazilian ] = "Zins";
Text[ japanese ] = "利率";
- Text[ korean ] = "이자";
+ Text[ korean ] = "이율";
Text[ chinese_simplified ] = "rate";
Text[ chinese_traditional ] = "rate";
Text[ turkish ] = "RATE";
@@ -10222,14 +10222,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Rente";
Text[ french ] = "Intrt";
Text[ spanish ] = "Inters";
- Text[ finnish ] = "Korko";
+ Text[ finnish ] = "Joukkovelkakirjan vuosittainen kiinte korko";
Text[ italian ] = "Tasso d'interesse per periodo";
Text[ danish ] = "RENTE";
Text[ swedish ] = "Rnta";
Text[ polish ] = "Stopa procentowa.";
Text[ portuguese_brazilian ] = "Zins";
Text[ japanese ] = "貸付期間を通じて一定の利率";
- Text[ korean ] = "이자";
+ Text[ korean ] = "이율";
Text[ chinese_simplified ] = "利息";
Text[ chinese_traditional ] = "利息";
Text[ turkish ] = "Faiz";
@@ -10244,12 +10244,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ english ] = "Zzr";
Text[ english_us ] = "Nper";
Text[ portuguese ] = "NPER";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "NPER";
- Text[ dutch ] = "Aantal perioden";
+ Text[ dutch ] = "NPER";
Text[ french ] = "Npm";
Text[ spanish ] = "NPER";
- Text[ finnish ] = "NPER";
+ Text[ finnish ] = "NJAKSO";
Text[ italian ] = "Numero rate";
Text[ danish ] = "NPER";
Text[ swedish ] = "Perioder";
@@ -10271,14 +10271,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ english ] = "Anzahl Zahlungsperioden";
Text[ english_us ] = "Number of payment periods";
Text[ portuguese ] = "Nmero de perodos de pagamento.";
- Text[ russian ] = " .";
+ Text[ russian ] = " .";
Text[ greek ] = "Anzahl Zahlungsperioden";
Text[ dutch ] = "Aantal betalingsperioden";
Text[ french ] = "Nombre de priodes de paiement.";
Text[ spanish ] = "Cantidad de periodos de pago";
- Text[ finnish ] = "Maksukausien lukumr.";
+ Text[ finnish ] = "Maksukausien mr.";
Text[ italian ] = "Numero dei periodi di pagamento.";
- Text[ danish ] = "Anzahl Zahlungsperioden";
+ Text[ danish ] = "Antal betalingsperioder";
Text[ swedish ] = "Antal betalningsperioder";
Text[ polish ] = "Cakowita liczba okresw patnoci.";
Text[ portuguese_brazilian ] = "Anzahl Zahlungsperioden";
@@ -10288,7 +10288,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "貸款償還期的次數。";
Text[ turkish ] = "Anzahl Zahlungsperioden";
Text[ arabic ] = "Anzahl Zahlungsperioden";
- Text[ catalan ] = "Nombre de perodes de pagament";
+ Text[ catalan ] = "Perodes de pagament";
Text[ thai ] = "จำนวนงวดการชำระเงิน";
};
@@ -10298,7 +10298,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ english ] = "Bw";
Text[ english_us ] = "Pv";
Text[ portuguese ] = "VA";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "PV";
Text[ dutch ] = "HW";
Text[ french ] = "VA";
@@ -10310,7 +10310,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ polish ] = "WB";
Text[ portuguese_brazilian ] = "Bw";
Text[ japanese ] = "現在価値";
- Text[ korean ] = "PV";
+ Text[ korean ] = "Pv";
Text[ chinese_simplified ] = "pv";
Text[ chinese_traditional ] = "pv";
Text[ turkish ] = "Bugnk deer";
@@ -10327,12 +10327,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Valor actual";
Text[ russian ] = " .";
Text[ greek ] = "Gegenstandswert";
- Text[ dutch ] = "De huidige waarde";
+ Text[ dutch ] = "Huidige waarde";
Text[ french ] = "Valeur actuelle";
Text[ spanish ] = "Valor del objeto";
- Text[ finnish ] = "Pv";
+ Text[ finnish ] = "Nykyinen arvo";
Text[ italian ] = "Valore attuale";
- Text[ danish ] = "Gegenstandswert";
+ Text[ danish ] = "Sagsgenstandens vrdi";
Text[ swedish ] = "Nuvrde";
Text[ polish ] = "Warto bieca.";
Text[ portuguese_brazilian ] = "Gegenstandswert";
@@ -10352,9 +10352,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ english ] = "Startperiode";
Text[ english_us ] = "Start period";
Text[ portuguese ] = "Incio_perodo";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "Startperiode";
- Text[ dutch ] = "Startperiode";
+ Text[ dutch ] = "Beginperiode";
Text[ french ] = "Priode de dbut";
Text[ spanish ] = "Periodo inicial";
Text[ finnish ] = "Aloituskausi";
@@ -10369,7 +10369,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "start_period";
Text[ turkish ] = "Startperiode";
Text[ arabic ] = "Startperiode";
- Text[ catalan ] = "Perode d'inici";
+ Text[ catalan ] = "Perode inicial";
Text[ thai ] = "งวดเริ่มต้น";
};
@@ -10379,9 +10379,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ english ] = "Startperiode";
Text[ english_us ] = "The start period";
Text[ portuguese ] = "Incio_perodo";
- Text[ russian ] = " .";
+ Text[ russian ] = " .";
Text[ greek ] = "Startperiode";
- Text[ dutch ] = "Startperiode";
+ Text[ dutch ] = "Beginperiode";
Text[ french ] = "Priode de dbut";
Text[ spanish ] = "Periodo inicial";
Text[ finnish ] = "Aloituskausi";
@@ -10396,7 +10396,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "第一期";
Text[ turkish ] = "Startperiode";
Text[ arabic ] = "Startperiode";
- Text[ catalan ] = "Perode d'inici";
+ Text[ catalan ] = "Perode inicial";
Text[ thai ] = "งวดเริ่มต้น";
};
@@ -10406,14 +10406,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ english ] = "Endperiode";
Text[ english_us ] = "End period";
Text[ portuguese ] = "Final_perodo";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "Endperiode";
Text[ dutch ] = "Eindperiode";
Text[ french ] = "Priode de fin";
Text[ spanish ] = "Periodo final";
Text[ finnish ] = "Viimeinen kausi";
Text[ italian ] = "Periodo finale";
- Text[ danish ] = "Endperiode";
+ Text[ danish ] = "Slutperiode";
Text[ swedish ] = "Slutperiod";
Text[ polish ] = "Okres koc.";
Text[ portuguese_brazilian ] = "Endperiode";
@@ -10433,14 +10433,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ english ] = "Endperiode";
Text[ english_us ] = "The end period";
Text[ portuguese ] = "Final_perodo";
- Text[ russian ] = " .";
+ Text[ russian ] = " .";
Text[ greek ] = "Endperiode";
Text[ dutch ] = "Eindperiode";
Text[ french ] = "Priode de fin";
Text[ spanish ] = "Periodo final";
Text[ finnish ] = "Viimeinen kausi";
Text[ italian ] = "Definisce l'ultimo periodo";
- Text[ danish ] = "Endperiode";
+ Text[ danish ] = "Slutperiode";
Text[ swedish ] = "Slutperiod";
Text[ polish ] = "Ostatni okres w wyliczeniu.";
Text[ portuguese_brazilian ] = "Endperiode";
@@ -10465,7 +10465,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Type";
Text[ french ] = "Type";
Text[ spanish ] = "Tipo";
- Text[ finnish ] = "Tyyppi";
+ Text[ finnish ] = "Laji";
Text[ italian ] = "Tipo";
Text[ danish ] = "F";
Text[ swedish ] = "Typ";
@@ -10492,9 +10492,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Type vervaldatum";
Text[ french ] = "Type de l'chance";
Text[ spanish ] = "Tipo de vencimiento";
- Text[ finnish ] = "Tyyppi";
+ Text[ finnish ] = "Erntymisen laji";
Text[ italian ] = "Tipo di scadenza";
- Text[ danish ] = "Typ der Flligkeit";
+ Text[ danish ] = "Forfaldstype";
Text[ swedish ] = "Typ av frfallodag";
Text[ polish ] = "Okrelenie typu patnoci.";
Text[ portuguese_brazilian ] = "Typ der Flligkeit";
@@ -10518,14 +10518,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Returns the price per 100 currency units face value of a security that pays periodic interest";
Text[ portuguese ] = "Devolve o preo por 100 euros do valor nominal de um ttulo que paga juros peridicos.";
- Text[ russian ] = " 100 , .";
+ Text[ russian ] = " 100 .";
Text[ greek ] = "Returns the price per $100 face value of a security that pays periodic interest";
- Text[ dutch ] = "Returns the price per $100 face value of a security that pays periodic interest";
+ Text[ dutch ] = "Geeft de prijs per nominale waarde van 100 valuta-eenheden van een waardepapier waarover periodiek rente wordt uitbetaald.";
Text[ french ] = "Renvoie le prix, pour une valeur nominale de 100 units montaires, d'un titre rapportant des intrts priodiques.";
Text[ spanish ] = "Devuelve el precio, por un valor nominal de 100 unidades monetarias, de un ttulo que paga intereses peridicos.";
- Text[ finnish ] = "Palauttaa joukkovelkakirjan (snnllinen korko) hinnan nimellisarvoa (100) kohti";
+ Text[ finnish ] = "Palauttaa jaksottaista korkoa tuottavan arvopaperin nimellisarvon hinnan 100 valuuttayksikk kohden.";
Text[ italian ] = "Restituisce il prezzo di un titolo dal valore nominale di 100 unit monetarie che paga interessi periodici.";
- Text[ danish ] = "Returns the price per $100 face value of a security that pays periodic interest";
+ Text[ danish ] = "Returnerer kursen pr. 100 valutaenheder plydende vrdi for et vrdipapir, som udbetaler periodiske renter.";
Text[ swedish ] = "Returnerar priset per 100 valutaenheter nominellt vrde fr ett vrdepapper som ger periodiska rntor.";
Text[ polish ] = "Podaje cen za 100 jednostek wartoci nominalnej papieru wartociowego o okresowym oprocentowaniu.";
Text[ portuguese_brazilian ] = "Returns the price per $100 face value of a security that pays periodic interest";
@@ -10546,14 +10546,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Settlement";
Text[ portuguese ] = "Liquidao";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Settlement";
- Text[ dutch ] = "Settlement";
+ Text[ dutch ] = "Afrekening";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Liquidacin";
Text[ finnish ] = "Lunastus";
Text[ italian ] = "Liquidazione";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Rozliczenie";
Text[ portuguese_brazilian ] = "Settlement";
@@ -10576,12 +10576,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Liquidao";
Text[ russian ] = " .";
Text[ greek ] = "Settlement";
- Text[ dutch ] = "Settlement";
+ Text[ dutch ] = "Afrekening";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Fecha de liquidacin del valor.";
- Text[ finnish ] = "Lunastus";
+ Text[ finnish ] = "Joukkovelkakirjan lunastuspivmr";
Text[ italian ] = "Data di acquisto";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Data rozliczenia papieru wartociowego.";
Text[ portuguese_brazilian ] = "Settlement";
@@ -10602,14 +10602,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Maturity";
Text[ portuguese ] = "Vencimento";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Maturity";
- Text[ dutch ] = "Maturity";
+ Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Vencimiento";
Text[ finnish ] = "Erntyminen";
Text[ italian ] = "Scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty";
Text[ portuguese_brazilian ] = "Maturity";
@@ -10632,12 +10632,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Vencimento";
Text[ russian ] = " .";
Text[ greek ] = "Maturity";
- Text[ dutch ] = "Maturity";
+ Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Fecha de vencimiento del valor.";
- Text[ finnish ] = "Erntyminen";
+ Text[ finnish ] = "Joukkovelkakirjan erntymispivmr";
Text[ italian ] = "Data di scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty papieru wartociowego.";
Text[ portuguese_brazilian ] = "Maturity";
@@ -10660,17 +10660,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Taxa";
Text[ russian ] = "";
Text[ greek ] = "Rate";
- Text[ dutch ] = "Rate";
+ Text[ dutch ] = "Rente";
Text[ french ] = "Intrt";
Text[ spanish ] = "Inters";
Text[ finnish ] = "Korko";
Text[ italian ] = "Tasso interesse";
- Text[ danish ] = "Rate";
+ Text[ danish ] = "Rente";
Text[ swedish ] = "Rnta";
Text[ polish ] = "Stopa";
Text[ portuguese_brazilian ] = "Rate";
Text[ japanese ] = "利率";
- Text[ korean ] = "이자율";
+ Text[ korean ] = "이율";
Text[ chinese_simplified ] = "rate";
Text[ chinese_traditional ] = "rate";
Text[ turkish ] = "Rate";
@@ -10686,19 +10686,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The rate";
Text[ portuguese ] = "Taxa";
- Text[ russian ] = " .";
+ Text[ russian ] = " .";
Text[ greek ] = "Rate";
- Text[ dutch ] = "Rate";
+ Text[ dutch ] = "Rente";
Text[ french ] = "Intrt";
Text[ spanish ] = "Inters";
- Text[ finnish ] = "Korko";
+ Text[ finnish ] = "Joukkovelkakirjan vuosittainen kiinte korko";
Text[ italian ] = "Interesse nominale annuale";
- Text[ danish ] = "Rate";
+ Text[ danish ] = "Rente";
Text[ swedish ] = "Rnta";
Text[ polish ] = "Roczne oprocentowanie kuponu papieru wartociowego.";
Text[ portuguese_brazilian ] = "Rate";
Text[ japanese ] = "証券の年利";
- Text[ korean ] = "이자율";
+ Text[ korean ] = "이율";
Text[ chinese_simplified ] = "是某一有价证券的年息票利率。";
Text[ chinese_traditional ] = "為有價證券的年利率。";
Text[ turkish ] = "Rate";
@@ -10716,17 +10716,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Rendimento";
Text[ russian ] = "";
Text[ greek ] = "Yield";
- Text[ dutch ] = "Yield";
+ Text[ dutch ] = "Rendement";
Text[ french ] = "Rendement";
Text[ spanish ] = "Rdito";
Text[ finnish ] = "Tuotto";
Text[ italian ] = "Rendimento";
- Text[ danish ] = "Yield";
+ Text[ danish ] = "Afkast";
Text[ swedish ] = "Avkastning";
Text[ polish ] = "Rentowno";
Text[ portuguese_brazilian ] = "Yield";
Text[ japanese ] = "利回り";
- Text[ korean ] = "산출금";
+ Text[ korean ] = "투자 수익";
Text[ chinese_simplified ] = "yield";
Text[ chinese_traditional ] = "yield";
Text[ turkish ] = "Yield";
@@ -10742,19 +10742,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The yield";
Text[ portuguese ] = "Rendimento";
- Text[ russian ] = " .";
+ Text[ russian ] = " .";
Text[ greek ] = "Yield";
- Text[ dutch ] = "Yield";
+ Text[ dutch ] = "Rendement";
Text[ french ] = "Rendement";
Text[ spanish ] = "Rendimiento anual del valor.";
Text[ finnish ] = "Tuotto";
Text[ italian ] = "Rendimento annuo del titolo";
- Text[ danish ] = "Yield";
+ Text[ danish ] = "Afkast";
Text[ swedish ] = "Avkastning";
Text[ polish ] = "Roczna rentowano papieru wartociowego.";
Text[ portuguese_brazilian ] = "Yield";
Text[ japanese ] = "証券の年間配当";
- Text[ korean ] = "산출금";
+ Text[ korean ] = "투자 수익";
Text[ chinese_simplified ] = "是某一有价证券的年收益率。";
Text[ chinese_traditional ] = "為有價證券的年收益率。";
Text[ turkish ] = "Yield";
@@ -10770,14 +10770,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Redemption";
Text[ portuguese ] = "Reembolso";
- Text[ russian ] = "";
+ Text[ russian ] = "";
Text[ greek ] = "Redemption";
- Text[ dutch ] = "Redemption";
+ Text[ dutch ] = "Aflossingsbedrag";
Text[ french ] = "Remboursement";
Text[ spanish ] = "Devolucin";
Text[ finnish ] = "Lunastus";
Text[ italian ] = "Rimborso";
- Text[ danish ] = "Redemption";
+ Text[ danish ] = "Tilbagebetaling";
Text[ swedish ] = "Inlsningsvrde";
Text[ polish ] = "Wykup";
Text[ portuguese_brazilian ] = "Redemption";
@@ -10798,14 +10798,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The redemption value";
Text[ portuguese ] = "Reembolso";
- Text[ russian ] = " .";
+ Text[ russian ] = " .";
Text[ greek ] = "Redemption";
- Text[ dutch ] = "Redemption";
+ Text[ dutch ] = "Aflossingsbedrag";
Text[ french ] = "Remboursement";
Text[ spanish ] = "El valor de devolucin del ttulo burstil.";
- Text[ finnish ] = "Lunastus";
+ Text[ finnish ] = "Joukkovelkakirjan lunastusarvo";
Text[ italian ] = "Valore di rimborso";
- Text[ danish ] = "Redemption";
+ Text[ danish ] = "Tilbagebetaling";
Text[ swedish ] = "Inlsningsvrde";
Text[ polish ] = "Warto wykupu papieru wartociowego.";
Text[ portuguese_brazilian ] = "Redemption";
@@ -10828,12 +10828,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Frequncia";
Text[ russian ] = "";
Text[ greek ] = "Frequency";
- Text[ dutch ] = "Frequency";
+ Text[ dutch ] = "Frequentie";
Text[ french ] = "Frquence";
Text[ spanish ] = "Frecuencia";
- Text[ finnish ] = "Taajuus";
+ Text[ finnish ] = "Maksut";
Text[ italian ] = "Frequenza";
- Text[ danish ] = "Frequency";
+ Text[ danish ] = "Frekvens";
Text[ swedish ] = "Frekvens";
Text[ polish ] = "Czsto";
Text[ portuguese_brazilian ] = "Frequency";
@@ -10854,14 +10854,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The frequency";
Text[ portuguese ] = "Frequncia";
- Text[ russian ] = " .";
+ Text[ russian ] = " .";
Text[ greek ] = "Frequency";
- Text[ dutch ] = "Frequency";
+ Text[ dutch ] = "Frequentie";
Text[ french ] = "Frquence";
Text[ spanish ] = "El nmero de cupones a pagar por ao.";
- Text[ finnish ] = "Taajuus";
+ Text[ finnish ] = "Kiinteiden korkomaksujen mr vuodessa";
Text[ italian ] = "Numero dei pagamenti all'anno";
- Text[ danish ] = "Frequency";
+ Text[ danish ] = "Frekvens";
Text[ swedish ] = "Frekvens";
Text[ polish ] = "Liczba kuponw patnych w cigu roku.";
Text[ portuguese_brazilian ] = "Frequency";
@@ -10884,17 +10884,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Base";
Text[ russian ] = "";
Text[ greek ] = "Base";
- Text[ dutch ] = "Base";
+ Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "Base";
Text[ finnish ] = "Kantaluku";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Podstawa";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "基準";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "basis";
Text[ chinese_traditional ] = "basis";
Text[ turkish ] = "Base";
@@ -10912,17 +10912,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Base";
Text[ russian ] = " .";
Text[ greek ] = "Base";
- Text[ dutch ] = "Base";
+ Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "El tipo de base para contar los das.";
- Text[ finnish ] = "Kantaluku";
+ Text[ finnish ] = "Kytettv vuosien mr";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Rodzaj podstawy wyliczania dni.";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "利息計算の基礎となる日数の計算方法";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "年天数的基数";
Text[ chinese_traditional ] = "要使用的年天數的基準。";
Text[ turkish ] = "Base";
@@ -10941,14 +10941,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Returns the price per 100 currency units face value of a discounted security";
Text[ portuguese ] = "Devolve o preo por 100 euros do valor nominal de um ttulo descontado.";
- Text[ russian ] = " 100 , .";
+ Text[ russian ] = " 100 .";
Text[ greek ] = "Returns the price per $100 face value of a discounted security";
- Text[ dutch ] = "Returns the price per $100 face value of a discounted security";
+ Text[ dutch ] = "Geeft de prijs per nominale waarde van 100 valuta-eenheden van een niet-rentedragend waardepapier.";
Text[ french ] = "Renvoie le prix d'un titre escompt pour une valeur nominale de 100 units montaires.";
Text[ spanish ] = "Devuelve la cotizacin de un ttulo sin intereses de un valor nominal de 100 unidades monetarias.";
- Text[ finnish ] = "Palauttaa joukkovelkakirjan (reaaliarvo nimellisarvoa pienempi) hinnan nimellisarvoa (100) kohti";
+ Text[ finnish ] = "Palauttaa alennetun arvopaperin nimellisarvon hinnan 100 valuuttayksikk kohden";
Text[ italian ] = "Restituisce il prezzo di un titolo senza interessi del valore nominale di 100 unit monetarie.";
- Text[ danish ] = "Returns the price per $100 face value of a discounted security";
+ Text[ danish ] = "Returnerer kursen pr. 100 valutaenheder plydende vrdi for et ikke-rentebrende vrdipapir.";
Text[ swedish ] = "Returnerar priset per 100 valutaenheter nominellt vrde fr ett diskonterat vrdepapper.";
Text[ polish ] = "Podaje cen za 100 jednostek wartoci nominalnej papieru wartociowego zdyskontowanego.";
Text[ portuguese_brazilian ] = "Returns the price per $100 face value of a discounted security";
@@ -10969,14 +10969,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Settlement";
Text[ portuguese ] = "Liquidao";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Settlement";
- Text[ dutch ] = "Settlement";
+ Text[ dutch ] = "Afrekening";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Liquidacin";
Text[ finnish ] = "Lunastus";
Text[ italian ] = "Liquidazione";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Rozliczenie";
Text[ portuguese_brazilian ] = "Settlement";
@@ -10999,12 +10999,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Liquidao";
Text[ russian ] = " .";
Text[ greek ] = "Settlement";
- Text[ dutch ] = "Settlement";
+ Text[ dutch ] = "Afrekening";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Fecha de liquidacin del valor.";
- Text[ finnish ] = "Lunastus";
+ Text[ finnish ] = "Joukkovelkakirjan lunastuspivmr";
Text[ italian ] = "Data di acquisto del titolo";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Data rozliczenia papieru wartociowego.";
Text[ portuguese_brazilian ] = "Settlement";
@@ -11025,14 +11025,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Maturity";
Text[ portuguese ] = "Vencimento";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Maturity";
- Text[ dutch ] = "Maturity";
+ Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Vencimiento";
Text[ finnish ] = "Erntyminen";
Text[ italian ] = "Scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty";
Text[ portuguese_brazilian ] = "Maturity";
@@ -11055,12 +11055,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Vencimento";
Text[ russian ] = " .";
Text[ greek ] = "Maturity";
- Text[ dutch ] = "Maturity";
+ Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Fecha de vencimiento del valor.";
- Text[ finnish ] = "Erntyminen";
+ Text[ finnish ] = "Joukkovelkakirjan erntymispivmr";
Text[ italian ] = "Data di scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty papieru wartociowego.";
Text[ portuguese_brazilian ] = "Maturity";
@@ -11083,12 +11083,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Desconto";
Text[ russian ] = "";
Text[ greek ] = "Discount";
- Text[ dutch ] = "Discount";
+ Text[ dutch ] = "Disconto";
Text[ french ] = "Escompte";
Text[ spanish ] = "Descuento";
Text[ finnish ] = "Tappio";
Text[ italian ] = "Sconto";
- Text[ danish ] = "Discount";
+ Text[ danish ] = "Diskonto";
Text[ swedish ] = "Diskonteringsrnta";
Text[ polish ] = "Dyskonto";
Text[ portuguese_brazilian ] = "Discount";
@@ -11111,12 +11111,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Desconto";
Text[ russian ] = " .";
Text[ greek ] = "Discount";
- Text[ dutch ] = "Discount";
+ Text[ dutch ] = "Disconto";
Text[ french ] = "Escompte";
Text[ spanish ] = "La tasa de descuento del valor.";
Text[ finnish ] = "Tappio";
Text[ italian ] = "La percentuale di sconto";
- Text[ danish ] = "Discount";
+ Text[ danish ] = "Diskonto";
Text[ swedish ] = "Diskonteringsrnta";
Text[ polish ] = "Stopa dyskontowa papieru wartociowego.";
Text[ portuguese_brazilian ] = "Discount";
@@ -11137,14 +11137,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Redemption";
Text[ portuguese ] = "Reembolso";
- Text[ russian ] = "";
+ Text[ russian ] = "";
Text[ greek ] = "Redemption";
- Text[ dutch ] = "Redemption";
+ Text[ dutch ] = "Aflossingsbedrag";
Text[ french ] = "Remboursement";
Text[ spanish ] = "Devolucin";
Text[ finnish ] = "Lunastus";
Text[ italian ] = "Rimborso";
- Text[ danish ] = "Redemption";
+ Text[ danish ] = "Tilbagebetaling";
Text[ swedish ] = "Inlsningsvrde";
Text[ polish ] = "Wykup";
Text[ portuguese_brazilian ] = "Redemption";
@@ -11167,12 +11167,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Reembolso";
Text[ russian ] = " .";
Text[ greek ] = "Redemption";
- Text[ dutch ] = "Redemption";
+ Text[ dutch ] = "Aflossingsbedrag";
Text[ french ] = "Remboursement";
Text[ spanish ] = "El rendimiento del valor.";
- Text[ finnish ] = "Lunastus";
+ Text[ finnish ] = "Joukkovelkakirjan lunastusarvo";
Text[ italian ] = "Il valore di rimborso";
- Text[ danish ] = "Redemption";
+ Text[ danish ] = "Tilbagebetaling";
Text[ swedish ] = "Inlsningsvrde";
Text[ polish ] = "Warto wykupu papieru wartociowego.";
Text[ portuguese_brazilian ] = "Redemption";
@@ -11195,17 +11195,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Base";
Text[ russian ] = "";
Text[ greek ] = "Base";
- Text[ dutch ] = "Base";
+ Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "Base";
Text[ finnish ] = "Kantaluku";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Podstawa";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "基準";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "basis";
Text[ chinese_traditional ] = "basis";
Text[ turkish ] = "Base";
@@ -11223,17 +11223,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Base";
Text[ russian ] = " .";
Text[ greek ] = "Base";
- Text[ dutch ] = "Base";
+ Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "El tipo de base con el que se contarn los das.";
- Text[ finnish ] = "Kantaluku";
+ Text[ finnish ] = "Kytettv vuosien mr";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Rodzaj podstawy wyliczania dni.";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "利息計算の基礎となる日数の計算方法";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "年天数的基数";
Text[ chinese_traditional ] = "要使用的年天數的基準。";
Text[ turkish ] = "Base";
@@ -11252,19 +11252,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Returns the price per 100 currency units face value of a security that pays interest at maturity";
Text[ portuguese ] = "Devolve o preo por 100 euros do valor nominal de um ttulo que paga juros no vencimento.";
- Text[ russian ] = " 100 , .";
+ Text[ russian ] = " 100 , .";
Text[ greek ] = "Returns the price per $100 face value of a security that pays interest at maturity";
- Text[ dutch ] = "Returns the price per $100 face value of a security that pays interest at maturity";
+ Text[ dutch ] = "Geeft de prijs per nominale waarde van 100 valuta-eenheden van een waardepapier, waarbij op de vervaldatum rente wordt uitbetaald.";
Text[ french ] = "Renvoie le prix, pour une valeur nominale de 100 units montaires, d'un titre rapportant des intrts au terme de l'chance.";
Text[ spanish ] = "Devuelve la cotizacin, por un valor nominal de 100 unidades monetarias, de un ttulo que paga intereses al vencer.";
- Text[ finnish ] = "Palauttaa joukkovelkakirjan (korko maksetaan lainan erntyess) hinnan nimellisarvoa (100) kohti";
+ Text[ finnish ] = "Palauttaa maturiteettikorkoa tuottavan arvopaperin nimellisarvon hinnan 100 valuuttayksikk kohden.";
Text[ italian ] = "Restituisce il prezzo di un titolo dal valore nominale di 100 unit monetarie che paga gli interessi alla scadenza.";
- Text[ danish ] = "Returns the price per $100 face value of a security that pays interest at maturity";
+ Text[ danish ] = "Returnerer kursen pr. 100 valutaenheder plydende vrdi for et vrdipapir, som udbetaler renter p forfaldsdagen.";
Text[ swedish ] = "Returnerar priset per 100 valutaenheter nominellt vrde fr ett vrdepapper som ger rntor p frfallodagen.";
Text[ polish ] = "Podaje cen za 100 jednostek wartoci nominalnej papieru wartociowego oprocentowanego przy wykupie.";
Text[ portuguese_brazilian ] = "Returns the price per $100 face value of a security that pays interest at maturity";
Text[ japanese ] = "満期日に利息が支払われる証券に対して額面 $100 当たりの価格を返します。";
- Text[ korean ] = "만기일에 이자가 지불되는 유가 증권의 100 액면가당 시세를 제공합니다";
+ Text[ korean ] = "만기일에 이자가 지불되는 유가 증권의 100 액면가당 시세를 제공합니다.";
Text[ chinese_simplified ] = "计算某一到期付息的面额为100元的有价证券的价格。";
Text[ chinese_traditional ] = "傳回某一到期付息、面額為100元的有價證券的價格。";
Text[ turkish ] = "Returns the price per $100 face value of a security that pays interest at maturity";
@@ -11280,14 +11280,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Settlement";
Text[ portuguese ] = "Liquidao";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Settlement";
- Text[ dutch ] = "Settlement";
+ Text[ dutch ] = "Afrekening";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Liquidacin";
Text[ finnish ] = "Lunastus";
Text[ italian ] = "Liquidazione";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Rozliczenie";
Text[ portuguese_brazilian ] = "Settlement";
@@ -11310,12 +11310,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Liquidao";
Text[ russian ] = " .";
Text[ greek ] = "Settlement";
- Text[ dutch ] = "Settlement";
+ Text[ dutch ] = "Afrekening";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Fecha de liquidacin del valor.";
- Text[ finnish ] = "Lunastus";
+ Text[ finnish ] = "Joukkovelkakirjan lunastuspivmr";
Text[ italian ] = "Data di acquisto del titolo";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Data rozliczenia papieru wartociowego.";
Text[ portuguese_brazilian ] = "Settlement";
@@ -11336,14 +11336,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Maturity";
Text[ portuguese ] = "Vencimento";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Maturity";
- Text[ dutch ] = "Maturity";
+ Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Vencimiento";
Text[ finnish ] = "Erntyminen";
Text[ italian ] = "Scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty";
Text[ portuguese_brazilian ] = "Maturity";
@@ -11369,9 +11369,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Fecha de vencimiento del valor.";
- Text[ finnish ] = "Erntyminen";
+ Text[ finnish ] = "Joukkovelkakirjan erntymispivmr";
Text[ italian ] = "Data di scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty papieru wartociowego.";
Text[ portuguese_brazilian ] = "Maturity";
@@ -11392,14 +11392,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Issue";
Text[ portuguese ] = "Emisso";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Issue";
Text[ dutch ] = "Uitgifte";
Text[ french ] = "mission";
Text[ spanish ] = "Emisin";
Text[ finnish ] = "Julkistus";
Text[ italian ] = "Emissione";
- Text[ danish ] = "Issue";
+ Text[ danish ] = "Emission";
Text[ swedish ] = "Emission";
Text[ polish ] = "Emisja";
Text[ portuguese_brazilian ] = "Issue";
@@ -11425,9 +11425,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Uitgifte";
Text[ french ] = "mission";
Text[ spanish ] = "Fecha de emisin del valor.";
- Text[ finnish ] = "Julkistus";
+ Text[ finnish ] = "Joukkovelkakirjan julkaisupivmr";
Text[ italian ] = "Data di emissione";
- Text[ danish ] = "Issue";
+ Text[ danish ] = "Emission";
Text[ swedish ] = "Emission";
Text[ polish ] = "Data emisji papieru wartociowego.";
Text[ portuguese_brazilian ] = "Issue";
@@ -11455,12 +11455,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Inters";
Text[ finnish ] = "Korko";
Text[ italian ] = "Tasso interesse";
- Text[ danish ] = "Rate";
+ Text[ danish ] = "Rente";
Text[ swedish ] = "Rnta";
Text[ polish ] = "Stopa";
Text[ portuguese_brazilian ] = "Rate";
Text[ japanese ] = "利率";
- Text[ korean ] = "이자율";
+ Text[ korean ] = "이율";
Text[ chinese_simplified ] = "rate";
Text[ chinese_traditional ] = "rate";
Text[ turkish ] = "Rate";
@@ -11481,14 +11481,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Rente";
Text[ french ] = "Intrt";
Text[ spanish ] = "Tasa de inters en la fecha de emisin.";
- Text[ finnish ] = "Korko";
+ Text[ finnish ] = "Joukkovelkakirjan vuosittainen kiinte korko";
Text[ italian ] = "Il tasso d'interesse del titolo alla data di emissione";
- Text[ danish ] = "Rate";
+ Text[ danish ] = "Rente";
Text[ swedish ] = "Rnta";
Text[ polish ] = "Stopa procentu papieru wartociowego.";
Text[ portuguese_brazilian ] = "Rate";
Text[ japanese ] = "発行日における証券の利率";
- Text[ korean ] = "이자율";
+ Text[ korean ] = "이율";
Text[ chinese_simplified ] = "利率";
Text[ chinese_traditional ] = "利率";
Text[ turkish ] = "Rate";
@@ -11511,12 +11511,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Rdito";
Text[ finnish ] = "Tuotto";
Text[ italian ] = "Rendimento";
- Text[ danish ] = "Yield";
+ Text[ danish ] = "Afkast";
Text[ swedish ] = "Avkastning";
Text[ polish ] = "Rentowno";
Text[ portuguese_brazilian ] = "Yield";
Text[ japanese ] = "利回り";
- Text[ korean ] = "산출금";
+ Text[ korean ] = "투자 수익";
Text[ chinese_simplified ] = "yield";
Text[ chinese_traditional ] = "yield";
Text[ turkish ] = "Yield";
@@ -11539,12 +11539,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "El rendimiento anual del valor.";
Text[ finnish ] = "Tuotto";
Text[ italian ] = "Il valore di rendimento";
- Text[ danish ] = "Yield";
+ Text[ danish ] = "Afkast";
Text[ swedish ] = "Avkastning";
Text[ polish ] = "Roczna rentowno papieru wartociowego.";
Text[ portuguese_brazilian ] = "Yield";
Text[ japanese ] = "証券の年間配当";
- Text[ korean ] = "산출금";
+ Text[ korean ] = "투자 수익";
Text[ chinese_simplified ] = "是某一有价证券的年收益率。";
Text[ chinese_traditional ] = "為某一有價證券的年收益率。";
Text[ turkish ] = "Yield";
@@ -11567,12 +11567,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Base";
Text[ finnish ] = "Kantaluku";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Podstawa";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "基準";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "basis";
Text[ chinese_traditional ] = "basis";
Text[ turkish ] = "Base";
@@ -11593,14 +11593,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "El tipo de base segn el cual se contarn los das.";
- Text[ finnish ] = "Kantaluku";
+ Text[ finnish ] = "Kytettv vuosien mr";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Rodzaj podstawy wyliczania dni.";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "利息計算の基礎となる日数の計算方法";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "年天数的基数";
Text[ chinese_traditional ] = "要使用的年天數的基準。";
Text[ turkish ] = "Base";
@@ -11619,14 +11619,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Returns the Macaulay modified duration for a security with an assumed par value of 100 currency units";
Text[ portuguese ] = "Devolve a durao alterada Macauley para um ttulo com um valor nominal de 100 euros.";
- Text[ russian ] = " 100 .";
+ Text[ russian ] = " 100 .";
Text[ greek ] = "Returns the Macauley modified duration for a security with an assumed par ";
- Text[ dutch ] = "Geeft als resultaat de aangepaste Macauley-duur van een waardepapier met een nominale waarde van fl 100.";
+ Text[ dutch ] = "Geeft de gewijzigde Macaulay-looptijd van een waardepapier met een nominale waarde van 100 valuta-eenheden.";
Text[ french ] = "Renvoie la dure de Macaulay modifie d'un titre pour une valeur nominale de 100 units montaires.";
Text[ spanish ] = "Devuelve la duracin modificada de Macaulay de un ttulo de un valor de 100 unidades monetarias.";
- Text[ finnish ] = "Palauttaa joukkovelkakirjan (nimellisarvo 100) Macauley-muokkauksen mukaisen keston";
+ Text[ finnish ] = "Palauttaa arvopaperin Macaulay-keston oletetulla 100 valuuttayksikn nimellisarvolla";
Text[ italian ] = "Restituisce la durata Macauley modificata di un titolo con un valore nominale di 100 unit monetarie.";
- Text[ danish ] = "Returns the Macauley modified duration for a security with an assumed par ";
+ Text[ danish ] = "Returnerer den modificerede Macauley-varighed for et vrdipapir med 100 valutaenheder plydende vrdi.";
Text[ swedish ] = "Returnerar den modifierade Macauley-lptiden fr ett vrdepapper med ett nominellt vrde p 100 valutaenheter.";
Text[ polish ] = "Podaje warto zmodyfikowanego okresu Macauley'a w przypadku papieru wartociowego o zaoonej wartoci 100 jednostek.";
Text[ portuguese_brazilian ] = "Returns the Macauley modified duration for a security with an assumed par ";
@@ -11647,14 +11647,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Settlement";
Text[ portuguese ] = "Liquidao";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Settlement";
Text[ dutch ] = "Stortingsdatum";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Liquidacin";
Text[ finnish ] = "Lunastus";
Text[ italian ] = "Liquidazione";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Rozliczenie";
Text[ portuguese_brazilian ] = "Settlement";
@@ -11680,9 +11680,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Stortingsdatum";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Fecha de liquidacin del valor.";
- Text[ finnish ] = "Lunastus";
+ Text[ finnish ] = "Joukkovelkakirjan lunastuspivmr";
Text[ italian ] = "Data di acquisto di un titolo";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Data rozliczenia papieru wartociowego.";
Text[ portuguese_brazilian ] = "Settlement";
@@ -11703,14 +11703,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Maturity";
Text[ portuguese ] = "Vencimento";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Maturity";
Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Vencimiento";
Text[ finnish ] = "Erntyminen";
Text[ italian ] = "Scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty";
Text[ portuguese_brazilian ] = "Maturity";
@@ -11736,9 +11736,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Fecha de vencimiento del valor.";
- Text[ finnish ] = "Erntyminen";
+ Text[ finnish ] = "Joukkovelkakirjan erntymispivmr";
Text[ italian ] = "Data di scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty papieru wartociowego.";
Text[ portuguese_brazilian ] = "Maturity";
@@ -11759,19 +11759,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Coupon";
Text[ portuguese ] = "Taxa nominal";
- Text[ russian ] = "";
+ Text[ russian ] = "";
Text[ greek ] = "Coupon";
Text[ dutch ] = "Nominale rente";
Text[ french ] = "Intrt nominal";
Text[ spanish ] = "Inters nominal";
Text[ finnish ] = "Kiinte korko";
Text[ italian ] = "Tasso interesse nominale";
- Text[ danish ] = "Coupon";
+ Text[ danish ] = "Nominel rente";
Text[ swedish ] = "Nominell rnta";
Text[ polish ] = "Kupon";
Text[ portuguese_brazilian ] = "Coupon";
Text[ japanese ] = "利札";
- Text[ korean ] = "이자표";
+ Text[ korean ] = "이자율";
Text[ chinese_simplified ] = "coupon";
Text[ chinese_traditional ] = "coupon";
Text[ turkish ] = "Coupon";
@@ -11794,12 +11794,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Tasa de inters nominal anual.";
Text[ finnish ] = "Kiinte korko";
Text[ italian ] = "Gli interessi nominali annuali (cedola d'interessi)";
- Text[ danish ] = "Coupon";
+ Text[ danish ] = "Nominel rente";
Text[ swedish ] = "Nominell rnta";
Text[ polish ] = "Roczne oprocentowanie kuponu papieru wartociowego.";
Text[ portuguese_brazilian ] = "Coupon";
Text[ japanese ] = "証券の年利";
- Text[ korean ] = "이자표";
+ Text[ korean ] = "이자율";
Text[ chinese_simplified ] = "某一有价证券的年息票利率。";
Text[ chinese_traditional ] = "為有價證券的年利率。";
Text[ turkish ] = "Coupon";
@@ -11822,12 +11822,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Rdito";
Text[ finnish ] = "Tuotto";
Text[ italian ] = "Rendimento";
- Text[ danish ] = "Yield";
+ Text[ danish ] = "Afkast";
Text[ swedish ] = "Avkastning";
Text[ polish ] = "Rentowno";
Text[ portuguese_brazilian ] = "Yield";
Text[ japanese ] = "利回り";
- Text[ korean ] = "산출금";
+ Text[ korean ] = "투자 수익";
Text[ chinese_simplified ] = "yield";
Text[ chinese_traditional ] = "yield";
Text[ turkish ] = "Yield";
@@ -11850,12 +11850,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "El rendimiento anual del valor.";
Text[ finnish ] = "Tuotto";
Text[ italian ] = "Rendimento annuo del titolo";
- Text[ danish ] = "Yield";
+ Text[ danish ] = "Afkast";
Text[ swedish ] = "Avkastning";
Text[ polish ] = "Roczna rentowno papieru wartociowego.";
Text[ portuguese_brazilian ] = "Yield";
Text[ japanese ] = "証券の年間配当";
- Text[ korean ] = "산출금";
+ Text[ korean ] = "투자 수익";
Text[ chinese_simplified ] = "是某一有价证券的年收益率。";
Text[ chinese_traditional ] = "為某一有價證券的年收益率。";
Text[ turkish ] = "Yield";
@@ -11876,9 +11876,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Frequentie";
Text[ french ] = "Frquence";
Text[ spanish ] = "Frecuencia";
- Text[ finnish ] = "Taajuus";
+ Text[ finnish ] = "Maksut";
Text[ italian ] = "Frequenza";
- Text[ danish ] = "Frequency";
+ Text[ danish ] = "Frekvens";
Text[ swedish ] = "Frekvens";
Text[ polish ] = "Czsto";
Text[ portuguese_brazilian ] = "Frequency";
@@ -11904,9 +11904,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Frequentie";
Text[ french ] = "Frquence";
Text[ spanish ] = "El nmero de cupones a pagar anualmente.";
- Text[ finnish ] = "Taajuus";
+ Text[ finnish ] = "Kiinteiden korkomaksujen mr vuodessa";
Text[ italian ] = "Numero dei pagamenti all'anno (1, 2 oppure 4).";
- Text[ danish ] = "Frequency";
+ Text[ danish ] = "Frekvens";
Text[ swedish ] = "Frekvens";
Text[ polish ] = "Liczba kuponw patych w cigu roku.";
Text[ portuguese_brazilian ] = "Frequency";
@@ -11934,12 +11934,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Base";
Text[ finnish ] = "Kantaluku";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Podstawa";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "基準";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "basis";
Text[ chinese_traditional ] = "basis";
Text[ turkish ] = "Base";
@@ -11960,14 +11960,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "Base";
- Text[ finnish ] = "Kantaluku";
+ Text[ finnish ] = "Kytettv vuosien mr";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Rodzaj podstawy wyliczania dni.";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "利息計算の基礎となる日数の計算方法";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "年天数的基数";
Text[ chinese_traditional ] = "要使用的年天數的基準。";
Text[ turkish ] = "Base";
@@ -11985,14 +11985,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ english ] = "Returns the annual nominal interest rate";
Text[ english_us ] = "Returns the annual nominal interest rate";
Text[ portuguese ] = "Devolve a taxa de juros nominal anual.";
- Text[ russian ] = " .";
+ Text[ russian ] = " .";
Text[ greek ] = "Returns the annual nominal interest rate";
- Text[ dutch ] = "Geeft als resultaat de jaarlijkse nominale rente.";
+ Text[ dutch ] = "Geeft de jaarlijkse nominale renteopbrengst.";
Text[ french ] = "Renvoie le taux d'intrt nominal annuel.";
Text[ spanish ] = "Devuelve el inters nominal anual.";
- Text[ finnish ] = "Returns the annual nominal interest rate";
+ Text[ finnish ] = "Palauttaa vuosittaisen nimelliskorkoprosentin";
Text[ italian ] = "Restituisce il tasso d'interesse nominale annuo.";
- Text[ danish ] = "Returns the annual nominal interest rate";
+ Text[ danish ] = "Returnerer den rlige nominelle rente.";
Text[ swedish ] = "Returnerar den rliga nominella rntesatsen.";
Text[ polish ] = "Podaje warto rocznej nominalnej stopy oprocentowania.";
Text[ portuguese_brazilian ] = "Returns the annual nominal interest rate";
@@ -12002,7 +12002,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "傳回某一貸款的年名義利率。";
Text[ turkish ] = "Returns the annual nominal interest rate";
Text[ arabic ] = "Returns the annual nominal interest rate";
- Text[ catalan ] = "Returns the annual nominal interest rate";
+ Text[ catalan ] = "Torna la taxa d'inters anual";
Text[ thai ] = "ส่งกลับอัตราดอกเบี้ยตามตัวเลขประจำปี";
};
@@ -12012,14 +12012,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ english ] = "Effektiver Zins";
Text[ english_us ] = "Effective rate";
Text[ portuguese ] = "EFECTIVA";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "Effektiver Zins";
Text[ dutch ] = "Effectieve rente";
Text[ french ] = "Intrt effectif";
Text[ spanish ] = "Inters efectivo";
Text[ finnish ] = "Kytettv korko";
Text[ italian ] = "Tasso effettivo";
- Text[ danish ] = "Effektiver Zins";
+ Text[ danish ] = "Effektiv rente";
Text[ swedish ] = "Effektiv rnta";
Text[ polish ] = "Stopa efektywna";
Text[ portuguese_brazilian ] = "Effektiver Zins";
@@ -12044,9 +12044,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Effectieve rente";
Text[ french ] = "Intrt effectif";
Text[ spanish ] = "Inters efectivo";
- Text[ finnish ] = "Kytettv korko";
+ Text[ finnish ] = "Todellinen korkoprosentti";
Text[ italian ] = "Tasso effettivo";
- Text[ danish ] = "Effektiver Zins";
+ Text[ danish ] = "Effektiv rente";
Text[ swedish ] = "Effektiv rnta";
Text[ polish ] = "Efektywna stopa procentowa.";
Text[ portuguese_brazilian ] = "Effektiver Zins";
@@ -12073,7 +12073,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Periodos";
Text[ finnish ] = "Npery";
Text[ italian ] = "Periodi";
- Text[ danish ] = "Perioden";
+ Text[ danish ] = "Perioder";
Text[ swedish ] = "Perioder";
Text[ polish ] = "Okresy";
Text[ portuguese_brazilian ] = "Perioden";
@@ -12093,14 +12093,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ english ] = "Perioden";
Text[ english_us ] = "The periods";
Text[ portuguese ] = "Perodos";
- Text[ russian ] = " , .";
+ Text[ russian ] = " .";
Text[ greek ] = "Perioden";
Text[ dutch ] = "Perioden";
Text[ french ] = "Priodes";
Text[ spanish ] = "Periodos";
- Text[ finnish ] = "Npery";
+ Text[ finnish ] = "Kyttkaudet";
Text[ italian ] = "Periodi";
- Text[ danish ] = "Perioden";
+ Text[ danish ] = "Perioder";
Text[ swedish ] = "Perioder";
Text[ polish ] = "Liczba okresw skadanych w roku.";
Text[ portuguese_brazilian ] = "Perioden";
@@ -12124,19 +12124,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Converts a price expressed as a decimal into a price expressed as a fraction";
Text[ portuguese ] = "Converte um preo expresso na forma de um nmero decimal num preo expresso na forma de uma fraco.";
- Text[ russian ] = " , , , .";
+ Text[ russian ] = " , , , .";
Text[ greek ] = "Converts a dollar price, expressed as a decimal number, into a dollar price, expressed as a fraction";
- Text[ dutch ] = "Converts a dollar price, expressed as a decimal number, into a dollar price, expressed as a fraction";
+ Text[ dutch ] = "Converteert een decimale schrijfwijze naar een gecombineerde tiendelige breuk.";
Text[ french ] = "Convertit une cotation de la forme dcimale la forme fractionnaire.";
Text[ spanish ] = "Convierte la cotizacin decimal de un valor en una fraccionaria.";
Text[ finnish ] = "Muuntaa desimaalimuodossa olevan hinnan murtolukumuotoon.";
Text[ italian ] = "Converte un prezzo espresso in numero decimale in un prezzo espresso in frazione.";
- Text[ danish ] = "Converts a dollar price, expressed as a decimal number, into a dollar price, expressed as a fraction";
+ Text[ danish ] = "Konverterer en notering i decimaltal til en blandet decimalbrk.";
Text[ swedish ] = "Konverterar en notering uttryckt som ett decimaltal till en notering uttryckt som ett brk.";
Text[ polish ] = "Zamienia cen w postaci dziesitnej na cen w postaci uamkowej.";
Text[ portuguese_brazilian ] = "Converts a dollar price, expressed as a decimal number, into a dollar price, expressed as a fraction";
Text[ japanese ] = "小数で表されたドル価格を分数表示に変換します。";
- Text[ korean ] = "십진수 달러 가격을 분수 달러 가격으로 변환합니다";
+ Text[ korean ] = "10진수 달러 가격을 분수 달러 가격으로 변환합니다.";
Text[ chinese_simplified ] = "将某一用小数表示的价格转换成混合式的分数表示的价格。";
Text[ chinese_traditional ] = "將某一價格的小數表達式轉換成混合分數表達式。";
Text[ turkish ] = "Converts a dollar price, expressed as a decimal number, into a dollar price, expressed as a fraction";
@@ -12152,14 +12152,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Decimal dollar";
Text[ portuguese ] = "Nmero";
- Text[ russian ] = "";
+ Text[ russian ] = " .";
Text[ greek ] = "Decimal dollar";
Text[ dutch ] = "Getal";
Text[ french ] = "Nombre";
Text[ spanish ] = "Nmero";
Text[ finnish ] = "Valuutta desimaaleina";
Text[ italian ] = "Numero";
- Text[ danish ] = "Decimal dollar";
+ Text[ danish ] = "Tal";
Text[ swedish ] = "Tal";
Text[ polish ] = "Warto dziesitna";
Text[ portuguese_brazilian ] = "Decimal dollar";
@@ -12187,7 +12187,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Es el nmero decimal.";
Text[ finnish ] = "Valuutta desimaaleina";
Text[ italian ] = "Un numero decimale";
- Text[ danish ] = "Decimal dollar";
+ Text[ danish ] = "Tal";
Text[ swedish ] = "Tal";
Text[ polish ] = "Liczba dziesitna.";
Text[ portuguese_brazilian ] = "Decimal dollar";
@@ -12212,10 +12212,10 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ greek ] = "Fraction";
Text[ dutch ] = "Deelteken";
Text[ french ] = "Fraction";
- Text[ spanish ] = "Separador";
+ Text[ spanish ] = "Fraccin";
Text[ finnish ] = "Murtoluku";
Text[ italian ] = "Divisore";
- Text[ danish ] = "Fraction";
+ Text[ danish ] = "Separator";
Text[ swedish ] = "Nmnare";
Text[ polish ] = "Uamek";
Text[ portuguese_brazilian ] = "Fraction";
@@ -12236,14 +12236,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The divisor";
Text[ portuguese ] = "Fraco";
- Text[ russian ] = " , .";
+ Text[ russian ] = "";
Text[ greek ] = "Fraction";
Text[ dutch ] = "Deelteken";
Text[ french ] = "Fraction";
Text[ spanish ] = "Nmero entero usado como denominador.";
- Text[ finnish ] = "Murtoluku";
+ Text[ finnish ] = "Luku, jolla jaetaan";
Text[ italian ] = "Un numero intero";
- Text[ danish ] = "Fraction";
+ Text[ danish ] = "Separator";
Text[ swedish ] = "Nmnare";
Text[ polish ] = "Liczba cakowita uywana jako mianownik uamka.";
Text[ portuguese_brazilian ] = "Fraction";
@@ -12267,19 +12267,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Converts a price expressed as a fraction into a price expressed as a decimal";
Text[ portuguese ] = "Converte um preo expresso na forma de uma fraco num preo expresso na forma de um nmero decimal.";
- Text[ russian ] = " , , , .";
+ Text[ russian ] = " , , , .";
Text[ greek ] = "Converts a dollar price, expressed as a fraction, into a dollar price, expressed as a decimal number";
- Text[ dutch ] = "Converts a dollar price, expressed as a fraction, into a dollar price, expressed as a decimal number";
+ Text[ dutch ] = "Converteert een schrijfwijze met een tiendelige breuk naar een decimaal getal.";
Text[ french ] = "Convertit une cotation de la forme fractionnaire la forme dcimale.";
Text[ spanish ] = "Convierte la cotizacin fraccionaria de un valor en decimal.";
- Text[ finnish ] = "Muuntaa murtolukumuodossa olevan hinnan desimaalimuotoon.";
+ Text[ finnish ] = "Muuntaa murtolukumuodossa olevan hinnan desimaalimuotoon";
Text[ italian ] = "Converte un prezzo espresso in frazione in numero decimale.";
- Text[ danish ] = "Converts a dollar price, expressed as a fraction, into a dollar price, expressed as a decimal number";
+ Text[ danish ] = "Konverterer en notering angivet som decimalbrk til et decimaltal.";
Text[ swedish ] = "Konverterar en notering uttryckt som ett brk till ett decimaltal.";
Text[ polish ] = "Zamienia cen w postaci uamkowej na cen w postaci dziesitnej.";
Text[ portuguese_brazilian ] = "Converts a dollar price, expressed as a fraction, into a dollar price, expressed as a decimal number";
Text[ japanese ] = "分数で表されたドル価格を小数表示に変換します。";
- Text[ korean ] = "분수 달러 가격을 십진수 달러 가격으로 변환합니다";
+ Text[ korean ] = "분수 달러 가격을 10진수 달러 가격으로 변환합니다.";
Text[ chinese_simplified ] = "将某一按分数表示的价格转换成小数表示的价格。";
Text[ chinese_traditional ] = "將某一價格的混合分數表達式轉換成小數表達式。";
Text[ turkish ] = "Converts a dollar price, expressed as a fraction, into a dollar price, expressed as a decimal number";
@@ -12295,19 +12295,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Fractional dollar";
Text[ portuguese ] = "Nmero";
- Text[ russian ] = "";
+ Text[ russian ] = " ";
Text[ greek ] = "Fractional dollar";
Text[ dutch ] = "Getal";
Text[ french ] = "Nombre";
Text[ spanish ] = "Nmero";
Text[ finnish ] = "Valuutta murtolukuna";
Text[ italian ] = "Numero";
- Text[ danish ] = "Fractional dollar";
+ Text[ danish ] = "Tal";
Text[ swedish ] = "Tal";
Text[ polish ] = "Warto uamkowa";
Text[ portuguese_brazilian ] = "Fractional dollar";
Text[ japanese ] = "分子";
- Text[ korean ] = "분수 달러";
+ Text[ korean ] = "분자";
Text[ chinese_simplified ] = "fractional_dollar";
Text[ chinese_traditional ] = "fractional_dollar";
Text[ turkish ] = "Fractional dollar";
@@ -12330,12 +12330,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Nmero";
Text[ finnish ] = "Valuutta murtolukuna";
Text[ italian ] = "Numero espresso come frazione";
- Text[ danish ] = "Fractional dollar";
+ Text[ danish ] = "Tal";
Text[ swedish ] = "Tal";
Text[ polish ] = "Liczba wyraona w postaci uamka.";
Text[ portuguese_brazilian ] = "Fractional dollar";
Text[ japanese ] = "分数で表された数値";
- Text[ korean ] = "분수 달러";
+ Text[ korean ] = "분자";
Text[ chinese_simplified ] = "按分数表示的数值";
Text[ chinese_traditional ] = "分數表達式";
Text[ turkish ] = "Fractional dollar";
@@ -12355,10 +12355,10 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ greek ] = "Fraction";
Text[ dutch ] = "Deelteken";
Text[ french ] = "Fraction";
- Text[ spanish ] = "Separador";
+ Text[ spanish ] = "Divisor";
Text[ finnish ] = "Murtoluku";
Text[ italian ] = "Divisore";
- Text[ danish ] = "Fraction";
+ Text[ danish ] = "Separator";
Text[ swedish ] = "Nmnare";
Text[ polish ] = "Uamek";
Text[ portuguese_brazilian ] = "Fraction";
@@ -12379,14 +12379,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The divisor";
Text[ portuguese ] = "Fraco";
- Text[ russian ] = ", .";
+ Text[ russian ] = "";
Text[ greek ] = "Fraction";
Text[ dutch ] = "Deelteken";
Text[ french ] = "Fraction";
Text[ spanish ] = "Separador";
- Text[ finnish ] = "Murtoluku";
+ Text[ finnish ] = "Luku, jolla jaetaan";
Text[ italian ] = "Numero intero espresso come frazione";
- Text[ danish ] = "Fraction";
+ Text[ danish ] = "Separator";
Text[ swedish ] = "Nmnare";
Text[ polish ] = "Liczba cakowita uywana jako mianownik uamka.";
Text[ portuguese_brazilian ] = "Fraction";
@@ -12410,19 +12410,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Returns the yield on a security that pays periodic interest";
Text[ portuguese ] = "Devolve o rendimento de um ttulo com juros peridicos.";
- Text[ russian ] = " , .";
+ Text[ russian ] = " .";
Text[ greek ] = "Returns the yield on a security that pays periodic interest";
Text[ dutch ] = "Geeft als resultaat het rendement van een waardepapier waarvan de rente periodiek wordt uitbetaald.";
Text[ french ] = "Renvoie le rendement d'un titre rapportant des intrts priodiques.";
Text[ spanish ] = "Devuelve los rditos de un valor que da intereses peridicos.";
Text[ finnish ] = "Palauttaa sellaisen joukkovelkakirjalainan tuoton, jolle maksetaan snnllist korkoa";
Text[ italian ] = "Restituisce il rendimento di un titolo che frutta interessi periodici.";
- Text[ danish ] = "Returns the yield on a security that pays periodic interest";
+ Text[ danish ] = "Returnerer afkastet for et vrdipapir med periodisk renteudbetaling.";
Text[ swedish ] = "Returnerar avkastningen p ett vrdepapper som betalar ut rntor periodiskt.";
Text[ polish ] = "Podaje rentowno papieru wartociowego o okresowym oprocentowaniu.";
Text[ portuguese_brazilian ] = "Returns the yield on a security that pays periodic interest";
Text[ japanese ] = "利息が定期的に支払われる証券の利回りを返します。";
- Text[ korean ] = "정기 이자를 지불하는 하나의 담보물에 대한 산출금을 반환합니다";
+ Text[ korean ] = "정기 이자를 지불하는 담보물에 대한 투자 수익금을 구합니다.";
Text[ chinese_simplified ] = "计算某一定期付息的有价证券的收益率。";
Text[ chinese_traditional ] = "傳回某一定期付息的有價證券的收益率。";
Text[ turkish ] = "Returns the yield on a security that pays periodic interest";
@@ -12438,14 +12438,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Settlement";
Text[ portuguese ] = "Liquidao";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Settlement";
Text[ dutch ] = "Stortingsdatum";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Liquidacin";
Text[ finnish ] = "Lunastus";
Text[ italian ] = "Liquidazione";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Rozliczenie";
Text[ portuguese_brazilian ] = "Settlement";
@@ -12471,9 +12471,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Stortingsdatum";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Liquidacin";
- Text[ finnish ] = "Lunastus";
+ Text[ finnish ] = "Joukkovelkakirjan lunastuspivmr";
Text[ italian ] = "Data di acquisto del titolo";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Data rozliczenia papieru wartociowego.";
Text[ portuguese_brazilian ] = "Settlement";
@@ -12494,14 +12494,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Maturity";
Text[ portuguese ] = "Vencimento";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Maturity";
Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Vencimiento";
Text[ finnish ] = "Erntyminen";
Text[ italian ] = "Scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty";
Text[ portuguese_brazilian ] = "Maturity";
@@ -12527,9 +12527,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Vencimiento";
- Text[ finnish ] = "Erntyminen";
+ Text[ finnish ] = "Joukkovelkakirjan erntymispivmr";
Text[ italian ] = "Data di scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty papieru wartociowego.";
Text[ portuguese_brazilian ] = "Maturity";
@@ -12557,12 +12557,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Inters";
Text[ finnish ] = "Korko";
Text[ italian ] = "Tasso interesse";
- Text[ danish ] = "Rate";
+ Text[ danish ] = "Rente";
Text[ swedish ] = "Rnta";
Text[ polish ] = "Stopa";
Text[ portuguese_brazilian ] = "Rate";
Text[ japanese ] = "利率";
- Text[ korean ] = "이자율";
+ Text[ korean ] = "이율";
Text[ chinese_simplified ] = "rate";
Text[ chinese_traditional ] = "rate";
Text[ turkish ] = "Rate";
@@ -12583,14 +12583,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Rente";
Text[ french ] = "Intrt";
Text[ spanish ] = "Inters";
- Text[ finnish ] = "Korko";
+ Text[ finnish ] = "Joukkovelkakirjan vuosittainen kiinte korko";
Text[ italian ] = "Tasso interesse annuale";
- Text[ danish ] = "Rate";
+ Text[ danish ] = "Rente";
Text[ swedish ] = "Rnta";
Text[ polish ] = "Roczne oprocentowanie kuponu papieru wartociowego.";
Text[ portuguese_brazilian ] = "Rate";
Text[ japanese ] = "証券の年利";
- Text[ korean ] = "이자율";
+ Text[ korean ] = "이율";
Text[ chinese_simplified ] = "是某一有价证券的年息票利率。";
Text[ chinese_traditional ] = "為某一有價證券的年利率。";
Text[ turkish ] = "Rate";
@@ -12606,14 +12606,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Price";
Text[ portuguese ] = "Preo";
- Text[ russian ] = "";
+ Text[ russian ] = "";
Text[ greek ] = "Par";
Text[ dutch ] = "Koers";
Text[ french ] = "Prix";
Text[ spanish ] = "Cotizacin";
Text[ finnish ] = "Hinta";
Text[ italian ] = "Prezzo";
- Text[ danish ] = "Par";
+ Text[ danish ] = "Kurs";
Text[ swedish ] = "Pris";
Text[ polish ] = "Kurs";
Text[ portuguese_brazilian ] = "Par";
@@ -12639,9 +12639,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Koers";
Text[ french ] = "Prix";
Text[ spanish ] = "Cotizacin";
- Text[ finnish ] = "Hinta";
+ Text[ finnish ] = "Joukkovelkakirjan hinta";
Text[ italian ] = "Il prezzo d'acquisto";
- Text[ danish ] = "Par";
+ Text[ danish ] = "Kurs";
Text[ swedish ] = "Pris";
Text[ polish ] = "Cena papieru wartociowego.";
Text[ portuguese_brazilian ] = "Par";
@@ -12662,14 +12662,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Redemption";
Text[ portuguese ] = "Reembolso";
- Text[ russian ] = "";
+ Text[ russian ] = "";
Text[ greek ] = "Redemption";
- Text[ dutch ] = "Aflossingsprijs";
+ Text[ dutch ] = "Aflossingsbedrag";
Text[ french ] = "Remboursement";
Text[ spanish ] = "Devolucin";
Text[ finnish ] = "Lunastus";
Text[ italian ] = "Rimborso";
- Text[ danish ] = "Redemption";
+ Text[ danish ] = "Tilbagebetaling";
Text[ swedish ] = "Inlsningsvrde";
Text[ polish ] = "Wykup";
Text[ portuguese_brazilian ] = "Redemption";
@@ -12692,12 +12692,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Reembolso";
Text[ russian ] = " .";
Text[ greek ] = "Redemption";
- Text[ dutch ] = "Aflossingsprijs";
+ Text[ dutch ] = "Aflossingsbedrag";
Text[ french ] = "Remboursement";
Text[ spanish ] = "Devolucin";
- Text[ finnish ] = "Lunastus";
+ Text[ finnish ] = "Joukkovelkakirjan lunastusarvo";
Text[ italian ] = "Valore di rimborso";
- Text[ danish ] = "Redemption";
+ Text[ danish ] = "Tilbagebetaling";
Text[ swedish ] = "Inlsningsvrde";
Text[ polish ] = "Warto wykupu papieru wartociowego.";
Text[ portuguese_brazilian ] = "Redemption";
@@ -12720,12 +12720,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Frequncia";
Text[ russian ] = "";
Text[ greek ] = "Frequency";
- Text[ dutch ] = "Frequency";
+ Text[ dutch ] = "Frequentie";
Text[ french ] = "Frquence";
Text[ spanish ] = "Frecuencia";
- Text[ finnish ] = "Taajuus";
+ Text[ finnish ] = "Maksut";
Text[ italian ] = "Frequenza";
- Text[ danish ] = "Frequency";
+ Text[ danish ] = "Frekvens";
Text[ swedish ] = "Frekvens";
Text[ polish ] = "Czsto";
Text[ portuguese_brazilian ] = "Frequency";
@@ -12751,9 +12751,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Frequentie";
Text[ french ] = "Frquence";
Text[ spanish ] = "Frecuencia";
- Text[ finnish ] = "Taajuus";
+ Text[ finnish ] = "Kiinteiden korkomaksujen mr vuodessa";
Text[ italian ] = "Numero dei pagamenti all'anno.";
- Text[ danish ] = "Frequency";
+ Text[ danish ] = "Frekvens";
Text[ swedish ] = "Frekvens";
Text[ polish ] = "Liczba kuponw patnych w cigu roku.";
Text[ portuguese_brazilian ] = "Frequency";
@@ -12776,17 +12776,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Base";
Text[ russian ] = "";
Text[ greek ] = "Base";
- Text[ dutch ] = "Base";
+ Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "Base";
Text[ finnish ] = "Kantaluku";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Podstawa";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "基準";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "basis";
Text[ chinese_traditional ] = "basis";
Text[ turkish ] = "Base";
@@ -12807,14 +12807,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "Base";
- Text[ finnish ] = "Kantaluku";
+ Text[ finnish ] = "Kytettv vuosien mr";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Rodzaj podstawy wyliczania dni.";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "利息計算の基礎となる日数の計算方法";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "年天数的基数";
Text[ chinese_traditional ] = "要使用的年天數的基準。";
Text[ turkish ] = "Base";
@@ -12833,19 +12833,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Returns the annual yield for a discounted security";
Text[ portuguese ] = "Devolve o rendimento anual de um ttulo descontado.";
- Text[ russian ] = " , .";
+ Text[ russian ] = " .";
Text[ greek ] = "Returns the annual yield for a discounted security (e.g. treasury bill)";
- Text[ dutch ] = "Returns the annual yield for a discounted security (e.g. treasury bill)";
+ Text[ dutch ] = "Geeft het jaarrendement van een waardepapier met disconto.";
Text[ french ] = "Renvoie le rendement annuel d'un titre escompt.";
Text[ spanish ] = "Devuelve el rendimiento anual de un valor con descuento.";
- Text[ finnish ] = "Palauttaa sellaisen joukkovelkakirjalainan vuosittaisen tuoton, jonka nimellisarvo on reaaliarvoa suurempi (esimerkiksi valtion obligaatio)";
+ Text[ finnish ] = "Palauttaa sellaisen joukkovelkakirjalainan vuosittaisen tuoton, jonka nimellisarvo on reaaliarvoa suurempi";
Text[ italian ] = "Restituisce il rendimento annuale di un titolo scontato.";
- Text[ danish ] = "Returns the annual yield for a discounted security (e.g. treasury bill)";
+ Text[ danish ] = "Returnerer det rlige afkast for et diskonteret vrdipapir";
Text[ swedish ] = "Returnerar den rliga avkastningen fr ett diskonterat vrdepapper.";
Text[ polish ] = "Podaje roczn rentowno zdyskontowanego papieru wartociowego, np. bonu skarbowego.";
Text[ portuguese_brazilian ] = "Returns the annual yield for a discounted security (e.g. treasury bill)";
Text[ japanese ] = "割引債の年利回りを返します。";
- Text[ korean ] = "감가 담보물(재무성 단기 채권)에 대한 연간 산출금을 반환합니다";
+ Text[ korean ] = "감가 담보물(재무성 단기 채권)에 대한 연간 투자 수익금을 구합니다.";
Text[ chinese_simplified ] = "计算某一贴现的有价证券的年收益率。";
Text[ chinese_traditional ] = "傳回某一貼現的有價證券的年收益率。";
Text[ turkish ] = "Returns the annual yield for a discounted security (e.g. treasury bill)";
@@ -12861,14 +12861,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Settlement";
Text[ portuguese ] = "Liquidao";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Settlement";
Text[ dutch ] = "Stortingsdatum";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Liquidacin";
Text[ finnish ] = "Lunastus";
Text[ italian ] = "Liquidazione";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Rozliczenie";
Text[ portuguese_brazilian ] = "Settlement";
@@ -12891,12 +12891,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Liquidao";
Text[ russian ] = " .";
Text[ greek ] = "Settlement";
- Text[ dutch ] = "Settlement";
+ Text[ dutch ] = "Afrekening";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Es la fecha de liquidacin del valor.";
- Text[ finnish ] = "Lunastus";
+ Text[ finnish ] = "Joukkovelkakirjan lunastuspivmr";
Text[ italian ] = "Data di acquisto del titolo.";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Data rozliczenia papieru wartociowego.";
Text[ portuguese_brazilian ] = "Settlement";
@@ -12917,14 +12917,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Maturity";
Text[ portuguese ] = "Vencimento";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Maturity";
Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Vencimiento";
Text[ finnish ] = "Erntyminen";
Text[ italian ] = "Scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty";
Text[ portuguese_brazilian ] = "Maturity";
@@ -12947,12 +12947,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Vencimento";
Text[ russian ] = " .";
Text[ greek ] = "Maturity";
- Text[ dutch ] = "Maturity";
+ Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Es la fecha de vencimiento del valor.";
- Text[ finnish ] = "Erntyminen";
+ Text[ finnish ] = "Joukkovelkakirjan erntymispivmr";
Text[ italian ] = "Data di scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty papieru wartociowego.";
Text[ portuguese_brazilian ] = "Maturity";
@@ -12973,14 +12973,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Price";
Text[ portuguese ] = "Preo";
- Text[ russian ] = "";
+ Text[ russian ] = "";
Text[ greek ] = "Price";
Text[ dutch ] = "Koers";
Text[ french ] = "Prix";
Text[ spanish ] = "Precio";
Text[ finnish ] = "Hinta";
Text[ italian ] = "Prezzo";
- Text[ danish ] = "Price";
+ Text[ danish ] = "Kurs";
Text[ swedish ] = "Pris";
Text[ polish ] = "Kurs";
Text[ portuguese_brazilian ] = "Price";
@@ -13003,12 +13003,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Preo";
Text[ russian ] = " .";
Text[ greek ] = "Price";
- Text[ dutch ] = "Price";
+ Text[ dutch ] = "Koers";
Text[ french ] = "Prix";
Text[ spanish ] = "El precio del valor.";
- Text[ finnish ] = "Hinta";
+ Text[ finnish ] = "Joukkovelkakirjan hinta";
Text[ italian ] = "Il prezzo di acquisto del titolo";
- Text[ danish ] = "Price";
+ Text[ danish ] = "Kurs";
Text[ swedish ] = "Pris";
Text[ polish ] = "Cena papieru wartociowego.";
Text[ portuguese_brazilian ] = "Price";
@@ -13029,14 +13029,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Redemption";
Text[ portuguese ] = "Reembolso";
- Text[ russian ] = "";
+ Text[ russian ] = "";
Text[ greek ] = "Redemption";
- Text[ dutch ] = "Redemption";
+ Text[ dutch ] = "Aflossingsbedrag";
Text[ french ] = "Remboursement";
Text[ spanish ] = "Devolucin";
Text[ finnish ] = "Lunastus";
Text[ italian ] = "Rimborso";
- Text[ danish ] = "Redemption";
+ Text[ danish ] = "Tilbagebetaling";
Text[ swedish ] = "Inlsningsvrde";
Text[ polish ] = "Wykup";
Text[ portuguese_brazilian ] = "Redemption";
@@ -13059,12 +13059,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Reembolso";
Text[ russian ] = " .";
Text[ greek ] = "Redemption";
- Text[ dutch ] = "Redemption";
+ Text[ dutch ] = "Aflossingsbedrag";
Text[ french ] = "Remboursement";
Text[ spanish ] = "Es el rendimiento del valor.";
- Text[ finnish ] = "Lunastus";
+ Text[ finnish ] = "Joukkovelkakirjan lunastusarvo";
Text[ italian ] = "Il valore di rimborso";
- Text[ danish ] = "Redemption";
+ Text[ danish ] = "Tilbagebetaling";
Text[ swedish ] = "Inlsningsvrde";
Text[ polish ] = "Warto wykupu papieru wartociowego.";
Text[ portuguese_brazilian ] = "Redemption";
@@ -13087,17 +13087,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Base";
Text[ russian ] = "";
Text[ greek ] = "Base";
- Text[ dutch ] = "Base";
+ Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "Base";
Text[ finnish ] = "Kantaluku";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Podstawa";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "基準";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "basis";
Text[ chinese_traditional ] = "basis";
Text[ turkish ] = "Base";
@@ -13115,17 +13115,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Base";
Text[ russian ] = " .";
Text[ greek ] = "Base";
- Text[ dutch ] = "Base";
+ Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "El tipo de base segn el cual deben ser contados los das.";
- Text[ finnish ] = "Kantaluku";
+ Text[ finnish ] = "Kytettv vuosien mr";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Rodzaj podstawy wyliczania dni.";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "利息計算の基礎となる日数の計算方法";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "年天数的基数";
Text[ chinese_traditional ] = "要使用的年天數的基準。";
Text[ turkish ] = "Base";
@@ -13146,17 +13146,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Devolve o rendimento anual de um ttulo que paga os juros na data de vencimento.";
Text[ russian ] = " , .";
Text[ greek ] = "Returns the annual yield of a security that pays interest at maturity";
- Text[ dutch ] = "Returns the annual yield of a security that pays interest at maturity";
+ Text[ dutch ] = "Geeft het jaarrendement van een waardepapier waarbij op de vervaldatum rente wordt uitbetaald.";
Text[ french ] = "Renvoie le rendement annuel d'un titre rapportant des intrts au terme de l'chance.";
Text[ spanish ] = "Rendimiento anual de un valor que paga intereses al vencimiento.";
Text[ finnish ] = "Palauttaa sellaisen joukkovelkakirjan vuosittaisen tuoton, jolle suoritetaan korko velkakirjan erntyess";
Text[ italian ] = "Restituisce il rendimento annuale di un titolo che paga gli interessi alla scadenza.";
- Text[ danish ] = "Returns the annual yield of a security that pays interest at maturity";
+ Text[ danish ] = "Returnerer det rlige afkast for et vrdipapir med renteudbetaling p forfaldsdagen.";
Text[ swedish ] = "Returnerar den rliga avkastningen fr ett vrdepapper som ger rnta p frfallodagen.";
Text[ polish ] = "Podaje roczn rentowno papieru wartociowego oprocentowanego przy wykupie.";
Text[ portuguese_brazilian ] = "Returns the annual yield of a security that pays interest at maturity";
Text[ japanese ] = "満期日に利息が支払われる証券の利回りを返します。";
- Text[ korean ] = "만기일에 이자를 지불하는 하나의 담보물에 대한 연간 산출금을 반환합니다";
+ Text[ korean ] = "만기일에 이자를 지불하는 담보물에 대한 연간 수익금을 구합니다.";
Text[ chinese_simplified ] = "计算某一到期付息的有价证券的年收益率。";
Text[ chinese_traditional ] = "傳回某一到期付息的有價證券的年收益率。";
Text[ turkish ] = "Returns the annual yield of a security that pays interest at maturity";
@@ -13172,14 +13172,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Settlement";
Text[ portuguese ] = "Liquidao";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Settlement";
- Text[ dutch ] = "Settlement";
+ Text[ dutch ] = "Afrekening";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Liquidacin";
Text[ finnish ] = "Lunastus";
Text[ italian ] = "Liquidazione";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Rozliczenie";
Text[ portuguese_brazilian ] = "Settlement";
@@ -13202,12 +13202,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Liquidao";
Text[ russian ] = " .";
Text[ greek ] = "Settlement";
- Text[ dutch ] = "Settlement";
+ Text[ dutch ] = "Afrekening";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Es la fecha de liquidacin del valor.";
- Text[ finnish ] = "Lunastus";
+ Text[ finnish ] = "Joukkovelkakirjan lunastuspivmr";
Text[ italian ] = "Data di acquisto del titolo";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Data rozliczenia papieru wartociowego.";
Text[ portuguese_brazilian ] = "Settlement";
@@ -13228,14 +13228,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Maturity";
Text[ portuguese ] = "Vencimento";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Maturity";
- Text[ dutch ] = "Maturity";
+ Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Vencimiento";
Text[ finnish ] = "Erntyminen";
Text[ italian ] = "Scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty";
Text[ portuguese_brazilian ] = "Maturity";
@@ -13258,12 +13258,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Vencimento";
Text[ russian ] = " .";
Text[ greek ] = "Maturity";
- Text[ dutch ] = "Maturity";
+ Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "La fecha de vencimiento del valor.";
- Text[ finnish ] = "Erntyminen";
+ Text[ finnish ] = "Joukkovelkakirjan erntymispivmr";
Text[ italian ] = "Data di scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty papieru wartociowego.";
Text[ portuguese_brazilian ] = "Maturity";
@@ -13284,14 +13284,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Issue";
Text[ portuguese ] = "Emisso";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Issue";
- Text[ dutch ] = "Issue";
+ Text[ dutch ] = "Uitgifte";
Text[ french ] = "mission";
Text[ spanish ] = "Emisin";
Text[ finnish ] = "Julkistus";
Text[ italian ] = "Emissione";
- Text[ danish ] = "Issue";
+ Text[ danish ] = "Emission";
Text[ swedish ] = "Emission";
Text[ polish ] = "Emisja";
Text[ portuguese_brazilian ] = "Issue";
@@ -13314,12 +13314,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Emisso";
Text[ russian ] = " .";
Text[ greek ] = "Issue";
- Text[ dutch ] = "Issue";
+ Text[ dutch ] = "Uitgifte";
Text[ french ] = "mission";
Text[ spanish ] = "Fecha de la emisin del valor.";
- Text[ finnish ] = "Julkistus";
+ Text[ finnish ] = "Joukkovelkakirjan julkaisupivmr";
Text[ italian ] = "Data di emissione";
- Text[ danish ] = "Issue";
+ Text[ danish ] = "Emission";
Text[ swedish ] = "Emission";
Text[ polish ] = "Data emisji papieru wartociowego.";
Text[ portuguese_brazilian ] = "Issue";
@@ -13342,17 +13342,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Taxa";
Text[ russian ] = "";
Text[ greek ] = "Rate";
- Text[ dutch ] = "Rate";
+ Text[ dutch ] = "Rente";
Text[ french ] = "Intrt";
Text[ spanish ] = "Inters";
Text[ finnish ] = "Korko";
Text[ italian ] = "Tasso interesse";
- Text[ danish ] = "Rate";
+ Text[ danish ] = "Rente";
Text[ swedish ] = "Rnta";
Text[ polish ] = "Stopa";
Text[ portuguese_brazilian ] = "Rate";
Text[ japanese ] = "利率";
- Text[ korean ] = "이자율";
+ Text[ korean ] = "이율";
Text[ chinese_simplified ] = "rate";
Text[ chinese_traditional ] = "rate";
Text[ turkish ] = "Rate";
@@ -13370,17 +13370,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Taxa";
Text[ russian ] = " .";
Text[ greek ] = "Rate";
- Text[ dutch ] = "Rate";
+ Text[ dutch ] = "Rente";
Text[ french ] = "Intrt";
Text[ spanish ] = "Es la tasa de inters en la fecha de emisin.";
- Text[ finnish ] = "Korko";
+ Text[ finnish ] = "Joukkovelkakirjan vuosittainen kiinte korko";
Text[ italian ] = "Il tasso d'interesse del titolo alla data di emissione";
- Text[ danish ] = "Rate";
+ Text[ danish ] = "Rente";
Text[ swedish ] = "Rnta";
Text[ polish ] = "Stopa procentowa papieru wartociowego.";
Text[ portuguese_brazilian ] = "Rate";
Text[ japanese ] = "発行日における証券の利率";
- Text[ korean ] = "이자율";
+ Text[ korean ] = "이율";
Text[ chinese_simplified ] = "利率";
Text[ chinese_traditional ] = "利率";
Text[ turkish ] = "Rate";
@@ -13396,14 +13396,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Price";
Text[ portuguese ] = "Preo";
- Text[ russian ] = "";
+ Text[ russian ] = "";
Text[ greek ] = "Price";
- Text[ dutch ] = "Price";
+ Text[ dutch ] = "Koers";
Text[ french ] = "Prix";
Text[ spanish ] = "Cotizacin";
Text[ finnish ] = "Hinta";
Text[ italian ] = "Prezzo";
- Text[ danish ] = "Price";
+ Text[ danish ] = "Kurs";
Text[ swedish ] = "Pris";
Text[ polish ] = "Kurs";
Text[ portuguese_brazilian ] = "Price";
@@ -13426,12 +13426,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Preo";
Text[ russian ] = " .";
Text[ greek ] = "Price";
- Text[ dutch ] = "Price";
+ Text[ dutch ] = "Koers";
Text[ french ] = "Prix";
Text[ spanish ] = "Es el precio del valor.";
- Text[ finnish ] = "Hinta";
+ Text[ finnish ] = "Joukkovelkakirjan hinta";
Text[ italian ] = "Il prezzo di acquisto";
- Text[ danish ] = "Price";
+ Text[ danish ] = "Kurs";
Text[ swedish ] = "Pris";
Text[ polish ] = "Cena papieru wartociowego.";
Text[ portuguese_brazilian ] = "Price";
@@ -13454,17 +13454,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Base";
Text[ russian ] = "";
Text[ greek ] = "Base";
- Text[ dutch ] = "Base";
+ Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "Base";
Text[ finnish ] = "Kantaluku";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Podstawa";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "基準";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "basis";
Text[ chinese_traditional ] = "basis";
Text[ turkish ] = "Base";
@@ -13485,14 +13485,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "El tipo de base segn el cual se contarn los das.";
- Text[ finnish ] = "Kantaluku";
+ Text[ finnish ] = "Kytettv vuosien mr";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Rodzaj podstawy wyliczania dni.";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "利息計算の基礎となる日数の計算方法";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "年天数的基数";
Text[ chinese_traditional ] = "要使用的年天數的基準。";
Text[ turkish ] = "Base";
@@ -13518,12 +13518,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Fecha de liquidacin de la letra de tesorera.";
Text[ finnish ] = "Palauttaa joukkovelkakirjalainan tuoton mukaisen valtion obligaation tuoton";
Text[ italian ] = "Calcola il rendimento equivalente ad un'obbligazione per un buono del tesoro.";
- Text[ danish ] = "Returns the bond-equivalent yield for a treasury bill";
+ Text[ danish ] = "Omregner forrentningen for en skatkammerveksel til den for ln normale enkelte rlige forrentning.";
Text[ swedish ] = "Rknar om rntan p en statsskuldsvxel till den rliga rnta som obligationer brukar ha.";
Text[ polish ] = "Podaje rentowno ekwiwalentu obligacji dla bonu skarbowego.";
Text[ portuguese_brazilian ] = "Returns the bond-equivalent yield for a treasury bill";
Text[ japanese ] = "米国財務省短期証券(TB)の債券に相当する利回りを返します。";
- Text[ korean ] = "재무성 단기 채권에 대한 증서에 해당하는 산출금을 반환합니다";
+ Text[ korean ] = "재무성 단기 채권에 대한 증서에 해당하는 산출금을 구합니다.";
Text[ chinese_simplified ] = "计算某一国家财政部证券的等值收益率。";
Text[ chinese_traditional ] = "傳回某一國庫債券的等值收益率。";
Text[ turkish ] = "Returns the bond-equivalent yield for a treasury bill";
@@ -13539,14 +13539,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Settlement";
Text[ portuguese ] = "Liquidao";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Settlement";
Text[ dutch ] = "Stortingsdatum";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Liquidacin";
Text[ finnish ] = "Lunastus";
Text[ italian ] = "Liquidazione";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Rozliczenie";
Text[ portuguese_brazilian ] = "Settlement";
@@ -13572,9 +13572,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Stortingsdatum";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Fecha de liquidacin de la letra.";
- Text[ finnish ] = "Lunastus";
+ Text[ finnish ] = "Joukkovelkakirjan lunastuspivmr";
Text[ italian ] = "Data di acquisto";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Data rozliczenia papieru wartociowego.";
Text[ portuguese_brazilian ] = "Settlement";
@@ -13595,14 +13595,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Maturity";
Text[ portuguese ] = "Vencimento";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Maturity";
Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Vencimiento";
Text[ finnish ] = "Erntyminen";
Text[ italian ] = "Scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty";
Text[ portuguese_brazilian ] = "Maturity";
@@ -13628,9 +13628,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Es la fecha de vencimiento de la letra.";
- Text[ finnish ] = "Erntyminen";
+ Text[ finnish ] = "Joukkovelkakirjan erntymispivmr";
Text[ italian ] = "Data di scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty papieru wartociowego.";
Text[ portuguese_brazilian ] = "Maturity";
@@ -13658,7 +13658,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Descuento";
Text[ finnish ] = "Tappio";
Text[ italian ] = "Sconto";
- Text[ danish ] = "Discount";
+ Text[ danish ] = "Underkurs";
Text[ swedish ] = "Diskonteringsrnta";
Text[ polish ] = "Dyskonto";
Text[ portuguese_brazilian ] = "Discount";
@@ -13686,7 +13686,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "La tasa de descuento de la letra.";
Text[ finnish ] = "Tappio";
Text[ italian ] = "La percentuale di riduzione";
- Text[ danish ] = "Discount";
+ Text[ danish ] = "Underkurs";
Text[ swedish ] = "Diskonteringsrnta";
Text[ polish ] = "Stopa dyskontowa bonu skarbowego.";
Text[ portuguese_brazilian ] = "Discount";
@@ -13710,14 +13710,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Returns the price of 100 currency units face value for a treasury bill";
Text[ portuguese ] = "Devolve o preo por 100 euros do valor nominal de uma Obrigao do Tesouro.";
- Text[ russian ] = " 100 . .";
+ Text[ russian ] = " 100 .";
Text[ greek ] = "Returns the price of $100 face value for a treasury bill";
- Text[ dutch ] = "Geeft als resultaat de koers per fl 100 nominale waarde voor een schatkistpapier.";
+ Text[ dutch ] = "Geeft de prijs per nominale waarde van 100 valuta-eenheden van een schatkistpromesse.";
Text[ french ] = "Renvoie le prix d'un bon du Trsor pour une valeur nominale de 100 units montaires.";
Text[ spanish ] = "Devuelve la cotizacin de una letra del tesoro del valor nominal de 100 unidades monetarias.";
- Text[ finnish ] = "Palauttaa valtion obligaation nimellisarvon (100) hinnan";
+ Text[ finnish ] = "Palauttaa valtion obligaation 100 valuuttayksikn nimellisarvon hinnan.";
Text[ italian ] = "Restituisce il prezzo di un buono del tesoro dal valore nominale di 100 unit monetarie.";
- Text[ danish ] = "Returns the price of $100 face value for a treasury bill";
+ Text[ danish ] = "Returnerer kursen pr. 100 valutaenheder plydende vrdi for en skatkammerveksel.";
Text[ swedish ] = "Returnerar priset per 100 valutaenheter nominellt vrde fr en statsskuldvxel.";
Text[ polish ] = "Podaje cen za 100 jednostek wartoci nominalnej bonu skarbowego.";
Text[ portuguese_brazilian ] = "Returns the price of $100 face value for a treasury bill";
@@ -13738,14 +13738,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Settlement";
Text[ portuguese ] = "Liquidao";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Settlement";
Text[ dutch ] = "Stortingsdatum";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Liquidacin";
Text[ finnish ] = "Lunastus";
Text[ italian ] = "Liquidazione";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Rozliczenie";
Text[ portuguese_brazilian ] = "Settlement";
@@ -13771,9 +13771,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Stortingsdatum";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Fecha de liquidacin de la letra.";
- Text[ finnish ] = "Lunastus";
+ Text[ finnish ] = "Joukkovelkakirjan lunastuspivmr";
Text[ italian ] = "Data di acquisto";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Data rozliczenia papieru wartociowego.";
Text[ portuguese_brazilian ] = "Settlement";
@@ -13794,14 +13794,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Maturity";
Text[ portuguese ] = "Vencimento";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Maturity";
Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Vencimiento";
Text[ finnish ] = "Erntyminen";
Text[ italian ] = "Scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty";
Text[ portuguese_brazilian ] = "Maturity";
@@ -13827,9 +13827,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Es la fecha de vencimiento de la letra.";
- Text[ finnish ] = "Erntyminen";
+ Text[ finnish ] = "Joukkovelkakirjan erntymispivmr";
Text[ italian ] = "Data di scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty papieru wartociowego.";
Text[ portuguese_brazilian ] = "Maturity";
@@ -13857,7 +13857,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Descuento";
Text[ finnish ] = "Tappio";
Text[ italian ] = "Sconto";
- Text[ danish ] = "Discount";
+ Text[ danish ] = "Underkurs";
Text[ swedish ] = "Diskonteringsrnta";
Text[ polish ] = "Dyskonto";
Text[ portuguese_brazilian ] = "Discount";
@@ -13885,7 +13885,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Es la tasa de descuento de la letra.";
Text[ finnish ] = "Tappio";
Text[ italian ] = "La percentuale di riduzione";
- Text[ danish ] = "Discount";
+ Text[ danish ] = "Underkurs";
Text[ swedish ] = "Diskonteringsrnta";
Text[ polish ] = "Stopa dyskontowa bonu skarbowego.";
Text[ portuguese_brazilian ] = "Discount";
@@ -13916,12 +13916,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Devuelve el rendimiento de una letra de tesorera.";
Text[ finnish ] = "Palauttaa valtion obligaation tuoton";
Text[ italian ] = "Restituisce il rendimento di un buono del tesoro.";
- Text[ danish ] = "Returns the yield for a treasury bill";
+ Text[ danish ] = "Returnerer det rlige afkast for en skatkammerveksel.";
Text[ swedish ] = "Returnerar avkastningen fr en statsskuldvxel.";
Text[ polish ] = "Podaje rentowno bonu skarbowego.";
Text[ portuguese_brazilian ] = "Returns the yield for a treasury bill";
Text[ japanese ] = "米国財務省短期証券(TB)の利回りを返します。";
- Text[ korean ] = "재무성 단기 채권에 대한 산출금을 반환합니다";
+ Text[ korean ] = "재무성 단기 채권에 대한 수익금을 구합니다.";
Text[ chinese_simplified ] = "计算某一国库券的收益率。";
Text[ chinese_traditional ] = "傳回某一國庫券的收益率。";
Text[ turkish ] = "Returns the yield for a treasury bill";
@@ -13937,14 +13937,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Settlement";
Text[ portuguese ] = "Liquidao";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Settlement";
Text[ dutch ] = "Stortingsdatum";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Liquidacin";
Text[ finnish ] = "Lunastus";
Text[ italian ] = "Liquidazione";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Rozliczenie";
Text[ portuguese_brazilian ] = "Settlement";
@@ -13970,9 +13970,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Stortingsdatum";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Es la fecha de liquidacin de la letra.";
- Text[ finnish ] = "Lunastus";
+ Text[ finnish ] = "Joukkovelkakirjan lunastuspivmr";
Text[ italian ] = "Data di acquisto";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Data rozliczenia papieru wartociowego.";
Text[ portuguese_brazilian ] = "Settlement";
@@ -13993,14 +13993,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Maturity";
Text[ portuguese ] = "Vencimento";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Maturity";
Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Vencimiento";
Text[ finnish ] = "Erntyminen";
Text[ italian ] = "Scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty";
Text[ portuguese_brazilian ] = "Maturity";
@@ -14026,9 +14026,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Es la fecha de vencimiento de la letra.";
- Text[ finnish ] = "Erntyminen";
+ Text[ finnish ] = "Joukkovelkakirjan erntymispivmr";
Text[ italian ] = "Data di scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty papieru wartociowego.";
Text[ portuguese_brazilian ] = "Maturity";
@@ -14049,14 +14049,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Price";
Text[ portuguese ] = "Preo";
- Text[ russian ] = "";
+ Text[ russian ] = "";
Text[ greek ] = "Price";
Text[ dutch ] = "Koers";
Text[ french ] = "Prix";
Text[ spanish ] = "Precio";
Text[ finnish ] = "Hinta";
Text[ italian ] = "Prezzo";
- Text[ danish ] = "Price";
+ Text[ danish ] = "Kurs";
Text[ swedish ] = "Pris";
Text[ polish ] = "Kurs";
Text[ portuguese_brazilian ] = "Price";
@@ -14079,12 +14079,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Preo";
Text[ russian ] = " .";
Text[ greek ] = "Price";
- Text[ dutch ] = "Price";
+ Text[ dutch ] = "Koers";
Text[ french ] = "Prix";
Text[ spanish ] = "Es es precio de la letra.";
- Text[ finnish ] = "Hinta";
+ Text[ finnish ] = "Joukkovelkakirjan hinta";
Text[ italian ] = "Il prezzo di acquisto del buono del tesoro";
- Text[ danish ] = "Price";
+ Text[ danish ] = "Kurs";
Text[ swedish ] = "Pris";
Text[ polish ] = "Cena bonu skarbowego.";
Text[ portuguese_brazilian ] = "Price";
@@ -14108,14 +14108,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Returns the price per $100 face value of a security with an odd first period";
Text[ portuguese ] = "Devolve o preo por 100 euros do valor nominal de um ttulo com um primeiro perodo (curto ou longo) irregular.";
- Text[ russian ] = " 100 .";
+ Text[ russian ] = " 100 .";
Text[ greek ] = "Returns the price of $100 face value of a security with an odd first period";
- Text[ dutch ] = "Returns the price of $100 face value of a security with an odd first period";
+ Text[ dutch ] = "Geeft de prijs per nominale waarde van 100 valuta-eenheden van een waardepapier met een onregelmatige eerste rentetermijn.";
Text[ french ] = "Renvoie le prix, pour une valeur nominale de 100 units montaires, d'un titre dont la premire priode de coupon est irrgulire.";
Text[ spanish ] = "Devuelve el precio de 100 (unidad monetaria) de valor nominal de un ttulo con un primer perodo irregular.";
- Text[ finnish ] = "Palauttaa sellaisen joukkovelkakirjan osuuden (nimellisarvo 100) hinnan, jonka ensimmisen kauden korko poikkeaa muista";
+ Text[ finnish ] = "Palauttaa sellaisen joukkovelkakirjan osuuden hinnan (nimellisarvo 100), jonka ensimmisen kauden korko poikkeaa muista";
Text[ italian ] = "Restituisce il prezzo di un titolo dal valore nominale di 100 unit monetarie con il primo periodo d'interesse irregolare.";
- Text[ danish ] = "Returns the price of $100 face value of a security with an odd first period";
+ Text[ danish ] = "Returnerer kursen pr. 100 valutaenheder plydende vrdi for et vrdipapir med uregelmssig frste rentetermin.";
Text[ swedish ] = "Returnerar priset per 100 valutaenheter nominellt vrde fr ett vrdepapper med en udda frsta period.";
Text[ polish ] = "Podaje cen za 100 jednostek wartoci nominalnej papieru wartociowego z nietypowym pierwszym okresem.";
Text[ portuguese_brazilian ] = "Returns the price of $100 face value of a security with an odd first period";
@@ -14136,14 +14136,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Settlement";
Text[ portuguese ] = "Liquidao";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Settlement";
- Text[ dutch ] = "Settlement";
+ Text[ dutch ] = "Afrekening";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Liquidacin";
Text[ finnish ] = "Lunastus";
Text[ italian ] = "Liquidazione";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Rozliczenie";
Text[ portuguese_brazilian ] = "Settlement";
@@ -14166,12 +14166,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Liquidao";
Text[ russian ] = " .";
Text[ greek ] = "Settlement";
- Text[ dutch ] = "Settlement";
+ Text[ dutch ] = "Afrekening";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Es la fecha de liquidacin del valor.";
- Text[ finnish ] = "Lunastus";
+ Text[ finnish ] = "Joukkovelkakirjan lunastuspivmr";
Text[ italian ] = "Data di acquisto del titolo";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Data rozliczenia papieru wartociowego.";
Text[ portuguese_brazilian ] = "Settlement";
@@ -14192,14 +14192,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Maturity";
Text[ portuguese ] = "Vencimento";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Maturity";
Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Vencimiento";
Text[ finnish ] = "Erntyminen";
Text[ italian ] = "Scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty";
Text[ portuguese_brazilian ] = "Maturity";
@@ -14225,9 +14225,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Vencimiento";
- Text[ finnish ] = "Erntyminen";
+ Text[ finnish ] = "Joukkovelkakirjan erntymispivmr";
Text[ italian ] = "Data di scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty papieru wartociowego.";
Text[ portuguese_brazilian ] = "Maturity";
@@ -14248,14 +14248,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Issue";
Text[ portuguese ] = "Emisso";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Issue";
- Text[ dutch ] = "Issue";
+ Text[ dutch ] = "Uitgifte";
Text[ french ] = "mission";
Text[ spanish ] = "Emisin";
Text[ finnish ] = "Julkistus";
Text[ italian ] = "Emissione";
- Text[ danish ] = "Issue";
+ Text[ danish ] = "Emission";
Text[ swedish ] = "Emission";
Text[ polish ] = "Emisja";
Text[ portuguese_brazilian ] = "Issue";
@@ -14281,9 +14281,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Uitgifte";
Text[ french ] = "mission";
Text[ spanish ] = "Emisin";
- Text[ finnish ] = "Julkistus";
+ Text[ finnish ] = "Joukkovelkakirjan julkaisupivmr";
Text[ italian ] = "Data di emissione del titolo";
- Text[ danish ] = "Issue";
+ Text[ danish ] = "Emission";
Text[ swedish ] = "Emission";
Text[ polish ] = "Data emisji papieru wartociowego.";
Text[ portuguese_brazilian ] = "Issue";
@@ -14304,19 +14304,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "First coupon";
Text[ portuguese ] = "Primeiro cupo";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "First coupon";
- Text[ dutch ] = "First coupon";
+ Text[ dutch ] = "Eerste rentetermijn";
Text[ french ] = "Premier coupon";
Text[ spanish ] = "Primer plazo de inters";
Text[ finnish ] = "Ensimminen kiinte korko";
Text[ italian ] = "Primo interesse";
- Text[ danish ] = "First coupon";
+ Text[ danish ] = "Frste rentetermin";
Text[ swedish ] = "Frsta kupongdatum";
Text[ polish ] = "Pierwszy kupon";
Text[ portuguese_brazilian ] = "First coupon";
Text[ japanese ] = "最初の利札日";
- Text[ korean ] = "첫 번째 이자표";
+ Text[ korean ] = "최초 이자 지급일";
Text[ chinese_simplified ] = "first_coupon";
Text[ chinese_traditional ] = "first_coupon";
Text[ turkish ] = "First coupon";
@@ -14334,17 +14334,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Primeiro cupo";
Text[ russian ] = " .";
Text[ greek ] = "First coupon";
- Text[ dutch ] = "Eerste coupon";
+ Text[ dutch ] = "Eerste rentetermijn";
Text[ french ] = "Premier coupon";
Text[ spanish ] = "Primer plazo de inters";
Text[ finnish ] = "Ensimminen kiinte korko";
Text[ italian ] = "Prima scadenza del titolo";
- Text[ danish ] = "First coupon";
+ Text[ danish ] = "Frste rentetermin";
Text[ swedish ] = "Frsta kupongdatum";
Text[ polish ] = "Data realizacji pierwszego kuponu.";
Text[ portuguese_brazilian ] = "First coupon";
Text[ japanese ] = "証券の最初の利息支払日";
- Text[ korean ] = "첫 번째 이자표";
+ Text[ korean ] = "최초 이자 지급일";
Text[ chinese_simplified ] = "首期利息支付日";
Text[ chinese_traditional ] = "第一期利息支付日";
Text[ turkish ] = "First coupon";
@@ -14362,17 +14362,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Taxa";
Text[ russian ] = "";
Text[ greek ] = "Rate";
- Text[ dutch ] = "Rate";
+ Text[ dutch ] = "Rente";
Text[ french ] = "Intrt";
Text[ spanish ] = "Inters";
Text[ finnish ] = "Korko";
Text[ italian ] = "Tasso interesse";
- Text[ danish ] = "Rate";
+ Text[ danish ] = "Rente";
Text[ swedish ] = "Rnta";
Text[ polish ] = "Stopa";
Text[ portuguese_brazilian ] = "Rate";
Text[ japanese ] = "利率";
- Text[ korean ] = "이자율";
+ Text[ korean ] = "이율";
Text[ chinese_simplified ] = "rate";
Text[ chinese_traditional ] = "rate";
Text[ turkish ] = "Rate";
@@ -14393,14 +14393,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Rente";
Text[ french ] = "Intrt";
Text[ spanish ] = "Inters";
- Text[ finnish ] = "Korko";
+ Text[ finnish ] = "Joukkovelkakirjan vuosittainen kiinte korko";
Text[ italian ] = "Tasso interesse annuale";
- Text[ danish ] = "Rate";
+ Text[ danish ] = "Rente";
Text[ swedish ] = "Rnta";
Text[ polish ] = "Oprocentowanie papieru wartociowego.";
Text[ portuguese_brazilian ] = "Rate";
Text[ japanese ] = "証券の利率";
- Text[ korean ] = "이자율";
+ Text[ korean ] = "이율";
Text[ chinese_simplified ] = "有价证券的利率";
Text[ chinese_traditional ] = "有價證券的利率";
Text[ turkish ] = "Rate";
@@ -14418,17 +14418,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Rendimento";
Text[ russian ] = "";
Text[ greek ] = "Yield";
- Text[ dutch ] = "Yield";
+ Text[ dutch ] = "Rendement";
Text[ french ] = "Rendement";
Text[ spanish ] = "Rdito";
Text[ finnish ] = "Tuotto";
Text[ italian ] = "Rendimento";
- Text[ danish ] = "Yield";
+ Text[ danish ] = "Afkast";
Text[ swedish ] = "Avkastning";
Text[ polish ] = "Rentowno";
Text[ portuguese_brazilian ] = "Yield";
Text[ japanese ] = "利回り";
- Text[ korean ] = "산출금";
+ Text[ korean ] = "투자 수익금";
Text[ chinese_simplified ] = "yield";
Text[ chinese_traditional ] = "yield";
Text[ turkish ] = "Yield";
@@ -14444,19 +14444,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The yield";
Text[ portuguese ] = "LUCRO";
- Text[ russian ] = " .";
+ Text[ russian ] = " .";
Text[ greek ] = "Yield";
Text[ dutch ] = "Rendement";
Text[ french ] = "Rendement";
Text[ spanish ] = "Rdito";
Text[ finnish ] = "Tuotto";
Text[ italian ] = "Rendimento annuo del titolo";
- Text[ danish ] = "Yield";
+ Text[ danish ] = "Afkast";
Text[ swedish ] = "Avkastning";
Text[ polish ] = "Roczna rentowno papieru wartociowego.";
Text[ portuguese_brazilian ] = "Yield";
Text[ japanese ] = "証券の年間配当";
- Text[ korean ] = "산출금";
+ Text[ korean ] = "투자 수익금";
Text[ chinese_simplified ] = "有价证券的年收益率。";
Text[ chinese_traditional ] = "有價證券的年收益率。";
Text[ turkish ] = "Yield";
@@ -14472,14 +14472,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Redemption";
Text[ portuguese ] = "Reembolso";
- Text[ russian ] = "";
+ Text[ russian ] = "";
Text[ greek ] = "Redemption";
- Text[ dutch ] = "Redemption";
+ Text[ dutch ] = "Aflossingsbedrag";
Text[ french ] = "Remboursement";
Text[ spanish ] = "Devolucin";
Text[ finnish ] = "Lunastus";
Text[ italian ] = "Rimborso";
- Text[ danish ] = "Redemption";
+ Text[ danish ] = "Tilbagebetaling";
Text[ swedish ] = "Inlsningsvrde";
Text[ polish ] = "Wykup";
Text[ portuguese_brazilian ] = "Redemption";
@@ -14502,12 +14502,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Reembolso";
Text[ russian ] = " .";
Text[ greek ] = "Redemption";
- Text[ dutch ] = "Aflossingsprijs";
+ Text[ dutch ] = "Aflossingsbedrag";
Text[ french ] = "Remboursement";
Text[ spanish ] = "Devolucin";
- Text[ finnish ] = "Lunastus";
+ Text[ finnish ] = "Joukkovelkakirjan lunastusarvo";
Text[ italian ] = "Valore di rimborso";
- Text[ danish ] = "Redemption";
+ Text[ danish ] = "Tilbagebetaling";
Text[ swedish ] = "Inlsningsvrde";
Text[ polish ] = "Warto wykupu papieru wartociowego.";
Text[ portuguese_brazilian ] = "Redemption";
@@ -14530,12 +14530,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Frequncia";
Text[ russian ] = "";
Text[ greek ] = "Frequency";
- Text[ dutch ] = "Frequency";
+ Text[ dutch ] = "Frequentie";
Text[ french ] = "Frquence";
Text[ spanish ] = "Frecuencia";
- Text[ finnish ] = "Taajuus";
+ Text[ finnish ] = "Maksut";
Text[ italian ] = "Frequenza";
- Text[ danish ] = "Frequency";
+ Text[ danish ] = "Frekvens";
Text[ swedish ] = "Frekvens";
Text[ polish ] = "Czsto";
Text[ portuguese_brazilian ] = "Frequency";
@@ -14561,9 +14561,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Frequentie";
Text[ french ] = "Frquence";
Text[ spanish ] = "Frecuencia";
- Text[ finnish ] = "Taajuus";
+ Text[ finnish ] = "Kiinteiden korkomaksujen mr vuodessa";
Text[ italian ] = "Numero dei pagamenti all'anno";
- Text[ danish ] = "Frequency";
+ Text[ danish ] = "Frekvens";
Text[ swedish ] = "Frekvens";
Text[ polish ] = "Liczba kuponw patnych w cigu roku.";
Text[ portuguese_brazilian ] = "Frequency";
@@ -14586,17 +14586,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Base";
Text[ russian ] = "";
Text[ greek ] = "Base";
- Text[ dutch ] = "Base";
+ Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "Base";
Text[ finnish ] = "Kantaluku";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Podstawa";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "基準";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "basis";
Text[ chinese_traditional ] = "basis";
Text[ turkish ] = "Base";
@@ -14617,14 +14617,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "Base";
- Text[ finnish ] = "Kantaluku";
+ Text[ finnish ] = "Kytettv vuosien mr";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Rodzaj podstawy wyliczania dni.";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "利息計算の基礎となる日数の計算方法";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "年天数的基数";
Text[ chinese_traditional ] = "要使用的年天數的基準。";
Text[ turkish ] = "Base";
@@ -14645,17 +14645,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Devolve o rendimento de um ttulo com um perodo inicial irregular.";
Text[ russian ] = " .";
Text[ greek ] = "Returns the yield of a security with an odd first period";
- Text[ dutch ] = "Returns the yield of a security with an odd first period";
+ Text[ dutch ] = "Geeft het rendement van een waardepapier met een onregelmatige eerste rentetermijn.";
Text[ french ] = "Renvoie le rendement d'un titre dont la premire priode de coupon est irrgulire.";
Text[ spanish ] = "Devuelve el rendimiento de un valor con el primer perodo irregular.";
Text[ finnish ] = "Palauttaa sellaisen joukkovelkakirjan tuoton, jonka ensimmisen kauden korko poikkeaa muista";
Text[ italian ] = "Restituisce il rendimento di un titolo avente il primo periodo d'interesse irregolare.";
- Text[ danish ] = "Returns the yield of a security with an odd first period";
+ Text[ danish ] = "Returnerer afkastet for et vrdipapir med uregelmssig frste rentetermin.";
Text[ swedish ] = "Returnerar avkastningen fr ett vrdepapper med en udda frsta period.";
Text[ polish ] = "Podaje rentowno papieru wartociowego z nietypowym pierwszym okresem.";
Text[ portuguese_brazilian ] = "Returns the yield of a security with an odd first period";
Text[ japanese ] = "1期目の日数が半端な証券の利回りを返します。";
- Text[ korean ] = "처음 기간이 기수인 하나의 담보물에 대한 산출금을 반환합니다";
+ Text[ korean ] = "시작 이자일을 홀수 지불 기간으로 증권에 대한 수익금을 구합니다.";
Text[ chinese_simplified ] = "计算某一首期付息日不固定的有价证券的收益率。";
Text[ chinese_traditional ] = "傳回第一期付息日不固定的有價證券的收益率。";
Text[ turkish ] = "Returns the yield of a security with an odd first period";
@@ -14671,14 +14671,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Settlement";
Text[ portuguese ] = "Liquidao";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Settlement";
Text[ dutch ] = "Stortingsdatum";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Liquidacin";
Text[ finnish ] = "Lunastus";
Text[ italian ] = "Liquidazione";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Rozliczenie";
Text[ portuguese_brazilian ] = "Settlement";
@@ -14701,12 +14701,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Liquidao";
Text[ russian ] = " .";
Text[ greek ] = "Settlement";
- Text[ dutch ] = "Settlement";
+ Text[ dutch ] = "Afrekening";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Es la fecha de liquidacin del valor.";
- Text[ finnish ] = "Lunastus";
+ Text[ finnish ] = "Joukkovelkakirjan lunastuspivmr";
Text[ italian ] = "Data di liquidazione";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Data rozliczenia papieru wartociowego.";
Text[ portuguese_brazilian ] = "Settlement";
@@ -14727,14 +14727,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Maturity";
Text[ portuguese ] = "Vencimento";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Maturity";
Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Vencimiento";
Text[ finnish ] = "Erntyminen";
Text[ italian ] = "Scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty";
Text[ portuguese_brazilian ] = "Maturity";
@@ -14757,12 +14757,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Vencimento";
Text[ russian ] = " .";
Text[ greek ] = "Maturity";
- Text[ dutch ] = "Maturity";
+ Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "La fecha de vencimiento del valor.";
- Text[ finnish ] = "Erntyminen";
+ Text[ finnish ] = "Joukkovelkakirjan erntymispivmr";
Text[ italian ] = "Data di scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty papieru wartociowego.";
Text[ portuguese_brazilian ] = "Maturity";
@@ -14783,14 +14783,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Issue";
Text[ portuguese ] = "Emisso";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Issue";
Text[ dutch ] = "Uitgifte";
Text[ french ] = "mission";
Text[ spanish ] = "Emisin";
Text[ finnish ] = "Julkistus";
Text[ italian ] = "Emissione";
- Text[ danish ] = "Issue";
+ Text[ danish ] = "Emission";
Text[ swedish ] = "Emission";
Text[ polish ] = "Emisja";
Text[ portuguese_brazilian ] = "Issue";
@@ -14813,12 +14813,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Emisso";
Text[ russian ] = " .";
Text[ greek ] = "Issue";
- Text[ dutch ] = "Issue";
+ Text[ dutch ] = "Uitgifte";
Text[ french ] = "mission";
Text[ spanish ] = "La fecha de emisin del valor.";
- Text[ finnish ] = "Julkistus";
+ Text[ finnish ] = "Joukkovelkakirjan julkaisupivmr";
Text[ italian ] = "Data di emissione";
- Text[ danish ] = "Issue";
+ Text[ danish ] = "Emission";
Text[ swedish ] = "Emission";
Text[ polish ] = "Data emisji papieru wartociowego.";
Text[ portuguese_brazilian ] = "Issue";
@@ -14839,19 +14839,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "First coupon";
Text[ portuguese ] = "Primeiro cupo";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "First coupon";
- Text[ dutch ] = "Eerste coupon";
+ Text[ dutch ] = "Eerste rentetermijn";
Text[ french ] = "Premier coupon";
Text[ spanish ] = "Primer plazo de inters";
Text[ finnish ] = "Ensimminen kiinte korko";
Text[ italian ] = "Primo interesse";
- Text[ danish ] = "First coupon";
+ Text[ danish ] = "Frste rentetermin";
Text[ swedish ] = "Frsta kupongdatum";
Text[ polish ] = "Pierwszy kupon";
Text[ portuguese_brazilian ] = "First coupon";
Text[ japanese ] = "最初の利札日";
- Text[ korean ] = "첫 번째 이자표";
+ Text[ korean ] = "최초 이자 지급일";
Text[ chinese_simplified ] = "first_coupon";
Text[ chinese_traditional ] = "first_coupon";
Text[ turkish ] = "First coupon";
@@ -14869,17 +14869,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Primeiro cupo";
Text[ russian ] = " .";
Text[ greek ] = "First coupon";
- Text[ dutch ] = "First coupon";
+ Text[ dutch ] = "Eerste rentetermijn";
Text[ french ] = "Premier coupon";
Text[ spanish ] = "Primer plazo de inters";
Text[ finnish ] = "Ensimminen kiinte korko";
Text[ italian ] = "Prima scadenza del titolo";
- Text[ danish ] = "First coupon";
+ Text[ danish ] = "Frste rentetermin";
Text[ swedish ] = "Frsta kupongdatum";
Text[ polish ] = "Data realizacji pierwszego kuponu.";
Text[ portuguese_brazilian ] = "First coupon";
Text[ japanese ] = "証券の最初の利息支払日";
- Text[ korean ] = "첫 번째 이자표";
+ Text[ korean ] = "최초 이자 지급일";
Text[ chinese_simplified ] = "有价证券的首期息票的日期";
Text[ chinese_traditional ] = "為有價證券的第一期付息日";
Text[ turkish ] = "First coupon";
@@ -14902,12 +14902,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Inters";
Text[ finnish ] = "Korko";
Text[ italian ] = "Tasso interesse";
- Text[ danish ] = "Rate";
+ Text[ danish ] = "Rente";
Text[ swedish ] = "Rnta";
Text[ polish ] = "Stopa";
Text[ portuguese_brazilian ] = "Rate";
Text[ japanese ] = "利率";
- Text[ korean ] = "이자율";
+ Text[ korean ] = "이율";
Text[ chinese_simplified ] = "rate";
Text[ chinese_traditional ] = "rate";
Text[ turkish ] = "Rate";
@@ -14925,17 +14925,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Taxa";
Text[ russian ] = " .";
Text[ greek ] = "Rate";
- Text[ dutch ] = "Rate";
+ Text[ dutch ] = "Rente";
Text[ french ] = "Intrt";
Text[ spanish ] = "Inters";
- Text[ finnish ] = "Korko";
+ Text[ finnish ] = "Joukkovelkakirjan vuosittainen kiinte korko";
Text[ italian ] = "Tasso interesse annuale";
- Text[ danish ] = "Rate";
+ Text[ danish ] = "Rente";
Text[ swedish ] = "Rnta";
Text[ polish ] = "Oprocentowanie papieru wartociowego.";
Text[ portuguese_brazilian ] = "Rate";
Text[ japanese ] = "証券の利率";
- Text[ korean ] = "이자율";
+ Text[ korean ] = "이율";
Text[ chinese_simplified ] = "有价证券的利率。";
Text[ chinese_traditional ] = "為有價證券的利率。";
Text[ turkish ] = "Rate";
@@ -14951,14 +14951,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Price";
Text[ portuguese ] = "Preo";
- Text[ russian ] = "";
+ Text[ russian ] = "";
Text[ greek ] = "Price";
Text[ dutch ] = "Koers";
Text[ french ] = "Prix";
Text[ spanish ] = "Cotizacin";
Text[ finnish ] = "Hinta";
Text[ italian ] = "Prezzo";
- Text[ danish ] = "Price";
+ Text[ danish ] = "Kurs";
Text[ swedish ] = "Pris";
Text[ polish ] = "Kurs";
Text[ portuguese_brazilian ] = "Price";
@@ -14984,9 +14984,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Koers";
Text[ french ] = "Prix";
Text[ spanish ] = "Cotizacin";
- Text[ finnish ] = "Hinta";
+ Text[ finnish ] = "Joukkovelkakirjan hinta";
Text[ italian ] = "Prezzo del titolo";
- Text[ danish ] = "Price";
+ Text[ danish ] = "Kurs";
Text[ swedish ] = "Pris";
Text[ polish ] = "Cena papieru wartociowego";
Text[ portuguese_brazilian ] = "Price";
@@ -15007,14 +15007,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Redemption";
Text[ portuguese ] = "Reembolso";
- Text[ russian ] = "";
+ Text[ russian ] = "";
Text[ greek ] = "Redemption";
- Text[ dutch ] = "Aflossingsprijs";
+ Text[ dutch ] = "Aflossingsbedrag";
Text[ french ] = "Remboursement";
Text[ spanish ] = "Devolucin";
Text[ finnish ] = "Lunastus";
Text[ italian ] = "Rimborso";
- Text[ danish ] = "Redemption";
+ Text[ danish ] = "Tilbagebetaling";
Text[ swedish ] = "Inlsningsvrde";
Text[ polish ] = "Wykup";
Text[ portuguese_brazilian ] = "Redemption";
@@ -15037,12 +15037,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Reembolso";
Text[ russian ] = " .";
Text[ greek ] = "Redemption";
- Text[ dutch ] = "Aflossingsprijs";
+ Text[ dutch ] = "Aflossingsbedrag";
Text[ french ] = "Remboursement";
Text[ spanish ] = "Devolucin";
- Text[ finnish ] = "Lunastus";
+ Text[ finnish ] = "Joukkovelkakirjan lunastusarvo";
Text[ italian ] = "Il valore di rimborso";
- Text[ danish ] = "Redemption";
+ Text[ danish ] = "Tilbagebetaling";
Text[ swedish ] = "Inlsningsvrde";
Text[ polish ] = "Warto wykupu papieru wartociowego.";
Text[ portuguese_brazilian ] = "Redemption";
@@ -15068,9 +15068,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Frequentie";
Text[ french ] = "Frquence";
Text[ spanish ] = "Frecuencia";
- Text[ finnish ] = "Taajuus";
+ Text[ finnish ] = "Maksut";
Text[ italian ] = "Frequenza";
- Text[ danish ] = "Frequency";
+ Text[ danish ] = "Frekvens";
Text[ swedish ] = "Frekvens";
Text[ polish ] = "Czsto";
Text[ portuguese_brazilian ] = "Frequency";
@@ -15096,9 +15096,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Frequentie";
Text[ french ] = "Frquence";
Text[ spanish ] = "Frecuencia";
- Text[ finnish ] = "Taajuus";
+ Text[ finnish ] = "Kiinteiden korkomaksujen mr vuodessa";
Text[ italian ] = "Numero dei pagamenti all'anno";
- Text[ danish ] = "Frequency";
+ Text[ danish ] = "Frekvens";
Text[ swedish ] = "Frekvens";
Text[ polish ] = "Liczba kuponw patnych w cigu roku.";
Text[ portuguese_brazilian ] = "Frequency";
@@ -15126,12 +15126,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Base";
Text[ finnish ] = "Kantaluku";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Podstawa";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "基準";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "basis";
Text[ chinese_traditional ] = "basis";
Text[ turkish ] = "Base";
@@ -15152,14 +15152,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "Es el tipo de base segn el cual se contarn los das.";
- Text[ finnish ] = "Kantaluku";
+ Text[ finnish ] = "Kytettv vuosien mr";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Rodzaj podstawy wyliczania dni.";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "利息計算の基礎となる日数の計算方法";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "年天数的基数";
Text[ chinese_traditional ] = "要使用的年天數的基準。";
Text[ turkish ] = "Base";
@@ -15178,14 +15178,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Returns the price per $100 face value of a security with an odd last period";
Text[ portuguese ] = "Devolve o preo por 100 euros do valor nominal de um ttulo com um ltimo perodo de juros irregular.";
- Text[ russian ] = " 100 .";
+ Text[ russian ] = " 100 .";
Text[ greek ] = "Returns the price of $100 face value of a security with an odd last period";
- Text[ dutch ] = "Geeft als resultaat de koers per fl 100,--nominale waarde van een waardepapier met een afwijkende laatste rentetermijn.";
+ Text[ dutch ] = "Geeft de prijs per nominale waarde van 100 valuta-eenheden van een waardepapier met een onregelmatige laatste rentetermijn.";
Text[ french ] = "Renvoie le prix, pour une valeur nominale de 100 units montaires, d'un titre dont la dernire priode de coupon est irrgulire.";
Text[ spanish ] = "Devuelve la cotizacin por 100 (unidad monetaria) de valor nominal de un valor con ltimo perodo irregular.";
Text[ finnish ] = "Palauttaa sellaisen joukkovelkakirjan osuuden (nimellisarvo 100) hinnan, jonka viimeisen kauden korko poikkeaa muista";
Text[ italian ] = "Restituisce il prezzo di un titolo dal valore nominale di 100 unit monetarie avente l'ultimo periodo d'interesse irregolare.";
- Text[ danish ] = "Returns the price of $100 face value of a security with an odd last period";
+ Text[ danish ] = "Returnerer kursen pr. 100 valutaenheder plydende vrdi for et vrdipapir med uregelmssig sidste rentetermin.";
Text[ swedish ] = "Returnerar priset per 100 valutaenheter nominellt vrde fr ett vrdepapper med en udda sista period.";
Text[ polish ] = "Podaje cen za 100 jednostek wartoci nominalnej papieru wartociowego z nietypowym ostatnim okresem.";
Text[ portuguese_brazilian ] = "Returns the price of $100 face value of a security with an odd last period";
@@ -15206,14 +15206,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Settlement";
Text[ portuguese ] = "Liquidao";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Settlement";
Text[ dutch ] = "Stortingsdatum";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Liquidacin";
Text[ finnish ] = "Lunastus";
Text[ italian ] = "Liquidazione";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Rozliczenie";
Text[ portuguese_brazilian ] = "Settlement";
@@ -15239,9 +15239,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Stortingsdatum";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Es la fecha de liquidacin del valor.";
- Text[ finnish ] = "Lunastus";
+ Text[ finnish ] = "Joukkovelkakirjan lunastuspivmr";
Text[ italian ] = "Data di acquisto del titolo";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Data rozliczenia papieru wartociowego.";
Text[ portuguese_brazilian ] = "Settlement";
@@ -15262,14 +15262,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Maturity";
Text[ portuguese ] = "Vencimento";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Maturity";
Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Vencimiento";
Text[ finnish ] = "Erntyminen";
Text[ italian ] = "Scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty";
Text[ portuguese_brazilian ] = "Maturity";
@@ -15295,9 +15295,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Es la fecha de vencimiento del valor.";
- Text[ finnish ] = "Erntyminen";
+ Text[ finnish ] = "Joukkovelkakirjan erntymispivmr";
Text[ italian ] = "Data di scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty papieru wartociowego.";
Text[ portuguese_brazilian ] = "Maturity";
@@ -15318,19 +15318,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Last interest";
Text[ portuguese ] = "ltimos juros";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "Last interst";
Text[ dutch ] = "Laatste rentetermijn";
Text[ french ] = "Dernier coupon";
Text[ spanish ] = "ltimo plazo de inters";
Text[ finnish ] = "Viimeinen korko";
Text[ italian ] = "Ultimo interesse";
- Text[ danish ] = "Last interst";
+ Text[ danish ] = "Sidste rentetermin";
Text[ swedish ] = "Sista kupongdatum";
Text[ polish ] = "Ostatnia wypata";
Text[ portuguese_brazilian ] = "Last interst";
Text[ japanese ] = "最後の利札日";
- Text[ korean ] = "최종 이자";
+ Text[ korean ] = "최종 이자일";
Text[ chinese_simplified ] = "last_interest";
Text[ chinese_traditional ] = "last_interest";
Text[ turkish ] = "Last interst";
@@ -15346,19 +15346,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The last interest date";
Text[ portuguese ] = "ltimos juros";
- Text[ russian ] = " .";
+ Text[ russian ] = " .";
Text[ greek ] = "Last interst";
Text[ dutch ] = "Laatste rentetermijn";
Text[ french ] = "Dernier coupon";
Text[ spanish ] = "La fecha del ltimo cupn.";
Text[ finnish ] = "Viimeinen korko";
Text[ italian ] = "Ultima scadenza del titolo";
- Text[ danish ] = "Last interst";
+ Text[ danish ] = "Sidste rentetermin";
Text[ swedish ] = "Sista kupongdatum";
Text[ polish ] = "Data realizacji ostatniego kuponu.";
Text[ portuguese_brazilian ] = "Last interst";
Text[ japanese ] = "証券の最後の利息支払日";
- Text[ korean ] = "최종 이자";
+ Text[ korean ] = "최종 이자일";
Text[ chinese_simplified ] = "有价证券的结算日期。";
Text[ chinese_traditional ] = "為有價證券的最後一次付息日。";
Text[ turkish ] = "Last interst";
@@ -15381,12 +15381,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Inters";
Text[ finnish ] = "Korko";
Text[ italian ] = "Tasso interesse";
- Text[ danish ] = "Rate";
+ Text[ danish ] = "Rente";
Text[ swedish ] = "Rnta";
Text[ polish ] = "Stopa";
Text[ portuguese_brazilian ] = "Rate";
Text[ japanese ] = "利率";
- Text[ korean ] = "이자율";
+ Text[ korean ] = "이율";
Text[ chinese_simplified ] = "rate";
Text[ chinese_traditional ] = "rate";
Text[ turkish ] = "Rate";
@@ -15407,14 +15407,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Rente";
Text[ french ] = "Intrt";
Text[ spanish ] = "La tasa de inters del valor.";
- Text[ finnish ] = "Korko";
+ Text[ finnish ] = "Joukkovelkakirjan vuosittainen kiinte korko";
Text[ italian ] = "Tasso interesse annuale";
- Text[ danish ] = "Rate";
+ Text[ danish ] = "Rente";
Text[ swedish ] = "Rnta";
Text[ polish ] = "Oprocentowanie papieru wartociowego.";
Text[ portuguese_brazilian ] = "Rate";
Text[ japanese ] = "証券の利率";
- Text[ korean ] = "이자율";
+ Text[ korean ] = "이율";
Text[ chinese_simplified ] = "有价证券的利率";
Text[ chinese_traditional ] = "為有價證券的利率。";
Text[ turkish ] = "Rate";
@@ -15437,12 +15437,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Rdito";
Text[ finnish ] = "Tuotto";
Text[ italian ] = "Rendimento";
- Text[ danish ] = "Yield";
+ Text[ danish ] = "Afkast";
Text[ swedish ] = "Avkastning";
Text[ polish ] = "Rentowno";
Text[ portuguese_brazilian ] = "Yield";
Text[ japanese ] = "利回り";
- Text[ korean ] = "산출금";
+ Text[ korean ] = "투자 수익";
Text[ chinese_simplified ] = "yield";
Text[ chinese_traditional ] = "yield";
Text[ turkish ] = "Yield";
@@ -15458,19 +15458,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The yield";
Text[ portuguese ] = "Rendimento";
- Text[ russian ] = " .";
+ Text[ russian ] = " .";
Text[ greek ] = "Yield";
Text[ dutch ] = "Rendement";
Text[ french ] = "Rendement";
Text[ spanish ] = "El rendimiento anual del valor.";
Text[ finnish ] = "Tuotto";
Text[ italian ] = "Il rendimento annuo";
- Text[ danish ] = "Yield";
+ Text[ danish ] = "Afkast";
Text[ swedish ] = "Avkastning";
Text[ polish ] = "Roczna rentowno papieru wartociowego.";
Text[ portuguese_brazilian ] = "Yield";
Text[ japanese ] = "証券の年間配当";
- Text[ korean ] = "산출금";
+ Text[ korean ] = "투자 수익";
Text[ chinese_simplified ] = "有价证券的收益率。";
Text[ chinese_traditional ] = "為有價證券的收益率。";
Text[ turkish ] = "Yield";
@@ -15486,14 +15486,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Redemption";
Text[ portuguese ] = "Reembolso";
- Text[ russian ] = "";
+ Text[ russian ] = "";
Text[ greek ] = "Redemption";
- Text[ dutch ] = "Aflossingsprijs";
+ Text[ dutch ] = "Aflossingsbedrag";
Text[ french ] = "Remboursement";
Text[ spanish ] = "Devolucin";
Text[ finnish ] = "Lunastus";
Text[ italian ] = "Rimborso";
- Text[ danish ] = "Redemption";
+ Text[ danish ] = "Tilbagebetaling";
Text[ swedish ] = "Inlsningsvrde";
Text[ polish ] = "Wykup";
Text[ portuguese_brazilian ] = "Redemption";
@@ -15516,12 +15516,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Reembolso";
Text[ russian ] = " .";
Text[ greek ] = "Redemption";
- Text[ dutch ] = "Aflossingsprijs";
+ Text[ dutch ] = "Aflossingsbedrag";
Text[ french ] = "Remboursement";
Text[ spanish ] = "El rendimiento del valor por cada 100 (unidad monetaria) de valor nominal.";
- Text[ finnish ] = "Lunastus";
+ Text[ finnish ] = "Joukkovelkakirjan lunastusarvo";
Text[ italian ] = "Il valore di rimborso";
- Text[ danish ] = "Redemption";
+ Text[ danish ] = "Tilbagebetaling";
Text[ swedish ] = "Inlsningsvrde";
Text[ polish ] = "Warto wykupu papieru wartociowego.";
Text[ portuguese_brazilian ] = "Redemption";
@@ -15547,9 +15547,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Frequentie";
Text[ french ] = "Frquence";
Text[ spanish ] = "Frecuencia";
- Text[ finnish ] = "Taajuus";
+ Text[ finnish ] = "Maksut";
Text[ italian ] = "Frequenza";
- Text[ danish ] = "Frequency";
+ Text[ danish ] = "Frekvens";
Text[ swedish ] = "Frekvens";
Text[ polish ] = "Czsto";
Text[ portuguese_brazilian ] = "Frequency";
@@ -15575,9 +15575,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Frequentie";
Text[ french ] = "Frquence";
Text[ spanish ] = "Frecuencia";
- Text[ finnish ] = "Taajuus";
+ Text[ finnish ] = "Kiinteiden korkomaksujen mr vuodessa";
Text[ italian ] = "Numero dei pagamenti all'anno";
- Text[ danish ] = "Frequency";
+ Text[ danish ] = "Frekvens";
Text[ swedish ] = "Frekvens";
Text[ polish ] = "Liczba kuponw patnych w cigu roku.";
Text[ portuguese_brazilian ] = "Frequency";
@@ -15605,12 +15605,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Base";
Text[ finnish ] = "Kantaluku";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Podstawa";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "基準";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "basis";
Text[ chinese_traditional ] = "basis";
Text[ turkish ] = "Base";
@@ -15631,14 +15631,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "Es el tipo de base segn el cual se contarn los das.";
- Text[ finnish ] = "Kantaluku";
+ Text[ finnish ] = "Kytettv vuosien mr";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Rodzaj podstawy wyliczania dni.";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "利息計算の基礎となる日数の計算方法";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "年天数的基数";
Text[ chinese_traditional ] = "要使用的年天數的基準。";
Text[ turkish ] = "Base";
@@ -15664,12 +15664,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Devuelve el rendimiento de un valor con un ltimo perodo irregular.";
Text[ finnish ] = "Palauttaa sellaisen joukkovelkakirjan tuoton, jonka viimeisen kauden korko poikkeaa muista";
Text[ italian ] = "Restituisce il rendimento di un titolo avente l'ultimo periodo d'interesse irregolare.";
- Text[ danish ] = "Returns the yield of a security with an odd last period";
+ Text[ danish ] = "Returnerer afkastet for et vrdipapir med uregelmssig sidste rentetermin.";
Text[ swedish ] = "Returnerar avkastningen fr ett vrdepapper med en udda sista period.";
Text[ polish ] = "Podaje rentowno papieru wartociowego z nietypowym ostatnim okresem.";
Text[ portuguese_brazilian ] = "Returns the yield of a security with an odd last period";
Text[ japanese ] = "最終期の日数が半端な証券の利回りを返します。";
- Text[ korean ] = "최종 기간이 기수인 하나의 담보물에 대한 산출금을 반환합니다";
+ Text[ korean ] = "최종 기간이 기수인 하나의 담보물에 대한 투자 수익금을 구합니다.";
Text[ chinese_simplified ] = "计算某一末期付息不固定的有价证券的收益率。";
Text[ chinese_traditional ] = "傳回某一最後一期付息不固定的有價證券的收益率。";
Text[ turkish ] = "Returns the yield of a security with an odd last period";
@@ -15685,19 +15685,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Settlement";
Text[ portuguese ] = "Liquidao";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Settlement";
Text[ dutch ] = "Stortingsdatum";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Liquidacin";
Text[ finnish ] = "Lunastus";
Text[ italian ] = "Liquidazione";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Rozliczenie";
Text[ portuguese_brazilian ] = "Settlement";
Text[ japanese ] = "受領日";
- Text[ korean ] = "결제";
+ Text[ korean ] = "결산";
Text[ chinese_simplified ] = "settlement";
Text[ chinese_traditional ] = "settlement";
Text[ turkish ] = "Settlement";
@@ -15718,14 +15718,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Stortingsdatum";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Liquidacin";
- Text[ finnish ] = "Lunastus";
+ Text[ finnish ] = "Joukkovelkakirjan lunastuspivmr";
Text[ italian ] = "Data di acquisto";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Data rozliczenia papieru wartociowego.";
Text[ portuguese_brazilian ] = "Settlement";
Text[ japanese ] = "証券の受領日";
- Text[ korean ] = "결제";
+ Text[ korean ] = "결산";
Text[ chinese_simplified ] = "有价证券的交易日期。";
Text[ chinese_traditional ] = "為有價證券的交割日期。";
Text[ turkish ] = "Settlement";
@@ -15741,14 +15741,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Maturity";
Text[ portuguese ] = "Vencimento";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Maturity";
Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Vencimiento";
Text[ finnish ] = "Erntyminen";
Text[ italian ] = "Scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty";
Text[ portuguese_brazilian ] = "Maturity";
@@ -15774,9 +15774,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Vencimiento";
- Text[ finnish ] = "Erntyminen";
+ Text[ finnish ] = "Joukkovelkakirjan erntymispivmr";
Text[ italian ] = "Data di scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty papieru wartociowego.";
Text[ portuguese_brazilian ] = "Maturity";
@@ -15797,19 +15797,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Last interest";
Text[ portuguese ] = "ltimos juros";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "Last interest";
Text[ dutch ] = "Laatste rentetermijn";
Text[ french ] = "Dernier coupon";
Text[ spanish ] = "ltimo plazo de inters";
Text[ finnish ] = "Viimeinen korko";
Text[ italian ] = "Ultimo interesse";
- Text[ danish ] = "Last interest";
+ Text[ danish ] = "Sidste rentetermin";
Text[ swedish ] = "Sista kupongdatum";
Text[ polish ] = "Ostatnia wypata";
Text[ portuguese_brazilian ] = "Last interest";
Text[ japanese ] = "最後の利札日";
- Text[ korean ] = "최종 이자";
+ Text[ korean ] = "최종 이자일";
Text[ chinese_simplified ] = "last_interest";
Text[ chinese_traditional ] = "last_interest";
Text[ turkish ] = "Last interest";
@@ -15825,19 +15825,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The last interest date";
Text[ portuguese ] = "ltimos juros";
- Text[ russian ] = " .";
+ Text[ russian ] = " .";
Text[ greek ] = "Last interest";
Text[ dutch ] = "Laatste rentetermijn";
Text[ french ] = "Dernier coupon";
Text[ spanish ] = "ltimo plazo de inters";
Text[ finnish ] = "Viimeinen korko";
Text[ italian ] = "Ultima scadenza del titolo";
- Text[ danish ] = "Last interest";
+ Text[ danish ] = "Sidste rentetermin";
Text[ swedish ] = "Sista kupongdag";
Text[ polish ] = "Data realizacji ostatniego kuponu.";
Text[ portuguese_brazilian ] = "Last interest";
Text[ japanese ] = "証券の最後の利息支払日";
- Text[ korean ] = "최종 이자";
+ Text[ korean ] = "최종 이자일";
Text[ chinese_simplified ] = "有价证券的结算日期。";
Text[ chinese_traditional ] = "為有價證券的最後一次付息日。";
Text[ turkish ] = "Last interest";
@@ -15860,12 +15860,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Inters";
Text[ finnish ] = "Korko";
Text[ italian ] = "Tasso interesse";
- Text[ danish ] = "Rate";
+ Text[ danish ] = "Rente";
Text[ swedish ] = "Rnta";
Text[ polish ] = "Stopa";
Text[ portuguese_brazilian ] = "Rate";
Text[ japanese ] = "利率";
- Text[ korean ] = "이자율";
+ Text[ korean ] = "이율";
Text[ chinese_simplified ] = "rate";
Text[ chinese_traditional ] = "rate";
Text[ turkish ] = "Rate";
@@ -15886,14 +15886,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Rente";
Text[ french ] = "Intrt";
Text[ spanish ] = "Inters";
- Text[ finnish ] = "Korko";
+ Text[ finnish ] = "Joukkovelkakirjan vuosittainen kiinte korko";
Text[ italian ] = "Tasso interesse annuale";
- Text[ danish ] = "Rate";
+ Text[ danish ] = "Rente";
Text[ swedish ] = "Rnta";
Text[ polish ] = "Oprocentowanie papieru wartociowego.";
Text[ portuguese_brazilian ] = "Rate";
Text[ japanese ] = "証券の利率";
- Text[ korean ] = "이자율";
+ Text[ korean ] = "이율";
Text[ chinese_simplified ] = "有价证券的利率。";
Text[ chinese_traditional ] = "為有價證券的利率。";
Text[ turkish ] = "Rate";
@@ -15916,7 +15916,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Cotizacin";
Text[ finnish ] = "Hinta";
Text[ italian ] = "Prezzo";
- Text[ danish ] = "Price";
+ Text[ danish ] = "Kurs";
Text[ swedish ] = "Pris";
Text[ polish ] = "Kurs";
Text[ portuguese_brazilian ] = "Price";
@@ -15942,9 +15942,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Koers";
Text[ french ] = "Prix";
Text[ spanish ] = "Cotizacin";
- Text[ finnish ] = "Hinta";
+ Text[ finnish ] = "Joukkovelkakirjan hinta";
Text[ italian ] = "Prezzo del titolo";
- Text[ danish ] = "Price";
+ Text[ danish ] = "Kurs";
Text[ swedish ] = "Pris";
Text[ polish ] = "Cena papieru wartociowego.";
Text[ portuguese_brazilian ] = "Price";
@@ -15965,14 +15965,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Redemption";
Text[ portuguese ] = "Reembolso";
- Text[ russian ] = "";
+ Text[ russian ] = "";
Text[ greek ] = "Redemption";
- Text[ dutch ] = "Redemption";
+ Text[ dutch ] = "Aflossingsbedrag";
Text[ french ] = "Remboursement";
Text[ spanish ] = "Devolucin";
Text[ finnish ] = "Lunastus";
Text[ italian ] = "Rimborso";
- Text[ danish ] = "Redemption";
+ Text[ danish ] = "Tilbagebetaling";
Text[ swedish ] = "Inlsningsvrde";
Text[ polish ] = "Wykup";
Text[ portuguese_brazilian ] = "Redemption";
@@ -15995,12 +15995,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Reembolso";
Text[ russian ] = " .";
Text[ greek ] = "Redemption";
- Text[ dutch ] = "Redemption";
+ Text[ dutch ] = "Aflossingsbedrag";
Text[ french ] = "Remboursement";
Text[ spanish ] = "Devuelve el rendimiento de un valor con el ltimo perodo irregular.";
- Text[ finnish ] = "Lunastus";
+ Text[ finnish ] = "Joukkovelkakirjan lunastusarvo";
Text[ italian ] = "Il valore di rimborso";
- Text[ danish ] = "Redemption";
+ Text[ danish ] = "Tilbagebetaling";
Text[ swedish ] = "Inlsningsvrde";
Text[ polish ] = "Warto wykupu papieru wartociowego.";
Text[ portuguese_brazilian ] = "Redemption";
@@ -16023,12 +16023,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Frequncia";
Text[ russian ] = "";
Text[ greek ] = "Frequency";
- Text[ dutch ] = "Frequency";
+ Text[ dutch ] = "Frequentie";
Text[ french ] = "Frquence";
Text[ spanish ] = "Frecuencia";
- Text[ finnish ] = "Taajuus";
+ Text[ finnish ] = "Maksut";
Text[ italian ] = "Frequenza";
- Text[ danish ] = "Frequency";
+ Text[ danish ] = "Frekvens";
Text[ swedish ] = "Frekvens";
Text[ polish ] = "Czsto";
Text[ portuguese_brazilian ] = "Frequency";
@@ -16054,9 +16054,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Frequentie";
Text[ french ] = "Frquence";
Text[ spanish ] = "Frecuencia";
- Text[ finnish ] = "Taajuus";
+ Text[ finnish ] = "Kiinteiden korkomaksujen mr vuodessa";
Text[ italian ] = "Numero dei pagamenti all'anno";
- Text[ danish ] = "Frequency";
+ Text[ danish ] = "Frekvens";
Text[ swedish ] = "Frekvens";
Text[ polish ] = "Liczba kuponw patnych w cigu roku.";
Text[ portuguese_brazilian ] = "Frequency";
@@ -16079,17 +16079,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Base";
Text[ russian ] = "";
Text[ greek ] = "Base";
- Text[ dutch ] = "Base";
+ Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "Base";
Text[ finnish ] = "Kantaluku";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Podstawa";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "基準";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "basis";
Text[ chinese_traditional ] = "Basis";
Text[ turkish ] = "Base";
@@ -16110,14 +16110,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "Base";
- Text[ finnish ] = "Kantaluku";
+ Text[ finnish ] = "Kytettv vuosien mr";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Rodzaj podstawy wyliczania dni.";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "基準";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "年天数的基数";
Text[ chinese_traditional ] = "要使用的年天數的基準。";
Text[ turkish ] = "Base";
@@ -16136,14 +16136,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Returns the internal rate of return for a non-periodic schedule of payments";
Text[ portuguese ] = "Devolve a taxa de rendimento interna de uma srie de pagamentos no-peridicos.";
- Text[ russian ] = " .";
+ Text[ russian ] = " .";
Text[ greek ] = "Returns the internal rate of return for a schedule of cash flows";
- Text[ dutch ] = "Returns the internal rate of return for a schedule of cash flows";
+ Text[ dutch ] = "Geeft de interne rentevoet van een reeks niet-periodieke betalingen.";
Text[ french ] = "Renvoie le taux de rentabilit interne d'un ensemble de paiements non priodiques.";
Text[ spanish ] = "Devuelve el inters interno de una serie de pagos no peridicos.";
Text[ finnish ] = "Palauttaa aikataulun mukaisen kassavirran sisisen tuloprosentin";
Text[ italian ] = "Restituisce il tasso di rendimento interno di una serie di pagamenti a scadenza non periodica.";
- Text[ danish ] = "Returns the internal rate of return for a schedule of cash flows";
+ Text[ danish ] = "Returnerer den interne rentefod i en serie af ikke-periodiske betalinger.";
Text[ swedish ] = "Returnerar internrntan fr en serie betalningar som inte r periodiska.";
Text[ polish ] = "Podaje warto wewntrznej stopy zwrotu dla serii przepyww rodkw pieninych niekoniecznie okresowych.";
Text[ portuguese_brazilian ] = "Returns the internal rate of return for a schedule of cash flows";
@@ -16171,7 +16171,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Valores";
Text[ finnish ] = "Arvot";
Text[ italian ] = "Valori";
- Text[ danish ] = "Values";
+ Text[ danish ] = "Vrdier";
Text[ swedish ] = "Vrden";
Text[ polish ] = "Wartoci";
Text[ portuguese_brazilian ] = "Values";
@@ -16194,12 +16194,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Valores";
Text[ russian ] = " , .";
Text[ greek ] = "Values";
- Text[ dutch ] = "Values";
+ Text[ dutch ] = "Waarden";
Text[ french ] = "Valeurs";
Text[ spanish ] = "Valores";
Text[ finnish ] = "Arvot";
Text[ italian ] = "Valori";
- Text[ danish ] = "Values";
+ Text[ danish ] = "Vrdier";
Text[ swedish ] = "Vrden";
Text[ polish ] = "Seria przepyww gotwki.";
Text[ portuguese_brazilian ] = "Values";
@@ -16227,7 +16227,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Fechas";
Text[ finnish ] = "Pivmrt";
Text[ italian ] = "Date";
- Text[ danish ] = "Dates";
+ Text[ danish ] = "Tidspunkter";
Text[ swedish ] = "Tidpunkter";
Text[ polish ] = "Daty";
Text[ portuguese_brazilian ] = "Dates";
@@ -16250,12 +16250,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Datas";
Text[ russian ] = " , .";
Text[ greek ] = "Dates";
- Text[ dutch ] = "Dates";
+ Text[ dutch ] = "Datums";
Text[ french ] = "Dates";
Text[ spanish ] = "Fechas";
Text[ finnish ] = "Pivmrt";
Text[ italian ] = "Date";
- Text[ danish ] = "Dates";
+ Text[ danish ] = "Tidspunkter";
Text[ swedish ] = "Tidpunkter";
Text[ polish ] = "Zestawienie dat patnoci odpowiadajcych przepywom gotwki.";
Text[ portuguese_brazilian ] = "Dates";
@@ -16283,12 +16283,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Valor estimado";
Text[ finnish ] = "Arvio";
Text[ italian ] = "Ipotesi";
- Text[ danish ] = "Guess";
+ Text[ danish ] = "Anslet vrdi";
Text[ swedish ] = "Gissning";
Text[ polish ] = "Przypuszczenie";
Text[ portuguese_brazilian ] = "Guess";
Text[ japanese ] = "推定値";
- Text[ korean ] = "추정";
+ Text[ korean ] = "추정값";
Text[ chinese_simplified ] = "guess";
Text[ chinese_traditional ] = "guess";
Text[ turkish ] = "Guess";
@@ -16306,17 +16306,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Estimativa";
Text[ russian ] = " .";
Text[ greek ] = "Guess";
- Text[ dutch ] = "Guess";
+ Text[ dutch ] = "Geschatte waarde";
Text[ french ] = "Estimation";
Text[ spanish ] = "Valor estimado";
Text[ finnish ] = "Arvio";
Text[ italian ] = "Ipotesi";
- Text[ danish ] = "Guess";
+ Text[ danish ] = "Anslet vrdi";
Text[ swedish ] = "Gissning";
Text[ polish ] = "Przewidywany wynik funkcji XIRR.";
Text[ portuguese_brazilian ] = "Guess";
Text[ japanese ] = "XIRR 関数の計算結果に近いと思われる数値";
- Text[ korean ] = "추정";
+ Text[ korean ] = "추정값";
Text[ chinese_simplified ] = "是一个和 XIRR 函数计算结果最接近的猜测值。";
Text[ chinese_traditional ] = "為一個和 XIRR 函數計算結果最接近的猜測數字。";
Text[ turkish ] = "Guess";
@@ -16342,7 +16342,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Devuelve el valor efectivo neto (valor del capital) de una serie de pagos no acumulables peridicamente.";
Text[ finnish ] = "Palauttaa aikataulun mukaisen kassavirran nykyisen nettoarvon";
Text[ italian ] = "Restituisce il valore attuale netto (valore capitale) di una serie di pagamenti a scadenza non periodica.";
- Text[ danish ] = "Returns the net present value for a schedule of cash flows";
+ Text[ danish ] = "Returnerer nettokontantvrdien (kapitalvrdi) for en serie af ikke-periodiske betalinger.";
Text[ swedish ] = "Returnerar nettonuvrdet (kapitalvrde) fr en rad betalningar som inte r periodiska.";
Text[ polish ] = "Podaje warto biec netto serii przepyww rodkw pieninych niekoniecznie okresowych.";
Text[ portuguese_brazilian ] = "Returns the net present value for a schedule of cash flows";
@@ -16365,17 +16365,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Taxa";
Text[ russian ] = "";
Text[ greek ] = "Rate";
- Text[ dutch ] = "Rate";
+ Text[ dutch ] = "Rente";
Text[ french ] = "Intrt";
Text[ spanish ] = "Inters";
Text[ finnish ] = "Korko";
Text[ italian ] = "Tasso interesse";
- Text[ danish ] = "Rate";
+ Text[ danish ] = "Rente";
Text[ swedish ] = "Rnta";
Text[ polish ] = "Stopa";
Text[ portuguese_brazilian ] = "Rate";
Text[ japanese ] = "割引率";
- Text[ korean ] = "비율";
+ Text[ korean ] = "이율";
Text[ chinese_simplified ] = "rate";
Text[ chinese_traditional ] = "rate";
Text[ turkish ] = "Rate";
@@ -16396,14 +16396,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Rente";
Text[ french ] = "Intrt";
Text[ spanish ] = "Inters";
- Text[ finnish ] = "Korko";
+ Text[ finnish ] = "Joukkovelkakirjan vuosittainen kiinte korko";
Text[ italian ] = "Il tasso d'interesse per i pagamenti";
- Text[ danish ] = "Rate";
+ Text[ danish ] = "Rente";
Text[ swedish ] = "Rnta";
Text[ polish ] = "Stopa dyskontowa stosowana dla przepyww gotwki.";
Text[ portuguese_brazilian ] = "Rate";
Text[ japanese ] = "対象となるキャッシュフローに適用する割引率";
- Text[ korean ] = "비율";
+ Text[ korean ] = "이율";
Text[ chinese_simplified ] = "一组现金流的贴现率。";
Text[ chinese_traditional ] = "為現金流的貼現率。";
Text[ turkish ] = "Rate";
@@ -16421,12 +16421,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Valores";
Text[ russian ] = "";
Text[ greek ] = "Values";
- Text[ dutch ] = "Values";
+ Text[ dutch ] = "Waarden";
Text[ french ] = "Valeurs";
Text[ spanish ] = "Valores";
Text[ finnish ] = "Arvot";
Text[ italian ] = "Valori";
- Text[ danish ] = "Values";
+ Text[ danish ] = "Vrdier";
Text[ swedish ] = "Vrden";
Text[ polish ] = "Wartoci";
Text[ portuguese_brazilian ] = "Values";
@@ -16447,14 +16447,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The values";
Text[ portuguese ] = "Valores";
- Text[ russian ] = " , .";
+ Text[ russian ] = " , .";
Text[ greek ] = "Values";
- Text[ dutch ] = "Values";
+ Text[ dutch ] = "Waarden";
Text[ french ] = "Valeurs";
Text[ spanish ] = "Valores";
Text[ finnish ] = "Arvot";
Text[ italian ] = "Valori";
- Text[ danish ] = "Values";
+ Text[ danish ] = "Vrdier";
Text[ swedish ] = "Vrden";
Text[ polish ] = "Seria przepyww gotwki.";
Text[ portuguese_brazilian ] = "Values";
@@ -16482,7 +16482,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Fechas";
Text[ finnish ] = "Pivmrt";
Text[ italian ] = "Date";
- Text[ danish ] = "Dates";
+ Text[ danish ] = "Tidspunkter";
Text[ swedish ] = "Tidpunkter";
Text[ polish ] = "Daty";
Text[ portuguese_brazilian ] = "Dates";
@@ -16510,7 +16510,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Fechas";
Text[ finnish ] = "Pivmrt";
Text[ italian ] = "Date";
- Text[ danish ] = "Dates";
+ Text[ danish ] = "Tidspunkter";
Text[ swedish ] = "Tidpunkter";
Text[ polish ] = "Zestawienie dat patnoci odpowiadajcych przepywom gotwki.";
Text[ portuguese_brazilian ] = "Dates";
@@ -16534,14 +16534,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Returns the interest rate for a fully invested security";
Text[ portuguese ] = "Devolve a taxa de juro de um ttulo totalmente investido.";
- Text[ russian ] = " .";
+ Text[ russian ] = " .";
Text[ greek ] = "Returns the interest rate for a fully invested security";
Text[ dutch ] = "Geeft als resultaat het rentepercentage voor een volgestort waardepapier.";
Text[ french ] = "Renvoie le taux d'intrt pour une obligation.";
Text[ spanish ] = "Devuelve el tipo de inters de un efecto invertido totalmente.";
Text[ finnish ] = "Palauttaa kokonaan merkityn joukkovelkakirjalainan korkoprosentin";
Text[ italian ] = "Restituisce il tasso d'interesse per un titolo interamente investito.";
- Text[ danish ] = "Returns the interest rate for a fully invested security";
+ Text[ danish ] = "Returnerer rentesatsen for et fuldt investeret vrdipapir.";
Text[ swedish ] = "Returnerar rntesatsen fr ett fullinvesterat vrdepapper.";
Text[ polish ] = "Podaje warto stopy procentowej papieru wartociowego cakowicie ulokowanego.";
Text[ portuguese_brazilian ] = "Returns the interest rate for a fully invested security";
@@ -16562,14 +16562,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Settlement";
Text[ portuguese ] = "Liquidao";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Settlement";
Text[ dutch ] = "Stortingsdatum";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Liquidacin";
Text[ finnish ] = "Lunastus";
Text[ italian ] = "Liquidazione";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Rozliczenie";
Text[ portuguese_brazilian ] = "Settlement";
@@ -16595,9 +16595,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Stortingsdatum";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Liquidacin";
- Text[ finnish ] = "Lunastus";
+ Text[ finnish ] = "Joukkovelkakirjan lunastuspivmr";
Text[ italian ] = "Data di acquisto del titolo";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Data rozliczenia papieru wartociowego.";
Text[ portuguese_brazilian ] = "Settlement";
@@ -16618,14 +16618,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Maturity";
Text[ portuguese ] = "Vencimento";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Maturity";
Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Vencimiento";
Text[ finnish ] = "Erntyminen";
Text[ italian ] = "Scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty";
Text[ portuguese_brazilian ] = "Maturity";
@@ -16651,9 +16651,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Vencimiento";
- Text[ finnish ] = "Erntyminen";
+ Text[ finnish ] = "Joukkovelkakirjan erntymispivmr";
Text[ italian ] = "Data di vendita del titolo";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty papieru wartociowego.";
Text[ portuguese_brazilian ] = "Maturity";
@@ -16676,12 +16676,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Investimento";
Text[ russian ] = "";
Text[ greek ] = "Investment";
- Text[ dutch ] = "Investering";
+ Text[ dutch ] = "Bijlage";
Text[ french ] = "Investissement";
Text[ spanish ] = "Inversin";
Text[ finnish ] = "Sijoitus";
Text[ italian ] = "Investimento";
- Text[ danish ] = "Investment";
+ Text[ danish ] = "Anlg";
Text[ swedish ] = "Investering";
Text[ polish ] = "Lokata";
Text[ portuguese_brazilian ] = "Investment";
@@ -16704,12 +16704,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Investimento";
Text[ russian ] = " .";
Text[ greek ] = "Investment";
- Text[ dutch ] = "Investering";
+ Text[ dutch ] = "Bijlage";
Text[ french ] = "Investissement";
Text[ spanish ] = "Inversin";
Text[ finnish ] = "Sijoitus";
Text[ italian ] = "Il prezzo d'acquisto";
- Text[ danish ] = "Investment";
+ Text[ danish ] = "Anlg";
Text[ swedish ] = "Investering";
Text[ polish ] = "Kwota zainwestowana w papier wartociowy.";
Text[ portuguese_brazilian ] = "Investment";
@@ -16732,12 +16732,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Reembolso";
Text[ russian ] = "";
Text[ greek ] = "Redemption";
- Text[ dutch ] = "Aflossingsprijs";
+ Text[ dutch ] = "Aflossingsbedrag";
Text[ french ] = "Remboursement";
Text[ spanish ] = "Reembolso";
Text[ finnish ] = "Lunastus";
Text[ italian ] = "Rimborso";
- Text[ danish ] = "Redemption";
+ Text[ danish ] = "Tilbagebetaling";
Text[ swedish ] = "Inlsningsvrde";
Text[ polish ] = "Wykup";
Text[ portuguese_brazilian ] = "Redemption";
@@ -16760,12 +16760,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Reembolso";
Text[ russian ] = " , .";
Text[ greek ] = "Redemption";
- Text[ dutch ] = "Aflossingsprijs";
+ Text[ dutch ] = "Aflossingsbedrag";
Text[ french ] = "Remboursement";
Text[ spanish ] = "Reembolso";
- Text[ finnish ] = "Lunastus";
+ Text[ finnish ] = "Joukkovelkakirjan lunastusarvo";
Text[ italian ] = "Il prezzo di vendita";
- Text[ danish ] = "Redemption";
+ Text[ danish ] = "Tilbagebetaling";
Text[ swedish ] = "Inlsningsvrde";
Text[ polish ] = "Kwota, ktr otrzymamy w dniu patnoci.";
Text[ portuguese_brazilian ] = "Redemption";
@@ -16793,12 +16793,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Base";
Text[ finnish ] = "Kantaluku";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Podstawa";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "基準";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "basis";
Text[ chinese_traditional ] = "basis";
Text[ turkish ] = "Base";
@@ -16819,14 +16819,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "Base";
- Text[ finnish ] = "Kantaluku";
+ Text[ finnish ] = "Kytettv vuosien mr";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Rodzaj podstawy wyliczania dni.";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "利息計算の基礎となる日数の計算方法";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "年天数的基数";
Text[ chinese_traditional ] = "要使用的年天數的基準。";
Text[ turkish ] = "Base";
@@ -16845,19 +16845,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Returns the first coupon date after the settlement date";
Text[ portuguese ] = "Devolve a data do primeiro cupo aps a data de liquidao.";
- Text[ russian ] = " , .";
+ Text[ russian ] = " .";
Text[ greek ] = "Returns the next coupon date after the settlement date";
- Text[ dutch ] = "Geeft als resultaat de eerste coupondatum na de stortingsdatum.";
+ Text[ dutch ] = "Geeft als resultaat de eerste rentetermijn na de stortingsdatum.";
Text[ french ] = "Renvoie la date du coupon suivant la date de liquidation.";
Text[ spanish ] = "Devuelve la fecha del primer plazo de intereses tras la liquidacin.";
Text[ finnish ] = "Palauttaa lunastuspiv seuraavan kiinten koron maksupivn";
Text[ italian ] = "Restituisce la data della prima scadenza della cedola dopo la data di liquidazione.";
- Text[ danish ] = "Returns the next coupon date after the settlement date";
+ Text[ danish ] = "Returnerer datoen for frste rentetermin efter afregningsterminen.";
Text[ swedish ] = "Returnerar frsta kupongdatum efter likviddagen.";
Text[ polish ] = "Podaje dat nastpnej dywidendy po dacie zakupu.";
Text[ portuguese_brazilian ] = "Returns the next coupon date after the settlement date";
Text[ japanese ] = "受領日の直後の利息支払日を数値で返します。";
- Text[ korean ] = "결산일 이후에 있을 다음 번 이자표 발행일을 반환합니다.";
+ Text[ korean ] = "결산일 이후에 있을 다음 번 이자표 발행 날짜를 구합니다.";
Text[ chinese_simplified ] = "计算某一有价证券成交日过后的下一个付息日期。";
Text[ chinese_traditional ] = "傳回一個有價證券結算日後的下一個付息的日期。";
Text[ turkish ] = "Returns the next coupon date after the settlement date";
@@ -16873,14 +16873,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Settlement";
Text[ portuguese ] = "Liquidao";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Settlement";
Text[ dutch ] = "Stortingsdatum";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Liquidacin";
Text[ finnish ] = "Lunastus";
Text[ italian ] = "Liquidazione";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Rozliczenie";
Text[ portuguese_brazilian ] = "Settlement";
@@ -16906,9 +16906,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Stortingsdatum";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Liquidacin";
- Text[ finnish ] = "Lunastus";
+ Text[ finnish ] = "Joukkovelkakirjan lunastuspivmr";
Text[ italian ] = "Data di acquisto del titolo";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Data rozliczenia papieru wartociowego.";
Text[ portuguese_brazilian ] = "Settlement";
@@ -16929,14 +16929,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Maturity";
Text[ portuguese ] = "Vencimento";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Maturity";
Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Vencimiento";
Text[ finnish ] = "Erntyminen";
Text[ italian ] = "Scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty";
Text[ portuguese_brazilian ] = "Maturity";
@@ -16962,9 +16962,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Vencimiento";
- Text[ finnish ] = "Erntyminen";
+ Text[ finnish ] = "Joukkovelkakirjan erntymispivmr";
Text[ italian ] = "Data di scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty papieru wartociowego.";
Text[ portuguese_brazilian ] = "Maturity";
@@ -16990,9 +16990,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Frequentie";
Text[ french ] = "Frquence";
Text[ spanish ] = "Frecuencia";
- Text[ finnish ] = "Taajuus";
+ Text[ finnish ] = "Maksut";
Text[ italian ] = "Frequenza";
- Text[ danish ] = "Frequency";
+ Text[ danish ] = "Frekvens";
Text[ swedish ] = "Frekvens";
Text[ polish ] = "Czsto";
Text[ portuguese_brazilian ] = "Frequency";
@@ -17018,9 +17018,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Frequentie";
Text[ french ] = "Frquence";
Text[ spanish ] = "Frecuencia";
- Text[ finnish ] = "Taajuus";
+ Text[ finnish ] = "Kiinteiden korkomaksujen mr vuodessa";
Text[ italian ] = "Numero dei pagamenti all'anno";
- Text[ danish ] = "Frequency";
+ Text[ danish ] = "Frekvens";
Text[ swedish ] = "Frekvens";
Text[ polish ] = "Liczba realizacji kuponw w roku.";
Text[ portuguese_brazilian ] = "Frequency";
@@ -17048,12 +17048,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Base";
Text[ finnish ] = "Kantaluku";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Podstawa";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "基準";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "basis";
Text[ chinese_traditional ] = "basis";
Text[ turkish ] = "Base";
@@ -17074,14 +17074,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "Base";
- Text[ finnish ] = "Kantaluku";
+ Text[ finnish ] = "Kytettv vuosien mr";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Okrelenie sposobu patnoci.";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "利息計算の基礎となる日数の計算方法";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "年天数的基数";
Text[ chinese_traditional ] = "要使用的年天數的基準。";
Text[ turkish ] = "Base";
@@ -17100,14 +17100,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Returns the number of days in the coupon period containing the settlement date";
Text[ portuguese ] = "Devolve o nmero de dias para o perodo do cupo, incluindo a data de liquidao.";
- Text[ russian ] = " , .";
+ Text[ russian ] = " .";
Text[ greek ] = "Returns the number of days in the coupon period that contains the settlement date";
- Text[ dutch ] = "Geeft als resultaat het aantal dagen van de couponperiode waarbinnen de stortingsdatum valt. ";
+ Text[ dutch ] = "Geeft als resultaat het aantal dagen van de renteperiode waarbinnen de stortingsdatum valt.";
Text[ french ] = "Renvoie le nombre de jours pour la priode du coupon contenant la date de liquidation.";
Text[ spanish ] = "Devuelve la cantidad de das del perodo de inters que incluye la fecha de liquidacin.";
- Text[ finnish ] = "Palauttaa lunastuspivn sisltvn kiinten korkokauden pivien lukumrn";
+ Text[ finnish ] = "Palauttaa lunastuspivn sisltvn kiinten korkokauden pivien umrn";
Text[ italian ] = "Restituisce il numero dei giorni della durata della cedola che include la data di liquidazione.";
- Text[ danish ] = "Returns the number of days in the coupon period that contains the settlement date";
+ Text[ danish ] = "Returnerer antal dage i renteperioden, i hvilke afregningsterminen er inkluderet.";
Text[ swedish ] = "Returnerar antalet dagar i rnteperioden som innehller likviddagen.";
Text[ polish ] = "Podaje liczb dni w okresie dywidendy obejmujcym dat zakupu.";
Text[ portuguese_brazilian ] = "Returns the number of days in the coupon period that contains the settlement date";
@@ -17117,7 +17117,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "傳回某一有價證券包含結算日在內的付息期的天數。";
Text[ turkish ] = "Returns the number of days in the coupon period that contains the settlement date";
Text[ arabic ] = "Returns the number of days in the coupon period that contains the settlement date";
- Text[ catalan ] = "Torna el nmero de dies del perode d'inters que inclou la data de liquidaci";
+ Text[ catalan ] = "Torna el nombre de dies del perode d'inters que inclou la data de liquidaci";
Text[ thai ] = "ส่งกลับจำนวนวันในงวดของคูปองมีวันที่ชำระบัญชี";
};
@@ -17128,14 +17128,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Settlement";
Text[ portuguese ] = "Liquidao";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Settlement";
Text[ dutch ] = "Stortingsdatum";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Liquidacin";
Text[ finnish ] = "Lunastus";
Text[ italian ] = "Liquidazione";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Rozliczenie";
Text[ portuguese_brazilian ] = "Settlement";
@@ -17161,9 +17161,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Stortingsdatum";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Liquidacin";
- Text[ finnish ] = "Lunastus";
+ Text[ finnish ] = "Joukkovelkakirjan lunastuspivmr";
Text[ italian ] = "Data di acquisto del titolo";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Data rozliczenia papieru wartociowego.";
Text[ portuguese_brazilian ] = "Settlement";
@@ -17184,14 +17184,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Maturity";
Text[ portuguese ] = "Vencimento";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Maturity";
Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Vencimiento";
Text[ finnish ] = "Erntyminen";
Text[ italian ] = "Scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty";
Text[ portuguese_brazilian ] = "Maturity";
@@ -17217,9 +17217,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Vencimiento";
- Text[ finnish ] = "Erntyminen";
+ Text[ finnish ] = "Joukkovelkakirjan erntymispivmr";
Text[ italian ] = "Data di scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty papieru wartociowego.";
Text[ portuguese_brazilian ] = "Maturity";
@@ -17242,12 +17242,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Frequncia";
Text[ russian ] = "";
Text[ greek ] = "Frequency";
- Text[ dutch ] = "Frequency";
+ Text[ dutch ] = "Frequentie";
Text[ french ] = "Frquence";
Text[ spanish ] = "Frecuencia";
- Text[ finnish ] = "Taajuus";
+ Text[ finnish ] = "Maksut";
Text[ italian ] = "Frequenza";
- Text[ danish ] = "Frequency";
+ Text[ danish ] = "Frekvens";
Text[ swedish ] = "Frekvens";
Text[ polish ] = "Czsto";
Text[ portuguese_brazilian ] = "Frequency";
@@ -17270,12 +17270,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Frequncia";
Text[ russian ] = " .";
Text[ greek ] = "Frequency";
- Text[ dutch ] = "Frequency";
+ Text[ dutch ] = "Frequentie";
Text[ french ] = "Frquence";
Text[ spanish ] = "El nmero de cupones a pagar por ao.";
- Text[ finnish ] = "Taajuus";
+ Text[ finnish ] = "Kiinteiden korkomaksujen mr vuodessa";
Text[ italian ] = "Numero dei pagamenti all'anno";
- Text[ danish ] = "Frequency";
+ Text[ danish ] = "Frekvens";
Text[ swedish ] = "Frekvens";
Text[ polish ] = "Liczba realizacji kuponw w roku.";
Text[ portuguese_brazilian ] = "Frequency";
@@ -17298,17 +17298,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Base";
Text[ russian ] = "";
Text[ greek ] = "Base";
- Text[ dutch ] = "Base";
+ Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "Base";
Text[ finnish ] = "Kantaluku";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Podstawa";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "基準";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "basis";
Text[ chinese_traditional ] = "basis";
Text[ turkish ] = "Base";
@@ -17326,17 +17326,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Base";
Text[ russian ] = " .";
Text[ greek ] = "Base";
- Text[ dutch ] = "Base";
+ Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "El tipo de base segn el cual deben contarse los das.";
- Text[ finnish ] = "Kantaluku";
+ Text[ finnish ] = "Kytettv vuosien mr";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Okrelenie typu patnoci.";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "利息計算の基礎となる日数の計算方法";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "年天数的基数";
Text[ chinese_traditional ] = "要使用的年天數的基準。";
Text[ turkish ] = "Base";
@@ -17355,14 +17355,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Returns the number of days from the settlement date to the next coupon date";
Text[ portuguese ] = "Devolve o nmero de dias entre a data de liquidao e a prxima data dos juros.";
- Text[ russian ] = " .";
+ Text[ russian ] = " .";
Text[ greek ] = "Returns the number of days from the settlement date to the next coupon date";
- Text[ dutch ] = "Returns the number of days from the settlement date to the next coupon date";
+ Text[ dutch ] = "Geeft het aantal dagen tussen de afrekeningtermijn en de volgende rentetermijn.";
Text[ french ] = "Renvoie le nombre de jours entre la date de liquidation et la date du coupon suivant.";
Text[ spanish ] = "Devuelve la cantidad de das desde la fecha de liquidacin hasta la fecha del prximo cupn.";
- Text[ finnish ] = "Palauttaa lunastuspivn ja seuraavan kiinten koron maksupivn vlisten pivien lukumrn";
+ Text[ finnish ] = "Palauttaa lunastuspivn ja seuraavan kiinten koron maksupivn vlisten pivien mrn";
Text[ italian ] = "Restituisce il numero dei giorni che vanno dalla data di liquidazione alla nuova scadenza della cedola.";
- Text[ danish ] = "Returns the number of days from the settlement date to the next coupon date";
+ Text[ danish ] = "Returnerer antal dage fra afregningsterminen indtil nste rentetermin.";
Text[ swedish ] = "Returnerar antalet dagar frn likviddatum till nsta kupongdatum.";
Text[ polish ] = "Podaje liczb dni do daty nastpnej dywidendy.";
Text[ portuguese_brazilian ] = "Returns the number of days from the settlement date to the next coupon date";
@@ -17372,7 +17372,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "傳回一個有價證券結算日至下一個付息日的天數。";
Text[ turkish ] = "Returns the number of days from the settlement date to the next coupon date";
Text[ arabic ] = "Returns the number of days from the settlement date to the next coupon date";
- Text[ catalan ] = "Torna el nmero de dies des de la data de liquidaci fins a la data del prxim termini";
+ Text[ catalan ] = "Torna el nombre de dies des de la data de liquidaci fins a la data del prxim termini";
Text[ thai ] = "ส่งกลับจำนวนวันจากวันชำระบัญชีถึงวันถัดไปของคูปอง";
};
@@ -17383,14 +17383,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Settlement";
Text[ portuguese ] = "Liquidao";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Settlement";
- Text[ dutch ] = "Settlement";
+ Text[ dutch ] = "Afrekening";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Liquidacin";
Text[ finnish ] = "Lunastus";
Text[ italian ] = "Liquidazione";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Rozliczenie";
Text[ portuguese_brazilian ] = "Settlement";
@@ -17413,12 +17413,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Liquidao";
Text[ russian ] = " .";
Text[ greek ] = "Settlement";
- Text[ dutch ] = "Settlement";
+ Text[ dutch ] = "Afrekening";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Fecha de liquidacin del valor.";
- Text[ finnish ] = "Lunastus";
+ Text[ finnish ] = "Joukkovelkakirjan lunastuspivmr";
Text[ italian ] = "Data di acquisto del titolo";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Data rozliczenia papieru wartociowego.";
Text[ portuguese_brazilian ] = "Settlement";
@@ -17439,14 +17439,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Maturity";
Text[ portuguese ] = "Vencimento";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Maturity";
- Text[ dutch ] = "Maturity";
+ Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Vencimiento";
Text[ finnish ] = "Erntyminen";
Text[ italian ] = "Scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty";
Text[ portuguese_brazilian ] = "Maturity";
@@ -17469,12 +17469,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Vencimento";
Text[ russian ] = " .";
Text[ greek ] = "Maturity";
- Text[ dutch ] = "Maturity";
+ Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "La fecha de vencimiento del valor.";
- Text[ finnish ] = "Erntyminen";
+ Text[ finnish ] = "Joukkovelkakirjan erntymispivmr";
Text[ italian ] = "Data di scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty papieru wartociowego.";
Text[ portuguese_brazilian ] = "Maturity";
@@ -17497,12 +17497,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Frequncia";
Text[ russian ] = "";
Text[ greek ] = "Frequency";
- Text[ dutch ] = "Frequency";
+ Text[ dutch ] = "Frequentie";
Text[ french ] = "Frquence";
Text[ spanish ] = "Frecuencia";
- Text[ finnish ] = "Taajuus";
+ Text[ finnish ] = "Maksut";
Text[ italian ] = "Frequenza";
- Text[ danish ] = "Frequency";
+ Text[ danish ] = "Frekvens";
Text[ swedish ] = "Frekvens";
Text[ polish ] = "Czsto";
Text[ portuguese_brazilian ] = "Frequency";
@@ -17525,12 +17525,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Frequncia";
Text[ russian ] = " .";
Text[ greek ] = "Frequency";
- Text[ dutch ] = "Frequency";
+ Text[ dutch ] = "Frequentie";
Text[ french ] = "Frquence";
Text[ spanish ] = "El nmero de cupones a pagar por ao.";
- Text[ finnish ] = "Taajuus";
+ Text[ finnish ] = "Kiinteiden korkomaksujen mr vuodessa";
Text[ italian ] = "Numero dei pagamenti all'anno";
- Text[ danish ] = "Frequency";
+ Text[ danish ] = "Frekvens";
Text[ swedish ] = "Frekvens";
Text[ polish ] = "Liczba realizacji kuponw w roku.";
Text[ portuguese_brazilian ] = "Frequency";
@@ -17553,17 +17553,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Base";
Text[ russian ] = "";
Text[ greek ] = "Base";
- Text[ dutch ] = "Base";
+ Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "Base";
Text[ finnish ] = "Kantaluku";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Podstawa";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "基準";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "basis";
Text[ chinese_traditional ] = "basis";
Text[ turkish ] = "Base";
@@ -17581,17 +17581,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Base";
Text[ russian ] = " .";
Text[ greek ] = "Base";
- Text[ dutch ] = "Base";
+ Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "Base";
- Text[ finnish ] = "Kantaluku";
+ Text[ finnish ] = "Kytettv vuosien mr";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Okrelenie typu patnoci.";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "利息計算の基礎となる日数の計算方法";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "年天数的基数";
Text[ chinese_traditional ] = "要使用的年天數的基準。";
Text[ turkish ] = "Base";
@@ -17610,14 +17610,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Returns the number of days from the beginning of the coupon period to the settlement date";
Text[ portuguese ] = "Devolve o nmero de dias entre o incio do perodo de juros e a data de liquidao.";
- Text[ russian ] = " .";
+ Text[ russian ] = " .";
Text[ greek ] = "Returns the number of days from the beginning of the coupon period to the settlement date";
- Text[ dutch ] = "Returns the number of days from the beginning of the coupon period to the settlement date";
+ Text[ dutch ] = "Geeft het aantal dagen tussen het begin van de rentetermijn tot de afrekeningtermijn.";
Text[ french ] = "Renvoie le nombre de jours entre le dbut de la priode de coupon et la date de liquidation.";
Text[ spanish ] = "Devuelve la cantidad de das desde el principio de un cupn hasta la fecha de liquidacin.";
- Text[ finnish ] = "Palauttaa pivien lukumrn kiinten korkokauden alusta lunastuspivn";
+ Text[ finnish ] = "Palauttaa pivien mrn kiinten korkokauden alusta lunastuspivn";
Text[ italian ] = "Restituisce il numero dei giorni che vanno dall'inizio della scadenza della cedola alla data di liquidazione.";
- Text[ danish ] = "Returns the number of days from the beginning of the coupon period to the settlement date";
+ Text[ danish ] = "Returnerer antal dage fra starten af renteterminen indtil afregningsterminen.";
Text[ swedish ] = "Returnerar antalet dagar frn brjan av kupongperioden till likviddatum.";
Text[ polish ] = "Podaje liczb dni od pocztku okresu dywidendy do daty wykupu.";
Text[ portuguese_brazilian ] = "Returns the number of days from the beginning of the coupon period to the settlement date";
@@ -17627,7 +17627,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "傳回某一有價證券的從付息日開始至結算日的天數。";
Text[ turkish ] = "Returns the number of days from the beginning of the coupon period to the settlement date";
Text[ arabic ] = "Returns the number of days from the beginning of the coupon period to the settlement date";
- Text[ catalan ] = "Torna el nmero de dies des del principi d'un termini fins a la data de liquidaci";
+ Text[ catalan ] = "Torna el nombre de dies des del principi d'un termini fins a la data de liquidaci";
Text[ thai ] = "ส่งกลับจำนวนวันจากงวดแรกของคูปองถึงวันชำระบัญชี";
};
@@ -17638,14 +17638,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Settlement";
Text[ portuguese ] = "Liquidao";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Settlement";
- Text[ dutch ] = "Settlement";
+ Text[ dutch ] = "Afrekening";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Liquidacin";
Text[ finnish ] = "Lunastus";
Text[ italian ] = "Liquidazione";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Rozliczenie";
Text[ portuguese_brazilian ] = "Settlement";
@@ -17668,12 +17668,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Liquidao";
Text[ russian ] = " .";
Text[ greek ] = "Settlement";
- Text[ dutch ] = "Settlement";
+ Text[ dutch ] = "Afrekening";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Fecha de liquidacin del valor.";
- Text[ finnish ] = "Lunastus";
+ Text[ finnish ] = "Joukkovelkakirjan lunastuspivmr";
Text[ italian ] = "Data di acquisto del titolo";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Data rozliczenia papieru wartociowego.";
Text[ portuguese_brazilian ] = "Settlement";
@@ -17694,14 +17694,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Maturity";
Text[ portuguese ] = "Vencimento";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Maturity";
- Text[ dutch ] = "Maturity";
+ Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Vencimiento";
Text[ finnish ] = "Erntyminen";
Text[ italian ] = "Scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty";
Text[ portuguese_brazilian ] = "Maturity";
@@ -17724,12 +17724,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Vencimento";
Text[ russian ] = " .";
Text[ greek ] = "Maturity";
- Text[ dutch ] = "Maturity";
+ Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Fecha de vencimiento del valor.";
- Text[ finnish ] = "Erntyminen";
+ Text[ finnish ] = "Joukkovelkakirjan erntymispivmr";
Text[ italian ] = "Data di scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty papieru wartociowego.";
Text[ portuguese_brazilian ] = "Maturity";
@@ -17752,12 +17752,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Frequncia";
Text[ russian ] = "";
Text[ greek ] = "Frequency";
- Text[ dutch ] = "Frequency";
+ Text[ dutch ] = "Frequentie";
Text[ french ] = "Frquence";
Text[ spanish ] = "Frecuencia";
- Text[ finnish ] = "Taajuus";
+ Text[ finnish ] = "Maksut";
Text[ italian ] = "Frequenza";
- Text[ danish ] = "Frequency";
+ Text[ danish ] = "Frekvens";
Text[ swedish ] = "Frekvens";
Text[ polish ] = "Czsto";
Text[ portuguese_brazilian ] = "Frequency";
@@ -17778,14 +17778,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "The frequency";
Text[ portuguese ] = "Frequncia";
- Text[ russian ] = "Frequency";
+ Text[ russian ] = "";
Text[ greek ] = "Frequency";
- Text[ dutch ] = "Frequency";
+ Text[ dutch ] = "Frequentie";
Text[ french ] = "Frquence";
Text[ spanish ] = "El nmero de cupones a pagar por ao.";
- Text[ finnish ] = "Taajuus";
+ Text[ finnish ] = "Kiinteiden korkomaksujen mr vuodessa";
Text[ italian ] = "Numero dei pagamenti all'anno";
- Text[ danish ] = "Frequency";
+ Text[ danish ] = "Frekvens";
Text[ swedish ] = "Frekvens";
Text[ polish ] = "Liczba realizacji kuponw w roku.";
Text[ portuguese_brazilian ] = "Frequency";
@@ -17808,17 +17808,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Base";
Text[ russian ] = "";
Text[ greek ] = "Base";
- Text[ dutch ] = "Base";
+ Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "Base";
Text[ finnish ] = "Kantaluku";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Podstawa";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "基準";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "basis";
Text[ chinese_traditional ] = "basis";
Text[ turkish ] = "Base";
@@ -17836,17 +17836,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Base";
Text[ russian ] = " .";
Text[ greek ] = "Base";
- Text[ dutch ] = "Base";
+ Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "Tipo de base segn el cual deben contarse los das.";
- Text[ finnish ] = "Kantaluku";
+ Text[ finnish ] = "Kytettv vuosien mr";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Okrelenie typu patnoci.";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "利息計算の基準となる日数の計算方法";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "年天数的基数";
Text[ chinese_traditional ] = "要使用的年天數的基準。";
Text[ turkish ] = "Base";
@@ -17865,19 +17865,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Returns the last coupon date preceding the settlement date";
Text[ portuguese ] = "Devolve a data do ltimo cupo antes da data de liquidao.";
- Text[ russian ] = " , .";
+ Text[ russian ] = " . ";
Text[ greek ] = "Returns the previous coupon date before the settlement date";
- Text[ dutch ] = "Returns the previous coupon date before the settlement date";
+ Text[ dutch ] = "Geeft de datum van de laatste rentetermijn voorafgaand aan de afrekeningdatum.";
Text[ french ] = "Renvoie la date du coupon prcdant la date de liquidation.";
Text[ spanish ] = "Devuelve la fecha del cupn anterior a la fecha de liquidacin.";
Text[ finnish ] = "Palauttaa lunastuspiv edeltvn kiinten koron maksupivn";
Text[ italian ] = "Restituisce la data dell'ultima scadenza della cedola prima della data di liquidazione.";
- Text[ danish ] = "Returns the previous coupon date before the settlement date";
+ Text[ danish ] = "Returnerer datoen for sidste rentetermin fr afregningsterminen.";
Text[ swedish ] = "Returnerar senste kupongdatum fre likviddatum.";
Text[ polish ] = "Podaje dat dywidendy poprzedzajc dat zakupu.";
Text[ portuguese_brazilian ] = "Returns the previous coupon date before the settlement date";
Text[ japanese ] = "受領日の直前の利息支払日を返します。";
- Text[ korean ] = "결산일이 되기 전 이전 이자표 날짜를 반환합니다";
+ Text[ korean ] = "결산일 이전 이자표 날짜를 구합니다.";
Text[ chinese_simplified ] = "计算某一有价证券成交日前的最后一个付息日期。";
Text[ chinese_traditional ] = "傳回某一有價證券結算日前的最後一個付息日期。";
Text[ turkish ] = "Returns the previous coupon date before the settlement date";
@@ -17893,14 +17893,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Settlement";
Text[ portuguese ] = "Liquidao";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Settlement";
- Text[ dutch ] = "Settlement";
+ Text[ dutch ] = "Afrekening";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Liquidacin";
Text[ finnish ] = "Lunastus";
Text[ italian ] = "Liquidazione";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Rozliczenie";
Text[ portuguese_brazilian ] = "Settlement";
@@ -17923,12 +17923,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Liquidao";
Text[ russian ] = " .";
Text[ greek ] = "Settlement";
- Text[ dutch ] = "Settlement";
+ Text[ dutch ] = "Afrekening";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Fecha de liquidacin del valor.";
- Text[ finnish ] = "Lunastus";
+ Text[ finnish ] = "Joukkovelkakirjan lunastuspivmr";
Text[ italian ] = "Data di acquisto del titolo";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Data rozliczenia papieru wartociowego.";
Text[ portuguese_brazilian ] = "Settlement";
@@ -17949,14 +17949,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Maturity";
Text[ portuguese ] = "Vencimento";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Maturity";
- Text[ dutch ] = "Maturity";
+ Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Vencimiento";
Text[ finnish ] = "Erntyminen";
Text[ italian ] = "Scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty";
Text[ portuguese_brazilian ] = "Maturity";
@@ -17982,9 +17982,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Vencimiento";
- Text[ finnish ] = "Erntyminen";
+ Text[ finnish ] = "Joukkovelkakirjan erntymispivmr";
Text[ italian ] = "Data di scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty papieru wartociowego.";
Text[ portuguese_brazilian ] = "Maturity";
@@ -18010,9 +18010,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Frequentie";
Text[ french ] = "Frquence";
Text[ spanish ] = "Frecuencia";
- Text[ finnish ] = "Taajuus";
+ Text[ finnish ] = "Maksut";
Text[ italian ] = "Frequenza";
- Text[ danish ] = "Frequency";
+ Text[ danish ] = "Frekvens";
Text[ swedish ] = "Frekvens";
Text[ polish ] = "Czsto";
Text[ portuguese_brazilian ] = "Frequency";
@@ -18038,9 +18038,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Frequentie";
Text[ french ] = "Frquence";
Text[ spanish ] = "Frecuencia";
- Text[ finnish ] = "Taajuus";
+ Text[ finnish ] = "Kiinteiden korkomaksujen mr vuodessa";
Text[ italian ] = "Numero dei pagamenti all'anno";
- Text[ danish ] = "Frequency";
+ Text[ danish ] = "Frekvens";
Text[ swedish ] = "Frekvens";
Text[ polish ] = "Liczba realizacji kuponw w roku.";
Text[ portuguese_brazilian ] = "Frequency";
@@ -18068,12 +18068,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Base";
Text[ finnish ] = "Kantaluku";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Podstawa";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "基準";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "basis";
Text[ chinese_traditional ] = "basis";
Text[ turkish ] = "Base";
@@ -18094,14 +18094,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "Base";
- Text[ finnish ] = "Kantaluku";
+ Text[ finnish ] = "Kytettv vuosien mr";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Okrelenie typu patnoci.";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "利息計算の基礎となる日数の計算方法";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "年天数的基数";
Text[ chinese_traditional ] = "要使用的年天數的基準。";
Text[ turkish ] = "Base";
@@ -18120,19 +18120,19 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Returns the number of coupons payable between the settlement and maturity dates";
Text[ portuguese ] = "Devolve o nmero de cupes a pagar entre a data de liquidao e a de vencimento.";
- Text[ russian ] = " , .";
+ Text[ russian ] = " .";
Text[ greek ] = "Returns the number of coupons payable between the settlement date and maturity date";
- Text[ dutch ] = "Geeft als resultaat het aantal coupons dat nog uitbetaald moet worden tussen stortingsdatum en vervaldatum.";
+ Text[ dutch ] = "Geeft het aantal rentetermijnen tussen de afrekeningdatum en de vervaldatum.";
Text[ french ] = "Renvoie le nombre de coupons dus entre la date de liquidation et la date d'chance.";
Text[ spanish ] = "Devuelve los plazos de los intereses entre la fecha de liquidacin y vencimiento.";
- Text[ finnish ] = "Palauttaa lunastuspivn ja erntymispivn vlill maksettavien kiinteiden korkomaksujen lukumrn";
+ Text[ finnish ] = "Palauttaa lunastuspivn ja erntymispivn vlill maksettavien kiinteiden korkomaksujen mrn";
Text[ italian ] = "Restituisce il numero delle scadenze delle cedole tra data di liquidazione e di scadenza.";
- Text[ danish ] = "Returns the number of coupons payable between the settlement date and maturity date";
+ Text[ danish ] = "Returnerer antal dage i renteterminerne mellem afregnings- og forfaldsdato.";
Text[ swedish ] = "Returnerar antalet kuponger mellan likvid- och frfallodatum.";
Text[ polish ] = "Podaje liczb dywidend patnych pomidzy dat rozliczenia a dat spaty.";
Text[ portuguese_brazilian ] = "Returns the number of coupons payable between the settlement date and maturity date";
Text[ japanese ] = "受領日と満期日の間に利息が支払われる回数を返します。";
- Text[ korean ] = "결산일과 만기일 사이에 지불할 수 있는 이자표의 수를 반환합니다";
+ Text[ korean ] = "결산일과 만기일 사이에 지불할 수 있는 이자표의 수를 구합니다.";
Text[ chinese_simplified ] = "计算某一有价证券从成交日起至到期日期的付息次数。";
Text[ chinese_traditional ] = "傳回某一有價證券從結算日期至到期日期的付息次數。";
Text[ turkish ] = "Returns the number of coupons payable between the settlement date and maturity date";
@@ -18148,14 +18148,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Settlement";
Text[ portuguese ] = "Liquidao";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Settlement";
Text[ dutch ] = "Stortingsdatum";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Liquidacin";
Text[ finnish ] = "Lunastus";
Text[ italian ] = "Liquidazione";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Rozliczenie";
Text[ portuguese_brazilian ] = "Settlement";
@@ -18181,9 +18181,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Stortingsdatum";
Text[ french ] = "Liquidation";
Text[ spanish ] = "Liquidacin";
- Text[ finnish ] = "Lunastus";
+ Text[ finnish ] = "Joukkovelkakirjan lunastuspivmr";
Text[ italian ] = "Data di acquisto";
- Text[ danish ] = "Settlement";
+ Text[ danish ] = "Afregning";
Text[ swedish ] = "Betalning";
Text[ polish ] = "Data rozliczenia papieru wartociowego.";
Text[ portuguese_brazilian ] = "Settlement";
@@ -18204,14 +18204,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Maturity";
Text[ portuguese ] = "Vencimento";
- Text[ russian ] = "_";
+ Text[ russian ] = "";
Text[ greek ] = "Maturity";
Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Vencimiento";
Text[ finnish ] = "Erntyminen";
Text[ italian ] = "Scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty";
Text[ portuguese_brazilian ] = "Maturity";
@@ -18237,9 +18237,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Vervaldatum";
Text[ french ] = "chance";
Text[ spanish ] = "Vencimiento";
- Text[ finnish ] = "Erntyminen";
+ Text[ finnish ] = "Joukkovelkakirjan erntymispivmr";
Text[ italian ] = "Data di scadenza";
- Text[ danish ] = "Maturity";
+ Text[ danish ] = "Forfald";
Text[ swedish ] = "Frfallodag";
Text[ polish ] = "Data spaty papieru wartociowego.";
Text[ portuguese_brazilian ] = "Maturity";
@@ -18265,9 +18265,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Frequentie";
Text[ french ] = "Frquence";
Text[ spanish ] = "Frecuencia";
- Text[ finnish ] = "Taajuus";
+ Text[ finnish ] = "Maksut";
Text[ italian ] = "Frequenza";
- Text[ danish ] = "Frequency";
+ Text[ danish ] = "Frekvens";
Text[ swedish ] = "Frekvens";
Text[ polish ] = "Czsto";
Text[ portuguese_brazilian ] = "Frequency";
@@ -18293,9 +18293,9 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Frequentie";
Text[ french ] = "Frquence";
Text[ spanish ] = "Frecuencia";
- Text[ finnish ] = "Taajuus";
+ Text[ finnish ] = "Kiinteiden korkomaksujen mr vuodessa";
Text[ italian ] = "Numero dei pagamenti all'anno";
- Text[ danish ] = "Frequency";
+ Text[ danish ] = "Frekvens";
Text[ swedish ] = "Frekvens";
Text[ polish ] = "Liczba realizacji kuponw w roku.";
Text[ portuguese_brazilian ] = "Frequency";
@@ -18323,12 +18323,12 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Base";
Text[ finnish ] = "Kantaluku";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Podstawa";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "基準";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "basis";
Text[ chinese_traditional ] = "basis";
Text[ turkish ] = "Base";
@@ -18349,14 +18349,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Basis";
Text[ french ] = "Base";
Text[ spanish ] = "Base";
- Text[ finnish ] = "Kantaluku";
+ Text[ finnish ] = "Kytettv vuosien mr";
Text[ italian ] = "Base";
- Text[ danish ] = "Base";
+ Text[ danish ] = "Basis";
Text[ swedish ] = "Bas";
Text[ polish ] = "Okrelenie typu patnoci.";
Text[ portuguese_brazilian ] = "Base";
Text[ japanese ] = "利息計算の基礎となる日数の計算方法";
- Text[ korean ] = "기본";
+ Text[ korean ] = "기준";
Text[ chinese_simplified ] = "年天数的基数";
Text[ chinese_traditional ] = "要使用的年天數的基準。";
Text[ turkish ] = "Base";
@@ -18375,14 +18375,14 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Returns the future value of the initial principal after a series of compound interest rates are applied";
Text[ portuguese ] = "Devolve o futuro valor de um capital inicial aps a aplicao de uma srie de taxas de juro compostas.";
- Text[ russian ] = " .";
+ Text[ russian ] = " .";
Text[ greek ] = "Returns the future value of an initial principal after applying a series of compound interest rates";
Text[ dutch ] = "Geeft als resultaat de toekomstige waarde van een beginkapitaal na toevoeging van de samengestelde rente op basis van een reeks rentepercentages, die periodiek van elkaar verschillen.";
Text[ french ] = "Renvoie la valeur future d'un investissement en appliquant une srie de taux d'intrt composites.";
Text[ spanish ] = "Devuelve el valor del capital inicial tras la aplicacin de una serie de diversos tipos de intereses peridicos.";
Text[ finnish ] = "Palauttaa alkupoman tulevan arvon yhteiskorkomaksujoukon lismisen jlkeen";
Text[ italian ] = "Restituisce il valore del capitale iniziale soggetto a tassi d'interesse periodici variabili.";
- Text[ danish ] = "Returns the future value of an initial principal after applying a series of compound interest rates";
+ Text[ danish ] = "Returnerer den kapitaliserede vrdi af startkapitalen for en serie af periodisk forskellige rentesatser.";
Text[ swedish ] = "Returnerar ett framtida vrde av ett begynnelsekapital fr en rad periodiskt olika rntesatser.";
Text[ polish ] = "Zwraca warto przysz kapitau pocztkowego wraz z szeregiem rat procentu skadanego.";
Text[ portuguese_brazilian ] = "Returns the future value of an initial principal after applying a series of compound interest rates";
@@ -18410,7 +18410,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Capital";
Text[ finnish ] = "Poma";
Text[ italian ] = "Capitale";
- Text[ danish ] = "Principal";
+ Text[ danish ] = "Kapital";
Text[ swedish ] = "Kapital";
Text[ polish ] = "Kapita";
Text[ portuguese_brazilian ] = "Principal";
@@ -18438,7 +18438,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Capital";
Text[ finnish ] = "Poma";
Text[ italian ] = "Il capitale iniziale";
- Text[ danish ] = "Principal";
+ Text[ danish ] = "Kapital";
Text[ swedish ] = "Kapital";
Text[ polish ] = "Warto obecna kapitau.";
Text[ portuguese_brazilian ] = "Principal";
@@ -18466,7 +18466,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Intereses";
Text[ finnish ] = "Aikataulu";
Text[ italian ] = "Interessi";
- Text[ danish ] = "Schedule";
+ Text[ danish ] = "Renter";
Text[ swedish ] = "Rntor";
Text[ polish ] = "Stopy";
Text[ portuguese_brazilian ] = "Schedule";
@@ -18494,7 +18494,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
Text[ spanish ] = "Intereses";
Text[ finnish ] = "Aikataulu";
Text[ italian ] = "Una serie di tassi d'interesse";
- Text[ danish ] = "Schedule";
+ Text[ danish ] = "Renter";
Text[ swedish ] = "Rntor";
Text[ polish ] = "Tablica stp procentowych.";
Text[ portuguese_brazilian ] = "Schedule";
@@ -18510,3 +18510,8 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
};
};
+
+
+
+
+
diff --git a/scaddins/source/analysis/analysis_funcnames.src b/scaddins/source/analysis/analysis_funcnames.src
index b668a0f1318d..5815495c09fb 100644
--- a/scaddins/source/analysis/analysis_funcnames.src
+++ b/scaddins/source/analysis/analysis_funcnames.src
@@ -2,9 +2,9 @@
*
* $RCSfile: analysis_funcnames.src,v $
*
- * $Revision: 1.18 $
+ * $Revision: 1.19 $
*
- * last change: $Author: vg $ $Date: 2001-11-16 22:44:20 $
+ * last change: $Author: hr $ $Date: 2003-03-26 17:46:43 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -77,9 +77,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "WERKDAG";
Text[ french ] = "SERIE.JOUR.OUVRE";
Text[ spanish ] = "DIA.LAB";
- Text[ finnish ] = "WORKDAY";
+ Text[ finnish ] = "TYPIV";
Text[ italian ] = "GIORNO.LAVORATIVO";
- Text[ danish ] = "WORKDAY";
+ Text[ danish ] = "ARBEJDSDAG";
Text[ swedish ] = "ARBETSDAGAR";
Text[ polish ] = "WORKDAY";
Text[ portuguese_brazilian ] = "WORKDAY";
@@ -90,6 +90,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "WORKDAY";
Text[ arabic ] = "WORKDAY";
Text[ catalan ] = "WORKDAY";
+ Text[ thai ] = "WORKDAY";
};
String ANALYSIS_FUNCNAME_Yearfrac
@@ -103,9 +104,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "JAAR.DEEL";
Text[ french ] = "FRACTION.ANNEE";
Text[ spanish ] = "FRAC.AO";
- Text[ finnish ] = "YEARFRAC";
+ Text[ finnish ] = "VUOSI_OSA";
Text[ italian ] = "FRAZIONE.ANNO";
- Text[ danish ] = "YEARFRAC";
+ Text[ danish ] = "R.BRK";
Text[ swedish ] = "RDEL";
Text[ polish ] = "YEARFRAC";
Text[ portuguese_brazilian ] = "YEARFRAC";
@@ -116,6 +117,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "YEARFRAC";
Text[ arabic ] = "YEARFRAC";
Text[ catalan ] = "YEARFRAC";
+ Text[ thai ] = "YEARFRAC";
};
String ANALYSIS_FUNCNAME_Edate
@@ -129,9 +131,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "ZELFDE.DAG";
Text[ french ] = "MOIS.DECALER";
Text[ spanish ] = "FECHA.MES";
- Text[ finnish ] = "EDATE";
+ Text[ finnish ] = "PIV_KUUKAUSI";
Text[ italian ] = "DATA.MESE";
- Text[ danish ] = "EDATE";
+ Text[ danish ] = "EDATO";
Text[ swedish ] = "EDATUM";
Text[ polish ] = "EDATE";
Text[ portuguese_brazilian ] = "EDATE";
@@ -142,6 +144,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "EDATE";
Text[ arabic ] = "EDATE";
Text[ catalan ] = "EDATE";
+ Text[ thai ] = "EDATE";
};
String ANALYSIS_FUNCNAME_Weeknum
@@ -154,10 +157,10 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ greek ] = "WEEKNUM";
Text[ dutch ] = "WEEKNUMMER";
Text[ french ] = "NO.SEMAINE";
- Text[ spanish ] = "NUM.DE.SEMANA";
- Text[ finnish ] = "WEEKNUM";
+ Text[ spanish ] = "NUM.SEMANA";
+ Text[ finnish ] = "VIIKKO_NRO";
Text[ italian ] = "NUM.SETTIMANA";
- Text[ danish ] = "WEEKNUM";
+ Text[ danish ] = "KALENDERUGE";
Text[ swedish ] = "VECKONR";
Text[ polish ] = "WEEKNUM";
Text[ portuguese_brazilian ] = "WEEKNUM";
@@ -168,6 +171,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "WEEKNUM";
Text[ arabic ] = "WEEKNUM";
Text[ catalan ] = "WEEKNUM";
+ Text[ thai ] = "WEEKNUM";
};
String ANALYSIS_FUNCNAME_Eomonth
@@ -181,9 +185,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "LAATSTE.DAG";
Text[ french ] = "FIN.MOIS";
Text[ spanish ] = "FIN.MES";
- Text[ finnish ] = "EOMONTH";
+ Text[ finnish ] = "KUUKAUSI_LOPPU";
Text[ italian ] = "FINE.MESE";
- Text[ danish ] = "EOMONTH";
+ Text[ danish ] = "SLUT.P.MNED";
Text[ swedish ] = "SLUTMNAD";
Text[ polish ] = "EOMONTH";
Text[ portuguese_brazilian ] = "EOMONTH";
@@ -194,6 +198,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "EOMONTH";
Text[ arabic ] = "EOMONTH";
Text[ catalan ] = "EOMONTH";
+ Text[ thai ] = "EOMONTH";
};
String ANALYSIS_FUNCNAME_Networkdays
@@ -207,9 +212,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "NETTO.WERKDAGEN";
Text[ french ] = "NB.JOURS.OUVRES";
Text[ spanish ] = "DIAS.LAB";
- Text[ finnish ] = "NETWORKDAYS";
+ Text[ finnish ] = "TYPIVT";
Text[ italian ] = "GIORNI.LAVORATIVI.TOT";
- Text[ danish ] = "NETWORKDAYS";
+ Text[ danish ] = "ANTAL.ARBEJDSDAGE";
Text[ swedish ] = "NETTOARBETSDAGAR";
Text[ polish ] = "NETWORKDAYS";
Text[ portuguese_brazilian ] = "NETWORKDAYS";
@@ -220,6 +225,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "NETWORKDAYS";
Text[ arabic ] = "NETWORKDAYS";
Text[ catalan ] = "NETWORKDAYS";
+ Text[ thai ] = "NETWORKDAYS";
};
String ANALYSIS_FUNCNAME_Amordegrc
@@ -246,6 +252,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "AMORDEGRC";
Text[ arabic ] = "AMORDEGRC";
Text[ catalan ] = "AMORDEGRC";
+ Text[ thai ] = "AMORDEGRC";
};
String ANALYSIS_FUNCNAME_Amorlinc
@@ -272,6 +279,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "AMORLINC";
Text[ arabic ] = "AMORLINC";
Text[ catalan ] = "AMORLINC";
+ Text[ thai ] = "AMORLINC";
};
String ANALYSIS_FUNCNAME_Accrint
@@ -285,9 +293,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "SAMENG.RENTE";
Text[ french ] = "INTERET.ACC";
Text[ spanish ] = "INT.ACUM";
- Text[ finnish ] = "ACCRINT";
+ Text[ finnish ] = "KERTYNYT_KORKO";
Text[ italian ] = "INT.MATURATO.PER";
- Text[ danish ] = "ACCRINT";
+ Text[ danish ] = "PLBRENTE";
Text[ swedish ] = "UPPLRNTA";
Text[ polish ] = "ACCRINT";
Text[ portuguese_brazilian ] = "ACCRINT";
@@ -298,6 +306,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "ACCRINT";
Text[ arabic ] = "ACCRINT";
Text[ catalan ] = "ACCRINT";
+ Text[ thai ] = "ACCRINT";
};
String ANALYSIS_FUNCNAME_Accrintm
@@ -311,9 +320,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "SAMENG.RENTE.V";
Text[ french ] = "INTERET.ACC.MAT";
Text[ spanish ] = "INT.ACUM.V";
- Text[ finnish ] = "ACCRINTM";
+ Text[ finnish ] = "KERTYNYT_KORKO_LOPUSSA";
Text[ italian ] = "INT.MATURATO.SCAD";
- Text[ danish ] = "ACCRINTM";
+ Text[ danish ] = "PLBRENTE.UDLB";
Text[ swedish ] = "UPPLOBLRNTA";
Text[ polish ] = "ACCRINTM";
Text[ portuguese_brazilian ] = "ACCRINTM";
@@ -324,6 +333,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "ACCRINTM";
Text[ arabic ] = "ACCRINTM";
Text[ catalan ] = "ACCRINTM";
+ Text[ thai ] = "ACCRINTM";
};
String ANALYSIS_FUNCNAME_Received
@@ -337,9 +347,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "OPBRENGST";
Text[ french ] = "VALEUR.NOMINALE";
Text[ spanish ] = "CANTIDAD.RECIBIDA";
- Text[ finnish ] = "RECEIVED";
+ Text[ finnish ] = "SAATU_HINTA";
Text[ italian ] = "RICEV.SCAD";
- Text[ danish ] = "RECEIVED";
+ Text[ danish ] = "MODTAGET.VED.UDLB";
Text[ swedish ] = "BELOPP";
Text[ polish ] = "RECEIVED";
Text[ portuguese_brazilian ] = "RECEIVED";
@@ -350,6 +360,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "RECEIVED";
Text[ arabic ] = "RECEIVED";
Text[ catalan ] = "RECEIVED";
+ Text[ thai ] = "RECEIVED";
};
String ANALYSIS_FUNCNAME_Disc
@@ -363,9 +374,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "DISCONTO";
Text[ french ] = "TAUX.ESCOMPTE";
Text[ spanish ] = "TASA.DESC";
- Text[ finnish ] = "DISC";
+ Text[ finnish ] = "DISKONTTOKORKO";
Text[ italian ] = "TASSO.SCONTO";
- Text[ danish ] = "DISC";
+ Text[ danish ] = "DISKONTO";
Text[ swedish ] = "DISK";
Text[ polish ] = "DISC";
Text[ portuguese_brazilian ] = "DISC";
@@ -376,6 +387,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "DISC";
Text[ arabic ] = "DISC";
Text[ catalan ] = "DISC";
+ Text[ thai ] = "ส่วนลด";
};
String ANALYSIS_FUNCNAME_Duration
@@ -389,9 +401,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "DUUR";
Text[ french ] = "DUREE";
Text[ spanish ] = "DURACION";
- Text[ finnish ] = "DURATION";
+ Text[ finnish ] = "KESTO";
Text[ italian ] = "DURATA";
- Text[ danish ] = "DURATION";
+ Text[ danish ] = "VARIGHED";
Text[ swedish ] = "LPTID";
Text[ polish ] = "DURATION";
Text[ portuguese_brazilian ] = "DURATION";
@@ -402,6 +414,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "DURATION";
Text[ arabic ] = "DURATION";
Text[ catalan ] = "DURATION";
+ Text[ thai ] = "DURATION";
};
String ANALYSIS_FUNCNAME_Effect
@@ -415,9 +428,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "EFFECT.RENTE";
Text[ french ] = "TAUX.EFFECTIF";
Text[ spanish ] = "INT.EFECTIVO";
- Text[ finnish ] = "EFFECT";
+ Text[ finnish ] = "KORKO_EFEKT";
Text[ italian ] = "EFFETTIVO";
- Text[ danish ] = "EFFECT";
+ Text[ danish ] = "EFFEKTIV.RENTE";
Text[ swedish ] = "EFFRNTA";
Text[ polish ] = "EFFECT";
Text[ portuguese_brazilian ] = "EFFECT";
@@ -428,6 +441,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "EFFECT";
Text[ arabic ] = "EFFECT";
Text[ catalan ] = "EFFECT";
+ Text[ thai ] = "EFFECT";
};
String ANALYSIS_FUNCNAME_Cumprinc
@@ -441,9 +455,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "CUM.HOOFDSOM";
Text[ french ] = "CUMUL.PRINCPER";
Text[ spanish ] = "PAGO.PRINC.ENTRE";
- Text[ finnish ] = "CUMPRINC";
+ Text[ finnish ] = "MAKSETTU_LYHENNYS";
Text[ italian ] = "CAP.CUM";
- Text[ danish ] = "CUMPRINC";
+ Text[ danish ] = "AKKUM.HOVEDSTOL";
Text[ swedish ] = "KUMPRIS";
Text[ polish ] = "CUMPRINC";
Text[ portuguese_brazilian ] = "CUMPRINC";
@@ -454,6 +468,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "CUMPRINC";
Text[ arabic ] = "CUMPRINC";
Text[ catalan ] = "CUMPRINC";
+ Text[ thai ] = "CUMPRINC";
};
String ANALYSIS_FUNCNAME_Cumipmt
@@ -467,9 +482,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "CUM.RENTE";
Text[ french ] = "CUMUL.INTER";
Text[ spanish ] = "PAGO.INT.ENTRE";
- Text[ finnish ] = "CUMIPMT";
+ Text[ finnish ] = "MAKSETTU_KORKO";
Text[ italian ] = "INT.CUMUL";
- Text[ danish ] = "CUMIPMT";
+ Text[ danish ] = "AKKUM.RENTE";
Text[ swedish ] = "KUMRNTA";
Text[ polish ] = "CUMIPMT";
Text[ portuguese_brazilian ] = "CUMIPMT";
@@ -480,6 +495,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "CUMIPMT";
Text[ arabic ] = "CUMIPMT";
Text[ catalan ] = "CUMIPMT";
+ Text[ thai ] = "CUMIPMT";
};
String ANALYSIS_FUNCNAME_Price
@@ -493,9 +509,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "PRIJS.NOM";
Text[ french ] = "PRIX.TITRE";
Text[ spanish ] = "PRECIO";
- Text[ finnish ] = "PRICE";
+ Text[ finnish ] = "HINTA";
Text[ italian ] = "PREZZO";
- Text[ danish ] = "PRICE";
+ Text[ danish ] = "KURS";
Text[ swedish ] = "PRIS";
Text[ polish ] = "PRICE";
Text[ portuguese_brazilian ] = "PRICE";
@@ -506,6 +522,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "PRICE";
Text[ arabic ] = "PRICE";
Text[ catalan ] = "PRICE";
+ Text[ thai ] = "ราคา";
};
String ANALYSIS_FUNCNAME_Pricedisc
@@ -519,9 +536,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "PRIJS.DISCONTO";
Text[ french ] = "VALEUR.ENCAISSEMENT";
Text[ spanish ] = "PRECIO.DESCUENTO";
- Text[ finnish ] = "PRICEDISC";
+ Text[ finnish ] = "HINTA_DISK";
Text[ italian ] = "PREZZO.SCONT";
- Text[ danish ] = "PRICEDISC";
+ Text[ danish ] = "KURS.DISKONTO";
Text[ swedish ] = "PRISDISK";
Text[ polish ] = "PRICEDISC";
Text[ portuguese_brazilian ] = "PRICEDISC";
@@ -532,6 +549,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "PRICEDISC";
Text[ arabic ] = "PRICEDISC";
Text[ catalan ] = "PRICEDISC";
+ Text[ thai ] = "PRICEDISC";
};
String ANALYSIS_FUNCNAME_Pricemat
@@ -545,9 +563,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "PRIJS.VERVALDAG";
Text[ french ] = "PRIX.TITRE.ECHEANCE";
Text[ spanish ] = "PRECIO.VENCIMIENTO";
- Text[ finnish ] = "PRICEMAT";
+ Text[ finnish ] = "HINTA_LUNASTUS";
Text[ italian ] = "PREZZO.SCAD";
- Text[ danish ] = "PRICEMAT";
+ Text[ danish ] = "KURS.UDLB";
Text[ swedish ] = "PRISFRF";
Text[ polish ] = "PRICEMAT";
Text[ portuguese_brazilian ] = "PRICEMAT";
@@ -558,6 +576,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "PRICEMAT";
Text[ arabic ] = "PRICEMAT";
Text[ catalan ] = "PRICEMAT";
+ Text[ thai ] = "PRICEMAT";
};
String ANALYSIS_FUNCNAME_Mduration
@@ -571,9 +590,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "AANG.DUUR";
Text[ french ] = "DUREE.MODIFIEE";
Text[ spanish ] = "DURACION.MODIF";
- Text[ finnish ] = "MDURATION";
+ Text[ finnish ] = "KESTO_MUUNN";
Text[ italian ] = "DURATA.M";
- Text[ danish ] = "MDURATION";
+ Text[ danish ] = "MVARIGHED";
Text[ swedish ] = "MLPTID";
Text[ polish ] = "MDURATION";
Text[ portuguese_brazilian ] = "MDURATION";
@@ -584,6 +603,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "MDURATION";
Text[ arabic ] = "MDURATION";
Text[ catalan ] = "MDURATION";
+ Text[ thai ] = "MDURATION";
};
String ANALYSIS_FUNCNAME_Nominal
@@ -597,7 +617,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "NOMINALE.RENTE";
Text[ french ] = "TAUX.NOMINAL";
Text[ spanish ] = "TASA.NOMINAL";
- Text[ finnish ] = "NOMINAL";
+ Text[ finnish ] = "KORKO_VUOSI";
Text[ italian ] = "NOMINALE";
Text[ danish ] = "NOMINEL";
Text[ swedish ] = "NOMRNTA";
@@ -610,6 +630,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "NOMINAL";
Text[ arabic ] = "NOMINAL";
Text[ catalan ] = "NOMINAL";
+ Text[ thai ] = "NOMINAL";
};
String ANALYSIS_FUNCNAME_Dollarfr
@@ -618,14 +639,14 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text [ english ] = "DOLLARFR";
Text[ english_us ] = "DOLLARFR";
Text[ portuguese ] = "MOEDAFRAC";
- Text[ russian ] = ".";
+ Text[ russian ] = "";
Text[ greek ] = "DOLLARFR";
Text[ dutch ] = "GULDEN.BR";
Text[ french ] = "PRIX.FRAC";
Text[ spanish ] = "MONEDA.FRAC";
- Text[ finnish ] = "DOLLARFR";
+ Text[ finnish ] = "VALUUTTA_MURTO";
Text[ italian ] = "VALUTA.FRAZ";
- Text[ danish ] = "DOLLARFR";
+ Text[ danish ] = "KR.BRK";
Text[ swedish ] = "BRK";
Text[ polish ] = "DOLLARFR";
Text[ portuguese_brazilian ] = "DOLLARFR";
@@ -636,6 +657,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "DOLLARFR";
Text[ arabic ] = "DOLLARFR";
Text[ catalan ] = "DOLLARFR";
+ Text[ thai ] = "DOLLARFR";
};
String ANALYSIS_FUNCNAME_Dollarde
@@ -644,14 +666,14 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text [ english ] = "DOLLARDE";
Text[ english_us ] = "DOLLARDE";
Text[ portuguese ] = "MOEDADEC";
- Text[ russian ] = ".";
+ Text[ russian ] = "";
Text[ greek ] = "DOLLARDE";
Text[ dutch ] = "GULDEN.DE";
Text[ french ] = "PRIX.DEC";
Text[ spanish ] = "MONEDA.DEC";
- Text[ finnish ] = "DOLLARDE";
+ Text[ finnish ] = "VALUUTTA_DES";
Text[ italian ] = "VALUTA.DEC";
- Text[ danish ] = "DOLLARDE";
+ Text[ danish ] = "KR.DECIMAL";
Text[ swedish ] = "DECTAL";
Text[ polish ] = "DOLLARDE";
Text[ portuguese_brazilian ] = "DOLLARDE";
@@ -662,6 +684,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "DOLLARDE";
Text[ arabic ] = "DOLLARDE";
Text[ catalan ] = "DOLLARDE";
+ Text[ thai ] = "DOLLARDE";
};
String ANALYSIS_FUNCNAME_Yield
@@ -675,9 +698,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "RENDEMENT";
Text[ french ] = "RENDEMENT.TITRE";
Text[ spanish ] = "RENDTO";
- Text[ finnish ] = "YIELD";
+ Text[ finnish ] = "TUOTTO";
Text[ italian ] = "REND";
- Text[ danish ] = "YIELD";
+ Text[ danish ] = "AFKAST";
Text[ swedish ] = "NOMAVK";
Text[ polish ] = "YIELD";
Text[ portuguese_brazilian ] = "YIELD";
@@ -688,6 +711,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "YIELD";
Text[ arabic ] = "YIELD";
Text[ catalan ] = "YIELD";
+ Text[ thai ] = "ผลที่งอกเงย";
};
String ANALYSIS_FUNCNAME_Yielddisc
@@ -701,9 +725,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "REND.DISCONTO";
Text[ french ] = "RENDEMENT.SIMPLE";
Text[ spanish ] = "RENDTO.DESC";
- Text[ finnish ] = "YIELDDISC";
+ Text[ finnish ] = "TUOTTO_DISK";
Text[ italian ] = "REND.TITOLI.SCONT";
- Text[ danish ] = "YIELDDISC";
+ Text[ danish ] = "AFKAST.DISKONTO";
Text[ swedish ] = "NOMAVKDISK";
Text[ polish ] = "YIELDDISC";
Text[ portuguese_brazilian ] = "YIELDDISC";
@@ -714,6 +738,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "YIELDDISC";
Text[ arabic ] = "YIELDDISC";
Text[ catalan ] = "YIELDDISC";
+ Text[ thai ] = "YIELDDISC";
};
String ANALYSIS_FUNCNAME_Yieldmat
@@ -727,9 +752,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "REND.VERVAL";
Text[ french ] = "RENDEMENT.TITRE.ECHEANCE";
Text[ spanish ] = "RENDTO.VENCTO";
- Text[ finnish ] = "YIELDMAT";
+ Text[ finnish ] = "TUOTTO_ERP";
Text[ italian ] = "REND.SCAD";
- Text[ danish ] = "YIELDMAT";
+ Text[ danish ] = "AFKAST.UDLBSDATO";
Text[ swedish ] = "NOMAVKFRF";
Text[ polish ] = "YIELDMAT";
Text[ portuguese_brazilian ] = "YIELDMAT";
@@ -740,6 +765,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "YIELDMAT";
Text[ arabic ] = "YIELDMAT";
Text[ catalan ] = "YIELDMAT";
+ Text[ thai ] = "YIELDMAT";
};
String ANALYSIS_FUNCNAME_Tbilleq
@@ -753,9 +779,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "SCHATKIST.OBL";
Text[ french ] = "TAUX.ESCOMPTE.R";
Text[ spanish ] = "LETRA.DE.TES.EQV.A.BONO";
- Text[ finnish ] = "TBILLEQ";
+ Text[ finnish ] = "TTBILLEQ";
Text[ italian ] = "BOT.EQUIV";
- Text[ danish ] = "TBILLEQ";
+ Text[ danish ] = "TTBILLEQ";
Text[ swedish ] = "SSVXEKV";
Text[ polish ] = "TBILLEQ";
Text[ portuguese_brazilian ] = "TBILLEQ";
@@ -766,6 +792,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "TBILLEQ";
Text[ arabic ] = "TBILLEQ";
Text[ catalan ] = "TBILLEQ";
+ Text[ thai ] = "TBILLEQ";
};
String ANALYSIS_FUNCNAME_Tbillprice
@@ -779,9 +806,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "SCHATK.PRIJS";
Text[ french ] = "PRIX.BON.TRESOR";
Text[ spanish ] = "LETRA.DE.TES.PRECIO";
- Text[ finnish ] = "TBILLPRICE";
+ Text[ finnish ] = "OBLIG_HINTA";
Text[ italian ] = "BOT.PREZZO";
- Text[ danish ] = "TBILLPRICE";
+ Text[ danish ] = "STATSOBLIGATION.KURS";
Text[ swedish ] = "SSVXPRIS";
Text[ polish ] = "TBILLPRICE";
Text[ portuguese_brazilian ] = "TBILLPRICE";
@@ -792,6 +819,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "TBILLPRICE";
Text[ arabic ] = "TBILLPRICE";
Text[ catalan ] = "TBILLPRICE";
+ Text[ thai ] = "TBILLPRICE";
};
String ANALYSIS_FUNCNAME_Tbillyield
@@ -805,9 +833,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "SCHATK.REND";
Text[ french ] = "RENDEMENT.BON.TRESOR";
Text[ spanish ] = "LETRA.DE.TES.RENDTO";
- Text[ finnish ] = "TBILLYIELD";
+ Text[ finnish ] = "OBLIG_TUOTTO";
Text[ italian ] = "BOT.REND";
- Text[ danish ] = "TBILLYIELD";
+ Text[ danish ] = "STATSOBLIGATION.AFKAST";
Text[ swedish ] = "SSVXRNTA";
Text[ polish ] = "TBILLYIELD";
Text[ portuguese_brazilian ] = "TBILLYIELD";
@@ -818,6 +846,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "TBILLYIELD";
Text[ arabic ] = "TBILLYIELD";
Text[ catalan ] = "TBILLYIELD";
+ Text[ thai ] = "TBILLYIELD";
};
String ANALYSIS_FUNCNAME_Oddfprice
@@ -831,9 +860,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "AFW.ET.PRIJS";
Text[ french ] = "PRIX.PCOUPON.IRREG";
Text[ spanish ] = "PRECIO.PER.IRREGULAR.1";
- Text[ finnish ] = "ODDFPRICE";
+ Text[ finnish ] = "PARITON_ENS_NIMELLISARVO";
Text[ italian ] = "PREZZO.PRIMO.IRR";
- Text[ danish ] = "ODDFPRICE";
+ Text[ danish ] = "ULIGE.KURS.PLYDENDE";
Text[ swedish ] = "UDDAFPRIS";
Text[ polish ] = "ODDFPRICE";
Text[ portuguese_brazilian ] = "ODDFPRICE";
@@ -844,6 +873,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "ODDFPRICE";
Text[ arabic ] = "ODDFPRICE";
Text[ catalan ] = "ODDFPRICE";
+ Text[ thai ] = "ODDFPRICE";
};
String ANALYSIS_FUNCNAME_Oddfyield
@@ -857,9 +887,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "AFW.ET.REND";
Text[ french ] = "REND.PCOUPON.IRREG";
Text[ spanish ] = "RENDTO.PER.IRREGULAR.1";
- Text[ finnish ] = "ODDFYIELD";
+ Text[ finnish ] = "PARITON_ENS_TUOTTO";
Text[ italian ] = "REND.PRIMO.IRR";
- Text[ danish ] = "ODDFYIELD";
+ Text[ danish ] = "ULIGE.FRSTE.AFKAST";
Text[ swedish ] = "UDDAFAVKASTNING";
Text[ polish ] = "ODDFYIELD";
Text[ portuguese_brazilian ] = "ODDFYIELD";
@@ -870,6 +900,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "ODDFYIELD";
Text[ arabic ] = "ODDFYIELD";
Text[ catalan ] = "ODDFYIELD";
+ Text[ thai ] = "ODDFYIELD";
};
String ANALYSIS_FUNCNAME_Oddlprice
@@ -883,9 +914,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "AFW.LT.PRIJS";
Text[ french ] = "PRIX.DCOUPON.IRREG";
Text[ spanish ] = "PRECIO.PER.IRREGULAR.2";
- Text[ finnish ] = "ODDLPRICE";
+ Text[ finnish ] = "PARITON_VIIM_NIMELLISARVO";
Text[ italian ] = "PREZZO.ULTIMO.IRR";
- Text[ danish ] = "ODDLPRICE";
+ Text[ danish ] = "ULIGE.SIDSTE.KURS";
Text[ swedish ] = "UDDASPRIS";
Text[ polish ] = "ODDLPRICE";
Text[ portuguese_brazilian ] = "ODDLPRICE";
@@ -896,6 +927,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "ODDLPRICE";
Text[ arabic ] = "ODDLPRICE";
Text[ catalan ] = "ODDLPRICE";
+ Text[ thai ] = "ODDLPRICE";
};
String ANALYSIS_FUNCNAME_Oddlyield
@@ -909,9 +941,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "AFW.LT.REND";
Text[ french ] = "REND.DCOUPON.IRREG";
Text[ spanish ] = "RENDTO.PER.IRREGULAR.2";
- Text[ finnish ] = "ODDLYIELD";
+ Text[ finnish ] = "PARITON_VIIM_TUOTTO";
Text[ italian ] = "REND.ULTIMO.IRR";
- Text[ danish ] = "ODDLYIELD";
+ Text[ danish ] = "ULIGE.SIDSTE.AFKAST";
Text[ swedish ] = "UDDASAVKASTNING";
Text[ polish ] = "ODDLYIELD";
Text[ portuguese_brazilian ] = "ODDLYIELD";
@@ -922,6 +954,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "ODDLYIELD";
Text[ arabic ] = "ODDLYIELD";
Text[ catalan ] = "ODDLYIELD";
+ Text[ thai ] = "ODDLYIELD";
};
String ANALYSIS_FUNCNAME_Xirr
@@ -935,9 +968,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "IR.SCHEMA";
Text[ french ] = "TRI.PAIEMENTS";
Text[ spanish ] = "TIR.NO.PER";
- Text[ finnish ] = "XIRR";
+ Text[ finnish ] = "SISINEN_KORKO_JAKSOTON";
Text[ italian ] = "TIR.X";
- Text[ danish ] = "XIRR";
+ Text[ danish ] = "INTERN.RENTE";
Text[ swedish ] = "XIRR";
Text[ polish ] = "XIRR";
Text[ portuguese_brazilian ] = "XIRR";
@@ -948,6 +981,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "XIRR";
Text[ arabic ] = "XIRR";
Text[ catalan ] = "XIRR";
+ Text[ thai ] = "XIRR";
};
String ANALYSIS_FUNCNAME_Xnpv
@@ -961,9 +995,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "NHW2";
Text[ french ] = "VAN.PAIEMENTS";
Text[ spanish ] = "VNA.NO.PER";
- Text[ finnish ] = "XNPV";
+ Text[ finnish ] = "NNA_JAKSOTON";
Text[ italian ] = "VAN.X";
- Text[ danish ] = "XNPV";
+ Text[ danish ] = "NETTO.NUTIDSVRDI";
Text[ swedish ] = "XNUVRDE";
Text[ polish ] = "XNPV";
Text[ portuguese_brazilian ] = "XNPV";
@@ -974,6 +1008,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "XNPV";
Text[ arabic ] = "XNPV";
Text[ catalan ] = "XNPV";
+ Text[ thai ] = "XNPV";
};
String ANALYSIS_FUNCNAME_Intrate
@@ -987,9 +1022,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "RENTEPERCENTAGE";
Text[ french ] = "TAUX.INTERET";
Text[ spanish ] = "TASA.INT";
- Text[ finnish ] = "INTRATE";
+ Text[ finnish ] = "KORKO_ARVOPAPERI";
Text[ italian ] = "TASSO.INT";
- Text[ danish ] = "INTRATE";
+ Text[ danish ] = "RENTEFOD";
Text[ swedish ] = "RSRNTA";
Text[ polish ] = "INTRATE";
Text[ portuguese_brazilian ] = "INTRATE";
@@ -1000,6 +1035,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "INTRATE";
Text[ arabic ] = "INTRATE";
Text[ catalan ] = "INTRATE";
+ Text[ thai ] = "INTRATE";
};
String ANALYSIS_FUNCNAME_Coupncd
@@ -1013,9 +1049,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "COUP.DATUM.NB";
Text[ french ] = "DATE.COUPON.SUIV";
Text[ spanish ] = "CUPON.FECHA.L2";
- Text[ finnish ] = "COUPNCD";
+ Text[ finnish ] = "KORKOPIV_SEURAAVA";
Text[ italian ] = "DATA.CED.SUCC";
- Text[ danish ] = "COUPNCD";
+ Text[ danish ] = "KUPONDAGE.ANK";
Text[ swedish ] = "KUPNKD";
Text[ polish ] = "COUPNCD";
Text[ portuguese_brazilian ] = "COUPNCD";
@@ -1026,6 +1062,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "COUPNCD";
Text[ arabic ] = "COUPNCD";
Text[ catalan ] = "COUPNCD";
+ Text[ thai ] = "COUPNCD";
};
String ANALYSIS_FUNCNAME_Coupdays
@@ -1039,9 +1076,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "COUP.DAGEN";
Text[ french ] = "NB.JOURS.COUPONS";
Text[ spanish ] = "CUPON.DIAS";
- Text[ finnish ] = "COUPDAYS";
+ Text[ finnish ] = "KORKOPIVT";
Text[ italian ] = "GIORNI.CED";
- Text[ danish ] = "COUPDAYS";
+ Text[ danish ] = "KUPONDAGE.A";
Text[ swedish ] = "KUPDAGB";
Text[ polish ] = "COUPDAYS";
Text[ portuguese_brazilian ] = "COUPDAYS";
@@ -1052,6 +1089,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "COUPDAYS";
Text[ arabic ] = "COUPDAYS";
Text[ catalan ] = "COUPDAYS";
+ Text[ thai ] = "COUPDAYS";
};
String ANALYSIS_FUNCNAME_Coupdaysnc
@@ -1065,9 +1103,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "COUP.DAGEN.VV";
Text[ french ] = "NB.JOURS.COUPON.SUIV";
Text[ spanish ] = "CUPON.DIAS.L2";
- Text[ finnish ] = "COUPDAYSNC";
+ Text[ finnish ] = "KORKOPIVT_SEURAAVA";
Text[ italian ] = "GIORNI.CED.NUOVA";
- Text[ danish ] = "COUPDAYSNC";
+ Text[ danish ] = "KUPONDAGE.ANK";
Text[ swedish ] = "KUPDAGNK";
Text[ polish ] = "COUPDAYSNC";
Text[ portuguese_brazilian ] = "COUPDAYSNC";
@@ -1078,6 +1116,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "COUPDAYSNC";
Text[ arabic ] = "COUPDAYSNC";
Text[ catalan ] = "COUPDAYSNC";
+ Text[ thai ] = "COUPDAYSNC";
};
String ANALYSIS_FUNCNAME_Coupdaybs
@@ -1091,9 +1130,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "COUP.DAGEN.BB";
Text[ french ] = "NB.JOURS.COUPON.PREC";
Text[ spanish ] = "CUPON.DIAS.L1";
- Text[ finnish ] = "COUPDAYBS";
+ Text[ finnish ] = "KORKOPIVT_ALUSTA";
Text[ italian ] = "GIORNI.CED.INIZ.LIQ";
- Text[ danish ] = "COUPDAYBS";
+ Text[ danish ] = "KUPONDAGE.SA";
Text[ swedish ] = "KUPDAGBB";
Text[ polish ] = "COUPDAYBS";
Text[ portuguese_brazilian ] = "COUPDAYBS";
@@ -1104,6 +1143,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "COUPDAYBS";
Text[ arabic ] = "COUPDAYBS";
Text[ catalan ] = "COUPDAYBS";
+ Text[ thai ] = "COUPDAYBS";
};
String ANALYSIS_FUNCNAME_Couppcd
@@ -1117,9 +1157,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "COUP.DATUM.VB";
Text[ french ] = "DATE.COUPON.PREC";
Text[ spanish ] = "CUPON.FECHA.L1";
- Text[ finnish ] = "COUPPCD";
+ Text[ finnish ] = "KORKOPIV_EDELLINEN";
Text[ italian ] = "DATA.CED.PREC";
- Text[ danish ] = "COUPPCD";
+ Text[ danish ] = "KUPONDAG.FORRIGE";
Text[ swedish ] = "KUPFKD";
Text[ polish ] = "COUPPCD";
Text[ portuguese_brazilian ] = "COUPPCD";
@@ -1130,6 +1170,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "COUPPCD";
Text[ arabic ] = "COUPPCD";
Text[ catalan ] = "COUPPCD";
+ Text[ thai ] = "COUPPCD";
};
String ANALYSIS_FUNCNAME_Coupnum
@@ -1143,9 +1184,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "COUP.AANTAL";
Text[ french ] = "NB.COUPONS";
Text[ spanish ] = "CUPON.NUM";
- Text[ finnish ] = "COUPNUM";
+ Text[ finnish ] = "KORKOPIV_JAKSOT";
Text[ italian ] = "NUM.CED";
- Text[ danish ] = "COUPNUM";
+ Text[ danish ] = "KUPONBETALINGER";
Text[ swedish ] = "KUPANT";
Text[ polish ] = "COUPNUM";
Text[ portuguese_brazilian ] = "COUPNUM";
@@ -1156,6 +1197,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "COUPNUM";
Text[ arabic ] = "COUPNUM";
Text[ catalan ] = "COUPNUM";
+ Text[ thai ] = "COUPNUM";
};
String ANALYSIS_FUNCNAME_Fvschedule
@@ -1169,9 +1211,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "TOEK.WAARDE2";
Text[ french ] = "VC.PAIEMENTS";
Text[ spanish ] = "VF.PLAN";
- Text[ finnish ] = "FVSCHEDULE";
+ Text[ finnish ] = "TULEVA_ARVO_ERIKORKO";
Text[ italian ] = "VAL.FUT.CAPITALE";
- Text[ danish ] = "FVSCHEDULE";
+ Text[ danish ] = "FVTABEL";
Text[ swedish ] = "FRRNTNING";
Text[ polish ] = "FVSCHEDULE";
Text[ portuguese_brazilian ] = "FVSCHEDULE";
@@ -1182,6 +1224,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "FVSCHEDULE";
Text[ arabic ] = "FVSCHEDULE";
Text[ catalan ] = "FVSCHEDULE";
+ Text[ thai ] = "FVSCHEDULE";
};
String ANALYSIS_FUNCNAME_Iseven
@@ -1195,9 +1238,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "IS.EVEN";
Text[ french ] = "EST.PAIR";
Text[ spanish ] = "ESPAR";
- Text[ finnish ] = "ISEVEN";
- Text[ italian ] = "VAL.PARI";
- Text[ danish ] = "ISEVEN";
+ Text[ finnish ] = "ONPARILLINEN";
+ Text[ italian ] = "VAL.PARI_ADD";
+ Text[ danish ] = "ER.LIGE";
Text[ swedish ] = "RJMN";
Text[ polish ] = "ISEVEN";
Text[ portuguese_brazilian ] = "ISEVEN";
@@ -1208,6 +1251,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "ISEVEN";
Text[ arabic ] = "ISEVEN";
Text[ catalan ] = "ISEVEN";
+ Text[ thai ] = "ISEVEN";
};
String ANALYSIS_FUNCNAME_Isodd
@@ -1221,9 +1265,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "IS.ONEVEN";
Text[ french ] = "EST.IMPAIR";
Text[ spanish ] = "ES.IMPAR";
- Text[ finnish ] = "ISODD";
- Text[ italian ] = "VAL.DISPARI";
- Text[ danish ] = "ISODD";
+ Text[ finnish ] = "ONPARITON";
+ Text[ italian ] = "VAL.DISPARI_ADD";
+ Text[ danish ] = "ER.ULIGE";
Text[ swedish ] = "RUDDA";
Text[ polish ] = "ISODD";
Text[ portuguese_brazilian ] = "ISODD";
@@ -1234,6 +1278,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "ISODD";
Text[ arabic ] = "ISODD";
Text[ catalan ] = "ISODD";
+ Text[ thai ] = "ISODD";
};
String ANALYSIS_FUNCNAME_Gcd
@@ -1247,9 +1292,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "GGD";
Text[ french ] = "PGCD";
Text[ spanish ] = "M.C.D";
- Text[ finnish ] = "GCD";
+ Text[ finnish ] = "SUURIN_YHT_TEKIJ";
Text[ italian ] = "MCD";
- Text[ danish ] = "GCD";
+ Text[ danish ] = "STRSTE.FLLES.DIVISOR";
Text[ swedish ] = "SGD";
Text[ polish ] = "GCD";
Text[ portuguese_brazilian ] = "GCD";
@@ -1260,6 +1305,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "GCD";
Text[ arabic ] = "GCD";
Text[ catalan ] = "GCD";
+ Text[ thai ] = "GCD";
};
String ANALYSIS_FUNCNAME_Lcm
@@ -1273,9 +1319,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "KGV";
Text[ french ] = "PPCM";
Text[ spanish ] = "M.C.M";
- Text[ finnish ] = "LCM";
+ Text[ finnish ] = "PIENIN_YHT_JAETTAVA";
Text[ italian ] = "MCM";
- Text[ danish ] = "LCM";
+ Text[ danish ] = "MINDSTE.FLLES.MULTIPLUM";
Text[ swedish ] = "MGM";
Text[ polish ] = "LCM";
Text[ portuguese_brazilian ] = "LCM";
@@ -1286,6 +1332,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "LCM";
Text[ arabic ] = "LCM";
Text[ catalan ] = "LCM";
+ Text[ thai ] = "LCM";
};
String ANALYSIS_FUNCNAME_Multinomial
@@ -1299,7 +1346,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "MULTINOMIAAL";
Text[ french ] = "MULTINOMIALE";
Text[ spanish ] = "MULTINOMIAL";
- Text[ finnish ] = "MULTINOMIAL";
+ Text[ finnish ] = "MULTINOMI";
Text[ italian ] = "MULTINOMINALE";
Text[ danish ] = "MULTINOMIAL";
Text[ swedish ] = "MULTINOMIAL";
@@ -1312,6 +1359,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "MULTINOMIAL";
Text[ arabic ] = "MULTINOMIAL";
Text[ catalan ] = "MULTINOMIAL";
+ Text[ thai ] = "MULTINOMIAL";
};
String ANALYSIS_FUNCNAME_Seriessum
@@ -1320,14 +1368,14 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text [ english ] = "SERIESSUM";
Text[ english_us ] = "SERIESSUM";
Text[ portuguese ] = "SOMASRIE";
- Text[ russian ] = ".";
+ Text[ russian ] = "";
Text[ greek ] = "SERIESSUM";
Text[ dutch ] = "SOM.MACHTREEKS";
Text[ french ] = "SOMME.SERIES";
Text[ spanish ] = "SUMA.SERIES";
- Text[ finnish ] = "SERIESSUM";
+ Text[ finnish ] = "SARJA_SUMMA";
Text[ italian ] = "SOMMA.SERIE";
- Text[ danish ] = "SERIESSUM";
+ Text[ danish ] = "SERIESUM";
Text[ swedish ] = "SERIESUMMA";
Text[ polish ] = "SERIESSUM";
Text[ portuguese_brazilian ] = "SERIESSUM";
@@ -1338,6 +1386,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "SERIESSUM";
Text[ arabic ] = "SERIESSUM";
Text[ catalan ] = "SERIESSUM";
+ Text[ thai ] = "SERIESSUM";
};
String ANALYSIS_FUNCNAME_Quotient
@@ -1351,9 +1400,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "QUOTIENT";
Text[ french ] = "QUOTIENT";
Text[ spanish ] = "COCIENTE";
- Text[ finnish ] = "QUOTIENT";
+ Text[ finnish ] = "OSAMR";
Text[ italian ] = "QUOZIENTE";
- Text[ danish ] = "QUOTIENT";
+ Text[ danish ] = "KVOTIENT";
Text[ swedish ] = "KVOT";
Text[ polish ] = "QUOTIENT";
Text[ portuguese_brazilian ] = "QUOTIENT";
@@ -1364,6 +1413,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "QUOTIENT";
Text[ arabic ] = "QUOTIENT";
Text[ catalan ] = "QUOTIENT";
+ Text[ thai ] = "QUOTIENT";
};
String ANALYSIS_FUNCNAME_Mround
@@ -1377,9 +1427,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "AFRONDEN.N.VEELVOUD";
Text[ french ] = "ARRONDI.AU.MULTIPLE";
Text[ spanish ] = "REDOND.MULT";
- Text[ finnish ] = "MROUND";
+ Text[ finnish ] = "PYRIST_KERR";
Text[ italian ] = "ARROTONDA.MULTIPLO";
- Text[ danish ] = "MROUND";
+ Text[ danish ] = "MAFRUND";
Text[ swedish ] = "MAVRUNDA";
Text[ polish ] = "MROUND";
Text[ portuguese_brazilian ] = "MROUND";
@@ -1390,6 +1440,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "MROUND";
Text[ arabic ] = "MROUND";
Text[ catalan ] = "MROUND";
+ Text[ thai ] = "MROUND";
};
String ANALYSIS_FUNCNAME_Sqrtpi
@@ -1403,9 +1454,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "WORTEL.PI";
Text[ french ] = "RACINE.PI";
Text[ spanish ] = "RAIZ2PI";
- Text[ finnish ] = "SQRTPI";
+ Text[ finnish ] = "NELIJUURI_PII";
Text[ italian ] = "RADQ.PI.GRECO";
- Text[ danish ] = "SQRTPI";
+ Text[ danish ] = "KVRODPI";
Text[ swedish ] = "ROTPI";
Text[ polish ] = "SQRTPI";
Text[ portuguese_brazilian ] = "SQRTPI";
@@ -1416,6 +1467,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "SQRTPI";
Text[ arabic ] = "SQRTPI";
Text[ catalan ] = "SQRTPI";
+ Text[ thai ] = "SQRTPI";
};
String ANALYSIS_FUNCNAME_Randbetween
@@ -1429,9 +1481,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "ASELECTTUSSEN";
Text[ french ] = "ALEA.ENTRE.BORNES";
Text[ spanish ] = "ALEATORIO.ENTRE";
- Text[ finnish ] = "RANDBETWEEN";
+ Text[ finnish ] = "SATUNNAISLUKU_VLILT";
Text[ italian ] = "CASUALE.TRA";
- Text[ danish ] = "RANDBETWEEN";
+ Text[ danish ] = "SLUMPMELLEM";
Text[ swedish ] = "SLUMP.MELLAN";
Text[ polish ] = "RANDBETWEEN";
Text[ portuguese_brazilian ] = "RANDBETWEEN";
@@ -1442,6 +1494,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "RANDBETWEEN";
Text[ arabic ] = "RANDBETWEEN";
Text[ catalan ] = "RANDBETWEEN";
+ Text[ thai ] = "RANDBETWEEN";
};
String ANALYSIS_FUNCNAME_Besseli
@@ -1450,7 +1503,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text [ english ] = "BESSELI";
Text[ english_us ] = "BESSELI";
Text[ portuguese ] = "BESSELI";
- Text[ russian ] = ".I";
+ Text[ russian ] = "I";
Text[ greek ] = "BESSELI";
Text[ dutch ] = "BESSEL.I";
Text[ french ] = "BESSELI";
@@ -1468,6 +1521,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "BESSELI";
Text[ arabic ] = "BESSELI";
Text[ catalan ] = "BESSELI";
+ Text[ thai ] = "BESSELI";
};
String ANALYSIS_FUNCNAME_Besselj
@@ -1476,7 +1530,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text [ english ] = "BESSELJ";
Text[ english_us ] = "BESSELJ";
Text[ portuguese ] = "BESSELJ";
- Text[ russian ] = ".J";
+ Text[ russian ] = "J";
Text[ greek ] = "BESSELJ";
Text[ dutch ] = "BESSEL.J";
Text[ french ] = "BESSELJ";
@@ -1494,6 +1548,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "BESSELJ";
Text[ arabic ] = "BESSELJ";
Text[ catalan ] = "BESSELJ";
+ Text[ thai ] = "BESSELJ";
};
String ANALYSIS_FUNCNAME_Besselk
@@ -1502,7 +1557,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text [ english ] = "BESSELK";
Text[ english_us ] = "BESSELK";
Text[ portuguese ] = "BESSELK";
- Text[ russian ] = ".K";
+ Text[ russian ] = "K";
Text[ greek ] = "BESSELK";
Text[ dutch ] = "BESSEL.K";
Text[ french ] = "BESSELK";
@@ -1520,6 +1575,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "BESSELK";
Text[ arabic ] = "BESSELK";
Text[ catalan ] = "BESSELK";
+ Text[ thai ] = "BESSELK";
};
String ANALYSIS_FUNCNAME_Bessely
@@ -1528,7 +1584,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text [ english ] = "BESSELY";
Text[ english_us ] = "BESSELY";
Text[ portuguese ] = "BESSELY";
- Text[ russian ] = ".Y";
+ Text[ russian ] = "Y";
Text[ greek ] = "BESSELY";
Text[ dutch ] = "BESSEL.Y";
Text[ french ] = "BESSELY";
@@ -1546,6 +1602,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "BESSELY";
Text[ arabic ] = "BESSELY";
Text[ catalan ] = "BESSELY";
+ Text[ thai ] = "BESSELY";
};
String ANALYSIS_FUNCNAME_Bin2Dec
@@ -1554,14 +1611,14 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text [ english ] = "BIN2DEC";
Text[ english_us ] = "BIN2DEC";
Text[ portuguese ] = "BINADEC";
- Text[ russian ] = "..";
+ Text[ russian ] = "";
Text[ greek ] = "BIN2DEC";
Text[ dutch ] = "BIN.N.DEC";
Text[ french ] = "BINDEC";
Text[ spanish ] = "BIN.A.DEC";
- Text[ finnish ] = "BIN2DEC";
+ Text[ finnish ] = "BINDES";
Text[ italian ] = "BINARIO.DECIMALE";
- Text[ danish ] = "BIN2DEC";
+ Text[ danish ] = "BIN.TIL.DEC";
Text[ swedish ] = "BIN.TILL.DEC";
Text[ polish ] = "BIN2DEC";
Text[ portuguese_brazilian ] = "BIN2DEC";
@@ -1572,6 +1629,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "BIN2DEC";
Text[ arabic ] = "BIN2DEC";
Text[ catalan ] = "BIN2DEC";
+ Text[ thai ] = "BIN2DEC";
};
String ANALYSIS_FUNCNAME_Bin2Hex
@@ -1580,14 +1638,14 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text [ english ] = "BIN2HEX";
Text[ english_us ] = "BIN2HEX";
Text[ portuguese ] = "BINAHEX";
- Text[ russian ] = "..";
+ Text[ russian ] = "";
Text[ greek ] = "BIN2HEX";
Text[ dutch ] = "BIN.N.HEX";
Text[ french ] = "BINHEX";
Text[ spanish ] = "BIN.A.HEX";
- Text[ finnish ] = "BIN2HEX";
+ Text[ finnish ] = "BINHEKSA";
Text[ italian ] = "BINARIO.HEX";
- Text[ danish ] = "BIN2HEX";
+ Text[ danish ] = "BIN.TIL.HEX";
Text[ swedish ] = "BIN.TIll.HEX";
Text[ polish ] = "BIN2HEX";
Text[ portuguese_brazilian ] = "BIN2HEX";
@@ -1598,6 +1656,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "BIN2HEX";
Text[ arabic ] = "BIN2HEX";
Text[ catalan ] = "BIN2HEX";
+ Text[ thai ] = "BIN2HEX";
};
String ANALYSIS_FUNCNAME_Bin2Oct
@@ -1606,14 +1665,14 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text [ english ] = "BIN2OCT";
Text[ english_us ] = "BIN2OCT";
Text[ portuguese ] = "BINAOCT";
- Text[ russian ] = "..";
+ Text[ russian ] = "";
Text[ greek ] = "BIN2OCT";
Text[ dutch ] = "BIN.N.OCT";
Text[ french ] = "BINOCT";
Text[ spanish ] = "BIN.A.OCT";
- Text[ finnish ] = "BIN2OCT";
+ Text[ finnish ] = "BINOKT";
Text[ italian ] = "BINARIO.OCT";
- Text[ danish ] = "BIN2OCT";
+ Text[ danish ] = "BIN.TIL.OKT";
Text[ swedish ] = "BIN.TILL.OKT";
Text[ polish ] = "BIN2OCT";
Text[ portuguese_brazilian ] = "BIN2OCT";
@@ -1624,6 +1683,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "BIN2OCT";
Text[ arabic ] = "BIN2OCT";
Text[ catalan ] = "BIN2OCT";
+ Text[ thai ] = "BIN2OCT";
};
String ANALYSIS_FUNCNAME_Delta
@@ -1637,7 +1697,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "DELTA";
Text[ french ] = "DELTA";
Text[ spanish ] = "DELTA";
- Text[ finnish ] = "DELTA";
+ Text[ finnish ] = "SAMA_ARVO";
Text[ italian ] = "DELTA";
Text[ danish ] = "DELTA";
Text[ swedish ] = "DELTA";
@@ -1650,6 +1710,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "DELTA";
Text[ arabic ] = "DELTA";
Text[ catalan ] = "DELTA";
+ Text[ thai ] = "เดลต้า";
};
String ANALYSIS_FUNCNAME_Dec2Bin
@@ -1658,14 +1719,14 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text [ english ] = "DEC2BIN";
Text[ english_us ] = "DEC2BIN";
Text[ portuguese ] = "DECABIN";
- Text[ russian ] = "..";
+ Text[ russian ] = "";
Text[ greek ] = "DEC2BIN";
Text[ dutch ] = "DEC.N.BIN";
Text[ french ] = "DECBIN";
Text[ spanish ] = "DEC.A.BIN";
- Text[ finnish ] = "DEC2BIN";
+ Text[ finnish ] = "DESBIN";
Text[ italian ] = "DECIMALE.BINARIO";
- Text[ danish ] = "DEC2BIN";
+ Text[ danish ] = "DEC.TIL.BIN";
Text[ swedish ] = "DEC.TILL.BIN";
Text[ polish ] = "DEC2BIN";
Text[ portuguese_brazilian ] = "DEC2BIN";
@@ -1676,6 +1737,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "DEC2BIN";
Text[ arabic ] = "DEC2BIN";
Text[ catalan ] = "DEC2BIN";
+ Text[ thai ] = "DEC2BIN";
};
String ANALYSIS_FUNCNAME_Dec2Hex
@@ -1684,14 +1746,14 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text [ english ] = "DEC2HEX";
Text[ english_us ] = "DEC2HEX";
Text[ portuguese ] = "DECAHEX";
- Text[ russian ] = "..";
+ Text[ russian ] = "";
Text[ greek ] = "DEC2HEX";
Text[ dutch ] = "DEC.N.HEX";
Text[ french ] = "DECHEX";
Text[ spanish ] = "DEC.A.HEX";
- Text[ finnish ] = "DEC2HEX";
+ Text[ finnish ] = "DESHEKSA";
Text[ italian ] = "DECIMALE.HEX";
- Text[ danish ] = "DEC2HEX";
+ Text[ danish ] = "DEC.TIL.HEX";
Text[ swedish ] = "DEC.TILL.HEX";
Text[ polish ] = "DEC2HEX";
Text[ portuguese_brazilian ] = "DEC2HEX";
@@ -1702,6 +1764,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "DEC2HEX";
Text[ arabic ] = "DEC2HEX";
Text[ catalan ] = "DEC2HEX";
+ Text[ thai ] = "DEC2HEX";
};
String ANALYSIS_FUNCNAME_Dec2Oct
@@ -1710,14 +1773,14 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text [ english ] = "DEC2OCT";
Text[ english_us ] = "DEC2OCT";
Text[ portuguese ] = "DECAOCT";
- Text[ russian ] = "..";
+ Text[ russian ] = "";
Text[ greek ] = "DEC2OCT";
Text[ dutch ] = "DEC.N.OCT";
Text[ french ] = "DECOCT";
Text[ spanish ] = "DEC.A.OCT";
- Text[ finnish ] = "DEC2OCT";
+ Text[ finnish ] = "DESOKT";
Text[ italian ] = "DECIMALE.OCT";
- Text[ danish ] = "DEC2OCT";
+ Text[ danish ] = "DEC.TIL.OKT";
Text[ swedish ] = "DEC.TILL.OKT";
Text[ polish ] = "DEC2OCT";
Text[ portuguese_brazilian ] = "DEC2OCT";
@@ -1728,6 +1791,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "DEC2OCT";
Text[ arabic ] = "DEC2OCT";
Text[ catalan ] = "DEC2OCT";
+ Text[ thai ] = "DEC2OCT";
};
String ANALYSIS_FUNCNAME_Erf
@@ -1741,9 +1805,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "FOUTFUNCTIE";
Text[ french ] = "ERF";
Text[ spanish ] = "FUN.ERROR";
- Text[ finnish ] = "ERF";
+ Text[ finnish ] = "VIRHEFUNKTIO";
Text[ italian ] = "FUNZ.ERRORE";
- Text[ danish ] = "ERF";
+ Text[ danish ] = "FEJLFUNK";
Text[ swedish ] = "FELF";
Text[ polish ] = "ERF";
Text[ portuguese_brazilian ] = "ERF";
@@ -1754,6 +1818,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "ERF";
Text[ arabic ] = "ERF";
Text[ catalan ] = "ERF";
+ Text[ thai ] = "ERF";
};
String ANALYSIS_FUNCNAME_Erfc
@@ -1767,9 +1832,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "FOUT.COMPLEMENT";
Text[ french ] = "ERFC";
Text[ spanish ] = "FUN.ERROR.COMPL";
- Text[ finnish ] = "ERFC";
+ Text[ finnish ] = "VIRHEFUNKTIO_KOMPLEMENTTI";
Text[ italian ] = "FUNZ.ERRORE.COMP";
- Text[ danish ] = "ERFC";
+ Text[ danish ] = "FEJLFUNK.KOMP";
Text[ swedish ] = "FELFK";
Text[ polish ] = "ERFC";
Text[ portuguese_brazilian ] = "ERFC";
@@ -1780,6 +1845,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "ERFC";
Text[ arabic ] = "ERFC";
Text[ catalan ] = "ERFC";
+ Text[ thai ] = "ERFC";
};
String ANALYSIS_FUNCNAME_Gestep
@@ -1793,9 +1859,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "GROTER.DAN";
Text[ french ] = "SUP.SEUIL";
Text[ spanish ] = "MAYOR.O.IGUAL";
- Text[ finnish ] = "GESTEP";
+ Text[ finnish ] = "RAJA";
Text[ italian ] = "SOGLIA";
- Text[ danish ] = "GESTEP";
+ Text[ danish ] = "GETRIN";
Text[ swedish ] = "SLSTEG";
Text[ polish ] = "GESTEP";
Text[ portuguese_brazilian ] = "GESTEP";
@@ -1806,6 +1872,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "GESTEP";
Text[ arabic ] = "GESTEP";
Text[ catalan ] = "GESTEP";
+ Text[ thai ] = "GESTEP";
};
String ANALYSIS_FUNCNAME_Hex2Bin
@@ -1814,14 +1881,14 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text [ english ] = "HEX2BIN";
Text[ english_us ] = "HEX2BIN";
Text[ portuguese ] = "HEXABIN";
- Text[ russian ] = "..";
+ Text[ russian ] = "";
Text[ greek ] = "HEX2BIN";
Text[ dutch ] = "HEX.N.BIN";
Text[ french ] = "HEXBIN";
Text[ spanish ] = "HEX.A.BIN";
- Text[ finnish ] = "HEX2BIN";
+ Text[ finnish ] = "HEKSABIN";
Text[ italian ] = "HEX.BINARIO";
- Text[ danish ] = "HEX2BIN";
+ Text[ danish ] = "HEX.TIL.BIN";
Text[ swedish ] = "HEX.TILL.BIN";
Text[ polish ] = "HEX2BIN";
Text[ portuguese_brazilian ] = "HEX2BIN";
@@ -1832,6 +1899,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "HEX2BIN";
Text[ arabic ] = "HEX2BIN";
Text[ catalan ] = "HEX2BIN";
+ Text[ thai ] = "HEX2BIN";
};
String ANALYSIS_FUNCNAME_Hex2Dec
@@ -1840,14 +1908,14 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text [ english ] = "HEX2DEC";
Text[ english_us ] = "HEX2DEC";
Text[ portuguese ] = "HEXADEC";
- Text[ russian ] = "..";
+ Text[ russian ] = "";
Text[ greek ] = "HEX2DEC";
Text[ dutch ] = "HEX.N.DEC";
Text[ french ] = "HEXDEC";
Text[ spanish ] = "HEX.A.DEC";
- Text[ finnish ] = "HEX2DEC";
+ Text[ finnish ] = "HEKSADES";
Text[ italian ] = "HEX.DECIMALE";
- Text[ danish ] = "HEX2DEC";
+ Text[ danish ] = "HEX.TIL.DEC";
Text[ swedish ] = "HEX.TILL.DEC";
Text[ polish ] = "HEX2DEC";
Text[ portuguese_brazilian ] = "HEX2DEC";
@@ -1858,6 +1926,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "HEX2DEC";
Text[ arabic ] = "HEX2DEC";
Text[ catalan ] = "HEX2DEC";
+ Text[ thai ] = "HEX2DEC";
};
String ANALYSIS_FUNCNAME_Hex2Oct
@@ -1866,14 +1935,14 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text [ english ] = "HEX2OCT";
Text[ english_us ] = "HEX2OCT";
Text[ portuguese ] = "HEXAOCT";
- Text[ russian ] = "..";
+ Text[ russian ] = "";
Text[ greek ] = "HEX2OCT";
Text[ dutch ] = "HEX.N.OCT";
Text[ french ] = "HEXOCT";
Text[ spanish ] = "HEX.A.OCT";
- Text[ finnish ] = "HEX2OCT";
+ Text[ finnish ] = "HEKSAOKT";
Text[ italian ] = "HEX.OCT";
- Text[ danish ] = "HEX2OCT";
+ Text[ danish ] = "HEX.TIL.OKT";
Text[ swedish ] = "HEX.TILL.OKT";
Text[ polish ] = "HEX2OCT";
Text[ portuguese_brazilian ] = "HEX2OCT";
@@ -1884,6 +1953,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "HEX2OCT";
Text[ arabic ] = "HEX2OCT";
Text[ catalan ] = "HEX2OCT";
+ Text[ thai ] = "HEX2OCT";
};
String ANALYSIS_FUNCNAME_Imabs
@@ -1892,14 +1962,14 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text [ english ] = "IMABS";
Text[ english_us ] = "IMABS";
Text[ portuguese ] = "IMABS";
- Text[ russian ] = ".ABS";
+ Text[ russian ] = "ABS";
Text[ greek ] = "IMABS";
Text[ dutch ] = "C.ABS";
Text[ french ] = "COMPLEXE.MODULE";
Text[ spanish ] = "IM.ABS";
- Text[ finnish ] = "IMABS";
+ Text[ finnish ] = "KOMPLEKSI_ABS";
Text[ italian ] = "COMP.MODULO";
- Text[ danish ] = "IMABS";
+ Text[ danish ] = "IMAGABS";
Text[ swedish ] = "IMABS";
Text[ polish ] = "IMABS";
Text[ portuguese_brazilian ] = "IMABS";
@@ -1910,6 +1980,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "IMABS";
Text[ arabic ] = "IMABS";
Text[ catalan ] = "IMABS";
+ Text[ thai ] = "IMABS";
};
String ANALYSIS_FUNCNAME_Imaginary
@@ -1918,14 +1989,14 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text [ english ] = "IMAGINARY";
Text[ english_us ] = "IMAGINARY";
Text[ portuguese ] = "IMAGINRIO";
- Text[ russian ] = ".";
+ Text[ russian ] = "";
Text[ greek ] = "IMAGINARY";
Text[ dutch ] = "C.IM.DEEL";
Text[ french ] = "COMPLEXE.IMAGINAIRE";
Text[ spanish ] = "IMAGINARIO";
- Text[ finnish ] = "IMAGINARY";
+ Text[ finnish ] = "KOMPLEKSI_IMAG";
Text[ italian ] = "COMP.IMMAGINARIO";
- Text[ danish ] = "IMAGINARY";
+ Text[ danish ] = "IMAGINRDEL";
Text[ swedish ] = "IMAGINR";
Text[ polish ] = "IMAGINARY";
Text[ portuguese_brazilian ] = "IMAGINARY";
@@ -1936,6 +2007,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "IMAGINARY";
Text[ arabic ] = "IMAGINARY";
Text[ catalan ] = "IMAGINARY";
+ Text[ thai ] = "IMAGINARY";
};
String ANALYSIS_FUNCNAME_Impower
@@ -1944,14 +2016,14 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text [ english ] = "IMPOWER";
Text[ english_us ] = "IMPOWER";
Text[ portuguese ] = "IMPOT";
- Text[ russian ] = ".";
+ Text[ russian ] = "";
Text[ greek ] = "IMPOWER";
Text[ dutch ] = "C.MACHT";
Text[ french ] = "COMPLEXE.PUISSANCE";
Text[ spanish ] = "IM.POT";
- Text[ finnish ] = "IMPOWER";
+ Text[ finnish ] = "KOMPLEKSI_POT";
Text[ italian ] = "COMP.POTENZA";
- Text[ danish ] = "IMPOWER";
+ Text[ danish ] = "IMAGPOTENS";
Text[ swedish ] = "IMUPPHJT";
Text[ polish ] = "IMPOWER";
Text[ portuguese_brazilian ] = "IMPOWER";
@@ -1962,6 +2034,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "IMPOWER";
Text[ arabic ] = "IMPOWER";
Text[ catalan ] = "IMPOWER";
+ Text[ thai ] = "IMPOWER";
};
String ANALYSIS_FUNCNAME_Imargument
@@ -1970,14 +2043,14 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text [ english ] = "IMARGUMENT";
Text[ english_us ] = "IMARGUMENT";
Text[ portuguese ] = "IMARG";
- Text[ russian ] = ".";
+ Text[ russian ] = "";
Text[ greek ] = "IMARGUMENT";
Text[ dutch ] = "C.ARGUMENT";
Text[ french ] = "COMPLEXE.ARGUMENT";
Text[ spanish ] = "IM.ANGULO";
- Text[ finnish ] = "IMARGUMENT";
+ Text[ finnish ] = "KOMPLEKSI_ARG";
Text[ italian ] = "COMP.ARGOMENTO";
- Text[ danish ] = "IMARGUMENT";
+ Text[ danish ] = "IMAGARGUMENT";
Text[ swedish ] = "IMARGUMENT";
Text[ polish ] = "IMARGUMENT";
Text[ portuguese_brazilian ] = "IMARGUMENT";
@@ -1988,6 +2061,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "IMARGUMENT";
Text[ arabic ] = "IMARGUMENT";
Text[ catalan ] = "IMARGUMENT";
+ Text[ thai ] = "IMARGUMENT";
};
String ANALYSIS_FUNCNAME_Imcos
@@ -1996,14 +2070,14 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text [ english ] = "IMCOS";
Text[ english_us ] = "IMCOS";
Text[ portuguese ] = "IMCOS";
- Text[ russian ] = ".COS";
+ Text[ russian ] = "COS";
Text[ greek ] = "IMCOS";
Text[ dutch ] = "C.COS";
Text[ french ] = "COMPLEXE.COS";
Text[ spanish ] = "IM.COS";
- Text[ finnish ] = "IMCOS";
+ Text[ finnish ] = "KOMPLEKSI_COS";
Text[ italian ] = "COMP.COS";
- Text[ danish ] = "IMCOS";
+ Text[ danish ] = "IMAGCOS";
Text[ swedish ] = "IMCOS";
Text[ polish ] = "IMCOS";
Text[ portuguese_brazilian ] = "IMCOS";
@@ -2014,6 +2088,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "IMCOS";
Text[ arabic ] = "IMCOS";
Text[ catalan ] = "IMCOS";
+ Text[ thai ] = "IMCOS";
};
String ANALYSIS_FUNCNAME_Imdiv
@@ -2022,14 +2097,14 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text [ english ] = "IMDIV";
Text[ english_us ] = "IMDIV";
Text[ portuguese ] = "IMDIV";
- Text[ russian ] = ".";
+ Text[ russian ] = "";
Text[ greek ] = "IMDIV";
Text[ dutch ] = "C.QUOTIENT";
Text[ french ] = "COMPLEXE.DIV";
Text[ spanish ] = "IM.DIV";
- Text[ finnish ] = "IMDIV";
+ Text[ finnish ] = "KOMPLEKSI_OSAM";
Text[ italian ] = "COMP.DIV";
- Text[ danish ] = "IMDIV";
+ Text[ danish ] = "IMAGDIV";
Text[ swedish ] = "IMDIV";
Text[ polish ] = "IMDIV";
Text[ portuguese_brazilian ] = "IMDIV";
@@ -2040,6 +2115,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "IMDIV";
Text[ arabic ] = "IMDIV";
Text[ catalan ] = "IMDIV";
+ Text[ thai ] = "IMDIV";
};
String ANALYSIS_FUNCNAME_Imexp
@@ -2048,14 +2124,14 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text [ english ] = "IMEXP";
Text[ english_us ] = "IMEXP";
Text[ portuguese ] = "IMEXP";
- Text[ russian ] = ".EXP";
+ Text[ russian ] = "EXP";
Text[ greek ] = "IMEXP";
Text[ dutch ] = "C.EXP";
Text[ french ] = "COMPLEXE.EXP";
Text[ spanish ] = "IM.EXP";
- Text[ finnish ] = "IMEXP";
+ Text[ finnish ] = "KOMPLEKSI_EKSP";
Text[ italian ] = "COMP.EXP";
- Text[ danish ] = "IMEXP";
+ Text[ danish ] = "IMAGEXP";
Text[ swedish ] = "IMEUPPHJT";
Text[ polish ] = "IMEXP";
Text[ portuguese_brazilian ] = "IMEXP";
@@ -2066,6 +2142,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "IMEXP";
Text[ arabic ] = "IMEXP";
Text[ catalan ] = "IMEXP";
+ Text[ thai ] = "IMEXP";
};
String ANALYSIS_FUNCNAME_Imconjugate
@@ -2074,14 +2151,14 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text [ english ] = "IMCONJUGATE";
Text[ english_us ] = "IMCONJUGATE";
Text[ portuguese ] = "IMCONJ";
- Text[ russian ] = ".";
+ Text[ russian ] = "";
Text[ greek ] = "IMCONJUGATE";
Text[ dutch ] = "C.TOEGEVOEGD";
Text[ french ] = "COMPLEXE.CONJUGUE";
Text[ spanish ] = "IM.CONJUGADA";
- Text[ finnish ] = "IMCONJUGATE";
+ Text[ finnish ] = "KOMPLEKSI_KONJ";
Text[ italian ] = "COMP.CONIUGATO";
- Text[ danish ] = "IMCONJUGATE";
+ Text[ danish ] = "IMAGKONJUGERE";
Text[ swedish ] = "IMKONJUGAT";
Text[ polish ] = "IMCONJUGATE";
Text[ portuguese_brazilian ] = "IMCONJUGATE";
@@ -2092,6 +2169,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "IMCONJUGATE";
Text[ arabic ] = "IMCONJUGATE";
Text[ catalan ] = "IMCONJUGATE";
+ Text[ thai ] = "IMCONJUGATE";
};
String ANALYSIS_FUNCNAME_Imln
@@ -2100,14 +2178,14 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text [ english ] = "IMLN";
Text[ english_us ] = "IMLN";
Text[ portuguese ] = "IMLN";
- Text[ russian ] = ".LN";
+ Text[ russian ] = "LN";
Text[ greek ] = "IMLN";
Text[ dutch ] = "C.LN";
Text[ french ] = "COMPLEXE.LN";
Text[ spanish ] = "IM.LN";
- Text[ finnish ] = "IMLN";
+ Text[ finnish ] = "KOMPLEKSI_LN";
Text[ italian ] = "COMP.LN";
- Text[ danish ] = "IMLN";
+ Text[ danish ] = "IMAGLN";
Text[ swedish ] = "IMLN";
Text[ polish ] = "IMLN";
Text[ portuguese_brazilian ] = "IMLN";
@@ -2118,6 +2196,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "IMLN";
Text[ arabic ] = "IMLN";
Text[ catalan ] = "IMLN";
+ Text[ thai ] = "IMLN";
};
String ANALYSIS_FUNCNAME_Imlog10
@@ -2126,14 +2205,14 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text [ english ] = "IMLOG10";
Text[ english_us ] = "IMLOG10";
Text[ portuguese ] = "IMLOG10";
- Text[ russian ] = ".LOG10";
+ Text[ russian ] = "LOG10";
Text[ greek ] = "IMLOG10";
Text[ dutch ] = "C.LOG10";
Text[ french ] = "COMPLEXE.LOG10";
Text[ spanish ] = "IM.LOG10";
- Text[ finnish ] = "IMLOG10";
+ Text[ finnish ] = "KOMPLEKSI_LOG10";
Text[ italian ] = "COMP.LOG10";
- Text[ danish ] = "IMLOG10";
+ Text[ danish ] = "IMAGLOG10";
Text[ swedish ] = "IMLOG10";
Text[ polish ] = "IMLOG10";
Text[ portuguese_brazilian ] = "IMLOG10";
@@ -2144,6 +2223,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "IMLOG10";
Text[ arabic ] = "IMLOG10";
Text[ catalan ] = "IMLOG10";
+ Text[ thai ] = "IMLOG10";
};
String ANALYSIS_FUNCNAME_Imlog2
@@ -2152,14 +2232,14 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text [ english ] = "IMLOG2";
Text[ english_us ] = "IMLOG2";
Text[ portuguese ] = "IMLOG2";
- Text[ russian ] = ".LOG2";
+ Text[ russian ] = "LOG2";
Text[ greek ] = "IMLOG2";
Text[ dutch ] = "C.LOG2";
Text[ french ] = "COMPLEXE.LOG2";
Text[ spanish ] = "IM.LOG2";
- Text[ finnish ] = "IMLOG2";
+ Text[ finnish ] = "KOMPLEKSI_LOG2";
Text[ italian ] = "COMP.LOG2";
- Text[ danish ] = "IMLOG2";
+ Text[ danish ] = "IMAGLOG2";
Text[ swedish ] = "IMLOG2";
Text[ polish ] = "IMLOG2";
Text[ portuguese_brazilian ] = "IMLOG2";
@@ -2170,6 +2250,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "IMLOG2";
Text[ arabic ] = "IMLOG2";
Text[ catalan ] = "IMLOG2";
+ Text[ thai ] = "IMLOG2";
};
String ANALYSIS_FUNCNAME_Improduct
@@ -2178,14 +2259,14 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text [ english ] = "IMPRODUCT";
Text[ english_us ] = "IMPRODUCT";
Text[ portuguese ] = "IMPROD";
- Text[ russian ] = ".";
+ Text[ russian ] = "";
Text[ greek ] = "IMPRODUCT";
Text[ dutch ] = "C.PRODUCT";
Text[ french ] = "COMPLEXE.PRODUIT";
Text[ spanish ] = "IM.PRODUCT";
- Text[ finnish ] = "IMPRODUCT";
+ Text[ finnish ] = "KOMPLEKSI_TULO";
Text[ italian ] = "COMP.PRODOTTO";
- Text[ danish ] = "IMPRODUCT";
+ Text[ danish ] = "IMAGPRODUKT";
Text[ swedish ] = "IMPRODUKT";
Text[ polish ] = "IMPRODUCT";
Text[ portuguese_brazilian ] = "IMPRODUCT";
@@ -2196,6 +2277,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "IMPRODUCT";
Text[ arabic ] = "IMPRODUCT";
Text[ catalan ] = "IMPRODUCT";
+ Text[ thai ] = "IMPRODUCT";
};
String ANALYSIS_FUNCNAME_Imreal
@@ -2204,14 +2286,14 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text [ english ] = "IMREAL";
Text[ english_us ] = "IMREAL";
Text[ portuguese ] = "IMREAL";
- Text[ russian ] = ".";
+ Text[ russian ] = "";
Text[ greek ] = "IMREAL";
Text[ dutch ] = "C.REEEL.DEEL";
Text[ french ] = "COMPLEXE.REEL";
Text[ spanish ] = "IM.REAL";
- Text[ finnish ] = "IMREAL";
+ Text[ finnish ] = "KOMPLEKSI_REAALI";
Text[ italian ] = "COMP.PARTE.REALE";
- Text[ danish ] = "IMREAL";
+ Text[ danish ] = "IMAGREELT";
Text[ swedish ] = "IMREAL";
Text[ polish ] = "IMREAL";
Text[ portuguese_brazilian ] = "IMREAL";
@@ -2222,6 +2304,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "IMREAL";
Text[ arabic ] = "IMREAL";
Text[ catalan ] = "IMREAL";
+ Text[ thai ] = "IMREAL";
};
String ANALYSIS_FUNCNAME_Imsin
@@ -2230,14 +2313,14 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text [ english ] = "IMSIN";
Text[ english_us ] = "IMSIN";
Text[ portuguese ] = "IMSENO";
- Text[ russian ] = ".SIN";
+ Text[ russian ] = "SIN";
Text[ greek ] = "IMSIN";
Text[ dutch ] = "C.SIN";
Text[ french ] = "COMPLEXE.SIN";
Text[ spanish ] = "IM.SENO";
- Text[ finnish ] = "IMSIN";
+ Text[ finnish ] = "KOMPLEKSI_SIN";
Text[ italian ] = "COMP.SEN";
- Text[ danish ] = "IMSIN";
+ Text[ danish ] = "IMAGSIN";
Text[ swedish ] = "IMSIN";
Text[ polish ] = "IMSIN";
Text[ portuguese_brazilian ] = "IMSIN";
@@ -2248,6 +2331,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "IMSIN";
Text[ arabic ] = "IMSIN";
Text[ catalan ] = "IMSIN";
+ Text[ thai ] = "IMSIN";
};
String ANALYSIS_FUNCNAME_Imsub
@@ -2256,14 +2340,14 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text [ english ] = "IMSUB";
Text[ english_us ] = "IMSUB";
Text[ portuguese ] = "IMSUBTR";
- Text[ russian ] = ".";
+ Text[ russian ] = "";
Text[ greek ] = "IMSUB";
Text[ dutch ] = "C.VERSCHIL";
Text[ french ] = "COMPLEXE.DIFFERENCE";
Text[ spanish ] = "IM.SUSTR";
- Text[ finnish ] = "IMSUB";
+ Text[ finnish ] = "KOMPLEKSI_EROTUS";
Text[ italian ] = "COMP.DIFF";
- Text[ danish ] = "IMSUB";
+ Text[ danish ] = "IMAGSUB";
Text[ swedish ] = "IMDIFF";
Text[ polish ] = "IMSUB";
Text[ portuguese_brazilian ] = "IMSUB";
@@ -2274,6 +2358,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "IMSUB";
Text[ arabic ] = "IMSUB";
Text[ catalan ] = "IMSUB";
+ Text[ thai ] = "IMSUB";
};
String ANALYSIS_FUNCNAME_Imsum
@@ -2282,14 +2367,14 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text [ english ] = "IMSUM";
Text[ english_us ] = "IMSUM";
Text[ portuguese ] = "IMSOMA";
- Text[ russian ] = ".";
+ Text[ russian ] = "";
Text[ greek ] = "IMSUM";
Text[ dutch ] = "C.SOM";
Text[ french ] = "COMPLEXE.SOMME";
Text[ spanish ] = "IM.SUM";
- Text[ finnish ] = "IMSUM";
+ Text[ finnish ] = "KOMPLEKSI_SUM";
Text[ italian ] = "COMP.SOMMA";
- Text[ danish ] = "IMSUM";
+ Text[ danish ] = "IMAGSUM";
Text[ swedish ] = "IMSUM";
Text[ polish ] = "IMSUM";
Text[ portuguese_brazilian ] = "IMSUM";
@@ -2300,6 +2385,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "IMSUM";
Text[ arabic ] = "IMSUM";
Text[ catalan ] = "IMSUM";
+ Text[ thai ] = "IMSUM";
};
String ANALYSIS_FUNCNAME_Imsqrt
@@ -2308,14 +2394,14 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text [ english ] = "IMSQRT";
Text[ english_us ] = "IMSQRT";
Text[ portuguese ] = "IMRAIZ";
- Text[ russian ] = ".";
+ Text[ russian ] = "";
Text[ greek ] = "IMSQRT";
Text[ dutch ] = "C.WORTEL";
Text[ french ] = "COMPLEXE.RACINE";
Text[ spanish ] = "IM.RAIZ2";
- Text[ finnish ] = "IMSQRT";
+ Text[ finnish ] = "KOMPLEKSI_NELIJ";
Text[ italian ] = "COMP.RADQ";
- Text[ danish ] = "IMSQRT";
+ Text[ danish ] = "IMAGKVROD";
Text[ swedish ] = "IMROT";
Text[ polish ] = "IMSQRT";
Text[ portuguese_brazilian ] = "IMSQRT";
@@ -2326,6 +2412,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "IMSQRT";
Text[ arabic ] = "IMSQRT";
Text[ catalan ] = "IMSQRT";
+ Text[ thai ] = "IMSQRT";
};
String ANALYSIS_FUNCNAME_Complex
@@ -2339,9 +2426,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "COMPLEX";
Text[ french ] = "COMPLEXE";
Text[ spanish ] = "COMPLEJO";
- Text[ finnish ] = "COMPLEX";
+ Text[ finnish ] = "KOMPLEKSI";
Text[ italian ] = "COMPLESSO";
- Text[ danish ] = "COMPLEX";
+ Text[ danish ] = "KOMPLEKS";
Text[ swedish ] = "KOMPLEX";
Text[ polish ] = "COMPLEX";
Text[ portuguese_brazilian ] = "COMPLEX";
@@ -2352,6 +2439,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "COMPLEX";
Text[ arabic ] = "COMPLEX";
Text[ catalan ] = "COMPLEX";
+ Text[ thai ] = "COMPLEX";
};
String ANALYSIS_FUNCNAME_Oct2Bin
@@ -2360,14 +2448,14 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text [ english ] = "OCT2BIN";
Text[ english_us ] = "OCT2BIN";
Text[ portuguese ] = "OCTABIN";
- Text[ russian ] = "..";
+ Text[ russian ] = "";
Text[ greek ] = "OCT2BIN";
Text[ dutch ] = "OCT.N.BIN";
Text[ french ] = "OCTBIN";
Text[ spanish ] = "OCT.A.BIN";
- Text[ finnish ] = "OCT2BIN";
+ Text[ finnish ] = "OKTBIN";
Text[ italian ] = "OCT.BINARIO";
- Text[ danish ] = "OCT2BIN";
+ Text[ danish ] = "OKT.TIL.BIN";
Text[ swedish ] = "OKT.TILL.BIN";
Text[ polish ] = "OCT2BIN";
Text[ portuguese_brazilian ] = "OCT2BIN";
@@ -2378,6 +2466,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "OCT2BIN";
Text[ arabic ] = "OCT2BIN";
Text[ catalan ] = "OCT2BIN";
+ Text[ thai ] = "OCT2BIN";
};
String ANALYSIS_FUNCNAME_Oct2Dec
@@ -2386,14 +2475,14 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text [ english ] = "OCT2DEC";
Text[ english_us ] = "OCT2DEC";
Text[ portuguese ] = "OCTADEC";
- Text[ russian ] = "..";
+ Text[ russian ] = "";
Text[ greek ] = "OCT2DEZ";
Text[ dutch ] = "OCT.N.DEC";
Text[ french ] = "OCTDEC";
Text[ spanish ] = "OCT.A.DEC";
- Text[ finnish ] = "OCT2DEZ";
+ Text[ finnish ] = "OKTDES";
Text[ italian ] = "OCT.DECIMALE";
- Text[ danish ] = "OCT2DEZ";
+ Text[ danish ] = "OKT.TIL.DEC";
Text[ swedish ] = "OKT.TILL.DEC";
Text[ polish ] = "OCT2DEC";
Text[ portuguese_brazilian ] = "OCT2DEZ";
@@ -2404,6 +2493,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "OCT2DEZ";
Text[ arabic ] = "OCT2DEZ";
Text[ catalan ] = "OCT2DEZ";
+ Text[ thai ] = "OCT2DEC";
};
String ANALYSIS_FUNCNAME_Oct2Hex
@@ -2412,14 +2502,14 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text [ english ] = "OCT2HEX";
Text[ english_us ] = "OCT2HEX";
Text[ portuguese ] = "OCTAHEX";
- Text[ russian ] = "..";
+ Text[ russian ] = "";
Text[ greek ] = "OCT2HEX";
Text[ dutch ] = "OCT.N.HEX";
Text[ french ] = "OCTHEX";
Text[ spanish ] = "OCT.A.HEX";
- Text[ finnish ] = "OCT2HEX";
+ Text[ finnish ] = "OKTHEKSA";
Text[ italian ] = "OCT.HEX";
- Text[ danish ] = "OCT2HEX";
+ Text[ danish ] = "OKT.TIL.HEX";
Text[ swedish ] = "OKT.TILL.HEX";
Text[ polish ] = "OCT2HEX";
Text[ portuguese_brazilian ] = "OCT2HEX";
@@ -2430,6 +2520,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "OCT2HEX";
Text[ arabic ] = "OCT2HEX";
Text[ catalan ] = "OCT2HEX";
+ Text[ thai ] = "OCT2HEX";
};
String ANALYSIS_FUNCNAME_Convert
@@ -2443,9 +2534,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "CONVERTEREN";
Text[ french ] = "CONVERT";
Text[ spanish ] = "CONVERTIR";
- Text[ finnish ] = "CONVERT";
+ Text[ finnish ] = "MUUNNOS";
Text[ italian ] = "CONVERTI";
- Text[ danish ] = "CONVERT";
+ Text[ danish ] = "KONVERTER";
Text[ swedish ] = "KONVERTERA";
Text[ polish ] = "CONVERT";
Text[ portuguese_brazilian ] = "CONVERT";
@@ -2456,6 +2547,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "CONVERT";
Text[ arabic ] = "CONVERT";
Text[ catalan ] = "CONVERT";
+ Text[ thai ] = "CONVERT";
};
String ANALYSIS_FUNCNAME_Factdouble
@@ -2469,9 +2561,9 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ dutch ] = "DUBBELE.FACULTEIT";
Text[ french ] = "FACTDOUBLE";
Text[ spanish ] = "FACT.DOBLE";
- Text[ finnish ] = "FACTDOUBLE";
+ Text[ finnish ] = "KERTOMA_OSA";
Text[ italian ] = "FATT.DOPPIO";
- Text[ danish ] = "FACTDOUBLE";
+ Text[ danish ] = "DOBBELT.FAKULTET";
Text[ swedish ] = "DUBBELFAKULTET";
Text[ polish ] = "FACTDOUBLE";
Text[ portuguese_brazilian ] = "FACTDOUBLE";
@@ -2482,6 +2574,7 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
Text[ turkish ] = "FACTDOUBLE";
Text[ arabic ] = "FACTDOUBLE";
Text[ catalan ] = "FACTDOUBLE";
+ Text[ thai ] = "FACTDOUBLE";
};
};
@@ -2499,3 +2592,6 @@ Resource RID_ANALYSIS_FUNCTION_NAMES
+
+
+
diff --git a/scaddins/source/analysis/analysisdefs.hxx b/scaddins/source/analysis/analysisdefs.hxx
index 2fb729cb11e2..e62afe7d3ad0 100644
--- a/scaddins/source/analysis/analysisdefs.hxx
+++ b/scaddins/source/analysis/analysisdefs.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: analysisdefs.hxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: dr $ $Date: 2001-09-26 09:51:58 $
+ * last change: $Author: hr $ $Date: 2003-03-26 17:46:44 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -80,8 +80,8 @@
#define THROW_IAE throw CSS::lang::IllegalArgumentException()
#define CHK_Freq ( nFreq != 1 && nFreq != 2 && nFreq != 4 )
-#define CHK_FINITE(d) if( !SOMA_FINITE( d ) ) THROW_IAE
-#define RETURN_FINITE(d) if( SOMA_FINITE( d ) ) return d; else THROW_IAE
+#define CHK_FINITE(d) if( !::rtl::math::isFinite( d ) ) THROW_IAE
+#define RETURN_FINITE(d) if( ::rtl::math::isFinite( d ) ) return d; else THROW_IAE
#endif
diff --git a/scaddins/source/analysis/analysishelper.cxx b/scaddins/source/analysis/analysishelper.cxx
index 88359acec8df..815221a732b7 100644
--- a/scaddins/source/analysis/analysishelper.cxx
+++ b/scaddins/source/analysis/analysishelper.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: analysishelper.cxx,v $
*
- * $Revision: 1.37 $
+ * $Revision: 1.38 $
*
- * last change: $Author: dr $ $Date: 2002-08-08 11:28:10 $
+ * last change: $Author: hr $ $Date: 2003-03-26 17:46:44 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -67,7 +67,7 @@
#include <string.h>
#include <stdio.h>
#include <tools/resary.hxx>
-#include <tools/solmath.hxx>
+#include <rtl/math.hxx>
#include "analysishelper.hxx"
#include "analysis.hrc"
@@ -186,56 +186,6 @@ const FuncDataBase pFuncDatas[] =
#undef FUNCDATA
-static const double nKorrVal[] = {
- 0, 9e-1, 9e-2, 9e-3, 9e-4, 9e-5, 9e-6, 9e-7, 9e-8,
- 9e-9, 9e-10, 9e-11, 9e-12, 9e-13, 9e-14, 9e-15
-};
-
-static const double f_Ret = 0.0;
-
-
-double Round( double fVal, short nDec )
-{
- if ( fVal == 0.0 )
- return fVal;
-
- // sign adjustment
- sal_Bool bSign = fVal < 0.0;
- if ( bSign )
- fVal = -fVal;
-
- double fFac;
- if ( nDec != 0 )
- {
- // max 20 decimals, we don't have unlimited precision
- // #38810# and no overflow on fVal*=fFac
- if ( nDec < -20 || 20 < nDec || fVal > (1.7976931348623158e+308 / 1e20) )
- return bSign ? -fVal : fVal;
-
- fFac = pow( 10.0, nDec );
- fVal *= fFac;
- }
- //else //! uninitialized fFac, not needed
-
- int nExp; // exponent for correction
- if ( fVal > 0.0 )
- nExp = (int) floor( log10( fVal ) );
- else
- nExp = 0;
- int nIndex = 15 - nExp;
- if ( nIndex > 15 )
- nIndex = 15;
- else if ( nIndex <= 1 )
- nIndex = 0;
- fVal = floor( fVal + 0.5 + nKorrVal[nIndex] );
-
- if ( nDec != 0 )
- fVal /= fFac;
-
- return bSign ? -fVal : fVal;
-}
-
-
/*double _Test( sal_Int32 nMode, double f1, double f2, double f3 )
{
double f = -1.0;
@@ -1382,7 +1332,7 @@ sal_Bool ParseDouble( const sal_Unicode*& rp, double& rRet )
if( nLog10 + nExp > nMaxExp )
return sal_False;
- fInt *= pow( 10.0, nExp );
+ fInt = ::rtl::math::pow10Exp( fInt, nExp );
if( bNegNum )
fInt = -fInt;
@@ -1396,24 +1346,20 @@ sal_Bool ParseDouble( const sal_Unicode*& rp, double& rRet )
STRING GetString( double f, sal_Bool bLeadingSign, sal_uInt16 nMaxDig )
{
const int nBuff = 256;
- sal_Char* pBuff = new sal_Char[ nBuff + 1 ];
+ sal_Char aBuff[ nBuff + 1 ];
const char* pFormStr = bLeadingSign? "%+.*g" : "%.*g";
- int nLen = sprintf( pBuff, pFormStr, int( nMaxDig ), f );
+ int nLen = snprintf( aBuff, nBuff, pFormStr, int( nMaxDig ), f );
+ // you never know which underlying implementation you get ...
+ aBuff[nBuff] = 0;
+ if ( nLen < 0 || nLen > nBuff )
+ nLen = strlen( aBuff );
- STRING aRet( pBuff, nLen, RTL_TEXTENCODING_MS_1252 );
-
- delete pBuff;
+ STRING aRet( aBuff, nLen, RTL_TEXTENCODING_MS_1252 );
return aRet;
}
-inline double Exp10( sal_Int16 n )
-{
- return pow( 10.0, double( n ) );
-}
-
-
double GetAmordegrc( sal_Int32 nNullDate, double fCost, sal_Int32 nDate, sal_Int32 nFirstPer,
double fRestVal, double fPer, double fRate, sal_Int32 nBase ) THROWDEF_RTE_IAE
{
@@ -1434,13 +1380,13 @@ double GetAmordegrc( sal_Int32 nNullDate, double fCost, sal_Int32 nDate, sal_Int
fAmorCoeff = 2.5;
fRate *= fAmorCoeff;
- double fNRate = Round( GetYearFrac( nNullDate, nDate, nFirstPer, nBase ) * fRate * fCost, 0 );
+ double fNRate = ::rtl::math::round( GetYearFrac( nNullDate, nDate, nFirstPer, nBase ) * fRate * fCost, 0 );
fCost -= fNRate;
double fRest = fCost - fRestVal; // Anschaffungskosten - Restwert - Summe aller Abschreibungen
for( sal_uInt32 n = 0 ; n < nPer ; n++ )
{
- fNRate = Round( fRate * fCost, 0 );
+ fNRate = ::rtl::math::round( fRate * fCost, 0 );
fRest -= fNRate;
if( fRest < 0.0 )
@@ -1449,7 +1395,7 @@ double GetAmordegrc( sal_Int32 nNullDate, double fCost, sal_Int32 nDate, sal_Int
{
case 0:
case 1:
- return Round( fCost * 0.5, 0 );
+ return ::rtl::math::round( fCost * 0.5, 0 );
break;
default:
return 0.0;
@@ -2862,7 +2808,7 @@ double ConvertData::Convert(
f *= r.fConst / fConst;
if( nLevFrom )
- f *= Exp10( nLevFrom );
+ f = ::rtl::math::pow10Exp( f, nLevFrom );
return f;
}
@@ -2870,13 +2816,13 @@ double ConvertData::Convert(
double ConvertData::ConvertToBase( double f, sal_Int16 n ) const
{
- return f / fConst * Exp10( n );
+ return ::rtl::math::pow10Exp( f / fConst, n );
}
double ConvertData::ConvertFromBase( double f, sal_Int16 n ) const
{
- return f * fConst * Exp10( -n );
+ return ::rtl::math::pow10Exp( f * fConst, -n );
}
@@ -2888,7 +2834,7 @@ double ConvertDataLinear::Convert(
if( Class() != r.Class() )
THROW_IAE;
-// return Round( r.ConvertFromBase( ConvertToBase( f, nLevFrom ), nLevTo ), 13 );
+// return ::rtl::math::round( r.ConvertFromBase( ConvertToBase( f, nLevFrom ), nLevTo ), 13 );
return r.ConvertFromBase( ConvertToBase( f, nLevFrom ), nLevTo );
}
@@ -2896,7 +2842,7 @@ double ConvertDataLinear::Convert(
double ConvertDataLinear::ConvertToBase( double f, sal_Int16 n ) const
{
if( n )
- f *= Exp10( n );
+ f = ::rtl::math::pow10Exp( f, n );
f /= fConst;
f -= fOffs;
@@ -2911,7 +2857,7 @@ double ConvertDataLinear::ConvertFromBase( double f, sal_Int16 n ) const
f *= fConst;
if( n )
- f *= Exp10( -n );
+ f = ::rtl::math::pow10Exp( f, -n );
return f;
}
@@ -3382,10 +3328,10 @@ double ScaAnyConverter::convertToDouble( const OUString& rString ) const throw(
}
else
{
- int nErrorNum;
- const sal_Unicode* pLastChar;
- fValue = SolarMath::StringToDouble( rString.getStr(), ',', '.', nErrorNum, &pLastChar );
- if( (nErrorNum != 0) || (*pLastChar != '\0') )
+ rtl_math_ConversionStatus eStatus;
+ sal_Int32 nEnd;
+ fValue = ::rtl::math::stringToDouble( rString, '.', ',', &eStatus, &nEnd );
+ if( (eStatus != rtl_math_ConversionStatus_Ok) || (nEnd < rString.getLength()) )
throw lang::IllegalArgumentException();
}
return fValue;
diff --git a/scaddins/source/analysis/analysishelper.hxx b/scaddins/source/analysis/analysishelper.hxx
index a1f1ae3b8048..77de98137646 100644
--- a/scaddins/source/analysis/analysishelper.hxx
+++ b/scaddins/source/analysis/analysishelper.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: analysishelper.hxx,v $
*
- * $Revision: 1.21 $
+ * $Revision: 1.22 $
*
- * last change: $Author: dr $ $Date: 2001-10-25 11:08:29 $
+ * last change: $Author: hr $ $Date: 2003-03-26 17:46:44 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1114,7 +1114,7 @@ private:
sal_Bool bHasValidFormat;
/** Converts a string to double using the number formatter. If the formatter is not
- valid, SolarMath::StringToDouble() with english separators will be used.
+ valid, ::rtl::math::stringToDouble() with english separators will be used.
@throws com::sun::star::lang::IllegalArgumentException
on strings not representing any double value.
@return the converted double value. */
diff --git a/scaddins/source/analysis/financial.cxx b/scaddins/source/analysis/financial.cxx
index 36c542571456..5ebfa4e28a44 100644
--- a/scaddins/source/analysis/financial.cxx
+++ b/scaddins/source/analysis/financial.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: financial.cxx,v $
*
- * $Revision: 1.13 $
+ * $Revision: 1.14 $
*
- * last change: $Author: dr $ $Date: 2001-10-09 11:09:01 $
+ * last change: $Author: hr $ $Date: 2003-03-26 17:46:45 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -61,8 +61,7 @@
#include "analysis.hxx"
#include "analysishelper.hxx"
-#include <tools/solmath.hxx>
-
+#include <rtl/math.hxx>
@@ -489,77 +488,61 @@ double SAL_CALL AnalysisAddIn::getOddlyield( constREFXPS& xOpt,
}
+double lcl_Sca_Analysis_CalcXirrDiff( const ScaDoubleList& rValues, const ScaDoubleList& rDates, double fGuessInt )
+{
+ double fFirstDate = *rDates.Get( 0 );
+ double fIntRate = fGuessInt + 1.0;
+ double fXirrDiff = 0.0;
+ for( sal_uInt32 nIndex = 0, nCount = rValues.Count(); nIndex < nCount; ++nIndex )
+ fXirrDiff += *rValues.Get( nIndex ) / pow( fIntRate, (*rDates.Get( nIndex ) - fFirstDate) / 365.0 );
+ return fXirrDiff;
+}
+
double SAL_CALL AnalysisAddIn::getXirr(
constREFXPS& xOpt, const SEQSEQ( double )& rValues, const SEQSEQ( sal_Int32 )& rDates, const ANY& rGuess ) THROWDEF_RTE_IAE
{
+ ScaDoubleList aValues, aDates;
+ aValues.Append( rValues );
+ aDates.Append( rDates );
- double fGuess = aAnyConv.getDouble( xOpt, rGuess, 0.1 );
-
- ScaDoubleList aValList;
- ScaDoubleList aDateList;
-
- aValList.Append( rValues );
- aDateList.Append( rDates );
-
- sal_Int32 nNum = aValList.Count();
-
- if( nNum != sal_Int32( aDateList.Count() ) || nNum < 2 )
+ if( (aValues.Count() < 2) || (aValues.Count() != aDates.Count()) )
THROW_IAE;
- double f, fG, fK;
- sal_Int32 nMax = 200;
+ // result interest rate, initialized with passed guessed rate, or 10%
+ double fResultInt = aAnyConv.getDouble( xOpt, rGuess, 0.1 );
+ // lower boundary for iteration -> lowest possible is -100%
+ double fLowerInt = -1;
+ // upper boundary is open end -> try to find appropriate limit, start with 100%
+ double fUpperInt = 1;
+ while( (fUpperInt < 1e20) && (lcl_Sca_Analysis_CalcXirrDiff( aValues, aDates, fUpperInt ) > 0.0) )
+ fUpperInt *= 1e2;
- double fYld = fGuess;
- double fDiff = fYld;
- double fOld = 0.0;
- sal_Int32 n = 1;
- sal_Int32 nNew = 0;
- double fNull = *aDateList.Get( 0 );
+ // maximum epsilon (upper-lower difference) for end of iteration
+ static const double fMaxEpsilon = 1e-10;
+ // maximum XIRR result for end of iteration (ideal result is 0.0)
+ static const double fMaxXirrDiff = 1e-13;
+ // true = a result has been found
+ bool bResultReached = false;
+ // iteration counter
+ sal_Int32 nIteration = 0;
+ // maximum number of iterations
+ static const sal_Int32 nMaxIterations = 200;
- while( fabs( fDiff ) > 1E-10 && n <= nMax )
+ while( !bResultReached && (++nIteration <= nMaxIterations) )
{
- f = 0.0;
- n++;
- for( sal_Int32 i = 0 ; i < nNum ; i++ )
- f += *aValList.Get( i ) / pow( 1.0 + fYld, ( *aDateList.Get( i ) - fNull ) / 365.0 );
-
- if( ( ( fOld < 0.0 && f > 0.0 ) || ( fOld > 0.0 && f < 0.0 ) ) && nNew == 0 )
- {
- if( f < 0.0 )
- {
- fG = fYld;
- fK = fYld - 0.1;
- }
- else
- {
- fG = fYld - 0.1;
- fK = fYld;
- }
- fYld = 0.5 * ( fG + fK );
- nNew = 1;
- }
- else if( nNew == 0 )
- {
- fYld += 0.1;
- fOld = f;
- }
- else
- {
- if( f < 0.0 )
- fG = fYld;
- else
- fK = fYld;
- double fTmp = 0.5 * ( fG + fK );
- fDiff = fYld - fTmp;
- fYld = fTmp;
- }
+ double fXirrDiff = lcl_Sca_Analysis_CalcXirrDiff( aValues, aDates, fResultInt );
+ if( fXirrDiff < 0.0 )
+ fUpperInt = fResultInt;
+ else if( fXirrDiff > 0.0 )
+ fLowerInt = fResultInt;
+ fResultInt = (fUpperInt + fLowerInt) / 2.0;
+ bResultReached = (fabs( fUpperInt - fLowerInt ) <= fMaxEpsilon) || (fabs( fXirrDiff ) <= fMaxXirrDiff);
}
- if( floor( f ) == 0.0 || fabs( fDiff ) <= 1e-10 )
- RETURN_FINITE( fYld );
- else
+ if( !bResultReached )
THROW_IAE;
+ RETURN_FINITE( fResultInt );
}
diff --git a/scaddins/source/datefunc/datefunc.src b/scaddins/source/datefunc/datefunc.src
index b4e4185be18f..623c154d1e5d 100644
--- a/scaddins/source/datefunc/datefunc.src
+++ b/scaddins/source/datefunc/datefunc.src
@@ -2,9 +2,9 @@
*
* $RCSfile: datefunc.src,v $
*
- * $Revision: 1.15 $
+ * $Revision: 1.16 $
*
- * last change: $Author: kz $ $Date: 2002-09-05 14:49:13 $
+ * last change: $Author: hr $ $Date: 2003-03-26 17:46:50 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -79,7 +79,7 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Berekent het aantal weken binnen een bepaalde periode.";
Text[ french ] = "Calcule le nombre de semaines dans une priode dtermine.";
Text[ spanish ] = "Calcula el nmero de semanas en un periodo determinado.";
- Text[ finnish ] = "Determines the number of weeks in a specific period.";
+ Text[ finnish ] = "Laskee annetun aikavlin viikkojen mrn";
Text[ italian ] = "Restituisce il numero di settimane di un determinato periodo.";
Text[ danish ] = "Beregner antal uger i en bestemt tidsperiode.";
Text[ swedish ] = "Berknar antalet veckor i en specifik period.";
@@ -91,7 +91,8 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "傳回某一時期內的週數目。";
Text[ turkish ] = "Determines the number of weeks in a specific period.";
Text[ arabic ] = "Determines the number of weeks in a specific period.";
- Text[ catalan ] = "Determines the number of weeks in a specific period.";
+ Text[ catalan ] = "Determina el nmero de setmanes d'un perode especfic.";
+ Text[ thai ] = "Calculates the number of weeks in a specific period";
};
String 2 // name of parameter 1 DiffWeeks
{
@@ -100,24 +101,25 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Start date";
Text[ portuguese ] = "Start date";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "Start date";
- Text[ dutch ] = "Start date";
+ Text[ dutch ] = "Begindatum";
Text[ french ] = "Date initiale";
Text[ spanish ] = "Fecha inicial";
- Text[ finnish ] = "Start date";
+ Text[ finnish ] = "Alkupivmr";
Text[ italian ] = "Data iniziale";
Text[ danish ] = "Startdato";
Text[ swedish ] = "Startdatum";
Text[ polish ] = "Data pocztkowa";
Text[ portuguese_brazilian ] = "Start date";
Text[ japanese ] = "開始日";
- Text[ korean ] = "시작일";
+ Text[ korean ] = "시작 날짜";
Text[ chinese_simplified ] = "start_date";
Text[ chinese_traditional ] = "start_date";
Text[ turkish ] = "Start date";
Text[ arabic ] = "Start date";
- Text[ catalan ] = "data inicial";
+ Text[ catalan ] = "Data d'inici";
+ Text[ thai ] = "Start date";
};
String 3 // description of parameter 1 DiffWeeks
{
@@ -131,7 +133,7 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "De eerste dag van de periode.";
Text[ french ] = "Premier jour de la priode.";
Text[ spanish ] = "Primer da del periodo";
- Text[ finnish ] = "First day of the period.";
+ Text[ finnish ] = "Kauden ensimminen piv";
Text[ italian ] = "Primo giorno del periodo.";
Text[ danish ] = "Frste dag i tidsperioden.";
Text[ swedish ] = "Frsta dagen i perioden.";
@@ -143,7 +145,8 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "時期的第一天。";
Text[ turkish ] = "First day of the period.";
Text[ arabic ] = "First day of the period.";
- Text[ catalan ] = "First day of the period.";
+ Text[ catalan ] = "Primer dia del perode.";
+ Text[ thai ] = "First day of the period";
};
String 4 // name of parameter 2 DiffWeeks
{
@@ -152,24 +155,25 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "End date";
Text[ portuguese ] = "End date";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "End date";
- Text[ dutch ] = "End date";
+ Text[ dutch ] = "Einddatum";
Text[ french ] = "Date de fin";
Text[ spanish ] = "Fecha final";
- Text[ finnish ] = "End date";
+ Text[ finnish ] = "Loppupivmr";
Text[ italian ] = "Data finale";
Text[ danish ] = "Slutdato";
Text[ swedish ] = "Slutdatum";
Text[ polish ] = "Data kocowa";
Text[ portuguese_brazilian ] = "End date";
Text[ japanese ] = "終了日";
- Text[ korean ] = "종료일";
+ Text[ korean ] = "최종 날짜";
Text[ chinese_simplified ] = "end_date";
Text[ chinese_traditional ] = "end_date";
Text[ turkish ] = "End date";
Text[ arabic ] = "End date";
- Text[ catalan ] = "data final";
+ Text[ catalan ] = "Data final";
+ Text[ thai ] = "วันที่สิ้นสุด";
};
String 5 // description of parameter 2 DiffWeeks
{
@@ -183,7 +187,7 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Laatste dag van de periode.";
Text[ french ] = "Dernier jour de la priode.";
Text[ spanish ] = "ltimo da del periodo.";
- Text[ finnish ] = "Last day of the period.";
+ Text[ finnish ] = "Kauden viimeinen piv";
Text[ italian ] = "Ultimo giorno del periodo.";
Text[ danish ] = "Sidste dag i tidsperioden.";
Text[ swedish ] = "Sista dagen i perioden.";
@@ -195,7 +199,8 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "時期的最後一天。";
Text[ turkish ] = "Last day of the period.";
Text[ arabic ] = "Last day of the period.";
- Text[ catalan ] = "Last day of the period.";
+ Text[ catalan ] = "ltim dia del perode.";
+ Text[ thai ] = "Last day of the period";
};
String 6 // name of parameter 3 DiffWeeks
{
@@ -206,10 +211,10 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Mode";
Text[ russian ] = "";
Text[ greek ] = "Mode";
- Text[ dutch ] = "Mode";
+ Text[ dutch ] = "Soort";
Text[ french ] = "Mode";
Text[ spanish ] = "Tipo";
- Text[ finnish ] = "Mode";
+ Text[ finnish ] = "Laji";
Text[ italian ] = "Tipo";
Text[ danish ] = "Type";
Text[ swedish ] = "Typ";
@@ -222,6 +227,7 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ turkish ] = "Mode";
Text[ arabic ] = "Mode";
Text[ catalan ] = "Mode";
+ Text[ thai ] = "Type";
};
String 7 // description of parameter 3 DiffWeeks
{
@@ -230,12 +236,12 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Type of calculation: Type=0 means the time interval, Type=1 means calendar weeks.";
Text[ portuguese ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar weeks.";
- Text[ russian ] = " : =0 ; =1 .";
+ Text[ russian ] = " : =0 ; =1 .";
Text[ greek ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar weeks.";
- Text[ dutch ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar weeks.";
+ Text[ dutch ] = "Soort berekening: soort=0 voor aantal weken in interval, soort=1 voor kalenderweken.";
Text[ french ] = "Type de calcul : Mode=0 pour le nombre de semaines dans l'intervalle, Mode=1 pour les semaines du calendrier.";
Text[ spanish ] = "Tipo de calculacin: Tipo=0 significa el nmero de semanas y Tipo=1 el nmero de semanas del calendario.";
- Text[ finnish ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar weeks.";
+ Text[ finnish ] = "Laskennan laji: 0 on aikavli, 1 tarkoittaa kalenteriviikkoja";
Text[ italian ] = "Tipo di calcolo: Tipo=0 indica il numero di settimane nell'intervallo, tipo=1 indica la settimana.";
Text[ danish ] = "Beregningstype: Type=0 for ugeantal i intervallet, type=1 for kalenderuger.";
Text[ swedish ] = "Typ av berkning: typ=0 fr veckoantal i intervallet, typ=1 fr kalenderveckor.";
@@ -247,7 +253,8 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "計算的類型:type=0 表示時期的週數目,type=1 表示週的序列數。";
Text[ turkish ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar weeks.";
Text[ arabic ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar weeks.";
- Text[ catalan ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar weeks.";
+ Text[ catalan ] = "Tipus de clcul: Mode=0 s l'interval de temps, mode=1 sn setmanes de calendari.";
+ Text[ thai ] = "Type of calculation: Type=0 means the time interval, Type=1 means calendar weeks.";
};
};
@@ -262,10 +269,10 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Determines the number of months in a specific period.";
Text[ russian ] = " .";
Text[ greek ] = "Determines the number of months in a specific period.";
- Text[ dutch ] = "Determines the number of months in a specific period.";
+ Text[ dutch ] = "Berekent het aantal maanden in een bepaalde periode.";
Text[ french ] = "Calcule le nombre de mois dans une priode dtermine.";
Text[ spanish ] = "Calcula el nmero de meses en un periodo determinado.";
- Text[ finnish ] = "Determines the number of months in a specific period.";
+ Text[ finnish ] = "Mritt annetun kauden kuukausien mrn";
Text[ italian ] = "Restituisce il numero di mesi in un determinato periodo.";
Text[ danish ] = "Beregner antal mneder i en bestemt tidsperiode.";
Text[ swedish ] = "Berknar antalet mnader i en specifik period.";
@@ -277,7 +284,8 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "傳回某一時期的月份數目。";
Text[ turkish ] = "Determines the number of months in a specific period.";
Text[ arabic ] = "Determines the number of months in a specific period.";
- Text[ catalan ] = "Determines the number of months in a specific period.";
+ Text[ catalan ] = "Determina el nmero de mesos d'un perode especfic";
+ Text[ thai ] = "Determines the number of months in a specific period.";
};
String 2 // name of parameter 1 DiffMonths
{
@@ -286,24 +294,25 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Start date";
Text[ portuguese ] = "Start date";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "Start date";
Text[ dutch ] = "Begindatum";
Text[ french ] = "Date initiale";
Text[ spanish ] = "Fecha inicial";
- Text[ finnish ] = "Start date";
+ Text[ finnish ] = "Alkupivmr";
Text[ italian ] = "Data iniziale";
Text[ danish ] = "Startdato";
Text[ swedish ] = "Startdatum";
Text[ polish ] = "Data pocztkowa";
Text[ portuguese_brazilian ] = "Start date";
Text[ japanese ] = "開始日";
- Text[ korean ] = "시작일";
+ Text[ korean ] = "시작 날짜";
Text[ chinese_simplified ] = "start_date";
Text[ chinese_traditional ] = "start_date";
Text[ turkish ] = "Start date";
Text[ arabic ] = "Start date";
- Text[ catalan ] = "data inicial";
+ Text[ catalan ] = "Data d'inici";
+ Text[ thai ] = "Start date";
};
String 3 // description of parameter 1 DiffMonths
{
@@ -314,10 +323,10 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "First day of the period.";
Text[ russian ] = " .";
Text[ greek ] = "First day of the period.";
- Text[ dutch ] = "First day of the period.";
+ Text[ dutch ] = "Eerste dag van de periode.";
Text[ french ] = "Premier jour de la priode.";
Text[ spanish ] = "Primer da del periodo.";
- Text[ finnish ] = "First day of the period.";
+ Text[ finnish ] = "Kauden ensimminen piv";
Text[ italian ] = "Primo giorno del periodo.";
Text[ danish ] = "Frste dag i tidsperioden.";
Text[ swedish ] = "Frsta dagen i perioden.";
@@ -329,7 +338,8 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "時期的第一天。";
Text[ turkish ] = "First day of the period.";
Text[ arabic ] = "First day of the period.";
- Text[ catalan ] = "First day of the period.";
+ Text[ catalan ] = "Primer dia del perode.";
+ Text[ thai ] = "First day of the period.";
};
String 4 // name of parameter 2 DiffMonths
{
@@ -338,24 +348,25 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "End date";
Text[ portuguese ] = "End date";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "End date";
Text[ dutch ] = "Einddatum";
Text[ french ] = "Date de fin";
Text[ spanish ] = "Fecha final";
- Text[ finnish ] = "End date";
+ Text[ finnish ] = "Loppupivmr";
Text[ italian ] = "Data finale";
Text[ danish ] = "Slutdato";
Text[ swedish ] = "Slutdatum";
Text[ polish ] = "Data kocowa";
Text[ portuguese_brazilian ] = "End date";
Text[ japanese ] = "終了日";
- Text[ korean ] = "종료일";
+ Text[ korean ] = "최종 날짜";
Text[ chinese_simplified ] = "end_date";
Text[ chinese_traditional ] = "end_date";
Text[ turkish ] = "End date";
Text[ arabic ] = "End date";
- Text[ catalan ] = "data final";
+ Text[ catalan ] = "Data final";
+ Text[ thai ] = "วันที่สิ้นสุด";
};
String 5 // description of parameter 2 DiffMonths
{
@@ -366,10 +377,10 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Last day of the period.";
Text[ russian ] = " .";
Text[ greek ] = "Last day of the period.";
- Text[ dutch ] = "Last day of the period.";
+ Text[ dutch ] = "Laatste dag van de periode.";
Text[ french ] = "Dernier jour de la priode.";
Text[ spanish ] = "ltimo da del periodo.";
- Text[ finnish ] = "Last day of the period.";
+ Text[ finnish ] = "Kauden viimeinen piv";
Text[ italian ] = "Ultimo giorno del periodo";
Text[ danish ] = "Sidste dag i tidsperioden.";
Text[ swedish ] = "Sista dagen i perioden.";
@@ -381,7 +392,8 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "時期的最後一天。";
Text[ turkish ] = "Last day of the period.";
Text[ arabic ] = "Last day of the period.";
- Text[ catalan ] = "Last day of the period.";
+ Text[ catalan ] = "ltim dia del perode.";
+ Text[ thai ] = "Last day of the period.";
};
String 6 // name of parameter 3 DiffMonths
{
@@ -395,7 +407,7 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Type";
Text[ french ] = "Mode";
Text[ spanish ] = "Tipo";
- Text[ finnish ] = "Mode";
+ Text[ finnish ] = "Laji";
Text[ italian ] = "Tipo";
Text[ danish ] = "Type";
Text[ swedish ] = "Typ";
@@ -408,6 +420,7 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ turkish ] = "Mode";
Text[ arabic ] = "Mode";
Text[ catalan ] = "Mode";
+ Text[ thai ] = "Type";
};
String 7 // description of parameter 3 DiffMonths
{
@@ -416,12 +429,12 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Type of calculation: Type=0 means the time interval, Type=1 means calendar months.";
Text[ portuguese ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar months.";
- Text[ russian ] = " : =0 ; =1 .";
+ Text[ russian ] = " : =0 ; =1 .";
Text[ greek ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar months.";
- Text[ dutch ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar months.";
+ Text[ dutch ] = "Soort berekening: soort=0 voor aantal maanden in interval, soort=1 voor kalendermaanden.";
Text[ french ] = "Type de calcul : Mode=0 pour le nombre de mois dans l'intervalle, Mode=1 pour les mois du calendrier.";
Text[ spanish ] = "Tipo de calculacin: Tipo=0 para el nmero de meses, Tipo=1 para el mes del calendario.";
- Text[ finnish ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar months.";
+ Text[ finnish ] = "Laskennan laji: 0 on aikavli, 1 tarkoittaa kalenterikuukausia";
Text[ italian ] = "Tipo di calcolo: Tipo=0 indica il numero di mesi dell'intervallo, tipo=1 indica il mese.";
Text[ danish ] = "Beregningstype: Type=0 for mnedsantal i intervallet, type=1 for kalendermneder.";
Text[ swedish ] = "Typ av berkning: typ=0 fr mnadsantal i intervallet, typ=1 fr kalendermnader.";
@@ -433,7 +446,8 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "計算的類型:type=0 表示時期的月份數目,type=1 表示月份的序列數。";
Text[ turkish ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar months.";
Text[ arabic ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar months.";
- Text[ catalan ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar months.";
+ Text[ catalan ] = "Tipus de clcul: Mode=0 s l'interval de temps, mode=1 sn mesos de calendari.";
+ Text[ thai ] = "Type of calculation: Type=0 means the time interval, Type=1 means calendar months.";
};
};
@@ -446,24 +460,25 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Calculates the number of years in a specific period.";
Text[ portuguese ] = "Determines the number of years in a specific period.";
- Text[ russian ] = " .";
+ Text[ russian ] = " .";
Text[ greek ] = "Determines the number of years in a specific period.";
Text[ dutch ] = "Berekent het aantal jaren binnen een bepaalde periode.";
Text[ french ] = "Calcule le nombre d'annes dans une priode dtermine.";
Text[ spanish ] = "Calcula el nmero de aos en un determinado periodo.";
- Text[ finnish ] = "Determines the number of years in a specific period.";
+ Text[ finnish ] = "Laskee annetun aikavlin vuosien mrn";
Text[ italian ] = "Restituisce il numero di anni in un determinato periodo.";
Text[ danish ] = "Beregner antal r i en bestemt tidsperiode.";
Text[ swedish ] = "Berknar antalet r i en specifik period.";
Text[ polish ] = "Zwraca ilo lat w pewnym okresie czasu.";
Text[ portuguese_brazilian ] = "Determines the number of years in a specific period.";
Text[ japanese ] = "指定された期間内の年数を返します。";
- Text[ korean ] = "특정 기간 내 년수를 결정합니다.";
+ Text[ korean ] = "특정 기간 내 연도수를 계산합니다.";
Text[ chinese_simplified ] = "计算某一个周期内所包含的年数。";
Text[ chinese_traditional ] = "傳回某一時期的年份數目。";
Text[ turkish ] = "Determines the number of years in a specific period.";
Text[ arabic ] = "Determines the number of years in a specific period.";
- Text[ catalan ] = "Determines the number of years in a specific period.";
+ Text[ catalan ] = "Determina el nmero d'anys d'un perode especfic.";
+ Text[ thai ] = "Calculates the number of years in a specific period.";
};
String 2 // name of parameter 1 DiffYears
{
@@ -472,24 +487,25 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Start date";
Text[ portuguese ] = "Start date";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "Start date";
- Text[ dutch ] = "Start date";
+ Text[ dutch ] = "Begindatum";
Text[ french ] = "Date initiale";
Text[ spanish ] = "Fecha inicial";
- Text[ finnish ] = "Start date";
+ Text[ finnish ] = "Alkupivmr";
Text[ italian ] = "Data iniziale";
Text[ danish ] = "Startdato";
Text[ swedish ] = "Startdatum";
Text[ polish ] = "Data pocztkowa";
Text[ portuguese_brazilian ] = "Start date";
Text[ japanese ] = "開始日";
- Text[ korean ] = "시작일";
+ Text[ korean ] = "시작 날짜";
Text[ chinese_simplified ] = "start_date";
Text[ chinese_traditional ] = "start_date";
Text[ turkish ] = "Start date";
Text[ arabic ] = "Start date";
- Text[ catalan ] = "data inicial";
+ Text[ catalan ] = "Data d'inici";
+ Text[ thai ] = "Start date";
};
String 3 // description of parameter 1 DiffYears
{
@@ -503,7 +519,7 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Eerste dag van de periode.";
Text[ french ] = "Premier jour de la priode.";
Text[ spanish ] = "Primer da del periodo.";
- Text[ finnish ] = "First day of the period.";
+ Text[ finnish ] = "Kauden ensimminen piv";
Text[ italian ] = "Primo giorno del periodo.";
Text[ danish ] = "Frste dag i tidsperioden.";
Text[ swedish ] = "Frsta dagen i perioden.";
@@ -515,7 +531,8 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "時期的第一天。";
Text[ turkish ] = "First day of the period.";
Text[ arabic ] = "First day of the period.";
- Text[ catalan ] = "First day of the period.";
+ Text[ catalan ] = "Primer dia del perode.";
+ Text[ thai ] = "First day of the period";
};
String 4 // name of parameter 2 DiffYears
{
@@ -524,24 +541,25 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "End date";
Text[ portuguese ] = "End date";
- Text[ russian ] = "_";
+ Text[ russian ] = " ";
Text[ greek ] = "End date";
Text[ dutch ] = "Einddatum";
Text[ french ] = "Date de fin";
Text[ spanish ] = "Fecha final";
- Text[ finnish ] = "End date";
+ Text[ finnish ] = "Loppupivmr";
Text[ italian ] = "Data finale";
Text[ danish ] = "Slutdato";
Text[ swedish ] = "Slutdatum";
Text[ polish ] = "Data kocowa";
Text[ portuguese_brazilian ] = "End date";
Text[ japanese ] = "終了日";
- Text[ korean ] = "종료일";
+ Text[ korean ] = "최종 날짜";
Text[ chinese_simplified ] = "end_date";
Text[ chinese_traditional ] = "end_date";
Text[ turkish ] = "End date";
Text[ arabic ] = "End date";
- Text[ catalan ] = "data final";
+ Text[ catalan ] = "Data final";
+ Text[ thai ] = "วันที่สิ้นสุด";
};
String 5 // description of parameter 2 DiffYears
{
@@ -555,7 +573,7 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Laatste dag van de periode.";
Text[ french ] = "Dernier jour de la priode.";
Text[ spanish ] = "ltimo da del periodo.";
- Text[ finnish ] = "Last day of the period.";
+ Text[ finnish ] = "Kauden viimeinen piv";
Text[ italian ] = "Ultimo giorno del periodo.";
Text[ danish ] = "Sidste dag i tidsperioden.";
Text[ swedish ] = "Sista dagen i perioden.";
@@ -567,7 +585,8 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "時期的最後一天。";
Text[ turkish ] = "Last day of the period.";
Text[ arabic ] = "Last day of the period.";
- Text[ catalan ] = "Last day of the period.";
+ Text[ catalan ] = "ltim dia del perode.";
+ Text[ thai ] = "Last day of the period";
};
String 6 // name of parameter 3 DiffYears
{
@@ -581,7 +600,7 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Type";
Text[ french ] = "Mode";
Text[ spanish ] = "Tipo";
- Text[ finnish ] = "Mode";
+ Text[ finnish ] = "Laji";
Text[ italian ] = "Tipo";
Text[ danish ] = "Type";
Text[ swedish ] = "Typ";
@@ -594,6 +613,7 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ turkish ] = "Mode";
Text[ arabic ] = "Mode";
Text[ catalan ] = "Mode";
+ Text[ thai ] = "Type";
};
String 7 // description of parameter 3 DiffYears
{
@@ -602,24 +622,25 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Type of calculation: Type=0 means the time interval, Typee=1 means calendar years.";
Text[ portuguese ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar years.";
- Text[ russian ] = " : =0 ; =1 .";
+ Text[ russian ] = " : =0 ; =1 .";
Text[ greek ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar years.";
- Text[ dutch ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar years.";
+ Text[ dutch ] = "Soort berekening: soort=0 voor aantal jaren in interval, soort=1 voor kalenderjaren.";
Text[ french ] = "Type de calcul : Mode=0 pour le nombre d'annes dans l'intervalle, Mode=1 pour les annes du calendrier.";
Text[ spanish ] = "Tipo de calculacin: Tipo=0 significa el nmero de ao, Tipo=1 los aos del calendario.";
- Text[ finnish ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar years.";
+ Text[ finnish ] = "Laskennan laji: 0 on aikavli, 1 tarkoittaa kalenterivuosia";
Text[ italian ] = "Tipo di calcolo: Tipo=0 indica il numero di anni dell'intervallo, tipo=1 indica l'anno solare.";
Text[ danish ] = "Beregningstype: Type=0 for rsantal i intervallet, type=1 for kalenderr.";
Text[ swedish ] = "Typ av berkning: typ=0 fr rsantal i intervallet, typ=1 fr kalenderr.";
Text[ polish ] = "Rodzaj obliczania : Typ=0 oznacza liczb lat, Typ=1 - lata kalendarzowe.";
Text[ portuguese_brazilian ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar years.";
Text[ japanese ] = "戻り値の単位と種類: 単位=0 は期間内の年数、単位=1 はカレンダーの年。";
- Text[ korean ] = "계산 유형: 모드=0은 시간 간격의 평균을 구하며 모드=1은 달력 년수의 평균을 구합니다. ";
+ Text[ korean ] = "계산 유형: 모드=0은 시간 간격으로 모드=1은 달력 연수로 계산합니다. ";
Text[ chinese_simplified ] = "计算类型:Type=0 表示该周期内包含的年数,Type=1 表示年序列数。";
Text[ chinese_traditional ] = "計算的類型:type=0 表示時期的年份數目,type=1 表示年份的序列數。";
Text[ turkish ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar years.";
Text[ arabic ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar years.";
- Text[ catalan ] = "Type of calculation: Mode=0 means the time interval, mode=1 means calendar years.";
+ Text[ catalan ] = "Tipus de clcul: Mode=0 s l'interval de temps, mode=1 sn anys de calendari.";
+ Text[ thai ] = "Type of calculation: Type=0 means the time interval, Typee=1 means calendar years.";
};
};
@@ -632,24 +653,25 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ language_user1 ] = " ";
Text[ english_us ] = "Returns 1 (TRUE) if the date is a day of a leap year, otherwise 0 (FALSE).";
Text[ portuguese ] = "Returns 1 (TRUE) if the date is a day of a leap year, otherwise 0 (FALSE).";
- Text[ russian ] = " 1 (), , 0 ().";
+ Text[ russian ] = " 1 (), , 0 ().";
Text[ greek ] = "Returns 1 (TRUE) if the date is a day of a leap year, otherwise 0 (FALSE).";
- Text[ dutch ] = "Geeft als resultaat 1 (WAAR) als de aangegeven datum in een schrikkeljaar valt, anders 0 (ONWAAR).";
+ Text[ dutch ] = "Geeft als resultaat 1 (WAAR) als de opgegeven datum in een schrikkeljaar valt, anders 0 (ONWAAR).";
Text[ french ] = "Renvoie 1 (VRAI) si l'anne d'une date est bissextile, sinon 0 (FAUX).";
Text[ spanish ] = "Devuelve 1 (VERDADERO) si la fecha indicada es ao bisiesto, de lo contrario 0 (FALSO).";
- Text[ finnish ] = "Returns 1 (TRUE) if the date is a day of a leap year, otherwise 0 (FALSE).";
+ Text[ finnish ] = "Palauttaa arvon 1 (TOSI/TRUE), jos pivmr on karkausvuoden piv. Muutoin palauttaa arvon 0 (EPTOSI/FALSE)";
Text[ italian ] = "Restituisce 1 (VERO) se la data indicata cade in un anno bisestile oppure 0 (FALSO).";
Text[ danish ] = "Returnerer 1 (SANDT), hvis den angivne dato ligger i et skudr, ellers 0 (FALSK).";
Text[ swedish ] = "Returnerar 1 (SANT) om det angivna datumet ligger i ett skottr, annars 0 (FALSKT).";
Text[ polish ] = "Zwraca 1 (PRAWDA), jeeli podana data przypada na rok przestpny. W innym wypadku zwraca 0 (FASZ).";
Text[ portuguese_brazilian ] = "Returns 1 (TRUE) if the date is a day of a leap year, otherwise 0 (FALSE).";
Text[ japanese ] = "指定した日付が閏年に当たる場合は 1 (TRUE) を返します。そうでない場合は 0 (FALSE) を返します。";
- Text[ korean ] = "날짜가 윤년 중에 날이면 1 (TRUE)를, 그렇지 않으면 0 (FALSE)를 반환합니다.";
+ Text[ korean ] = "날짜가 윤년에 들어 있으면 1(TRUE)을, 아니면 0(FALSE)을 구합니다.";
Text[ chinese_simplified ] = "反馈 1 (TRUE),若该日期是闰年内的一个日期,否则反馈 0 (FALSE)。";
Text[ chinese_traditional ] = "如果是閏年,傳回1(TRUE),反之傳回0(FALSE)。";
Text[ turkish ] = "Returns 1 (TRUE) if the date is a day of a leap year, otherwise 0 (FALSE).";
Text[ arabic ] = "Returns 1 (TRUE) if the date is a day of a leap year, otherwise 0 (FALSE).";
- Text[ catalan ] = "Returns 1 (TRUE) if the date is a day of a leap year, otherwise 0 (FALSE).";
+ Text[ catalan ] = "Torna 1 (TRUE) si s un dia d'un any de trasps, si no 0 (FALSE).";
+ Text[ thai ] = "Returns 1 (TRUE) if the date is a day of a leap year, otherwise 0 (FALSE).";
};
String 2 // name of parameter 1 IsLeapYear
{
@@ -663,7 +685,7 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Datum";
Text[ french ] = "Date";
Text[ spanish ] = "Fecha";
- Text[ finnish ] = "Date";
+ Text[ finnish ] = "Pivmr";
Text[ italian ] = "Data ";
Text[ danish ] = "Dato";
Text[ swedish ] = "Datum";
@@ -675,7 +697,8 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "date";
Text[ turkish ] = "Date";
Text[ arabic ] = "Date";
- Text[ catalan ] = "Data de compra";
+ Text[ catalan ] = "Data";
+ Text[ thai ] = "Date";
};
String 3 // description of parameter 1 IsLeapYear
{
@@ -689,19 +712,20 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Een willekeurige dag in het gewenste jaar.";
Text[ french ] = "Un jour quelconque dans l'anne en question.";
Text[ spanish ] = "Cualquier da en un ao deseado.";
- Text[ finnish ] = "Any day in the desired year.";
+ Text[ finnish ] = "Mik tahansa halutun vuoden piv";
Text[ italian ] = "Un giorno qualsiasi nell'anno indicato.";
Text[ danish ] = "En vilkrlig dag i det nskede r.";
Text[ swedish ] = "En valfri dag p det nskade ret.";
Text[ polish ] = "Dowolny dzie danego roku.";
Text[ portuguese_brazilian ] = "Any day in the desired year.";
Text[ japanese ] = "任意の年月日。";
- Text[ korean ] = "원하는 해의 모든 날짜.";
+ Text[ korean ] = "임의 연도 일";
Text[ chinese_simplified ] = "指定的一年中的任意一天。";
Text[ chinese_traditional ] = "某一年份之中的任意一天。";
Text[ turkish ] = "Any day in the desired year.";
Text[ arabic ] = "Any day in the desired year.";
- Text[ catalan ] = "Any day in the desired year.";
+ Text[ catalan ] = "Qualsevol dia de l'any desitjat.";
+ Text[ thai ] = "Any day in the desired year";
};
};
@@ -716,22 +740,23 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Returns the number of days of the month in relation to the date entered.";
Text[ russian ] = " , .";
Text[ greek ] = "Returns the number of days of the month in relation to the date entered.";
- Text[ dutch ] = "Geeft als resultaat het aantal dagen van de maand waarin de aangegeven datum valt.";
+ Text[ dutch ] = "Geeft als resultaat het aantal dagen van de maand waarin de opgegeven datum valt.";
Text[ french ] = "Renvoie le nombre de jours dans le mois en relation avec la date indique.";
Text[ spanish ] = "Devuelve la cantidad de das del mes en el que figure la fecha indicada.";
- Text[ finnish ] = "Returns the number of days of the month in relation to the date entered.";
+ Text[ finnish ] = "Palauttaa kuukauden pivien mrn, joina annettu piv ilmenee";
Text[ italian ] = "Restituisce il numero di giorni del mese in riferimento alla data indicata.";
Text[ danish ] = "Returnerer antal dage i den mned, hvori den angivne dato ligger.";
Text[ swedish ] = "Returnerar antalet dagar i mnaden som ingr i det angivna datumet.";
Text[ polish ] = "Zwraca liczb dni miesica, na ktry przypada podana data.";
Text[ portuguese_brazilian ] = "Returns the number of days of the month in relation to the date entered.";
Text[ japanese ] = "入力した日付を含むその月の日数を返します。";
- Text[ korean ] = "입력된 날짜와 관련된 달의 일수를 반환합니다.";
+ Text[ korean ] = "입력된 날짜와 관련된 달의 일수를 구합니다.";
Text[ chinese_simplified ] = "反馈指定的日期所在月份的天数。";
Text[ chinese_traditional ] = "傳回指定日期的月份所有的天數。";
Text[ turkish ] = "Returns the number of days of the month in relation to the date entered.";
Text[ arabic ] = "Returns the number of days of the month in relation to the date entered.";
- Text[ catalan ] = "Returns the number of days of the month in relation to the date entered.";
+ Text[ catalan ] = "Torna el nombre de dies del mes.";
+ Text[ thai ] = "Returns the number of days of the month in which the date entered occurs";
};
String 2 // name of parameter 1 DaysInMonth
{
@@ -745,7 +770,7 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Datum";
Text[ french ] = "Date";
Text[ spanish ] = "Fecha";
- Text[ finnish ] = "Date";
+ Text[ finnish ] = "Pivmr";
Text[ italian ] = "Data";
Text[ danish ] = "Dato";
Text[ swedish ] = "Datum";
@@ -757,7 +782,8 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "date";
Text[ turkish ] = "Date";
Text[ arabic ] = "Date";
- Text[ catalan ] = "Data de compra";
+ Text[ catalan ] = "Date";
+ Text[ thai ] = "Date";
};
String 3 // description of parameter 1 DaysInMonth
{
@@ -771,7 +797,7 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ dutch ] = "Een willekeurige dag in de gewenste maand.";
Text[ french ] = "Un jour quelconque dans le mois en question.";
Text[ spanish ] = "Cualquier da en un mes deseado.";
- Text[ finnish ] = "Any day in the desired month.";
+ Text[ finnish ] = "Mik tahansa halutun kuukauden piv";
Text[ italian ] = "Un giorno qualsiasi del mese indicato.";
Text[ danish ] = "En vilkrlig dag i den nskede mned.";
Text[ swedish ] = "En valfri dag i den nskade mnaden.";
@@ -783,7 +809,8 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "某一月份的任意的一天。";
Text[ turkish ] = "Any day in the desired month.";
Text[ arabic ] = "Any day in the desired month.";
- Text[ catalan ] = "Any day in the desired month.";
+ Text[ catalan ] = "Qualsevol dia del mes";
+ Text[ thai ] = "Any day in the desired month";
};
};
@@ -798,22 +825,23 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Returns the number of days of the year in relation to the date entered.";
Text[ russian ] = " , .";
Text[ greek ] = "Returns the number of days of the year in relation to the date entered.";
- Text[ dutch ] = "Returns the number of days of the year in relation to the date entered.";
+ Text[ dutch ] = "Retourneert het aantal dagen van het jaar dat de opgegeven datum bevat.";
Text[ french ] = "Renvoie le nombre de jours dans l'anne en relation avec la date indique.";
Text[ spanish ] = "Devuelve la cantidad de das del ao en el que figure la fecha indicada.";
- Text[ finnish ] = "Returns the number of days of the year in relation to the date entered.";
+ Text[ finnish ] = "Palauttaa vuoden pivien mrn, joina annettu piv ilmenee";
Text[ italian ] = "Restituisce il numero di giorni dell'anno in riferimento alla data indicata.";
Text[ danish ] = "Returnerer antal dage i det r, hvori den angivne dato ligger.";
Text[ swedish ] = "Returnerar antalet dagar p ret som ingr i det angivna datumet.";
Text[ polish ] = "Zwraca liczb dni w roku, na ktry przypada podana data.";
Text[ portuguese_brazilian ] = "Returns the number of days of the year in relation to the date entered.";
Text[ japanese ] = "入力した日付を含むその年の日数を返します。";
- Text[ korean ] = "입력된 날짜와 관련된 해의 일수를 반환합니다.";
+ Text[ korean ] = "입력된 날짜와 관련된 연도의 일수를 구합니다.";
Text[ chinese_simplified ] = "反馈指定的日期所在年份的天数。";
Text[ chinese_traditional ] = "傳回指定日期的年份所有的天數。";
Text[ turkish ] = "Returns the number of days of the year in relation to the date entered.";
Text[ arabic ] = "Returns the number of days of the year in relation to the date entered.";
- Text[ catalan ] = "Returns the number of days of the year in relation to the date entered.";
+ Text[ catalan ] = "Torna el nombre de dies de l'any en relaci amb la data.";
+ Text[ thai ] = "Returns the number of days of the year in which the date entered occurs.";
};
String 2 // name of parameter 1 DaysInYear
{
@@ -824,10 +852,10 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Date";
Text[ russian ] = "";
Text[ greek ] = "Date";
- Text[ dutch ] = "Date";
+ Text[ dutch ] = "Datum";
Text[ french ] = "Date";
Text[ spanish ] = "Fecha";
- Text[ finnish ] = "Date";
+ Text[ finnish ] = "Pivmr";
Text[ italian ] = "Data";
Text[ danish ] = "Dato";
Text[ swedish ] = "Datum";
@@ -839,7 +867,8 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "date";
Text[ turkish ] = "Date";
Text[ arabic ] = "Date";
- Text[ catalan ] = "Data de compra";
+ Text[ catalan ] = "Data";
+ Text[ thai ] = "Date";
};
String 3 // description of parameter 1 DaysInYear
{
@@ -850,22 +879,23 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Any day in the desired year.";
Text[ russian ] = " .";
Text[ greek ] = "Any day in the desired year.";
- Text[ dutch ] = "Any day in the desired year.";
+ Text[ dutch ] = "Een willekeurige dag in het gewenste jaar.";
Text[ french ] = "Un jour quelconque dans l'anne en question.";
Text[ spanish ] = "Cualquier da en un ao deseado.";
- Text[ finnish ] = "Any day in the desired year.";
+ Text[ finnish ] = "Mik tahansa halutun vuoden piv";
Text[ italian ] = "Un giorno qualsiasi dell'anno indicato.";
Text[ danish ] = "En vilkrlig dag i det nskede r.";
Text[ swedish ] = "En valfri dag p det nskade ret.";
Text[ polish ] = "Dowolny dzie danego roku.";
Text[ portuguese_brazilian ] = "Any day in the desired year.";
Text[ japanese ] = "任意の年月日。";
- Text[ korean ] = "원하는 해의 모든 날짜.";
+ Text[ korean ] = "임의 연도 일";
Text[ chinese_simplified ] = "指定的一年中的任意一天。";
Text[ chinese_traditional ] = "某一年份的任意的一天。";
Text[ turkish ] = "Any day in the desired year.";
Text[ arabic ] = "Any day in the desired year.";
- Text[ catalan ] = "Any day in the desired year.";
+ Text[ catalan ] = "Qualsevol dia de l'any desitjat.";
+ Text[ thai ] = "Any day in the desired year";
};
};
@@ -880,22 +910,23 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Returns the number of weeks of the year in relation to the date entered.";
Text[ russian ] = " , .";
Text[ greek ] = "Returns the number of weeks of the year in relation to the date entered.";
- Text[ dutch ] = "Returns the number of weeks of the year in relation to the date entered.";
+ Text[ dutch ] = "Retourneert het aantal weken van het jaar dat de opgegeven datum bevat.";
Text[ french ] = "Renvoie le nombre de semaines dans l'anne en relation avec la date indique.";
Text[ spanish ] = "Devuelve el nmero de semanas del ao en el que figure la fecha indicada.";
- Text[ finnish ] = "Returns the number of weeks of the year in relation to the date entered.";
+ Text[ finnish ] = "Palauttaa vuoden viikkojen mrn, joina annettu piv ilmenee";
Text[ italian ] = "Restituisce il numero di settimane dell'anno in riferimento alla data indicata.";
Text[ danish ] = "Returnerer antal uger i det r, hvori den angivne dato ligger.";
Text[ swedish ] = "Returnerar antalet veckor p ret som ingr i det angivna datumet.";
Text[ polish ] = "Zwraca liczb tygodni w roku, na ktry przypada podana data.";
Text[ portuguese_brazilian ] = "Returns the number of weeks of the year in relation to the date entered.";
Text[ japanese ] = "入力した日付を含むその年の週数を返します。";
- Text[ korean ] = "입력된 날짜와 관련된 해의 주일 수를 반환합니다.";
+ Text[ korean ] = "입력된 날짜와 관련된 연도의 주일 수를 구합니다.";
Text[ chinese_simplified ] = "反馈指定的日期所在年份具有的星期数。";
Text[ chinese_traditional ] = "傳回指定日期的月份所有的週數目。";
Text[ turkish ] = "Returns the number of weeks of the year in relation to the date entered.";
Text[ arabic ] = "Returns the number of weeks of the year in relation to the date entered.";
- Text[ catalan ] = "Returns the number of weeks of the year in relation to the date entered.";
+ Text[ catalan ] = "Torna el nmero de setmanes de l'any en relaci amb la data.";
+ Text[ thai ] = "Returns the number of weeks of the year in which the date entered occurs";
};
String 2 // name of parameter 1 WeeksInYear
{
@@ -906,10 +937,10 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Date";
Text[ russian ] = "";
Text[ greek ] = "Date";
- Text[ dutch ] = "Date";
+ Text[ dutch ] = "Datum";
Text[ french ] = "Date";
Text[ spanish ] = "Fecha";
- Text[ finnish ] = "Date";
+ Text[ finnish ] = "Pivmr";
Text[ italian ] = "Data";
Text[ danish ] = "Dato";
Text[ swedish ] = "Datum";
@@ -921,7 +952,8 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "date";
Text[ turkish ] = "Date";
Text[ arabic ] = "Date";
- Text[ catalan ] = "Data de compra";
+ Text[ catalan ] = "Data";
+ Text[ thai ] = "Date";
};
String 3 // description of parameter 1 WeeksInYear
{
@@ -932,22 +964,23 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Any day in the desired year.";
Text[ russian ] = " .";
Text[ greek ] = "Any day in the desired year.";
- Text[ dutch ] = "Any day in the desired year.";
+ Text[ dutch ] = "Een willekeurige dag in het gewenste jaar.";
Text[ french ] = "Un jour quelconque dans l'anne en question.";
Text[ spanish ] = "Cualquier da en un ao deseado.";
- Text[ finnish ] = "Any day in the desired year.";
+ Text[ finnish ] = "Mik tahansa halutun vuoden piv";
Text[ italian ] = "Un giorno qualsiasi dell'anno indicato.";
Text[ danish ] = "En vilkrlig dag i det nskede r.";
Text[ swedish ] = "En valfri dag p det nskade ret.";
Text[ polish ] = "Dowolny dzie danego roku.";
Text[ portuguese_brazilian ] = "Any day in the desired year.";
Text[ japanese ] = "任意の年月日。";
- Text[ korean ] = "원하는 해의 모든 날짜.";
+ Text[ korean ] = "인의 연도 일";
Text[ chinese_simplified ] = "指定的一年中的任意一天。";
Text[ chinese_traditional ] = "某一年份的任意的一天。";
Text[ turkish ] = "Any day in the desired year.";
Text[ arabic ] = "Any day in the desired year.";
- Text[ catalan ] = "Any day in the desired year.";
+ Text[ catalan ] = "Qualsevol setmana de l'any desitjat.";
+ Text[ thai ] = "Any day in the desired year";
};
};
@@ -962,10 +995,10 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Encrypts or decrypts a text using the ROT13 algorithm.";
Text[ russian ] = " ROT13.";
Text[ greek ] = "Encrypts or decrypts a text using the ROT13 algorithm.";
- Text[ dutch ] = "Encrypts or decrypts a text using the ROT13 algorithm.";
+ Text[ dutch ] = "Codeert of decodeert een tekst met behulp van de ROT13-algoritme.";
Text[ french ] = "Chiffre ou dchiffre un texte en utilisant l'algorithme ROT13.";
Text[ spanish ] = "Codifica y descodifica un texto con la ayuda del algoritmo ROT13.";
- Text[ finnish ] = "Encrypts or decrypts a text using the ROT13 algorithm.";
+ Text[ finnish ] = "Koodaa tai purkaa tekstin koodin kytten ROT13-algoritmia";
Text[ italian ] = "Codifica o decodifica un testo tramite l'algoritmo ROT13.";
Text[ danish ] = "Krypterer eller dekrypterer en tekst ved hjlp af ROT13-algoritmen.";
Text[ swedish ] = "Krypterar text eller omvandlar krypterad text till klartext med hjlp av ROT13-algoritmen.";
@@ -977,7 +1010,8 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "透過ROT13程式加密或解密一個文字。";
Text[ turkish ] = "Encrypts or decrypts a text using the ROT13 algorithm.";
Text[ arabic ] = "Encrypts or decrypts a text using the ROT13 algorithm.";
- Text[ catalan ] = "Encrypts or decrypts a text using the ROT13 algorithm.";
+ Text[ catalan ] = "Encripta o desencripta un text utilitzant l'algorisme ROT13.";
+ Text[ thai ] = "Encrypts or decrypts a text using the ROT13 algorithm";
};
String 2 // name of parameter 1 Rot13
{
@@ -1004,6 +1038,7 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ turkish ] = "Metin";
Text[ arabic ] = "";
Text[ catalan ] = "Text";
+ Text[ thai ] = "ข้อความ";
};
String 3 // description of parameter 1 Rot13
{
@@ -1014,10 +1049,10 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ portuguese ] = "Text to be encrypted or encrypted text.";
Text[ russian ] = " , .";
Text[ greek ] = "Text to be encrypted or encrypted text.";
- Text[ dutch ] = "Text to be encrypted or encrypted text.";
+ Text[ dutch ] = "Te coderen of gecodeerde tekst.";
Text[ french ] = "Texte chiffrer ou dchiffrer";
Text[ spanish ] = "Texto codificado o a codificar.";
- Text[ finnish ] = "Text to be encrypted or encrypted text.";
+ Text[ finnish ] = "Koodattava teksti tai jo koodattu teksti";
Text[ italian ] = "Testo da codificare o decodificare.";
Text[ danish ] = "Tekst, som skal krypteres, eller som er krypteret.";
Text[ swedish ] = "Text som ska krypteras eller text som r krypterad.";
@@ -1029,7 +1064,8 @@ Resource RID_DATE_FUNCTION_DESCRIPTIONS
Text[ chinese_traditional ] = "要加密或解密的文字。";
Text[ turkish ] = "Text to be encrypted or encrypted text.";
Text[ arabic ] = "Text to be encrypted or encrypted text.";
- Text[ catalan ] = "Text to be encrypted or encrypted text.";
+ Text[ catalan ] = "Text per ser encriptat o text encriptat.";
+ Text[ thai ] = "Text to be encrypted or text already encrypted";
};
};
};
@@ -1046,10 +1082,10 @@ Resource RID_DATE_FUNCTION_NAMES
Text[ portuguese ] = "WEEKS";
Text[ russian ] = "";
Text[ greek ] = "WEEKS";
- Text[ dutch ] = "WEEKS";
+ Text[ dutch ] = "WEKEN";
Text[ french ] = "SEMAINES";
Text[ spanish ] = "SEMANAS";
- Text[ finnish ] = "WEEKS";
+ Text[ finnish ] = "VIIKOT";
Text[ italian ] = "SETTIMANE";
Text[ danish ] = "UGER";
Text[ swedish ] = "ANTALVECKOR";
@@ -1061,7 +1097,8 @@ Resource RID_DATE_FUNCTION_NAMES
Text[ chinese_traditional ] = "WEEKS";
Text[ turkish ] = "WEEKS";
Text[ arabic ] = "WEEKS";
- Text[ catalan ] = "Setmanes";
+ Text[ catalan ] = "WEEKS";
+ Text[ thai ] = "สัปดาห์";
};
String DATE_FUNCNAME_DiffMonths
{
@@ -1072,10 +1109,10 @@ Resource RID_DATE_FUNCTION_NAMES
Text[ portuguese ] = "MONTHS";
Text[ russian ] = "";
Text[ greek ] = "MONTHS";
- Text[ dutch ] = "MONTHS";
+ Text[ dutch ] = "MAANDEN";
Text[ french ] = "MOIS";
Text[ spanish ] = "MESES";
- Text[ finnish ] = "MONTHS";
+ Text[ finnish ] = "KUUKAUDET";
Text[ italian ] = "MESI";
Text[ danish ] = "MNEDER";
Text[ swedish ] = "ANTALMNADER";
@@ -1087,7 +1124,8 @@ Resource RID_DATE_FUNCTION_NAMES
Text[ chinese_traditional ] = "MONTHS";
Text[ turkish ] = "MONTHS";
Text[ arabic ] = "MONTHS";
- Text[ catalan ] = "mesos";
+ Text[ catalan ] = "MONTHS";
+ Text[ thai ] = "เดือน";
};
String DATE_FUNCNAME_DiffYears
{
@@ -1098,10 +1136,10 @@ Resource RID_DATE_FUNCTION_NAMES
Text[ portuguese ] = "YEARS";
Text[ russian ] = "";
Text[ greek ] = "YEARS";
- Text[ dutch ] = "YEARS";
+ Text[ dutch ] = "JAREN";
Text[ french ] = "ANNEES";
Text[ spanish ] = "AOS";
- Text[ finnish ] = "YEARS";
+ Text[ finnish ] = "VUODET";
Text[ italian ] = "ANNI";
Text[ danish ] = "R";
Text[ swedish ] = "ANTALR";
@@ -1113,7 +1151,8 @@ Resource RID_DATE_FUNCTION_NAMES
Text[ chinese_traditional ] = "YEARS";
Text[ turkish ] = "YEARS";
Text[ arabic ] = "YEARS";
- Text[ catalan ] = "Anys";
+ Text[ catalan ] = "YEARS";
+ Text[ thai ] = "ปี";
};
String DATE_FUNCNAME_IsLeapYear
{
@@ -1122,12 +1161,12 @@ Resource RID_DATE_FUNCTION_NAMES
Text[ language_user1 ] = " ";
Text[ english_us ] = "ISLEAPYEAR";
Text[ portuguese ] = "ISLEAPYEAR";
- Text[ russian ] = "";
+ Text[ russian ] = "";
Text[ greek ] = "ISLEAPYEAR";
- Text[ dutch ] = "ISLEAPYEAR";
+ Text[ dutch ] = "ISSCHRIKKELJAAR";
Text[ french ] = "ESTBISSEXTILE";
Text[ spanish ] = "ESAOBISIESTO";
- Text[ finnish ] = "ISLEAPYEAR";
+ Text[ finnish ] = "ONKARK_VUOSI";
Text[ italian ] = "ANNO.BISESTILE";
Text[ danish ] = "ERSKUDR";
Text[ swedish ] = "RSKOTTR";
@@ -1140,6 +1179,7 @@ Resource RID_DATE_FUNCTION_NAMES
Text[ turkish ] = "ISLEAPYEAR";
Text[ arabic ] = "ISLEAPYEAR";
Text[ catalan ] = "IsLeapYear";
+ Text[ thai ] = "เป็นปีอธิกวาร";
};
String DATE_FUNCNAME_DaysInMonth
{
@@ -1150,10 +1190,10 @@ Resource RID_DATE_FUNCTION_NAMES
Text[ portuguese ] = "DAYSINMONTH";
Text[ russian ] = "";
Text[ greek ] = "DAYSINMONTH";
- Text[ dutch ] = "DAYSINMONTH";
+ Text[ dutch ] = "DAGENINMAAND";
Text[ french ] = "JOURSDANSMOIS";
Text[ spanish ] = "DASENMES";
- Text[ finnish ] = "DAYSINMONTH";
+ Text[ finnish ] = "PIVT_KUUKAUSI";
Text[ italian ] = "GIORNI.MESE";
Text[ danish ] = "DAGEMNED";
Text[ swedish ] = "DAGARIMNADEN";
@@ -1166,6 +1206,7 @@ Resource RID_DATE_FUNCTION_NAMES
Text[ turkish ] = "DAYSINMONTH";
Text[ arabic ] = "DAYSINMONTH";
Text[ catalan ] = "DaysInMonth";
+ Text[ thai ] = "วันในเดือน";
};
String DATE_FUNCNAME_DaysInYear
{
@@ -1176,10 +1217,10 @@ Resource RID_DATE_FUNCTION_NAMES
Text[ portuguese ] = "DAYSINYEAR";
Text[ russian ] = "";
Text[ greek ] = "DAYSINYEAR";
- Text[ dutch ] = "DAYSINYEAR";
+ Text[ dutch ] = "DAGENINJAAR";
Text[ french ] = "JOURSDANSANNEE";
Text[ spanish ] = "DASENAO";
- Text[ finnish ] = "DAYSINYEAR";
+ Text[ finnish ] = "PIVT_VUOSI";
Text[ italian ] = "GIORNI.ANNO";
Text[ danish ] = "DAGER";
Text[ swedish ] = "DAGARPRET";
@@ -1192,6 +1233,7 @@ Resource RID_DATE_FUNCTION_NAMES
Text[ turkish ] = "DAYSINYEAR";
Text[ arabic ] = "DAYSINYEAR";
Text[ catalan ] = "DaysInYear";
+ Text[ thai ] = "วันในปี";
};
String DATE_FUNCNAME_WeeksInYear
{
@@ -1202,10 +1244,10 @@ Resource RID_DATE_FUNCTION_NAMES
Text[ portuguese ] = "WEEKSINYEAR";
Text[ russian ] = "";
Text[ greek ] = "WEEKSINYEAR";
- Text[ dutch ] = "WEEKSINYEAR";
+ Text[ dutch ] = "WEKENINJAAR";
Text[ french ] = "SEMAINESDANSANNEE";
Text[ spanish ] = "SEMANASENAO";
- Text[ finnish ] = "WEEKSINYEAR";
+ Text[ finnish ] = "VIIKOT_VUOSI";
Text[ italian ] = "SETTIMANE.ANNO";
Text[ danish ] = "UGERR";
Text[ swedish ] = "VECKORPERR";
@@ -1218,6 +1260,7 @@ Resource RID_DATE_FUNCTION_NAMES
Text[ turkish ] = "WEEKSINYEAR";
Text[ arabic ] = "WEEKSINYEAR";
Text[ catalan ] = "WeeksInYear";
+ Text[ thai ] = "สัปดาห์ในปี";
};
String DATE_FUNCNAME_Rot13
{
@@ -1244,6 +1287,7 @@ Resource RID_DATE_FUNCTION_NAMES
Text[ turkish ] = "ROT13";
Text[ arabic ] = "ROT13";
Text[ catalan ] = "ROT13";
+ Text[ thai ] = "ROT13";
};
};
@@ -1330,3 +1374,6 @@ Resource RID_DATE_DEFFUNCTION_NAMES
+
+
+