taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit db0d204a3ca3e1fba7d652fe70b2412e3e30d231
parent 9cb9d2d3b00c671ee7144eda274406141950640c
Author: Florian Dold <florian.dold@gmail.com>
Date:   Wed, 16 Nov 2016 22:28:15 +0100

fix translation stub

Diffstat:
Msrc/i18n.tsx | 19++++---------------
1 file changed, 4 insertions(+), 15 deletions(-)

diff --git a/src/i18n.tsx b/src/i18n.tsx @@ -232,22 +232,11 @@ i18n.TranslateSwitch = class extends React.Component<TranslateSwitchProps,void>{ console.error("translation not found"); return React.createElement("span", {}, ["translation not found"]); } - if ("object" !== typeof jed) { - if (this.props.target == 1) { - return singular; - } else { - return plural; - } + if (this.props.target == 1) { + return singular; } else { - let tr = jed.ngettext(str, str, n).split(/%(\d+)\$s/); - let parts: any[] = []; - if (this.props.target == 1) { - singular.props = null; - return singular - } else { - let parts: any[] = []; - return parts; - } + return plural; + } } } }