[Libreoffice-commits] core.git: sc/source

Johnny_M klasse at partyheld.de
Thu Oct 12 18:49:48 UTC 2017


 sc/source/core/inc/interpre.hxx |   26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)

New commits:
commit 0c1ccab0d559b01a69ba5b1b598bc2c885ffa8d1
Author: Johnny_M <klasse at partyheld.de>
Date:   Tue Oct 3 11:52:49 2017 +0200

    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 at libreoffice.org>
    Reviewed-by: Eike Rathke <erack at redhat.com>

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();


More information about the Libreoffice-commits mailing list