Externalize more strings missed before

This commit is contained in:
Eike Kettner
2021-04-10 16:02:34 +02:00
parent e063a10663
commit 92ae22a68d
52 changed files with 219 additions and 253 deletions

View File

@ -147,7 +147,7 @@ formTabs texts flags settings model =
}
in
[ { name = FTabState.tabName TabName
, title = texts.nameTab
, title = texts.basics.name
, titleRight = []
, info = Nothing
, body =
@ -174,7 +174,7 @@ formTabs texts flags settings model =
]
}
, { name = FTabState.tabName TabDate
, title = texts.dateTab
, title = texts.basics.date
, titleRight = []
, info = Nothing
, body =
@ -224,7 +224,7 @@ formTabs texts flags settings model =
]
}
, { name = FTabState.tabName TabFolder
, title = texts.folderTab
, title = texts.basics.folder
, titleRight = []
, info = Nothing
, body =
@ -247,7 +247,7 @@ formTabs texts flags settings model =
]
}
, { name = FTabState.tabName TabCustomFields
, title = texts.customFieldsTab
, title = texts.basics.customFields
, titleRight = []
, info = Nothing
, body =
@ -288,7 +288,7 @@ formTabs texts flags settings model =
]
}
, { name = FTabState.tabName TabCorrespondent
, title = texts.correspondentTab
, title = texts.basics.correspondent
, titleRight = []
, info = Nothing
, body =
@ -296,7 +296,7 @@ formTabs texts flags settings model =
div [ class "mb-4" ]
[ label [ class S.inputLabel ]
[ Icons.organizationIcon2 "mr-2"
, text texts.organization
, text texts.basics.organization
, addIconLink texts.addNewOrg StartCorrOrgModal
, editIconLink texts.editOrg model.corrOrgModel StartEditCorrOrgModal
]
@ -312,7 +312,7 @@ formTabs texts flags settings model =
div [ class "mb-4" ]
[ label [ class S.inputLabel ]
[ Icons.personIcon2 "mr-2"
, text "Person"
, text texts.basics.person
, addIconLink texts.addNewCorrespondentPerson StartCorrPersonModal
, editIconLink texts.editPerson
model.corrPersonModel
@ -338,7 +338,7 @@ formTabs texts flags settings model =
]
}
, { name = FTabState.tabName TabConcerning
, title = texts.concerningTab
, title = texts.basics.concerning
, titleRight = []
, info = Nothing
, body =
@ -346,7 +346,7 @@ formTabs texts flags settings model =
div [ class "mb-4" ]
[ label [ class S.inputLabel ]
[ Icons.personIcon2 "mr-2"
, text "Person"
, text texts.basics.person
, addIconLink texts.addNewConcerningPerson StartConcPersonModal
, editIconLink texts.editPerson
model.concPersonModel
@ -364,7 +364,7 @@ formTabs texts flags settings model =
div [ class "mb-4" ]
[ label [ class S.inputLabel ]
[ Icons.equipmentIcon2 "mr-2"
, text "Equipment"
, text texts.basics.equipment
, addIconLink texts.addNewEquipment StartEquipModal
, editIconLink texts.editEquipment
model.concEquipModel
@ -381,7 +381,7 @@ formTabs texts flags settings model =
]
}
, { name = FTabState.tabName TabDirection
, title = texts.directionTab
, title = texts.basics.direction
, titleRight = []
, info = Nothing
, body =

View File

@ -62,7 +62,7 @@ view texts settings model =
corr =
( div
[ class itemStyle
, title texts.correspondent
, title texts.basics.correspondent
]
(Icons.correspondentIcon2 "mr-2"
:: Comp.LinkTarget.makeCorrLink model.item
@ -76,7 +76,7 @@ view texts settings model =
conc =
( div
[ class itemStyle
, title texts.concerning
, title texts.basics.concerning
]
(Icons.concernedIcon2 "mr-2"
:: Comp.LinkTarget.makeConcLink model.item
@ -90,7 +90,7 @@ view texts settings model =
itemfolder =
( div
[ class itemStyle
, title texts.folder
, title texts.basics.folder
]
[ Icons.folderIcon2 "mr-2"
, Comp.LinkTarget.makeFolderLink model.item

View File

@ -753,7 +753,7 @@ renderEditForm2 texts flags cfg settings model =
]
}
, { name = tabName TabFolder
, title = texts.folderTab
, title = texts.basics.folder
, titleRight = []
, info = Nothing
, body =
@ -769,7 +769,7 @@ renderEditForm2 texts flags cfg settings model =
]
}
, { name = tabName TabCustomFields
, title = texts.customFieldsTab
, title = texts.basics.customFields
, titleRight = []
, info = Nothing
, body =
@ -782,7 +782,7 @@ renderEditForm2 texts flags cfg settings model =
]
}
, { name = tabName TabDate
, title = texts.dateTab
, title = texts.basics.date
, titleRight = []
, info = Nothing
, body =
@ -828,7 +828,7 @@ renderEditForm2 texts flags cfg settings model =
]
}
, { name = tabName TabCorrespondent
, title = texts.correspondentTab
, title = texts.basics.correspondent
, titleRight = []
, info = Nothing
, body =
@ -837,7 +837,7 @@ renderEditForm2 texts flags cfg settings model =
[ label [ class S.inputLabel ]
[ Icons.organizationIcon2 ""
, span [ class "ml-2" ]
[ text texts.organization
[ text texts.basics.organization
]
]
, Html.map OrgDropdownMsg
@ -852,7 +852,7 @@ renderEditForm2 texts flags cfg settings model =
[ label [ class S.inputLabel ]
[ Icons.personIcon2 ""
, span [ class "ml-2" ]
[ text texts.person
[ text texts.basics.person
]
]
, Html.map CorrPersonMsg
@ -865,7 +865,7 @@ renderEditForm2 texts flags cfg settings model =
]
}
, { name = tabName TabConcerning
, title = texts.concerningTab
, title = texts.basics.concerning
, titleRight = []
, info = Nothing
, body =
@ -874,7 +874,7 @@ renderEditForm2 texts flags cfg settings model =
[ label [ class S.inputLabel ]
[ Icons.personIcon2 ""
, span [ class "ml-2" ]
[ text texts.person ]
[ text texts.basics.person ]
]
, Html.map ConcPersonMsg (Comp.Dropdown.view2 idNameCfg settings model.concPersonModel)
]
@ -883,7 +883,7 @@ renderEditForm2 texts flags cfg settings model =
[ label [ class S.inputLabel ]
[ Icons.equipmentIcon2 ""
, span [ class "ml-2" ]
[ text texts.equipment ]
[ text texts.basics.equipment ]
]
, Html.map ConcEquipMsg
(Comp.Dropdown.view2 idNameCfg
@ -894,7 +894,7 @@ renderEditForm2 texts flags cfg settings model =
]
}
, { name = tabName TabDirection
, title = texts.directionTab
, title = texts.basics.direction
, titleRight = []
, info = Nothing
, body =
@ -902,7 +902,7 @@ renderEditForm2 texts flags cfg settings model =
]
}
, { name = tabName TabName
, title = texts.nameTab
, title = texts.basics.name
, titleRight = []
, info = Nothing
, body =