2016-11-16 15:55:48 +01:00
|
|
|
/*
|
|
|
|
This file is part of TALER
|
|
|
|
(C) 2016 GNUnet e.V.
|
|
|
|
|
|
|
|
TALER is free software; you can redistribute it and/or modify it under the
|
|
|
|
terms of the GNU General Public License as published by the Free Software
|
|
|
|
Foundation; either version 3, or (at your option) any later version.
|
|
|
|
|
|
|
|
TALER is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
|
|
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
|
|
TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*/
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
2016-11-27 22:13:24 +01:00
|
|
|
import {default as Jed} from "src/vendor/jed";
|
|
|
|
import {strings} from "src/i18n/strings";
|
2016-11-16 15:55:48 +01:00
|
|
|
|
2016-11-27 22:13:24 +01:00
|
|
|
console.log("jed:", Jed);
|
2016-11-16 15:55:48 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Information about the last two i18n results, used by plural()
|
|
|
|
* 2-element array, each element contains { stringFound: boolean, pluralValue: number }
|
|
|
|
*/
|
2016-11-27 22:13:24 +01:00
|
|
|
const i18nResult = [] as any;
|
2016-11-16 15:55:48 +01:00
|
|
|
|
2016-11-27 22:13:24 +01:00
|
|
|
let lang: string;
|
|
|
|
try {
|
|
|
|
lang = chrome.i18n.getUILanguage();
|
|
|
|
} catch (e) {
|
|
|
|
lang = "en";
|
|
|
|
console.warn("i18n default language not available");
|
|
|
|
}
|
|
|
|
|
|
|
|
let jed = new Jed(strings[lang]);
|
2016-11-16 15:55:48 +01:00
|
|
|
|
|
|
|
|
|
|
|
class PluralNumber {
|
|
|
|
n: number;
|
|
|
|
|
|
|
|
constructor(n: number) {
|
|
|
|
this.n = n;
|
|
|
|
}
|
|
|
|
|
|
|
|
valueOf () {
|
|
|
|
return this.n;
|
|
|
|
}
|
|
|
|
|
|
|
|
toString () {
|
|
|
|
return this.n.toString();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert template strings to a msgid
|
|
|
|
*/
|
2016-11-27 22:13:24 +01:00
|
|
|
function toI18nString(strings: ReadonlyArray<string>) {
|
2016-11-16 15:55:48 +01:00
|
|
|
let str = "";
|
|
|
|
for (let i = 0; i < strings.length; i++) {
|
|
|
|
str += strings[i];
|
|
|
|
if (i < strings.length - 1) {
|
|
|
|
str += "%"+ (i+1) +"$s";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Use the first number in values to determine plural form
|
|
|
|
*/
|
|
|
|
function getPluralValue (values: any) {
|
|
|
|
let n = null;
|
|
|
|
for (let i = 0; i < values.length; i++) {
|
|
|
|
if ("number" === typeof values[i] || values[i] instanceof PluralNumber) {
|
|
|
|
if (null === n || values[i] instanceof PluralNumber) {
|
|
|
|
n = values[i].valueOf();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (null === n) ? 1 : n;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2016-11-26 17:27:33 +01:00
|
|
|
* Store information about the result of the last to i18n().
|
2016-11-16 15:55:48 +01:00
|
|
|
*
|
|
|
|
* @param i18nString the string template as found in i18n.strings
|
|
|
|
* @param pluralValue value returned by getPluralValue()
|
|
|
|
*/
|
|
|
|
function setI18nResult (i18nString: string, pluralValue: number) {
|
|
|
|
i18nResult[1] = i18nResult[0];
|
|
|
|
i18nResult[0] = {
|
2016-11-27 22:13:24 +01:00
|
|
|
stringFound: i18nString in strings[lang].locale_data[lang],
|
2016-11-16 15:55:48 +01:00
|
|
|
pluralValue: pluralValue
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Internationalize a string template with arbitrary serialized values.
|
|
|
|
*/
|
2016-11-27 22:13:24 +01:00
|
|
|
export function str(strings: TemplateStringsArray, ...values: any[]) {
|
|
|
|
let str = toI18nString(strings);
|
|
|
|
let n = getPluralValue(values);
|
2016-11-16 15:55:48 +01:00
|
|
|
let tr = jed.translate(str).ifPlural(n, str).fetch(...values);
|
|
|
|
|
2016-11-27 22:13:24 +01:00
|
|
|
setI18nResult(str, n);
|
2016-11-16 15:55:48 +01:00
|
|
|
return tr;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Pluralize based on first numeric parameter in the template.
|
|
|
|
* @todo The plural argument is used for extraction by pogen.js
|
|
|
|
*/
|
2016-11-27 22:13:24 +01:00
|
|
|
function plural(singular: any, plural: any) {
|
2016-11-16 15:55:48 +01:00
|
|
|
if (i18nResult[1].stringFound) { // string found in translation file?
|
|
|
|
// 'singular' has the correctly translated & pluralized text
|
|
|
|
return singular;
|
|
|
|
} else {
|
|
|
|
// return appropriate form based on value found in 'singular'
|
|
|
|
return (1 == i18nResult[1].pluralValue) ? singular : plural;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
interface TranslateSwitchProps {
|
|
|
|
target: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a number that is used to determine the plural form for a template.
|
|
|
|
*/
|
2016-11-27 22:13:24 +01:00
|
|
|
function number(n : number) {
|
2016-11-16 15:55:48 +01:00
|
|
|
return new PluralNumber (n);
|
|
|
|
};
|
|
|
|
|
2016-11-17 02:58:27 +01:00
|
|
|
function stringifyChildren(children: any): string {
|
|
|
|
let n = 1;
|
|
|
|
let ss = React.Children.map(children, (c) => {
|
|
|
|
if (typeof c === "string") {
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
return `%${n++}$s`;
|
|
|
|
});
|
|
|
|
return ss.join("");
|
|
|
|
}
|
|
|
|
|
2016-11-23 00:33:34 +01:00
|
|
|
|
|
|
|
interface TranslateProps {
|
|
|
|
/**
|
|
|
|
* Component that the translated element should be wrapped in.
|
|
|
|
* Defaults to "div".
|
|
|
|
*/
|
|
|
|
wrap?: any;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Props to give to the wrapped component.
|
|
|
|
*/
|
|
|
|
wrapProps?: any;
|
|
|
|
}
|
|
|
|
|
2016-11-27 22:13:24 +01:00
|
|
|
|
|
|
|
export class Translate extends React.Component<TranslateProps,void> {
|
2016-11-16 15:55:48 +01:00
|
|
|
render(): JSX.Element {
|
2016-11-17 02:58:27 +01:00
|
|
|
let s = stringifyChildren(this.props.children);
|
|
|
|
let tr = jed.ngettext(s, s, 1).split(/%(\d+)\$s/).filter((e: any, i: number) => i % 2 == 0);
|
|
|
|
let childArray = React.Children.toArray(this.props.children!);
|
|
|
|
for (let i = 0; i < childArray.length - 1; ++i) {
|
|
|
|
if ((typeof childArray[i]) == "string" && (typeof childArray[i+1]) == "string") {
|
|
|
|
childArray[i+i] = childArray[i] as string + childArray[i+1] as string;
|
|
|
|
childArray.splice(i,1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
let result = [];
|
|
|
|
while (childArray.length > 0) {
|
|
|
|
let x = childArray.shift();
|
|
|
|
if (x === undefined) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (typeof x === "string") {
|
|
|
|
let t = tr.shift();
|
|
|
|
result.push(t);
|
|
|
|
} else {
|
|
|
|
result.push(x);
|
|
|
|
}
|
|
|
|
}
|
2016-11-23 00:33:34 +01:00
|
|
|
if (!this.props.wrap) {
|
|
|
|
return <div>{result}</div>;
|
|
|
|
}
|
|
|
|
return React.createElement(this.props.wrap, this.props.wrapProps, result);
|
2016-11-16 15:55:48 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-27 22:13:24 +01:00
|
|
|
|
|
|
|
export class TranslateSwitch extends React.Component<TranslateSwitchProps,void>{
|
2016-11-16 15:55:48 +01:00
|
|
|
render(): JSX.Element {
|
2016-11-23 00:33:34 +01:00
|
|
|
let singular: React.ReactElement<TranslationPluralProps> | undefined;
|
|
|
|
let plural: React.ReactElement<TranslationPluralProps> | undefined;
|
2016-11-16 15:55:48 +01:00
|
|
|
let children = this.props.children;
|
|
|
|
if (children) {
|
|
|
|
React.Children.forEach(children, (child: any) => {
|
2016-11-27 22:13:24 +01:00
|
|
|
if (child.type == TranslatePlural) {
|
2016-11-16 15:55:48 +01:00
|
|
|
plural = child;
|
|
|
|
}
|
2016-11-27 22:13:24 +01:00
|
|
|
if (child.type == TranslateSingular) {
|
2016-11-16 15:55:48 +01:00
|
|
|
singular = child;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
if ((!singular) || (!plural)) {
|
|
|
|
console.error("translation not found");
|
|
|
|
return React.createElement("span", {}, ["translation not found"]);
|
|
|
|
}
|
2016-11-17 02:58:27 +01:00
|
|
|
singular.props.target = this.props.target;
|
|
|
|
plural.props.target = this.props.target;;
|
2016-11-27 22:13:24 +01:00
|
|
|
// We're looking up the translation based on the
|
|
|
|
// singular, even if we must use the plural form.
|
|
|
|
return singular;
|
2016-11-16 15:55:48 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-27 22:13:24 +01:00
|
|
|
|
2016-11-23 00:33:34 +01:00
|
|
|
interface TranslationPluralProps {
|
2016-11-17 02:58:27 +01:00
|
|
|
target: number;
|
2016-11-16 15:55:48 +01:00
|
|
|
}
|
|
|
|
|
2016-11-27 22:13:24 +01:00
|
|
|
|
|
|
|
export class TranslatePlural extends React.Component<TranslationPluralProps,void> {
|
2016-11-16 15:55:48 +01:00
|
|
|
render(): JSX.Element {
|
2016-11-17 02:58:27 +01:00
|
|
|
let s = stringifyChildren(this.props.children);
|
|
|
|
let tr = jed.ngettext(s, s, 1).split(/%(\d+)\$s/).filter((e: any, i: number) => i % 2 == 0);
|
|
|
|
let childArray = React.Children.toArray(this.props.children!);
|
|
|
|
for (let i = 0; i < childArray.length - 1; ++i) {
|
|
|
|
if ((typeof childArray[i]) == "string" && (typeof childArray[i+1]) == "string") {
|
|
|
|
childArray[i+i] = childArray[i] as string + childArray[i+1] as string;
|
|
|
|
childArray.splice(i,1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
let result = [];
|
|
|
|
while (childArray.length > 0) {
|
|
|
|
let x = childArray.shift();
|
|
|
|
if (x === undefined) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (typeof x === "string") {
|
|
|
|
let t = tr.shift();
|
|
|
|
result.push(t);
|
|
|
|
} else {
|
|
|
|
result.push(x);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return <div>{result}</div>;
|
2016-11-16 15:55:48 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-17 02:58:27 +01:00
|
|
|
|
2016-11-27 22:13:24 +01:00
|
|
|
export class TranslateSingular extends React.Component<TranslationPluralProps,void> {
|
2016-11-16 15:55:48 +01:00
|
|
|
render(): JSX.Element {
|
2016-11-17 02:58:27 +01:00
|
|
|
let s = stringifyChildren(this.props.children);
|
|
|
|
let tr = jed.ngettext(s, s, 1).split(/%(\d+)\$s/).filter((e: any, i: number) => i % 2 == 0);
|
|
|
|
let childArray = React.Children.toArray(this.props.children!);
|
|
|
|
for (let i = 0; i < childArray.length - 1; ++i) {
|
|
|
|
if ((typeof childArray[i]) == "string" && (typeof childArray[i+1]) == "string") {
|
|
|
|
childArray[i+i] = childArray[i] as string + childArray[i+1] as string;
|
|
|
|
childArray.splice(i,1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
let result = [];
|
|
|
|
while (childArray.length > 0) {
|
|
|
|
let x = childArray.shift();
|
|
|
|
if (x === undefined) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (typeof x === "string") {
|
|
|
|
let t = tr.shift();
|
|
|
|
result.push(t);
|
|
|
|
} else {
|
|
|
|
result.push(x);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return <div>{result}</div>;
|
2016-11-16 15:55:48 +01:00
|
|
|
}
|
|
|
|
}
|