File size: 1,509 Bytes
98fbc6d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import type { TranslationStrings } from '../types';

const todo: TranslationStrings = {
  'todo.subtab.packing': 'Lista de equipaje',
  'todo.subtab.todo': 'Por hacer',
  'todo.completed': 'completado(s)',
  'todo.filter.all': 'Todo',
  'todo.filter.open': 'Abierto',
  'todo.filter.done': 'Hecho',
  'todo.uncategorized': 'Sin categoría',
  'todo.namePlaceholder': 'Nombre de la tarea',
  'todo.descriptionPlaceholder': 'Descripción (opcional)',
  'todo.unassigned': 'Sin asignar',
  'todo.noCategory': 'Sin categoría',
  'todo.hasDescription': 'Con descripción',
  'todo.addItem': 'Nueva tarea',
  'todo.sidebar.sortBy': 'Ordenar por',
  'todo.priority': 'Prioridad',
  'todo.newCategoryLabel': 'nueva',
  'todo.newCategory': 'Nombre de la categoría',
  'todo.addCategory': 'Añadir categoría',
  'todo.newItem': 'Nueva tarea',
  'todo.empty': 'Aún no hay tareas. ¡Añade una tarea para empezar!',
  'todo.filter.my': 'Mis tareas',
  'todo.filter.overdue': 'Vencida',
  'todo.sidebar.tasks': 'Tareas',
  'todo.sidebar.categories': 'Categorías',
  'todo.detail.title': 'Tarea',
  'todo.detail.description': 'Descripción',
  'todo.detail.category': 'Categoría',
  'todo.detail.dueDate': 'Fecha límite',
  'todo.detail.assignedTo': 'Asignado a',
  'todo.detail.delete': 'Eliminar',
  'todo.detail.save': 'Guardar cambios',
  'todo.detail.create': 'Crear tarea',
  'todo.detail.priority': 'Prioridad',
  'todo.detail.noPriority': 'Ninguna',
  'todo.sortByPrio': 'Prioridad',
};
export default todo;