mirror of
https://github.com/oxen-io/session-desktop.git
synced 2023-12-14 02:12:57 +01:00
fix input translation for searches with android translations
This commit is contained in:
parent
30937f4ae3
commit
d4254b0bda
3 changed files with 4 additions and 4 deletions
|
@ -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"
|
||||
|
|
|
@ -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()}
|
||||
|
|
|
@ -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}
|
||||
/>
|
||||
)}
|
||||
|
|
Loading…
Reference in a new issue