1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| const translation = {
| tags: {
| news: 'Nouvelles',
| design: 'Concevoir',
| videos: 'Vidéos',
| agent: 'Agent',
| finance: 'Finance',
| entertainment: 'Divertissement',
| travel: 'Voyager',
| productivity: 'Productivité',
| search: 'Rechercher',
| education: 'Éducation',
| business: 'Affaire',
| weather: 'Temps',
| image: 'Image',
| social: 'Social',
| medical: 'Médical',
| other: 'Autre',
| utilities: 'Utilitaires',
| },
| searchTags: 'Mots-clés de recherche',
| allTags: 'Tous les mots-clés',
| }
|
| export default translation
|
|