Add “No emoji found” to i18n [Close #52]

nolan/hinaloe-test
Etienne Lemay 2017-04-18 09:50:38 -04:00
parent c1bd9ea52c
commit 046d489d7f
3 changed files with 3 additions and 1 deletions

View File

@ -41,6 +41,7 @@ import { Picker } from 'emoji-mart'
#### I18n
```js
search: 'Search',
notfound: 'No emoji found',
categories: {
search: 'Search Results',
recent: 'Frequently Used',

View File

@ -140,7 +140,7 @@ export default class Category extends React.Component {
/>
<span className='emoji-mart-no-results-label'>
No emoji found
{i18n.notfound}
</span>
</div>
}

View File

@ -14,6 +14,7 @@ const SEARCH_CATEGORY = { name: 'Search', emojis: null, anchor: false }
const I18N = {
search: 'Search',
notfound: 'No emoji found',
categories: {
search: 'Search Results',
recent: 'Frequently Used',