mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-09-30 08:38:22 +00:00
Externalize more strings missed before
This commit is contained in:
@@ -10,25 +10,17 @@ type alias Texts =
|
||||
, createNewCustomField : String
|
||||
, chooseDirection : String
|
||||
, selectPlaceholder : String
|
||||
, nameTab : String
|
||||
, dateTab : String
|
||||
, folderTab : String
|
||||
, folderNotOwnerWarning : String
|
||||
, customFieldsTab : String
|
||||
, dueDateTab : String
|
||||
, correspondentTab : String
|
||||
, organization : String
|
||||
, addNewOrg : String
|
||||
, editOrg : String
|
||||
, chooseOrg : String
|
||||
, addNewCorrespondentPerson : String
|
||||
, editPerson : String
|
||||
, personOrgInfo : String
|
||||
, concerningTab : String
|
||||
, addNewConcerningPerson : String
|
||||
, addNewEquipment : String
|
||||
, editEquipment : String
|
||||
, directionTab : String
|
||||
, suggestions : String
|
||||
}
|
||||
|
||||
@@ -40,29 +32,21 @@ gb =
|
||||
, createNewCustomField = "Create new custom field"
|
||||
, chooseDirection = "Choose a direction…"
|
||||
, selectPlaceholder = "Select…"
|
||||
, nameTab = "Name"
|
||||
, dateTab = "Date"
|
||||
, folderTab = "Folder"
|
||||
, folderNotOwnerWarning =
|
||||
"""
|
||||
You are **not a member** of this folder. This item will be **hidden**
|
||||
from any search now. Use a folder where you are a member of to make this
|
||||
item visible. This message will disappear then.
|
||||
"""
|
||||
, customFieldsTab = "Custom Fields"
|
||||
, dueDateTab = "Due Date"
|
||||
, correspondentTab = "Correspondent"
|
||||
, organization = "Organization"
|
||||
, addNewOrg = "Add new organization"
|
||||
, editOrg = "Edit organization"
|
||||
, chooseOrg = "Choose an organization"
|
||||
, addNewCorrespondentPerson = "Add new correspondent person"
|
||||
, editPerson = "Edit person"
|
||||
, personOrgInfo = "The selected person doesn't belong to the selected organization."
|
||||
, concerningTab = "Concerning"
|
||||
, addNewConcerningPerson = "Add new concerning person"
|
||||
, addNewEquipment = "Add new equipment"
|
||||
, editEquipment = "Edit equipment"
|
||||
, directionTab = "Direction"
|
||||
, suggestions = "Suggestions"
|
||||
}
|
||||
|
@@ -1,12 +1,12 @@
|
||||
module Messages.Comp.ItemDetail.ItemInfoHeader exposing (..)
|
||||
|
||||
import Messages.Basics
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ itemDate : String
|
||||
{ basics : Messages.Basics.Texts
|
||||
, itemDate : String
|
||||
, dueDate : String
|
||||
, correspondent : String
|
||||
, concerning : String
|
||||
, folder : String
|
||||
, source : String
|
||||
, new : String
|
||||
}
|
||||
@@ -14,11 +14,9 @@ type alias Texts =
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ itemDate = "Item Date"
|
||||
{ basics = Messages.Basics.gb
|
||||
, itemDate = "Item Date"
|
||||
, dueDate = "Due Date"
|
||||
, correspondent = "Correspondent"
|
||||
, concerning = "Concerning"
|
||||
, folder = "Folder"
|
||||
, source = "Source"
|
||||
, new = "New"
|
||||
}
|
||||
|
@@ -16,18 +16,8 @@ type alias Texts =
|
||||
, confirm : String
|
||||
, unconfirm : String
|
||||
, changeTagMode : String
|
||||
, folderTab : String
|
||||
, folderNotOwnerWarning : String
|
||||
, customFieldsTab : String
|
||||
, dateTab : String
|
||||
, dueDateTab : String
|
||||
, correspondentTab : String
|
||||
, organization : String
|
||||
, person : String
|
||||
, concerningTab : String
|
||||
, equipment : String
|
||||
, directionTab : String
|
||||
, nameTab : String
|
||||
}
|
||||
|
||||
|
||||
@@ -44,21 +34,11 @@ gb =
|
||||
, confirm = "Confirm"
|
||||
, unconfirm = "Unconfirm"
|
||||
, changeTagMode = "Change tag edit mode"
|
||||
, folderTab = "Folder"
|
||||
, folderNotOwnerWarning =
|
||||
"""
|
||||
You are **not a member** of this folder. This item will be **hidden**
|
||||
from any search now. Use a folder where you are a member of to make this
|
||||
item visible. This message will disappear then.
|
||||
"""
|
||||
, customFieldsTab = "Custom Fields"
|
||||
, dateTab = "Date"
|
||||
, dueDateTab = "Due Date"
|
||||
, correspondentTab = "Correspondent"
|
||||
, organization = "Organization"
|
||||
, person = "Person"
|
||||
, concerningTab = "Concerning"
|
||||
, equipment = "Equipment"
|
||||
, directionTab = "Direction"
|
||||
, nameTab = "Name"
|
||||
}
|
||||
|
Reference in New Issue
Block a user