Start Portuguese translation and file org
This commit is contained in:
parent
c8231d01ab
commit
631fde47bd
@ -1,8 +1,44 @@
|
|||||||
login:
|
|
||||||
wrongCredentials: Credenciais erradas
|
|
||||||
username: Nome de utilizador
|
|
||||||
password: Palavra-passe
|
|
||||||
submit: Entrar
|
|
||||||
buttons:
|
buttons:
|
||||||
|
cancel: Cancel
|
||||||
|
close: Fechar
|
||||||
copy: Copiar
|
copy: Copiar
|
||||||
copyFile: Copiar ficheiro
|
copyFile: Copiar ficheiro
|
||||||
|
create: Criar
|
||||||
|
delete: Eliminar
|
||||||
|
download: Descarregar
|
||||||
|
info: Info
|
||||||
|
more: Mais
|
||||||
|
move: Mover
|
||||||
|
moveFile: Mover ficheiro
|
||||||
|
new: Novo
|
||||||
|
next: Próximo
|
||||||
|
ok: OK
|
||||||
|
previous: Anterior
|
||||||
|
rename: Renomear
|
||||||
|
reportIssue: Reportar Erro
|
||||||
|
save: Guardar
|
||||||
|
search: Pesquisar
|
||||||
|
select: Selecionar
|
||||||
|
selectMultiple: Selecionar múltiplos
|
||||||
|
switchView: Alterar modo de visão
|
||||||
|
toggleSidebar: Alternar barra lateral
|
||||||
|
update: Atualizar
|
||||||
|
upload: Enviar
|
||||||
|
errors:
|
||||||
|
forbidden: Tu não és bem-vindo aqui.
|
||||||
|
internal: Algo correu bastante mal.
|
||||||
|
notFound: Não conseguimos chegar a esta localização.
|
||||||
|
files:
|
||||||
|
folders: Pastas
|
||||||
|
files: Ficheiros
|
||||||
|
body: Corpo
|
||||||
|
clear: Limpar
|
||||||
|
closePreview: Fechar pré-visualização
|
||||||
|
home: Início
|
||||||
|
lastModified: Última modificação
|
||||||
|
loading: A carregar...
|
||||||
|
lonely: Sinto-me sozinho...
|
||||||
|
metadata: Metadados
|
||||||
|
multipleSelectionEnabled: Seleção múltipla ativada
|
||||||
|
name: Nome
|
||||||
|
size: Tamanho
|
||||||
|
|||||||
@ -7,9 +7,9 @@ import Users from '@/views/Users'
|
|||||||
import User from '@/views/User'
|
import User from '@/views/User'
|
||||||
import GlobalSettings from '@/views/GlobalSettings'
|
import GlobalSettings from '@/views/GlobalSettings'
|
||||||
import ProfileSettings from '@/views/ProfileSettings'
|
import ProfileSettings from '@/views/ProfileSettings'
|
||||||
import error403 from '@/components/errors/403'
|
import Error403 from '@/views/errors/403'
|
||||||
import error404 from '@/components/errors/404'
|
import Error404 from '@/views/errors/404'
|
||||||
import error500 from '@/components/errors/500'
|
import Error500 from '@/views/errors/500'
|
||||||
import auth from '@/utils/auth.js'
|
import auth from '@/utils/auth.js'
|
||||||
import store from '@/store'
|
import store from '@/store'
|
||||||
|
|
||||||
@ -69,17 +69,17 @@ const router = new Router({
|
|||||||
{
|
{
|
||||||
path: '/403',
|
path: '/403',
|
||||||
name: 'Forbidden',
|
name: 'Forbidden',
|
||||||
component: error403
|
component: Error403
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/404',
|
path: '/404',
|
||||||
name: 'Not Found',
|
name: 'Not Found',
|
||||||
component: error404
|
component: Error404
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/500',
|
path: '/500',
|
||||||
name: 'Internal Server Error',
|
name: 'Internal Server Error',
|
||||||
component: error500
|
component: Error500
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/users',
|
path: '/users',
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user