mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-24 03:18:26 +00:00
Download multiple files as zip
This commit is contained in:
@ -15,6 +15,7 @@ module Messages.Page.Search exposing
|
||||
import Data.TimeZone exposing (TimeZone)
|
||||
import Messages.Basics
|
||||
import Messages.Comp.BookmarkQueryManage
|
||||
import Messages.Comp.DownloadAll
|
||||
import Messages.Comp.ItemCardList
|
||||
import Messages.Comp.ItemMerge
|
||||
import Messages.Comp.PublishItems
|
||||
@ -30,6 +31,7 @@ type alias Texts =
|
||||
, itemMerge : Messages.Comp.ItemMerge.Texts
|
||||
, publishItems : Messages.Comp.PublishItems.Texts
|
||||
, bookmarkManage : Messages.Comp.BookmarkQueryManage.Texts
|
||||
, downloadAllComp : Messages.Comp.DownloadAll.Texts
|
||||
, contentSearch : String
|
||||
, searchInNames : String
|
||||
, selectModeTitle : String
|
||||
@ -76,6 +78,8 @@ type alias Texts =
|
||||
, linkItemsSuccessful : String
|
||||
, linkItemsInProcess : String
|
||||
, linkItemsHeader : String
|
||||
, downloadAll : String
|
||||
, downloadAllQueryNeeded : String
|
||||
}
|
||||
|
||||
|
||||
@ -88,6 +92,7 @@ gb tz =
|
||||
, itemMerge = Messages.Comp.ItemMerge.gb tz
|
||||
, publishItems = Messages.Comp.PublishItems.gb tz
|
||||
, bookmarkManage = Messages.Comp.BookmarkQueryManage.gb
|
||||
, downloadAllComp = Messages.Comp.DownloadAll.gb
|
||||
, contentSearch = "Content search…"
|
||||
, searchInNames = "Search in names…"
|
||||
, selectModeTitle = "Select Mode"
|
||||
@ -134,6 +139,8 @@ gb tz =
|
||||
, linkItemsInProcess = "Linking items ..."
|
||||
, mergeHeader = "Merge Items"
|
||||
, linkItemsHeader = "Link Items"
|
||||
, downloadAll = "Download all"
|
||||
, downloadAllQueryNeeded = "Apply a criteria to reduce what to download."
|
||||
}
|
||||
|
||||
|
||||
@ -146,6 +153,7 @@ de tz =
|
||||
, itemMerge = Messages.Comp.ItemMerge.de tz
|
||||
, publishItems = Messages.Comp.PublishItems.de tz
|
||||
, bookmarkManage = Messages.Comp.BookmarkQueryManage.de
|
||||
, downloadAllComp = Messages.Comp.DownloadAll.de
|
||||
, contentSearch = "Volltextsuche…"
|
||||
, searchInNames = "Suche in Namen…"
|
||||
, selectModeTitle = "Auswahlmodus"
|
||||
@ -192,6 +200,8 @@ de tz =
|
||||
, linkItemsInProcess = "Dokumente werden verknüpft ..."
|
||||
, mergeHeader = "Dokumente zusammenführen"
|
||||
, linkItemsHeader = "Dokument verknüpfen"
|
||||
, downloadAll = "Alle herunterladen"
|
||||
, downloadAllQueryNeeded = "Alles kann nicht heruntergeladen werden, es muss etwas gesucht werden."
|
||||
}
|
||||
|
||||
|
||||
@ -204,6 +214,7 @@ fr tz =
|
||||
, itemMerge = Messages.Comp.ItemMerge.fr tz
|
||||
, publishItems = Messages.Comp.PublishItems.fr tz
|
||||
, bookmarkManage = Messages.Comp.BookmarkQueryManage.fr
|
||||
, downloadAllComp = Messages.Comp.DownloadAll.fr
|
||||
, contentSearch = "Recherche..."
|
||||
, searchInNames = "Recherche par nom..."
|
||||
, selectModeTitle = "Select Mode"
|
||||
@ -250,4 +261,6 @@ fr tz =
|
||||
, linkItemsInProcess = "Relier en cours ..."
|
||||
, mergeHeader = "Fusionner des documents"
|
||||
, linkItemsHeader = "Lier des documents"
|
||||
, downloadAll = "Télécharger tout"
|
||||
, downloadAllQueryNeeded = "Tout ne peut pas être téléchargé, il faut chercher quelque chose."
|
||||
}
|
||||
|
@ -10,6 +10,7 @@ module Messages.Page.Share exposing (..)
|
||||
import Data.TimeZone exposing (TimeZone)
|
||||
import Http
|
||||
import Messages.Basics
|
||||
import Messages.Comp.DownloadAll
|
||||
import Messages.Comp.HttpError
|
||||
import Messages.Comp.ItemCardList
|
||||
import Messages.Comp.SearchMenu
|
||||
@ -21,6 +22,7 @@ type alias Texts =
|
||||
, basics : Messages.Basics.Texts
|
||||
, itemCardList : Messages.Comp.ItemCardList.Texts
|
||||
, passwordForm : Messages.Comp.SharePasswordForm.Texts
|
||||
, downloadAll : Messages.Comp.DownloadAll.Texts
|
||||
, httpError : Http.Error -> String
|
||||
, authFailed : String
|
||||
, fulltextPlaceholder : String
|
||||
@ -30,6 +32,7 @@ type alias Texts =
|
||||
, showItemGroups : String
|
||||
, listView : String
|
||||
, tileView : String
|
||||
, downloadAllLabel : String
|
||||
}
|
||||
|
||||
|
||||
@ -39,6 +42,7 @@ gb tz =
|
||||
, basics = Messages.Basics.gb
|
||||
, itemCardList = Messages.Comp.ItemCardList.gb tz
|
||||
, passwordForm = Messages.Comp.SharePasswordForm.gb
|
||||
, downloadAll = Messages.Comp.DownloadAll.gb
|
||||
, authFailed = "This share does not exist."
|
||||
, httpError = Messages.Comp.HttpError.gb
|
||||
, fulltextPlaceholder = "Fulltext search…"
|
||||
@ -48,6 +52,7 @@ gb tz =
|
||||
, showItemGroups = "Group by month"
|
||||
, listView = "List view"
|
||||
, tileView = "Tile view"
|
||||
, downloadAllLabel = "Download all"
|
||||
}
|
||||
|
||||
|
||||
@ -57,6 +62,7 @@ de tz =
|
||||
, basics = Messages.Basics.de
|
||||
, itemCardList = Messages.Comp.ItemCardList.de tz
|
||||
, passwordForm = Messages.Comp.SharePasswordForm.de
|
||||
, downloadAll = Messages.Comp.DownloadAll.de
|
||||
, authFailed = "Diese Freigabe existiert nicht."
|
||||
, httpError = Messages.Comp.HttpError.de
|
||||
, fulltextPlaceholder = "Volltextsuche…"
|
||||
@ -66,6 +72,7 @@ de tz =
|
||||
, showItemGroups = "nach Monat gruppieren"
|
||||
, listView = "Listenansicht"
|
||||
, tileView = "Kachelansicht"
|
||||
, downloadAllLabel = "Alles herunterladen"
|
||||
}
|
||||
|
||||
|
||||
@ -75,6 +82,7 @@ fr tz =
|
||||
, basics = Messages.Basics.fr
|
||||
, itemCardList = Messages.Comp.ItemCardList.fr tz
|
||||
, passwordForm = Messages.Comp.SharePasswordForm.fr
|
||||
, downloadAll = Messages.Comp.DownloadAll.fr
|
||||
, authFailed = "Ce partage n'existe pas."
|
||||
, httpError = Messages.Comp.HttpError.fr
|
||||
, fulltextPlaceholder = "Recherche en texte entier..."
|
||||
@ -84,4 +92,5 @@ fr tz =
|
||||
, showItemGroups = "Grouper par mois"
|
||||
, listView = "Affichage liste"
|
||||
, tileView = "Affichage tuile"
|
||||
, downloadAllLabel = "Télécharger tout"
|
||||
}
|
||||
|
Reference in New Issue
Block a user