fix input translation for searches with android translations

This commit is contained in:
Audric Ackermann 2020-08-13 16:06:30 +10:00
parent 30937f4ae3
commit d4254b0bda
No known key found for this signature in database
GPG key ID: 999F434D76324AD4
3 changed files with 4 additions and 4 deletions

View file

@ -1992,8 +1992,8 @@
"newSession": {
"message": "New Session"
},
"searchForAKeyPhrase": {
"message": "Search for a key phrase or contact"
"searchFor...": {
"message": "Search for conversations, contacts, and messages"
},
"enterSessionID": {
"message": "Enter Session ID"

View file

@ -241,7 +241,7 @@ export class LeftPaneMessageSection extends React.Component<Props, State> {
<SessionSearchInput
searchString={this.props.searchTerm}
onChange={this.updateSearchBound}
placeholder={window.i18n('searchForAKeyPhrase')}
placeholder={window.i18n('searchFor...')}
/>
{this.renderList()}
{this.renderBottomButtons()}

View file

@ -241,7 +241,7 @@ export class SessionClosableOverlay extends React.Component<Props, State> {
<UserSearchDropdown
searchTerm={searchTerm || ''}
updateSearch={updateSearch}
placeholder={window.i18n('searchForAKeyPhrase')}
placeholder={window.i18n('searchFor...')}
searchResults={searchResults}
/>
)}