summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorJohnny_M <klasse@partyheld.de>2017-10-03 11:52:49 +0200
committerEike Rathke <erack@redhat.com>2017-10-12 20:49:27 +0200
commit0c1ccab0d559b01a69ba5b1b598bc2c885ffa8d1 (patch)
treefa0ab9a37815752d7885fc7d9a2ae0ffc22b71f6 /sc
parent9261939c6f1566d00c2403460cb42482b0f5b5d6 (diff)
Translate German variable names in Calc (financial)
These names of variables correspond to German function names in Calc and were translated to their English equivalents. For used translations, see, e.g., https://translations.documentfoundation.org/de/libo54_help/translate/#search=RMZ&sfields=target&soptions=exact,case Note: This is an alignment of the function declaration to the definitions in /core/sc/source/core/tool/interpr2.cxx, some of which were translated on f8b9b8ec5686c1453e335d895aa78faba5fdf268, while others were already in English. Change-Id: Ifb01992e42af707a08a02139ffb8313d3b92701c Reviewed-on: https://gerrit.libreoffice.org/43077 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'sc')
-rw-r--r--sc/source/core/inc/interpre.hxx26
1 files changed, 13 insertions, 13 deletions
diff --git a/sc/source/core/inc/interpre.hxx b/sc/source/core/inc/interpre.hxx
index fa257e8c6f04..bd9008d47bde 100644
--- a/sc/source/core/inc/interpre.hxx
+++ b/sc/source/core/inc/interpre.hxx
@@ -771,32 +771,32 @@ private:
void ScMIRR();
void ScISPMT();
- static double ScGetBw(double fInterest, double fZzr, double fRmz,
- double fZw, bool bPayInAdvance);
+ static double ScGetBw(double fInterest, double fNper, double fPmt,
+ double fFv, bool bPayInAdvance);
void ScPV();
void ScSYD();
- static double ScGetGDA(double fWert, double fRest, double fDauer,
- double fPeriode, double fFactor);
+ static double ScGetGDA(double fValue, double fRest, double fTimeLength,
+ double fPeriod, double fFactor);
void ScDDB();
void ScDB();
- static double ScInterVDB(double fWert,double fRest,double fDauer,double fDauer1,
- double fPeriode,double fFactor);
+ static double ScInterVDB(double fValue, double fRest, double fTimeLength, double fTimeLength1,
+ double fPeriod, double fFactor);
void ScVDB();
void ScPDuration();
void ScSLN();
- static double ScGetRmz(double fInterest, double fZzr, double fBw,
- double fZw, bool bPayInAdvance);
+ static double ScGetRmz(double fInterest, double fNper, double fPv,
+ double fFv, bool bPayInAdvance);
void ScPMT();
void ScRRI();
- static double ScGetZw(double fInterest, double fZzr, double fRmz,
- double fBw, bool bFlag);
+ static double ScGetZw(double fInterest, double fNper, double fPmt,
+ double fPv, bool bFlag);
void ScFV();
void ScNper();
static bool RateIteration(double fNper, double fPayment, double fPv,
- double fFv, bool bPayType, double& fGuess);
+ double fFv, bool bPayType, double& fGuess);
void ScRate();
- double ScGetCompoundInterest(double fInterest, double fZr, double fZzr, double fBw,
- double fZw, bool bPayInAdvance, double& fRmz);
+ double ScGetCompoundInterest(double fInterest, double fPer, double fNper, double fPv,
+ double fFv, bool bPayInAdvance, double& fPmt);
void ScIpmt();
void ScPpmt();
void ScCumIpmt();