This repository has been archived by the owner on Jan 9, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes #288 Thanks to @JulianoEngineer for the PR!
- Loading branch information
Showing
1 changed file
with
82 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
export default { | ||
dashboard: { | ||
title: 'O que você gostaria de fazer?' | ||
}, | ||
labels: { | ||
name: 'Nome', | ||
patient: 'Paciente', | ||
quantity: 'Quandidade', | ||
requested_on: 'Solicitado em', | ||
date_requested: 'Data da requisição', | ||
requested_by: 'Requisitado por', | ||
fulfill: 'Preencha', | ||
actions: 'Ações', | ||
action: 'Ação', | ||
notes: 'Notas', | ||
edit: 'Editar', | ||
imaging_type: 'Tipo de imagem', | ||
result: 'Resultdo', | ||
results: 'Resultados', | ||
visit: 'Visita', | ||
requests: 'Requisições', | ||
completed: 'Completo', | ||
id: 'Id', | ||
gender: 'Gênero', | ||
age: 'Idade' | ||
|
||
}, | ||
messages: { | ||
no_items_found: 'Nenhum item encontrado', | ||
create_new_record: 'Criar uma nova gravação?' | ||
}, | ||
buttons: { | ||
complete: 'Completo', | ||
cancel: 'Cencelar', | ||
return_button: 'Retornar', | ||
add: 'Adicionar', | ||
update: 'Atualizar', | ||
ok: 'Ok' | ||
}, | ||
|
||
login: { | ||
messages: { | ||
sign_in: 'inscreva-se' | ||
}, | ||
labels: { | ||
password: 'Senha', | ||
username: 'Usuario', | ||
sign_in: 'Entrar' | ||
} | ||
}, | ||
inventory: { | ||
messages: { | ||
no_requests: 'Requisições não encontradas.', | ||
create_request: 'Criar uma nova requisição?' | ||
} | ||
}, | ||
imaging: { | ||
page_title: 'Requisição de imagens', | ||
section_title: 'Imagem', | ||
buttons: { | ||
new_button: '+ nova imagem' | ||
}, | ||
labels: { | ||
radiologist: 'Radiologista', | ||
add_new_visit: '--Adicionar novo visitante--' | ||
}, | ||
messages: { | ||
no_completed: 'Nenhum item completo encontrado.' | ||
}, | ||
titles: { | ||
completed_imaging: 'Imagem completa', | ||
edit_title: 'Requisição de edição de imagem', | ||
new_title: 'Nova requisição de imagem' | ||
}, | ||
alerts: { | ||
completed_title: 'Requisição de imagem completa.', | ||
completed_message: 'A requisição de imagem esta completa.', | ||
saved_title: 'Requisição de imagem salva.', | ||
saved_message: 'A requisição de imagem foi salva.' | ||
} | ||
} | ||
}; |
7d3a93a
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jkleinsc This file contains JavaScript code but the file extension is marked as JSON. Is this done on purpose?
7d3a93a
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jonkoops --- the file extension should be .js, not .json. I just missed this when I pulled in the PR.