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
64 lines
2.5 KiB
TypeScript
64 lines
2.5 KiB
TypeScript
import type { TranslationStrings } from '../types';
|
|
|
|
const files: TranslationStrings = {
|
|
'files.title': 'Arquivos',
|
|
'files.pageTitle': 'Arquivos e documentos',
|
|
'files.subtitle': '{count} arquivos para {trip}',
|
|
'files.download': 'Baixar',
|
|
'files.openError': 'Não foi possível abrir o arquivo',
|
|
'files.downloadPdf': 'Baixar PDF',
|
|
'files.count': '{count} arquivos',
|
|
'files.countSingular': '1 arquivo',
|
|
'files.uploaded': '{count} enviado(s)',
|
|
'files.uploadError': 'Falha no envio',
|
|
'files.dropzone': 'Solte os arquivos aqui',
|
|
'files.dropzoneHint': 'ou clique para escolher',
|
|
'files.allowedTypes':
|
|
'Imagens, PDF, DOC, DOCX, XLS, XLSX, TXT, CSV · Máx. 50 MB',
|
|
'files.uploading': 'Enviando...',
|
|
'files.filterAll': 'Todos',
|
|
'files.filterPdf': 'PDFs',
|
|
'files.filterImages': 'Imagens',
|
|
'files.filterDocs': 'Documentos',
|
|
'files.filterCollab': 'Notas Colab',
|
|
'files.sourceCollab': 'Das notas Colab',
|
|
'files.empty': 'Nenhum arquivo ainda',
|
|
'files.emptyHint': 'Envie arquivos para anexá-los à viagem',
|
|
'files.openTab': 'Abrir em nova aba',
|
|
'files.confirm.delete': 'Excluir este arquivo?',
|
|
'files.toast.deleted': 'Arquivo excluído',
|
|
'files.toast.deleteError': 'Falha ao excluir arquivo',
|
|
'files.sourcePlan': 'Plano do dia',
|
|
'files.sourceBooking': 'Reserva',
|
|
'files.sourceTransport': 'Transporte',
|
|
'files.attach': 'Anexar',
|
|
'files.pasteHint':
|
|
'Você também pode colar imagens da área de transferência (Ctrl+V)',
|
|
'files.trash': 'Lixeira',
|
|
'files.trashEmpty': 'A lixeira está vazia',
|
|
'files.emptyTrash': 'Esvaziar lixeira',
|
|
'files.restore': 'Restaurar',
|
|
'files.star': 'Favoritar',
|
|
'files.unstar': 'Remover favorito',
|
|
'files.assign': 'Atribuir',
|
|
'files.assignTitle': 'Atribuir arquivo',
|
|
'files.assignPlace': 'Lugar',
|
|
'files.assignBooking': 'Reserva',
|
|
'files.assignTransport': 'Transporte',
|
|
'files.unassigned': 'Não atribuído',
|
|
'files.unlink': 'Remover vínculo',
|
|
'files.toast.trashed': 'Movido para a lixeira',
|
|
'files.toast.restored': 'Arquivo restaurado',
|
|
'files.toast.trashEmptied': 'Lixeira esvaziada',
|
|
'files.toast.assigned': 'Arquivo atribuído',
|
|
'files.toast.assignError': 'Falha na atribuição',
|
|
'files.toast.restoreError': 'Falha ao restaurar',
|
|
'files.confirm.permanentDelete':
|
|
'Excluir permanentemente este arquivo? Não é possível desfazer.',
|
|
'files.confirm.emptyTrash':
|
|
'Excluir permanentemente todos os arquivos na lixeira? Não é possível desfazer.',
|
|
'files.noteLabel': 'Nota',
|
|
'files.notePlaceholder': 'Adicione uma nota...',
|
|
};
|
|
export default files;
|