File size: 1,523 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 bagagem',
  'todo.subtab.todo': 'A fazer',
  'todo.completed': 'concluído(s)',
  'todo.filter.all': 'Todos',
  'todo.filter.open': 'Aberto',
  'todo.filter.done': 'Concluído',
  'todo.uncategorized': 'Sem categoria',
  'todo.namePlaceholder': 'Nome da tarefa',
  'todo.descriptionPlaceholder': 'Descrição (opcional)',
  'todo.unassigned': 'Não atribuído',
  'todo.noCategory': 'Sem categoria',
  'todo.hasDescription': 'Com descrição',
  'todo.addItem': 'Nova tarefa',
  'todo.sidebar.sortBy': 'Ordenar por',
  'todo.priority': 'Prioridade',
  'todo.newCategoryLabel': 'nova',
  'todo.newCategory': 'Nome da categoria',
  'todo.addCategory': 'Adicionar categoria',
  'todo.newItem': 'Nova tarefa',
  'todo.empty': 'Nenhuma tarefa ainda. Adicione uma tarefa para começar!',
  'todo.filter.my': 'Minhas tarefas',
  'todo.filter.overdue': 'Atrasada',
  'todo.sidebar.tasks': 'Tarefas',
  'todo.sidebar.categories': 'Categorias',
  'todo.detail.title': 'Tarefa',
  'todo.detail.description': 'Descrição',
  'todo.detail.category': 'Categoria',
  'todo.detail.dueDate': 'Data de vencimento',
  'todo.detail.assignedTo': 'Atribuído a',
  'todo.detail.delete': 'Excluir',
  'todo.detail.save': 'Salvar alterações',
  'todo.detail.create': 'Criar tarefa',
  'todo.detail.priority': 'Prioridade',
  'todo.detail.noPriority': 'Nenhuma',
  'todo.sortByPrio': 'Prioridade',
};
export default todo;