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.
Merge remote-tracking branch 'origin/feature/labs_tab' into feature/l…
…abs_tab
- Loading branch information
Showing
22 changed files
with
514 additions
and
15 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
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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 |
---|---|---|
|
@@ -30,7 +30,7 @@ describe('Edit Patient', () => { | |
type: 'charity', | ||
occupation: 'occupation', | ||
preferredLanguage: 'preferredLanguage', | ||
phoneNumber: 'phoneNumber', | ||
phoneNumber: '123456789', | ||
email: '[email protected]', | ||
address: 'address', | ||
code: 'P00001', | ||
|
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
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
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
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
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,15 @@ | ||
export default { | ||
actions: { | ||
label: 'Azioni', | ||
edit: 'Modifica', | ||
save: 'Salva', | ||
update: 'Aggiorna', | ||
complete: 'Completa', | ||
delete: 'Rimuovi', | ||
cancel: 'Annulla', | ||
new: 'Nuovo', | ||
list: 'Lista', | ||
search: 'Cerca', | ||
confirmDelete: 'Conferma cancellazione', | ||
}, | ||
} |
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,5 @@ | ||
export default { | ||
dashboard: { | ||
label: 'Dashboard', | ||
}, | ||
} |
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,19 @@ | ||
import actions from './actions' | ||
import dashboard from './dashboard' | ||
import patient from './patient' | ||
import patients from './patients' | ||
import scheduling from './scheduling' | ||
import states from './states' | ||
import sex from './sex' | ||
import labs from './labs' | ||
|
||
export default { | ||
...actions, | ||
...dashboard, | ||
...patient, | ||
...patients, | ||
...scheduling, | ||
...states, | ||
...sex, | ||
...labs, | ||
} |
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,29 @@ | ||
export default { | ||
labs: { | ||
label: 'Laboratori', | ||
requests: { | ||
label: 'Richieste di laboratorio', | ||
new: 'Nuova richiesta di laboratorio', | ||
view: 'Visualizza richiesta', | ||
cancel: 'Annulla richiesta', | ||
complete: 'Completa', | ||
error: { | ||
unableToRequest: 'Impossibile creare la richiesta.', | ||
unableToComplete: 'Impossibile completare la richiesta.', | ||
typeRequired: 'La tipologia è richiesta.', | ||
resultRequiredToComplete: 'Il risultato è obbligatorio per completare la richiesta.', | ||
}, | ||
}, | ||
lab: { | ||
status: 'Stato', | ||
for: 'Per', | ||
type: 'Tipo', | ||
result: 'Risultato', | ||
notes: 'Note', | ||
requestedOn: 'Richiesta fatta il', | ||
completedOn: 'Completato il', | ||
canceledOn: 'Annullata il', | ||
patient: 'Paziente', | ||
}, | ||
}, | ||
} |
Oops, something went wrong.