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

Commit 0f32923

Browse files
authored
Merge pull request #975 from coletivoEITA/develop
Added two strings to translate
2 parents 532198d + 75d2b23 commit 0f32923

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

src/components/views/rooms/EventTile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ module.exports = WithMatrixClient(React.createClass({
481481
}
482482

483483
const editButton = (
484-
<span className="mx_EventTile_editButton" title="Options" onClick={this.onEditClicked} />
484+
<span className="mx_EventTile_editButton" title={ _t("Options") } onClick={this.onEditClicked} />
485485
);
486486
let e2e;
487487
// cosmetic padlocks:

src/components/views/rooms/TopUnreadMessagesBar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ module.exports = React.createClass({
3737
<img src="img/scrollto.svg" width="24" height="24"
3838
alt={ _t('Scroll to unread messages') }
3939
title={ _t('Scroll to unread messages') }/>
40-
Jump to first unread message.
40+
{ _t("Jump to first unread message.") }
4141
</div>
4242
<img className="mx_TopUnreadMessagesBar_close mx_filterFlipColor"
4343
src="img/cancel.svg" width="18" height="18"

src/i18n/strings/en_EN.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -315,6 +315,7 @@
315315
"joined": "joined",
316316
"%(targetName)s joined the room.": "%(targetName)s joined the room.",
317317
"Joins room with given alias": "Joins room with given alias",
318+
"Jump to first unread message.": "Jump to first unread message.",
318319
"%(senderName)s kicked %(targetName)s.": "%(senderName)s kicked %(targetName)s.",
319320
"Kick": "Kick",
320321
"Kicks user with given id": "Kicks user with given id",
@@ -679,6 +680,7 @@
679680
"Desktop specific": "Desktop specific",
680681
"Analytics": "Analytics",
681682
"Opt out of analytics": "Opt out of analytics",
683+
"Options": "Options",
682684
"Riot collects anonymous analytics to allow us to improve the application.": "Riot collects anonymous analytics to allow us to improve the application.",
683685
"Please select the destination room for this message": "Please select the destination room for this message",
684686
"Passphrases must match": "Passphrases must match",

src/i18n/strings/pt_BR.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -605,6 +605,7 @@
605605
"'%(alias)s' is not a valid format for an address": "'%(alias)s' não é um formato válido para um endereço",
606606
"'%(alias)s' is not a valid format for an alias": "'%(alias)s' não é um formato válido para um alias",
607607
"Join Room": "Ingressar na sala",
608+
"Jump to first unread message.": "Ir diretamente para a primeira das mensagens não lidas.",
608609
"Kick": "Remover",
609610
"Level": "Nível",
610611
"Local addresses for this room:": "Endereço local desta sala:",
@@ -728,6 +729,7 @@
728729
"%(senderDisplayName)s removed the room name.": "%(senderDisplayName)s apagou o nome da sala.",
729730
"Analytics": "Análise",
730731
"Opt out of analytics": "Sair da ferramenta de análise",
732+
"Options": "Opções",
731733
"Riot collects anonymous analytics to allow us to improve the application.": "Riot coleta informações anônimas de uso para nos permitir melhorar o sistema.",
732734
"Passphrases must match": "As senhas têm que ser iguais",
733735
"Passphrase must not be empty": "A senha não pode estar vazia",

0 commit comments

Comments
 (0)