Add a qr code to the link of an item or attachment

This commit is contained in:
eikek
2021-08-17 02:15:14 +02:00
parent 2d2f9e3e87
commit 8f23b68587
14 changed files with 307 additions and 41 deletions

View File

@ -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"
}

View File

@ -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"
}