mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-19 13:21:46 +00:00
126f2df21b
* chore: move i18n to shared package * chore: move server translations to shared package and apply linter and prettier on entire shared package
76 lines
3.1 KiB
TypeScript
76 lines
3.1 KiB
TypeScript
import type { TranslationStrings } from '../types';
|
|
|
|
const collab: TranslationStrings = {
|
|
'collab.tabs.chat': 'Chat',
|
|
'collab.tabs.notes': 'Notas',
|
|
'collab.tabs.polls': 'Enquetes',
|
|
'collab.whatsNext.title': 'Próximos passos',
|
|
'collab.whatsNext.today': 'Hoje',
|
|
'collab.whatsNext.tomorrow': 'Amanhã',
|
|
'collab.whatsNext.empty': 'Nenhuma atividade próxima',
|
|
'collab.whatsNext.until': 'até',
|
|
'collab.whatsNext.emptyHint': 'Atividades com horário aparecerão aqui',
|
|
'collab.chat.send': 'Enviar',
|
|
'collab.chat.placeholder': 'Digite uma mensagem...',
|
|
'collab.chat.empty': 'Inicie a conversa',
|
|
'collab.chat.emptyHint':
|
|
'As mensagens são compartilhadas com todos os membros da viagem',
|
|
'collab.chat.emptyDesc':
|
|
'Compartilhe ideias, planos e atualizações com o grupo',
|
|
'collab.chat.today': 'Hoje',
|
|
'collab.chat.yesterday': 'Ontem',
|
|
'collab.chat.deletedMessage': 'apagou uma mensagem',
|
|
'collab.chat.reply': 'Responder',
|
|
'collab.chat.loadMore': 'Carregar mensagens antigas',
|
|
'collab.chat.justNow': 'agora mesmo',
|
|
'collab.chat.minutesAgo': 'há {n} min',
|
|
'collab.chat.hoursAgo': 'há {n} h',
|
|
'collab.notes.title': 'Notas',
|
|
'collab.notes.new': 'Nova nota',
|
|
'collab.notes.empty': 'Nenhuma nota ainda',
|
|
'collab.notes.emptyHint': 'Comece a registrar ideias e planos',
|
|
'collab.notes.all': 'Todas',
|
|
'collab.notes.titlePlaceholder': 'Título da nota',
|
|
'collab.notes.contentPlaceholder': 'Escreva algo...',
|
|
'collab.notes.categoryPlaceholder': 'Categoria',
|
|
'collab.notes.newCategory': 'Nova categoria...',
|
|
'collab.notes.category': 'Categoria',
|
|
'collab.notes.noCategory': 'Sem categoria',
|
|
'collab.notes.color': 'Cor',
|
|
'collab.notes.save': 'Salvar',
|
|
'collab.notes.cancel': 'Cancelar',
|
|
'collab.notes.edit': 'Editar',
|
|
'collab.notes.delete': 'Excluir',
|
|
'collab.notes.pin': 'Fixar',
|
|
'collab.notes.unpin': 'Desafixar',
|
|
'collab.notes.daysAgo': 'há {n} d',
|
|
'collab.notes.categorySettings': 'Gerenciar categorias',
|
|
'collab.notes.create': 'Criar',
|
|
'collab.notes.website': 'Site',
|
|
'collab.notes.websitePlaceholder': 'https://...',
|
|
'collab.notes.attachFiles': 'Anexar arquivos',
|
|
'collab.notes.noCategoriesYet': 'Nenhuma categoria ainda',
|
|
'collab.notes.emptyDesc': 'Crie uma nota para começar',
|
|
'collab.polls.title': 'Enquetes',
|
|
'collab.polls.new': 'Nova enquete',
|
|
'collab.polls.empty': 'Nenhuma enquete ainda',
|
|
'collab.polls.emptyHint': 'Pergunte ao grupo e votem juntos',
|
|
'collab.polls.question': 'Pergunta',
|
|
'collab.polls.questionPlaceholder': 'O que vamos fazer?',
|
|
'collab.polls.addOption': '+ Adicionar opção',
|
|
'collab.polls.optionPlaceholder': 'Opção {n}',
|
|
'collab.polls.create': 'Criar enquete',
|
|
'collab.polls.close': 'Encerrar',
|
|
'collab.polls.closed': 'Encerrada',
|
|
'collab.polls.votes': '{n} votos',
|
|
'collab.polls.vote': '{n} voto',
|
|
'collab.polls.multipleChoice': 'Múltipla escolha',
|
|
'collab.polls.multiChoice': 'Múltipla escolha',
|
|
'collab.polls.deadline': 'Prazo',
|
|
'collab.polls.option': 'Opção',
|
|
'collab.polls.options': 'Opções',
|
|
'collab.polls.delete': 'Excluir',
|
|
'collab.polls.closedSection': 'Encerradas',
|
|
};
|
|
export default collab;
|