Fix title not being translated (#166)

This commit is contained in:
Jorge Maldonado Ventura 2023-06-09 11:49:31 +02:00 committed by GitHub
parent cb4e876313
commit 93db6d7024
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 6 additions and 9 deletions

View file

@ -3,8 +3,6 @@ import { AppDetails } from "./app-details";
import { Helmet } from "inferno-helmet"; import { Helmet } from "inferno-helmet";
import { i18n } from "../i18next"; import { i18n } from "../i18next";
const title = i18n.t("apps_title");
export class Apps extends Component<any, any> { export class Apps extends Component<any, any> {
constructor(props: any, context: any) { constructor(props: any, context: any) {
super(props, context); super(props, context);
@ -15,6 +13,7 @@ export class Apps extends Component<any, any> {
} }
render() { render() {
const title = i18n.t("apps_title");
return ( return (
<div> <div>
<Helmet title={title}> <Helmet title={title}>

View file

@ -2,13 +2,12 @@ import { Component } from "inferno";
import { Helmet } from "inferno-helmet"; import { Helmet } from "inferno-helmet";
import { i18n } from "../i18next"; import { i18n } from "../i18next";
const title = i18n.t("contact_title");
export class Contact extends Component<any, any> { export class Contact extends Component<any, any> {
constructor(props: any, context: any) { constructor(props: any, context: any) {
super(props, context); super(props, context);
} }
render() { render() {
const title = i18n.t("contact_title");
return ( return (
<div> <div>
<Helmet title={title}> <Helmet title={title}>

View file

@ -7,7 +7,6 @@ import { translators } from "../translations/translators";
import { languagesAll, countries } from "countries-list"; import { languagesAll, countries } from "countries-list";
import { isBrowser } from "../utils"; import { isBrowser } from "../utils";
const title = i18n.t("support_title");
const avatarSize = 40; const avatarSize = 40;
const bannerWidth = 240; const bannerWidth = 240;
const bannerHeight = 101; const bannerHeight = 101;
@ -92,6 +91,7 @@ export class Donate extends Component<any, any> {
} }
render() { render() {
const title = i18n.t("support_title");
return ( return (
<div> <div>
<Helmet title={title}> <Helmet title={title}>

View file

@ -4,14 +4,14 @@ import { i18n } from "../i18next";
import { instance_stats } from "../instance_stats"; import { instance_stats } from "../instance_stats";
import { numToSI } from "../utils"; import { numToSI } from "../utils";
const title = i18n.t("join_title");
export class Instances extends Component<any, any> { export class Instances extends Component<any, any> {
constructor(props: any, context: any) { constructor(props: any, context: any) {
super(props, context); super(props, context);
} }
render() { render() {
const title = i18n.t("join_title");
var recommended_instances = instance_stats.recommended[i18n.language]; var recommended_instances = instance_stats.recommended[i18n.language];
if (!recommended_instances) { if (!recommended_instances) {
recommended_instances = instance_stats.recommended["en"]; recommended_instances = instance_stats.recommended["en"];

View file

@ -6,8 +6,6 @@ import { i18n } from "../i18next";
import { T } from "inferno-i18next"; import { T } from "inferno-i18next";
import { getDocsLanguage, isBrowser } from "../utils"; import { getDocsLanguage, isBrowser } from "../utils";
const title = i18n.t("lemmy_title");
export class Main extends Component<any, any> { export class Main extends Component<any, any> {
constructor(props: any, context: any) { constructor(props: any, context: any) {
super(props, context); super(props, context);
@ -40,6 +38,7 @@ export class Main extends Component<any, any> {
} }
render() { render() {
const title = i18n.t("lemmy_title");
return ( return (
<div> <div>
<Helmet title={title}> <Helmet title={title}>