Browse Source

Allowed the emoji picker 'Search...' string to be localized (#2294)

closed-social-glitch-2
Ashley 7 years ago
committed by Eugen
parent
commit
6af21daac9
2 changed files with 4 additions and 2 deletions
  1. +3
    -2
      app/assets/javascripts/components/features/compose/components/emoji_picker_dropdown.jsx
  2. +1
    -0
      app/assets/javascripts/components/locales/en.jsx

+ 3
- 2
app/assets/javascripts/components/features/compose/components/emoji_picker_dropdown.jsx View File

@ -4,7 +4,8 @@ import PropTypes from 'prop-types';
import { defineMessages, injectIntl } from 'react-intl';
const messages = defineMessages({
emoji: { id: 'emoji_button.label', defaultMessage: 'Insert emoji' }
emoji: { id: 'emoji_button.label', defaultMessage: 'Insert emoji' },
emoji_search: { id: 'emoji_button.search', defaultMessage: 'Search...' }
});
const settings = {
@ -46,7 +47,7 @@ class EmojiPickerDropdown extends React.PureComponent {
</DropdownTrigger>
<DropdownContent className='dropdown__left light'>
<EmojiPicker emojione={settings} onChange={this.handleChange} search={true} />
<EmojiPicker emojione={settings} onChange={this.handleChange} searchPlaceholder={intl.formatMessage(messages.emoji_search)} search={true} />
</DropdownContent>
</Dropdown>
);

+ 1
- 0
app/assets/javascripts/components/locales/en.jsx View File

@ -41,6 +41,7 @@ const en = {
"compose_form.spoiler_placeholder": "Content warning",
"compose_form.spoiler": "Hide text behind warning",
"emoji_button.label": "Insert emoji",
"emoji_button.search": "Search...",
"empty_column.community": "The local timeline is empty. Write something publicly to get the ball rolling!",
"empty_column.hashtag": "There is nothing in this hashtag yet.",
"empty_column.home.public_timeline": "the public timeline",

Loading…
Cancel
Save