diff --git a/src/i18n.tsx b/src/i18n.tsx index 8a31b2d91..656bb3a05 100644 --- a/src/i18n.tsx +++ b/src/i18n.tsx @@ -109,9 +109,7 @@ interface TranslateProps { export class Translate extends React.Component { render(): JSX.Element { let s = stringifyChildren(this.props.children); - console.log(`string "${s}"`); let tr = jed.ngettext(s, s, 1).split(/%(\d+)\$s/).filter((e: any, i: number) => i % 2 == 0); - console.log(`tr "${JSON.stringify(tr)}"`); 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") {