mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-22 10:28:27 +00:00
Add a qr code to the link of an item or attachment
This commit is contained in:
@ -55,6 +55,8 @@ type alias Texts =
|
||||
, sendingMailNow : String
|
||||
, formatDateTime : Int -> String
|
||||
, mailSendSuccessful : String
|
||||
, showQrCode : String
|
||||
, close : String
|
||||
}
|
||||
|
||||
|
||||
@ -89,6 +91,8 @@ gb =
|
||||
, sendingMailNow = "Sending e-mail…"
|
||||
, formatDateTime = DF.formatDateTimeLong Messages.UiLanguage.English
|
||||
, mailSendSuccessful = "Mail sent."
|
||||
, showQrCode = "Show the URL to this page as QR code"
|
||||
, close = "Close"
|
||||
}
|
||||
|
||||
|
||||
@ -123,4 +127,6 @@ de =
|
||||
, sendingMailNow = "E-Mail wird gesendet…"
|
||||
, formatDateTime = DF.formatDateTimeLong Messages.UiLanguage.German
|
||||
, mailSendSuccessful = "E-Mail wurde versendet."
|
||||
, showQrCode = "Den Link zu dieser Seite als QR code anzeigen"
|
||||
, close = "Schließen"
|
||||
}
|
||||
|
@ -31,6 +31,7 @@ type alias Texts =
|
||||
, selectModeTitle : String
|
||||
, exitSelectMode : String
|
||||
, deleteAttachments : String
|
||||
, showQrCode : String
|
||||
}
|
||||
|
||||
|
||||
@ -51,6 +52,7 @@ gb =
|
||||
, selectModeTitle = "Select Mode"
|
||||
, exitSelectMode = "Exit Select Mode"
|
||||
, deleteAttachments = "Delete attachments"
|
||||
, showQrCode = "Show URL as QR code"
|
||||
}
|
||||
|
||||
|
||||
@ -71,4 +73,5 @@ de =
|
||||
, selectModeTitle = "Auswahlmodus"
|
||||
, exitSelectMode = "Auswahlmodus beenden"
|
||||
, deleteAttachments = "Anhänge löschen"
|
||||
, showQrCode = "Link als QR Code anzeigen"
|
||||
}
|
||||
|
Reference in New Issue
Block a user