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: {
| image: 'Imagen',
| agent: 'Agente',
| medical: 'Médico',
| weather: 'Tiempo',
| design: 'Diseño',
| videos: 'Vídeos',
| education: 'Educación',
| finance: 'Finanzas',
| entertainment: 'Diversión',
| social: 'Social',
| travel: 'Viajar',
| utilities: 'Utilidades',
| search: 'Buscar',
| news: 'Noticia',
| business: 'Negocio',
| other: 'Otro',
| productivity: 'Productividad',
| },
| allTags: 'Todas las etiquetas',
| searchTags: 'Etiquetas de búsqueda',
| }
|
| export default translation
|
|