Skip to content

Commit

Permalink
fix: add n.r.v acronym
Browse files Browse the repository at this point in the history
  • Loading branch information
Luis Merino committed Jan 16, 2023
1 parent d2e122d commit e120857
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export const WorkingTime = observer(() => {
>
{formatHours(notRequestedVacations + (target ?? 0))}
{' (' + getDurationByHours(target ?? 0, settings.useDecimalTimeFormat)}
{plus + formatHours(notRequestedVacations) + ' v.n.s' + ')'}
{plus + formatHours(notRequestedVacations) + t('time_tracking.vacation_acronym') + ')'}
</Text>
</>
)
Expand Down
3 changes: 2 additions & 1 deletion src/shared/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,8 @@
"imputed_hours": "Worked",
"worked_hours": "Worked",
"recommended_hours": "Recommended",
"target_hours": "Target"
"target_hours": "Target",
"vacation_acronym": " n.r.v"
},
"tooltip_nrv_info": {
"target_and_vns_title": " Target + n.r.v",
Expand Down
3 changes: 2 additions & 1 deletion src/shared/i18n/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,8 @@
"imputed_hours": "Imputadas",
"worked_hours": "Trabajadas",
"recommended_hours": "Recomendadas",
"target_hours": "Objetivo"
"target_hours": "Objetivo",
"vacation_acronym": " v.n.s"
},
"tooltip_nrv_info": {
"target_and_vns_title": " Objetivo + v.n.s",
Expand Down

0 comments on commit e120857

Please sign in to comment.