Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 853427e

Browse files
authored
Merge pull request #1014 from matrix-org/t3chguy/random_fix_1
typo, missing import and mis-casing
2 parents 9e0aca5 + 31d94f3 commit 853427e

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

src/components/views/dialogs/ChatCreateOrReuseDialog.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ limitations under the License.
1717
import React from 'react';
1818
import sdk from '../../../index';
1919
import dis from '../../../dispatcher';
20+
import { _t } from '../../../languageHandler';
2021
import MatrixClientPeg from '../../../MatrixClientPeg';
2122
import DMRoomMap from '../../../utils/DMRoomMap';
2223
import AccessibleButton from '../elements/AccessibleButton';
@@ -86,7 +87,7 @@ export default class ChatCreateOrReuseDialog extends React.Component {
8687
<div className="mx_RoomTile_avatar">
8788
<img src="img/create-big.svg" width="26" height="26" />
8889
</div>
89-
<div className={labelClasses}><i>{_("Start new chat")}</i></div>
90+
<div className={labelClasses}><i>{_t("Start new chat")}</i></div>
9091
</AccessibleButton>;
9192

9293
const BaseDialog = sdk.getComponent('views.dialogs.BaseDialog');

src/i18n/strings/de_DE.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -738,7 +738,7 @@
738738
"You must join the room to see its files": "Du musst dem Raum beitreten, um die Raum-Dateien sehen zu können",
739739
"Server may be unavailable, overloaded, or you hit a bug.": "Server ist nicht verfügbar, überlastet oder du bist auf einen Fehler gestoßen.",
740740
"Reject all %(invitedRooms)s invites": "Alle %(invitedRooms)s Einladungen ablehnen",
741-
"Start new Chat": "Starte neuen Chat",
741+
"Start new chat": "Starte neuen Chat",
742742
"Guest users can't invite users. Please register.": "Gäste können keine Nutzer einladen. Bitte registrieren.",
743743
"Failed to invite": "Einladen fehlgeschlagen",
744744
"Failed to invite user": "Einladen des Nutzers fehlgeschlagen",

src/i18n/strings/en_EN.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@
746746
"The export file will be protected with a passphrase. You should enter the passphrase here, to decrypt the file.": "The export file will be protected with a passphrase. You should enter the passphrase here, to decrypt the file.",
747747
"You must join the room to see its files": "You must join the room to see its files",
748748
"Reject all %(invitedRooms)s invites": "Reject all %(invitedRooms)s invites",
749-
"Start new Chat": "Start new Chat",
749+
"Start new chat": "Start new chat",
750750
"Guest users can't invite users. Please register.": "Guest users can't invite users. Please register.",
751751
"Failed to invite": "Failed to invite",
752752
"Failed to invite user": "Failed to invite user",

src/i18n/strings/fr.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -694,7 +694,7 @@
694694
"The export file will be protected with a passphrase. You should enter the passphrase here, to decrypt the file.": "Le fichier exporté est protégé par une phrase secrète. Vous devez entrer cette phrase secrète ici pour décrypter le fichier.",
695695
"You must join the room to see its files": "Vous devez joindre le salon pour voir ses fichiers",
696696
"Reject all %(invitedRooms)s invites": "Rejeter la totalité des %(invitedRooms)s invitations",
697-
"Start new Chat": "Démarrer une nouvelle conversation",
697+
"Start new chat": "Démarrer une nouvelle conversation",
698698
"Guest users can't invite users. Please register.": "Les visiteurs ne peuvent inviter d’autres utilisateurs. Merci de vous enregistrer.",
699699
"Failed to invite": "Echec de l'invitation",
700700
"Failed to invite user": "Echec lors de l'invitation de l'utilisateur",

src/i18n/strings/pt.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -742,7 +742,7 @@
742742
"The export file will be protected with a passphrase. You should enter the passphrase here, to decrypt the file.": "O arquivo exportado será protegido com uma senha. Você deverá inserir a senha aqui para poder descriptografar o arquivo futuramente.",
743743
"You must join the room to see its files": "Você precisa ingressar na sala para ver seus arquivos",
744744
"Reject all %(invitedRooms)s invites": "Rejeitar todos os %(invitedRooms)s convites",
745-
"Start new Chat": "Iniciar nova conversa",
745+
"Start new chat": "Iniciar nova conversa",
746746
"Guest users can't invite users. Please register.": "Visitantes não podem convidar usuárias(os) registradas(os). Favor registrar.",
747747
"Failed to invite": "Falha ao enviar o convite",
748748
"Failed to invite user": "Falha ao convidar a(o) usuária(o)",

src/i18n/strings/pt_BR.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -742,7 +742,7 @@
742742
"The export file will be protected with a passphrase. You should enter the passphrase here, to decrypt the file.": "O arquivo exportado será protegido com uma senha. Você deverá inserir a senha aqui para poder descriptografar o arquivo futuramente.",
743743
"You must join the room to see its files": "Você precisa ingressar na sala para ver seus arquivos",
744744
"Reject all %(invitedRooms)s invites": "Rejeitar todos os %(invitedRooms)s convites",
745-
"Start new Chat": "Iniciar nova conversa",
745+
"Start new chat": "Iniciar nova conversa",
746746
"Guest users can't invite users. Please register.": "Visitantes não podem convidar usuárias(os) registradas(os). Favor registrar.",
747747
"Failed to invite": "Falha ao enviar o convite",
748748
"Failed to invite user": "Falha ao convidar a(o) usuária(o)",

0 commit comments

Comments
 (0)