From 421c86bad3d3d4a28e506335bc3ada978da0d6b7 Mon Sep 17 00:00:00 2001 From: Fabian Braun Date: Sat, 30 Sep 2023 21:50:25 +0200 Subject: [PATCH] fix: View expanded svg images from `` tags to avoid js attacks (#1429) * Fix #1377 * feat: expand images in `` tag to avoid javascript attacks * Embed in img tags svg only * Remove canonical url display from directory listing for svg * Add test * Remove unused Media class * Change function of canonical url button * Remove superflous `} ` * Update NL locale --- CHANGELOG.rst | 6 +- filer/__init__.py | 2 +- filer/admin/imageadmin.py | 23 ++- filer/locale/ar/LC_MESSAGES/django.mo | Bin 520 -> 520 bytes filer/locale/ar/LC_MESSAGES/django.po | 170 ++++++++++-------- filer/locale/bg/LC_MESSAGES/django.po | 68 +++---- filer/locale/ca/LC_MESSAGES/django.po | 70 ++++---- filer/locale/cs/LC_MESSAGES/django.po | 70 ++++---- filer/locale/de/LC_MESSAGES/django.mo | Bin 21566 -> 21636 bytes filer/locale/de/LC_MESSAGES/django.po | 69 +++---- filer/locale/en/LC_MESSAGES/django.po | 70 ++++---- filer/locale/es/LC_MESSAGES/django.po | 70 ++++---- filer/locale/et/LC_MESSAGES/django.po | 68 +++---- filer/locale/eu/LC_MESSAGES/django.po | 70 ++++---- filer/locale/fa/LC_MESSAGES/django.po | 70 ++++---- filer/locale/fi/LC_MESSAGES/django.po | 70 ++++---- filer/locale/fr/LC_MESSAGES/django.po | 70 ++++---- filer/locale/gl/LC_MESSAGES/django.po | 70 ++++---- filer/locale/he/LC_MESSAGES/django.po | 70 ++++---- filer/locale/hr/LC_MESSAGES/django.po | 70 ++++---- filer/locale/hu/LC_MESSAGES/django.po | 70 ++++---- filer/locale/it/LC_MESSAGES/django.po | 70 ++++---- filer/locale/ja/LC_MESSAGES/django.po | 68 +++---- filer/locale/ja_JP/LC_MESSAGES/django.po | 68 +++---- filer/locale/lt/LC_MESSAGES/django.po | 70 ++++---- filer/locale/lt_LT/LC_MESSAGES/django.po | 68 +++---- filer/locale/nb/LC_MESSAGES/django.po | 70 ++++---- filer/locale/nl_NL/LC_MESSAGES/django.mo | Bin 21187 -> 21260 bytes filer/locale/nl_NL/LC_MESSAGES/django.po | 69 +++---- filer/locale/nn/LC_MESSAGES/django.po | 70 ++++---- filer/locale/pl/LC_MESSAGES/django.po | 70 ++++---- filer/locale/pt/LC_MESSAGES/django.po | 68 +++---- filer/locale/pt_BR/LC_MESSAGES/django.po | 70 ++++---- filer/locale/ru/LC_MESSAGES/django.po | 70 ++++---- filer/locale/sk/LC_MESSAGES/django.po | 68 +++---- filer/locale/tr/LC_MESSAGES/django.po | 70 ++++---- filer/locale/vi_VN/LC_MESSAGES/django.po | 70 ++++---- filer/locale/zh/LC_MESSAGES/django.po | 68 +++---- filer/locale/zh_CN/LC_MESSAGES/django.po | 68 +++---- filer/locale/zh_TW/LC_MESSAGES/django.po | 68 +++---- filer/private/sass/mixins/_custom.scss | 5 +- filer/static/filer/css/admin_filer.css | 2 +- .../static/filer/css/maps/admin_filer.css.map | 2 +- filer/static/filer/js/base.js | 14 ++ .../filer/folder/directory_table_list.html | 8 +- filer/templates/admin/filer/image/expand.html | 5 + .../admin/filer/tools/detail_info.html | 11 +- tests/test_admin.py | 15 +- 48 files changed, 1393 insertions(+), 1158 deletions(-) create mode 100644 filer/templates/admin/filer/image/expand.html diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6d5dfe6f9..ce4ec4140 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,11 +2,13 @@ CHANGELOG ========= -unreleased -========== +3.1.0 (2023-10-01) +================== * feat: limit uploaded image area (width x height) to prevent decompression bombs +* feat: Canonical URL action button now copies canonical URL to the user's + clipboard * fix: Run validators on updated files in file change view * fix: Update mime type if uploading file in file change view * fix: Do not allow to remove the file field from an uplaoded file in diff --git a/filer/__init__.py b/filer/__init__.py index b299d148d..839815895 100644 --- a/filer/__init__.py +++ b/filer/__init__.py @@ -13,4 +13,4 @@ 8. Publish the release and it will automatically release to pypi """ -__version__ = '3.0.6' +__version__ = '3.1.0' diff --git a/filer/admin/imageadmin.py b/filer/admin/imageadmin.py index de8380417..0104a32cd 100644 --- a/filer/admin/imageadmin.py +++ b/filer/admin/imageadmin.py @@ -1,4 +1,6 @@ from django import forms +from django.shortcuts import get_object_or_404, render +from django.urls import path from django.utils.translation import gettext as _ from django.utils.translation import gettext_lazy @@ -80,19 +82,24 @@ class Meta: model = Image exclude = () - class Media: - css = { - # 'all': (settings.MEDIA_URL + 'filer/css/focal_point.css',) - } - js = ( - - ) - class ImageAdmin(FileAdmin): change_form_template = 'admin/filer/image/change_form.html' form = ImageAdminForm + def get_urls(self): + return super().get_urls() + [ + path("expand/", + self.admin_site.admin_view(self.expand_view), + name=f"filer_{self.model._meta.model_name}_expand_view") + ] + + def expand_view(self, request, file_id): + image = get_object_or_404(self.model, pk=file_id) + return render(request, "admin/filer/image/expand.html", context={ + "original_url": image.url + }) + if FILER_IMAGE_MODEL == 'filer.Image': extra_main_fields = ('author', 'default_alt_text', 'default_caption',) diff --git a/filer/locale/ar/LC_MESSAGES/django.mo b/filer/locale/ar/LC_MESSAGES/django.mo index a13032b3099737eab2832545325c70ed0702aceb..ec06f66ea7a49b0588c034e22c86c99f699e3568 100644 GIT binary patch delta 28 jcmeBR>0sHQ#K_~5n3rCfn4W5-kXSTXkuiF5Cu2PTeM|`T delta 28 jcmeBR>0sHQ#5h@>F^b10F)zI|F+J5vA+cz32V(;OdaMZo diff --git a/filer/locale/ar/LC_MESSAGES/django.po b/filer/locale/ar/LC_MESSAGES/django.po index b34041683..5469f0334 100644 --- a/filer/locale/ar/LC_MESSAGES/django.po +++ b/filer/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Translators: @@ -9,36 +9,35 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 10:11+0200\n" +"POT-Creation-Date: 2023-09-30 18:10+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Angelo Dini \n" -"Language-Team: Arabic (http://app.transifex.com/divio/django-filer/language/ar/)\n" +"Language-Team: Arabic (http://app.transifex.com/divio/django-filer/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: admin/clipboardadmin.py:16 -#| msgid "" -#| "ccount doesn't have permissions to rename all of the selected files." +#: admin/clipboardadmin.py:17 msgid "You do not have permission to upload files." msgstr "" -#: admin/clipboardadmin.py:17 +#: admin/clipboardadmin.py:18 msgid "Can't find folder to upload. Please refresh and try again" msgstr "" -#: admin/clipboardadmin.py:19 -msgid "" -"Can't use this folder, Permission Denied. Please select another folder." +#: admin/clipboardadmin.py:20 +msgid "Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:49 +#: admin/fileadmin.py:73 msgid "Advanced" msgstr "" -#: admin/fileadmin.py:164 +#: admin/fileadmin.py:188 msgid "canonical URL" msgstr "" @@ -179,68 +178,68 @@ msgstr "" msgid "Resize selected images" msgstr "" -#: admin/forms.py:25 +#: admin/forms.py:24 msgid "Suffix which will be appended to filenames of copied files." msgstr "" -#: admin/forms.py:32 +#: admin/forms.py:31 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." msgstr "" -#: admin/forms.py:53 +#: admin/forms.py:52 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "" -#: admin/forms.py:55 +#: admin/forms.py:54 #, python-format msgid "Invalid rename format: %(error)s." msgstr "" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:68 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "" -#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:72 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "" -#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "" -#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "" -#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "" -#: admin/forms.py:80 +#: admin/forms.py:79 msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/imageadmin.py:18 admin/imageadmin.py:105 +#: admin/imageadmin.py:20 admin/imageadmin.py:112 msgid "Subject location" msgstr "" -#: admin/imageadmin.py:19 +#: admin/imageadmin.py:21 msgid "Location of the main subject of the scene. Format: \"x,y\"." msgstr "" -#: admin/imageadmin.py:57 +#: admin/imageadmin.py:59 msgid "Invalid subject location format. " msgstr "" -#: admin/imageadmin.py:65 +#: admin/imageadmin.py:67 msgid "Subject location is outside of the image. " msgstr "" -#: admin/imageadmin.py:74 +#: admin/imageadmin.py:76 #, python-brace-format msgid "Your input: \"{subject_location}\". " msgstr "" @@ -267,26 +266,42 @@ msgstr "" msgid "Media library" msgstr "" -#: models/abstract.py:49 +#: models/abstract.py:62 msgid "default alt text" msgstr "" -#: models/abstract.py:56 +#: models/abstract.py:69 msgid "default caption" msgstr "" -#: models/abstract.py:63 +#: models/abstract.py:76 msgid "subject location" msgstr "" -#: models/abstract.py:78 +#: models/abstract.py:91 msgid "image" msgstr "" -#: models/abstract.py:79 +#: models/abstract.py:92 msgid "images" msgstr "" +#: models/abstract.py:148 +#, python-format +msgid "" +"Image format not recognized or image size exceeds limit of %(max_pixels)d " +"million pixels by a factor of two or more. Before uploading again, check " +"file format or resize image to %(width)d x %(height)d resolution or lower." +msgstr "" + +#: models/abstract.py:156 +#, python-format +msgid "" +"Image size (%(pixels)d million pixels) exceeds limit of %(max_pixels)d " +"million pixels. Before uploading again, resize image to %(width)d x " +"%(height)d resolution or lower." +msgstr "" + #: models/clipboardmodels.py:11 models/foldermodels.py:289 msgid "user" msgstr "" @@ -462,7 +477,6 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 -#| msgid "Folders" msgid "All Folders" msgstr "" @@ -481,7 +495,6 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 -#| msgid "everybody" msgid "Everybody" msgstr "" @@ -494,7 +507,6 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 -#| msgid "can add children" msgid "Add children" msgstr "" @@ -528,7 +540,7 @@ msgstr "" #: models/virtualitems.py:46 #: templates/admin/filer/folder/directory_table_list.html:4 -#: templates/admin/filer/folder/directory_table_list.html:167 +#: templates/admin/filer/folder/directory_table_list.html:170 #: templates/admin/filer/folder/directory_thumbnail_list.html:5 #: templates/admin/filer/folder/directory_thumbnail_list.html:146 #: templates/admin/filer/tools/clipboard/clipboard.html:27 @@ -549,7 +561,6 @@ msgid "Show table view" msgstr "" #: settings.py:278 -#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -562,7 +573,7 @@ msgid "Go" msgstr "" #: templates/admin/filer/actions.html:14 -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 msgid "Click here to select the objects across all pages" msgstr "" @@ -573,7 +584,7 @@ msgid "Select all %(total_count)s files and/or folders" msgstr "" #: templates/admin/filer/actions.html:16 -#: templates/admin/filer/folder/directory_table_list.html:234 +#: templates/admin/filer/folder/directory_table_list.html:237 #: templates/admin/filer/folder/directory_thumbnail_list.html:212 msgid "Clear selection" msgstr "" @@ -669,7 +680,7 @@ msgstr "" #: templates/admin/filer/folder/directory_listing.html:103 #: templates/admin/filer/folder/directory_table_list.html:29 #: templates/admin/filer/folder/directory_table_list.html:59 -#: templates/admin/filer/folder/directory_table_list.html:178 +#: templates/admin/filer/folder/directory_table_list.html:181 #: templates/admin/filer/folder/directory_thumbnail_list.html:27 #: templates/admin/filer/folder/directory_thumbnail_list.html:61 #: templates/admin/filer/folder/directory_thumbnail_list.html:156 @@ -678,8 +689,8 @@ msgstr "" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files " -"and/or folders." +"Your account doesn't have permissions to copy all of the selected files and/" +"or folders." msgstr "" #: templates/admin/filer/folder/choose_copy_destination.html:25 @@ -750,8 +761,8 @@ msgstr "" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files " -"and/or folders." +"Your account doesn't have permissions to move all of the selected files and/" +"or folders." msgstr "" #: templates/admin/filer/folder/choose_move_destination.html:47 @@ -858,12 +869,12 @@ msgid "Name" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:17 -#: templates/admin/filer/tools/detail_info.html:49 +#: templates/admin/filer/tools/detail_info.html:50 msgid "Owner" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:18 -#: templates/admin/filer/tools/detail_info.html:33 +#: templates/admin/filer/tools/detail_info.html:34 msgid "Size" msgstr "" @@ -926,7 +937,7 @@ msgstr "" #: templates/admin/filer/folder/directory_table_list.html:107 #: templates/admin/filer/folder/directory_table_list.html:122 -#: templates/admin/filer/folder/directory_table_list.html:151 +#: templates/admin/filer/folder/directory_table_list.html:154 #: templates/admin/filer/folder/directory_thumbnail_list.html:107 #: templates/admin/filer/folder/directory_thumbnail_list.html:122 #, python-format @@ -949,68 +960,70 @@ msgid "enabled" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:144 +msgid "URL copied to clipboard" +msgstr "" + +#: templates/admin/filer/folder/directory_table_list.html:147 #, python-format -#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:148 +#: templates/admin/filer/folder/directory_table_list.html:151 #, python-format -#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:152 +#: templates/admin/filer/folder/directory_table_list.html:155 msgid "Remove file" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:160 +#: templates/admin/filer/folder/directory_table_list.html:163 #: templates/admin/filer/folder/directory_thumbnail_list.html:138 msgid "Drop files here or use the \"Upload Files\" button" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:175 +#: templates/admin/filer/folder/directory_table_list.html:178 #: templates/admin/filer/folder/directory_thumbnail_list.html:153 msgid "Drop your file to upload into:" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:185 +#: templates/admin/filer/folder/directory_table_list.html:188 #: templates/admin/filer/folder/directory_thumbnail_list.html:163 msgid "Upload" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:197 +#: templates/admin/filer/folder/directory_table_list.html:200 #: templates/admin/filer/folder/directory_thumbnail_list.html:175 msgid "cancel" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:201 +#: templates/admin/filer/folder/directory_table_list.html:204 #: templates/admin/filer/folder/directory_thumbnail_list.html:179 msgid "Upload success!" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:205 +#: templates/admin/filer/folder/directory_table_list.html:208 #: templates/admin/filer/folder/directory_thumbnail_list.html:183 msgid "Upload canceled!" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:212 +#: templates/admin/filer/folder/directory_table_list.html:215 #: templates/admin/filer/folder/directory_thumbnail_list.html:190 msgid "previous" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:217 +#: templates/admin/filer/folder/directory_table_list.html:220 #: templates/admin/filer/folder/directory_thumbnail_list.html:195 #, python-format msgid "Page %(number)s of %(num_pages)s." msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:222 +#: templates/admin/filer/folder/directory_table_list.html:225 #: templates/admin/filer/folder/directory_thumbnail_list.html:200 msgid "next" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 #, python-format msgid "Select all %(total_count)s" @@ -1018,12 +1031,10 @@ msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 -#| msgid "Select this file" msgid "Select all" msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 -#| msgid "Filer" msgid "Files" msgstr "" @@ -1086,30 +1097,29 @@ msgstr "" msgid "Download" msgstr "" -#: templates/admin/filer/tools/detail_info.html:15 +#: templates/admin/filer/tools/detail_info.html:16 msgid "Expand" msgstr "" -#: templates/admin/filer/tools/detail_info.html:20 +#: templates/admin/filer/tools/detail_info.html:21 #: templates/admin/filer/widgets/admin_file.html:32 -#: templatetags/filer_admin_tags.py:107 -#| msgid "file missing" +#: templatetags/filer_admin_tags.py:108 msgid "File is missing" msgstr "" -#: templates/admin/filer/tools/detail_info.html:29 +#: templates/admin/filer/tools/detail_info.html:30 msgid "Type" msgstr "" -#: templates/admin/filer/tools/detail_info.html:37 +#: templates/admin/filer/tools/detail_info.html:38 msgid "File-size" msgstr "" -#: templates/admin/filer/tools/detail_info.html:41 +#: templates/admin/filer/tools/detail_info.html:42 msgid "Modified" msgstr "" -#: templates/admin/filer/tools/detail_info.html:45 +#: templates/admin/filer/tools/detail_info.html:46 msgid "Created" msgstr "" @@ -1149,32 +1159,36 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 -#| msgid "Choose File" msgid "Choose Folder" msgstr "" -#: validation.py:19 +#: validation.py:20 #, python-brace-format msgid "File \"{file_name}\": Upload denied by site security policy" msgstr "" -#: validation.py:22 +#: validation.py:23 #, python-brace-format msgid "File \"{file_name}\": {file_type} upload denied by site security policy" msgstr "" -#: validation.py:33 +#: validation.py:34 #, python-brace-format msgid "File \"{file_name}\": HTML upload denied by site security policy" msgstr "" -#: validation.py:71 +#: validation.py:72 #, python-brace-format msgid "" "File \"{file_name}\": Rejected due to potential cross site scripting " "vulnerability" msgstr "" +#: validation.py:84 +#, python-brace-format +msgid "File \"{file_name}\": SVG file format not recognized" +msgstr "" + #~ msgid "Resize parameters must be choosen." #~ msgstr "Resize parameters must be choosen." diff --git a/filer/locale/bg/LC_MESSAGES/django.po b/filer/locale/bg/LC_MESSAGES/django.po index 11194bb15..88b4a3899 100644 --- a/filer/locale/bg/LC_MESSAGES/django.po +++ b/filer/locale/bg/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-26 08:46+0200\n" +"POT-Creation-Date: 2023-09-30 18:10+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Angelo Dini \n" "Language-Team: Bulgarian (http://app.transifex.com/divio/django-filer/" @@ -218,23 +218,23 @@ msgstr "" msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/imageadmin.py:18 admin/imageadmin.py:105 +#: admin/imageadmin.py:20 admin/imageadmin.py:112 msgid "Subject location" msgstr "" -#: admin/imageadmin.py:19 +#: admin/imageadmin.py:21 msgid "Location of the main subject of the scene. Format: \"x,y\"." msgstr "" -#: admin/imageadmin.py:57 +#: admin/imageadmin.py:59 msgid "Invalid subject location format. " msgstr "" -#: admin/imageadmin.py:65 +#: admin/imageadmin.py:67 msgid "Subject location is outside of the image. " msgstr "" -#: admin/imageadmin.py:74 +#: admin/imageadmin.py:76 #, python-brace-format msgid "Your input: \"{subject_location}\". " msgstr "" @@ -281,7 +281,7 @@ msgstr "" msgid "images" msgstr "" -#: models/abstract.py:147 +#: models/abstract.py:148 #, python-format msgid "" "Image format not recognized or image size exceeds limit of %(max_pixels)d " @@ -535,7 +535,7 @@ msgstr "" #: models/virtualitems.py:46 #: templates/admin/filer/folder/directory_table_list.html:4 -#: templates/admin/filer/folder/directory_table_list.html:167 +#: templates/admin/filer/folder/directory_table_list.html:170 #: templates/admin/filer/folder/directory_thumbnail_list.html:5 #: templates/admin/filer/folder/directory_thumbnail_list.html:146 #: templates/admin/filer/tools/clipboard/clipboard.html:27 @@ -568,7 +568,7 @@ msgid "Go" msgstr "" #: templates/admin/filer/actions.html:14 -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 msgid "Click here to select the objects across all pages" msgstr "" @@ -579,7 +579,7 @@ msgid "Select all %(total_count)s files and/or folders" msgstr "" #: templates/admin/filer/actions.html:16 -#: templates/admin/filer/folder/directory_table_list.html:234 +#: templates/admin/filer/folder/directory_table_list.html:237 #: templates/admin/filer/folder/directory_thumbnail_list.html:212 msgid "Clear selection" msgstr "" @@ -675,7 +675,7 @@ msgstr "" #: templates/admin/filer/folder/directory_listing.html:103 #: templates/admin/filer/folder/directory_table_list.html:29 #: templates/admin/filer/folder/directory_table_list.html:59 -#: templates/admin/filer/folder/directory_table_list.html:178 +#: templates/admin/filer/folder/directory_table_list.html:181 #: templates/admin/filer/folder/directory_thumbnail_list.html:27 #: templates/admin/filer/folder/directory_thumbnail_list.html:61 #: templates/admin/filer/folder/directory_thumbnail_list.html:156 @@ -864,12 +864,12 @@ msgid "Name" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:17 -#: templates/admin/filer/tools/detail_info.html:49 +#: templates/admin/filer/tools/detail_info.html:50 msgid "Owner" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:18 -#: templates/admin/filer/tools/detail_info.html:33 +#: templates/admin/filer/tools/detail_info.html:34 msgid "Size" msgstr "" @@ -924,7 +924,7 @@ msgstr "" #: templates/admin/filer/folder/directory_table_list.html:107 #: templates/admin/filer/folder/directory_table_list.html:122 -#: templates/admin/filer/folder/directory_table_list.html:151 +#: templates/admin/filer/folder/directory_table_list.html:154 #: templates/admin/filer/folder/directory_thumbnail_list.html:107 #: templates/admin/filer/folder/directory_thumbnail_list.html:122 #, python-format @@ -947,66 +947,70 @@ msgid "enabled" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:144 +msgid "URL copied to clipboard" +msgstr "" + +#: templates/admin/filer/folder/directory_table_list.html:147 #, python-format msgid "Canonical url '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:148 +#: templates/admin/filer/folder/directory_table_list.html:151 #, python-format msgid "Download '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:152 +#: templates/admin/filer/folder/directory_table_list.html:155 msgid "Remove file" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:160 +#: templates/admin/filer/folder/directory_table_list.html:163 #: templates/admin/filer/folder/directory_thumbnail_list.html:138 msgid "Drop files here or use the \"Upload Files\" button" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:175 +#: templates/admin/filer/folder/directory_table_list.html:178 #: templates/admin/filer/folder/directory_thumbnail_list.html:153 msgid "Drop your file to upload into:" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:185 +#: templates/admin/filer/folder/directory_table_list.html:188 #: templates/admin/filer/folder/directory_thumbnail_list.html:163 msgid "Upload" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:197 +#: templates/admin/filer/folder/directory_table_list.html:200 #: templates/admin/filer/folder/directory_thumbnail_list.html:175 msgid "cancel" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:201 +#: templates/admin/filer/folder/directory_table_list.html:204 #: templates/admin/filer/folder/directory_thumbnail_list.html:179 msgid "Upload success!" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:205 +#: templates/admin/filer/folder/directory_table_list.html:208 #: templates/admin/filer/folder/directory_thumbnail_list.html:183 msgid "Upload canceled!" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:212 +#: templates/admin/filer/folder/directory_table_list.html:215 #: templates/admin/filer/folder/directory_thumbnail_list.html:190 msgid "previous" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:217 +#: templates/admin/filer/folder/directory_table_list.html:220 #: templates/admin/filer/folder/directory_thumbnail_list.html:195 #, python-format msgid "Page %(number)s of %(num_pages)s." msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:222 +#: templates/admin/filer/folder/directory_table_list.html:225 #: templates/admin/filer/folder/directory_thumbnail_list.html:200 msgid "next" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 #, python-format msgid "Select all %(total_count)s" @@ -1076,29 +1080,29 @@ msgstr "" msgid "Download" msgstr "" -#: templates/admin/filer/tools/detail_info.html:15 +#: templates/admin/filer/tools/detail_info.html:16 msgid "Expand" msgstr "" -#: templates/admin/filer/tools/detail_info.html:20 +#: templates/admin/filer/tools/detail_info.html:21 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:108 msgid "File is missing" msgstr "" -#: templates/admin/filer/tools/detail_info.html:29 +#: templates/admin/filer/tools/detail_info.html:30 msgid "Type" msgstr "" -#: templates/admin/filer/tools/detail_info.html:37 +#: templates/admin/filer/tools/detail_info.html:38 msgid "File-size" msgstr "" -#: templates/admin/filer/tools/detail_info.html:41 +#: templates/admin/filer/tools/detail_info.html:42 msgid "Modified" msgstr "" -#: templates/admin/filer/tools/detail_info.html:45 +#: templates/admin/filer/tools/detail_info.html:46 msgid "Created" msgstr "" diff --git a/filer/locale/ca/LC_MESSAGES/django.po b/filer/locale/ca/LC_MESSAGES/django.po index 0cdd06293..4ba43842f 100644 --- a/filer/locale/ca/LC_MESSAGES/django.po +++ b/filer/locale/ca/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-26 08:46+0200\n" +"POT-Creation-Date: 2023-09-30 18:10+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Roger Pons , 2013-2014,2016\n" "Language-Team: Catalan (http://app.transifex.com/divio/django-filer/language/" @@ -225,23 +225,23 @@ msgstr "ampliar" msgid "Thumbnail option or resize parameters must be choosen." msgstr "Heu de triar una opció de miniatura o paràmetres de redimensionat." -#: admin/imageadmin.py:18 admin/imageadmin.py:105 +#: admin/imageadmin.py:20 admin/imageadmin.py:112 msgid "Subject location" msgstr "Lloc del subjecte." -#: admin/imageadmin.py:19 +#: admin/imageadmin.py:21 msgid "Location of the main subject of the scene. Format: \"x,y\"." msgstr "Ubicació del subjecte principal de l'escena. Format: \"x,y\"." -#: admin/imageadmin.py:57 +#: admin/imageadmin.py:59 msgid "Invalid subject location format. " msgstr "Foirmat erroni de la ubicació del subjecte." -#: admin/imageadmin.py:65 +#: admin/imageadmin.py:67 msgid "Subject location is outside of the image. " msgstr "La ubicació del subjecte està fora de la imatge." -#: admin/imageadmin.py:74 +#: admin/imageadmin.py:76 #, python-brace-format msgid "Your input: \"{subject_location}\". " msgstr "La teva entrada: \"{subject_location}\"." @@ -288,7 +288,7 @@ msgstr "imatge" msgid "images" msgstr "imatges" -#: models/abstract.py:147 +#: models/abstract.py:148 #, python-format msgid "" "Image format not recognized or image size exceeds limit of %(max_pixels)d " @@ -544,7 +544,7 @@ msgstr "opcions de miniatura" #: models/virtualitems.py:46 #: templates/admin/filer/folder/directory_table_list.html:4 -#: templates/admin/filer/folder/directory_table_list.html:167 +#: templates/admin/filer/folder/directory_table_list.html:170 #: templates/admin/filer/folder/directory_thumbnail_list.html:5 #: templates/admin/filer/folder/directory_thumbnail_list.html:146 #: templates/admin/filer/tools/clipboard/clipboard.html:27 @@ -577,7 +577,7 @@ msgid "Go" msgstr "Anar" #: templates/admin/filer/actions.html:14 -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 msgid "Click here to select the objects across all pages" msgstr "" @@ -589,7 +589,7 @@ msgid "Select all %(total_count)s files and/or folders" msgstr "Seleccionar tots els %(total_count)s fitixers i/o carpetes" #: templates/admin/filer/actions.html:16 -#: templates/admin/filer/folder/directory_table_list.html:234 +#: templates/admin/filer/folder/directory_table_list.html:237 #: templates/admin/filer/folder/directory_thumbnail_list.html:212 msgid "Clear selection" msgstr "Netejar la selecció" @@ -692,7 +692,7 @@ msgstr "pàgina principal d'administració" #: templates/admin/filer/folder/directory_listing.html:103 #: templates/admin/filer/folder/directory_table_list.html:29 #: templates/admin/filer/folder/directory_table_list.html:59 -#: templates/admin/filer/folder/directory_table_list.html:178 +#: templates/admin/filer/folder/directory_table_list.html:181 #: templates/admin/filer/folder/directory_thumbnail_list.html:27 #: templates/admin/filer/folder/directory_thumbnail_list.html:61 #: templates/admin/filer/folder/directory_thumbnail_list.html:156 @@ -899,12 +899,12 @@ msgid "Name" msgstr "Nom" #: templates/admin/filer/folder/directory_table_list.html:17 -#: templates/admin/filer/tools/detail_info.html:49 +#: templates/admin/filer/tools/detail_info.html:50 msgid "Owner" msgstr "Propietari" #: templates/admin/filer/folder/directory_table_list.html:18 -#: templates/admin/filer/tools/detail_info.html:33 +#: templates/admin/filer/tools/detail_info.html:34 msgid "Size" msgstr "Mida" @@ -959,7 +959,7 @@ msgstr "Seleccionar aquest fitxer" #: templates/admin/filer/folder/directory_table_list.html:107 #: templates/admin/filer/folder/directory_table_list.html:122 -#: templates/admin/filer/folder/directory_table_list.html:151 +#: templates/admin/filer/folder/directory_table_list.html:154 #: templates/admin/filer/folder/directory_thumbnail_list.html:107 #: templates/admin/filer/folder/directory_thumbnail_list.html:122 #, python-format @@ -982,66 +982,72 @@ msgid "enabled" msgstr "activat" #: templates/admin/filer/folder/directory_table_list.html:144 +#, fuzzy +#| msgid "Move selected files to clipboard" +msgid "URL copied to clipboard" +msgstr "Moure els fitxers seleccionats al portapapers." + +#: templates/admin/filer/folder/directory_table_list.html:147 #, python-format msgid "Canonical url '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:148 +#: templates/admin/filer/folder/directory_table_list.html:151 #, python-format msgid "Download '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:152 +#: templates/admin/filer/folder/directory_table_list.html:155 msgid "Remove file" msgstr "Esborrar fitxer" -#: templates/admin/filer/folder/directory_table_list.html:160 +#: templates/admin/filer/folder/directory_table_list.html:163 #: templates/admin/filer/folder/directory_thumbnail_list.html:138 msgid "Drop files here or use the \"Upload Files\" button" msgstr "Deixeu anar fitxers aquí o utilitzeu el botó \"Pujar Fitxers\"" -#: templates/admin/filer/folder/directory_table_list.html:175 +#: templates/admin/filer/folder/directory_table_list.html:178 #: templates/admin/filer/folder/directory_thumbnail_list.html:153 msgid "Drop your file to upload into:" msgstr "Deixeu anar el fitxer a pujar a:" -#: templates/admin/filer/folder/directory_table_list.html:185 +#: templates/admin/filer/folder/directory_table_list.html:188 #: templates/admin/filer/folder/directory_thumbnail_list.html:163 msgid "Upload" msgstr "Pujar" -#: templates/admin/filer/folder/directory_table_list.html:197 +#: templates/admin/filer/folder/directory_table_list.html:200 #: templates/admin/filer/folder/directory_thumbnail_list.html:175 msgid "cancel" msgstr "cancel·lar" -#: templates/admin/filer/folder/directory_table_list.html:201 +#: templates/admin/filer/folder/directory_table_list.html:204 #: templates/admin/filer/folder/directory_thumbnail_list.html:179 msgid "Upload success!" msgstr "Pujada correcta!" -#: templates/admin/filer/folder/directory_table_list.html:205 +#: templates/admin/filer/folder/directory_table_list.html:208 #: templates/admin/filer/folder/directory_thumbnail_list.html:183 msgid "Upload canceled!" msgstr "Pujada cancel·lada!" -#: templates/admin/filer/folder/directory_table_list.html:212 +#: templates/admin/filer/folder/directory_table_list.html:215 #: templates/admin/filer/folder/directory_thumbnail_list.html:190 msgid "previous" msgstr "anterior" -#: templates/admin/filer/folder/directory_table_list.html:217 +#: templates/admin/filer/folder/directory_table_list.html:220 #: templates/admin/filer/folder/directory_thumbnail_list.html:195 #, python-format msgid "Page %(number)s of %(num_pages)s." msgstr "Pàgina %(number)s de %(num_pages)s." -#: templates/admin/filer/folder/directory_table_list.html:222 +#: templates/admin/filer/folder/directory_table_list.html:225 #: templates/admin/filer/folder/directory_thumbnail_list.html:200 msgid "next" msgstr "següent" -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 #, python-format msgid "Select all %(total_count)s" @@ -1111,29 +1117,29 @@ msgstr "ha fallat la pujada" msgid "Download" msgstr "" -#: templates/admin/filer/tools/detail_info.html:15 +#: templates/admin/filer/tools/detail_info.html:16 msgid "Expand" msgstr "" -#: templates/admin/filer/tools/detail_info.html:20 +#: templates/admin/filer/tools/detail_info.html:21 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:108 msgid "File is missing" msgstr "" -#: templates/admin/filer/tools/detail_info.html:29 +#: templates/admin/filer/tools/detail_info.html:30 msgid "Type" msgstr "Tipus" -#: templates/admin/filer/tools/detail_info.html:37 +#: templates/admin/filer/tools/detail_info.html:38 msgid "File-size" msgstr "MIda de fitxer" -#: templates/admin/filer/tools/detail_info.html:41 +#: templates/admin/filer/tools/detail_info.html:42 msgid "Modified" msgstr "Modificat" -#: templates/admin/filer/tools/detail_info.html:45 +#: templates/admin/filer/tools/detail_info.html:46 msgid "Created" msgstr "Creat" diff --git a/filer/locale/cs/LC_MESSAGES/django.po b/filer/locale/cs/LC_MESSAGES/django.po index b1b08ceff..e56d59634 100644 --- a/filer/locale/cs/LC_MESSAGES/django.po +++ b/filer/locale/cs/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-26 08:46+0200\n" +"POT-Creation-Date: 2023-09-30 18:10+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Jakub Dorňák , 2020\n" "Language-Team: Czech (http://app.transifex.com/divio/django-filer/language/" @@ -231,23 +231,23 @@ msgstr "" "Musíte vybrat předdefinované volby náhledu nebo nastavit jednotlivé " "parametry." -#: admin/imageadmin.py:18 admin/imageadmin.py:105 +#: admin/imageadmin.py:20 admin/imageadmin.py:112 msgid "Subject location" msgstr "Pozice objektu" -#: admin/imageadmin.py:19 +#: admin/imageadmin.py:21 msgid "Location of the main subject of the scene. Format: \"x,y\"." msgstr "Pozice hlavního předmětu fotografie. Formát \"x,y\"." -#: admin/imageadmin.py:57 +#: admin/imageadmin.py:59 msgid "Invalid subject location format. " msgstr "Špatný formát pozice objektu. " -#: admin/imageadmin.py:65 +#: admin/imageadmin.py:67 msgid "Subject location is outside of the image. " msgstr "Zadaná pozice objektu je mimo obrázek. " -#: admin/imageadmin.py:74 +#: admin/imageadmin.py:76 #, python-brace-format msgid "Your input: \"{subject_location}\". " msgstr "Vaše zadání: \"{subject_location}\". " @@ -294,7 +294,7 @@ msgstr "obrázek" msgid "images" msgstr "obrázky" -#: models/abstract.py:147 +#: models/abstract.py:148 #, python-format msgid "" "Image format not recognized or image size exceeds limit of %(max_pixels)d " @@ -550,7 +550,7 @@ msgstr "volby náhledu" #: models/virtualitems.py:46 #: templates/admin/filer/folder/directory_table_list.html:4 -#: templates/admin/filer/folder/directory_table_list.html:167 +#: templates/admin/filer/folder/directory_table_list.html:170 #: templates/admin/filer/folder/directory_thumbnail_list.html:5 #: templates/admin/filer/folder/directory_thumbnail_list.html:146 #: templates/admin/filer/tools/clipboard/clipboard.html:27 @@ -583,7 +583,7 @@ msgid "Go" msgstr "Provést" #: templates/admin/filer/actions.html:14 -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 msgid "Click here to select the objects across all pages" msgstr "Klikněte sem pro výběr všechny položky na všech stránkách výpisu" @@ -594,7 +594,7 @@ msgid "Select all %(total_count)s files and/or folders" msgstr "Vybrat všechny soubory a/nebo složky (%(total_count)s)" #: templates/admin/filer/actions.html:16 -#: templates/admin/filer/folder/directory_table_list.html:234 +#: templates/admin/filer/folder/directory_table_list.html:237 #: templates/admin/filer/folder/directory_thumbnail_list.html:212 msgid "Clear selection" msgstr "Zrušit výběr" @@ -697,7 +697,7 @@ msgstr "hlavní stránka administrace" #: templates/admin/filer/folder/directory_listing.html:103 #: templates/admin/filer/folder/directory_table_list.html:29 #: templates/admin/filer/folder/directory_table_list.html:59 -#: templates/admin/filer/folder/directory_table_list.html:178 +#: templates/admin/filer/folder/directory_table_list.html:181 #: templates/admin/filer/folder/directory_thumbnail_list.html:27 #: templates/admin/filer/folder/directory_thumbnail_list.html:61 #: templates/admin/filer/folder/directory_thumbnail_list.html:156 @@ -895,12 +895,12 @@ msgid "Name" msgstr "Název" #: templates/admin/filer/folder/directory_table_list.html:17 -#: templates/admin/filer/tools/detail_info.html:49 +#: templates/admin/filer/tools/detail_info.html:50 msgid "Owner" msgstr "Vlastník" #: templates/admin/filer/folder/directory_table_list.html:18 -#: templates/admin/filer/tools/detail_info.html:33 +#: templates/admin/filer/tools/detail_info.html:34 msgid "Size" msgstr "Velikost" @@ -959,7 +959,7 @@ msgstr "Vybrat tento soubor" #: templates/admin/filer/folder/directory_table_list.html:107 #: templates/admin/filer/folder/directory_table_list.html:122 -#: templates/admin/filer/folder/directory_table_list.html:151 +#: templates/admin/filer/folder/directory_table_list.html:154 #: templates/admin/filer/folder/directory_thumbnail_list.html:107 #: templates/admin/filer/folder/directory_thumbnail_list.html:122 #, python-format @@ -982,66 +982,72 @@ msgid "enabled" msgstr "aktivní" #: templates/admin/filer/folder/directory_table_list.html:144 +#, fuzzy +#| msgid "Move selected files to clipboard" +msgid "URL copied to clipboard" +msgstr "Přesunout vybrané soubory do schránky" + +#: templates/admin/filer/folder/directory_table_list.html:147 #, python-format msgid "Canonical url '%(item_label)s'" msgstr "Kanonický odkaz '%(item_label)s'" -#: templates/admin/filer/folder/directory_table_list.html:148 +#: templates/admin/filer/folder/directory_table_list.html:151 #, python-format msgid "Download '%(item_label)s'" msgstr "Stáhnout '%(item_label)s'" -#: templates/admin/filer/folder/directory_table_list.html:152 +#: templates/admin/filer/folder/directory_table_list.html:155 msgid "Remove file" msgstr "Smazat soubor" -#: templates/admin/filer/folder/directory_table_list.html:160 +#: templates/admin/filer/folder/directory_table_list.html:163 #: templates/admin/filer/folder/directory_thumbnail_list.html:138 msgid "Drop files here or use the \"Upload Files\" button" msgstr "Přetáhněte soubory sem nebo klikněte na tlačítko \"Nahrát soubory\"" -#: templates/admin/filer/folder/directory_table_list.html:175 +#: templates/admin/filer/folder/directory_table_list.html:178 #: templates/admin/filer/folder/directory_thumbnail_list.html:153 msgid "Drop your file to upload into:" msgstr "Přetáhněte sem soubory, které chcete nahrát do:" -#: templates/admin/filer/folder/directory_table_list.html:185 +#: templates/admin/filer/folder/directory_table_list.html:188 #: templates/admin/filer/folder/directory_thumbnail_list.html:163 msgid "Upload" msgstr "Nahrát" -#: templates/admin/filer/folder/directory_table_list.html:197 +#: templates/admin/filer/folder/directory_table_list.html:200 #: templates/admin/filer/folder/directory_thumbnail_list.html:175 msgid "cancel" msgstr "zrušit" -#: templates/admin/filer/folder/directory_table_list.html:201 +#: templates/admin/filer/folder/directory_table_list.html:204 #: templates/admin/filer/folder/directory_thumbnail_list.html:179 msgid "Upload success!" msgstr "Nahrávání se zdařilo!" -#: templates/admin/filer/folder/directory_table_list.html:205 +#: templates/admin/filer/folder/directory_table_list.html:208 #: templates/admin/filer/folder/directory_thumbnail_list.html:183 msgid "Upload canceled!" msgstr "Nahrávání bylo zrušeno!" -#: templates/admin/filer/folder/directory_table_list.html:212 +#: templates/admin/filer/folder/directory_table_list.html:215 #: templates/admin/filer/folder/directory_thumbnail_list.html:190 msgid "previous" msgstr "předchozí" -#: templates/admin/filer/folder/directory_table_list.html:217 +#: templates/admin/filer/folder/directory_table_list.html:220 #: templates/admin/filer/folder/directory_thumbnail_list.html:195 #, python-format msgid "Page %(number)s of %(num_pages)s." msgstr "Stránka %(number)s z %(num_pages)s." -#: templates/admin/filer/folder/directory_table_list.html:222 +#: templates/admin/filer/folder/directory_table_list.html:225 #: templates/admin/filer/folder/directory_thumbnail_list.html:200 msgid "next" msgstr "následující" -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 #, python-format msgid "Select all %(total_count)s" @@ -1113,29 +1119,29 @@ msgstr "nahrávání selhalo" msgid "Download" msgstr "" -#: templates/admin/filer/tools/detail_info.html:15 +#: templates/admin/filer/tools/detail_info.html:16 msgid "Expand" msgstr "" -#: templates/admin/filer/tools/detail_info.html:20 +#: templates/admin/filer/tools/detail_info.html:21 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:108 msgid "File is missing" msgstr "" -#: templates/admin/filer/tools/detail_info.html:29 +#: templates/admin/filer/tools/detail_info.html:30 msgid "Type" msgstr "Typ" -#: templates/admin/filer/tools/detail_info.html:37 +#: templates/admin/filer/tools/detail_info.html:38 msgid "File-size" msgstr "Velikost souboru" -#: templates/admin/filer/tools/detail_info.html:41 +#: templates/admin/filer/tools/detail_info.html:42 msgid "Modified" msgstr "Změněno" -#: templates/admin/filer/tools/detail_info.html:45 +#: templates/admin/filer/tools/detail_info.html:46 msgid "Created" msgstr "Vytvořeno" diff --git a/filer/locale/de/LC_MESSAGES/django.mo b/filer/locale/de/LC_MESSAGES/django.mo index 2fd9fa070f37611f4c53909a4820554d2df4f317..0f9415701524ef6334539b54b4f404bfae420c68 100644 GIT binary patch delta 4797 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, 2023\n" "Language-Team: German (http://app.transifex.com/divio/django-filer/language/de/)\n" @@ -227,23 +227,23 @@ msgstr "Vergrössern" msgid "Thumbnail option or resize parameters must be choosen." msgstr "Vorschaubild Optionen oder Parameter zur Grössenänderung müssen ausgewählt werden." -#: admin/imageadmin.py:18 admin/imageadmin.py:105 +#: admin/imageadmin.py:20 admin/imageadmin.py:112 msgid "Subject location" msgstr "Ort des Hauptinhalts" -#: admin/imageadmin.py:19 +#: admin/imageadmin.py:21 msgid "Location of the main subject of the scene. Format: \"x,y\"." msgstr "Position des Hauptinhalts des Bildes. Format: \"x,y\"." -#: admin/imageadmin.py:57 +#: admin/imageadmin.py:59 msgid "Invalid subject location format. " msgstr "Ungültiges Format zur Positionsangabe." -#: admin/imageadmin.py:65 +#: admin/imageadmin.py:67 msgid "Subject location is outside of the image. " msgstr "Angegebene Position des Hauptinhalts liegt außerhalb des Bildes." -#: admin/imageadmin.py:74 +#: admin/imageadmin.py:76 #, python-brace-format msgid "Your input: \"{subject_location}\". " msgstr "Deine Eingabe: \"{subject_location}\". " @@ -290,7 +290,7 @@ msgstr "Bild" msgid "images" msgstr "Bilder" -#: models/abstract.py:147 +#: models/abstract.py:148 #, python-format msgid "" "Image format not recognized or image size exceeds limit of %(max_pixels)d " @@ -547,7 +547,7 @@ msgstr "Vorschaubild-Optionen" #: models/virtualitems.py:46 #: templates/admin/filer/folder/directory_table_list.html:4 -#: templates/admin/filer/folder/directory_table_list.html:167 +#: templates/admin/filer/folder/directory_table_list.html:170 #: templates/admin/filer/folder/directory_thumbnail_list.html:5 #: templates/admin/filer/folder/directory_thumbnail_list.html:146 #: templates/admin/filer/tools/clipboard/clipboard.html:27 @@ -581,7 +581,7 @@ msgid "Go" msgstr "Los" #: templates/admin/filer/actions.html:14 -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 msgid "Click here to select the objects across all pages" msgstr "Hier klicken, um die Objekte über alle Seiten hinweg auszuwählen" @@ -592,7 +592,7 @@ msgid "Select all %(total_count)s files and/or folders" msgstr "Alle %(total_count)s Dateien und/oder Ordner auswählen" #: templates/admin/filer/actions.html:16 -#: templates/admin/filer/folder/directory_table_list.html:234 +#: templates/admin/filer/folder/directory_table_list.html:237 #: templates/admin/filer/folder/directory_thumbnail_list.html:212 msgid "Clear selection" msgstr "Auswahl aufheben" @@ -688,7 +688,7 @@ msgstr "Admin Startseite" #: templates/admin/filer/folder/directory_listing.html:103 #: templates/admin/filer/folder/directory_table_list.html:29 #: templates/admin/filer/folder/directory_table_list.html:59 -#: templates/admin/filer/folder/directory_table_list.html:178 +#: templates/admin/filer/folder/directory_table_list.html:181 #: templates/admin/filer/folder/directory_thumbnail_list.html:27 #: templates/admin/filer/folder/directory_thumbnail_list.html:61 #: templates/admin/filer/folder/directory_thumbnail_list.html:156 @@ -877,12 +877,12 @@ msgid "Name" msgstr "Name" #: templates/admin/filer/folder/directory_table_list.html:17 -#: templates/admin/filer/tools/detail_info.html:49 +#: templates/admin/filer/tools/detail_info.html:50 msgid "Owner" msgstr "Besitzer" #: templates/admin/filer/folder/directory_table_list.html:18 -#: templates/admin/filer/tools/detail_info.html:33 +#: templates/admin/filer/tools/detail_info.html:34 msgid "Size" msgstr "Grösse" @@ -937,7 +937,7 @@ msgstr "Diese Datei auswählen" #: templates/admin/filer/folder/directory_table_list.html:107 #: templates/admin/filer/folder/directory_table_list.html:122 -#: templates/admin/filer/folder/directory_table_list.html:151 +#: templates/admin/filer/folder/directory_table_list.html:154 #: templates/admin/filer/folder/directory_thumbnail_list.html:107 #: templates/admin/filer/folder/directory_thumbnail_list.html:122 #, python-format @@ -960,68 +960,73 @@ msgid "enabled" msgstr "aktiviert" #: templates/admin/filer/folder/directory_table_list.html:144 +#| msgid "Move selected files to clipboard" +msgid "URL copied to clipboard" +msgstr "URL in Zwischenablage kopiert" + +#: templates/admin/filer/folder/directory_table_list.html:147 #, python-format #| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "Kanonische URL '%(item_label)s'" -#: templates/admin/filer/folder/directory_table_list.html:148 +#: templates/admin/filer/folder/directory_table_list.html:151 #, python-format #| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "'%(item_label)s' herunterladen" -#: templates/admin/filer/folder/directory_table_list.html:152 +#: templates/admin/filer/folder/directory_table_list.html:155 msgid "Remove file" msgstr "Datei löschen" -#: templates/admin/filer/folder/directory_table_list.html:160 +#: templates/admin/filer/folder/directory_table_list.html:163 #: templates/admin/filer/folder/directory_thumbnail_list.html:138 msgid "Drop files here or use the \"Upload Files\" button" msgstr "Dateien hier ablegen oder den \"Datei hochladen\" Button benutzen." -#: templates/admin/filer/folder/directory_table_list.html:175 +#: templates/admin/filer/folder/directory_table_list.html:178 #: templates/admin/filer/folder/directory_thumbnail_list.html:153 msgid "Drop your file to upload into:" msgstr "Dateien hier ablegen um sie in den folgenden Ordner abzulegen:" -#: templates/admin/filer/folder/directory_table_list.html:185 +#: templates/admin/filer/folder/directory_table_list.html:188 #: templates/admin/filer/folder/directory_thumbnail_list.html:163 msgid "Upload" msgstr "Hochladen" -#: templates/admin/filer/folder/directory_table_list.html:197 +#: templates/admin/filer/folder/directory_table_list.html:200 #: templates/admin/filer/folder/directory_thumbnail_list.html:175 msgid "cancel" msgstr "Abbrechen" -#: templates/admin/filer/folder/directory_table_list.html:201 +#: templates/admin/filer/folder/directory_table_list.html:204 #: templates/admin/filer/folder/directory_thumbnail_list.html:179 msgid "Upload success!" msgstr "Upload erfolgreich!" -#: templates/admin/filer/folder/directory_table_list.html:205 +#: templates/admin/filer/folder/directory_table_list.html:208 #: templates/admin/filer/folder/directory_thumbnail_list.html:183 msgid "Upload canceled!" msgstr "Upload abgebrochen!" -#: templates/admin/filer/folder/directory_table_list.html:212 +#: templates/admin/filer/folder/directory_table_list.html:215 #: templates/admin/filer/folder/directory_thumbnail_list.html:190 msgid "previous" msgstr "vorige" -#: templates/admin/filer/folder/directory_table_list.html:217 +#: templates/admin/filer/folder/directory_table_list.html:220 #: templates/admin/filer/folder/directory_thumbnail_list.html:195 #, python-format msgid "Page %(number)s of %(num_pages)s." msgstr "Seite %(number)s von %(num_pages)s." -#: templates/admin/filer/folder/directory_table_list.html:222 +#: templates/admin/filer/folder/directory_table_list.html:225 #: templates/admin/filer/folder/directory_thumbnail_list.html:200 msgid "next" msgstr "nächste" -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 #, python-format msgid "Select all %(total_count)s" @@ -1093,30 +1098,30 @@ msgstr "das Hochladen schlug fehl" msgid "Download" msgstr "Herunterladen" -#: templates/admin/filer/tools/detail_info.html:15 +#: templates/admin/filer/tools/detail_info.html:16 msgid "Expand" msgstr "Vergrößern" -#: templates/admin/filer/tools/detail_info.html:20 +#: templates/admin/filer/tools/detail_info.html:21 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:108 #| msgid "file missing" msgid "File is missing" msgstr "Datei fehlt" -#: templates/admin/filer/tools/detail_info.html:29 +#: templates/admin/filer/tools/detail_info.html:30 msgid "Type" msgstr "Typ" -#: templates/admin/filer/tools/detail_info.html:37 +#: templates/admin/filer/tools/detail_info.html:38 msgid "File-size" msgstr "Dateigrösse" -#: templates/admin/filer/tools/detail_info.html:41 +#: templates/admin/filer/tools/detail_info.html:42 msgid "Modified" msgstr "Verändert am" -#: templates/admin/filer/tools/detail_info.html:45 +#: templates/admin/filer/tools/detail_info.html:46 msgid "Created" msgstr "Erstellt am" diff --git a/filer/locale/en/LC_MESSAGES/django.po b/filer/locale/en/LC_MESSAGES/django.po index 5fa29bc08..fbcc67bdc 100644 --- a/filer/locale/en/LC_MESSAGES/django.po +++ b/filer/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-26 08:46+0200\n" +"POT-Creation-Date: 2023-09-30 18:10+0200\n" "PO-Revision-Date: 2016-06-17 14:16+0000\n" "Last-Translator: Angelo Dini \n" "Language-Team: English (http://www.transifex.com/divio/django-filer/language/" @@ -229,23 +229,23 @@ msgstr "upscale" msgid "Thumbnail option or resize parameters must be choosen." msgstr "Thumbnail option or resize parameters must be choosen." -#: admin/imageadmin.py:18 admin/imageadmin.py:105 +#: admin/imageadmin.py:20 admin/imageadmin.py:112 msgid "Subject location" msgstr "Subject location" -#: admin/imageadmin.py:19 +#: admin/imageadmin.py:21 msgid "Location of the main subject of the scene. Format: \"x,y\"." msgstr "Location of the main subject of the scene. Format: \"x,y\"." -#: admin/imageadmin.py:57 +#: admin/imageadmin.py:59 msgid "Invalid subject location format. " msgstr "Invalid subject location format. " -#: admin/imageadmin.py:65 +#: admin/imageadmin.py:67 msgid "Subject location is outside of the image. " msgstr "Subject location is outside of the image. " -#: admin/imageadmin.py:74 +#: admin/imageadmin.py:76 #, python-brace-format msgid "Your input: \"{subject_location}\". " msgstr "Your input: \"{subject_location}\". " @@ -292,7 +292,7 @@ msgstr "image" msgid "images" msgstr "images" -#: models/abstract.py:147 +#: models/abstract.py:148 #, python-format msgid "" "Image format not recognized or image size exceeds limit of %(max_pixels)d " @@ -554,7 +554,7 @@ msgstr "thumbnail options" #: models/virtualitems.py:46 #: templates/admin/filer/folder/directory_table_list.html:4 -#: templates/admin/filer/folder/directory_table_list.html:167 +#: templates/admin/filer/folder/directory_table_list.html:170 #: templates/admin/filer/folder/directory_thumbnail_list.html:5 #: templates/admin/filer/folder/directory_thumbnail_list.html:146 #: templates/admin/filer/tools/clipboard/clipboard.html:27 @@ -589,7 +589,7 @@ msgid "Go" msgstr "Go" #: templates/admin/filer/actions.html:14 -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 msgid "Click here to select the objects across all pages" msgstr "Click here to select the objects across all pages" @@ -600,7 +600,7 @@ msgid "Select all %(total_count)s files and/or folders" msgstr "Select all %(total_count)s files and/or folders" #: templates/admin/filer/actions.html:16 -#: templates/admin/filer/folder/directory_table_list.html:234 +#: templates/admin/filer/folder/directory_table_list.html:237 #: templates/admin/filer/folder/directory_thumbnail_list.html:212 msgid "Clear selection" msgstr "Clear selection" @@ -703,7 +703,7 @@ msgstr "admin homepage" #: templates/admin/filer/folder/directory_listing.html:103 #: templates/admin/filer/folder/directory_table_list.html:29 #: templates/admin/filer/folder/directory_table_list.html:59 -#: templates/admin/filer/folder/directory_table_list.html:178 +#: templates/admin/filer/folder/directory_table_list.html:181 #: templates/admin/filer/folder/directory_thumbnail_list.html:27 #: templates/admin/filer/folder/directory_thumbnail_list.html:61 #: templates/admin/filer/folder/directory_thumbnail_list.html:156 @@ -906,12 +906,12 @@ msgid "Name" msgstr "Name" #: templates/admin/filer/folder/directory_table_list.html:17 -#: templates/admin/filer/tools/detail_info.html:49 +#: templates/admin/filer/tools/detail_info.html:50 msgid "Owner" msgstr "Owner" #: templates/admin/filer/folder/directory_table_list.html:18 -#: templates/admin/filer/tools/detail_info.html:33 +#: templates/admin/filer/tools/detail_info.html:34 msgid "Size" msgstr "Size" @@ -966,7 +966,7 @@ msgstr "Select this file" #: templates/admin/filer/folder/directory_table_list.html:107 #: templates/admin/filer/folder/directory_table_list.html:122 -#: templates/admin/filer/folder/directory_table_list.html:151 +#: templates/admin/filer/folder/directory_table_list.html:154 #: templates/admin/filer/folder/directory_thumbnail_list.html:107 #: templates/admin/filer/folder/directory_thumbnail_list.html:122 #, python-format @@ -989,68 +989,74 @@ msgid "enabled" msgstr "enabled" #: templates/admin/filer/folder/directory_table_list.html:144 +#, fuzzy +#| msgid "Move selected files to clipboard" +msgid "URL copied to clipboard" +msgstr "Move selected files to clipboard" + +#: templates/admin/filer/folder/directory_table_list.html:147 #, fuzzy, python-format #| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "Change '%(item_label)s' details" -#: templates/admin/filer/folder/directory_table_list.html:148 +#: templates/admin/filer/folder/directory_table_list.html:151 #, fuzzy, python-format #| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "Change '%(item_label)s' details" -#: templates/admin/filer/folder/directory_table_list.html:152 +#: templates/admin/filer/folder/directory_table_list.html:155 msgid "Remove file" msgstr "Remove file" -#: templates/admin/filer/folder/directory_table_list.html:160 +#: templates/admin/filer/folder/directory_table_list.html:163 #: templates/admin/filer/folder/directory_thumbnail_list.html:138 msgid "Drop files here or use the \"Upload Files\" button" msgstr "Drop files here or use the \"Upload Files\" button" -#: templates/admin/filer/folder/directory_table_list.html:175 +#: templates/admin/filer/folder/directory_table_list.html:178 #: templates/admin/filer/folder/directory_thumbnail_list.html:153 msgid "Drop your file to upload into:" msgstr "Drop your file to upload into:" -#: templates/admin/filer/folder/directory_table_list.html:185 +#: templates/admin/filer/folder/directory_table_list.html:188 #: templates/admin/filer/folder/directory_thumbnail_list.html:163 msgid "Upload" msgstr "Upload" -#: templates/admin/filer/folder/directory_table_list.html:197 +#: templates/admin/filer/folder/directory_table_list.html:200 #: templates/admin/filer/folder/directory_thumbnail_list.html:175 msgid "cancel" msgstr "cancel" -#: templates/admin/filer/folder/directory_table_list.html:201 +#: templates/admin/filer/folder/directory_table_list.html:204 #: templates/admin/filer/folder/directory_thumbnail_list.html:179 msgid "Upload success!" msgstr "Upload success!" -#: templates/admin/filer/folder/directory_table_list.html:205 +#: templates/admin/filer/folder/directory_table_list.html:208 #: templates/admin/filer/folder/directory_thumbnail_list.html:183 msgid "Upload canceled!" msgstr "Upload canceled!" -#: templates/admin/filer/folder/directory_table_list.html:212 +#: templates/admin/filer/folder/directory_table_list.html:215 #: templates/admin/filer/folder/directory_thumbnail_list.html:190 msgid "previous" msgstr "previous" -#: templates/admin/filer/folder/directory_table_list.html:217 +#: templates/admin/filer/folder/directory_table_list.html:220 #: templates/admin/filer/folder/directory_thumbnail_list.html:195 #, python-format msgid "Page %(number)s of %(num_pages)s." msgstr "Page %(number)s of %(num_pages)s." -#: templates/admin/filer/folder/directory_table_list.html:222 +#: templates/admin/filer/folder/directory_table_list.html:225 #: templates/admin/filer/folder/directory_thumbnail_list.html:200 msgid "next" msgstr "next" -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 #, python-format msgid "Select all %(total_count)s" @@ -1124,11 +1130,11 @@ msgstr "upload failed" msgid "Download" msgstr "" -#: templates/admin/filer/tools/detail_info.html:15 +#: templates/admin/filer/tools/detail_info.html:16 msgid "Expand" msgstr "" -#: templates/admin/filer/tools/detail_info.html:20 +#: templates/admin/filer/tools/detail_info.html:21 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:108 #, fuzzy @@ -1136,19 +1142,19 @@ msgstr "" msgid "File is missing" msgstr "file missing" -#: templates/admin/filer/tools/detail_info.html:29 +#: templates/admin/filer/tools/detail_info.html:30 msgid "Type" msgstr "Type" -#: templates/admin/filer/tools/detail_info.html:37 +#: templates/admin/filer/tools/detail_info.html:38 msgid "File-size" msgstr "File-size" -#: templates/admin/filer/tools/detail_info.html:41 +#: templates/admin/filer/tools/detail_info.html:42 msgid "Modified" msgstr "Modified" -#: templates/admin/filer/tools/detail_info.html:45 +#: templates/admin/filer/tools/detail_info.html:46 msgid "Created" msgstr "Created" diff --git a/filer/locale/es/LC_MESSAGES/django.po b/filer/locale/es/LC_MESSAGES/django.po index 05849f99b..cc42ddf61 100644 --- a/filer/locale/es/LC_MESSAGES/django.po +++ b/filer/locale/es/LC_MESSAGES/django.po @@ -18,7 +18,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-26 08:46+0200\n" +"POT-Creation-Date: 2023-09-30 18:10+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Biel Frontera, 2023\n" "Language-Team: Spanish (http://app.transifex.com/divio/django-filer/language/" @@ -245,23 +245,23 @@ msgstr "" "Se debe elegir una opción de miniatura o unos parámetros para el cambio de " "tamaño." -#: admin/imageadmin.py:18 admin/imageadmin.py:105 +#: admin/imageadmin.py:20 admin/imageadmin.py:112 msgid "Subject location" msgstr "Localización del sujeto." -#: admin/imageadmin.py:19 +#: admin/imageadmin.py:21 msgid "Location of the main subject of the scene. Format: \"x,y\"." msgstr "Ubicación del tema principal en la escena. Formato \"x,y\"" -#: admin/imageadmin.py:57 +#: admin/imageadmin.py:59 msgid "Invalid subject location format. " msgstr "Formato de la ubicación del tema inválido" -#: admin/imageadmin.py:65 +#: admin/imageadmin.py:67 msgid "Subject location is outside of the image. " msgstr "La ubicación del tema está fuera de la imagen" -#: admin/imageadmin.py:74 +#: admin/imageadmin.py:76 #, python-brace-format msgid "Your input: \"{subject_location}\". " msgstr "Tu entrada: \"{subject_location}\"." @@ -308,7 +308,7 @@ msgstr "imagen" msgid "images" msgstr "imágenes" -#: models/abstract.py:147 +#: models/abstract.py:148 #, python-format msgid "" "Image format not recognized or image size exceeds limit of %(max_pixels)d " @@ -567,7 +567,7 @@ msgstr "Opciones de miniatura" #: models/virtualitems.py:46 #: templates/admin/filer/folder/directory_table_list.html:4 -#: templates/admin/filer/folder/directory_table_list.html:167 +#: templates/admin/filer/folder/directory_table_list.html:170 #: templates/admin/filer/folder/directory_thumbnail_list.html:5 #: templates/admin/filer/folder/directory_thumbnail_list.html:146 #: templates/admin/filer/tools/clipboard/clipboard.html:27 @@ -600,7 +600,7 @@ msgid "Go" msgstr "Continuar" #: templates/admin/filer/actions.html:14 -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 msgid "Click here to select the objects across all pages" msgstr "" @@ -612,7 +612,7 @@ msgid "Select all %(total_count)s files and/or folders" msgstr "Seleccionar los %(total_count)s archivos y/o carpetas" #: templates/admin/filer/actions.html:16 -#: templates/admin/filer/folder/directory_table_list.html:234 +#: templates/admin/filer/folder/directory_table_list.html:237 #: templates/admin/filer/folder/directory_thumbnail_list.html:212 msgid "Clear selection" msgstr "Limpiar la selección" @@ -715,7 +715,7 @@ msgstr "página de inicio de la administración" #: templates/admin/filer/folder/directory_listing.html:103 #: templates/admin/filer/folder/directory_table_list.html:29 #: templates/admin/filer/folder/directory_table_list.html:59 -#: templates/admin/filer/folder/directory_table_list.html:178 +#: templates/admin/filer/folder/directory_table_list.html:181 #: templates/admin/filer/folder/directory_thumbnail_list.html:27 #: templates/admin/filer/folder/directory_thumbnail_list.html:61 #: templates/admin/filer/folder/directory_thumbnail_list.html:156 @@ -922,12 +922,12 @@ msgid "Name" msgstr "Nombre" #: templates/admin/filer/folder/directory_table_list.html:17 -#: templates/admin/filer/tools/detail_info.html:49 +#: templates/admin/filer/tools/detail_info.html:50 msgid "Owner" msgstr "Propietario" #: templates/admin/filer/folder/directory_table_list.html:18 -#: templates/admin/filer/tools/detail_info.html:33 +#: templates/admin/filer/tools/detail_info.html:34 msgid "Size" msgstr "Tamaño" @@ -984,7 +984,7 @@ msgstr "Seleccionar este archivo" #: templates/admin/filer/folder/directory_table_list.html:107 #: templates/admin/filer/folder/directory_table_list.html:122 -#: templates/admin/filer/folder/directory_table_list.html:151 +#: templates/admin/filer/folder/directory_table_list.html:154 #: templates/admin/filer/folder/directory_thumbnail_list.html:107 #: templates/admin/filer/folder/directory_thumbnail_list.html:122 #, python-format @@ -1007,66 +1007,72 @@ msgid "enabled" msgstr "activado" #: templates/admin/filer/folder/directory_table_list.html:144 +#, fuzzy +#| msgid "Move selected files to clipboard" +msgid "URL copied to clipboard" +msgstr "Mover archivos selecionados al clipboard." + +#: templates/admin/filer/folder/directory_table_list.html:147 #, python-format msgid "Canonical url '%(item_label)s'" msgstr "Url canónica '%(item_label)s'" -#: templates/admin/filer/folder/directory_table_list.html:148 +#: templates/admin/filer/folder/directory_table_list.html:151 #, python-format msgid "Download '%(item_label)s'" msgstr "Descargar '%(item_label)s'" -#: templates/admin/filer/folder/directory_table_list.html:152 +#: templates/admin/filer/folder/directory_table_list.html:155 msgid "Remove file" msgstr "Eliminar archivo" -#: templates/admin/filer/folder/directory_table_list.html:160 +#: templates/admin/filer/folder/directory_table_list.html:163 #: templates/admin/filer/folder/directory_thumbnail_list.html:138 msgid "Drop files here or use the \"Upload Files\" button" msgstr "Suelta los archivos aquí o usa el botón \"Subir archivos\"" -#: templates/admin/filer/folder/directory_table_list.html:175 +#: templates/admin/filer/folder/directory_table_list.html:178 #: templates/admin/filer/folder/directory_thumbnail_list.html:153 msgid "Drop your file to upload into:" msgstr "Suelta el archivo a subir dentro:" -#: templates/admin/filer/folder/directory_table_list.html:185 +#: templates/admin/filer/folder/directory_table_list.html:188 #: templates/admin/filer/folder/directory_thumbnail_list.html:163 msgid "Upload" msgstr "Subir" -#: templates/admin/filer/folder/directory_table_list.html:197 +#: templates/admin/filer/folder/directory_table_list.html:200 #: templates/admin/filer/folder/directory_thumbnail_list.html:175 msgid "cancel" msgstr "cancelar" -#: templates/admin/filer/folder/directory_table_list.html:201 +#: templates/admin/filer/folder/directory_table_list.html:204 #: templates/admin/filer/folder/directory_thumbnail_list.html:179 msgid "Upload success!" msgstr "Subida exitosa!" -#: templates/admin/filer/folder/directory_table_list.html:205 +#: templates/admin/filer/folder/directory_table_list.html:208 #: templates/admin/filer/folder/directory_thumbnail_list.html:183 msgid "Upload canceled!" msgstr "Subida cancelada!" -#: templates/admin/filer/folder/directory_table_list.html:212 +#: templates/admin/filer/folder/directory_table_list.html:215 #: templates/admin/filer/folder/directory_thumbnail_list.html:190 msgid "previous" msgstr "anterior" -#: templates/admin/filer/folder/directory_table_list.html:217 +#: templates/admin/filer/folder/directory_table_list.html:220 #: templates/admin/filer/folder/directory_thumbnail_list.html:195 #, python-format msgid "Page %(number)s of %(num_pages)s." msgstr "Página %(number)s de %(num_pages)s." -#: templates/admin/filer/folder/directory_table_list.html:222 +#: templates/admin/filer/folder/directory_table_list.html:225 #: templates/admin/filer/folder/directory_thumbnail_list.html:200 msgid "next" msgstr "siguiente" -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 #, python-format msgid "Select all %(total_count)s" @@ -1137,29 +1143,29 @@ msgstr "fallo en la subida" msgid "Download" msgstr "Descarga" -#: templates/admin/filer/tools/detail_info.html:15 +#: templates/admin/filer/tools/detail_info.html:16 msgid "Expand" msgstr "Expande" -#: templates/admin/filer/tools/detail_info.html:20 +#: templates/admin/filer/tools/detail_info.html:21 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:108 msgid "File is missing" msgstr "Fichero no encontrado" -#: templates/admin/filer/tools/detail_info.html:29 +#: templates/admin/filer/tools/detail_info.html:30 msgid "Type" msgstr "Tipo" -#: templates/admin/filer/tools/detail_info.html:37 +#: templates/admin/filer/tools/detail_info.html:38 msgid "File-size" msgstr "Tamaño del archivo" -#: templates/admin/filer/tools/detail_info.html:41 +#: templates/admin/filer/tools/detail_info.html:42 msgid "Modified" msgstr "Modificado" -#: templates/admin/filer/tools/detail_info.html:45 +#: templates/admin/filer/tools/detail_info.html:46 msgid "Created" msgstr "Creado" diff --git a/filer/locale/et/LC_MESSAGES/django.po b/filer/locale/et/LC_MESSAGES/django.po index b4a984d46..44b47474a 100644 --- a/filer/locale/et/LC_MESSAGES/django.po +++ b/filer/locale/et/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-26 08:46+0200\n" +"POT-Creation-Date: 2023-09-30 18:10+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Johan Viirok, 2022\n" "Language-Team: Estonian (http://app.transifex.com/divio/django-filer/" @@ -221,23 +221,23 @@ msgstr "suurenda" msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/imageadmin.py:18 admin/imageadmin.py:105 +#: admin/imageadmin.py:20 admin/imageadmin.py:112 msgid "Subject location" msgstr "" -#: admin/imageadmin.py:19 +#: admin/imageadmin.py:21 msgid "Location of the main subject of the scene. Format: \"x,y\"." msgstr "" -#: admin/imageadmin.py:57 +#: admin/imageadmin.py:59 msgid "Invalid subject location format. " msgstr "" -#: admin/imageadmin.py:65 +#: admin/imageadmin.py:67 msgid "Subject location is outside of the image. " msgstr "" -#: admin/imageadmin.py:74 +#: admin/imageadmin.py:76 #, python-brace-format msgid "Your input: \"{subject_location}\". " msgstr "" @@ -284,7 +284,7 @@ msgstr "pilt" msgid "images" msgstr "pildid" -#: models/abstract.py:147 +#: models/abstract.py:148 #, python-format msgid "" "Image format not recognized or image size exceeds limit of %(max_pixels)d " @@ -538,7 +538,7 @@ msgstr "" #: models/virtualitems.py:46 #: templates/admin/filer/folder/directory_table_list.html:4 -#: templates/admin/filer/folder/directory_table_list.html:167 +#: templates/admin/filer/folder/directory_table_list.html:170 #: templates/admin/filer/folder/directory_thumbnail_list.html:5 #: templates/admin/filer/folder/directory_thumbnail_list.html:146 #: templates/admin/filer/tools/clipboard/clipboard.html:27 @@ -571,7 +571,7 @@ msgid "Go" msgstr "Mine" #: templates/admin/filer/actions.html:14 -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 msgid "Click here to select the objects across all pages" msgstr "" @@ -582,7 +582,7 @@ msgid "Select all %(total_count)s files and/or folders" msgstr "" #: templates/admin/filer/actions.html:16 -#: templates/admin/filer/folder/directory_table_list.html:234 +#: templates/admin/filer/folder/directory_table_list.html:237 #: templates/admin/filer/folder/directory_thumbnail_list.html:212 msgid "Clear selection" msgstr "Tühista valik" @@ -678,7 +678,7 @@ msgstr "admini koduleht" #: templates/admin/filer/folder/directory_listing.html:103 #: templates/admin/filer/folder/directory_table_list.html:29 #: templates/admin/filer/folder/directory_table_list.html:59 -#: templates/admin/filer/folder/directory_table_list.html:178 +#: templates/admin/filer/folder/directory_table_list.html:181 #: templates/admin/filer/folder/directory_thumbnail_list.html:27 #: templates/admin/filer/folder/directory_thumbnail_list.html:61 #: templates/admin/filer/folder/directory_thumbnail_list.html:156 @@ -867,12 +867,12 @@ msgid "Name" msgstr "Nimi" #: templates/admin/filer/folder/directory_table_list.html:17 -#: templates/admin/filer/tools/detail_info.html:49 +#: templates/admin/filer/tools/detail_info.html:50 msgid "Owner" msgstr "Omanik" #: templates/admin/filer/folder/directory_table_list.html:18 -#: templates/admin/filer/tools/detail_info.html:33 +#: templates/admin/filer/tools/detail_info.html:34 msgid "Size" msgstr "Suurus" @@ -927,7 +927,7 @@ msgstr "Vali see fail" #: templates/admin/filer/folder/directory_table_list.html:107 #: templates/admin/filer/folder/directory_table_list.html:122 -#: templates/admin/filer/folder/directory_table_list.html:151 +#: templates/admin/filer/folder/directory_table_list.html:154 #: templates/admin/filer/folder/directory_thumbnail_list.html:107 #: templates/admin/filer/folder/directory_thumbnail_list.html:122 #, python-format @@ -950,66 +950,70 @@ msgid "enabled" msgstr "sisse lülitatud" #: templates/admin/filer/folder/directory_table_list.html:144 +msgid "URL copied to clipboard" +msgstr "" + +#: templates/admin/filer/folder/directory_table_list.html:147 #, python-format msgid "Canonical url '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:148 +#: templates/admin/filer/folder/directory_table_list.html:151 #, python-format msgid "Download '%(item_label)s'" msgstr "Lae alla '%(item_label)s'" -#: templates/admin/filer/folder/directory_table_list.html:152 +#: templates/admin/filer/folder/directory_table_list.html:155 msgid "Remove file" msgstr "Eemalda fail" -#: templates/admin/filer/folder/directory_table_list.html:160 +#: templates/admin/filer/folder/directory_table_list.html:163 #: templates/admin/filer/folder/directory_thumbnail_list.html:138 msgid "Drop files here or use the \"Upload Files\" button" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:175 +#: templates/admin/filer/folder/directory_table_list.html:178 #: templates/admin/filer/folder/directory_thumbnail_list.html:153 msgid "Drop your file to upload into:" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:185 +#: templates/admin/filer/folder/directory_table_list.html:188 #: templates/admin/filer/folder/directory_thumbnail_list.html:163 msgid "Upload" msgstr "Laadi üles" -#: templates/admin/filer/folder/directory_table_list.html:197 +#: templates/admin/filer/folder/directory_table_list.html:200 #: templates/admin/filer/folder/directory_thumbnail_list.html:175 msgid "cancel" msgstr "tühista" -#: templates/admin/filer/folder/directory_table_list.html:201 +#: templates/admin/filer/folder/directory_table_list.html:204 #: templates/admin/filer/folder/directory_thumbnail_list.html:179 msgid "Upload success!" msgstr "Üleslaadimine õnnestus!" -#: templates/admin/filer/folder/directory_table_list.html:205 +#: templates/admin/filer/folder/directory_table_list.html:208 #: templates/admin/filer/folder/directory_thumbnail_list.html:183 msgid "Upload canceled!" msgstr "Üleslaadimine tühistatud!" -#: templates/admin/filer/folder/directory_table_list.html:212 +#: templates/admin/filer/folder/directory_table_list.html:215 #: templates/admin/filer/folder/directory_thumbnail_list.html:190 msgid "previous" msgstr "eelmine" -#: templates/admin/filer/folder/directory_table_list.html:217 +#: templates/admin/filer/folder/directory_table_list.html:220 #: templates/admin/filer/folder/directory_thumbnail_list.html:195 #, python-format msgid "Page %(number)s of %(num_pages)s." msgstr "Lehekülg %(number)s / %(num_pages)s." -#: templates/admin/filer/folder/directory_table_list.html:222 +#: templates/admin/filer/folder/directory_table_list.html:225 #: templates/admin/filer/folder/directory_thumbnail_list.html:200 msgid "next" msgstr "järgmine" -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 #, python-format msgid "Select all %(total_count)s" @@ -1079,29 +1083,29 @@ msgstr "üleslaadimine ebaõnnestus" msgid "Download" msgstr "" -#: templates/admin/filer/tools/detail_info.html:15 +#: templates/admin/filer/tools/detail_info.html:16 msgid "Expand" msgstr "" -#: templates/admin/filer/tools/detail_info.html:20 +#: templates/admin/filer/tools/detail_info.html:21 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:108 msgid "File is missing" msgstr "" -#: templates/admin/filer/tools/detail_info.html:29 +#: templates/admin/filer/tools/detail_info.html:30 msgid "Type" msgstr "Tüüp" -#: templates/admin/filer/tools/detail_info.html:37 +#: templates/admin/filer/tools/detail_info.html:38 msgid "File-size" msgstr "Faili suurus" -#: templates/admin/filer/tools/detail_info.html:41 +#: templates/admin/filer/tools/detail_info.html:42 msgid "Modified" msgstr "Muudetud" -#: templates/admin/filer/tools/detail_info.html:45 +#: templates/admin/filer/tools/detail_info.html:46 msgid "Created" msgstr "Loodud" diff --git a/filer/locale/eu/LC_MESSAGES/django.po b/filer/locale/eu/LC_MESSAGES/django.po index f63018d80..a28a55d23 100644 --- a/filer/locale/eu/LC_MESSAGES/django.po +++ b/filer/locale/eu/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-26 08:46+0200\n" +"POT-Creation-Date: 2023-09-30 18:10+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Ales Zabala Alava , 2013\n" "Language-Team: Basque (http://app.transifex.com/divio/django-filer/language/" @@ -226,23 +226,23 @@ msgid "Thumbnail option or resize parameters must be choosen." msgstr "" "Argazkitxo aukerak edo tamaina aldatzeko parametroak zehaztu behar dira." -#: admin/imageadmin.py:18 admin/imageadmin.py:105 +#: admin/imageadmin.py:20 admin/imageadmin.py:112 msgid "Subject location" msgstr "Subjektuaren kokapena" -#: admin/imageadmin.py:19 +#: admin/imageadmin.py:21 msgid "Location of the main subject of the scene. Format: \"x,y\"." msgstr "" -#: admin/imageadmin.py:57 +#: admin/imageadmin.py:59 msgid "Invalid subject location format. " msgstr "" -#: admin/imageadmin.py:65 +#: admin/imageadmin.py:67 msgid "Subject location is outside of the image. " msgstr "" -#: admin/imageadmin.py:74 +#: admin/imageadmin.py:76 #, python-brace-format msgid "Your input: \"{subject_location}\". " msgstr "" @@ -289,7 +289,7 @@ msgstr "irudia" msgid "images" msgstr "irudiak" -#: models/abstract.py:147 +#: models/abstract.py:148 #, python-format msgid "" "Image format not recognized or image size exceeds limit of %(max_pixels)d " @@ -543,7 +543,7 @@ msgstr "" #: models/virtualitems.py:46 #: templates/admin/filer/folder/directory_table_list.html:4 -#: templates/admin/filer/folder/directory_table_list.html:167 +#: templates/admin/filer/folder/directory_table_list.html:170 #: templates/admin/filer/folder/directory_thumbnail_list.html:5 #: templates/admin/filer/folder/directory_thumbnail_list.html:146 #: templates/admin/filer/tools/clipboard/clipboard.html:27 @@ -576,7 +576,7 @@ msgid "Go" msgstr "Joan" #: templates/admin/filer/actions.html:14 -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 msgid "Click here to select the objects across all pages" msgstr "Hemen klikatu orri guztietako objektuak hautatzeko" @@ -587,7 +587,7 @@ msgid "Select all %(total_count)s files and/or folders" msgstr "Hautatu %(total_count)s fitxategi eta/edo karpeta guztiak" #: templates/admin/filer/actions.html:16 -#: templates/admin/filer/folder/directory_table_list.html:234 +#: templates/admin/filer/folder/directory_table_list.html:237 #: templates/admin/filer/folder/directory_thumbnail_list.html:212 msgid "Clear selection" msgstr "Hautapena hustu" @@ -685,7 +685,7 @@ msgstr "kudeaketa hasiera" #: templates/admin/filer/folder/directory_listing.html:103 #: templates/admin/filer/folder/directory_table_list.html:29 #: templates/admin/filer/folder/directory_table_list.html:59 -#: templates/admin/filer/folder/directory_table_list.html:178 +#: templates/admin/filer/folder/directory_table_list.html:181 #: templates/admin/filer/folder/directory_thumbnail_list.html:27 #: templates/admin/filer/folder/directory_thumbnail_list.html:61 #: templates/admin/filer/folder/directory_thumbnail_list.html:156 @@ -879,12 +879,12 @@ msgid "Name" msgstr "Izena" #: templates/admin/filer/folder/directory_table_list.html:17 -#: templates/admin/filer/tools/detail_info.html:49 +#: templates/admin/filer/tools/detail_info.html:50 msgid "Owner" msgstr "Jabea" #: templates/admin/filer/folder/directory_table_list.html:18 -#: templates/admin/filer/tools/detail_info.html:33 +#: templates/admin/filer/tools/detail_info.html:34 msgid "Size" msgstr "" @@ -939,7 +939,7 @@ msgstr "Fitxategi hau aukeratu" #: templates/admin/filer/folder/directory_table_list.html:107 #: templates/admin/filer/folder/directory_table_list.html:122 -#: templates/admin/filer/folder/directory_table_list.html:151 +#: templates/admin/filer/folder/directory_table_list.html:154 #: templates/admin/filer/folder/directory_thumbnail_list.html:107 #: templates/admin/filer/folder/directory_thumbnail_list.html:122 #, python-format @@ -962,66 +962,72 @@ msgid "enabled" msgstr "gaituta" #: templates/admin/filer/folder/directory_table_list.html:144 +#, fuzzy +#| msgid "Move selected files to clipboard" +msgid "URL copied to clipboard" +msgstr "Hautatutako fitxategiak arbelara mugitu" + +#: templates/admin/filer/folder/directory_table_list.html:147 #, python-format msgid "Canonical url '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:148 +#: templates/admin/filer/folder/directory_table_list.html:151 #, python-format msgid "Download '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:152 +#: templates/admin/filer/folder/directory_table_list.html:155 msgid "Remove file" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:160 +#: templates/admin/filer/folder/directory_table_list.html:163 #: templates/admin/filer/folder/directory_thumbnail_list.html:138 msgid "Drop files here or use the \"Upload Files\" button" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:175 +#: templates/admin/filer/folder/directory_table_list.html:178 #: templates/admin/filer/folder/directory_thumbnail_list.html:153 msgid "Drop your file to upload into:" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:185 +#: templates/admin/filer/folder/directory_table_list.html:188 #: templates/admin/filer/folder/directory_thumbnail_list.html:163 msgid "Upload" msgstr "Igo" -#: templates/admin/filer/folder/directory_table_list.html:197 +#: templates/admin/filer/folder/directory_table_list.html:200 #: templates/admin/filer/folder/directory_thumbnail_list.html:175 msgid "cancel" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:201 +#: templates/admin/filer/folder/directory_table_list.html:204 #: templates/admin/filer/folder/directory_thumbnail_list.html:179 msgid "Upload success!" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:205 +#: templates/admin/filer/folder/directory_table_list.html:208 #: templates/admin/filer/folder/directory_thumbnail_list.html:183 msgid "Upload canceled!" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:212 +#: templates/admin/filer/folder/directory_table_list.html:215 #: templates/admin/filer/folder/directory_thumbnail_list.html:190 msgid "previous" msgstr "aurrekoa" -#: templates/admin/filer/folder/directory_table_list.html:217 +#: templates/admin/filer/folder/directory_table_list.html:220 #: templates/admin/filer/folder/directory_thumbnail_list.html:195 #, python-format msgid "Page %(number)s of %(num_pages)s." msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:222 +#: templates/admin/filer/folder/directory_table_list.html:225 #: templates/admin/filer/folder/directory_thumbnail_list.html:200 msgid "next" msgstr "hurrengoa" -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 #, python-format msgid "Select all %(total_count)s" @@ -1091,29 +1097,29 @@ msgstr "igotzean errorea" msgid "Download" msgstr "" -#: templates/admin/filer/tools/detail_info.html:15 +#: templates/admin/filer/tools/detail_info.html:16 msgid "Expand" msgstr "" -#: templates/admin/filer/tools/detail_info.html:20 +#: templates/admin/filer/tools/detail_info.html:21 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:108 msgid "File is missing" msgstr "" -#: templates/admin/filer/tools/detail_info.html:29 +#: templates/admin/filer/tools/detail_info.html:30 msgid "Type" msgstr "" -#: templates/admin/filer/tools/detail_info.html:37 +#: templates/admin/filer/tools/detail_info.html:38 msgid "File-size" msgstr "" -#: templates/admin/filer/tools/detail_info.html:41 +#: templates/admin/filer/tools/detail_info.html:42 msgid "Modified" msgstr "" -#: templates/admin/filer/tools/detail_info.html:45 +#: templates/admin/filer/tools/detail_info.html:46 msgid "Created" msgstr "" diff --git a/filer/locale/fa/LC_MESSAGES/django.po b/filer/locale/fa/LC_MESSAGES/django.po index 753cf2f2d..93e527ae3 100644 --- a/filer/locale/fa/LC_MESSAGES/django.po +++ b/filer/locale/fa/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-26 08:46+0200\n" +"POT-Creation-Date: 2023-09-30 18:10+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Fariman Ghaedi , 2019\n" "Language-Team: Persian (http://app.transifex.com/divio/django-filer/language/" @@ -221,23 +221,23 @@ msgstr "" msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/imageadmin.py:18 admin/imageadmin.py:105 +#: admin/imageadmin.py:20 admin/imageadmin.py:112 msgid "Subject location" msgstr "" -#: admin/imageadmin.py:19 +#: admin/imageadmin.py:21 msgid "Location of the main subject of the scene. Format: \"x,y\"." msgstr "" -#: admin/imageadmin.py:57 +#: admin/imageadmin.py:59 msgid "Invalid subject location format. " msgstr "" -#: admin/imageadmin.py:65 +#: admin/imageadmin.py:67 msgid "Subject location is outside of the image. " msgstr "" -#: admin/imageadmin.py:74 +#: admin/imageadmin.py:76 #, python-brace-format msgid "Your input: \"{subject_location}\". " msgstr "" @@ -284,7 +284,7 @@ msgstr "" msgid "images" msgstr "" -#: models/abstract.py:147 +#: models/abstract.py:148 #, python-format msgid "" "Image format not recognized or image size exceeds limit of %(max_pixels)d " @@ -538,7 +538,7 @@ msgstr "" #: models/virtualitems.py:46 #: templates/admin/filer/folder/directory_table_list.html:4 -#: templates/admin/filer/folder/directory_table_list.html:167 +#: templates/admin/filer/folder/directory_table_list.html:170 #: templates/admin/filer/folder/directory_thumbnail_list.html:5 #: templates/admin/filer/folder/directory_thumbnail_list.html:146 #: templates/admin/filer/tools/clipboard/clipboard.html:27 @@ -571,7 +571,7 @@ msgid "Go" msgstr "" #: templates/admin/filer/actions.html:14 -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 msgid "Click here to select the objects across all pages" msgstr "" @@ -582,7 +582,7 @@ msgid "Select all %(total_count)s files and/or folders" msgstr "" #: templates/admin/filer/actions.html:16 -#: templates/admin/filer/folder/directory_table_list.html:234 +#: templates/admin/filer/folder/directory_table_list.html:237 #: templates/admin/filer/folder/directory_thumbnail_list.html:212 msgid "Clear selection" msgstr "" @@ -678,7 +678,7 @@ msgstr "" #: templates/admin/filer/folder/directory_listing.html:103 #: templates/admin/filer/folder/directory_table_list.html:29 #: templates/admin/filer/folder/directory_table_list.html:59 -#: templates/admin/filer/folder/directory_table_list.html:178 +#: templates/admin/filer/folder/directory_table_list.html:181 #: templates/admin/filer/folder/directory_thumbnail_list.html:27 #: templates/admin/filer/folder/directory_thumbnail_list.html:61 #: templates/admin/filer/folder/directory_thumbnail_list.html:156 @@ -867,12 +867,12 @@ msgid "Name" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:17 -#: templates/admin/filer/tools/detail_info.html:49 +#: templates/admin/filer/tools/detail_info.html:50 msgid "Owner" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:18 -#: templates/admin/filer/tools/detail_info.html:33 +#: templates/admin/filer/tools/detail_info.html:34 msgid "Size" msgstr "" @@ -927,7 +927,7 @@ msgstr "" #: templates/admin/filer/folder/directory_table_list.html:107 #: templates/admin/filer/folder/directory_table_list.html:122 -#: templates/admin/filer/folder/directory_table_list.html:151 +#: templates/admin/filer/folder/directory_table_list.html:154 #: templates/admin/filer/folder/directory_thumbnail_list.html:107 #: templates/admin/filer/folder/directory_thumbnail_list.html:122 #, python-format @@ -950,66 +950,72 @@ msgid "enabled" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:144 +#, fuzzy +#| msgid "Move selected files to clipboard" +msgid "URL copied to clipboard" +msgstr "انتقال فایل های انتخاب شده به کلیپ برد" + +#: templates/admin/filer/folder/directory_table_list.html:147 #, python-format msgid "Canonical url '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:148 +#: templates/admin/filer/folder/directory_table_list.html:151 #, python-format msgid "Download '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:152 +#: templates/admin/filer/folder/directory_table_list.html:155 msgid "Remove file" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:160 +#: templates/admin/filer/folder/directory_table_list.html:163 #: templates/admin/filer/folder/directory_thumbnail_list.html:138 msgid "Drop files here or use the \"Upload Files\" button" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:175 +#: templates/admin/filer/folder/directory_table_list.html:178 #: templates/admin/filer/folder/directory_thumbnail_list.html:153 msgid "Drop your file to upload into:" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:185 +#: templates/admin/filer/folder/directory_table_list.html:188 #: templates/admin/filer/folder/directory_thumbnail_list.html:163 msgid "Upload" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:197 +#: templates/admin/filer/folder/directory_table_list.html:200 #: templates/admin/filer/folder/directory_thumbnail_list.html:175 msgid "cancel" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:201 +#: templates/admin/filer/folder/directory_table_list.html:204 #: templates/admin/filer/folder/directory_thumbnail_list.html:179 msgid "Upload success!" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:205 +#: templates/admin/filer/folder/directory_table_list.html:208 #: templates/admin/filer/folder/directory_thumbnail_list.html:183 msgid "Upload canceled!" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:212 +#: templates/admin/filer/folder/directory_table_list.html:215 #: templates/admin/filer/folder/directory_thumbnail_list.html:190 msgid "previous" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:217 +#: templates/admin/filer/folder/directory_table_list.html:220 #: templates/admin/filer/folder/directory_thumbnail_list.html:195 #, python-format msgid "Page %(number)s of %(num_pages)s." msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:222 +#: templates/admin/filer/folder/directory_table_list.html:225 #: templates/admin/filer/folder/directory_thumbnail_list.html:200 msgid "next" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 #, python-format msgid "Select all %(total_count)s" @@ -1079,29 +1085,29 @@ msgstr "" msgid "Download" msgstr "" -#: templates/admin/filer/tools/detail_info.html:15 +#: templates/admin/filer/tools/detail_info.html:16 msgid "Expand" msgstr "" -#: templates/admin/filer/tools/detail_info.html:20 +#: templates/admin/filer/tools/detail_info.html:21 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:108 msgid "File is missing" msgstr "" -#: templates/admin/filer/tools/detail_info.html:29 +#: templates/admin/filer/tools/detail_info.html:30 msgid "Type" msgstr "" -#: templates/admin/filer/tools/detail_info.html:37 +#: templates/admin/filer/tools/detail_info.html:38 msgid "File-size" msgstr "" -#: templates/admin/filer/tools/detail_info.html:41 +#: templates/admin/filer/tools/detail_info.html:42 msgid "Modified" msgstr "" -#: templates/admin/filer/tools/detail_info.html:45 +#: templates/admin/filer/tools/detail_info.html:46 msgid "Created" msgstr "" diff --git a/filer/locale/fi/LC_MESSAGES/django.po b/filer/locale/fi/LC_MESSAGES/django.po index 8971021b3..35fc907e0 100644 --- a/filer/locale/fi/LC_MESSAGES/django.po +++ b/filer/locale/fi/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-26 08:46+0200\n" +"POT-Creation-Date: 2023-09-30 18:10+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Teemu Gratschev , 2022\n" "Language-Team: Finnish (http://app.transifex.com/divio/django-filer/language/" @@ -226,23 +226,23 @@ msgstr "suurenna" msgid "Thumbnail option or resize parameters must be choosen." msgstr "Pikkukuvan asetus tai koon muuttamisen parametrit tulee valita." -#: admin/imageadmin.py:18 admin/imageadmin.py:105 +#: admin/imageadmin.py:20 admin/imageadmin.py:112 msgid "Subject location" msgstr "Kohteen sijainti" -#: admin/imageadmin.py:19 +#: admin/imageadmin.py:21 msgid "Location of the main subject of the scene. Format: \"x,y\"." msgstr "Kuvan pääkohteen sijainti. Muoto: \"x,y\"." -#: admin/imageadmin.py:57 +#: admin/imageadmin.py:59 msgid "Invalid subject location format. " msgstr "Virheellinen kohteen sijainnin muoto." -#: admin/imageadmin.py:65 +#: admin/imageadmin.py:67 msgid "Subject location is outside of the image. " msgstr "Kohteen sijainti kuvan ulkopuolella." -#: admin/imageadmin.py:74 +#: admin/imageadmin.py:76 #, python-brace-format msgid "Your input: \"{subject_location}\". " msgstr "Syöttösi: \"{subject_location}\"." @@ -289,7 +289,7 @@ msgstr "kuva" msgid "images" msgstr "kuvat" -#: models/abstract.py:147 +#: models/abstract.py:148 #, python-format msgid "" "Image format not recognized or image size exceeds limit of %(max_pixels)d " @@ -545,7 +545,7 @@ msgstr "pikkukuvan asetukset" #: models/virtualitems.py:46 #: templates/admin/filer/folder/directory_table_list.html:4 -#: templates/admin/filer/folder/directory_table_list.html:167 +#: templates/admin/filer/folder/directory_table_list.html:170 #: templates/admin/filer/folder/directory_thumbnail_list.html:5 #: templates/admin/filer/folder/directory_thumbnail_list.html:146 #: templates/admin/filer/tools/clipboard/clipboard.html:27 @@ -578,7 +578,7 @@ msgid "Go" msgstr "Suorita" #: templates/admin/filer/actions.html:14 -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 msgid "Click here to select the objects across all pages" msgstr "Valitse kaikki kohteet kaikilta sivuilta" @@ -589,7 +589,7 @@ msgid "Select all %(total_count)s files and/or folders" msgstr "Valitse kaikki %(total_count)s tiedostoa ja/tai kansiota" #: templates/admin/filer/actions.html:16 -#: templates/admin/filer/folder/directory_table_list.html:234 +#: templates/admin/filer/folder/directory_table_list.html:237 #: templates/admin/filer/folder/directory_thumbnail_list.html:212 msgid "Clear selection" msgstr "Tyhjennä valinta" @@ -692,7 +692,7 @@ msgstr "hallinnan etusivu" #: templates/admin/filer/folder/directory_listing.html:103 #: templates/admin/filer/folder/directory_table_list.html:29 #: templates/admin/filer/folder/directory_table_list.html:59 -#: templates/admin/filer/folder/directory_table_list.html:178 +#: templates/admin/filer/folder/directory_table_list.html:181 #: templates/admin/filer/folder/directory_thumbnail_list.html:27 #: templates/admin/filer/folder/directory_thumbnail_list.html:61 #: templates/admin/filer/folder/directory_thumbnail_list.html:156 @@ -897,12 +897,12 @@ msgid "Name" msgstr "Nimi" #: templates/admin/filer/folder/directory_table_list.html:17 -#: templates/admin/filer/tools/detail_info.html:49 +#: templates/admin/filer/tools/detail_info.html:50 msgid "Owner" msgstr "Omistaja" #: templates/admin/filer/folder/directory_table_list.html:18 -#: templates/admin/filer/tools/detail_info.html:33 +#: templates/admin/filer/tools/detail_info.html:34 msgid "Size" msgstr "Koko" @@ -957,7 +957,7 @@ msgstr "Valitse tämä tiedosto" #: templates/admin/filer/folder/directory_table_list.html:107 #: templates/admin/filer/folder/directory_table_list.html:122 -#: templates/admin/filer/folder/directory_table_list.html:151 +#: templates/admin/filer/folder/directory_table_list.html:154 #: templates/admin/filer/folder/directory_thumbnail_list.html:107 #: templates/admin/filer/folder/directory_thumbnail_list.html:122 #, python-format @@ -980,66 +980,72 @@ msgid "enabled" msgstr "käytössä" #: templates/admin/filer/folder/directory_table_list.html:144 +#, fuzzy +#| msgid "Move selected files to clipboard" +msgid "URL copied to clipboard" +msgstr "Siirrä valitut tiedostot leikepöydälle" + +#: templates/admin/filer/folder/directory_table_list.html:147 #, python-format msgid "Canonical url '%(item_label)s'" msgstr "Canonical-osoite '%(item_label)s'" -#: templates/admin/filer/folder/directory_table_list.html:148 +#: templates/admin/filer/folder/directory_table_list.html:151 #, python-format msgid "Download '%(item_label)s'" msgstr "Lataa '%(item_label)s'" -#: templates/admin/filer/folder/directory_table_list.html:152 +#: templates/admin/filer/folder/directory_table_list.html:155 msgid "Remove file" msgstr "Poista tiedosto" -#: templates/admin/filer/folder/directory_table_list.html:160 +#: templates/admin/filer/folder/directory_table_list.html:163 #: templates/admin/filer/folder/directory_thumbnail_list.html:138 msgid "Drop files here or use the \"Upload Files\" button" msgstr "Pudota tiedostoja tähän tai käytä \"Lataa tiedostoja\" painiketta" -#: templates/admin/filer/folder/directory_table_list.html:175 +#: templates/admin/filer/folder/directory_table_list.html:178 #: templates/admin/filer/folder/directory_thumbnail_list.html:153 msgid "Drop your file to upload into:" msgstr "Pudota tiedostosi:" -#: templates/admin/filer/folder/directory_table_list.html:185 +#: templates/admin/filer/folder/directory_table_list.html:188 #: templates/admin/filer/folder/directory_thumbnail_list.html:163 msgid "Upload" msgstr "Siirrä palvelimelle" -#: templates/admin/filer/folder/directory_table_list.html:197 +#: templates/admin/filer/folder/directory_table_list.html:200 #: templates/admin/filer/folder/directory_thumbnail_list.html:175 msgid "cancel" msgstr "peruuta" -#: templates/admin/filer/folder/directory_table_list.html:201 +#: templates/admin/filer/folder/directory_table_list.html:204 #: templates/admin/filer/folder/directory_thumbnail_list.html:179 msgid "Upload success!" msgstr "Lataus onnistui!" -#: templates/admin/filer/folder/directory_table_list.html:205 +#: templates/admin/filer/folder/directory_table_list.html:208 #: templates/admin/filer/folder/directory_thumbnail_list.html:183 msgid "Upload canceled!" msgstr "Lataus peruttu!" -#: templates/admin/filer/folder/directory_table_list.html:212 +#: templates/admin/filer/folder/directory_table_list.html:215 #: templates/admin/filer/folder/directory_thumbnail_list.html:190 msgid "previous" msgstr "edellinen" -#: templates/admin/filer/folder/directory_table_list.html:217 +#: templates/admin/filer/folder/directory_table_list.html:220 #: templates/admin/filer/folder/directory_thumbnail_list.html:195 #, python-format msgid "Page %(number)s of %(num_pages)s." msgstr "Sivu %(number)s/%(num_pages)s" -#: templates/admin/filer/folder/directory_table_list.html:222 +#: templates/admin/filer/folder/directory_table_list.html:225 #: templates/admin/filer/folder/directory_thumbnail_list.html:200 msgid "next" msgstr "seuraava" -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 #, python-format msgid "Select all %(total_count)s" @@ -1109,29 +1115,29 @@ msgstr "siirto epäonnistui" msgid "Download" msgstr "" -#: templates/admin/filer/tools/detail_info.html:15 +#: templates/admin/filer/tools/detail_info.html:16 msgid "Expand" msgstr "" -#: templates/admin/filer/tools/detail_info.html:20 +#: templates/admin/filer/tools/detail_info.html:21 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:108 msgid "File is missing" msgstr "" -#: templates/admin/filer/tools/detail_info.html:29 +#: templates/admin/filer/tools/detail_info.html:30 msgid "Type" msgstr "Tyyppi" -#: templates/admin/filer/tools/detail_info.html:37 +#: templates/admin/filer/tools/detail_info.html:38 msgid "File-size" msgstr "Tiedostokoko" -#: templates/admin/filer/tools/detail_info.html:41 +#: templates/admin/filer/tools/detail_info.html:42 msgid "Modified" msgstr "Muokattu" -#: templates/admin/filer/tools/detail_info.html:45 +#: templates/admin/filer/tools/detail_info.html:46 msgid "Created" msgstr "Luotu" diff --git a/filer/locale/fr/LC_MESSAGES/django.po b/filer/locale/fr/LC_MESSAGES/django.po index 6da5807f3..bd788a5ba 100644 --- a/filer/locale/fr/LC_MESSAGES/django.po +++ b/filer/locale/fr/LC_MESSAGES/django.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-26 08:46+0200\n" +"POT-Creation-Date: 2023-09-30 18:10+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Corentin Bettiol, 2023\n" "Language-Team: French (http://app.transifex.com/divio/django-filer/language/" @@ -239,23 +239,23 @@ msgstr "" "Une option de miniature ou des paramètres de dimensionnement doivent être " "choisis." -#: admin/imageadmin.py:18 admin/imageadmin.py:105 +#: admin/imageadmin.py:20 admin/imageadmin.py:112 msgid "Subject location" msgstr "Emplacement du sujet" -#: admin/imageadmin.py:19 +#: admin/imageadmin.py:21 msgid "Location of the main subject of the scene. Format: \"x,y\"." msgstr "Emplacement du sujet principal de la scène. Format : « x,y »." -#: admin/imageadmin.py:57 +#: admin/imageadmin.py:59 msgid "Invalid subject location format. " msgstr "Format d'emplacement de sujet invalide." -#: admin/imageadmin.py:65 +#: admin/imageadmin.py:67 msgid "Subject location is outside of the image. " msgstr "L'emplacement du sujet est en dehors de l'image." -#: admin/imageadmin.py:74 +#: admin/imageadmin.py:76 #, python-brace-format msgid "Your input: \"{subject_location}\". " msgstr "Votre entrée : « {subject_location} »." @@ -302,7 +302,7 @@ msgstr "image" msgid "images" msgstr "images" -#: models/abstract.py:147 +#: models/abstract.py:148 #, python-format msgid "" "Image format not recognized or image size exceeds limit of %(max_pixels)d " @@ -565,7 +565,7 @@ msgstr "options de miniature" #: models/virtualitems.py:46 #: templates/admin/filer/folder/directory_table_list.html:4 -#: templates/admin/filer/folder/directory_table_list.html:167 +#: templates/admin/filer/folder/directory_table_list.html:170 #: templates/admin/filer/folder/directory_thumbnail_list.html:5 #: templates/admin/filer/folder/directory_thumbnail_list.html:146 #: templates/admin/filer/tools/clipboard/clipboard.html:27 @@ -598,7 +598,7 @@ msgid "Go" msgstr "Envoyer" #: templates/admin/filer/actions.html:14 -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 msgid "Click here to select the objects across all pages" msgstr "Cliquez ici pour sélectionner tous les objets sur l'ensemble des pages" @@ -609,7 +609,7 @@ msgid "Select all %(total_count)s files and/or folders" msgstr "Sélectionner tous les %(total_count)s fichiers et/ou dossiers" #: templates/admin/filer/actions.html:16 -#: templates/admin/filer/folder/directory_table_list.html:234 +#: templates/admin/filer/folder/directory_table_list.html:237 #: templates/admin/filer/folder/directory_thumbnail_list.html:212 msgid "Clear selection" msgstr "Effacer la sélection" @@ -712,7 +712,7 @@ msgstr "page d'accueil de l'administrateur" #: templates/admin/filer/folder/directory_listing.html:103 #: templates/admin/filer/folder/directory_table_list.html:29 #: templates/admin/filer/folder/directory_table_list.html:59 -#: templates/admin/filer/folder/directory_table_list.html:178 +#: templates/admin/filer/folder/directory_table_list.html:181 #: templates/admin/filer/folder/directory_thumbnail_list.html:27 #: templates/admin/filer/folder/directory_thumbnail_list.html:61 #: templates/admin/filer/folder/directory_thumbnail_list.html:156 @@ -921,12 +921,12 @@ msgid "Name" msgstr "Nom" #: templates/admin/filer/folder/directory_table_list.html:17 -#: templates/admin/filer/tools/detail_info.html:49 +#: templates/admin/filer/tools/detail_info.html:50 msgid "Owner" msgstr "Propriétaire" #: templates/admin/filer/folder/directory_table_list.html:18 -#: templates/admin/filer/tools/detail_info.html:33 +#: templates/admin/filer/tools/detail_info.html:34 msgid "Size" msgstr "Taille" @@ -983,7 +983,7 @@ msgstr "Sélectionner ce fichier" #: templates/admin/filer/folder/directory_table_list.html:107 #: templates/admin/filer/folder/directory_table_list.html:122 -#: templates/admin/filer/folder/directory_table_list.html:151 +#: templates/admin/filer/folder/directory_table_list.html:154 #: templates/admin/filer/folder/directory_thumbnail_list.html:107 #: templates/admin/filer/folder/directory_thumbnail_list.html:122 #, python-format @@ -1006,67 +1006,73 @@ msgid "enabled" msgstr "activé" #: templates/admin/filer/folder/directory_table_list.html:144 +#, fuzzy +#| msgid "Move selected files to clipboard" +msgid "URL copied to clipboard" +msgstr "Déplacer les fichiers sélectionnés vers le presse-papiers" + +#: templates/admin/filer/folder/directory_table_list.html:147 #, python-format msgid "Canonical url '%(item_label)s'" msgstr "url canonique '%(item_label)s' " -#: templates/admin/filer/folder/directory_table_list.html:148 +#: templates/admin/filer/folder/directory_table_list.html:151 #, python-format msgid "Download '%(item_label)s'" msgstr "Télécharger '%(item_label)s' " -#: templates/admin/filer/folder/directory_table_list.html:152 +#: templates/admin/filer/folder/directory_table_list.html:155 msgid "Remove file" msgstr "Supprimer le fichier" -#: templates/admin/filer/folder/directory_table_list.html:160 +#: templates/admin/filer/folder/directory_table_list.html:163 #: templates/admin/filer/folder/directory_thumbnail_list.html:138 msgid "Drop files here or use the \"Upload Files\" button" msgstr "" "Déposez des fichiers ici ou utilisez le bouton « Téléverser des fichiers »" -#: templates/admin/filer/folder/directory_table_list.html:175 +#: templates/admin/filer/folder/directory_table_list.html:178 #: templates/admin/filer/folder/directory_thumbnail_list.html:153 msgid "Drop your file to upload into:" msgstr "Déposez votre fichier à téléverser dans :" -#: templates/admin/filer/folder/directory_table_list.html:185 +#: templates/admin/filer/folder/directory_table_list.html:188 #: templates/admin/filer/folder/directory_thumbnail_list.html:163 msgid "Upload" msgstr "Téléverser" -#: templates/admin/filer/folder/directory_table_list.html:197 +#: templates/admin/filer/folder/directory_table_list.html:200 #: templates/admin/filer/folder/directory_thumbnail_list.html:175 msgid "cancel" msgstr "annuler" -#: templates/admin/filer/folder/directory_table_list.html:201 +#: templates/admin/filer/folder/directory_table_list.html:204 #: templates/admin/filer/folder/directory_thumbnail_list.html:179 msgid "Upload success!" msgstr "Téléversement réussi !" -#: templates/admin/filer/folder/directory_table_list.html:205 +#: templates/admin/filer/folder/directory_table_list.html:208 #: templates/admin/filer/folder/directory_thumbnail_list.html:183 msgid "Upload canceled!" msgstr "Téléversement annulé !" -#: templates/admin/filer/folder/directory_table_list.html:212 +#: templates/admin/filer/folder/directory_table_list.html:215 #: templates/admin/filer/folder/directory_thumbnail_list.html:190 msgid "previous" msgstr "précédent" -#: templates/admin/filer/folder/directory_table_list.html:217 +#: templates/admin/filer/folder/directory_table_list.html:220 #: templates/admin/filer/folder/directory_thumbnail_list.html:195 #, python-format msgid "Page %(number)s of %(num_pages)s." msgstr "Page %(number)s sur %(num_pages)s." -#: templates/admin/filer/folder/directory_table_list.html:222 +#: templates/admin/filer/folder/directory_table_list.html:225 #: templates/admin/filer/folder/directory_thumbnail_list.html:200 msgid "next" msgstr "suivant" -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 #, python-format msgid "Select all %(total_count)s" @@ -1137,29 +1143,29 @@ msgstr "transfert échoué" msgid "Download" msgstr "Télécharger" -#: templates/admin/filer/tools/detail_info.html:15 +#: templates/admin/filer/tools/detail_info.html:16 msgid "Expand" msgstr "Agrandir" -#: templates/admin/filer/tools/detail_info.html:20 +#: templates/admin/filer/tools/detail_info.html:21 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:108 msgid "File is missing" msgstr "Le fichier est manquant" -#: templates/admin/filer/tools/detail_info.html:29 +#: templates/admin/filer/tools/detail_info.html:30 msgid "Type" msgstr "Type" -#: templates/admin/filer/tools/detail_info.html:37 +#: templates/admin/filer/tools/detail_info.html:38 msgid "File-size" msgstr "Taille de fichier" -#: templates/admin/filer/tools/detail_info.html:41 +#: templates/admin/filer/tools/detail_info.html:42 msgid "Modified" msgstr "Modifié" -#: templates/admin/filer/tools/detail_info.html:45 +#: templates/admin/filer/tools/detail_info.html:46 msgid "Created" msgstr "Créé" diff --git a/filer/locale/gl/LC_MESSAGES/django.po b/filer/locale/gl/LC_MESSAGES/django.po index 170460263..57767645d 100644 --- a/filer/locale/gl/LC_MESSAGES/django.po +++ b/filer/locale/gl/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-26 08:46+0200\n" +"POT-Creation-Date: 2023-09-30 18:10+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Pablo, 2015\n" "Language-Team: Galician (http://app.transifex.com/divio/django-filer/" @@ -220,23 +220,23 @@ msgstr "ampliar" msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/imageadmin.py:18 admin/imageadmin.py:105 +#: admin/imageadmin.py:20 admin/imageadmin.py:112 msgid "Subject location" msgstr "" -#: admin/imageadmin.py:19 +#: admin/imageadmin.py:21 msgid "Location of the main subject of the scene. Format: \"x,y\"." msgstr "" -#: admin/imageadmin.py:57 +#: admin/imageadmin.py:59 msgid "Invalid subject location format. " msgstr "" -#: admin/imageadmin.py:65 +#: admin/imageadmin.py:67 msgid "Subject location is outside of the image. " msgstr "" -#: admin/imageadmin.py:74 +#: admin/imageadmin.py:76 #, python-brace-format msgid "Your input: \"{subject_location}\". " msgstr "" @@ -283,7 +283,7 @@ msgstr "imaxe" msgid "images" msgstr "imaxes" -#: models/abstract.py:147 +#: models/abstract.py:148 #, python-format msgid "" "Image format not recognized or image size exceeds limit of %(max_pixels)d " @@ -537,7 +537,7 @@ msgstr "" #: models/virtualitems.py:46 #: templates/admin/filer/folder/directory_table_list.html:4 -#: templates/admin/filer/folder/directory_table_list.html:167 +#: templates/admin/filer/folder/directory_table_list.html:170 #: templates/admin/filer/folder/directory_thumbnail_list.html:5 #: templates/admin/filer/folder/directory_thumbnail_list.html:146 #: templates/admin/filer/tools/clipboard/clipboard.html:27 @@ -570,7 +570,7 @@ msgid "Go" msgstr "" #: templates/admin/filer/actions.html:14 -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 msgid "Click here to select the objects across all pages" msgstr "" @@ -581,7 +581,7 @@ msgid "Select all %(total_count)s files and/or folders" msgstr "" #: templates/admin/filer/actions.html:16 -#: templates/admin/filer/folder/directory_table_list.html:234 +#: templates/admin/filer/folder/directory_table_list.html:237 #: templates/admin/filer/folder/directory_thumbnail_list.html:212 msgid "Clear selection" msgstr "" @@ -677,7 +677,7 @@ msgstr "" #: templates/admin/filer/folder/directory_listing.html:103 #: templates/admin/filer/folder/directory_table_list.html:29 #: templates/admin/filer/folder/directory_table_list.html:59 -#: templates/admin/filer/folder/directory_table_list.html:178 +#: templates/admin/filer/folder/directory_table_list.html:181 #: templates/admin/filer/folder/directory_thumbnail_list.html:27 #: templates/admin/filer/folder/directory_thumbnail_list.html:61 #: templates/admin/filer/folder/directory_thumbnail_list.html:156 @@ -866,12 +866,12 @@ msgid "Name" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:17 -#: templates/admin/filer/tools/detail_info.html:49 +#: templates/admin/filer/tools/detail_info.html:50 msgid "Owner" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:18 -#: templates/admin/filer/tools/detail_info.html:33 +#: templates/admin/filer/tools/detail_info.html:34 msgid "Size" msgstr "" @@ -926,7 +926,7 @@ msgstr "" #: templates/admin/filer/folder/directory_table_list.html:107 #: templates/admin/filer/folder/directory_table_list.html:122 -#: templates/admin/filer/folder/directory_table_list.html:151 +#: templates/admin/filer/folder/directory_table_list.html:154 #: templates/admin/filer/folder/directory_thumbnail_list.html:107 #: templates/admin/filer/folder/directory_thumbnail_list.html:122 #, python-format @@ -949,66 +949,72 @@ msgid "enabled" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:144 +#, fuzzy +#| msgid "Move selected files to clipboard" +msgid "URL copied to clipboard" +msgstr "Mover arquivos seleccionados ao portapapeis." + +#: templates/admin/filer/folder/directory_table_list.html:147 #, python-format msgid "Canonical url '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:148 +#: templates/admin/filer/folder/directory_table_list.html:151 #, python-format msgid "Download '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:152 +#: templates/admin/filer/folder/directory_table_list.html:155 msgid "Remove file" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:160 +#: templates/admin/filer/folder/directory_table_list.html:163 #: templates/admin/filer/folder/directory_thumbnail_list.html:138 msgid "Drop files here or use the \"Upload Files\" button" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:175 +#: templates/admin/filer/folder/directory_table_list.html:178 #: templates/admin/filer/folder/directory_thumbnail_list.html:153 msgid "Drop your file to upload into:" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:185 +#: templates/admin/filer/folder/directory_table_list.html:188 #: templates/admin/filer/folder/directory_thumbnail_list.html:163 msgid "Upload" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:197 +#: templates/admin/filer/folder/directory_table_list.html:200 #: templates/admin/filer/folder/directory_thumbnail_list.html:175 msgid "cancel" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:201 +#: templates/admin/filer/folder/directory_table_list.html:204 #: templates/admin/filer/folder/directory_thumbnail_list.html:179 msgid "Upload success!" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:205 +#: templates/admin/filer/folder/directory_table_list.html:208 #: templates/admin/filer/folder/directory_thumbnail_list.html:183 msgid "Upload canceled!" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:212 +#: templates/admin/filer/folder/directory_table_list.html:215 #: templates/admin/filer/folder/directory_thumbnail_list.html:190 msgid "previous" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:217 +#: templates/admin/filer/folder/directory_table_list.html:220 #: templates/admin/filer/folder/directory_thumbnail_list.html:195 #, python-format msgid "Page %(number)s of %(num_pages)s." msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:222 +#: templates/admin/filer/folder/directory_table_list.html:225 #: templates/admin/filer/folder/directory_thumbnail_list.html:200 msgid "next" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 #, python-format msgid "Select all %(total_count)s" @@ -1078,29 +1084,29 @@ msgstr "" msgid "Download" msgstr "" -#: templates/admin/filer/tools/detail_info.html:15 +#: templates/admin/filer/tools/detail_info.html:16 msgid "Expand" msgstr "" -#: templates/admin/filer/tools/detail_info.html:20 +#: templates/admin/filer/tools/detail_info.html:21 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:108 msgid "File is missing" msgstr "" -#: templates/admin/filer/tools/detail_info.html:29 +#: templates/admin/filer/tools/detail_info.html:30 msgid "Type" msgstr "" -#: templates/admin/filer/tools/detail_info.html:37 +#: templates/admin/filer/tools/detail_info.html:38 msgid "File-size" msgstr "" -#: templates/admin/filer/tools/detail_info.html:41 +#: templates/admin/filer/tools/detail_info.html:42 msgid "Modified" msgstr "" -#: templates/admin/filer/tools/detail_info.html:45 +#: templates/admin/filer/tools/detail_info.html:46 msgid "Created" msgstr "" diff --git a/filer/locale/he/LC_MESSAGES/django.po b/filer/locale/he/LC_MESSAGES/django.po index 60190950b..6bd35b217 100644 --- a/filer/locale/he/LC_MESSAGES/django.po +++ b/filer/locale/he/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-26 08:46+0200\n" +"POT-Creation-Date: 2023-09-30 18:10+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Angelo Dini \n" "Language-Team: Hebrew (http://app.transifex.com/divio/django-filer/language/" @@ -221,23 +221,23 @@ msgstr "הגדל" msgid "Thumbnail option or resize parameters must be choosen." msgstr "עליך לבחור אפשרות תמונה ממוזערת או פרמטרי שינוי גודל." -#: admin/imageadmin.py:18 admin/imageadmin.py:105 +#: admin/imageadmin.py:20 admin/imageadmin.py:112 msgid "Subject location" msgstr "מיקום נושא" -#: admin/imageadmin.py:19 +#: admin/imageadmin.py:21 msgid "Location of the main subject of the scene. Format: \"x,y\"." msgstr "" -#: admin/imageadmin.py:57 +#: admin/imageadmin.py:59 msgid "Invalid subject location format. " msgstr "" -#: admin/imageadmin.py:65 +#: admin/imageadmin.py:67 msgid "Subject location is outside of the image. " msgstr "" -#: admin/imageadmin.py:74 +#: admin/imageadmin.py:76 #, python-brace-format msgid "Your input: \"{subject_location}\". " msgstr "" @@ -284,7 +284,7 @@ msgstr "תמונה" msgid "images" msgstr "תמונות" -#: models/abstract.py:147 +#: models/abstract.py:148 #, python-format msgid "" "Image format not recognized or image size exceeds limit of %(max_pixels)d " @@ -538,7 +538,7 @@ msgstr "" #: models/virtualitems.py:46 #: templates/admin/filer/folder/directory_table_list.html:4 -#: templates/admin/filer/folder/directory_table_list.html:167 +#: templates/admin/filer/folder/directory_table_list.html:170 #: templates/admin/filer/folder/directory_thumbnail_list.html:5 #: templates/admin/filer/folder/directory_thumbnail_list.html:146 #: templates/admin/filer/tools/clipboard/clipboard.html:27 @@ -571,7 +571,7 @@ msgid "Go" msgstr "בצע" #: templates/admin/filer/actions.html:14 -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 msgid "Click here to select the objects across all pages" msgstr "לחץ כאן כדי לבחור את האובייקטים על פני כל הדפים" @@ -582,7 +582,7 @@ msgid "Select all %(total_count)s files and/or folders" msgstr "בחר את כל ה- %(total_count)s קבצים ו/או התיקיות" #: templates/admin/filer/actions.html:16 -#: templates/admin/filer/folder/directory_table_list.html:234 +#: templates/admin/filer/folder/directory_table_list.html:237 #: templates/admin/filer/folder/directory_thumbnail_list.html:212 msgid "Clear selection" msgstr "נקה בחירה" @@ -684,7 +684,7 @@ msgstr "דף הניהול הראשי" #: templates/admin/filer/folder/directory_listing.html:103 #: templates/admin/filer/folder/directory_table_list.html:29 #: templates/admin/filer/folder/directory_table_list.html:59 -#: templates/admin/filer/folder/directory_table_list.html:178 +#: templates/admin/filer/folder/directory_table_list.html:181 #: templates/admin/filer/folder/directory_thumbnail_list.html:27 #: templates/admin/filer/folder/directory_thumbnail_list.html:61 #: templates/admin/filer/folder/directory_thumbnail_list.html:156 @@ -879,12 +879,12 @@ msgid "Name" msgstr "שם" #: templates/admin/filer/folder/directory_table_list.html:17 -#: templates/admin/filer/tools/detail_info.html:49 +#: templates/admin/filer/tools/detail_info.html:50 msgid "Owner" msgstr "בעלים" #: templates/admin/filer/folder/directory_table_list.html:18 -#: templates/admin/filer/tools/detail_info.html:33 +#: templates/admin/filer/tools/detail_info.html:34 msgid "Size" msgstr "" @@ -943,7 +943,7 @@ msgstr "בחר קובץ זה" #: templates/admin/filer/folder/directory_table_list.html:107 #: templates/admin/filer/folder/directory_table_list.html:122 -#: templates/admin/filer/folder/directory_table_list.html:151 +#: templates/admin/filer/folder/directory_table_list.html:154 #: templates/admin/filer/folder/directory_thumbnail_list.html:107 #: templates/admin/filer/folder/directory_thumbnail_list.html:122 #, python-format @@ -966,66 +966,72 @@ msgid "enabled" msgstr "מאופשר" #: templates/admin/filer/folder/directory_table_list.html:144 +#, fuzzy +#| msgid "Move selected files to clipboard" +msgid "URL copied to clipboard" +msgstr "העבר קבצים שנבחרו ללוח" + +#: templates/admin/filer/folder/directory_table_list.html:147 #, python-format msgid "Canonical url '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:148 +#: templates/admin/filer/folder/directory_table_list.html:151 #, python-format msgid "Download '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:152 +#: templates/admin/filer/folder/directory_table_list.html:155 msgid "Remove file" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:160 +#: templates/admin/filer/folder/directory_table_list.html:163 #: templates/admin/filer/folder/directory_thumbnail_list.html:138 msgid "Drop files here or use the \"Upload Files\" button" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:175 +#: templates/admin/filer/folder/directory_table_list.html:178 #: templates/admin/filer/folder/directory_thumbnail_list.html:153 msgid "Drop your file to upload into:" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:185 +#: templates/admin/filer/folder/directory_table_list.html:188 #: templates/admin/filer/folder/directory_thumbnail_list.html:163 msgid "Upload" msgstr "העלאה" -#: templates/admin/filer/folder/directory_table_list.html:197 +#: templates/admin/filer/folder/directory_table_list.html:200 #: templates/admin/filer/folder/directory_thumbnail_list.html:175 msgid "cancel" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:201 +#: templates/admin/filer/folder/directory_table_list.html:204 #: templates/admin/filer/folder/directory_thumbnail_list.html:179 msgid "Upload success!" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:205 +#: templates/admin/filer/folder/directory_table_list.html:208 #: templates/admin/filer/folder/directory_thumbnail_list.html:183 msgid "Upload canceled!" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:212 +#: templates/admin/filer/folder/directory_table_list.html:215 #: templates/admin/filer/folder/directory_thumbnail_list.html:190 msgid "previous" msgstr "הקודם" -#: templates/admin/filer/folder/directory_table_list.html:217 +#: templates/admin/filer/folder/directory_table_list.html:220 #: templates/admin/filer/folder/directory_thumbnail_list.html:195 #, python-format msgid "Page %(number)s of %(num_pages)s." msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:222 +#: templates/admin/filer/folder/directory_table_list.html:225 #: templates/admin/filer/folder/directory_thumbnail_list.html:200 msgid "next" msgstr "הבא" -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 #, python-format msgid "Select all %(total_count)s" @@ -1097,29 +1103,29 @@ msgstr "העלאה נכשלה" msgid "Download" msgstr "" -#: templates/admin/filer/tools/detail_info.html:15 +#: templates/admin/filer/tools/detail_info.html:16 msgid "Expand" msgstr "" -#: templates/admin/filer/tools/detail_info.html:20 +#: templates/admin/filer/tools/detail_info.html:21 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:108 msgid "File is missing" msgstr "" -#: templates/admin/filer/tools/detail_info.html:29 +#: templates/admin/filer/tools/detail_info.html:30 msgid "Type" msgstr "" -#: templates/admin/filer/tools/detail_info.html:37 +#: templates/admin/filer/tools/detail_info.html:38 msgid "File-size" msgstr "" -#: templates/admin/filer/tools/detail_info.html:41 +#: templates/admin/filer/tools/detail_info.html:42 msgid "Modified" msgstr "" -#: templates/admin/filer/tools/detail_info.html:45 +#: templates/admin/filer/tools/detail_info.html:46 msgid "Created" msgstr "" diff --git a/filer/locale/hr/LC_MESSAGES/django.po b/filer/locale/hr/LC_MESSAGES/django.po index 70317b6f8..956d76841 100644 --- a/filer/locale/hr/LC_MESSAGES/django.po +++ b/filer/locale/hr/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-26 08:46+0200\n" +"POT-Creation-Date: 2023-09-30 18:10+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Aleks Acimovic, 2022\n" "Language-Team: Croatian (http://app.transifex.com/divio/django-filer/" @@ -230,23 +230,23 @@ msgid "Thumbnail option or resize parameters must be choosen." msgstr "" "Opcija sličica ili parametri za promjenu veličine moraju biti izabrani." -#: admin/imageadmin.py:18 admin/imageadmin.py:105 +#: admin/imageadmin.py:20 admin/imageadmin.py:112 msgid "Subject location" msgstr "Lokacija subjekta" -#: admin/imageadmin.py:19 +#: admin/imageadmin.py:21 msgid "Location of the main subject of the scene. Format: \"x,y\"." msgstr "" -#: admin/imageadmin.py:57 +#: admin/imageadmin.py:59 msgid "Invalid subject location format. " msgstr "" -#: admin/imageadmin.py:65 +#: admin/imageadmin.py:67 msgid "Subject location is outside of the image. " msgstr "" -#: admin/imageadmin.py:74 +#: admin/imageadmin.py:76 #, python-brace-format msgid "Your input: \"{subject_location}\". " msgstr "" @@ -293,7 +293,7 @@ msgstr "slika" msgid "images" msgstr "slike" -#: models/abstract.py:147 +#: models/abstract.py:148 #, python-format msgid "" "Image format not recognized or image size exceeds limit of %(max_pixels)d " @@ -547,7 +547,7 @@ msgstr "" #: models/virtualitems.py:46 #: templates/admin/filer/folder/directory_table_list.html:4 -#: templates/admin/filer/folder/directory_table_list.html:167 +#: templates/admin/filer/folder/directory_table_list.html:170 #: templates/admin/filer/folder/directory_thumbnail_list.html:5 #: templates/admin/filer/folder/directory_thumbnail_list.html:146 #: templates/admin/filer/tools/clipboard/clipboard.html:27 @@ -580,7 +580,7 @@ msgid "Go" msgstr "Idi" #: templates/admin/filer/actions.html:14 -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 msgid "Click here to select the objects across all pages" msgstr "Kliknite ovdje za odabir objekata kroz sve stranice" @@ -591,7 +591,7 @@ msgid "Select all %(total_count)s files and/or folders" msgstr "Odaberite sve %(total_count)s datoteke i/ili direktorije" #: templates/admin/filer/actions.html:16 -#: templates/admin/filer/folder/directory_table_list.html:234 +#: templates/admin/filer/folder/directory_table_list.html:237 #: templates/admin/filer/folder/directory_thumbnail_list.html:212 msgid "Clear selection" msgstr "Poništi odabir" @@ -693,7 +693,7 @@ msgstr "početna stranica administracije" #: templates/admin/filer/folder/directory_listing.html:103 #: templates/admin/filer/folder/directory_table_list.html:29 #: templates/admin/filer/folder/directory_table_list.html:59 -#: templates/admin/filer/folder/directory_table_list.html:178 +#: templates/admin/filer/folder/directory_table_list.html:181 #: templates/admin/filer/folder/directory_thumbnail_list.html:27 #: templates/admin/filer/folder/directory_thumbnail_list.html:61 #: templates/admin/filer/folder/directory_thumbnail_list.html:156 @@ -899,12 +899,12 @@ msgid "Name" msgstr "Ime" #: templates/admin/filer/folder/directory_table_list.html:17 -#: templates/admin/filer/tools/detail_info.html:49 +#: templates/admin/filer/tools/detail_info.html:50 msgid "Owner" msgstr "Vlasnik" #: templates/admin/filer/folder/directory_table_list.html:18 -#: templates/admin/filer/tools/detail_info.html:33 +#: templates/admin/filer/tools/detail_info.html:34 msgid "Size" msgstr "" @@ -961,7 +961,7 @@ msgstr "Odaberi ovu datoteku" #: templates/admin/filer/folder/directory_table_list.html:107 #: templates/admin/filer/folder/directory_table_list.html:122 -#: templates/admin/filer/folder/directory_table_list.html:151 +#: templates/admin/filer/folder/directory_table_list.html:154 #: templates/admin/filer/folder/directory_thumbnail_list.html:107 #: templates/admin/filer/folder/directory_thumbnail_list.html:122 #, python-format @@ -984,66 +984,72 @@ msgid "enabled" msgstr "omogućeno" #: templates/admin/filer/folder/directory_table_list.html:144 +#, fuzzy +#| msgid "Move selected files to clipboard" +msgid "URL copied to clipboard" +msgstr "Premjesti odabrane datoteke u spremnik" + +#: templates/admin/filer/folder/directory_table_list.html:147 #, python-format msgid "Canonical url '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:148 +#: templates/admin/filer/folder/directory_table_list.html:151 #, python-format msgid "Download '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:152 +#: templates/admin/filer/folder/directory_table_list.html:155 msgid "Remove file" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:160 +#: templates/admin/filer/folder/directory_table_list.html:163 #: templates/admin/filer/folder/directory_thumbnail_list.html:138 msgid "Drop files here or use the \"Upload Files\" button" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:175 +#: templates/admin/filer/folder/directory_table_list.html:178 #: templates/admin/filer/folder/directory_thumbnail_list.html:153 msgid "Drop your file to upload into:" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:185 +#: templates/admin/filer/folder/directory_table_list.html:188 #: templates/admin/filer/folder/directory_thumbnail_list.html:163 msgid "Upload" msgstr "Prebaci" -#: templates/admin/filer/folder/directory_table_list.html:197 +#: templates/admin/filer/folder/directory_table_list.html:200 #: templates/admin/filer/folder/directory_thumbnail_list.html:175 msgid "cancel" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:201 +#: templates/admin/filer/folder/directory_table_list.html:204 #: templates/admin/filer/folder/directory_thumbnail_list.html:179 msgid "Upload success!" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:205 +#: templates/admin/filer/folder/directory_table_list.html:208 #: templates/admin/filer/folder/directory_thumbnail_list.html:183 msgid "Upload canceled!" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:212 +#: templates/admin/filer/folder/directory_table_list.html:215 #: templates/admin/filer/folder/directory_thumbnail_list.html:190 msgid "previous" msgstr "prethodni" -#: templates/admin/filer/folder/directory_table_list.html:217 +#: templates/admin/filer/folder/directory_table_list.html:220 #: templates/admin/filer/folder/directory_thumbnail_list.html:195 #, python-format msgid "Page %(number)s of %(num_pages)s." msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:222 +#: templates/admin/filer/folder/directory_table_list.html:225 #: templates/admin/filer/folder/directory_thumbnail_list.html:200 msgid "next" msgstr "slijedeći" -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 #, python-format msgid "Select all %(total_count)s" @@ -1114,29 +1120,29 @@ msgstr "prebacivanje neuspješno" msgid "Download" msgstr "" -#: templates/admin/filer/tools/detail_info.html:15 +#: templates/admin/filer/tools/detail_info.html:16 msgid "Expand" msgstr "" -#: templates/admin/filer/tools/detail_info.html:20 +#: templates/admin/filer/tools/detail_info.html:21 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:108 msgid "File is missing" msgstr "" -#: templates/admin/filer/tools/detail_info.html:29 +#: templates/admin/filer/tools/detail_info.html:30 msgid "Type" msgstr "" -#: templates/admin/filer/tools/detail_info.html:37 +#: templates/admin/filer/tools/detail_info.html:38 msgid "File-size" msgstr "" -#: templates/admin/filer/tools/detail_info.html:41 +#: templates/admin/filer/tools/detail_info.html:42 msgid "Modified" msgstr "" -#: templates/admin/filer/tools/detail_info.html:45 +#: templates/admin/filer/tools/detail_info.html:46 msgid "Created" msgstr "" diff --git a/filer/locale/hu/LC_MESSAGES/django.po b/filer/locale/hu/LC_MESSAGES/django.po index d49a83610..80b195895 100644 --- a/filer/locale/hu/LC_MESSAGES/django.po +++ b/filer/locale/hu/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-26 08:46+0200\n" +"POT-Creation-Date: 2023-09-30 18:10+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Istvan Farkas , 2016-2017\n" "Language-Team: Hungarian (http://app.transifex.com/divio/django-filer/" @@ -228,23 +228,23 @@ msgid "Thumbnail option or resize parameters must be choosen." msgstr "" "Előnézeti kép beállítást vagy átméretezési paramétert kötelező kiválasztani." -#: admin/imageadmin.py:18 admin/imageadmin.py:105 +#: admin/imageadmin.py:20 admin/imageadmin.py:112 msgid "Subject location" msgstr "Fókusz helye" -#: admin/imageadmin.py:19 +#: admin/imageadmin.py:21 msgid "Location of the main subject of the scene. Format: \"x,y\"." msgstr "A kép fő fókuszának a helye. Formátuma: \"x,y\"." -#: admin/imageadmin.py:57 +#: admin/imageadmin.py:59 msgid "Invalid subject location format. " msgstr "Érvénytelen fókusz formátum." -#: admin/imageadmin.py:65 +#: admin/imageadmin.py:67 msgid "Subject location is outside of the image. " msgstr "A fókusz helye kívül esik a képen." -#: admin/imageadmin.py:74 +#: admin/imageadmin.py:76 #, python-brace-format msgid "Your input: \"{subject_location}\". " msgstr "A beírt érték: \"{subject_location}\"." @@ -291,7 +291,7 @@ msgstr "kép" msgid "images" msgstr "képek" -#: models/abstract.py:147 +#: models/abstract.py:148 #, python-format msgid "" "Image format not recognized or image size exceeds limit of %(max_pixels)d " @@ -547,7 +547,7 @@ msgstr "előnézeti kép beállítások" #: models/virtualitems.py:46 #: templates/admin/filer/folder/directory_table_list.html:4 -#: templates/admin/filer/folder/directory_table_list.html:167 +#: templates/admin/filer/folder/directory_table_list.html:170 #: templates/admin/filer/folder/directory_thumbnail_list.html:5 #: templates/admin/filer/folder/directory_thumbnail_list.html:146 #: templates/admin/filer/tools/clipboard/clipboard.html:27 @@ -580,7 +580,7 @@ msgid "Go" msgstr "Mehet" #: templates/admin/filer/actions.html:14 -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 msgid "Click here to select the objects across all pages" msgstr "Ide klikkelve több oldalról is választhatóak elemek" @@ -591,7 +591,7 @@ msgid "Select all %(total_count)s files and/or folders" msgstr "Az összes (%(total_count)s) mappa és fájl kiválasztása" #: templates/admin/filer/actions.html:16 -#: templates/admin/filer/folder/directory_table_list.html:234 +#: templates/admin/filer/folder/directory_table_list.html:237 #: templates/admin/filer/folder/directory_thumbnail_list.html:212 msgid "Clear selection" msgstr "Kiválasztás megszüntetése" @@ -694,7 +694,7 @@ msgstr "adminisztrációs felület" #: templates/admin/filer/folder/directory_listing.html:103 #: templates/admin/filer/folder/directory_table_list.html:29 #: templates/admin/filer/folder/directory_table_list.html:59 -#: templates/admin/filer/folder/directory_table_list.html:178 +#: templates/admin/filer/folder/directory_table_list.html:181 #: templates/admin/filer/folder/directory_thumbnail_list.html:27 #: templates/admin/filer/folder/directory_thumbnail_list.html:61 #: templates/admin/filer/folder/directory_thumbnail_list.html:156 @@ -895,12 +895,12 @@ msgid "Name" msgstr "Név" #: templates/admin/filer/folder/directory_table_list.html:17 -#: templates/admin/filer/tools/detail_info.html:49 +#: templates/admin/filer/tools/detail_info.html:50 msgid "Owner" msgstr "Tulajdonos" #: templates/admin/filer/folder/directory_table_list.html:18 -#: templates/admin/filer/tools/detail_info.html:33 +#: templates/admin/filer/tools/detail_info.html:34 msgid "Size" msgstr "Méret" @@ -955,7 +955,7 @@ msgstr "Fájl kiválasztása" #: templates/admin/filer/folder/directory_table_list.html:107 #: templates/admin/filer/folder/directory_table_list.html:122 -#: templates/admin/filer/folder/directory_table_list.html:151 +#: templates/admin/filer/folder/directory_table_list.html:154 #: templates/admin/filer/folder/directory_thumbnail_list.html:107 #: templates/admin/filer/folder/directory_thumbnail_list.html:122 #, python-format @@ -978,67 +978,73 @@ msgid "enabled" msgstr "engedélyezve" #: templates/admin/filer/folder/directory_table_list.html:144 +#, fuzzy +#| msgid "Move selected files to clipboard" +msgid "URL copied to clipboard" +msgstr "Kiválasztott fájlok vágólapra mozgatása" + +#: templates/admin/filer/folder/directory_table_list.html:147 #, python-format msgid "Canonical url '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:148 +#: templates/admin/filer/folder/directory_table_list.html:151 #, python-format msgid "Download '%(item_label)s'" msgstr "'%(item_label)s' letöltése" -#: templates/admin/filer/folder/directory_table_list.html:152 +#: templates/admin/filer/folder/directory_table_list.html:155 msgid "Remove file" msgstr "Fájl eltávolítása" -#: templates/admin/filer/folder/directory_table_list.html:160 +#: templates/admin/filer/folder/directory_table_list.html:163 #: templates/admin/filer/folder/directory_thumbnail_list.html:138 msgid "Drop files here or use the \"Upload Files\" button" msgstr "" "Egérrel dobjon ide fájlokat, vagy használja a \"Fájlok feltöltése\" gombot" -#: templates/admin/filer/folder/directory_table_list.html:175 +#: templates/admin/filer/folder/directory_table_list.html:178 #: templates/admin/filer/folder/directory_thumbnail_list.html:153 msgid "Drop your file to upload into:" msgstr "Egérre dobja ide a fájl, hogy feltöltse ebbe a mappába:" -#: templates/admin/filer/folder/directory_table_list.html:185 +#: templates/admin/filer/folder/directory_table_list.html:188 #: templates/admin/filer/folder/directory_thumbnail_list.html:163 msgid "Upload" msgstr "Feltöltés" -#: templates/admin/filer/folder/directory_table_list.html:197 +#: templates/admin/filer/folder/directory_table_list.html:200 #: templates/admin/filer/folder/directory_thumbnail_list.html:175 msgid "cancel" msgstr "mégsem" -#: templates/admin/filer/folder/directory_table_list.html:201 +#: templates/admin/filer/folder/directory_table_list.html:204 #: templates/admin/filer/folder/directory_thumbnail_list.html:179 msgid "Upload success!" msgstr "Sikeres feltöltés!" -#: templates/admin/filer/folder/directory_table_list.html:205 +#: templates/admin/filer/folder/directory_table_list.html:208 #: templates/admin/filer/folder/directory_thumbnail_list.html:183 msgid "Upload canceled!" msgstr "Feltöltés megszakítva!" -#: templates/admin/filer/folder/directory_table_list.html:212 +#: templates/admin/filer/folder/directory_table_list.html:215 #: templates/admin/filer/folder/directory_thumbnail_list.html:190 msgid "previous" msgstr "előző" -#: templates/admin/filer/folder/directory_table_list.html:217 +#: templates/admin/filer/folder/directory_table_list.html:220 #: templates/admin/filer/folder/directory_thumbnail_list.html:195 #, python-format msgid "Page %(number)s of %(num_pages)s." msgstr " %(number)s / %(num_pages)s oldal" -#: templates/admin/filer/folder/directory_table_list.html:222 +#: templates/admin/filer/folder/directory_table_list.html:225 #: templates/admin/filer/folder/directory_thumbnail_list.html:200 msgid "next" msgstr "következő" -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 #, python-format msgid "Select all %(total_count)s" @@ -1108,29 +1114,29 @@ msgstr "sikertelen feltöltés" msgid "Download" msgstr "" -#: templates/admin/filer/tools/detail_info.html:15 +#: templates/admin/filer/tools/detail_info.html:16 msgid "Expand" msgstr "" -#: templates/admin/filer/tools/detail_info.html:20 +#: templates/admin/filer/tools/detail_info.html:21 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:108 msgid "File is missing" msgstr "" -#: templates/admin/filer/tools/detail_info.html:29 +#: templates/admin/filer/tools/detail_info.html:30 msgid "Type" msgstr "Típus" -#: templates/admin/filer/tools/detail_info.html:37 +#: templates/admin/filer/tools/detail_info.html:38 msgid "File-size" msgstr "Fájlméret" -#: templates/admin/filer/tools/detail_info.html:41 +#: templates/admin/filer/tools/detail_info.html:42 msgid "Modified" msgstr "Módosítva" -#: templates/admin/filer/tools/detail_info.html:45 +#: templates/admin/filer/tools/detail_info.html:46 msgid "Created" msgstr "Létrehozva" diff --git a/filer/locale/it/LC_MESSAGES/django.po b/filer/locale/it/LC_MESSAGES/django.po index 8169f8a1d..f5d95d4b7 100644 --- a/filer/locale/it/LC_MESSAGES/django.po +++ b/filer/locale/it/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-26 08:46+0200\n" +"POT-Creation-Date: 2023-09-30 18:10+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: yakky , 2013,2015-2018\n" "Language-Team: Italian (http://app.transifex.com/divio/django-filer/language/" @@ -234,23 +234,23 @@ msgstr "" "Devi selezionare l'opzione anteprima immagine o i parametri di " "ridimensionamento." -#: admin/imageadmin.py:18 admin/imageadmin.py:105 +#: admin/imageadmin.py:20 admin/imageadmin.py:112 msgid "Subject location" msgstr "Posizione del soggetto" -#: admin/imageadmin.py:19 +#: admin/imageadmin.py:21 msgid "Location of the main subject of the scene. Format: \"x,y\"." msgstr "Posizione del soggetto principale della scena. Formato: \"x,y\"" -#: admin/imageadmin.py:57 +#: admin/imageadmin.py:59 msgid "Invalid subject location format. " msgstr "Formato della posizione del soggetto non valida." -#: admin/imageadmin.py:65 +#: admin/imageadmin.py:67 msgid "Subject location is outside of the image. " msgstr "La posizione del soggetto è esterna all'immagine." -#: admin/imageadmin.py:74 +#: admin/imageadmin.py:76 #, python-brace-format msgid "Your input: \"{subject_location}\". " msgstr "Valore fornito: \"{subject_location}\"" @@ -297,7 +297,7 @@ msgstr "immagine" msgid "images" msgstr "immagini" -#: models/abstract.py:147 +#: models/abstract.py:148 #, python-format msgid "" "Image format not recognized or image size exceeds limit of %(max_pixels)d " @@ -553,7 +553,7 @@ msgstr "opzione anteprima immagine" #: models/virtualitems.py:46 #: templates/admin/filer/folder/directory_table_list.html:4 -#: templates/admin/filer/folder/directory_table_list.html:167 +#: templates/admin/filer/folder/directory_table_list.html:170 #: templates/admin/filer/folder/directory_thumbnail_list.html:5 #: templates/admin/filer/folder/directory_thumbnail_list.html:146 #: templates/admin/filer/tools/clipboard/clipboard.html:27 @@ -586,7 +586,7 @@ msgid "Go" msgstr "Vai" #: templates/admin/filer/actions.html:14 -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 msgid "Click here to select the objects across all pages" msgstr "Clicca qui per selezionare gli oggetti in tutte le pagine" @@ -597,7 +597,7 @@ msgid "Select all %(total_count)s files and/or folders" msgstr "Seleziona tutti i %(total_count)s file e/o cartelle" #: templates/admin/filer/actions.html:16 -#: templates/admin/filer/folder/directory_table_list.html:234 +#: templates/admin/filer/folder/directory_table_list.html:237 #: templates/admin/filer/folder/directory_thumbnail_list.html:212 msgid "Clear selection" msgstr "Cancella selezione" @@ -700,7 +700,7 @@ msgstr "Pagina iniziale admin" #: templates/admin/filer/folder/directory_listing.html:103 #: templates/admin/filer/folder/directory_table_list.html:29 #: templates/admin/filer/folder/directory_table_list.html:59 -#: templates/admin/filer/folder/directory_table_list.html:178 +#: templates/admin/filer/folder/directory_table_list.html:181 #: templates/admin/filer/folder/directory_thumbnail_list.html:27 #: templates/admin/filer/folder/directory_thumbnail_list.html:61 #: templates/admin/filer/folder/directory_thumbnail_list.html:156 @@ -908,12 +908,12 @@ msgid "Name" msgstr "Nome" #: templates/admin/filer/folder/directory_table_list.html:17 -#: templates/admin/filer/tools/detail_info.html:49 +#: templates/admin/filer/tools/detail_info.html:50 msgid "Owner" msgstr "Proprietario" #: templates/admin/filer/folder/directory_table_list.html:18 -#: templates/admin/filer/tools/detail_info.html:33 +#: templates/admin/filer/tools/detail_info.html:34 msgid "Size" msgstr "Dimensione" @@ -970,7 +970,7 @@ msgstr "Seleziona questo file" #: templates/admin/filer/folder/directory_table_list.html:107 #: templates/admin/filer/folder/directory_table_list.html:122 -#: templates/admin/filer/folder/directory_table_list.html:151 +#: templates/admin/filer/folder/directory_table_list.html:154 #: templates/admin/filer/folder/directory_thumbnail_list.html:107 #: templates/admin/filer/folder/directory_thumbnail_list.html:122 #, python-format @@ -993,66 +993,72 @@ msgid "enabled" msgstr "abilitato" #: templates/admin/filer/folder/directory_table_list.html:144 +#, fuzzy +#| msgid "Move selected files to clipboard" +msgid "URL copied to clipboard" +msgstr "Sposta i file selezionati negli Appunti" + +#: templates/admin/filer/folder/directory_table_list.html:147 #, python-format msgid "Canonical url '%(item_label)s'" msgstr "URL canonico '%(item_label)s'" -#: templates/admin/filer/folder/directory_table_list.html:148 +#: templates/admin/filer/folder/directory_table_list.html:151 #, python-format msgid "Download '%(item_label)s'" msgstr "Download '%(item_label)s'" -#: templates/admin/filer/folder/directory_table_list.html:152 +#: templates/admin/filer/folder/directory_table_list.html:155 msgid "Remove file" msgstr "Cancella file" -#: templates/admin/filer/folder/directory_table_list.html:160 +#: templates/admin/filer/folder/directory_table_list.html:163 #: templates/admin/filer/folder/directory_thumbnail_list.html:138 msgid "Drop files here or use the \"Upload Files\" button" msgstr "Posiziona qui i file o usa il bottone \"Carica file\"" -#: templates/admin/filer/folder/directory_table_list.html:175 +#: templates/admin/filer/folder/directory_table_list.html:178 #: templates/admin/filer/folder/directory_thumbnail_list.html:153 msgid "Drop your file to upload into:" msgstr "Posiziona il file da caricare in:" -#: templates/admin/filer/folder/directory_table_list.html:185 +#: templates/admin/filer/folder/directory_table_list.html:188 #: templates/admin/filer/folder/directory_thumbnail_list.html:163 msgid "Upload" msgstr "Carica" -#: templates/admin/filer/folder/directory_table_list.html:197 +#: templates/admin/filer/folder/directory_table_list.html:200 #: templates/admin/filer/folder/directory_thumbnail_list.html:175 msgid "cancel" msgstr "annulla" -#: templates/admin/filer/folder/directory_table_list.html:201 +#: templates/admin/filer/folder/directory_table_list.html:204 #: templates/admin/filer/folder/directory_thumbnail_list.html:179 msgid "Upload success!" msgstr "Caricamento avvenuto!" -#: templates/admin/filer/folder/directory_table_list.html:205 +#: templates/admin/filer/folder/directory_table_list.html:208 #: templates/admin/filer/folder/directory_thumbnail_list.html:183 msgid "Upload canceled!" msgstr "Caricamento annullato!" -#: templates/admin/filer/folder/directory_table_list.html:212 +#: templates/admin/filer/folder/directory_table_list.html:215 #: templates/admin/filer/folder/directory_thumbnail_list.html:190 msgid "previous" msgstr "precedente" -#: templates/admin/filer/folder/directory_table_list.html:217 +#: templates/admin/filer/folder/directory_table_list.html:220 #: templates/admin/filer/folder/directory_thumbnail_list.html:195 #, python-format msgid "Page %(number)s of %(num_pages)s." msgstr "Pagina %(number)s su %(num_pages)s." -#: templates/admin/filer/folder/directory_table_list.html:222 +#: templates/admin/filer/folder/directory_table_list.html:225 #: templates/admin/filer/folder/directory_thumbnail_list.html:200 msgid "next" msgstr "prossima" -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 #, python-format msgid "Select all %(total_count)s" @@ -1123,29 +1129,29 @@ msgstr "caricamento fallito" msgid "Download" msgstr "" -#: templates/admin/filer/tools/detail_info.html:15 +#: templates/admin/filer/tools/detail_info.html:16 msgid "Expand" msgstr "" -#: templates/admin/filer/tools/detail_info.html:20 +#: templates/admin/filer/tools/detail_info.html:21 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:108 msgid "File is missing" msgstr "" -#: templates/admin/filer/tools/detail_info.html:29 +#: templates/admin/filer/tools/detail_info.html:30 msgid "Type" msgstr "Tipo" -#: templates/admin/filer/tools/detail_info.html:37 +#: templates/admin/filer/tools/detail_info.html:38 msgid "File-size" msgstr "Dimensione file" -#: templates/admin/filer/tools/detail_info.html:41 +#: templates/admin/filer/tools/detail_info.html:42 msgid "Modified" msgstr "Modificato" -#: templates/admin/filer/tools/detail_info.html:45 +#: templates/admin/filer/tools/detail_info.html:46 msgid "Created" msgstr "Creato" diff --git a/filer/locale/ja/LC_MESSAGES/django.po b/filer/locale/ja/LC_MESSAGES/django.po index 1cae212dd..bb438c591 100644 --- a/filer/locale/ja/LC_MESSAGES/django.po +++ b/filer/locale/ja/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-26 08:46+0200\n" +"POT-Creation-Date: 2023-09-30 18:10+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Angelo Dini \n" "Language-Team: Japanese (http://app.transifex.com/divio/django-filer/" @@ -217,23 +217,23 @@ msgstr "" msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/imageadmin.py:18 admin/imageadmin.py:105 +#: admin/imageadmin.py:20 admin/imageadmin.py:112 msgid "Subject location" msgstr "" -#: admin/imageadmin.py:19 +#: admin/imageadmin.py:21 msgid "Location of the main subject of the scene. Format: \"x,y\"." msgstr "" -#: admin/imageadmin.py:57 +#: admin/imageadmin.py:59 msgid "Invalid subject location format. " msgstr "" -#: admin/imageadmin.py:65 +#: admin/imageadmin.py:67 msgid "Subject location is outside of the image. " msgstr "" -#: admin/imageadmin.py:74 +#: admin/imageadmin.py:76 #, python-brace-format msgid "Your input: \"{subject_location}\". " msgstr "" @@ -280,7 +280,7 @@ msgstr "" msgid "images" msgstr "" -#: models/abstract.py:147 +#: models/abstract.py:148 #, python-format msgid "" "Image format not recognized or image size exceeds limit of %(max_pixels)d " @@ -534,7 +534,7 @@ msgstr "" #: models/virtualitems.py:46 #: templates/admin/filer/folder/directory_table_list.html:4 -#: templates/admin/filer/folder/directory_table_list.html:167 +#: templates/admin/filer/folder/directory_table_list.html:170 #: templates/admin/filer/folder/directory_thumbnail_list.html:5 #: templates/admin/filer/folder/directory_thumbnail_list.html:146 #: templates/admin/filer/tools/clipboard/clipboard.html:27 @@ -567,7 +567,7 @@ msgid "Go" msgstr "" #: templates/admin/filer/actions.html:14 -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 msgid "Click here to select the objects across all pages" msgstr "" @@ -578,7 +578,7 @@ msgid "Select all %(total_count)s files and/or folders" msgstr "" #: templates/admin/filer/actions.html:16 -#: templates/admin/filer/folder/directory_table_list.html:234 +#: templates/admin/filer/folder/directory_table_list.html:237 #: templates/admin/filer/folder/directory_thumbnail_list.html:212 msgid "Clear selection" msgstr "" @@ -674,7 +674,7 @@ msgstr "" #: templates/admin/filer/folder/directory_listing.html:103 #: templates/admin/filer/folder/directory_table_list.html:29 #: templates/admin/filer/folder/directory_table_list.html:59 -#: templates/admin/filer/folder/directory_table_list.html:178 +#: templates/admin/filer/folder/directory_table_list.html:181 #: templates/admin/filer/folder/directory_thumbnail_list.html:27 #: templates/admin/filer/folder/directory_thumbnail_list.html:61 #: templates/admin/filer/folder/directory_thumbnail_list.html:156 @@ -863,12 +863,12 @@ msgid "Name" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:17 -#: templates/admin/filer/tools/detail_info.html:49 +#: templates/admin/filer/tools/detail_info.html:50 msgid "Owner" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:18 -#: templates/admin/filer/tools/detail_info.html:33 +#: templates/admin/filer/tools/detail_info.html:34 msgid "Size" msgstr "" @@ -921,7 +921,7 @@ msgstr "" #: templates/admin/filer/folder/directory_table_list.html:107 #: templates/admin/filer/folder/directory_table_list.html:122 -#: templates/admin/filer/folder/directory_table_list.html:151 +#: templates/admin/filer/folder/directory_table_list.html:154 #: templates/admin/filer/folder/directory_thumbnail_list.html:107 #: templates/admin/filer/folder/directory_thumbnail_list.html:122 #, python-format @@ -944,66 +944,70 @@ msgid "enabled" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:144 +msgid "URL copied to clipboard" +msgstr "" + +#: templates/admin/filer/folder/directory_table_list.html:147 #, python-format msgid "Canonical url '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:148 +#: templates/admin/filer/folder/directory_table_list.html:151 #, python-format msgid "Download '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:152 +#: templates/admin/filer/folder/directory_table_list.html:155 msgid "Remove file" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:160 +#: templates/admin/filer/folder/directory_table_list.html:163 #: templates/admin/filer/folder/directory_thumbnail_list.html:138 msgid "Drop files here or use the \"Upload Files\" button" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:175 +#: templates/admin/filer/folder/directory_table_list.html:178 #: templates/admin/filer/folder/directory_thumbnail_list.html:153 msgid "Drop your file to upload into:" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:185 +#: templates/admin/filer/folder/directory_table_list.html:188 #: templates/admin/filer/folder/directory_thumbnail_list.html:163 msgid "Upload" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:197 +#: templates/admin/filer/folder/directory_table_list.html:200 #: templates/admin/filer/folder/directory_thumbnail_list.html:175 msgid "cancel" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:201 +#: templates/admin/filer/folder/directory_table_list.html:204 #: templates/admin/filer/folder/directory_thumbnail_list.html:179 msgid "Upload success!" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:205 +#: templates/admin/filer/folder/directory_table_list.html:208 #: templates/admin/filer/folder/directory_thumbnail_list.html:183 msgid "Upload canceled!" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:212 +#: templates/admin/filer/folder/directory_table_list.html:215 #: templates/admin/filer/folder/directory_thumbnail_list.html:190 msgid "previous" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:217 +#: templates/admin/filer/folder/directory_table_list.html:220 #: templates/admin/filer/folder/directory_thumbnail_list.html:195 #, python-format msgid "Page %(number)s of %(num_pages)s." msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:222 +#: templates/admin/filer/folder/directory_table_list.html:225 #: templates/admin/filer/folder/directory_thumbnail_list.html:200 msgid "next" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 #, python-format msgid "Select all %(total_count)s" @@ -1072,29 +1076,29 @@ msgstr "" msgid "Download" msgstr "" -#: templates/admin/filer/tools/detail_info.html:15 +#: templates/admin/filer/tools/detail_info.html:16 msgid "Expand" msgstr "" -#: templates/admin/filer/tools/detail_info.html:20 +#: templates/admin/filer/tools/detail_info.html:21 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:108 msgid "File is missing" msgstr "" -#: templates/admin/filer/tools/detail_info.html:29 +#: templates/admin/filer/tools/detail_info.html:30 msgid "Type" msgstr "" -#: templates/admin/filer/tools/detail_info.html:37 +#: templates/admin/filer/tools/detail_info.html:38 msgid "File-size" msgstr "" -#: templates/admin/filer/tools/detail_info.html:41 +#: templates/admin/filer/tools/detail_info.html:42 msgid "Modified" msgstr "" -#: templates/admin/filer/tools/detail_info.html:45 +#: templates/admin/filer/tools/detail_info.html:46 msgid "Created" msgstr "" diff --git a/filer/locale/ja_JP/LC_MESSAGES/django.po b/filer/locale/ja_JP/LC_MESSAGES/django.po index b3ab3ecc9..72b1160c9 100644 --- a/filer/locale/ja_JP/LC_MESSAGES/django.po +++ b/filer/locale/ja_JP/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-26 08:46+0200\n" +"POT-Creation-Date: 2023-09-30 18:10+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Angelo Dini \n" "Language-Team: Japanese (Japan) (http://app.transifex.com/divio/django-filer/" @@ -217,23 +217,23 @@ msgstr "" msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/imageadmin.py:18 admin/imageadmin.py:105 +#: admin/imageadmin.py:20 admin/imageadmin.py:112 msgid "Subject location" msgstr "" -#: admin/imageadmin.py:19 +#: admin/imageadmin.py:21 msgid "Location of the main subject of the scene. Format: \"x,y\"." msgstr "" -#: admin/imageadmin.py:57 +#: admin/imageadmin.py:59 msgid "Invalid subject location format. " msgstr "" -#: admin/imageadmin.py:65 +#: admin/imageadmin.py:67 msgid "Subject location is outside of the image. " msgstr "" -#: admin/imageadmin.py:74 +#: admin/imageadmin.py:76 #, python-brace-format msgid "Your input: \"{subject_location}\". " msgstr "" @@ -280,7 +280,7 @@ msgstr "" msgid "images" msgstr "" -#: models/abstract.py:147 +#: models/abstract.py:148 #, python-format msgid "" "Image format not recognized or image size exceeds limit of %(max_pixels)d " @@ -534,7 +534,7 @@ msgstr "" #: models/virtualitems.py:46 #: templates/admin/filer/folder/directory_table_list.html:4 -#: templates/admin/filer/folder/directory_table_list.html:167 +#: templates/admin/filer/folder/directory_table_list.html:170 #: templates/admin/filer/folder/directory_thumbnail_list.html:5 #: templates/admin/filer/folder/directory_thumbnail_list.html:146 #: templates/admin/filer/tools/clipboard/clipboard.html:27 @@ -567,7 +567,7 @@ msgid "Go" msgstr "" #: templates/admin/filer/actions.html:14 -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 msgid "Click here to select the objects across all pages" msgstr "" @@ -578,7 +578,7 @@ msgid "Select all %(total_count)s files and/or folders" msgstr "" #: templates/admin/filer/actions.html:16 -#: templates/admin/filer/folder/directory_table_list.html:234 +#: templates/admin/filer/folder/directory_table_list.html:237 #: templates/admin/filer/folder/directory_thumbnail_list.html:212 msgid "Clear selection" msgstr "" @@ -674,7 +674,7 @@ msgstr "" #: templates/admin/filer/folder/directory_listing.html:103 #: templates/admin/filer/folder/directory_table_list.html:29 #: templates/admin/filer/folder/directory_table_list.html:59 -#: templates/admin/filer/folder/directory_table_list.html:178 +#: templates/admin/filer/folder/directory_table_list.html:181 #: templates/admin/filer/folder/directory_thumbnail_list.html:27 #: templates/admin/filer/folder/directory_thumbnail_list.html:61 #: templates/admin/filer/folder/directory_thumbnail_list.html:156 @@ -863,12 +863,12 @@ msgid "Name" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:17 -#: templates/admin/filer/tools/detail_info.html:49 +#: templates/admin/filer/tools/detail_info.html:50 msgid "Owner" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:18 -#: templates/admin/filer/tools/detail_info.html:33 +#: templates/admin/filer/tools/detail_info.html:34 msgid "Size" msgstr "" @@ -921,7 +921,7 @@ msgstr "" #: templates/admin/filer/folder/directory_table_list.html:107 #: templates/admin/filer/folder/directory_table_list.html:122 -#: templates/admin/filer/folder/directory_table_list.html:151 +#: templates/admin/filer/folder/directory_table_list.html:154 #: templates/admin/filer/folder/directory_thumbnail_list.html:107 #: templates/admin/filer/folder/directory_thumbnail_list.html:122 #, python-format @@ -944,66 +944,70 @@ msgid "enabled" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:144 +msgid "URL copied to clipboard" +msgstr "" + +#: templates/admin/filer/folder/directory_table_list.html:147 #, python-format msgid "Canonical url '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:148 +#: templates/admin/filer/folder/directory_table_list.html:151 #, python-format msgid "Download '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:152 +#: templates/admin/filer/folder/directory_table_list.html:155 msgid "Remove file" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:160 +#: templates/admin/filer/folder/directory_table_list.html:163 #: templates/admin/filer/folder/directory_thumbnail_list.html:138 msgid "Drop files here or use the \"Upload Files\" button" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:175 +#: templates/admin/filer/folder/directory_table_list.html:178 #: templates/admin/filer/folder/directory_thumbnail_list.html:153 msgid "Drop your file to upload into:" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:185 +#: templates/admin/filer/folder/directory_table_list.html:188 #: templates/admin/filer/folder/directory_thumbnail_list.html:163 msgid "Upload" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:197 +#: templates/admin/filer/folder/directory_table_list.html:200 #: templates/admin/filer/folder/directory_thumbnail_list.html:175 msgid "cancel" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:201 +#: templates/admin/filer/folder/directory_table_list.html:204 #: templates/admin/filer/folder/directory_thumbnail_list.html:179 msgid "Upload success!" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:205 +#: templates/admin/filer/folder/directory_table_list.html:208 #: templates/admin/filer/folder/directory_thumbnail_list.html:183 msgid "Upload canceled!" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:212 +#: templates/admin/filer/folder/directory_table_list.html:215 #: templates/admin/filer/folder/directory_thumbnail_list.html:190 msgid "previous" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:217 +#: templates/admin/filer/folder/directory_table_list.html:220 #: templates/admin/filer/folder/directory_thumbnail_list.html:195 #, python-format msgid "Page %(number)s of %(num_pages)s." msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:222 +#: templates/admin/filer/folder/directory_table_list.html:225 #: templates/admin/filer/folder/directory_thumbnail_list.html:200 msgid "next" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 #, python-format msgid "Select all %(total_count)s" @@ -1072,29 +1076,29 @@ msgstr "" msgid "Download" msgstr "" -#: templates/admin/filer/tools/detail_info.html:15 +#: templates/admin/filer/tools/detail_info.html:16 msgid "Expand" msgstr "" -#: templates/admin/filer/tools/detail_info.html:20 +#: templates/admin/filer/tools/detail_info.html:21 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:108 msgid "File is missing" msgstr "" -#: templates/admin/filer/tools/detail_info.html:29 +#: templates/admin/filer/tools/detail_info.html:30 msgid "Type" msgstr "" -#: templates/admin/filer/tools/detail_info.html:37 +#: templates/admin/filer/tools/detail_info.html:38 msgid "File-size" msgstr "" -#: templates/admin/filer/tools/detail_info.html:41 +#: templates/admin/filer/tools/detail_info.html:42 msgid "Modified" msgstr "" -#: templates/admin/filer/tools/detail_info.html:45 +#: templates/admin/filer/tools/detail_info.html:46 msgid "Created" msgstr "" diff --git a/filer/locale/lt/LC_MESSAGES/django.po b/filer/locale/lt/LC_MESSAGES/django.po index 53c74e66c..fdd11fd6a 100644 --- a/filer/locale/lt/LC_MESSAGES/django.po +++ b/filer/locale/lt/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-26 08:46+0200\n" +"POT-Creation-Date: 2023-09-30 18:10+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Matas Dailyda , 2015-2018\n" "Language-Team: Lithuanian (http://app.transifex.com/divio/django-filer/" @@ -233,23 +233,23 @@ msgid "Thumbnail option or resize parameters must be choosen." msgstr "" "Miniatiūros nustatymas arba dydžio keitimo parametrai turi būti pasirinkti." -#: admin/imageadmin.py:18 admin/imageadmin.py:105 +#: admin/imageadmin.py:20 admin/imageadmin.py:112 msgid "Subject location" msgstr "Subjekto vieta" -#: admin/imageadmin.py:19 +#: admin/imageadmin.py:21 msgid "Location of the main subject of the scene. Format: \"x,y\"." msgstr "Pagrindinio subjekto vieta vaizde. Fomatas: \"x,y\"." -#: admin/imageadmin.py:57 +#: admin/imageadmin.py:59 msgid "Invalid subject location format. " msgstr "Netinkamas subjekto vietos formatas." -#: admin/imageadmin.py:65 +#: admin/imageadmin.py:67 msgid "Subject location is outside of the image. " msgstr "Subjekto vieta yra už paveikslėlio." -#: admin/imageadmin.py:74 +#: admin/imageadmin.py:76 #, python-brace-format msgid "Your input: \"{subject_location}\". " msgstr "Jūsų įvestis: \"{subject_location}\". " @@ -296,7 +296,7 @@ msgstr "paveikslėlis" msgid "images" msgstr "paveikslėliai" -#: models/abstract.py:147 +#: models/abstract.py:148 #, python-format msgid "" "Image format not recognized or image size exceeds limit of %(max_pixels)d " @@ -552,7 +552,7 @@ msgstr "miniatiūros nustatymai" #: models/virtualitems.py:46 #: templates/admin/filer/folder/directory_table_list.html:4 -#: templates/admin/filer/folder/directory_table_list.html:167 +#: templates/admin/filer/folder/directory_table_list.html:170 #: templates/admin/filer/folder/directory_thumbnail_list.html:5 #: templates/admin/filer/folder/directory_thumbnail_list.html:146 #: templates/admin/filer/tools/clipboard/clipboard.html:27 @@ -585,7 +585,7 @@ msgid "Go" msgstr "Eiti" #: templates/admin/filer/actions.html:14 -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 msgid "Click here to select the objects across all pages" msgstr "Spauskite čia kad pasirinktumete objektus per visus puslapius" @@ -596,7 +596,7 @@ msgid "Select all %(total_count)s files and/or folders" msgstr "Pasirinkti visus %(total_count)s failus ir / ar aplankus" #: templates/admin/filer/actions.html:16 -#: templates/admin/filer/folder/directory_table_list.html:234 +#: templates/admin/filer/folder/directory_table_list.html:237 #: templates/admin/filer/folder/directory_thumbnail_list.html:212 msgid "Clear selection" msgstr "Išvalyti pasirinkimus" @@ -698,7 +698,7 @@ msgstr "administravimo pradinis puslapis" #: templates/admin/filer/folder/directory_listing.html:103 #: templates/admin/filer/folder/directory_table_list.html:29 #: templates/admin/filer/folder/directory_table_list.html:59 -#: templates/admin/filer/folder/directory_table_list.html:178 +#: templates/admin/filer/folder/directory_table_list.html:181 #: templates/admin/filer/folder/directory_thumbnail_list.html:27 #: templates/admin/filer/folder/directory_thumbnail_list.html:61 #: templates/admin/filer/folder/directory_thumbnail_list.html:156 @@ -903,12 +903,12 @@ msgid "Name" msgstr "Pavadinimas" #: templates/admin/filer/folder/directory_table_list.html:17 -#: templates/admin/filer/tools/detail_info.html:49 +#: templates/admin/filer/tools/detail_info.html:50 msgid "Owner" msgstr "Savininkas" #: templates/admin/filer/folder/directory_table_list.html:18 -#: templates/admin/filer/tools/detail_info.html:33 +#: templates/admin/filer/tools/detail_info.html:34 msgid "Size" msgstr "Dydis" @@ -967,7 +967,7 @@ msgstr "Pasirinkti šį failą" #: templates/admin/filer/folder/directory_table_list.html:107 #: templates/admin/filer/folder/directory_table_list.html:122 -#: templates/admin/filer/folder/directory_table_list.html:151 +#: templates/admin/filer/folder/directory_table_list.html:154 #: templates/admin/filer/folder/directory_thumbnail_list.html:107 #: templates/admin/filer/folder/directory_thumbnail_list.html:122 #, python-format @@ -990,66 +990,72 @@ msgid "enabled" msgstr "įjungta" #: templates/admin/filer/folder/directory_table_list.html:144 +#, fuzzy +#| msgid "Move selected files to clipboard" +msgid "URL copied to clipboard" +msgstr "Perkelti pažymėtus failus į iškarpinę" + +#: templates/admin/filer/folder/directory_table_list.html:147 #, python-format msgid "Canonical url '%(item_label)s'" msgstr "Kanoninis url '%(item_label)s'" -#: templates/admin/filer/folder/directory_table_list.html:148 +#: templates/admin/filer/folder/directory_table_list.html:151 #, python-format msgid "Download '%(item_label)s'" msgstr "Parsisiųsti '%(item_label)s'" -#: templates/admin/filer/folder/directory_table_list.html:152 +#: templates/admin/filer/folder/directory_table_list.html:155 msgid "Remove file" msgstr "Pašalinti bylą" -#: templates/admin/filer/folder/directory_table_list.html:160 +#: templates/admin/filer/folder/directory_table_list.html:163 #: templates/admin/filer/folder/directory_thumbnail_list.html:138 msgid "Drop files here or use the \"Upload Files\" button" msgstr "Meskite bylas čia arba naudokit \"Įkelti bylas\" mygtuką" -#: templates/admin/filer/folder/directory_table_list.html:175 +#: templates/admin/filer/folder/directory_table_list.html:178 #: templates/admin/filer/folder/directory_thumbnail_list.html:153 msgid "Drop your file to upload into:" msgstr "Meskite bylą kad įkelti į:" -#: templates/admin/filer/folder/directory_table_list.html:185 +#: templates/admin/filer/folder/directory_table_list.html:188 #: templates/admin/filer/folder/directory_thumbnail_list.html:163 msgid "Upload" msgstr "Įkelti" -#: templates/admin/filer/folder/directory_table_list.html:197 +#: templates/admin/filer/folder/directory_table_list.html:200 #: templates/admin/filer/folder/directory_thumbnail_list.html:175 msgid "cancel" msgstr "atšaukti" -#: templates/admin/filer/folder/directory_table_list.html:201 +#: templates/admin/filer/folder/directory_table_list.html:204 #: templates/admin/filer/folder/directory_thumbnail_list.html:179 msgid "Upload success!" msgstr "Įkelimas pavyko!" -#: templates/admin/filer/folder/directory_table_list.html:205 +#: templates/admin/filer/folder/directory_table_list.html:208 #: templates/admin/filer/folder/directory_thumbnail_list.html:183 msgid "Upload canceled!" msgstr "Įkelimas atšauktas!" -#: templates/admin/filer/folder/directory_table_list.html:212 +#: templates/admin/filer/folder/directory_table_list.html:215 #: templates/admin/filer/folder/directory_thumbnail_list.html:190 msgid "previous" msgstr "buvęs" -#: templates/admin/filer/folder/directory_table_list.html:217 +#: templates/admin/filer/folder/directory_table_list.html:220 #: templates/admin/filer/folder/directory_thumbnail_list.html:195 #, python-format msgid "Page %(number)s of %(num_pages)s." msgstr "Puslapis %(number)s iš %(num_pages)s." -#: templates/admin/filer/folder/directory_table_list.html:222 +#: templates/admin/filer/folder/directory_table_list.html:225 #: templates/admin/filer/folder/directory_thumbnail_list.html:200 msgid "next" msgstr "kitas" -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 #, python-format msgid "Select all %(total_count)s" @@ -1121,29 +1127,29 @@ msgstr "įkelimas nepavyko" msgid "Download" msgstr "" -#: templates/admin/filer/tools/detail_info.html:15 +#: templates/admin/filer/tools/detail_info.html:16 msgid "Expand" msgstr "" -#: templates/admin/filer/tools/detail_info.html:20 +#: templates/admin/filer/tools/detail_info.html:21 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:108 msgid "File is missing" msgstr "" -#: templates/admin/filer/tools/detail_info.html:29 +#: templates/admin/filer/tools/detail_info.html:30 msgid "Type" msgstr "Tipas" -#: templates/admin/filer/tools/detail_info.html:37 +#: templates/admin/filer/tools/detail_info.html:38 msgid "File-size" msgstr "Failo dydis" -#: templates/admin/filer/tools/detail_info.html:41 +#: templates/admin/filer/tools/detail_info.html:42 msgid "Modified" msgstr "Pakeistas" -#: templates/admin/filer/tools/detail_info.html:45 +#: templates/admin/filer/tools/detail_info.html:46 msgid "Created" msgstr "Sukurtas" diff --git a/filer/locale/lt_LT/LC_MESSAGES/django.po b/filer/locale/lt_LT/LC_MESSAGES/django.po index e585505ac..a7dcb78dc 100644 --- a/filer/locale/lt_LT/LC_MESSAGES/django.po +++ b/filer/locale/lt_LT/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-26 08:46+0200\n" +"POT-Creation-Date: 2023-09-30 18:10+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Angelo Dini \n" "Language-Team: Lithuanian (Lithuania) (http://app.transifex.com/divio/django-" @@ -222,23 +222,23 @@ msgstr "" msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/imageadmin.py:18 admin/imageadmin.py:105 +#: admin/imageadmin.py:20 admin/imageadmin.py:112 msgid "Subject location" msgstr "" -#: admin/imageadmin.py:19 +#: admin/imageadmin.py:21 msgid "Location of the main subject of the scene. Format: \"x,y\"." msgstr "" -#: admin/imageadmin.py:57 +#: admin/imageadmin.py:59 msgid "Invalid subject location format. " msgstr "" -#: admin/imageadmin.py:65 +#: admin/imageadmin.py:67 msgid "Subject location is outside of the image. " msgstr "" -#: admin/imageadmin.py:74 +#: admin/imageadmin.py:76 #, python-brace-format msgid "Your input: \"{subject_location}\". " msgstr "" @@ -285,7 +285,7 @@ msgstr "" msgid "images" msgstr "" -#: models/abstract.py:147 +#: models/abstract.py:148 #, python-format msgid "" "Image format not recognized or image size exceeds limit of %(max_pixels)d " @@ -539,7 +539,7 @@ msgstr "" #: models/virtualitems.py:46 #: templates/admin/filer/folder/directory_table_list.html:4 -#: templates/admin/filer/folder/directory_table_list.html:167 +#: templates/admin/filer/folder/directory_table_list.html:170 #: templates/admin/filer/folder/directory_thumbnail_list.html:5 #: templates/admin/filer/folder/directory_thumbnail_list.html:146 #: templates/admin/filer/tools/clipboard/clipboard.html:27 @@ -572,7 +572,7 @@ msgid "Go" msgstr "" #: templates/admin/filer/actions.html:14 -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 msgid "Click here to select the objects across all pages" msgstr "" @@ -583,7 +583,7 @@ msgid "Select all %(total_count)s files and/or folders" msgstr "" #: templates/admin/filer/actions.html:16 -#: templates/admin/filer/folder/directory_table_list.html:234 +#: templates/admin/filer/folder/directory_table_list.html:237 #: templates/admin/filer/folder/directory_thumbnail_list.html:212 msgid "Clear selection" msgstr "" @@ -679,7 +679,7 @@ msgstr "" #: templates/admin/filer/folder/directory_listing.html:103 #: templates/admin/filer/folder/directory_table_list.html:29 #: templates/admin/filer/folder/directory_table_list.html:59 -#: templates/admin/filer/folder/directory_table_list.html:178 +#: templates/admin/filer/folder/directory_table_list.html:181 #: templates/admin/filer/folder/directory_thumbnail_list.html:27 #: templates/admin/filer/folder/directory_thumbnail_list.html:61 #: templates/admin/filer/folder/directory_thumbnail_list.html:156 @@ -868,12 +868,12 @@ msgid "Name" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:17 -#: templates/admin/filer/tools/detail_info.html:49 +#: templates/admin/filer/tools/detail_info.html:50 msgid "Owner" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:18 -#: templates/admin/filer/tools/detail_info.html:33 +#: templates/admin/filer/tools/detail_info.html:34 msgid "Size" msgstr "" @@ -932,7 +932,7 @@ msgstr "" #: templates/admin/filer/folder/directory_table_list.html:107 #: templates/admin/filer/folder/directory_table_list.html:122 -#: templates/admin/filer/folder/directory_table_list.html:151 +#: templates/admin/filer/folder/directory_table_list.html:154 #: templates/admin/filer/folder/directory_thumbnail_list.html:107 #: templates/admin/filer/folder/directory_thumbnail_list.html:122 #, python-format @@ -955,66 +955,70 @@ msgid "enabled" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:144 +msgid "URL copied to clipboard" +msgstr "" + +#: templates/admin/filer/folder/directory_table_list.html:147 #, python-format msgid "Canonical url '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:148 +#: templates/admin/filer/folder/directory_table_list.html:151 #, python-format msgid "Download '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:152 +#: templates/admin/filer/folder/directory_table_list.html:155 msgid "Remove file" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:160 +#: templates/admin/filer/folder/directory_table_list.html:163 #: templates/admin/filer/folder/directory_thumbnail_list.html:138 msgid "Drop files here or use the \"Upload Files\" button" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:175 +#: templates/admin/filer/folder/directory_table_list.html:178 #: templates/admin/filer/folder/directory_thumbnail_list.html:153 msgid "Drop your file to upload into:" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:185 +#: templates/admin/filer/folder/directory_table_list.html:188 #: templates/admin/filer/folder/directory_thumbnail_list.html:163 msgid "Upload" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:197 +#: templates/admin/filer/folder/directory_table_list.html:200 #: templates/admin/filer/folder/directory_thumbnail_list.html:175 msgid "cancel" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:201 +#: templates/admin/filer/folder/directory_table_list.html:204 #: templates/admin/filer/folder/directory_thumbnail_list.html:179 msgid "Upload success!" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:205 +#: templates/admin/filer/folder/directory_table_list.html:208 #: templates/admin/filer/folder/directory_thumbnail_list.html:183 msgid "Upload canceled!" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:212 +#: templates/admin/filer/folder/directory_table_list.html:215 #: templates/admin/filer/folder/directory_thumbnail_list.html:190 msgid "previous" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:217 +#: templates/admin/filer/folder/directory_table_list.html:220 #: templates/admin/filer/folder/directory_thumbnail_list.html:195 #, python-format msgid "Page %(number)s of %(num_pages)s." msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:222 +#: templates/admin/filer/folder/directory_table_list.html:225 #: templates/admin/filer/folder/directory_thumbnail_list.html:200 msgid "next" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 #, python-format msgid "Select all %(total_count)s" @@ -1086,29 +1090,29 @@ msgstr "" msgid "Download" msgstr "" -#: templates/admin/filer/tools/detail_info.html:15 +#: templates/admin/filer/tools/detail_info.html:16 msgid "Expand" msgstr "" -#: templates/admin/filer/tools/detail_info.html:20 +#: templates/admin/filer/tools/detail_info.html:21 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:108 msgid "File is missing" msgstr "" -#: templates/admin/filer/tools/detail_info.html:29 +#: templates/admin/filer/tools/detail_info.html:30 msgid "Type" msgstr "" -#: templates/admin/filer/tools/detail_info.html:37 +#: templates/admin/filer/tools/detail_info.html:38 msgid "File-size" msgstr "" -#: templates/admin/filer/tools/detail_info.html:41 +#: templates/admin/filer/tools/detail_info.html:42 msgid "Modified" msgstr "" -#: templates/admin/filer/tools/detail_info.html:45 +#: templates/admin/filer/tools/detail_info.html:46 msgid "Created" msgstr "" diff --git a/filer/locale/nb/LC_MESSAGES/django.po b/filer/locale/nb/LC_MESSAGES/django.po index 11e808535..05d3f22b3 100644 --- a/filer/locale/nb/LC_MESSAGES/django.po +++ b/filer/locale/nb/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-26 08:46+0200\n" +"POT-Creation-Date: 2023-09-30 18:10+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Eirik Krogstad , 2013\n" "Language-Team: Norwegian Bokmål (http://app.transifex.com/divio/django-filer/" @@ -225,23 +225,23 @@ msgstr "oppskalering" msgid "Thumbnail option or resize parameters must be choosen." msgstr "Miniatyrbildevalg eller parametre for endring av størrelse må velges." -#: admin/imageadmin.py:18 admin/imageadmin.py:105 +#: admin/imageadmin.py:20 admin/imageadmin.py:112 msgid "Subject location" msgstr "Fokuseringsområde" -#: admin/imageadmin.py:19 +#: admin/imageadmin.py:21 msgid "Location of the main subject of the scene. Format: \"x,y\"." msgstr "" -#: admin/imageadmin.py:57 +#: admin/imageadmin.py:59 msgid "Invalid subject location format. " msgstr "" -#: admin/imageadmin.py:65 +#: admin/imageadmin.py:67 msgid "Subject location is outside of the image. " msgstr "" -#: admin/imageadmin.py:74 +#: admin/imageadmin.py:76 #, python-brace-format msgid "Your input: \"{subject_location}\". " msgstr "" @@ -288,7 +288,7 @@ msgstr "bilde" msgid "images" msgstr "bilder" -#: models/abstract.py:147 +#: models/abstract.py:148 #, python-format msgid "" "Image format not recognized or image size exceeds limit of %(max_pixels)d " @@ -542,7 +542,7 @@ msgstr "" #: models/virtualitems.py:46 #: templates/admin/filer/folder/directory_table_list.html:4 -#: templates/admin/filer/folder/directory_table_list.html:167 +#: templates/admin/filer/folder/directory_table_list.html:170 #: templates/admin/filer/folder/directory_thumbnail_list.html:5 #: templates/admin/filer/folder/directory_thumbnail_list.html:146 #: templates/admin/filer/tools/clipboard/clipboard.html:27 @@ -575,7 +575,7 @@ msgid "Go" msgstr "Utfør" #: templates/admin/filer/actions.html:14 -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 msgid "Click here to select the objects across all pages" msgstr "Klikk her for å velge objekter på tvers av alle sider" @@ -586,7 +586,7 @@ msgid "Select all %(total_count)s files and/or folders" msgstr "Velg alle %(total_count)s filer og/eller mapper" #: templates/admin/filer/actions.html:16 -#: templates/admin/filer/folder/directory_table_list.html:234 +#: templates/admin/filer/folder/directory_table_list.html:237 #: templates/admin/filer/folder/directory_thumbnail_list.html:212 msgid "Clear selection" msgstr "Tøm utvalg" @@ -689,7 +689,7 @@ msgstr "administrasjonssiden" #: templates/admin/filer/folder/directory_listing.html:103 #: templates/admin/filer/folder/directory_table_list.html:29 #: templates/admin/filer/folder/directory_table_list.html:59 -#: templates/admin/filer/folder/directory_table_list.html:178 +#: templates/admin/filer/folder/directory_table_list.html:181 #: templates/admin/filer/folder/directory_thumbnail_list.html:27 #: templates/admin/filer/folder/directory_thumbnail_list.html:61 #: templates/admin/filer/folder/directory_thumbnail_list.html:156 @@ -894,12 +894,12 @@ msgid "Name" msgstr "Navn" #: templates/admin/filer/folder/directory_table_list.html:17 -#: templates/admin/filer/tools/detail_info.html:49 +#: templates/admin/filer/tools/detail_info.html:50 msgid "Owner" msgstr "Eier" #: templates/admin/filer/folder/directory_table_list.html:18 -#: templates/admin/filer/tools/detail_info.html:33 +#: templates/admin/filer/tools/detail_info.html:34 msgid "Size" msgstr "" @@ -954,7 +954,7 @@ msgstr "Velg denne filen" #: templates/admin/filer/folder/directory_table_list.html:107 #: templates/admin/filer/folder/directory_table_list.html:122 -#: templates/admin/filer/folder/directory_table_list.html:151 +#: templates/admin/filer/folder/directory_table_list.html:154 #: templates/admin/filer/folder/directory_thumbnail_list.html:107 #: templates/admin/filer/folder/directory_thumbnail_list.html:122 #, python-format @@ -977,66 +977,72 @@ msgid "enabled" msgstr "aktivert" #: templates/admin/filer/folder/directory_table_list.html:144 +#, fuzzy +#| msgid "Move selected files to clipboard" +msgid "URL copied to clipboard" +msgstr "Flytt valgte filer til utklippstavlen" + +#: templates/admin/filer/folder/directory_table_list.html:147 #, python-format msgid "Canonical url '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:148 +#: templates/admin/filer/folder/directory_table_list.html:151 #, python-format msgid "Download '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:152 +#: templates/admin/filer/folder/directory_table_list.html:155 msgid "Remove file" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:160 +#: templates/admin/filer/folder/directory_table_list.html:163 #: templates/admin/filer/folder/directory_thumbnail_list.html:138 msgid "Drop files here or use the \"Upload Files\" button" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:175 +#: templates/admin/filer/folder/directory_table_list.html:178 #: templates/admin/filer/folder/directory_thumbnail_list.html:153 msgid "Drop your file to upload into:" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:185 +#: templates/admin/filer/folder/directory_table_list.html:188 #: templates/admin/filer/folder/directory_thumbnail_list.html:163 msgid "Upload" msgstr "Last opp" -#: templates/admin/filer/folder/directory_table_list.html:197 +#: templates/admin/filer/folder/directory_table_list.html:200 #: templates/admin/filer/folder/directory_thumbnail_list.html:175 msgid "cancel" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:201 +#: templates/admin/filer/folder/directory_table_list.html:204 #: templates/admin/filer/folder/directory_thumbnail_list.html:179 msgid "Upload success!" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:205 +#: templates/admin/filer/folder/directory_table_list.html:208 #: templates/admin/filer/folder/directory_thumbnail_list.html:183 msgid "Upload canceled!" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:212 +#: templates/admin/filer/folder/directory_table_list.html:215 #: templates/admin/filer/folder/directory_thumbnail_list.html:190 msgid "previous" msgstr "forrige" -#: templates/admin/filer/folder/directory_table_list.html:217 +#: templates/admin/filer/folder/directory_table_list.html:220 #: templates/admin/filer/folder/directory_thumbnail_list.html:195 #, python-format msgid "Page %(number)s of %(num_pages)s." msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:222 +#: templates/admin/filer/folder/directory_table_list.html:225 #: templates/admin/filer/folder/directory_thumbnail_list.html:200 msgid "next" msgstr "neste" -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 #, python-format msgid "Select all %(total_count)s" @@ -1106,29 +1112,29 @@ msgstr "feil ved opplasting" msgid "Download" msgstr "" -#: templates/admin/filer/tools/detail_info.html:15 +#: templates/admin/filer/tools/detail_info.html:16 msgid "Expand" msgstr "" -#: templates/admin/filer/tools/detail_info.html:20 +#: templates/admin/filer/tools/detail_info.html:21 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:108 msgid "File is missing" msgstr "" -#: templates/admin/filer/tools/detail_info.html:29 +#: templates/admin/filer/tools/detail_info.html:30 msgid "Type" msgstr "" -#: templates/admin/filer/tools/detail_info.html:37 +#: templates/admin/filer/tools/detail_info.html:38 msgid "File-size" msgstr "" -#: templates/admin/filer/tools/detail_info.html:41 +#: templates/admin/filer/tools/detail_info.html:42 msgid "Modified" msgstr "" -#: templates/admin/filer/tools/detail_info.html:45 +#: templates/admin/filer/tools/detail_info.html:46 msgid "Created" msgstr "" diff --git a/filer/locale/nl_NL/LC_MESSAGES/django.mo b/filer/locale/nl_NL/LC_MESSAGES/django.mo index e74a4128bb30f144142f877ca58b75411a368a58..c9e62df2fddfbcac13f14e378f30af2c3995ea75 100644 GIT binary patch delta 4801 zcmYk;3wY1h9mnzWN2DS5s|fNBK@(}FCB!9?Y7&*WR9q(M`b0wFk_1a-V-Nk4W}UV+ zv;U%dO4ViVsi|AF=2oc7cs{4o+~!gRtA z?1qnF8n(u4oR4`JV2sCnNge;)$D=ylh#l}as-p&s#XG2k!lR67kNuD) zOg<*#G*pMnkdDj-R6je>2OBYn{>>u_-8d20#+WCuFZy9Q>c(GT3!IJ7I1iQB64Xfd zpc4BCW3V3M@hVQiKpt9)voH+f+8WatQ?P*k&GQsAk{zfiJCB;O8>kK&u{(y+x@O`T zY=yx!$y1x2eaOuJ``qC$if|{hW>+Uz@K^53`APn zp&IOnn%V?ZVky`gOHm0dL(R-V)RZ5?X6R4$N<0WVVcQPOKl{fF;Dkmx5?NMLf#hIn zFc4Ru8r+N;@lHICyKw_9iDg~B+pYG*0xxfQ4cJ?kj2 zzsy$r86HPv`Utfbg5sSK#G)GLfx4cGi8vUC;|%PH2eB94#}w?&h8TvWs3qBs{4-bh z>7w`FpIuB})9Z}g zsNX=Xc?=b8#xzO)rj|kuHefEMCOIFF8tZyw8<^v$x8WxGp?SjDOs!BI2BQWLjv7!5 zK88uw6nlLD25>$LJt~Z(pazRj9h9L){2OeAuUTtRBV2Clt5F?oM%};PUO$Pgsh>e5 za2b8^8mgb$sCFJc!Tjq)vt(x^{;1b06g84$)D)&*C=Nm&EU=D4?ebF8{c}(W)!6H` z_WTl50xMC8Z9px>j%4PakCQpa31xK8`T*6CUI}#&f=c9ZR04fb9cG|LI0*IpbJo$Q z=L=BJm!aOWY7E4;?DaYi1vR`I)xZf1z|*KqFQYQQZm-`%CGY@)(AC|TH(j)W3DoPJ zboR;_96aN!Ma{@u)W{E^I=+Uw?;dJt|BG~C0{U`Z?|&8r zWj+i?;aJSacThL_^3@rR>G(V@#1OoOO7tOWQw8*Q+G&US9(1wwL{vLHF&)cMOHqd& zP4P(z&)_*!BJI+gOuJww>OHX?jy{UQ`>+(*qLe6 z(sV<$lZHwx*Pb7Z;nXKuXL~3pqeZ9&521GRSE!}Ah8p25)UIxx>HJykh!NDsVi-`S>aF0o4!MWFzBX5S;jxF#8y73NX zU_`Dn;xVYDDM!7ARj3)5k4k7MG8VH5HFI}Ro6~2AF^4f6o8$Q=S^rBEG?m|=Hpv5Y zVCCF|9_gv6#VgZ z^uxcP9$1M=Y$Iwj?YHMo*!nqCM^{iC-L>cSpM2E=(FdbZn=TfEuqUehO!TPZp%m0X z0jfU9-cW_U)L%k9_zEh)#n=^>qo(pOs)J(~iI-3vG@=r4jd0!~U)0ExFc^D`VEvV8 zCMVSKa8w7su=P^ZTk#^gaS>{7Y(aJK9_mB1&tCrm^`UxTueZr_5{N@}+!gg)GOC^4 zdCb42xIZT}f;^1JiKr1Tur5VqT!(saH)`rXL?wO_mG}kgcc_`Wg(3KFbfJz34(7CE zhRisEx5peK{z~pL3~5}|8d(^mZBE(16%Kc z`NVQtFT{1;OTl3gS1EmN&mO|JiA`R=kl3vAl+uYsgpL~GCE^^RcYP#rlK3-GM(ib? zB9;(!#3U}yi%5~kF9~$F#je0z>&pU^6XT7zdBYi%je#zSq8WZN>u)B)oY_-WH8 zmrQWanC2c|K6!faw4%xhTT2s4MC`aY5y$NT$0nB zNV=F!14T(xEYnO^%=@K_X=wShTTxyx%yai1^edA+vt;`e_)=Q-y*&+oaMLuIX} zsm9|wAMRgeIDR0y6ZN+lQ|K|~t`OB4^NUDhdSW@IU?mQ~MvTH%48U6$gaK62go(f~ zjKxlvfw$v8T!wiVY>dwwrI16#SuH>ZlpLcnOt|f3z_@Fdb>a zjK)lS0M+3Nq$BeRs-KP65nC{X{>?QC=~T2~Urf8hm_VG0x^X7@<7|wqx@VIp>pWB%DUCX-=lr1{9Qno^{1GatL) zDpZ4SphmnAoAE8&gv-6gB;de!*GZ_v7Fjpr{hWV^8c2U`))Ed$VE#1&rBrD5u11aU zP1L5@j9Q9asE$8GX3rc%C43Rp&`pfTcusWR-Kdd{Lali*hT=o01b&4)Vix--Xa-(K zO=+V&--o%Je}-x>iuuy@Zm7gkP>J?OB|g-i7uf4#uze zir)Vl6x2W>XG3uwYD5kAFz&%w*elhT=g~nm5ZB9nZAYLwe#BaX++xllf5xx3n@~FX zb3PrFco~N3{r^3M04mm_I^NWN!I+(>890PW?2Nr0$EzNc8 zg#H<>!Kmw9QG2I{H649wFq?up$VZKM9CpU();XvVF0|)MP#rBp-T$(^UWd1Hz6F)Q zZq#ergzD!gs-08z{9Fd}uaR7$La)^oRHgx$?i2=NIOkr}ef_M1QM-FM>i!9+gr?f- zb8P)QR04}oi9Lf_iWSH=$ZXAI{*}=QD&$F2LuXJOw4&BhuZ9u`M|F4yYJ^_YbG@t? zsOS5kp3g_UT~n|NF0j`tQ0-RvD5!xA7>xC(On0L)KVYw)KqYVzL+~uV;vqp~Uz&=( z?q1n~!#V#1)o~~vdOeqpn#sPX1VP}h23b{e0Dq(R{~r{NP_bl?+hM_A zx1mY+DD{scf2Nfm%}7uFVJLwCsQ&@OQ8O|LHS#s6j+;>Toj@(^=SUakvaRnigv9m! zr%)J=SvVPgjk@syj=^ZYK0m`U48tbW%$!1Ps>`Su_&e%*&}Ps5?sD4+!W`;Hpq8Qn zHN$o2%croFLVE+KOxrLKgNC{PhO?|i7(@Lm)JQ8(32Z{v((FQiJb-O@6!+l~*7a_D zo-DK{j$t1DGl%)t)Me-LDa5Bxi5y0Ca1v?5{2R4~gJ?xlnvdGW_oD7EMO`mLZN_;R zk1wItdMC19%{Qn7yV1Lr$eZVLUxPF%H1d2@2gRtVnu5{jLrwW=?139lOSB(5;!V`j zbYMEwP82G!L{xnSMq-Y2JSw4b&A%F4gWApSq1L7eHNqpPUHt{J@y&lQ3bUBD2pok< za0=@A$57W7A**Os;zT@-Yzvb#(p`#an9I3u9R=NR(N+u@<-R^oBFkhp;(geHqjAtZ z?ueG+Bb+<982tos$;=QibsCHk&OuhfxDa2Fp70y7v zBL4GX8BW0?I1`hZhMrhyZNPZWKgBM19Xq2R?`$UwMnCL|0T_b`7>_}ihwbnG7z%n| zGAgs_s77LZu?>AQ-zm; zZs>#BL<3L{4#Pk!!c@E;HI+V82hUpdr)Sf6ububt80eakCUxnQ{-)^segi7EHs^jyv{xYhaYp5B%jv7GV zIM!d8#*K4FoNp~bW&Cs0gY!{S{{$-YWvIlftZPv-SBGJ^4Lzu1hKo6Aorb(L<|y$+ zEp6CE{(TIV3u! zk&-@EI(oab|6X*0L!*6fP%b09#7^QtLdQa)iFl9bL+HpQ))1QW_lYV(U!T!L9iii_ zi>b7-*6qg;e!sEhCs5OOPTv;ZPqT%XPh2A|5&wVuU{78}ZGv6)JOw8cYwh_1xWV~8 zG$N{n(ivO(Cw!fF%ZUl|j{K5R4zY^RQ9(RKd`{?HFCjiAUL+nS_7eSwuZhjXc;c|L zB+Tn+aMpw+dYYXN!n_FwsMYZdQBHhFoFEnusl?wLPx#QNLzJE-4iY-{5Zj&N@MzCp zo$~P5z$=_55&N7Ms5|Y{gqL*ujPpM`H^XBS-lbGeloCq`9p4e>iIv1vCp#k6^Q|)> zqHtI(=U)-Wi2cNJViYl(_=wQ)0r6X6qfR(Z5#JN7PIE+b;8s;}>~L;IL}%}&^eGXl xDvrg(CL)b^jd+L9!H2T_OZhAo5SN{z$W+hq#s!fbq8eBBo{`WPRrs&l{tGai8;Sq` diff --git a/filer/locale/nl_NL/LC_MESSAGES/django.po b/filer/locale/nl_NL/LC_MESSAGES/django.po index 1332fcfa3..0cbda5a3f 100644 --- a/filer/locale/nl_NL/LC_MESSAGES/django.po +++ b/filer/locale/nl_NL/LC_MESSAGES/django.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-26 08:46+0200\n" +"POT-Creation-Date: 2023-09-30 18:10+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Stefan van den Eertwegh , 2023\n" "Language-Team: Dutch (Netherlands) (http://app.transifex.com/divio/django-filer/language/nl_NL/)\n" @@ -228,23 +228,23 @@ msgstr "opschalen" msgid "Thumbnail option or resize parameters must be choosen." msgstr "Thumbnail optie of afmetingsopties moet zijn geselecteerd" -#: admin/imageadmin.py:18 admin/imageadmin.py:105 +#: admin/imageadmin.py:20 admin/imageadmin.py:112 msgid "Subject location" msgstr "Locatie van onderwerp" -#: admin/imageadmin.py:19 +#: admin/imageadmin.py:21 msgid "Location of the main subject of the scene. Format: \"x,y\"." msgstr "Locatie van het hoofdonderwerp van de scène. Formaat: \"x,y\"." -#: admin/imageadmin.py:57 +#: admin/imageadmin.py:59 msgid "Invalid subject location format. " msgstr "Ongeldig locatieformaat van het onderwerp" -#: admin/imageadmin.py:65 +#: admin/imageadmin.py:67 msgid "Subject location is outside of the image. " msgstr "Locatie van het onderwerp bevindt zich buiten de afbeelding." -#: admin/imageadmin.py:74 +#: admin/imageadmin.py:76 #, python-brace-format msgid "Your input: \"{subject_location}\". " msgstr "Je invoer: \"{subject_location}\"." @@ -291,7 +291,7 @@ msgstr "afbeelding" msgid "images" msgstr "afbeeldingen" -#: models/abstract.py:147 +#: models/abstract.py:148 #, python-format msgid "" "Image format not recognized or image size exceeds limit of %(max_pixels)d " @@ -548,7 +548,7 @@ msgstr "thumbnail-opties" #: models/virtualitems.py:46 #: templates/admin/filer/folder/directory_table_list.html:4 -#: templates/admin/filer/folder/directory_table_list.html:167 +#: templates/admin/filer/folder/directory_table_list.html:170 #: templates/admin/filer/folder/directory_thumbnail_list.html:5 #: templates/admin/filer/folder/directory_thumbnail_list.html:146 #: templates/admin/filer/tools/clipboard/clipboard.html:27 @@ -582,7 +582,7 @@ msgid "Go" msgstr "Uitvoeren" #: templates/admin/filer/actions.html:14 -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 msgid "Click here to select the objects across all pages" msgstr "Klik hier om objecten over alle pagina's te selecteren" @@ -593,7 +593,7 @@ msgid "Select all %(total_count)s files and/or folders" msgstr "Selecteer alle %(total_count)s bestanden en/of mappen" #: templates/admin/filer/actions.html:16 -#: templates/admin/filer/folder/directory_table_list.html:234 +#: templates/admin/filer/folder/directory_table_list.html:237 #: templates/admin/filer/folder/directory_thumbnail_list.html:212 msgid "Clear selection" msgstr "Selectie wissen" @@ -689,7 +689,7 @@ msgstr "admin homepage" #: templates/admin/filer/folder/directory_listing.html:103 #: templates/admin/filer/folder/directory_table_list.html:29 #: templates/admin/filer/folder/directory_table_list.html:59 -#: templates/admin/filer/folder/directory_table_list.html:178 +#: templates/admin/filer/folder/directory_table_list.html:181 #: templates/admin/filer/folder/directory_thumbnail_list.html:27 #: templates/admin/filer/folder/directory_thumbnail_list.html:61 #: templates/admin/filer/folder/directory_thumbnail_list.html:156 @@ -878,12 +878,12 @@ msgid "Name" msgstr "Naam" #: templates/admin/filer/folder/directory_table_list.html:17 -#: templates/admin/filer/tools/detail_info.html:49 +#: templates/admin/filer/tools/detail_info.html:50 msgid "Owner" msgstr "Eigenaar" #: templates/admin/filer/folder/directory_table_list.html:18 -#: templates/admin/filer/tools/detail_info.html:33 +#: templates/admin/filer/tools/detail_info.html:34 msgid "Size" msgstr "Grootte" @@ -938,7 +938,7 @@ msgstr "Selecteer dit bestand" #: templates/admin/filer/folder/directory_table_list.html:107 #: templates/admin/filer/folder/directory_table_list.html:122 -#: templates/admin/filer/folder/directory_table_list.html:151 +#: templates/admin/filer/folder/directory_table_list.html:154 #: templates/admin/filer/folder/directory_thumbnail_list.html:107 #: templates/admin/filer/folder/directory_thumbnail_list.html:122 #, python-format @@ -961,68 +961,73 @@ msgid "enabled" msgstr "ingeschakeld" #: templates/admin/filer/folder/directory_table_list.html:144 +#| msgid "Move selected files to clipboard" +msgid "URL copied to clipboard" +msgstr "URL gekopieerd naar het klembord" + +#: templates/admin/filer/folder/directory_table_list.html:147 #, python-format #| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "Gebruikelijke url '%(item_label)s'" -#: templates/admin/filer/folder/directory_table_list.html:148 +#: templates/admin/filer/folder/directory_table_list.html:151 #, python-format #| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "Download '%(item_label)s'" -#: templates/admin/filer/folder/directory_table_list.html:152 +#: templates/admin/filer/folder/directory_table_list.html:155 msgid "Remove file" msgstr "Verwijder bestand" -#: templates/admin/filer/folder/directory_table_list.html:160 +#: templates/admin/filer/folder/directory_table_list.html:163 #: templates/admin/filer/folder/directory_thumbnail_list.html:138 msgid "Drop files here or use the \"Upload Files\" button" msgstr "Sleep hier bestanden naartoe of gebruik de \"Bestanden uploaden\"-knop" -#: templates/admin/filer/folder/directory_table_list.html:175 +#: templates/admin/filer/folder/directory_table_list.html:178 #: templates/admin/filer/folder/directory_thumbnail_list.html:153 msgid "Drop your file to upload into:" msgstr "Sleep je bestand om te uploaden naar:" -#: templates/admin/filer/folder/directory_table_list.html:185 +#: templates/admin/filer/folder/directory_table_list.html:188 #: templates/admin/filer/folder/directory_thumbnail_list.html:163 msgid "Upload" msgstr "Uploaden" -#: templates/admin/filer/folder/directory_table_list.html:197 +#: templates/admin/filer/folder/directory_table_list.html:200 #: templates/admin/filer/folder/directory_thumbnail_list.html:175 msgid "cancel" msgstr "annuleer" -#: templates/admin/filer/folder/directory_table_list.html:201 +#: templates/admin/filer/folder/directory_table_list.html:204 #: templates/admin/filer/folder/directory_thumbnail_list.html:179 msgid "Upload success!" msgstr "Upload succesvol!" -#: templates/admin/filer/folder/directory_table_list.html:205 +#: templates/admin/filer/folder/directory_table_list.html:208 #: templates/admin/filer/folder/directory_thumbnail_list.html:183 msgid "Upload canceled!" msgstr "Upload geannuleerd!" -#: templates/admin/filer/folder/directory_table_list.html:212 +#: templates/admin/filer/folder/directory_table_list.html:215 #: templates/admin/filer/folder/directory_thumbnail_list.html:190 msgid "previous" msgstr "vorige" -#: templates/admin/filer/folder/directory_table_list.html:217 +#: templates/admin/filer/folder/directory_table_list.html:220 #: templates/admin/filer/folder/directory_thumbnail_list.html:195 #, python-format msgid "Page %(number)s of %(num_pages)s." msgstr "Pagina %(number)s van %(num_pages)s." -#: templates/admin/filer/folder/directory_table_list.html:222 +#: templates/admin/filer/folder/directory_table_list.html:225 #: templates/admin/filer/folder/directory_thumbnail_list.html:200 msgid "next" msgstr "volgende" -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 #, python-format msgid "Select all %(total_count)s" @@ -1094,30 +1099,30 @@ msgstr "upload mislukt" msgid "Download" msgstr "Download" -#: templates/admin/filer/tools/detail_info.html:15 +#: templates/admin/filer/tools/detail_info.html:16 msgid "Expand" msgstr "Uitvouwen" -#: templates/admin/filer/tools/detail_info.html:20 +#: templates/admin/filer/tools/detail_info.html:21 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:108 #| msgid "file missing" msgid "File is missing" msgstr "Bestand ontbreekt" -#: templates/admin/filer/tools/detail_info.html:29 +#: templates/admin/filer/tools/detail_info.html:30 msgid "Type" msgstr "Type" -#: templates/admin/filer/tools/detail_info.html:37 +#: templates/admin/filer/tools/detail_info.html:38 msgid "File-size" msgstr "Bestandsgrootte" -#: templates/admin/filer/tools/detail_info.html:41 +#: templates/admin/filer/tools/detail_info.html:42 msgid "Modified" msgstr "Gewijzigd" -#: templates/admin/filer/tools/detail_info.html:45 +#: templates/admin/filer/tools/detail_info.html:46 msgid "Created" msgstr "Aangemaakt" diff --git a/filer/locale/nn/LC_MESSAGES/django.po b/filer/locale/nn/LC_MESSAGES/django.po index 1d4d5a0d1..255a1f963 100644 --- a/filer/locale/nn/LC_MESSAGES/django.po +++ b/filer/locale/nn/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-26 08:46+0200\n" +"POT-Creation-Date: 2023-09-30 18:10+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Eirik Krogstad , 2013\n" "Language-Team: Norwegian Nynorsk (http://app.transifex.com/divio/django-" @@ -225,23 +225,23 @@ msgstr "oppskalering" msgid "Thumbnail option or resize parameters must be choosen." msgstr "Miniatyrbileteval eller parametrar for endring av storleik må veljast." -#: admin/imageadmin.py:18 admin/imageadmin.py:105 +#: admin/imageadmin.py:20 admin/imageadmin.py:112 msgid "Subject location" msgstr "Fokuseringsområde" -#: admin/imageadmin.py:19 +#: admin/imageadmin.py:21 msgid "Location of the main subject of the scene. Format: \"x,y\"." msgstr "" -#: admin/imageadmin.py:57 +#: admin/imageadmin.py:59 msgid "Invalid subject location format. " msgstr "" -#: admin/imageadmin.py:65 +#: admin/imageadmin.py:67 msgid "Subject location is outside of the image. " msgstr "" -#: admin/imageadmin.py:74 +#: admin/imageadmin.py:76 #, python-brace-format msgid "Your input: \"{subject_location}\". " msgstr "" @@ -288,7 +288,7 @@ msgstr "bilete" msgid "images" msgstr "bilete" -#: models/abstract.py:147 +#: models/abstract.py:148 #, python-format msgid "" "Image format not recognized or image size exceeds limit of %(max_pixels)d " @@ -542,7 +542,7 @@ msgstr "" #: models/virtualitems.py:46 #: templates/admin/filer/folder/directory_table_list.html:4 -#: templates/admin/filer/folder/directory_table_list.html:167 +#: templates/admin/filer/folder/directory_table_list.html:170 #: templates/admin/filer/folder/directory_thumbnail_list.html:5 #: templates/admin/filer/folder/directory_thumbnail_list.html:146 #: templates/admin/filer/tools/clipboard/clipboard.html:27 @@ -575,7 +575,7 @@ msgid "Go" msgstr "Utfør" #: templates/admin/filer/actions.html:14 -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 msgid "Click here to select the objects across all pages" msgstr "Klikk her for å velje objekt på tvers av alle sider" @@ -586,7 +586,7 @@ msgid "Select all %(total_count)s files and/or folders" msgstr "Vel alle %(total_count)s filer og/eller mapper" #: templates/admin/filer/actions.html:16 -#: templates/admin/filer/folder/directory_table_list.html:234 +#: templates/admin/filer/folder/directory_table_list.html:237 #: templates/admin/filer/folder/directory_thumbnail_list.html:212 msgid "Clear selection" msgstr "Tøm utval" @@ -689,7 +689,7 @@ msgstr "administrasjonssida" #: templates/admin/filer/folder/directory_listing.html:103 #: templates/admin/filer/folder/directory_table_list.html:29 #: templates/admin/filer/folder/directory_table_list.html:59 -#: templates/admin/filer/folder/directory_table_list.html:178 +#: templates/admin/filer/folder/directory_table_list.html:181 #: templates/admin/filer/folder/directory_thumbnail_list.html:27 #: templates/admin/filer/folder/directory_thumbnail_list.html:61 #: templates/admin/filer/folder/directory_thumbnail_list.html:156 @@ -891,12 +891,12 @@ msgid "Name" msgstr "Namn" #: templates/admin/filer/folder/directory_table_list.html:17 -#: templates/admin/filer/tools/detail_info.html:49 +#: templates/admin/filer/tools/detail_info.html:50 msgid "Owner" msgstr "Eigar" #: templates/admin/filer/folder/directory_table_list.html:18 -#: templates/admin/filer/tools/detail_info.html:33 +#: templates/admin/filer/tools/detail_info.html:34 msgid "Size" msgstr "" @@ -951,7 +951,7 @@ msgstr "Vel denne filen" #: templates/admin/filer/folder/directory_table_list.html:107 #: templates/admin/filer/folder/directory_table_list.html:122 -#: templates/admin/filer/folder/directory_table_list.html:151 +#: templates/admin/filer/folder/directory_table_list.html:154 #: templates/admin/filer/folder/directory_thumbnail_list.html:107 #: templates/admin/filer/folder/directory_thumbnail_list.html:122 #, python-format @@ -974,66 +974,72 @@ msgid "enabled" msgstr "aktivert" #: templates/admin/filer/folder/directory_table_list.html:144 +#, fuzzy +#| msgid "Move selected files to clipboard" +msgid "URL copied to clipboard" +msgstr "Flytt valde filer til utklippstavla" + +#: templates/admin/filer/folder/directory_table_list.html:147 #, python-format msgid "Canonical url '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:148 +#: templates/admin/filer/folder/directory_table_list.html:151 #, python-format msgid "Download '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:152 +#: templates/admin/filer/folder/directory_table_list.html:155 msgid "Remove file" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:160 +#: templates/admin/filer/folder/directory_table_list.html:163 #: templates/admin/filer/folder/directory_thumbnail_list.html:138 msgid "Drop files here or use the \"Upload Files\" button" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:175 +#: templates/admin/filer/folder/directory_table_list.html:178 #: templates/admin/filer/folder/directory_thumbnail_list.html:153 msgid "Drop your file to upload into:" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:185 +#: templates/admin/filer/folder/directory_table_list.html:188 #: templates/admin/filer/folder/directory_thumbnail_list.html:163 msgid "Upload" msgstr "Last opp" -#: templates/admin/filer/folder/directory_table_list.html:197 +#: templates/admin/filer/folder/directory_table_list.html:200 #: templates/admin/filer/folder/directory_thumbnail_list.html:175 msgid "cancel" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:201 +#: templates/admin/filer/folder/directory_table_list.html:204 #: templates/admin/filer/folder/directory_thumbnail_list.html:179 msgid "Upload success!" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:205 +#: templates/admin/filer/folder/directory_table_list.html:208 #: templates/admin/filer/folder/directory_thumbnail_list.html:183 msgid "Upload canceled!" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:212 +#: templates/admin/filer/folder/directory_table_list.html:215 #: templates/admin/filer/folder/directory_thumbnail_list.html:190 msgid "previous" msgstr "førre" -#: templates/admin/filer/folder/directory_table_list.html:217 +#: templates/admin/filer/folder/directory_table_list.html:220 #: templates/admin/filer/folder/directory_thumbnail_list.html:195 #, python-format msgid "Page %(number)s of %(num_pages)s." msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:222 +#: templates/admin/filer/folder/directory_table_list.html:225 #: templates/admin/filer/folder/directory_thumbnail_list.html:200 msgid "next" msgstr "neste" -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 #, python-format msgid "Select all %(total_count)s" @@ -1103,29 +1109,29 @@ msgstr "feil ved opplasting" msgid "Download" msgstr "" -#: templates/admin/filer/tools/detail_info.html:15 +#: templates/admin/filer/tools/detail_info.html:16 msgid "Expand" msgstr "" -#: templates/admin/filer/tools/detail_info.html:20 +#: templates/admin/filer/tools/detail_info.html:21 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:108 msgid "File is missing" msgstr "" -#: templates/admin/filer/tools/detail_info.html:29 +#: templates/admin/filer/tools/detail_info.html:30 msgid "Type" msgstr "" -#: templates/admin/filer/tools/detail_info.html:37 +#: templates/admin/filer/tools/detail_info.html:38 msgid "File-size" msgstr "" -#: templates/admin/filer/tools/detail_info.html:41 +#: templates/admin/filer/tools/detail_info.html:42 msgid "Modified" msgstr "" -#: templates/admin/filer/tools/detail_info.html:45 +#: templates/admin/filer/tools/detail_info.html:46 msgid "Created" msgstr "" diff --git a/filer/locale/pl/LC_MESSAGES/django.po b/filer/locale/pl/LC_MESSAGES/django.po index a3ac05842..1f59250c7 100644 --- a/filer/locale/pl/LC_MESSAGES/django.po +++ b/filer/locale/pl/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-26 08:46+0200\n" +"POT-Creation-Date: 2023-09-30 18:10+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Grzegorz Biały , 2017\n" "Language-Team: Polish (http://app.transifex.com/divio/django-filer/language/" @@ -232,23 +232,23 @@ msgstr "skaluj" msgid "Thumbnail option or resize parameters must be choosen." msgstr "Opcja miniatury albo parametry zmiany rozmiaru muszą być określone." -#: admin/imageadmin.py:18 admin/imageadmin.py:105 +#: admin/imageadmin.py:20 admin/imageadmin.py:112 msgid "Subject location" msgstr "Współrzędne obiektu" -#: admin/imageadmin.py:19 +#: admin/imageadmin.py:21 msgid "Location of the main subject of the scene. Format: \"x,y\"." msgstr "Współrzędne głównego obiektu prezentowanej sceny. Format: \"x,y\"." -#: admin/imageadmin.py:57 +#: admin/imageadmin.py:59 msgid "Invalid subject location format. " msgstr "Niepoprawny format współrzędnych obiektu." -#: admin/imageadmin.py:65 +#: admin/imageadmin.py:67 msgid "Subject location is outside of the image. " msgstr "Współrzędne obiektu znajdują się poza obrazem." -#: admin/imageadmin.py:74 +#: admin/imageadmin.py:76 #, python-brace-format msgid "Your input: \"{subject_location}\". " msgstr "Twój wpis: \"{subject_location}\"." @@ -295,7 +295,7 @@ msgstr "obraz" msgid "images" msgstr "obrazy" -#: models/abstract.py:147 +#: models/abstract.py:148 #, python-format msgid "" "Image format not recognized or image size exceeds limit of %(max_pixels)d " @@ -551,7 +551,7 @@ msgstr "opcje miniatur" #: models/virtualitems.py:46 #: templates/admin/filer/folder/directory_table_list.html:4 -#: templates/admin/filer/folder/directory_table_list.html:167 +#: templates/admin/filer/folder/directory_table_list.html:170 #: templates/admin/filer/folder/directory_thumbnail_list.html:5 #: templates/admin/filer/folder/directory_thumbnail_list.html:146 #: templates/admin/filer/tools/clipboard/clipboard.html:27 @@ -584,7 +584,7 @@ msgid "Go" msgstr "Idź" #: templates/admin/filer/actions.html:14 -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 msgid "Click here to select the objects across all pages" msgstr "Kliknij tutaj aby zaznaczyć obiekty na wszystkich stronach" @@ -595,7 +595,7 @@ msgid "Select all %(total_count)s files and/or folders" msgstr "Zaznacz wszystkie %(total_count)s pliki i/lub katalogi" #: templates/admin/filer/actions.html:16 -#: templates/admin/filer/folder/directory_table_list.html:234 +#: templates/admin/filer/folder/directory_table_list.html:237 #: templates/admin/filer/folder/directory_thumbnail_list.html:212 msgid "Clear selection" msgstr "Wyczyść zaznaczenie" @@ -698,7 +698,7 @@ msgstr "panelu administracyjnego" #: templates/admin/filer/folder/directory_listing.html:103 #: templates/admin/filer/folder/directory_table_list.html:29 #: templates/admin/filer/folder/directory_table_list.html:59 -#: templates/admin/filer/folder/directory_table_list.html:178 +#: templates/admin/filer/folder/directory_table_list.html:181 #: templates/admin/filer/folder/directory_thumbnail_list.html:27 #: templates/admin/filer/folder/directory_thumbnail_list.html:61 #: templates/admin/filer/folder/directory_thumbnail_list.html:156 @@ -905,12 +905,12 @@ msgid "Name" msgstr "Nazwa" #: templates/admin/filer/folder/directory_table_list.html:17 -#: templates/admin/filer/tools/detail_info.html:49 +#: templates/admin/filer/tools/detail_info.html:50 msgid "Owner" msgstr "Właściciel" #: templates/admin/filer/folder/directory_table_list.html:18 -#: templates/admin/filer/tools/detail_info.html:33 +#: templates/admin/filer/tools/detail_info.html:34 msgid "Size" msgstr "Rozmiar" @@ -969,7 +969,7 @@ msgstr "Wybierz ten plik" #: templates/admin/filer/folder/directory_table_list.html:107 #: templates/admin/filer/folder/directory_table_list.html:122 -#: templates/admin/filer/folder/directory_table_list.html:151 +#: templates/admin/filer/folder/directory_table_list.html:154 #: templates/admin/filer/folder/directory_thumbnail_list.html:107 #: templates/admin/filer/folder/directory_thumbnail_list.html:122 #, python-format @@ -992,66 +992,72 @@ msgid "enabled" msgstr "włączony" #: templates/admin/filer/folder/directory_table_list.html:144 +#, fuzzy +#| msgid "Move selected files to clipboard" +msgid "URL copied to clipboard" +msgstr "Przenieś zaznaczone pliki do schowka" + +#: templates/admin/filer/folder/directory_table_list.html:147 #, python-format msgid "Canonical url '%(item_label)s'" msgstr "Kanoniczny url '%(item_label)s'" -#: templates/admin/filer/folder/directory_table_list.html:148 +#: templates/admin/filer/folder/directory_table_list.html:151 #, python-format msgid "Download '%(item_label)s'" msgstr "Pobierz '%(item_label)s'" -#: templates/admin/filer/folder/directory_table_list.html:152 +#: templates/admin/filer/folder/directory_table_list.html:155 msgid "Remove file" msgstr "Usuń plik" -#: templates/admin/filer/folder/directory_table_list.html:160 +#: templates/admin/filer/folder/directory_table_list.html:163 #: templates/admin/filer/folder/directory_thumbnail_list.html:138 msgid "Drop files here or use the \"Upload Files\" button" msgstr "Upuść pliki tutaj lub kliknij na przycisk \"Wyślij Pliki\" " -#: templates/admin/filer/folder/directory_table_list.html:175 +#: templates/admin/filer/folder/directory_table_list.html:178 #: templates/admin/filer/folder/directory_thumbnail_list.html:153 msgid "Drop your file to upload into:" msgstr "Upuść plik by wysłać go do:" -#: templates/admin/filer/folder/directory_table_list.html:185 +#: templates/admin/filer/folder/directory_table_list.html:188 #: templates/admin/filer/folder/directory_thumbnail_list.html:163 msgid "Upload" msgstr "Upload" -#: templates/admin/filer/folder/directory_table_list.html:197 +#: templates/admin/filer/folder/directory_table_list.html:200 #: templates/admin/filer/folder/directory_thumbnail_list.html:175 msgid "cancel" msgstr "anuluj" -#: templates/admin/filer/folder/directory_table_list.html:201 +#: templates/admin/filer/folder/directory_table_list.html:204 #: templates/admin/filer/folder/directory_thumbnail_list.html:179 msgid "Upload success!" msgstr "Wysłano pomyślnie!" -#: templates/admin/filer/folder/directory_table_list.html:205 +#: templates/admin/filer/folder/directory_table_list.html:208 #: templates/admin/filer/folder/directory_thumbnail_list.html:183 msgid "Upload canceled!" msgstr "Wysyłanie anulowane!" -#: templates/admin/filer/folder/directory_table_list.html:212 +#: templates/admin/filer/folder/directory_table_list.html:215 #: templates/admin/filer/folder/directory_thumbnail_list.html:190 msgid "previous" msgstr "poprzedni" -#: templates/admin/filer/folder/directory_table_list.html:217 +#: templates/admin/filer/folder/directory_table_list.html:220 #: templates/admin/filer/folder/directory_thumbnail_list.html:195 #, python-format msgid "Page %(number)s of %(num_pages)s." msgstr "Strona %(number)s z %(num_pages)s." -#: templates/admin/filer/folder/directory_table_list.html:222 +#: templates/admin/filer/folder/directory_table_list.html:225 #: templates/admin/filer/folder/directory_thumbnail_list.html:200 msgid "next" msgstr "następny" -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 #, python-format msgid "Select all %(total_count)s" @@ -1123,29 +1129,29 @@ msgstr "Nie udało się przesłać pliku" msgid "Download" msgstr "" -#: templates/admin/filer/tools/detail_info.html:15 +#: templates/admin/filer/tools/detail_info.html:16 msgid "Expand" msgstr "" -#: templates/admin/filer/tools/detail_info.html:20 +#: templates/admin/filer/tools/detail_info.html:21 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:108 msgid "File is missing" msgstr "" -#: templates/admin/filer/tools/detail_info.html:29 +#: templates/admin/filer/tools/detail_info.html:30 msgid "Type" msgstr "Typ" -#: templates/admin/filer/tools/detail_info.html:37 +#: templates/admin/filer/tools/detail_info.html:38 msgid "File-size" msgstr "Rozmiar pliku" -#: templates/admin/filer/tools/detail_info.html:41 +#: templates/admin/filer/tools/detail_info.html:42 msgid "Modified" msgstr "Modyfikowano" -#: templates/admin/filer/tools/detail_info.html:45 +#: templates/admin/filer/tools/detail_info.html:46 msgid "Created" msgstr "Utworzono" diff --git a/filer/locale/pt/LC_MESSAGES/django.po b/filer/locale/pt/LC_MESSAGES/django.po index 991e9a08f..78553fbd5 100644 --- a/filer/locale/pt/LC_MESSAGES/django.po +++ b/filer/locale/pt/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-26 08:46+0200\n" +"POT-Creation-Date: 2023-09-30 18:10+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Angelo Dini \n" "Language-Team: Portuguese (http://app.transifex.com/divio/django-filer/" @@ -220,23 +220,23 @@ msgstr "" msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/imageadmin.py:18 admin/imageadmin.py:105 +#: admin/imageadmin.py:20 admin/imageadmin.py:112 msgid "Subject location" msgstr "" -#: admin/imageadmin.py:19 +#: admin/imageadmin.py:21 msgid "Location of the main subject of the scene. Format: \"x,y\"." msgstr "" -#: admin/imageadmin.py:57 +#: admin/imageadmin.py:59 msgid "Invalid subject location format. " msgstr "" -#: admin/imageadmin.py:65 +#: admin/imageadmin.py:67 msgid "Subject location is outside of the image. " msgstr "" -#: admin/imageadmin.py:74 +#: admin/imageadmin.py:76 #, python-brace-format msgid "Your input: \"{subject_location}\". " msgstr "" @@ -283,7 +283,7 @@ msgstr "" msgid "images" msgstr "" -#: models/abstract.py:147 +#: models/abstract.py:148 #, python-format msgid "" "Image format not recognized or image size exceeds limit of %(max_pixels)d " @@ -537,7 +537,7 @@ msgstr "" #: models/virtualitems.py:46 #: templates/admin/filer/folder/directory_table_list.html:4 -#: templates/admin/filer/folder/directory_table_list.html:167 +#: templates/admin/filer/folder/directory_table_list.html:170 #: templates/admin/filer/folder/directory_thumbnail_list.html:5 #: templates/admin/filer/folder/directory_thumbnail_list.html:146 #: templates/admin/filer/tools/clipboard/clipboard.html:27 @@ -570,7 +570,7 @@ msgid "Go" msgstr "" #: templates/admin/filer/actions.html:14 -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 msgid "Click here to select the objects across all pages" msgstr "" @@ -581,7 +581,7 @@ msgid "Select all %(total_count)s files and/or folders" msgstr "" #: templates/admin/filer/actions.html:16 -#: templates/admin/filer/folder/directory_table_list.html:234 +#: templates/admin/filer/folder/directory_table_list.html:237 #: templates/admin/filer/folder/directory_thumbnail_list.html:212 msgid "Clear selection" msgstr "" @@ -677,7 +677,7 @@ msgstr "" #: templates/admin/filer/folder/directory_listing.html:103 #: templates/admin/filer/folder/directory_table_list.html:29 #: templates/admin/filer/folder/directory_table_list.html:59 -#: templates/admin/filer/folder/directory_table_list.html:178 +#: templates/admin/filer/folder/directory_table_list.html:181 #: templates/admin/filer/folder/directory_thumbnail_list.html:27 #: templates/admin/filer/folder/directory_thumbnail_list.html:61 #: templates/admin/filer/folder/directory_thumbnail_list.html:156 @@ -866,12 +866,12 @@ msgid "Name" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:17 -#: templates/admin/filer/tools/detail_info.html:49 +#: templates/admin/filer/tools/detail_info.html:50 msgid "Owner" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:18 -#: templates/admin/filer/tools/detail_info.html:33 +#: templates/admin/filer/tools/detail_info.html:34 msgid "Size" msgstr "" @@ -928,7 +928,7 @@ msgstr "" #: templates/admin/filer/folder/directory_table_list.html:107 #: templates/admin/filer/folder/directory_table_list.html:122 -#: templates/admin/filer/folder/directory_table_list.html:151 +#: templates/admin/filer/folder/directory_table_list.html:154 #: templates/admin/filer/folder/directory_thumbnail_list.html:107 #: templates/admin/filer/folder/directory_thumbnail_list.html:122 #, python-format @@ -951,66 +951,70 @@ msgid "enabled" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:144 +msgid "URL copied to clipboard" +msgstr "" + +#: templates/admin/filer/folder/directory_table_list.html:147 #, python-format msgid "Canonical url '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:148 +#: templates/admin/filer/folder/directory_table_list.html:151 #, python-format msgid "Download '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:152 +#: templates/admin/filer/folder/directory_table_list.html:155 msgid "Remove file" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:160 +#: templates/admin/filer/folder/directory_table_list.html:163 #: templates/admin/filer/folder/directory_thumbnail_list.html:138 msgid "Drop files here or use the \"Upload Files\" button" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:175 +#: templates/admin/filer/folder/directory_table_list.html:178 #: templates/admin/filer/folder/directory_thumbnail_list.html:153 msgid "Drop your file to upload into:" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:185 +#: templates/admin/filer/folder/directory_table_list.html:188 #: templates/admin/filer/folder/directory_thumbnail_list.html:163 msgid "Upload" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:197 +#: templates/admin/filer/folder/directory_table_list.html:200 #: templates/admin/filer/folder/directory_thumbnail_list.html:175 msgid "cancel" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:201 +#: templates/admin/filer/folder/directory_table_list.html:204 #: templates/admin/filer/folder/directory_thumbnail_list.html:179 msgid "Upload success!" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:205 +#: templates/admin/filer/folder/directory_table_list.html:208 #: templates/admin/filer/folder/directory_thumbnail_list.html:183 msgid "Upload canceled!" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:212 +#: templates/admin/filer/folder/directory_table_list.html:215 #: templates/admin/filer/folder/directory_thumbnail_list.html:190 msgid "previous" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:217 +#: templates/admin/filer/folder/directory_table_list.html:220 #: templates/admin/filer/folder/directory_thumbnail_list.html:195 #, python-format msgid "Page %(number)s of %(num_pages)s." msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:222 +#: templates/admin/filer/folder/directory_table_list.html:225 #: templates/admin/filer/folder/directory_thumbnail_list.html:200 msgid "next" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 #, python-format msgid "Select all %(total_count)s" @@ -1081,29 +1085,29 @@ msgstr "" msgid "Download" msgstr "" -#: templates/admin/filer/tools/detail_info.html:15 +#: templates/admin/filer/tools/detail_info.html:16 msgid "Expand" msgstr "" -#: templates/admin/filer/tools/detail_info.html:20 +#: templates/admin/filer/tools/detail_info.html:21 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:108 msgid "File is missing" msgstr "" -#: templates/admin/filer/tools/detail_info.html:29 +#: templates/admin/filer/tools/detail_info.html:30 msgid "Type" msgstr "" -#: templates/admin/filer/tools/detail_info.html:37 +#: templates/admin/filer/tools/detail_info.html:38 msgid "File-size" msgstr "" -#: templates/admin/filer/tools/detail_info.html:41 +#: templates/admin/filer/tools/detail_info.html:42 msgid "Modified" msgstr "" -#: templates/admin/filer/tools/detail_info.html:45 +#: templates/admin/filer/tools/detail_info.html:46 msgid "Created" msgstr "" diff --git a/filer/locale/pt_BR/LC_MESSAGES/django.po b/filer/locale/pt_BR/LC_MESSAGES/django.po index df9d27398..220c55c5c 100644 --- a/filer/locale/pt_BR/LC_MESSAGES/django.po +++ b/filer/locale/pt_BR/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-26 08:46+0200\n" +"POT-Creation-Date: 2023-09-30 18:10+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Julio Lucchese , 2018\n" "Language-Team: Portuguese (Brazil) (http://app.transifex.com/divio/django-" @@ -234,23 +234,23 @@ msgid "Thumbnail option or resize parameters must be choosen." msgstr "" "Escolher entre as opções de miniaturas ou parâmetros de redimensionamento." -#: admin/imageadmin.py:18 admin/imageadmin.py:105 +#: admin/imageadmin.py:20 admin/imageadmin.py:112 msgid "Subject location" msgstr "Local do assunto" -#: admin/imageadmin.py:19 +#: admin/imageadmin.py:21 msgid "Location of the main subject of the scene. Format: \"x,y\"." msgstr "Localização do tema principal da cena. Formato: \"x, y\"." -#: admin/imageadmin.py:57 +#: admin/imageadmin.py:59 msgid "Invalid subject location format. " msgstr "Formato de localização de assunto inválido." -#: admin/imageadmin.py:65 +#: admin/imageadmin.py:67 msgid "Subject location is outside of the image. " msgstr "A localização do assunto está fora da imagem." -#: admin/imageadmin.py:74 +#: admin/imageadmin.py:76 #, python-brace-format msgid "Your input: \"{subject_location}\". " msgstr "Sua entrada: \"{subject_location}\". " @@ -297,7 +297,7 @@ msgstr "imagem" msgid "images" msgstr "imagens" -#: models/abstract.py:147 +#: models/abstract.py:148 #, python-format msgid "" "Image format not recognized or image size exceeds limit of %(max_pixels)d " @@ -553,7 +553,7 @@ msgstr "opções de miniaturas" #: models/virtualitems.py:46 #: templates/admin/filer/folder/directory_table_list.html:4 -#: templates/admin/filer/folder/directory_table_list.html:167 +#: templates/admin/filer/folder/directory_table_list.html:170 #: templates/admin/filer/folder/directory_thumbnail_list.html:5 #: templates/admin/filer/folder/directory_thumbnail_list.html:146 #: templates/admin/filer/tools/clipboard/clipboard.html:27 @@ -586,7 +586,7 @@ msgid "Go" msgstr "Avançar" #: templates/admin/filer/actions.html:14 -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 msgid "Click here to select the objects across all pages" msgstr "Clique aqui para selecionar os objetos em todas as páginas" @@ -597,7 +597,7 @@ msgid "Select all %(total_count)s files and/or folders" msgstr "Selecionar todos os %(total_count)s arquivo(s) e/ou pasta(s)" #: templates/admin/filer/actions.html:16 -#: templates/admin/filer/folder/directory_table_list.html:234 +#: templates/admin/filer/folder/directory_table_list.html:237 #: templates/admin/filer/folder/directory_thumbnail_list.html:212 msgid "Clear selection" msgstr "Limpar a seleção" @@ -701,7 +701,7 @@ msgstr "página inicial de administração" #: templates/admin/filer/folder/directory_listing.html:103 #: templates/admin/filer/folder/directory_table_list.html:29 #: templates/admin/filer/folder/directory_table_list.html:59 -#: templates/admin/filer/folder/directory_table_list.html:178 +#: templates/admin/filer/folder/directory_table_list.html:181 #: templates/admin/filer/folder/directory_thumbnail_list.html:27 #: templates/admin/filer/folder/directory_thumbnail_list.html:61 #: templates/admin/filer/folder/directory_thumbnail_list.html:156 @@ -908,12 +908,12 @@ msgid "Name" msgstr "Nome" #: templates/admin/filer/folder/directory_table_list.html:17 -#: templates/admin/filer/tools/detail_info.html:49 +#: templates/admin/filer/tools/detail_info.html:50 msgid "Owner" msgstr "Proprietário" #: templates/admin/filer/folder/directory_table_list.html:18 -#: templates/admin/filer/tools/detail_info.html:33 +#: templates/admin/filer/tools/detail_info.html:34 msgid "Size" msgstr "Tamanho" @@ -970,7 +970,7 @@ msgstr "Selecionar este arquivo" #: templates/admin/filer/folder/directory_table_list.html:107 #: templates/admin/filer/folder/directory_table_list.html:122 -#: templates/admin/filer/folder/directory_table_list.html:151 +#: templates/admin/filer/folder/directory_table_list.html:154 #: templates/admin/filer/folder/directory_thumbnail_list.html:107 #: templates/admin/filer/folder/directory_thumbnail_list.html:122 #, python-format @@ -993,66 +993,72 @@ msgid "enabled" msgstr "habilitado" #: templates/admin/filer/folder/directory_table_list.html:144 +#, fuzzy +#| msgid "Move selected files to clipboard" +msgid "URL copied to clipboard" +msgstr "Mover os arquivos selecionados para a área de transferência" + +#: templates/admin/filer/folder/directory_table_list.html:147 #, python-format msgid "Canonical url '%(item_label)s'" msgstr "URL Canônico '%(item_label)s'" -#: templates/admin/filer/folder/directory_table_list.html:148 +#: templates/admin/filer/folder/directory_table_list.html:151 #, python-format msgid "Download '%(item_label)s'" msgstr "Baixar '%(item_label)s'" -#: templates/admin/filer/folder/directory_table_list.html:152 +#: templates/admin/filer/folder/directory_table_list.html:155 msgid "Remove file" msgstr "Remover arquivo" -#: templates/admin/filer/folder/directory_table_list.html:160 +#: templates/admin/filer/folder/directory_table_list.html:163 #: templates/admin/filer/folder/directory_thumbnail_list.html:138 msgid "Drop files here or use the \"Upload Files\" button" msgstr "Arraste os arquivos aqui ou use o botão \"Enviar arquivos\"" -#: templates/admin/filer/folder/directory_table_list.html:175 +#: templates/admin/filer/folder/directory_table_list.html:178 #: templates/admin/filer/folder/directory_thumbnail_list.html:153 msgid "Drop your file to upload into:" msgstr "Arraste seu arquivo para enviar em:" -#: templates/admin/filer/folder/directory_table_list.html:185 +#: templates/admin/filer/folder/directory_table_list.html:188 #: templates/admin/filer/folder/directory_thumbnail_list.html:163 msgid "Upload" msgstr "Upload" -#: templates/admin/filer/folder/directory_table_list.html:197 +#: templates/admin/filer/folder/directory_table_list.html:200 #: templates/admin/filer/folder/directory_thumbnail_list.html:175 msgid "cancel" msgstr "Cancelar" -#: templates/admin/filer/folder/directory_table_list.html:201 +#: templates/admin/filer/folder/directory_table_list.html:204 #: templates/admin/filer/folder/directory_thumbnail_list.html:179 msgid "Upload success!" msgstr "Envio realizado com sucesso!" -#: templates/admin/filer/folder/directory_table_list.html:205 +#: templates/admin/filer/folder/directory_table_list.html:208 #: templates/admin/filer/folder/directory_thumbnail_list.html:183 msgid "Upload canceled!" msgstr "Envio cancelado!" -#: templates/admin/filer/folder/directory_table_list.html:212 +#: templates/admin/filer/folder/directory_table_list.html:215 #: templates/admin/filer/folder/directory_thumbnail_list.html:190 msgid "previous" msgstr "anterior" -#: templates/admin/filer/folder/directory_table_list.html:217 +#: templates/admin/filer/folder/directory_table_list.html:220 #: templates/admin/filer/folder/directory_thumbnail_list.html:195 #, python-format msgid "Page %(number)s of %(num_pages)s." msgstr "Página %(number)s de %(num_pages)s." -#: templates/admin/filer/folder/directory_table_list.html:222 +#: templates/admin/filer/folder/directory_table_list.html:225 #: templates/admin/filer/folder/directory_thumbnail_list.html:200 msgid "next" msgstr "próximo" -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 #, python-format msgid "Select all %(total_count)s" @@ -1123,29 +1129,29 @@ msgstr "Falha no upload" msgid "Download" msgstr "" -#: templates/admin/filer/tools/detail_info.html:15 +#: templates/admin/filer/tools/detail_info.html:16 msgid "Expand" msgstr "" -#: templates/admin/filer/tools/detail_info.html:20 +#: templates/admin/filer/tools/detail_info.html:21 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:108 msgid "File is missing" msgstr "" -#: templates/admin/filer/tools/detail_info.html:29 +#: templates/admin/filer/tools/detail_info.html:30 msgid "Type" msgstr "Tipo" -#: templates/admin/filer/tools/detail_info.html:37 +#: templates/admin/filer/tools/detail_info.html:38 msgid "File-size" msgstr "Tamanho do arquivo" -#: templates/admin/filer/tools/detail_info.html:41 +#: templates/admin/filer/tools/detail_info.html:42 msgid "Modified" msgstr "Modificado" -#: templates/admin/filer/tools/detail_info.html:45 +#: templates/admin/filer/tools/detail_info.html:46 msgid "Created" msgstr "Criado" diff --git a/filer/locale/ru/LC_MESSAGES/django.po b/filer/locale/ru/LC_MESSAGES/django.po index 9caee4289..89f63fdbb 100644 --- a/filer/locale/ru/LC_MESSAGES/django.po +++ b/filer/locale/ru/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-26 08:46+0200\n" +"POT-Creation-Date: 2023-09-30 18:10+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Alexander Naydenko , 2020\n" "Language-Team: Russian (http://app.transifex.com/divio/django-filer/language/" @@ -231,23 +231,23 @@ msgstr "увеличивать" msgid "Thumbnail option or resize parameters must be choosen." msgstr "Опция миниатюры или параметры изменения размера должны быть указаны." -#: admin/imageadmin.py:18 admin/imageadmin.py:105 +#: admin/imageadmin.py:20 admin/imageadmin.py:112 msgid "Subject location" msgstr "Расположение объекта" -#: admin/imageadmin.py:19 +#: admin/imageadmin.py:21 msgid "Location of the main subject of the scene. Format: \"x,y\"." msgstr "Расположение главного объекта сцены. Формат: \"x,y\"." -#: admin/imageadmin.py:57 +#: admin/imageadmin.py:59 msgid "Invalid subject location format. " msgstr "Неверный формат расположения объекта." -#: admin/imageadmin.py:65 +#: admin/imageadmin.py:67 msgid "Subject location is outside of the image. " msgstr "Расположение объекта указано за пределами изображения." -#: admin/imageadmin.py:74 +#: admin/imageadmin.py:76 #, python-brace-format msgid "Your input: \"{subject_location}\". " msgstr "Вы ввели: \"{subject_location}\". " @@ -294,7 +294,7 @@ msgstr "изображение" msgid "images" msgstr "изображения" -#: models/abstract.py:147 +#: models/abstract.py:148 #, python-format msgid "" "Image format not recognized or image size exceeds limit of %(max_pixels)d " @@ -550,7 +550,7 @@ msgstr "опции миниатюры" #: models/virtualitems.py:46 #: templates/admin/filer/folder/directory_table_list.html:4 -#: templates/admin/filer/folder/directory_table_list.html:167 +#: templates/admin/filer/folder/directory_table_list.html:170 #: templates/admin/filer/folder/directory_thumbnail_list.html:5 #: templates/admin/filer/folder/directory_thumbnail_list.html:146 #: templates/admin/filer/tools/clipboard/clipboard.html:27 @@ -583,7 +583,7 @@ msgid "Go" msgstr "Выполнить" #: templates/admin/filer/actions.html:14 -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 msgid "Click here to select the objects across all pages" msgstr "Нажмите здесь, чтобы выбрать объекты на всех страницах" @@ -594,7 +594,7 @@ msgid "Select all %(total_count)s files and/or folders" msgstr "Выбрать все %(total_count)s файлов/папок" #: templates/admin/filer/actions.html:16 -#: templates/admin/filer/folder/directory_table_list.html:234 +#: templates/admin/filer/folder/directory_table_list.html:237 #: templates/admin/filer/folder/directory_thumbnail_list.html:212 msgid "Clear selection" msgstr "Очистить выбор" @@ -696,7 +696,7 @@ msgstr "главная страница администрирования" #: templates/admin/filer/folder/directory_listing.html:103 #: templates/admin/filer/folder/directory_table_list.html:29 #: templates/admin/filer/folder/directory_table_list.html:59 -#: templates/admin/filer/folder/directory_table_list.html:178 +#: templates/admin/filer/folder/directory_table_list.html:181 #: templates/admin/filer/folder/directory_thumbnail_list.html:27 #: templates/admin/filer/folder/directory_thumbnail_list.html:61 #: templates/admin/filer/folder/directory_thumbnail_list.html:156 @@ -893,12 +893,12 @@ msgid "Name" msgstr "Имя" #: templates/admin/filer/folder/directory_table_list.html:17 -#: templates/admin/filer/tools/detail_info.html:49 +#: templates/admin/filer/tools/detail_info.html:50 msgid "Owner" msgstr "Владелец" #: templates/admin/filer/folder/directory_table_list.html:18 -#: templates/admin/filer/tools/detail_info.html:33 +#: templates/admin/filer/tools/detail_info.html:34 msgid "Size" msgstr "Размер" @@ -957,7 +957,7 @@ msgstr "Выбрать этот файл" #: templates/admin/filer/folder/directory_table_list.html:107 #: templates/admin/filer/folder/directory_table_list.html:122 -#: templates/admin/filer/folder/directory_table_list.html:151 +#: templates/admin/filer/folder/directory_table_list.html:154 #: templates/admin/filer/folder/directory_thumbnail_list.html:107 #: templates/admin/filer/folder/directory_thumbnail_list.html:122 #, python-format @@ -980,66 +980,72 @@ msgid "enabled" msgstr "включены" #: templates/admin/filer/folder/directory_table_list.html:144 +#, fuzzy +#| msgid "Move selected files to clipboard" +msgid "URL copied to clipboard" +msgstr "Переместить выбранные файлы в буфер обмена" + +#: templates/admin/filer/folder/directory_table_list.html:147 #, python-format msgid "Canonical url '%(item_label)s'" msgstr "Канонический URL '%(item_label)s'" -#: templates/admin/filer/folder/directory_table_list.html:148 +#: templates/admin/filer/folder/directory_table_list.html:151 #, python-format msgid "Download '%(item_label)s'" msgstr "Скачать '%(item_label)s'" -#: templates/admin/filer/folder/directory_table_list.html:152 +#: templates/admin/filer/folder/directory_table_list.html:155 msgid "Remove file" msgstr "Удалить файл" -#: templates/admin/filer/folder/directory_table_list.html:160 +#: templates/admin/filer/folder/directory_table_list.html:163 #: templates/admin/filer/folder/directory_thumbnail_list.html:138 msgid "Drop files here or use the \"Upload Files\" button" msgstr "\"Скиньте\" сюда файлы или используйте кнопку \"Загрузить файлы\"" -#: templates/admin/filer/folder/directory_table_list.html:175 +#: templates/admin/filer/folder/directory_table_list.html:178 #: templates/admin/filer/folder/directory_thumbnail_list.html:153 msgid "Drop your file to upload into:" msgstr "\"Скиньте\" ваши файлы сюда для загрузки в:" -#: templates/admin/filer/folder/directory_table_list.html:185 +#: templates/admin/filer/folder/directory_table_list.html:188 #: templates/admin/filer/folder/directory_thumbnail_list.html:163 msgid "Upload" msgstr "Загрузить" -#: templates/admin/filer/folder/directory_table_list.html:197 +#: templates/admin/filer/folder/directory_table_list.html:200 #: templates/admin/filer/folder/directory_thumbnail_list.html:175 msgid "cancel" msgstr "отмена" -#: templates/admin/filer/folder/directory_table_list.html:201 +#: templates/admin/filer/folder/directory_table_list.html:204 #: templates/admin/filer/folder/directory_thumbnail_list.html:179 msgid "Upload success!" msgstr "Загрузка успешно завершена!" -#: templates/admin/filer/folder/directory_table_list.html:205 +#: templates/admin/filer/folder/directory_table_list.html:208 #: templates/admin/filer/folder/directory_thumbnail_list.html:183 msgid "Upload canceled!" msgstr "Загрузка отменена!" -#: templates/admin/filer/folder/directory_table_list.html:212 +#: templates/admin/filer/folder/directory_table_list.html:215 #: templates/admin/filer/folder/directory_thumbnail_list.html:190 msgid "previous" msgstr "предыдущая" -#: templates/admin/filer/folder/directory_table_list.html:217 +#: templates/admin/filer/folder/directory_table_list.html:220 #: templates/admin/filer/folder/directory_thumbnail_list.html:195 #, python-format msgid "Page %(number)s of %(num_pages)s." msgstr "Страница %(number)s из %(num_pages)s." -#: templates/admin/filer/folder/directory_table_list.html:222 +#: templates/admin/filer/folder/directory_table_list.html:225 #: templates/admin/filer/folder/directory_thumbnail_list.html:200 msgid "next" msgstr "следующая" -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 #, python-format msgid "Select all %(total_count)s" @@ -1111,29 +1117,29 @@ msgstr "загрузка не удалась" msgid "Download" msgstr "" -#: templates/admin/filer/tools/detail_info.html:15 +#: templates/admin/filer/tools/detail_info.html:16 msgid "Expand" msgstr "" -#: templates/admin/filer/tools/detail_info.html:20 +#: templates/admin/filer/tools/detail_info.html:21 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:108 msgid "File is missing" msgstr "" -#: templates/admin/filer/tools/detail_info.html:29 +#: templates/admin/filer/tools/detail_info.html:30 msgid "Type" msgstr "Тип" -#: templates/admin/filer/tools/detail_info.html:37 +#: templates/admin/filer/tools/detail_info.html:38 msgid "File-size" msgstr "Размер файла" -#: templates/admin/filer/tools/detail_info.html:41 +#: templates/admin/filer/tools/detail_info.html:42 msgid "Modified" msgstr "Изменен" -#: templates/admin/filer/tools/detail_info.html:45 +#: templates/admin/filer/tools/detail_info.html:46 msgid "Created" msgstr "Создан" diff --git a/filer/locale/sk/LC_MESSAGES/django.po b/filer/locale/sk/LC_MESSAGES/django.po index 8f3381da1..5edca14bd 100644 --- a/filer/locale/sk/LC_MESSAGES/django.po +++ b/filer/locale/sk/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-26 08:46+0200\n" +"POT-Creation-Date: 2023-09-30 18:10+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Angelo Dini \n" "Language-Team: Slovak (http://app.transifex.com/divio/django-filer/language/" @@ -221,23 +221,23 @@ msgstr "" msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/imageadmin.py:18 admin/imageadmin.py:105 +#: admin/imageadmin.py:20 admin/imageadmin.py:112 msgid "Subject location" msgstr "" -#: admin/imageadmin.py:19 +#: admin/imageadmin.py:21 msgid "Location of the main subject of the scene. Format: \"x,y\"." msgstr "" -#: admin/imageadmin.py:57 +#: admin/imageadmin.py:59 msgid "Invalid subject location format. " msgstr "" -#: admin/imageadmin.py:65 +#: admin/imageadmin.py:67 msgid "Subject location is outside of the image. " msgstr "" -#: admin/imageadmin.py:74 +#: admin/imageadmin.py:76 #, python-brace-format msgid "Your input: \"{subject_location}\". " msgstr "" @@ -284,7 +284,7 @@ msgstr "" msgid "images" msgstr "" -#: models/abstract.py:147 +#: models/abstract.py:148 #, python-format msgid "" "Image format not recognized or image size exceeds limit of %(max_pixels)d " @@ -538,7 +538,7 @@ msgstr "" #: models/virtualitems.py:46 #: templates/admin/filer/folder/directory_table_list.html:4 -#: templates/admin/filer/folder/directory_table_list.html:167 +#: templates/admin/filer/folder/directory_table_list.html:170 #: templates/admin/filer/folder/directory_thumbnail_list.html:5 #: templates/admin/filer/folder/directory_thumbnail_list.html:146 #: templates/admin/filer/tools/clipboard/clipboard.html:27 @@ -571,7 +571,7 @@ msgid "Go" msgstr "" #: templates/admin/filer/actions.html:14 -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 msgid "Click here to select the objects across all pages" msgstr "" @@ -582,7 +582,7 @@ msgid "Select all %(total_count)s files and/or folders" msgstr "" #: templates/admin/filer/actions.html:16 -#: templates/admin/filer/folder/directory_table_list.html:234 +#: templates/admin/filer/folder/directory_table_list.html:237 #: templates/admin/filer/folder/directory_thumbnail_list.html:212 msgid "Clear selection" msgstr "" @@ -678,7 +678,7 @@ msgstr "" #: templates/admin/filer/folder/directory_listing.html:103 #: templates/admin/filer/folder/directory_table_list.html:29 #: templates/admin/filer/folder/directory_table_list.html:59 -#: templates/admin/filer/folder/directory_table_list.html:178 +#: templates/admin/filer/folder/directory_table_list.html:181 #: templates/admin/filer/folder/directory_thumbnail_list.html:27 #: templates/admin/filer/folder/directory_thumbnail_list.html:61 #: templates/admin/filer/folder/directory_thumbnail_list.html:156 @@ -867,12 +867,12 @@ msgid "Name" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:17 -#: templates/admin/filer/tools/detail_info.html:49 +#: templates/admin/filer/tools/detail_info.html:50 msgid "Owner" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:18 -#: templates/admin/filer/tools/detail_info.html:33 +#: templates/admin/filer/tools/detail_info.html:34 msgid "Size" msgstr "" @@ -931,7 +931,7 @@ msgstr "" #: templates/admin/filer/folder/directory_table_list.html:107 #: templates/admin/filer/folder/directory_table_list.html:122 -#: templates/admin/filer/folder/directory_table_list.html:151 +#: templates/admin/filer/folder/directory_table_list.html:154 #: templates/admin/filer/folder/directory_thumbnail_list.html:107 #: templates/admin/filer/folder/directory_thumbnail_list.html:122 #, python-format @@ -954,66 +954,70 @@ msgid "enabled" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:144 +msgid "URL copied to clipboard" +msgstr "" + +#: templates/admin/filer/folder/directory_table_list.html:147 #, python-format msgid "Canonical url '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:148 +#: templates/admin/filer/folder/directory_table_list.html:151 #, python-format msgid "Download '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:152 +#: templates/admin/filer/folder/directory_table_list.html:155 msgid "Remove file" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:160 +#: templates/admin/filer/folder/directory_table_list.html:163 #: templates/admin/filer/folder/directory_thumbnail_list.html:138 msgid "Drop files here or use the \"Upload Files\" button" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:175 +#: templates/admin/filer/folder/directory_table_list.html:178 #: templates/admin/filer/folder/directory_thumbnail_list.html:153 msgid "Drop your file to upload into:" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:185 +#: templates/admin/filer/folder/directory_table_list.html:188 #: templates/admin/filer/folder/directory_thumbnail_list.html:163 msgid "Upload" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:197 +#: templates/admin/filer/folder/directory_table_list.html:200 #: templates/admin/filer/folder/directory_thumbnail_list.html:175 msgid "cancel" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:201 +#: templates/admin/filer/folder/directory_table_list.html:204 #: templates/admin/filer/folder/directory_thumbnail_list.html:179 msgid "Upload success!" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:205 +#: templates/admin/filer/folder/directory_table_list.html:208 #: templates/admin/filer/folder/directory_thumbnail_list.html:183 msgid "Upload canceled!" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:212 +#: templates/admin/filer/folder/directory_table_list.html:215 #: templates/admin/filer/folder/directory_thumbnail_list.html:190 msgid "previous" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:217 +#: templates/admin/filer/folder/directory_table_list.html:220 #: templates/admin/filer/folder/directory_thumbnail_list.html:195 #, python-format msgid "Page %(number)s of %(num_pages)s." msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:222 +#: templates/admin/filer/folder/directory_table_list.html:225 #: templates/admin/filer/folder/directory_thumbnail_list.html:200 msgid "next" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 #, python-format msgid "Select all %(total_count)s" @@ -1085,29 +1089,29 @@ msgstr "" msgid "Download" msgstr "" -#: templates/admin/filer/tools/detail_info.html:15 +#: templates/admin/filer/tools/detail_info.html:16 msgid "Expand" msgstr "" -#: templates/admin/filer/tools/detail_info.html:20 +#: templates/admin/filer/tools/detail_info.html:21 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:108 msgid "File is missing" msgstr "" -#: templates/admin/filer/tools/detail_info.html:29 +#: templates/admin/filer/tools/detail_info.html:30 msgid "Type" msgstr "" -#: templates/admin/filer/tools/detail_info.html:37 +#: templates/admin/filer/tools/detail_info.html:38 msgid "File-size" msgstr "" -#: templates/admin/filer/tools/detail_info.html:41 +#: templates/admin/filer/tools/detail_info.html:42 msgid "Modified" msgstr "" -#: templates/admin/filer/tools/detail_info.html:45 +#: templates/admin/filer/tools/detail_info.html:46 msgid "Created" msgstr "" diff --git a/filer/locale/tr/LC_MESSAGES/django.po b/filer/locale/tr/LC_MESSAGES/django.po index 5fd8ce5a1..2437c3922 100644 --- a/filer/locale/tr/LC_MESSAGES/django.po +++ b/filer/locale/tr/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-26 08:46+0200\n" +"POT-Creation-Date: 2023-09-30 18:10+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Cihad GÜNDOĞDU , 2013,2015-2016\n" "Language-Team: Turkish (http://app.transifex.com/divio/django-filer/language/" @@ -222,23 +222,23 @@ msgstr "" msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/imageadmin.py:18 admin/imageadmin.py:105 +#: admin/imageadmin.py:20 admin/imageadmin.py:112 msgid "Subject location" msgstr "" -#: admin/imageadmin.py:19 +#: admin/imageadmin.py:21 msgid "Location of the main subject of the scene. Format: \"x,y\"." msgstr "" -#: admin/imageadmin.py:57 +#: admin/imageadmin.py:59 msgid "Invalid subject location format. " msgstr "" -#: admin/imageadmin.py:65 +#: admin/imageadmin.py:67 msgid "Subject location is outside of the image. " msgstr "" -#: admin/imageadmin.py:74 +#: admin/imageadmin.py:76 #, python-brace-format msgid "Your input: \"{subject_location}\". " msgstr "" @@ -285,7 +285,7 @@ msgstr "" msgid "images" msgstr "" -#: models/abstract.py:147 +#: models/abstract.py:148 #, python-format msgid "" "Image format not recognized or image size exceeds limit of %(max_pixels)d " @@ -539,7 +539,7 @@ msgstr "" #: models/virtualitems.py:46 #: templates/admin/filer/folder/directory_table_list.html:4 -#: templates/admin/filer/folder/directory_table_list.html:167 +#: templates/admin/filer/folder/directory_table_list.html:170 #: templates/admin/filer/folder/directory_thumbnail_list.html:5 #: templates/admin/filer/folder/directory_thumbnail_list.html:146 #: templates/admin/filer/tools/clipboard/clipboard.html:27 @@ -572,7 +572,7 @@ msgid "Go" msgstr "Git" #: templates/admin/filer/actions.html:14 -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 msgid "Click here to select the objects across all pages" msgstr "" @@ -583,7 +583,7 @@ msgid "Select all %(total_count)s files and/or folders" msgstr "" #: templates/admin/filer/actions.html:16 -#: templates/admin/filer/folder/directory_table_list.html:234 +#: templates/admin/filer/folder/directory_table_list.html:237 #: templates/admin/filer/folder/directory_thumbnail_list.html:212 msgid "Clear selection" msgstr "" @@ -679,7 +679,7 @@ msgstr "" #: templates/admin/filer/folder/directory_listing.html:103 #: templates/admin/filer/folder/directory_table_list.html:29 #: templates/admin/filer/folder/directory_table_list.html:59 -#: templates/admin/filer/folder/directory_table_list.html:178 +#: templates/admin/filer/folder/directory_table_list.html:181 #: templates/admin/filer/folder/directory_thumbnail_list.html:27 #: templates/admin/filer/folder/directory_thumbnail_list.html:61 #: templates/admin/filer/folder/directory_thumbnail_list.html:156 @@ -868,12 +868,12 @@ msgid "Name" msgstr "İsim" #: templates/admin/filer/folder/directory_table_list.html:17 -#: templates/admin/filer/tools/detail_info.html:49 +#: templates/admin/filer/tools/detail_info.html:50 msgid "Owner" msgstr "Sahip" #: templates/admin/filer/folder/directory_table_list.html:18 -#: templates/admin/filer/tools/detail_info.html:33 +#: templates/admin/filer/tools/detail_info.html:34 msgid "Size" msgstr "Boyut" @@ -928,7 +928,7 @@ msgstr "Bu dosyayı seç" #: templates/admin/filer/folder/directory_table_list.html:107 #: templates/admin/filer/folder/directory_table_list.html:122 -#: templates/admin/filer/folder/directory_table_list.html:151 +#: templates/admin/filer/folder/directory_table_list.html:154 #: templates/admin/filer/folder/directory_thumbnail_list.html:107 #: templates/admin/filer/folder/directory_thumbnail_list.html:122 #, python-format @@ -951,66 +951,72 @@ msgid "enabled" msgstr "aktif" #: templates/admin/filer/folder/directory_table_list.html:144 +#, fuzzy +#| msgid "Move selected files to clipboard" +msgid "URL copied to clipboard" +msgstr "Seçili dosyalar ara belleğe alındı" + +#: templates/admin/filer/folder/directory_table_list.html:147 #, python-format msgid "Canonical url '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:148 +#: templates/admin/filer/folder/directory_table_list.html:151 #, python-format msgid "Download '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:152 +#: templates/admin/filer/folder/directory_table_list.html:155 msgid "Remove file" msgstr "Dosyayı kaldır" -#: templates/admin/filer/folder/directory_table_list.html:160 +#: templates/admin/filer/folder/directory_table_list.html:163 #: templates/admin/filer/folder/directory_thumbnail_list.html:138 msgid "Drop files here or use the \"Upload Files\" button" msgstr "Buraya dosya yüklemek için \"Dosyaları Yükle\" düğmesine tıklayın" -#: templates/admin/filer/folder/directory_table_list.html:175 +#: templates/admin/filer/folder/directory_table_list.html:178 #: templates/admin/filer/folder/directory_thumbnail_list.html:153 msgid "Drop your file to upload into:" msgstr "Yüklenecek dosyayı buraya bırakın" -#: templates/admin/filer/folder/directory_table_list.html:185 +#: templates/admin/filer/folder/directory_table_list.html:188 #: templates/admin/filer/folder/directory_thumbnail_list.html:163 msgid "Upload" msgstr "Yükle" -#: templates/admin/filer/folder/directory_table_list.html:197 +#: templates/admin/filer/folder/directory_table_list.html:200 #: templates/admin/filer/folder/directory_thumbnail_list.html:175 msgid "cancel" msgstr "iptal" -#: templates/admin/filer/folder/directory_table_list.html:201 +#: templates/admin/filer/folder/directory_table_list.html:204 #: templates/admin/filer/folder/directory_thumbnail_list.html:179 msgid "Upload success!" msgstr "Yükleme Başarılı" -#: templates/admin/filer/folder/directory_table_list.html:205 +#: templates/admin/filer/folder/directory_table_list.html:208 #: templates/admin/filer/folder/directory_thumbnail_list.html:183 msgid "Upload canceled!" msgstr "Yükleme iptal!" -#: templates/admin/filer/folder/directory_table_list.html:212 +#: templates/admin/filer/folder/directory_table_list.html:215 #: templates/admin/filer/folder/directory_thumbnail_list.html:190 msgid "previous" msgstr "önceki" -#: templates/admin/filer/folder/directory_table_list.html:217 +#: templates/admin/filer/folder/directory_table_list.html:220 #: templates/admin/filer/folder/directory_thumbnail_list.html:195 #, python-format msgid "Page %(number)s of %(num_pages)s." msgstr "Sayfa %(number)s / %(num_pages)s." -#: templates/admin/filer/folder/directory_table_list.html:222 +#: templates/admin/filer/folder/directory_table_list.html:225 #: templates/admin/filer/folder/directory_thumbnail_list.html:200 msgid "next" msgstr "sonraki" -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 #, python-format msgid "Select all %(total_count)s" @@ -1080,29 +1086,29 @@ msgstr "Yükleme başarısız" msgid "Download" msgstr "" -#: templates/admin/filer/tools/detail_info.html:15 +#: templates/admin/filer/tools/detail_info.html:16 msgid "Expand" msgstr "" -#: templates/admin/filer/tools/detail_info.html:20 +#: templates/admin/filer/tools/detail_info.html:21 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:108 msgid "File is missing" msgstr "" -#: templates/admin/filer/tools/detail_info.html:29 +#: templates/admin/filer/tools/detail_info.html:30 msgid "Type" msgstr "Tip" -#: templates/admin/filer/tools/detail_info.html:37 +#: templates/admin/filer/tools/detail_info.html:38 msgid "File-size" msgstr "Dosya-Boyut" -#: templates/admin/filer/tools/detail_info.html:41 +#: templates/admin/filer/tools/detail_info.html:42 msgid "Modified" msgstr "Düzenlendi" -#: templates/admin/filer/tools/detail_info.html:45 +#: templates/admin/filer/tools/detail_info.html:46 msgid "Created" msgstr "Oluşturuldu" diff --git a/filer/locale/vi_VN/LC_MESSAGES/django.po b/filer/locale/vi_VN/LC_MESSAGES/django.po index 9f125dd44..24ac1a3a7 100644 --- a/filer/locale/vi_VN/LC_MESSAGES/django.po +++ b/filer/locale/vi_VN/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-26 08:46+0200\n" +"POT-Creation-Date: 2023-09-30 18:10+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Duong Vu Hong , 2021\n" "Language-Team: Vietnamese (Viet Nam) (http://app.transifex.com/divio/django-" @@ -225,23 +225,23 @@ msgstr "cao cấp" msgid "Thumbnail option or resize parameters must be choosen." msgstr "Tùy chọn thumbnail hoặc tham số thay đổi kích thước phải được chọn." -#: admin/imageadmin.py:18 admin/imageadmin.py:105 +#: admin/imageadmin.py:20 admin/imageadmin.py:112 msgid "Subject location" msgstr "Vị trí chủ đề" -#: admin/imageadmin.py:19 +#: admin/imageadmin.py:21 msgid "Location of the main subject of the scene. Format: \"x,y\"." msgstr "Vị trí của chủ đề chính của của quang cảnh. Định dạng: \"x,y\"." -#: admin/imageadmin.py:57 +#: admin/imageadmin.py:59 msgid "Invalid subject location format. " msgstr "Định dạng vị trí chủ đề không hợp lệ." -#: admin/imageadmin.py:65 +#: admin/imageadmin.py:67 msgid "Subject location is outside of the image. " msgstr "Vị trí chủ đề ở bên ngoài hình ảnh." -#: admin/imageadmin.py:74 +#: admin/imageadmin.py:76 #, python-brace-format msgid "Your input: \"{subject_location}\". " msgstr "Đầu vào của bạn: \"{subject_location}\"." @@ -288,7 +288,7 @@ msgstr "hình ảnh" msgid "images" msgstr "những hình ảnh" -#: models/abstract.py:147 +#: models/abstract.py:148 #, python-format msgid "" "Image format not recognized or image size exceeds limit of %(max_pixels)d " @@ -544,7 +544,7 @@ msgstr "những tùy chọn thumbnail" #: models/virtualitems.py:46 #: templates/admin/filer/folder/directory_table_list.html:4 -#: templates/admin/filer/folder/directory_table_list.html:167 +#: templates/admin/filer/folder/directory_table_list.html:170 #: templates/admin/filer/folder/directory_thumbnail_list.html:5 #: templates/admin/filer/folder/directory_thumbnail_list.html:146 #: templates/admin/filer/tools/clipboard/clipboard.html:27 @@ -577,7 +577,7 @@ msgid "Go" msgstr "Đi" #: templates/admin/filer/actions.html:14 -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 msgid "Click here to select the objects across all pages" msgstr "Bấn ở đây để chọn những đối tượng xuyên suốt tất cả các trang" @@ -588,7 +588,7 @@ msgid "Select all %(total_count)s files and/or folders" msgstr "Chọn tất cả %(total_count)s tệp và/hoặc thư mục" #: templates/admin/filer/actions.html:16 -#: templates/admin/filer/folder/directory_table_list.html:234 +#: templates/admin/filer/folder/directory_table_list.html:237 #: templates/admin/filer/folder/directory_thumbnail_list.html:212 msgid "Clear selection" msgstr "Xóa chọn" @@ -690,7 +690,7 @@ msgstr "trang chủ người quản trị" #: templates/admin/filer/folder/directory_listing.html:103 #: templates/admin/filer/folder/directory_table_list.html:29 #: templates/admin/filer/folder/directory_table_list.html:59 -#: templates/admin/filer/folder/directory_table_list.html:178 +#: templates/admin/filer/folder/directory_table_list.html:181 #: templates/admin/filer/folder/directory_thumbnail_list.html:27 #: templates/admin/filer/folder/directory_thumbnail_list.html:61 #: templates/admin/filer/folder/directory_thumbnail_list.html:156 @@ -894,12 +894,12 @@ msgid "Name" msgstr "Tên" #: templates/admin/filer/folder/directory_table_list.html:17 -#: templates/admin/filer/tools/detail_info.html:49 +#: templates/admin/filer/tools/detail_info.html:50 msgid "Owner" msgstr "Người sở hữu" #: templates/admin/filer/folder/directory_table_list.html:18 -#: templates/admin/filer/tools/detail_info.html:33 +#: templates/admin/filer/tools/detail_info.html:34 msgid "Size" msgstr "Kích thước" @@ -952,7 +952,7 @@ msgstr "Chọn tệp này" #: templates/admin/filer/folder/directory_table_list.html:107 #: templates/admin/filer/folder/directory_table_list.html:122 -#: templates/admin/filer/folder/directory_table_list.html:151 +#: templates/admin/filer/folder/directory_table_list.html:154 #: templates/admin/filer/folder/directory_thumbnail_list.html:107 #: templates/admin/filer/folder/directory_thumbnail_list.html:122 #, python-format @@ -975,66 +975,72 @@ msgid "enabled" msgstr "đã kích hoạt" #: templates/admin/filer/folder/directory_table_list.html:144 +#, fuzzy +#| msgid "Move selected files to clipboard" +msgid "URL copied to clipboard" +msgstr "Di chuyển tệp đã chọn vào bảng tạm" + +#: templates/admin/filer/folder/directory_table_list.html:147 #, python-format msgid "Canonical url '%(item_label)s'" msgstr "Url hợp chuẩn '%(item_label)s'" -#: templates/admin/filer/folder/directory_table_list.html:148 +#: templates/admin/filer/folder/directory_table_list.html:151 #, python-format msgid "Download '%(item_label)s'" msgstr "Tải '%(item_label)s'" -#: templates/admin/filer/folder/directory_table_list.html:152 +#: templates/admin/filer/folder/directory_table_list.html:155 msgid "Remove file" msgstr "Xóa tệp" -#: templates/admin/filer/folder/directory_table_list.html:160 +#: templates/admin/filer/folder/directory_table_list.html:163 #: templates/admin/filer/folder/directory_thumbnail_list.html:138 msgid "Drop files here or use the \"Upload Files\" button" msgstr "Thả tệp ở đây hoặc sử dụng nút \"Tải tệp lên\"" -#: templates/admin/filer/folder/directory_table_list.html:175 +#: templates/admin/filer/folder/directory_table_list.html:178 #: templates/admin/filer/folder/directory_thumbnail_list.html:153 msgid "Drop your file to upload into:" msgstr "Thả tệp của bạn để tải lên:" -#: templates/admin/filer/folder/directory_table_list.html:185 +#: templates/admin/filer/folder/directory_table_list.html:188 #: templates/admin/filer/folder/directory_thumbnail_list.html:163 msgid "Upload" msgstr "Tải lên" -#: templates/admin/filer/folder/directory_table_list.html:197 +#: templates/admin/filer/folder/directory_table_list.html:200 #: templates/admin/filer/folder/directory_thumbnail_list.html:175 msgid "cancel" msgstr "hủy bỏ" -#: templates/admin/filer/folder/directory_table_list.html:201 +#: templates/admin/filer/folder/directory_table_list.html:204 #: templates/admin/filer/folder/directory_thumbnail_list.html:179 msgid "Upload success!" msgstr "Tải lên thành công!" -#: templates/admin/filer/folder/directory_table_list.html:205 +#: templates/admin/filer/folder/directory_table_list.html:208 #: templates/admin/filer/folder/directory_thumbnail_list.html:183 msgid "Upload canceled!" msgstr "Tải lên đã bị hủy!" -#: templates/admin/filer/folder/directory_table_list.html:212 +#: templates/admin/filer/folder/directory_table_list.html:215 #: templates/admin/filer/folder/directory_thumbnail_list.html:190 msgid "previous" msgstr "trước đó" -#: templates/admin/filer/folder/directory_table_list.html:217 +#: templates/admin/filer/folder/directory_table_list.html:220 #: templates/admin/filer/folder/directory_thumbnail_list.html:195 #, python-format msgid "Page %(number)s of %(num_pages)s." msgstr "Trang %(number)s trên %(num_pages)s." -#: templates/admin/filer/folder/directory_table_list.html:222 +#: templates/admin/filer/folder/directory_table_list.html:225 #: templates/admin/filer/folder/directory_thumbnail_list.html:200 msgid "next" msgstr "tiếp theo" -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 #, python-format msgid "Select all %(total_count)s" @@ -1103,29 +1109,29 @@ msgstr "tải lên lỗi" msgid "Download" msgstr "" -#: templates/admin/filer/tools/detail_info.html:15 +#: templates/admin/filer/tools/detail_info.html:16 msgid "Expand" msgstr "" -#: templates/admin/filer/tools/detail_info.html:20 +#: templates/admin/filer/tools/detail_info.html:21 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:108 msgid "File is missing" msgstr "" -#: templates/admin/filer/tools/detail_info.html:29 +#: templates/admin/filer/tools/detail_info.html:30 msgid "Type" msgstr "Kiểu" -#: templates/admin/filer/tools/detail_info.html:37 +#: templates/admin/filer/tools/detail_info.html:38 msgid "File-size" msgstr "Kích thước tệp" -#: templates/admin/filer/tools/detail_info.html:41 +#: templates/admin/filer/tools/detail_info.html:42 msgid "Modified" msgstr "Đã chỉnh sửa" -#: templates/admin/filer/tools/detail_info.html:45 +#: templates/admin/filer/tools/detail_info.html:46 msgid "Created" msgstr "Đã tạo" diff --git a/filer/locale/zh/LC_MESSAGES/django.po b/filer/locale/zh/LC_MESSAGES/django.po index dc438204f..217dde434 100644 --- a/filer/locale/zh/LC_MESSAGES/django.po +++ b/filer/locale/zh/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-26 08:46+0200\n" +"POT-Creation-Date: 2023-09-30 18:10+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Angelo Dini \n" "Language-Team: Chinese (http://app.transifex.com/divio/django-filer/language/" @@ -217,23 +217,23 @@ msgstr "" msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/imageadmin.py:18 admin/imageadmin.py:105 +#: admin/imageadmin.py:20 admin/imageadmin.py:112 msgid "Subject location" msgstr "" -#: admin/imageadmin.py:19 +#: admin/imageadmin.py:21 msgid "Location of the main subject of the scene. Format: \"x,y\"." msgstr "" -#: admin/imageadmin.py:57 +#: admin/imageadmin.py:59 msgid "Invalid subject location format. " msgstr "" -#: admin/imageadmin.py:65 +#: admin/imageadmin.py:67 msgid "Subject location is outside of the image. " msgstr "" -#: admin/imageadmin.py:74 +#: admin/imageadmin.py:76 #, python-brace-format msgid "Your input: \"{subject_location}\". " msgstr "" @@ -280,7 +280,7 @@ msgstr "" msgid "images" msgstr "" -#: models/abstract.py:147 +#: models/abstract.py:148 #, python-format msgid "" "Image format not recognized or image size exceeds limit of %(max_pixels)d " @@ -534,7 +534,7 @@ msgstr "" #: models/virtualitems.py:46 #: templates/admin/filer/folder/directory_table_list.html:4 -#: templates/admin/filer/folder/directory_table_list.html:167 +#: templates/admin/filer/folder/directory_table_list.html:170 #: templates/admin/filer/folder/directory_thumbnail_list.html:5 #: templates/admin/filer/folder/directory_thumbnail_list.html:146 #: templates/admin/filer/tools/clipboard/clipboard.html:27 @@ -567,7 +567,7 @@ msgid "Go" msgstr "" #: templates/admin/filer/actions.html:14 -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 msgid "Click here to select the objects across all pages" msgstr "" @@ -578,7 +578,7 @@ msgid "Select all %(total_count)s files and/or folders" msgstr "" #: templates/admin/filer/actions.html:16 -#: templates/admin/filer/folder/directory_table_list.html:234 +#: templates/admin/filer/folder/directory_table_list.html:237 #: templates/admin/filer/folder/directory_thumbnail_list.html:212 msgid "Clear selection" msgstr "" @@ -674,7 +674,7 @@ msgstr "" #: templates/admin/filer/folder/directory_listing.html:103 #: templates/admin/filer/folder/directory_table_list.html:29 #: templates/admin/filer/folder/directory_table_list.html:59 -#: templates/admin/filer/folder/directory_table_list.html:178 +#: templates/admin/filer/folder/directory_table_list.html:181 #: templates/admin/filer/folder/directory_thumbnail_list.html:27 #: templates/admin/filer/folder/directory_thumbnail_list.html:61 #: templates/admin/filer/folder/directory_thumbnail_list.html:156 @@ -863,12 +863,12 @@ msgid "Name" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:17 -#: templates/admin/filer/tools/detail_info.html:49 +#: templates/admin/filer/tools/detail_info.html:50 msgid "Owner" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:18 -#: templates/admin/filer/tools/detail_info.html:33 +#: templates/admin/filer/tools/detail_info.html:34 msgid "Size" msgstr "" @@ -921,7 +921,7 @@ msgstr "" #: templates/admin/filer/folder/directory_table_list.html:107 #: templates/admin/filer/folder/directory_table_list.html:122 -#: templates/admin/filer/folder/directory_table_list.html:151 +#: templates/admin/filer/folder/directory_table_list.html:154 #: templates/admin/filer/folder/directory_thumbnail_list.html:107 #: templates/admin/filer/folder/directory_thumbnail_list.html:122 #, python-format @@ -944,66 +944,70 @@ msgid "enabled" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:144 +msgid "URL copied to clipboard" +msgstr "" + +#: templates/admin/filer/folder/directory_table_list.html:147 #, python-format msgid "Canonical url '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:148 +#: templates/admin/filer/folder/directory_table_list.html:151 #, python-format msgid "Download '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:152 +#: templates/admin/filer/folder/directory_table_list.html:155 msgid "Remove file" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:160 +#: templates/admin/filer/folder/directory_table_list.html:163 #: templates/admin/filer/folder/directory_thumbnail_list.html:138 msgid "Drop files here or use the \"Upload Files\" button" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:175 +#: templates/admin/filer/folder/directory_table_list.html:178 #: templates/admin/filer/folder/directory_thumbnail_list.html:153 msgid "Drop your file to upload into:" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:185 +#: templates/admin/filer/folder/directory_table_list.html:188 #: templates/admin/filer/folder/directory_thumbnail_list.html:163 msgid "Upload" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:197 +#: templates/admin/filer/folder/directory_table_list.html:200 #: templates/admin/filer/folder/directory_thumbnail_list.html:175 msgid "cancel" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:201 +#: templates/admin/filer/folder/directory_table_list.html:204 #: templates/admin/filer/folder/directory_thumbnail_list.html:179 msgid "Upload success!" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:205 +#: templates/admin/filer/folder/directory_table_list.html:208 #: templates/admin/filer/folder/directory_thumbnail_list.html:183 msgid "Upload canceled!" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:212 +#: templates/admin/filer/folder/directory_table_list.html:215 #: templates/admin/filer/folder/directory_thumbnail_list.html:190 msgid "previous" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:217 +#: templates/admin/filer/folder/directory_table_list.html:220 #: templates/admin/filer/folder/directory_thumbnail_list.html:195 #, python-format msgid "Page %(number)s of %(num_pages)s." msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:222 +#: templates/admin/filer/folder/directory_table_list.html:225 #: templates/admin/filer/folder/directory_thumbnail_list.html:200 msgid "next" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 #, python-format msgid "Select all %(total_count)s" @@ -1072,29 +1076,29 @@ msgstr "" msgid "Download" msgstr "" -#: templates/admin/filer/tools/detail_info.html:15 +#: templates/admin/filer/tools/detail_info.html:16 msgid "Expand" msgstr "" -#: templates/admin/filer/tools/detail_info.html:20 +#: templates/admin/filer/tools/detail_info.html:21 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:108 msgid "File is missing" msgstr "" -#: templates/admin/filer/tools/detail_info.html:29 +#: templates/admin/filer/tools/detail_info.html:30 msgid "Type" msgstr "" -#: templates/admin/filer/tools/detail_info.html:37 +#: templates/admin/filer/tools/detail_info.html:38 msgid "File-size" msgstr "" -#: templates/admin/filer/tools/detail_info.html:41 +#: templates/admin/filer/tools/detail_info.html:42 msgid "Modified" msgstr "" -#: templates/admin/filer/tools/detail_info.html:45 +#: templates/admin/filer/tools/detail_info.html:46 msgid "Created" msgstr "" diff --git a/filer/locale/zh_CN/LC_MESSAGES/django.po b/filer/locale/zh_CN/LC_MESSAGES/django.po index ddbcb3939..442ac25a4 100644 --- a/filer/locale/zh_CN/LC_MESSAGES/django.po +++ b/filer/locale/zh_CN/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-26 08:46+0200\n" +"POT-Creation-Date: 2023-09-30 18:10+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Angelo Dini \n" "Language-Team: Chinese (China) (http://app.transifex.com/divio/django-filer/" @@ -217,23 +217,23 @@ msgstr "" msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/imageadmin.py:18 admin/imageadmin.py:105 +#: admin/imageadmin.py:20 admin/imageadmin.py:112 msgid "Subject location" msgstr "" -#: admin/imageadmin.py:19 +#: admin/imageadmin.py:21 msgid "Location of the main subject of the scene. Format: \"x,y\"." msgstr "" -#: admin/imageadmin.py:57 +#: admin/imageadmin.py:59 msgid "Invalid subject location format. " msgstr "" -#: admin/imageadmin.py:65 +#: admin/imageadmin.py:67 msgid "Subject location is outside of the image. " msgstr "" -#: admin/imageadmin.py:74 +#: admin/imageadmin.py:76 #, python-brace-format msgid "Your input: \"{subject_location}\". " msgstr "" @@ -280,7 +280,7 @@ msgstr "" msgid "images" msgstr "" -#: models/abstract.py:147 +#: models/abstract.py:148 #, python-format msgid "" "Image format not recognized or image size exceeds limit of %(max_pixels)d " @@ -534,7 +534,7 @@ msgstr "" #: models/virtualitems.py:46 #: templates/admin/filer/folder/directory_table_list.html:4 -#: templates/admin/filer/folder/directory_table_list.html:167 +#: templates/admin/filer/folder/directory_table_list.html:170 #: templates/admin/filer/folder/directory_thumbnail_list.html:5 #: templates/admin/filer/folder/directory_thumbnail_list.html:146 #: templates/admin/filer/tools/clipboard/clipboard.html:27 @@ -567,7 +567,7 @@ msgid "Go" msgstr "" #: templates/admin/filer/actions.html:14 -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 msgid "Click here to select the objects across all pages" msgstr "" @@ -578,7 +578,7 @@ msgid "Select all %(total_count)s files and/or folders" msgstr "" #: templates/admin/filer/actions.html:16 -#: templates/admin/filer/folder/directory_table_list.html:234 +#: templates/admin/filer/folder/directory_table_list.html:237 #: templates/admin/filer/folder/directory_thumbnail_list.html:212 msgid "Clear selection" msgstr "" @@ -674,7 +674,7 @@ msgstr "" #: templates/admin/filer/folder/directory_listing.html:103 #: templates/admin/filer/folder/directory_table_list.html:29 #: templates/admin/filer/folder/directory_table_list.html:59 -#: templates/admin/filer/folder/directory_table_list.html:178 +#: templates/admin/filer/folder/directory_table_list.html:181 #: templates/admin/filer/folder/directory_thumbnail_list.html:27 #: templates/admin/filer/folder/directory_thumbnail_list.html:61 #: templates/admin/filer/folder/directory_thumbnail_list.html:156 @@ -863,12 +863,12 @@ msgid "Name" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:17 -#: templates/admin/filer/tools/detail_info.html:49 +#: templates/admin/filer/tools/detail_info.html:50 msgid "Owner" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:18 -#: templates/admin/filer/tools/detail_info.html:33 +#: templates/admin/filer/tools/detail_info.html:34 msgid "Size" msgstr "" @@ -921,7 +921,7 @@ msgstr "" #: templates/admin/filer/folder/directory_table_list.html:107 #: templates/admin/filer/folder/directory_table_list.html:122 -#: templates/admin/filer/folder/directory_table_list.html:151 +#: templates/admin/filer/folder/directory_table_list.html:154 #: templates/admin/filer/folder/directory_thumbnail_list.html:107 #: templates/admin/filer/folder/directory_thumbnail_list.html:122 #, python-format @@ -944,66 +944,70 @@ msgid "enabled" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:144 +msgid "URL copied to clipboard" +msgstr "" + +#: templates/admin/filer/folder/directory_table_list.html:147 #, python-format msgid "Canonical url '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:148 +#: templates/admin/filer/folder/directory_table_list.html:151 #, python-format msgid "Download '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:152 +#: templates/admin/filer/folder/directory_table_list.html:155 msgid "Remove file" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:160 +#: templates/admin/filer/folder/directory_table_list.html:163 #: templates/admin/filer/folder/directory_thumbnail_list.html:138 msgid "Drop files here or use the \"Upload Files\" button" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:175 +#: templates/admin/filer/folder/directory_table_list.html:178 #: templates/admin/filer/folder/directory_thumbnail_list.html:153 msgid "Drop your file to upload into:" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:185 +#: templates/admin/filer/folder/directory_table_list.html:188 #: templates/admin/filer/folder/directory_thumbnail_list.html:163 msgid "Upload" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:197 +#: templates/admin/filer/folder/directory_table_list.html:200 #: templates/admin/filer/folder/directory_thumbnail_list.html:175 msgid "cancel" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:201 +#: templates/admin/filer/folder/directory_table_list.html:204 #: templates/admin/filer/folder/directory_thumbnail_list.html:179 msgid "Upload success!" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:205 +#: templates/admin/filer/folder/directory_table_list.html:208 #: templates/admin/filer/folder/directory_thumbnail_list.html:183 msgid "Upload canceled!" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:212 +#: templates/admin/filer/folder/directory_table_list.html:215 #: templates/admin/filer/folder/directory_thumbnail_list.html:190 msgid "previous" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:217 +#: templates/admin/filer/folder/directory_table_list.html:220 #: templates/admin/filer/folder/directory_thumbnail_list.html:195 #, python-format msgid "Page %(number)s of %(num_pages)s." msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:222 +#: templates/admin/filer/folder/directory_table_list.html:225 #: templates/admin/filer/folder/directory_thumbnail_list.html:200 msgid "next" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 #, python-format msgid "Select all %(total_count)s" @@ -1072,29 +1076,29 @@ msgstr "" msgid "Download" msgstr "" -#: templates/admin/filer/tools/detail_info.html:15 +#: templates/admin/filer/tools/detail_info.html:16 msgid "Expand" msgstr "" -#: templates/admin/filer/tools/detail_info.html:20 +#: templates/admin/filer/tools/detail_info.html:21 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:108 msgid "File is missing" msgstr "" -#: templates/admin/filer/tools/detail_info.html:29 +#: templates/admin/filer/tools/detail_info.html:30 msgid "Type" msgstr "" -#: templates/admin/filer/tools/detail_info.html:37 +#: templates/admin/filer/tools/detail_info.html:38 msgid "File-size" msgstr "" -#: templates/admin/filer/tools/detail_info.html:41 +#: templates/admin/filer/tools/detail_info.html:42 msgid "Modified" msgstr "" -#: templates/admin/filer/tools/detail_info.html:45 +#: templates/admin/filer/tools/detail_info.html:46 msgid "Created" msgstr "" diff --git a/filer/locale/zh_TW/LC_MESSAGES/django.po b/filer/locale/zh_TW/LC_MESSAGES/django.po index bd227abd9..a14b91d38 100644 --- a/filer/locale/zh_TW/LC_MESSAGES/django.po +++ b/filer/locale/zh_TW/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-26 08:46+0200\n" +"POT-Creation-Date: 2023-09-30 18:10+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Angelo Dini \n" "Language-Team: Chinese (Taiwan) (http://app.transifex.com/divio/django-filer/" @@ -217,23 +217,23 @@ msgstr "" msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/imageadmin.py:18 admin/imageadmin.py:105 +#: admin/imageadmin.py:20 admin/imageadmin.py:112 msgid "Subject location" msgstr "" -#: admin/imageadmin.py:19 +#: admin/imageadmin.py:21 msgid "Location of the main subject of the scene. Format: \"x,y\"." msgstr "" -#: admin/imageadmin.py:57 +#: admin/imageadmin.py:59 msgid "Invalid subject location format. " msgstr "" -#: admin/imageadmin.py:65 +#: admin/imageadmin.py:67 msgid "Subject location is outside of the image. " msgstr "" -#: admin/imageadmin.py:74 +#: admin/imageadmin.py:76 #, python-brace-format msgid "Your input: \"{subject_location}\". " msgstr "" @@ -280,7 +280,7 @@ msgstr "" msgid "images" msgstr "" -#: models/abstract.py:147 +#: models/abstract.py:148 #, python-format msgid "" "Image format not recognized or image size exceeds limit of %(max_pixels)d " @@ -534,7 +534,7 @@ msgstr "" #: models/virtualitems.py:46 #: templates/admin/filer/folder/directory_table_list.html:4 -#: templates/admin/filer/folder/directory_table_list.html:167 +#: templates/admin/filer/folder/directory_table_list.html:170 #: templates/admin/filer/folder/directory_thumbnail_list.html:5 #: templates/admin/filer/folder/directory_thumbnail_list.html:146 #: templates/admin/filer/tools/clipboard/clipboard.html:27 @@ -567,7 +567,7 @@ msgid "Go" msgstr "" #: templates/admin/filer/actions.html:14 -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 msgid "Click here to select the objects across all pages" msgstr "" @@ -578,7 +578,7 @@ msgid "Select all %(total_count)s files and/or folders" msgstr "" #: templates/admin/filer/actions.html:16 -#: templates/admin/filer/folder/directory_table_list.html:234 +#: templates/admin/filer/folder/directory_table_list.html:237 #: templates/admin/filer/folder/directory_thumbnail_list.html:212 msgid "Clear selection" msgstr "" @@ -674,7 +674,7 @@ msgstr "" #: templates/admin/filer/folder/directory_listing.html:103 #: templates/admin/filer/folder/directory_table_list.html:29 #: templates/admin/filer/folder/directory_table_list.html:59 -#: templates/admin/filer/folder/directory_table_list.html:178 +#: templates/admin/filer/folder/directory_table_list.html:181 #: templates/admin/filer/folder/directory_thumbnail_list.html:27 #: templates/admin/filer/folder/directory_thumbnail_list.html:61 #: templates/admin/filer/folder/directory_thumbnail_list.html:156 @@ -863,12 +863,12 @@ msgid "Name" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:17 -#: templates/admin/filer/tools/detail_info.html:49 +#: templates/admin/filer/tools/detail_info.html:50 msgid "Owner" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:18 -#: templates/admin/filer/tools/detail_info.html:33 +#: templates/admin/filer/tools/detail_info.html:34 msgid "Size" msgstr "" @@ -921,7 +921,7 @@ msgstr "" #: templates/admin/filer/folder/directory_table_list.html:107 #: templates/admin/filer/folder/directory_table_list.html:122 -#: templates/admin/filer/folder/directory_table_list.html:151 +#: templates/admin/filer/folder/directory_table_list.html:154 #: templates/admin/filer/folder/directory_thumbnail_list.html:107 #: templates/admin/filer/folder/directory_thumbnail_list.html:122 #, python-format @@ -944,66 +944,70 @@ msgid "enabled" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:144 +msgid "URL copied to clipboard" +msgstr "" + +#: templates/admin/filer/folder/directory_table_list.html:147 #, python-format msgid "Canonical url '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:148 +#: templates/admin/filer/folder/directory_table_list.html:151 #, python-format msgid "Download '%(item_label)s'" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:152 +#: templates/admin/filer/folder/directory_table_list.html:155 msgid "Remove file" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:160 +#: templates/admin/filer/folder/directory_table_list.html:163 #: templates/admin/filer/folder/directory_thumbnail_list.html:138 msgid "Drop files here or use the \"Upload Files\" button" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:175 +#: templates/admin/filer/folder/directory_table_list.html:178 #: templates/admin/filer/folder/directory_thumbnail_list.html:153 msgid "Drop your file to upload into:" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:185 +#: templates/admin/filer/folder/directory_table_list.html:188 #: templates/admin/filer/folder/directory_thumbnail_list.html:163 msgid "Upload" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:197 +#: templates/admin/filer/folder/directory_table_list.html:200 #: templates/admin/filer/folder/directory_thumbnail_list.html:175 msgid "cancel" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:201 +#: templates/admin/filer/folder/directory_table_list.html:204 #: templates/admin/filer/folder/directory_thumbnail_list.html:179 msgid "Upload success!" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:205 +#: templates/admin/filer/folder/directory_table_list.html:208 #: templates/admin/filer/folder/directory_thumbnail_list.html:183 msgid "Upload canceled!" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:212 +#: templates/admin/filer/folder/directory_table_list.html:215 #: templates/admin/filer/folder/directory_thumbnail_list.html:190 msgid "previous" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:217 +#: templates/admin/filer/folder/directory_table_list.html:220 #: templates/admin/filer/folder/directory_thumbnail_list.html:195 #, python-format msgid "Page %(number)s of %(num_pages)s." msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:222 +#: templates/admin/filer/folder/directory_table_list.html:225 #: templates/admin/filer/folder/directory_thumbnail_list.html:200 msgid "next" msgstr "" -#: templates/admin/filer/folder/directory_table_list.html:232 +#: templates/admin/filer/folder/directory_table_list.html:235 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 #, python-format msgid "Select all %(total_count)s" @@ -1072,29 +1076,29 @@ msgstr "" msgid "Download" msgstr "" -#: templates/admin/filer/tools/detail_info.html:15 +#: templates/admin/filer/tools/detail_info.html:16 msgid "Expand" msgstr "" -#: templates/admin/filer/tools/detail_info.html:20 +#: templates/admin/filer/tools/detail_info.html:21 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:108 msgid "File is missing" msgstr "" -#: templates/admin/filer/tools/detail_info.html:29 +#: templates/admin/filer/tools/detail_info.html:30 msgid "Type" msgstr "" -#: templates/admin/filer/tools/detail_info.html:37 +#: templates/admin/filer/tools/detail_info.html:38 msgid "File-size" msgstr "" -#: templates/admin/filer/tools/detail_info.html:41 +#: templates/admin/filer/tools/detail_info.html:42 msgid "Modified" msgstr "" -#: templates/admin/filer/tools/detail_info.html:45 +#: templates/admin/filer/tools/detail_info.html:46 msgid "Created" msgstr "" diff --git a/filer/private/sass/mixins/_custom.scss b/filer/private/sass/mixins/_custom.scss index 64b641d54..5f9bdaa42 100644 --- a/filer/private/sass/mixins/_custom.scss +++ b/filer/private/sass/mixins/_custom.scss @@ -93,14 +93,13 @@ &.focus, &:hover { color: $color important($important); - @if $background == $white { + @if $background == $btn-default-bgcolor { background-color: $gray-lightest important($important); border-color: $border important($important); } @else { background-color: $background important($important); border-color: $border important($important); - filter: opacity(0.7) important($important); - // Strange: removing opacity(1.) or correcting it makes item transparent + filter: invert(0.05) important($important); } text-decoration: none important($important); } diff --git a/filer/static/filer/css/admin_filer.css b/filer/static/filer/css/admin_filer.css index 4282307ca..60b8dadf2 100755 --- a/filer/static/filer/css/admin_filer.css +++ b/filer/static/filer/css/admin_filer.css @@ -1,4 +1,4 @@ /*! * @copyright: https://github.com/divio/django-filer - */html,body{min-width:320px;height:100% !important}.text-left{text-align:left}.text-right{text-align:right}.clearfix:after{content:"";display:table;clear:both}.related-widget-wrapper{float:none !important}.related-lookup.hidden{display:none !important}.tiny{font-size:12px !important;color:var(--dca-gray-light, var(--body-quiet-color, #999)) !important}.nav-pages{position:relative;font-size:12px;color:var(--dca-gray-light, var(--body-quiet-color, #999)) !important;padding-left:10px;padding-right:20px;padding-top:15px;padding-bottom:15px;-webkit-box-sizing:border-box;box-sizing:border-box;background:var(--dca-white, var(--body-bg, #fff))}.nav-pages span{font-size:12px;color:var(--dca-gray-light, var(--body-quiet-color, #999)) !important}.nav-pages .actions{float:right}#id_upload_button:before{display:none}#content #content-main{margin-top:0}.filebrowser.cms-admin-sideframe #container .breadcrumbs+#content,.filebrowser.cms-admin-sideframe #container .breadcrumbs+.messagelist+#content{margin-left:0 !important;margin-right:0 !important}.filebrowser.cms-admin-sideframe #container .breadcrumbs{left:0 !important;padding-left:20px !important}.filebrowser #container{min-width:auto}.filebrowser #container #content{padding:0;-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.2);box-shadow:0 0 5px 0 rgba(0,0,0,.2)}.filebrowser #container .breadcrumbs+#content,.filebrowser #container .breadcrumbs+.messagelist+#content{margin-left:3% !important}.filebrowser h1.folder_header{position:relative;top:6px}.filebrowser h2{display:none}.filebrowser #content-main{background-color:var(--dca-white, var(--body-bg, #fff))}.field-file,.field-sha1{word-wrap:break-word;word-break:break-all}.well.img-preview{display:none;margin-top:0}.img-wrapper{width:180px;height:180px}.file-duplicates{clear:both;padding:20px 0 0}form .cancel-link{height:auto !important;line-height:inherit !important;padding:10px 15px}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.hidden{display:none !important}.filer-info-bar{min-height:15px;margin:0 0 2px !important;padding:15px 20px;-webkit-box-shadow:0 0 10px -2px rgba(0,0,0,.2);box-shadow:0 0 10px -2px rgba(0,0,0,.2);background-color:var(--dca-white, var(--body-bg, #fff))}.navigator .actions span.all,.navigator .actions span.clear,.navigator .actions span.question{font-size:13px;margin:0 .5em;display:none}#all-items-action-toggle{display:none !important}.image-info{position:relative;float:right;-webkit-box-sizing:border-box;box-sizing:border-box;width:28%;margin-top:0;border:0;border-radius:3px;background:var(--dca-white, var(--body-bg, #fff));-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.2);box-shadow:0 0 5px 0 rgba(0,0,0,.2)}.image-info .image-details,.image-info .actions-list{margin:0;padding:0}.image-info .image-details.image-details,.image-info .actions-list.image-details{margin:10px 0;padding:0 10px}.image-info .image-details li,.image-info .actions-list li{list-style-type:none}.image-info .image-details a,.image-info .actions-list a{cursor:pointer}.image-info.image-info-detail{position:static;float:none;width:100%;margin-bottom:20px;padding:25px;border-radius:0}.image-info.image-info-detail:before,.image-info.image-info-detail:after{content:" ";display:table}.image-info.image-info-detail:after{clear:both}.image-info.image-info-detail+#content-main .object-tools{margin-top:20px;margin-right:20px;background-color:rgba(0,0,0,0)}.image-info.image-info-detail+#content-main .object-tools:before{display:none}.image-info.image-info-detail .image-details-left{float:left}.image-info.image-info-detail .image-details-right{float:left;margin-left:50px}.image-info.image-info-detail .image-details,.image-info.image-info-detail .actions-list{margin-top:0;border:0 !important}.image-info.image-info-detail .image-details.image-details,.image-info.image-info-detail .actions-list.image-details{margin-top:20px;margin-bottom:15px;padding:0}.image-info.image-info-detail .image-details dt,.image-info.image-info-detail .actions-list dt{float:left;color:var(--dca-gray-light, var(--body-quiet-color, #999));font-size:13px;line-height:1rem !important;font-weight:normal;margin-top:0}.image-info.image-info-detail .image-details dd,.image-info.image-info-detail .actions-list dd{color:var(--dca-gray, var(--body-quiet-color, #666));font-size:13px;line-height:16px !important;padding-left:80px;margin-bottom:5px}.image-info.image-info-detail .image-details .text,.image-info.image-info-detail .actions-list .text{font-size:13px;margin-right:15px}.image-info.image-info-detail .image-details .text strong,.image-info.image-info-detail .actions-list .text strong{font-size:13px}.image-info.image-info-detail .image-details li,.image-info.image-info-detail .actions-list li{color:var(--dca-gray, var(--body-quiet-color, #666));font-size:13px !important;font-weight:normal !important;padding:1px 0 !important;border:0 !important}.image-info.image-info-detail .image-details a,.image-info.image-info-detail .actions-list a{padding:0}.image-info.image-info-detail .image-info-title{overflow:hidden;color:var(--dca-gray, var(--body-quiet-color, #666));white-space:nowrap;text-overflow:ellipsis;padding:0 0 5px}.image-info.image-info-detail .image-info-title .icon{float:left;margin-right:5px}.image-info.image-info-detail .image-preview-container{text-align:left;margin:20px 0 0;padding:0}.image-info.image-info-detail .image-preview-container>img{margin-bottom:15px}.image-info.image-info-detail .actions-list .icon{font-size:16px}.image-info.image-info-detail .actions-list .icon:last-child{float:none}@media screen and (max-width: 720px){.image-info{float:none;width:100%}.image-info.image-info-detail .image-details-left,.image-info.image-info-detail .image-details-right{float:none;margin-left:0}}.image-info-close{position:absolute;top:-10px;right:-7px;font-size:20px;cursor:pointer}.image-info-title{padding:5px 10px;border-bottom:solid 1px var(--dca-gray-lighter, var(--border-color, #ddd))}.image-info-title a{margin-left:5px}.image-preview-container{text-align:center;margin:10px 0;padding:0 10px}.image-preview-container .image-preview{display:inline-block;position:relative;margin-bottom:15px;outline:1px solid var(--dca-gray-lightest, var(--darkened-bg, #f2f2f2));background-image:url("data:image/gif;base64,R0lGODlhCAAIAKECAOPj4/z8/P///////yH5BAEKAAIALAAAAAAIAAgAAAINhBEZh8q6DoTPSWvoKQA7")}.image-preview-container .image-preview img{display:block}.image-preview-container .image-preview-field{position:absolute;top:0;right:0;bottom:0;left:0;overflow:hidden}.image-preview-container .image-preview-circle{position:relative;z-index:1;width:26px;height:26px;border:solid 2px red;margin:-13px;border-radius:30px;cursor:move;background:rgba(255,255,255,.5)}.image-preview-container audio,.image-preview-container video{margin-bottom:15px}.image-preview-container audio:focus,.image-preview-container video:focus{outline:none}.button-group .button{margin-right:10px;padding:10px 15px}.actions-list-dropdown a{display:block;padding:5px 10px}.actions-list-dropdown .caret-down{display:inline-block}.actions-list-dropdown .caret-right{display:none}.actions-list-dropdown.js-collapsed{border-bottom:solid 1px var(--dca-gray-lighter, var(--border-color, #ddd))}.actions-list-dropdown.js-collapsed .caret-down{display:none}.actions-list-dropdown.js-collapsed .caret-right{display:inline-block}.actions-list{border-top:solid 1px var(--dca-gray-lighter, var(--border-color, #ddd))}.actions-list:last-child{border-top:none}.actions-list:last-child a{border-bottom:none}.actions-list a{display:block;font-size:20px;padding:5px 10px;border-bottom:solid 1px var(--dca-gray-lighter, var(--border-color, #ddd))}.actions-list .icon:first-child{width:20px}.actions-list .icon:last-child{float:right;margin-top:3px}.actions-separated-list{display:inline-block;margin:0;padding-left:0}@media screen and (max-width: 720px){.actions-separated-list{float:left;margin-left:0}}.actions-separated-list li{display:inline-block;line-height:34px;vertical-align:middle;padding:0 10px;list-style:none}@media screen and (max-width: 720px){.actions-separated-list li:first-child{padding-left:0}}.actions-separated-list li span{vertical-align:middle}.actions-separated-list li a{color:var(--dca-gray, var(--body-quiet-color, #666))}.actions-separated-list span:before{font-size:18px}.search-is-focused .filter-files-container{position:static}.search-is-focused .filter-filers-container-inner{position:absolute;top:0;left:0;right:0}@media screen and (max-width: 720px){.search-is-focused .filter-filers-container-inner{position:static}}.search-is-focused .breadcrumbs-container{position:relative}.search-is-focused.breadcrumb-min-width .filter-filers-container-inner{position:static}.filter-files-container{display:table-cell;vertical-align:middle;position:relative;width:245px;margin:0;padding:0;background:none;-webkit-box-shadow:none;box-shadow:none;z-index:1000}.filter-files-container:before,.filter-files-container:after{content:" ";display:table}.filter-files-container:after{clear:both}@media screen and (max-width: 720px){.filter-files-container{display:block;width:auto;margin-right:0;margin-top:10px}.filter-files-container .filter-files-button{float:none}}.filter-files-container .filer-dropdown-container{position:absolute;top:0;right:0}.filter-files-container .filer-dropdown-container>a,.filter-files-container .filer-dropdown-container>a:visited,.filter-files-container .filer-dropdown-container>a:link:visited,.filter-files-container .filer-dropdown-container>a:link{display:inline-block;line-height:34px;text-align:center;width:34px;height:34px;padding:0}.filter-files-container .filer-dropdown-container.open+.filer-dropdown-menu-checkboxes{display:block;width:calc(100% - 30px)}.filter-files-container .filer-dropdown-container.open+.filer-dropdown-menu-checkboxes li{margin:0;padding:0;list-style-type:none}.filter-files-container .filter-search-wrapper{position:relative;float:left;text-align:right;width:calc(100% - 43px);margin-right:5px}@media screen and (max-width: 720px){.filter-files-container .filter-search-wrapper{float:left}}.filter-files-container .filter-search-wrapper .filer-dropdown-container span{line-height:34px !important;height:34px !important}.filter-files-container .filter-files-button{float:right;text-align:center;white-space:nowrap;height:35px;margin:0;padding:8px !important}.filter-files-container .filter-files-button .icon{position:relative;left:2px;font-size:16px !important;vertical-align:top}.filter-files-container .filter-files-field{color:var(--dca-gray-darkest, var(--body-fg, #333));font-size:12px !important;line-height:35px;font-weight:normal;-webkit-box-sizing:border-box;box-sizing:border-box;min-width:200px !important;height:35px;margin:0;padding:0 35px 0 10px !important;outline:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-transition:max-width 200ms;transition:max-width 200ms}.filter-files-container .filter-files-field::-ms-clear{display:none}.filter-files-container .filer-dropdown-menu{margin-top:0 !important;margin-right:-1px !important}.filter-files-cancel{margin:5px 20px}body.dz-drag-hover .drag-hover-border{display:none !important}body.dz-drag-hover .navigator-table tbody td,body.dz-drag-hover .navigator-table tbody .unfiled td{background-color:var(--dca-gray-lightest, var(--darkened-bg, #f2f2f2)) !important}body.reset-hover td{background-color:var(--dca-white, var(--body-bg, #fff)) !important}.drag-hover-border{position:fixed;border-top:solid 2px var(--dca-primary, var(--primary, #0bf));border-bottom:solid 2px var(--dca-primary, var(--primary, #0bf));pointer-events:none;z-index:100;display:none}.thumbnail-drag-hover-border{border:solid 2px var(--dca-primary, var(--primary, #0bf))}.filebrowser .navigator-list,.filebrowser .navigator-table{width:100%;margin:0;border-top:solid 1px var(--dca-gray-lighter, var(--border-color, #ddd)) !important;border-collapse:collapse !important}.filebrowser .navigator-list .navigator-header,.filebrowser .navigator-list thead th,.filebrowser .navigator-list tbody td,.filebrowser .navigator-table .navigator-header,.filebrowser .navigator-table thead th,.filebrowser .navigator-table tbody td{text-align:left;font-weight:normal;vertical-align:middle;padding:5px !important;border-left:0 !important;border-bottom:1px solid var(--dca-gray-lighter, var(--border-color, #ddd));border-top:1px solid rgba(0,0,0,0);background:none !important}.filebrowser .navigator-list tbody tr.selected .action-button span,.filebrowser .navigator-table tbody tr.selected .action-button span{color:var(--dca-gray-darkest, var(--body-fg, #333)) !important}.filebrowser .navigator-list .navigator-body,.filebrowser .navigator-list .unfiled td,.filebrowser .navigator-table .navigator-body,.filebrowser .navigator-table .unfiled td{padding:12px 5px !important;background-color:var(--dca-gray-super-lightest, var(--darkened-bg, #f7f7f7)) !important}.filebrowser .navigator-list .navigator-body a,.filebrowser .navigator-list .navigator-body a:hover,.filebrowser .navigator-list .unfiled td a,.filebrowser .navigator-list .unfiled td a:hover,.filebrowser .navigator-table .navigator-body a,.filebrowser .navigator-table .navigator-body a:hover,.filebrowser .navigator-table .unfiled td a,.filebrowser .navigator-table .unfiled td a:hover{color:var(--dca-gray, var(--body-quiet-color, #666)) !important}.filebrowser .navigator-list .column-checkbox,.filebrowser .navigator-table .column-checkbox{text-align:center;width:20px;padding-left:20px !important}.filebrowser .navigator-list .column-checkbox input,.filebrowser .navigator-table .column-checkbox input{vertical-align:middle;margin:0}.filebrowser .navigator-list .column-name a,.filebrowser .navigator-table .column-name a{color:var(--dca-primary, var(--primary, #0bf))}.filebrowser .navigator-list .column-icon,.filebrowser .navigator-table .column-icon{width:50px;padding-top:0 !important;padding-bottom:0 !important}.filebrowser .navigator-list .column-icon img,.filebrowser .navigator-table .column-icon img{width:40px;height:auto}.filebrowser .navigator-list .column-action,.filebrowser .navigator-table .column-action{text-align:center;width:90px;white-space:nowrap;padding-right:20px !important}.filebrowser .navigator-list .column-action a,.filebrowser .navigator-table .column-action a{font-size:16px !important;margin:0}.filebrowser .navigator-list .column-action .action-button,.filebrowser .navigator-table .column-action .action-button{background-image:none !important;margin-bottom:0;border-radius:3px !important;color:var(--dca-gray-light, var(--button-fg, #999)) !important;background-color:var(--dca-white, var(--button-bg, #fff)) !important;border:1px solid var(--dca-gray-lighter, transparent) !important;background-clip:padding-box;-webkit-appearance:none;padding:9px !important}.filebrowser .navigator-list .column-action .action-button:focus,.filebrowser .navigator-list .column-action .action-button.focus,.filebrowser .navigator-list .column-action .action-button:hover,.filebrowser .navigator-table .column-action .action-button:focus,.filebrowser .navigator-table .column-action .action-button.focus,.filebrowser .navigator-table .column-action .action-button:hover{color:var(--dca-gray-light, var(--button-fg, #999)) !important;background-color:var(--dca-white, var(--button-bg, #fff)) !important;border-color:var(--dca-gray-lighter, transparent) !important;-webkit-filter:opacity(0.7) !important;filter:opacity(0.7) !important;text-decoration:none !important}.filebrowser .navigator-list .column-action .action-button:active,.filebrowser .navigator-list .column-action .action-button.cms-btn-active,.filebrowser .navigator-table .column-action .action-button:active,.filebrowser .navigator-table .column-action .action-button.cms-btn-active{color:var(--dca-gray-light, var(--button-fg, #999)) !important;background-color:var(--dca-white, var(--button-bg, #fff)) !important;border-color:var(--dca-gray-lighter, transparent) !important;-webkit-filter:brightness(var(--active-brightness)) opacity(1) !important;filter:brightness(var(--active-brightness)) opacity(1) !important;-webkit-box-shadow:inset 0 3px 5px rgba(var(--dca-black, var(--body-fg, #000)), 0.125) !important;box-shadow:inset 0 3px 5px rgba(var(--dca-black, var(--body-fg, #000)), 0.125) !important}.filebrowser .navigator-list .column-action .action-button:active:hover,.filebrowser .navigator-list .column-action .action-button:active:focus,.filebrowser .navigator-list .column-action .action-button:active.focus,.filebrowser .navigator-list .column-action .action-button.cms-btn-active:hover,.filebrowser .navigator-list .column-action .action-button.cms-btn-active:focus,.filebrowser .navigator-list .column-action .action-button.cms-btn-active.focus,.filebrowser .navigator-table .column-action .action-button:active:hover,.filebrowser .navigator-table .column-action .action-button:active:focus,.filebrowser .navigator-table .column-action .action-button:active.focus,.filebrowser .navigator-table .column-action .action-button.cms-btn-active:hover,.filebrowser .navigator-table .column-action .action-button.cms-btn-active:focus,.filebrowser .navigator-table .column-action .action-button.cms-btn-active.focus{color:var(--dca-gray-light, var(--button-fg, #999)) !important;background-color:var(--dca-white, var(--button-bg, #fff)) !important;border-color:var(--dca-gray-lighter, transparent) !important;-webkit-filter:brightness(calc(var(--focus-brightness) * var(--active-brightness))) opacity(1) !important;filter:brightness(calc(var(--focus-brightness) * var(--active-brightness))) opacity(1) !important}.filebrowser .navigator-list .column-action .action-button:active,.filebrowser .navigator-list .column-action .action-button.cms-btn-active,.filebrowser .navigator-table .column-action .action-button:active,.filebrowser .navigator-table .column-action .action-button.cms-btn-active{background-image:none !important}.filebrowser .navigator-list .column-action .action-button.cms-btn-disabled,.filebrowser .navigator-list .column-action .action-button.cms-btn-disabled:hover,.filebrowser .navigator-list .column-action .action-button.cms-btn-disabled:focus,.filebrowser .navigator-list .column-action .action-button.cms-btn-disabled.focus,.filebrowser .navigator-list .column-action .action-button.cms-btn-disabled:active,.filebrowser .navigator-list .column-action .action-button.cms-btn-disabled.cms-btn-active,.filebrowser .navigator-list .column-action .action-button[disabled],.filebrowser .navigator-list .column-action .action-button[disabled]:hover,.filebrowser .navigator-list .column-action .action-button[disabled]:focus,.filebrowser .navigator-list .column-action .action-button[disabled].focus,.filebrowser .navigator-list .column-action .action-button[disabled]:active,.filebrowser .navigator-list .column-action .action-button[disabled].cms-btn-active,.filebrowser .navigator-table .column-action .action-button.cms-btn-disabled,.filebrowser .navigator-table .column-action .action-button.cms-btn-disabled:hover,.filebrowser .navigator-table .column-action .action-button.cms-btn-disabled:focus,.filebrowser .navigator-table .column-action .action-button.cms-btn-disabled.focus,.filebrowser .navigator-table .column-action .action-button.cms-btn-disabled:active,.filebrowser .navigator-table .column-action .action-button.cms-btn-disabled.cms-btn-active,.filebrowser .navigator-table .column-action .action-button[disabled],.filebrowser .navigator-table .column-action .action-button[disabled]:hover,.filebrowser .navigator-table .column-action .action-button[disabled]:focus,.filebrowser .navigator-table .column-action .action-button[disabled].focus,.filebrowser .navigator-table .column-action .action-button[disabled]:active,.filebrowser .navigator-table .column-action .action-button[disabled].cms-btn-active{background-color:var(--dca-white, var(--button-bg, #fff)) !important;border-color:var(--dca-gray-lighter, transparent) !important;color:var(--dca-gray-light, var(--button-fg, #999)) true;-webkit-filter:brightness(0.6) opacity(1);filter:brightness(0.6) opacity(1);cursor:not-allowed;-webkit-box-shadow:none !important;box-shadow:none !important}.filebrowser .navigator-list .column-action .action-button.cms-btn-disabled:before,.filebrowser .navigator-list .column-action .action-button.cms-btn-disabled:hover:before,.filebrowser .navigator-list .column-action .action-button.cms-btn-disabled:focus:before,.filebrowser .navigator-list .column-action .action-button.cms-btn-disabled.focus:before,.filebrowser .navigator-list .column-action .action-button.cms-btn-disabled:active:before,.filebrowser .navigator-list .column-action .action-button.cms-btn-disabled.cms-btn-active:before,.filebrowser .navigator-list .column-action .action-button[disabled]:before,.filebrowser .navigator-list .column-action .action-button[disabled]:hover:before,.filebrowser .navigator-list .column-action .action-button[disabled]:focus:before,.filebrowser .navigator-list .column-action .action-button[disabled].focus:before,.filebrowser .navigator-list .column-action .action-button[disabled]:active:before,.filebrowser .navigator-list .column-action .action-button[disabled].cms-btn-active:before,.filebrowser .navigator-table .column-action .action-button.cms-btn-disabled:before,.filebrowser .navigator-table .column-action .action-button.cms-btn-disabled:hover:before,.filebrowser .navigator-table .column-action .action-button.cms-btn-disabled:focus:before,.filebrowser .navigator-table .column-action .action-button.cms-btn-disabled.focus:before,.filebrowser .navigator-table .column-action .action-button.cms-btn-disabled:active:before,.filebrowser .navigator-table .column-action .action-button.cms-btn-disabled.cms-btn-active:before,.filebrowser .navigator-table .column-action .action-button[disabled]:before,.filebrowser .navigator-table .column-action .action-button[disabled]:hover:before,.filebrowser .navigator-table .column-action .action-button[disabled]:focus:before,.filebrowser .navigator-table .column-action .action-button[disabled].focus:before,.filebrowser .navigator-table .column-action .action-button[disabled]:active:before,.filebrowser .navigator-table .column-action .action-button[disabled].cms-btn-active:before{color:var(--dca-gray-light, var(--button-fg, #999)) true;-webkit-filter:brightness(0.6) opacity(1);filter:brightness(0.6) opacity(1)}.filebrowser .navigator-list .column-action .action-button span,.filebrowser .navigator-table .column-action .action-button span{font-size:17px;line-height:33px;vertical-align:middle}.filebrowser .navigator-list .no-files,.filebrowser .navigator-table .no-files{color:var(--dca-gray, var(--body-quiet-color, #666));font-size:14px;text-align:center;padding:40px 0 !important;background-color:var(--dca-gray-lightest, var(--darkened-bg, #f2f2f2)) !important}.filebrowser .navigator-list .no-files span,.filebrowser .navigator-table .no-files span{font-size:20px;margin-right:10px}.filebrowser .navigator-list .no-files span:before,.filebrowser .navigator-table .no-files span:before{vertical-align:sub}.filebrowser .navigator-list .dz-drag-hover td,.filebrowser .navigator-table .dz-drag-hover td{position:relative;background:var(--dca-gray-lightest, var(--darkened-bg, #f2f2f2)) !important;-webkit-box-sizing:border-box !important;box-sizing:border-box !important}.filebrowser .navigator-list .dz-drag-hover td a,.filebrowser .navigator-table .dz-drag-hover td a{color:var(--dca-primary, var(--primary, #0bf)) !important}.filebrowser .navigator-list .dz-drag-hover td a.icon,.filebrowser .navigator-table .dz-drag-hover td a.icon{color:var(--dca-gray-darkest, var(--body-fg, #333)) !important;background-color:var(--dca-white, var(--body-bg, #fff)) !important}.filebrowser .navigator-list.dz-drag-hover,.filebrowser .navigator-table.dz-drag-hover{position:relative}.filebrowser .navigator-list.dz-drag-hover .drag-hover-border,.filebrowser .navigator-table.dz-drag-hover .drag-hover-border{display:none !important}.filebrowser .navigator-list.dz-drag-hover td,.filebrowser .navigator-table.dz-drag-hover td{background:var(--dca-gray-lightest, var(--darkened-bg, #f2f2f2)) !important;-webkit-box-sizing:border-box !important;box-sizing:border-box !important}.filebrowser .navigator-list .reset-hover td,.filebrowser .navigator-list.reset-hover td,.filebrowser .navigator-table .reset-hover td,.filebrowser .navigator-table.reset-hover td{background-color:var(--dca-white, var(--body-bg, #fff)) !important}.filebrowser .navigator-list .reset-hover .dz-drag-hover td,.filebrowser .navigator-list.reset-hover .dz-drag-hover td,.filebrowser .navigator-table .reset-hover .dz-drag-hover td,.filebrowser .navigator-table.reset-hover .dz-drag-hover td{background:var(--dca-gray-lightest, var(--darkened-bg, #f2f2f2)) !important}.navigator-top-nav{position:relative;clear:both;min-height:35px;padding:15px 20px;background:var(--dca-gray-super-lightest, var(--darkened-bg, #f7f7f7));border-bottom:var(--dca-gray-lighter, var(--border-color, #ddd)) solid 1px}.navigator-top-nav .breadcrumbs-container-wrapper{display:table;width:100%}@media screen and (max-width: 720px){.navigator-top-nav .breadcrumbs-container-wrapper{display:block}}.navigator-top-nav .breadcrumbs-container-inner{display:table;table-layout:fixed;width:100%}.navigator-top-nav .breadcrumbs-container-inner .filer-dropdown-container{display:table-cell;width:30px;height:35px;vertical-align:middle}.navigator-top-nav .breadcrumbs-container-inner .filer-dropdown-container span{line-height:35px;height:35px;vertical-align:middle}.navigator-top-nav .breadcrumbs-container{display:table-cell;vertical-align:middle}@media screen and (max-width: 720px){.navigator-top-nav .breadcrumbs-container{position:static;margin-right:20px}}.navigator-top-nav .tools-container{display:table-cell;vertical-align:middle;text-align:right;margin-top:2px}.navigator-top-nav .tools-container:before,.navigator-top-nav .tools-container:after{content:" ";display:table}.navigator-top-nav .tools-container:after{clear:both}@media screen and (max-width: 720px){.navigator-top-nav .tools-container{display:inline;text-align:left}}.navigator-top-nav .nav-button{display:inline-block;color:var(--dca-gray, var(--body-quiet-color, #666));font-size:20px;line-height:34px;vertical-align:top;margin:0 10px}.navigator-top-nav .nav-button span{vertical-align:middle}.navigator-top-nav .nav-button-filter{position:relative;top:-1px}.navigator-top-nav .nav-button-dots{margin:0;padding:0 15px}.navigator-top-nav .separator{display:inline-block;position:relative;vertical-align:top;width:1px;height:34px;margin:0 5px}.navigator-top-nav .separator:before{content:"";display:block;position:absolute;top:-14px;bottom:-11px;overflow:hidden;width:1px;background-color:var(--dca-gray-lighter, var(--border-color, #ddd))}.breadcrumb-min-width .filer-navigator-breadcrumbs-dropdown-container,.breadcrumb-min-width .navigator-breadcrumbs-name-dropdown-wrapper,.breadcrumb-min-width .navigator-breadcrumbs-folder-name-wrapper,.breadcrumb-min-width .breadcrumbs-container-wrapper,.breadcrumb-min-width .breadcrumbs-container,.breadcrumb-min-width .tools-container,.breadcrumb-min-width .filter-files-container,.breadcrumb-min-width .navigator-breadcrumbs,.breadcrumb-min-width .navigator-button-wrapper{display:inline-block;text-align:left}.breadcrumb-min-width .filer-navigator-breadcrumbs-dropdown-container .actions-wrapper,.breadcrumb-min-width .navigator-breadcrumbs-name-dropdown-wrapper .actions-wrapper,.breadcrumb-min-width .navigator-breadcrumbs-folder-name-wrapper .actions-wrapper,.breadcrumb-min-width .breadcrumbs-container-wrapper .actions-wrapper,.breadcrumb-min-width .breadcrumbs-container .actions-wrapper,.breadcrumb-min-width .tools-container .actions-wrapper,.breadcrumb-min-width .filter-files-container .actions-wrapper,.breadcrumb-min-width .navigator-breadcrumbs .actions-wrapper,.breadcrumb-min-width .navigator-button-wrapper .actions-wrapper{white-space:nowrap;margin-left:0;margin-top:10px}.breadcrumb-min-width .filer-navigator-breadcrumbs-dropdown-container .actions-wrapper li:first-child,.breadcrumb-min-width .navigator-breadcrumbs-name-dropdown-wrapper .actions-wrapper li:first-child,.breadcrumb-min-width .navigator-breadcrumbs-folder-name-wrapper .actions-wrapper li:first-child,.breadcrumb-min-width .breadcrumbs-container-wrapper .actions-wrapper li:first-child,.breadcrumb-min-width .breadcrumbs-container .actions-wrapper li:first-child,.breadcrumb-min-width .tools-container .actions-wrapper li:first-child,.breadcrumb-min-width .filter-files-container .actions-wrapper li:first-child,.breadcrumb-min-width .navigator-breadcrumbs .actions-wrapper li:first-child,.breadcrumb-min-width .navigator-button-wrapper .actions-wrapper li:first-child{padding-left:0}.breadcrumb-min-width .navigator-button-wrapper{margin-top:10px}.breadcrumb-min-width .navigator-breadcrumbs-name-dropdown-wrapper{min-height:inherit}.breadcrumb-min-width .navigator-breadcrumbs-name-dropdown-wrapper .filer-dropdown-container .fa-caret-down{vertical-align:text-top}.breadcrumb-min-width .breadcrumbs-container-inner .filer-dropdown-container{display:inline-block !important}.breadcrumb-min-width .navigator-tools{white-space:normal}.breadcrumb-min-width .filter-files-container{width:100%;margin-top:10px;z-index:auto}.breadcrumb-min-width .breadcrumbs-container{margin-right:0}.breadcrumb-min-width .navigator-breadcrumbs .icon{vertical-align:middle}.breadcrumb-min-width .navigator-breadcrumbs-folder-name-wrapper{float:left;width:calc(100% - 30px)}.navigator-tools{white-space:nowrap}.navigator-tools:before,.navigator-tools:after{content:" ";display:table}.navigator-tools:after{clear:both}@media screen and (max-width: 720px){.navigator-tools{display:inline}}.navigator-tools .actions-wrapper{display:inline-block;margin-bottom:0;margin-left:10px}.navigator-tools .actions-wrapper a,.navigator-tools .actions-wrapper a:hover{color:var(--dca-gray-light, var(--body-quiet-color, #999)) !important;cursor:not-allowed}@media screen and (max-width: 720px){.navigator-tools .actions-wrapper{float:none;margin-left:0}.navigator-tools .actions-wrapper:before,.navigator-tools .actions-wrapper:after{content:" ";display:table}.navigator-tools .actions-wrapper:after{clear:both}}.navigator-tools .actions-wrapper.action-selected a{color:var(--dca-gray, var(--body-quiet-color, #666)) !important;cursor:pointer}.navigator-tools .actions-wrapper.action-selected .actions-separated-list{display:inline-block}.navigator-tools .actions-wrapper+.filer-list-type-switcher-wrapper{border-left:solid 1px var(--dca-gray-lighter, var(--border-color, #ddd));margin-left:0}.navigator-tools .actions{display:none;float:right}@media screen and (max-width: 720px){.navigator-tools .actions{float:none;margin-bottom:10px}.navigator-tools .actions:before,.navigator-tools .actions:after{content:" ";display:table}.navigator-tools .actions:after{clear:both}}.navigator-tools .actions .all,.navigator-tools .actions .question,.navigator-tools .actions .clear,.navigator-tools .actions .action-counter{font-size:12px;line-height:34px;vertical-align:text-top}.navigator-tools .actions .action-counter,.navigator-tools .actions .all{color:var(--dca-gray-light, var(--body-quiet-color, #999))}.navigator-tools .actions .question,.navigator-tools .actions .clear{margin-left:10px;padding-left:10px;border-left:solid 1px var(--dca-gray-lighter, var(--border-color, #ddd))}.navigator-tools .filer-list-type-switcher-wrapper{display:inline-block;margin-left:10px}@media screen and (max-width: 720px){.navigator-top-nav .breadcrumbs-container{float:none}.navigator-top-nav .navigator-tools{float:none}.navigator-top-nav .navigator-tools .separator:before{top:0;bottom:0}}.navigator-button-wrapper{display:inline-block;vertical-align:top;text-align:right;margin-bottom:0;margin-left:10px}@media screen and (max-width: 720px){.navigator-button-wrapper{display:block;float:none;text-align:left;margin-top:0;margin-left:0}}.navigator-button{margin-right:10px}.navigator-button,.navigator-button:visited,.navigator-button:link:visited,.navigator-button:link{background-image:none !important;margin-bottom:0;border-radius:3px !important;color:var(--dca-white, var(--button-fg, #fff)) !important;background-color:var(--dca-primary, var(--primary, #0bf)) !important;border:1px solid var(--dca-primary, var(--primary, #0bf)) !important;background-clip:padding-box;-webkit-appearance:none;display:inline-block;vertical-align:top;padding:10px 20px !important}.navigator-button:focus,.navigator-button.focus,.navigator-button:hover,.navigator-button:visited:focus,.navigator-button:visited.focus,.navigator-button:visited:hover,.navigator-button:link:visited:focus,.navigator-button:link:visited.focus,.navigator-button:link:visited:hover,.navigator-button:link:focus,.navigator-button:link.focus,.navigator-button:link:hover{color:var(--dca-white, var(--button-fg, #fff)) !important;background-color:var(--dca-primary, var(--primary, #0bf)) !important;border-color:var(--dca-primary, var(--primary, #0bf)) !important;-webkit-filter:opacity(0.7) !important;filter:opacity(0.7) !important;text-decoration:none !important}.navigator-button:active,.navigator-button.cms-btn-active,.navigator-button:visited:active,.navigator-button:visited.cms-btn-active,.navigator-button:link:visited:active,.navigator-button:link:visited.cms-btn-active,.navigator-button:link:active,.navigator-button:link.cms-btn-active{color:var(--dca-white, var(--button-fg, #fff)) !important;background-color:var(--dca-primary, var(--primary, #0bf)) !important;border-color:var(--dca-primary, var(--primary, #0bf)) !important;-webkit-filter:brightness(var(--active-brightness)) opacity(1) !important;filter:brightness(var(--active-brightness)) opacity(1) !important;-webkit-box-shadow:inset 0 3px 5px rgba(var(--dca-black, var(--body-fg, #000)), 0.125) !important;box-shadow:inset 0 3px 5px rgba(var(--dca-black, var(--body-fg, #000)), 0.125) !important}.navigator-button:active:hover,.navigator-button:active:focus,.navigator-button:active.focus,.navigator-button.cms-btn-active:hover,.navigator-button.cms-btn-active:focus,.navigator-button.cms-btn-active.focus,.navigator-button:visited:active:hover,.navigator-button:visited:active:focus,.navigator-button:visited:active.focus,.navigator-button:visited.cms-btn-active:hover,.navigator-button:visited.cms-btn-active:focus,.navigator-button:visited.cms-btn-active.focus,.navigator-button:link:visited:active:hover,.navigator-button:link:visited:active:focus,.navigator-button:link:visited:active.focus,.navigator-button:link:visited.cms-btn-active:hover,.navigator-button:link:visited.cms-btn-active:focus,.navigator-button:link:visited.cms-btn-active.focus,.navigator-button:link:active:hover,.navigator-button:link:active:focus,.navigator-button:link:active.focus,.navigator-button:link.cms-btn-active:hover,.navigator-button:link.cms-btn-active:focus,.navigator-button:link.cms-btn-active.focus{color:var(--dca-white, var(--button-fg, #fff)) !important;background-color:var(--dca-primary, var(--primary, #0bf)) !important;border-color:var(--dca-primary, var(--primary, #0bf)) !important;-webkit-filter:brightness(calc(var(--focus-brightness) * var(--active-brightness))) opacity(1) !important;filter:brightness(calc(var(--focus-brightness) * var(--active-brightness))) opacity(1) !important}.navigator-button:active,.navigator-button.cms-btn-active,.navigator-button:visited:active,.navigator-button:visited.cms-btn-active,.navigator-button:link:visited:active,.navigator-button:link:visited.cms-btn-active,.navigator-button:link:active,.navigator-button:link.cms-btn-active{background-image:none !important}.navigator-button.cms-btn-disabled,.navigator-button.cms-btn-disabled:hover,.navigator-button.cms-btn-disabled:focus,.navigator-button.cms-btn-disabled.focus,.navigator-button.cms-btn-disabled:active,.navigator-button.cms-btn-disabled.cms-btn-active,.navigator-button[disabled],.navigator-button[disabled]:hover,.navigator-button[disabled]:focus,.navigator-button[disabled].focus,.navigator-button[disabled]:active,.navigator-button[disabled].cms-btn-active,.navigator-button:visited.cms-btn-disabled,.navigator-button:visited.cms-btn-disabled:hover,.navigator-button:visited.cms-btn-disabled:focus,.navigator-button:visited.cms-btn-disabled.focus,.navigator-button:visited.cms-btn-disabled:active,.navigator-button:visited.cms-btn-disabled.cms-btn-active,.navigator-button:visited[disabled],.navigator-button:visited[disabled]:hover,.navigator-button:visited[disabled]:focus,.navigator-button:visited[disabled].focus,.navigator-button:visited[disabled]:active,.navigator-button:visited[disabled].cms-btn-active,.navigator-button:link:visited.cms-btn-disabled,.navigator-button:link:visited.cms-btn-disabled:hover,.navigator-button:link:visited.cms-btn-disabled:focus,.navigator-button:link:visited.cms-btn-disabled.focus,.navigator-button:link:visited.cms-btn-disabled:active,.navigator-button:link:visited.cms-btn-disabled.cms-btn-active,.navigator-button:link:visited[disabled],.navigator-button:link:visited[disabled]:hover,.navigator-button:link:visited[disabled]:focus,.navigator-button:link:visited[disabled].focus,.navigator-button:link:visited[disabled]:active,.navigator-button:link:visited[disabled].cms-btn-active,.navigator-button:link.cms-btn-disabled,.navigator-button:link.cms-btn-disabled:hover,.navigator-button:link.cms-btn-disabled:focus,.navigator-button:link.cms-btn-disabled.focus,.navigator-button:link.cms-btn-disabled:active,.navigator-button:link.cms-btn-disabled.cms-btn-active,.navigator-button:link[disabled],.navigator-button:link[disabled]:hover,.navigator-button:link[disabled]:focus,.navigator-button:link[disabled].focus,.navigator-button:link[disabled]:active,.navigator-button:link[disabled].cms-btn-active{background-color:var(--dca-primary, var(--primary, #0bf)) !important;border-color:var(--dca-primary, var(--primary, #0bf)) !important;color:var(--dca-white, var(--button-fg, #fff)) true;-webkit-filter:brightness(0.6) opacity(1);filter:brightness(0.6) opacity(1);cursor:not-allowed;-webkit-box-shadow:none !important;box-shadow:none !important}.navigator-button.cms-btn-disabled:before,.navigator-button.cms-btn-disabled:hover:before,.navigator-button.cms-btn-disabled:focus:before,.navigator-button.cms-btn-disabled.focus:before,.navigator-button.cms-btn-disabled:active:before,.navigator-button.cms-btn-disabled.cms-btn-active:before,.navigator-button[disabled]:before,.navigator-button[disabled]:hover:before,.navigator-button[disabled]:focus:before,.navigator-button[disabled].focus:before,.navigator-button[disabled]:active:before,.navigator-button[disabled].cms-btn-active:before,.navigator-button:visited.cms-btn-disabled:before,.navigator-button:visited.cms-btn-disabled:hover:before,.navigator-button:visited.cms-btn-disabled:focus:before,.navigator-button:visited.cms-btn-disabled.focus:before,.navigator-button:visited.cms-btn-disabled:active:before,.navigator-button:visited.cms-btn-disabled.cms-btn-active:before,.navigator-button:visited[disabled]:before,.navigator-button:visited[disabled]:hover:before,.navigator-button:visited[disabled]:focus:before,.navigator-button:visited[disabled].focus:before,.navigator-button:visited[disabled]:active:before,.navigator-button:visited[disabled].cms-btn-active:before,.navigator-button:link:visited.cms-btn-disabled:before,.navigator-button:link:visited.cms-btn-disabled:hover:before,.navigator-button:link:visited.cms-btn-disabled:focus:before,.navigator-button:link:visited.cms-btn-disabled.focus:before,.navigator-button:link:visited.cms-btn-disabled:active:before,.navigator-button:link:visited.cms-btn-disabled.cms-btn-active:before,.navigator-button:link:visited[disabled]:before,.navigator-button:link:visited[disabled]:hover:before,.navigator-button:link:visited[disabled]:focus:before,.navigator-button:link:visited[disabled].focus:before,.navigator-button:link:visited[disabled]:active:before,.navigator-button:link:visited[disabled].cms-btn-active:before,.navigator-button:link.cms-btn-disabled:before,.navigator-button:link.cms-btn-disabled:hover:before,.navigator-button:link.cms-btn-disabled:focus:before,.navigator-button:link.cms-btn-disabled.focus:before,.navigator-button:link.cms-btn-disabled:active:before,.navigator-button:link.cms-btn-disabled.cms-btn-active:before,.navigator-button:link[disabled]:before,.navigator-button:link[disabled]:hover:before,.navigator-button:link[disabled]:focus:before,.navigator-button:link[disabled].focus:before,.navigator-button:link[disabled]:active:before,.navigator-button:link[disabled].cms-btn-active:before{color:var(--dca-white, var(--button-fg, #fff)) true;-webkit-filter:brightness(0.6) opacity(1);filter:brightness(0.6) opacity(1)}.navigator-button .icon{position:relative;margin-right:3px}.navigator-button .fa-folder{top:0}.navigator-button.navigator-button-upload{margin-right:0}.upload-button-disabled{display:inline-block}.navigator-button+.filer-dropdown-menu{margin-top:-2px}.navigator{position:relative;overflow-x:auto;width:100%}.navigator form{margin:0;padding:0;-webkit-box-shadow:none;box-shadow:none}.filer-dropdown-container{display:inline-block;position:relative;vertical-align:top}.filer-dropdown-container .fa-caret-down,.filer-dropdown-container .cms-icon-caret-down{font-size:14px}.filer-dropdown-container .filer-dropdown-menu,.filer-dropdown-container+.filer-dropdown-menu{display:none;right:0;left:auto;border:0;-webkit-box-shadow:0 1px 10px rgba(0,0,0,.25);box-shadow:0 1px 10px rgba(0,0,0,.25)}.filer-dropdown-container .filer-dropdown-menu>li>a,.filer-dropdown-container+.filer-dropdown-menu>li>a{display:block;color:var(--dca-primary, var(--primary, #0bf));font-weight:normal;white-space:normal;padding:12px 20px !important}@media screen and (min-width: 720px){.filer-dropdown-container .filer-dropdown-menu>li>a,.filer-dropdown-container+.filer-dropdown-menu>li>a{white-space:nowrap}}.filer-dropdown-container .filer-dropdown-menu label,.filer-dropdown-container+.filer-dropdown-menu label{display:block;line-height:20px !important;text-transform:none;width:auto;margin:5px 0 !important;padding:0 10px !important}.filer-dropdown-container .filer-dropdown-menu input,.filer-dropdown-container+.filer-dropdown-menu input{position:relative;top:4px;vertical-align:top;margin-right:5px}.filer-dropdown-container .filer-dropdown-menu.filer-dropdown-menu-checkboxes,.filer-dropdown-container+.filer-dropdown-menu.filer-dropdown-menu-checkboxes{width:0;min-height:50px;padding:15px;border:0;-webkit-box-shadow:0 1px 10px rgba(0,0,0,.25);box-shadow:0 1px 10px rgba(0,0,0,.25)}.filer-dropdown-container .filer-dropdown-menu.filer-dropdown-menu-checkboxes:before,.filer-dropdown-container+.filer-dropdown-menu.filer-dropdown-menu-checkboxes:before{display:none}.filer-dropdown-container .filer-dropdown-menu.filer-dropdown-menu-checkboxes .fa-close,.filer-dropdown-container+.filer-dropdown-menu.filer-dropdown-menu-checkboxes .fa-close{position:absolute;top:10px;right:10px;color:var(--dca-gray, var(--body-quiet-color, #666));cursor:pointer}.filer-dropdown-container .filer-dropdown-menu.filer-dropdown-menu-checkboxes .fa-close:hover,.filer-dropdown-container+.filer-dropdown-menu.filer-dropdown-menu-checkboxes .fa-close:hover{color:var(--dca-primary, var(--primary, #0bf))}.filer-dropdown-container .filer-dropdown-menu.filer-dropdown-menu-checkboxes p,.filer-dropdown-container+.filer-dropdown-menu.filer-dropdown-menu-checkboxes p{color:var(--dca-gray-light, var(--body-quiet-color, #999)) !important;font-weight:normal;text-transform:uppercase;margin-bottom:5px}.filer-dropdown-container .filer-dropdown-menu.filer-dropdown-menu-checkboxes label,.filer-dropdown-container+.filer-dropdown-menu.filer-dropdown-menu-checkboxes label{color:var(--dca-gray, var(--body-quiet-color, #666)) !important;font-weight:normal;padding:0 !important;margin-top:0 !important}.filer-dropdown-container .filer-dropdown-menu.filer-dropdown-menu-checkboxes label input,.filer-dropdown-container+.filer-dropdown-menu.filer-dropdown-menu-checkboxes label input{margin-left:0}.filer-dropdown-container .filer-dropdown-menu a:hover,.filer-dropdown-container+.filer-dropdown-menu a:hover{color:var(--dca-white, var(--body-bg, #fff)) !important;background:var(--dca-primary, var(--primary, #0bf)) !important}.filer-dropdown-container.open .filer-dropdown-menu{display:block}.filer-dropdown-container.open .filer-dropdown-menu li{margin:0;padding:0;list-style-type:none}.filer-dropdown-container+.separator{margin-right:10px}.filer-dropdown-container-down>a,.filer-dropdown-container-down>a:link,.filer-dropdown-container-down>a:visited,.filer-dropdown-container-down>a:link:visited{color:var(--dca-gray, var(--body-quiet-color, #666));font-size:20px;line-height:35px;height:35px;padding:0 10px}.filer-dropdown-container-down .filer-dropdown-menu{right:auto;left:-14px;margin-right:10px}.filer-dropdown-menu{position:absolute;top:100%;z-index:1000;display:none;float:left;min-width:160px;margin:2px 0 0;margin-top:0 !important;padding:0;list-style:none;font-size:14px;text-align:left;background-color:var(--dca-white, var(--body-bg, #fff));border-radius:4px;background-clip:padding-box}.filer-dropdown-menu:before{position:absolute;top:-5px;left:35px;z-index:-1;content:"";width:10px;height:10px;margin-left:-5px;-webkit-transform:rotate(45deg);transform:rotate(45deg);background-color:var(--dca-white, var(--body-bg, #fff))}.filer-dropdown-menu.create-menu-dropdown:before{left:auto;right:17px}.navigator-breadcrumbs{display:table-cell;vertical-align:middle;font-size:16px;white-space:nowrap;width:60px}.navigator-breadcrumbs:before,.navigator-breadcrumbs:after{content:" ";display:table}.navigator-breadcrumbs:after{clear:both}.navigator-breadcrumbs>a{color:var(--dca-gray-darkest, var(--body-fg, #333)) !important}.navigator-breadcrumbs .icon{color:var(--dca-gray-light, var(--body-quiet-color, #999));line-height:35px;height:35px;margin:0 5px}.navigator-breadcrumbs .icon:before{vertical-align:middle}.navigator-breadcrumbs li{list-style-type:none}.navigator-breadcrumbs-folder-name-wrapper{display:table-cell;overflow:hidden;font-size:16px;font-weight:bold;vertical-align:middle;white-space:nowrap}.navigator-breadcrumbs-folder-name{display:block;overflow:hidden;white-space:normal;line-height:35px;width:100%;height:35px}.navigator-breadcrumbs-folder-name-inner{display:block;position:relative;overflow:hidden;line-height:35px;height:35px;width:100%;text-overflow:ellipsis}.filer-navigator-breadcrumbs-dropdown-container{position:relative;float:left;vertical-align:middle;margin:0 7px 0 0}.filer-navigator-breadcrumbs-dropdown-container>a img{padding:3px 0}.filer-navigator-breadcrumbs-dropdown-container .navigator-breadcrumbs-dropdown{left:-15px !important;min-width:200px;padding:0;margin-top:0;border:0;-webkit-box-shadow:0 1px 10px rgba(0,0,0,.25);box-shadow:0 1px 10px rgba(0,0,0,.25)}.filer-navigator-breadcrumbs-dropdown-container .navigator-breadcrumbs-dropdown>li{padding:0}.filer-navigator-breadcrumbs-dropdown-container .navigator-breadcrumbs-dropdown>li>a{color:var(--dca-primary, var(--primary, #0bf));padding:12px 20px 3px !important;border-bottom:solid 1px var(--dca-gray-lightest, var(--darkened-bg, #f2f2f2))}.filer-navigator-breadcrumbs-dropdown-container .navigator-breadcrumbs-dropdown>li>a:hover{color:var(--dca-white, var(--body-bg, #fff)) !important;background:var(--dca-primary, var(--primary, #0bf)) !important}.filer-navigator-breadcrumbs-dropdown-container .navigator-breadcrumbs-dropdown>li:last-child>a{border-bottom:none}.filer-navigator-breadcrumbs-dropdown-container .navigator-breadcrumbs-dropdown img{position:relative;top:-5px;vertical-align:top;margin:0 10px 0 0}.navigator-dropdown-arrow-up{position:relative;left:20px;overflow:hidden;width:20px;height:20px;margin-top:-20px;z-index:1001}.navigator-dropdown-arrow-up:after{content:"";position:absolute;top:15px;left:5px;width:10px;height:10px;background:#fff;-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-box-shadow:0 1px 10px rgba(0,0,0,.25);box-shadow:0 1px 10px rgba(0,0,0,.25)}.navigator-breadcrumbs-name-dropdown-wrapper{display:table;min-height:35px}.navigator-breadcrumbs-name-dropdown-wrapper .filer-dropdown-menu{left:auto;right:-80px}.navigator-breadcrumbs-name-dropdown-wrapper .filer-dropdown-menu:before{right:80px;left:auto}.navigator-breadcrumbs-name-dropdown-wrapper a{display:inline-block}.empty-filer-header-cell{display:table-cell;vertical-align:middle}.filebrowser .navigator-thumbnail-list{overflow:hidden}.filebrowser .navigator-thumbnail-list .navigator-list{border-top:0 !important}.filebrowser .navigator-thumbnail-list .navigator-thumbnail-list-header>*{display:inline-block;text-transform:uppercase;margin:0;padding:0;padding-left:10px}.filebrowser .navigator-thumbnail-list .navigator-thumbnail-list-header .navigator-checkbox{float:right;padding-right:20px;text-transform:initial;color:var(--dca-primary, var(--primary, #0bf))}.filebrowser .navigator-thumbnail-list .navigator-thumbnail-list-header .navigator-checkbox input[type=checkbox]{margin-left:5px;vertical-align:middle}.filebrowser .navigator-thumbnail-list .navigator-body{padding:0 !important}.filebrowser .navigator-thumbnail-list .navigator-body:before,.filebrowser .navigator-thumbnail-list .navigator-body:after{content:" ";display:table}.filebrowser .navigator-thumbnail-list .navigator-body:after{clear:both}.filebrowser .navigator-thumbnail-list .thumbnail-item{float:left;display:inline-block;padding:10px;width:125px;height:125px;border:1px solid var(--dca-gray-lighter, var(--border-color, #ddd));margin:16px 12px;background-color:var(--dca-white, var(--body-bg, #fff));position:relative;overflow:hidden}.filebrowser .navigator-thumbnail-list .thumbnail-item .thumbnail-file-item-box{padding:10px;width:125px;height:125px;border:1px solid var(--dca-gray-lighter, var(--border-color, #ddd));margin:16px 12px;background-color:var(--dca-white, var(--body-bg, #fff))}.filebrowser .navigator-thumbnail-list .thumbnail-item .thumbnail-file-item-box:hover{background-color:#f1faff}.filebrowser .navigator-thumbnail-list .thumbnail-item .navigator-checkbox{position:absolute;top:5px;left:5px}.filebrowser .navigator-thumbnail-list .thumbnail-item .navigator-checkbox input{margin:0;vertical-align:top}.filebrowser .navigator-thumbnail-list .thumbnail-item .item-thumbnail,.filebrowser .navigator-thumbnail-list .thumbnail-item .item-icon{height:50%;width:50%;margin:10px auto;margin-bottom:18px}.filebrowser .navigator-thumbnail-list .thumbnail-item .item-thumbnail a,.filebrowser .navigator-thumbnail-list .thumbnail-item .item-icon a{display:block;height:100%;width:100%}.filebrowser .navigator-thumbnail-list .thumbnail-item .item-thumbnail img,.filebrowser .navigator-thumbnail-list .thumbnail-item .item-icon img{width:100%;height:100%}.filebrowser .navigator-thumbnail-list .thumbnail-item .item-name{background:rgba(0,0,0,0);text-align:center;word-break:break-word}.filebrowser .navigator-thumbnail-list .thumbnail-virtual-item{background-color:initial}.filebrowser .navigator-thumbnail-list .thumbnail-folder-item:hover{background-color:#f1faff}.filebrowser .navigator-thumbnail-list .thumbnail-file-item{float:none;width:147px;height:200px;border:0;padding:0;background-color:rgba(0,0,0,0)}.filebrowser .navigator-thumbnail-list .thumbnail-file-item .thumbnail-file-item-box{float:none;margin:0;margin-bottom:5px}.filebrowser .navigator-thumbnail-list .thumbnail-file-item .item-thumbnail{margin:0;height:100%;width:100%}.filebrowser .navigator-thumbnail-list .thumbnail-file-item .item-name{position:relative;word-break:break-word}.insertlinkButton:before{content:"" !important}.insertlinkButton span{font-size:17px}.popup.app-cmsplugin_filer_image .form-row.field-image .field-box,.popup.app-cmsplugin_filer_image .field-box.field-free_link,.popup.app-cmsplugin_filer_image .field-box.field-page_link,.popup.app-cmsplugin_filer_image .field-box.field-file_link{float:none !important;margin-right:0 !important;margin-top:20px !important}.popup.app-cmsplugin_filer_image .form-row.field-image .field-box:first-child,.popup.app-cmsplugin_filer_image .field-box.field-free_link:first-child,.popup.app-cmsplugin_filer_image .field-box.field-page_link:first-child,.popup.app-cmsplugin_filer_image .field-box.field-file_link:first-child{margin-top:0 !important}.popup.app-cmsplugin_filer_image .form-row.field-image .field-box input,.popup.app-cmsplugin_filer_image .field-box.field-free_link input,.popup.app-cmsplugin_filer_image .field-box.field-page_link input,.popup.app-cmsplugin_filer_image .field-box.field-file_link input{width:100% !important}.popup.app-cmsplugin_filer_image .form-row .field-box.field-crop,.popup.app-cmsplugin_filer_image .form-row .field-box.field-upscale{margin-top:30px}.popup.delete-confirmation .colM ul{margin-bottom:25px !important}.popup .image-info-detail{padding:0;padding-bottom:25px;margin-bottom:30px;-webkit-box-shadow:none;box-shadow:none;border-bottom:solid 1px var(--dca-gray-lighter, var(--border-color, #ddd))}.popup.change-list.filebrowser #result_list tbody th,.popup.change-list.filebrowser #result_list tbody td{height:auto}.popup .filer-dropzone{padding:5px 20px}.popup form .form-row .filer-dropzone .filerFile{top:8px}.popup.filebrowser #container #content{margin:0 !important}.popup .navigator-button-wrapper{float:right}@media screen and (max-width: 720px){.popup .navigator-button-wrapper{float:none}}.popup .navigator-top-nav .tools-container{width:70%}.popup .navigator-top-nav .breadcrumbs-container{width:30%}@media screen and (max-width: 720px){.popup .navigator-top-nav .tools-container,.popup .navigator-top-nav .breadcrumbs-container{width:100%}}form .form-row[class*=file] .related-widget-wrapper-link,form .form-row[class*=folder] .related-widget-wrapper-link,form .form-row[class*=img] .related-widget-wrapper-link,form .form-row[class*=image] .related-widget-wrapper-link,form .form-row[class*=visual] .related-widget-wrapper-link{display:none}form .form-row .filer-dropzone{position:relative;min-width:215px;border:solid 1px var(--dca-gray-lighter, var(--border-color, #ddd));border-radius:3px;background-color:var(--dca-gray-lightest, var(--darkened-bg, #f2f2f2));-webkit-box-sizing:border-box !important;box-sizing:border-box !important}form .form-row .filer-dropzone:before,form .form-row .filer-dropzone:after{content:" ";display:table}form .form-row .filer-dropzone:after{clear:both}form .form-row .filer-dropzone .z-index-fix{position:absolute;top:0;right:0;bottom:0;left:0}form .form-row .filer-dropzone.dz-drag-hover{background-color:var(--dca-primary, var(--primary, #0bf));-webkit-filter:brightness(1.5);filter:brightness(1.5);border:solid 2px var(--dca-primary, var(--primary, #0bf)) !important}form .form-row .filer-dropzone.dz-drag-hover .z-index-fix{z-index:1}form .form-row .filer-dropzone.dz-drag-hover .dz-message{opacity:1;display:block !important;visibility:visible}form .form-row .filer-dropzone.dz-drag-hover .filerFile{display:none}form .form-row .filer-dropzone.dz-drag-hover .dz-message,form .form-row .filer-dropzone.dz-drag-hover .dz-message .icon{color:var(--dca-primary, var(--primary, #0bf)) !important}form .form-row .filer-dropzone.dz-started .fileUpload{display:none}form .form-row .filer-dropzone .dz-preview{width:100%;min-height:auto;margin-right:0;margin-bottom:0;margin-left:0;padding-bottom:10px;border-bottom:solid 1px var(--dca-gray-lighter, var(--border-color, #ddd))}form .form-row .filer-dropzone .dz-preview.dz-error{position:relative}form .form-row .filer-dropzone .dz-preview.dz-error .dz-error-message{display:none}form .form-row .filer-dropzone .dz-preview.dz-error:hover .dz-error-message{display:block}form .form-row .filer-dropzone .dz-preview .dz-details{min-width:calc(100% - 80px);max-width:calc(100% - 80px);margin-top:7px;margin-left:40px;padding:0;opacity:1}form .form-row .filer-dropzone .dz-preview .dz-details .dz-filename,form .form-row .filer-dropzone .dz-preview .dz-details .dz-filename:hover,form .form-row .filer-dropzone .dz-preview .dz-details .dz-size{float:left;text-align:left}form .form-row .filer-dropzone .dz-preview .dz-details .dz-filename span,form .form-row .filer-dropzone .dz-preview .dz-details .dz-filename:hover span,form .form-row .filer-dropzone .dz-preview .dz-details .dz-size span{color:var(--dca-gray, var(--body-quiet-color, #666));border:0 !important;background-color:rgba(0,0,0,0) !important}form .form-row .filer-dropzone .dz-preview .dz-remove{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-trash' viewBox='0 0 16 16'%3E%3Cpath d='M5.5 5.5A.5.5 0 0 1 6 6v6a.5.5 0 0 1-1 0V6a.5.5 0 0 1 .5-.5Zm2.5 0a.5.5 0 0 1 .5.5v6a.5.5 0 0 1-1 0V6a.5.5 0 0 1 .5-.5Zm3 .5a.5.5 0 0 0-1 0v6a.5.5 0 0 0 1 0V6Z'/%3E%3Cpath d='M14.5 3a1 1 0 0 1-1 1H13v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V4h-.5a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1H6a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1h3.5a1 1 0 0 1 1 1v1ZM4.118 4 4 4.059V13a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4.059L11.882 4H4.118ZM2.5 3h11V2h-11v1Z'/%3E%3C/svg%3E%0A");background-size:contain;display:inline-block;position:absolute;top:7px;right:25px;font:0/0 a;width:18px;height:18px}form .form-row .filer-dropzone .dz-preview .dz-error-message{top:65px;left:0;width:100%}form .form-row .filer-dropzone .dz-preview .dz-success-mark,form .form-row .filer-dropzone .dz-preview .dz-error-mark{top:5px;right:0;left:auto;margin-top:0}form .form-row .filer-dropzone .dz-preview .dz-success-mark:before,form .form-row .filer-dropzone .dz-preview .dz-error-mark:before{color:var(--dca-gray, var(--body-quiet-color, #666))}form .form-row .filer-dropzone .dz-preview .dz-success-mark svg,form .form-row .filer-dropzone .dz-preview .dz-error-mark svg{display:none}form .form-row .filer-dropzone .dz-preview .dz-success-mark{width:16px;height:16px;background-image:url("data:image/svg+xml,%3Csvg width='13' height='13' viewBox='0 0 1792 1792' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%2370bf2b' d='M1412 734q0-28-18-46l-91-90q-19-19-45-19t-45 19l-408 407-226-226q-19-19-45-19t-45 19l-91 90q-18 18-18 46 0 27 18 45l362 362q19 19 45 19 27 0 46-19l543-543q18-18 18-45zm252 162q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z'/%3E%3C/svg%3E%0A");background-size:contain}form .form-row .filer-dropzone .dz-preview .dz-error-mark{background-image:url("data:image/svg+xml,%3Csvg width='13' height='13' viewBox='0 0 1792 1792' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23dd4646' d='M1277 1122q0-26-19-45l-181-181 181-181q19-19 19-45 0-27-19-46l-90-90q-19-19-46-19-26 0-45 19l-181 181-181-181q-19-19-45-19-27 0-46 19l-90 90q-19 19-19 46 0 26 19 45l181 181-181 181q-19 19-19 45 0 27 19 46l90 90q19 19 46 19 26 0 45-19l181-181 181 181q19 19 45 19 27 0 46-19l90-90q19-19 19-46zm387-226q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z'/%3E%3C/svg%3E%0A");width:16px;height:16px;background-size:contain}form .form-row .filer-dropzone .dz-preview.dz-image-preview,form .form-row .filer-dropzone .dz-preview.dz-file-preview{background-color:rgba(0,0,0,0)}form .form-row .filer-dropzone .dz-preview.dz-image-preview .dz-image,form .form-row .filer-dropzone .dz-preview.dz-file-preview .dz-image{overflow:hidden;width:36px;height:36px;border:solid 1px var(--dca-gray-lighter, var(--border-color, #ddd));border-radius:0}form .form-row .filer-dropzone .dz-preview.dz-image-preview .dz-image img,form .form-row .filer-dropzone .dz-preview.dz-file-preview .dz-image img{width:100%;height:auto}form .form-row .filer-dropzone .dz-preview .dz-progress{top:18px;left:0;width:calc(100% - 40px);height:10px;margin-left:40px}form .form-row .filer-dropzone .dz-message{float:right;color:var(--dca-gray-lightest, var(--darkened-bg, #f2f2f2));width:100%;margin:15px 0 0}form .form-row .filer-dropzone .icon{position:relative;top:3px;color:var(--dca-gray-lightest, var(--darkened-bg, #f2f2f2));font-size:24px;margin-right:10px}form .form-row .filer-dropzone .filerFile .related-lookup{background-image:none !important;margin-bottom:0;border-radius:3px !important;color:var(--dca-white, var(--button-fg, #fff)) !important;background-color:var(--dca-primary, var(--primary, #0bf)) !important;border:1px solid var(--dca-primary, var(--primary, #0bf)) !important;background-clip:padding-box;-webkit-appearance:none;float:left !important;overflow:hidden;line-height:14px;width:auto !important;height:auto !important;padding:10px 20px !important;margin-top:24px;margin-left:10px;text-align:center !important;cursor:pointer}form .form-row .filer-dropzone .filerFile .related-lookup:focus,form .form-row .filer-dropzone .filerFile .related-lookup.focus,form .form-row .filer-dropzone .filerFile .related-lookup:hover{color:var(--dca-white, var(--button-fg, #fff)) !important;background-color:var(--dca-primary, var(--primary, #0bf)) !important;border-color:var(--dca-primary, var(--primary, #0bf)) !important;-webkit-filter:opacity(0.7) !important;filter:opacity(0.7) !important;text-decoration:none !important}form .form-row .filer-dropzone .filerFile .related-lookup:active,form .form-row .filer-dropzone .filerFile .related-lookup.cms-btn-active{color:var(--dca-white, var(--button-fg, #fff)) !important;background-color:var(--dca-primary, var(--primary, #0bf)) !important;border-color:var(--dca-primary, var(--primary, #0bf)) !important;-webkit-filter:brightness(var(--active-brightness)) opacity(1) !important;filter:brightness(var(--active-brightness)) opacity(1) !important;-webkit-box-shadow:inset 0 3px 5px rgba(var(--dca-black, var(--body-fg, #000)), 0.125) !important;box-shadow:inset 0 3px 5px rgba(var(--dca-black, var(--body-fg, #000)), 0.125) !important}form .form-row .filer-dropzone .filerFile .related-lookup:active:hover,form .form-row .filer-dropzone .filerFile .related-lookup:active:focus,form .form-row .filer-dropzone .filerFile .related-lookup:active.focus,form .form-row .filer-dropzone .filerFile .related-lookup.cms-btn-active:hover,form .form-row .filer-dropzone .filerFile .related-lookup.cms-btn-active:focus,form .form-row .filer-dropzone .filerFile .related-lookup.cms-btn-active.focus{color:var(--dca-white, var(--button-fg, #fff)) !important;background-color:var(--dca-primary, var(--primary, #0bf)) !important;border-color:var(--dca-primary, var(--primary, #0bf)) !important;-webkit-filter:brightness(calc(var(--focus-brightness) * var(--active-brightness))) opacity(1) !important;filter:brightness(calc(var(--focus-brightness) * var(--active-brightness))) opacity(1) !important}form .form-row .filer-dropzone .filerFile .related-lookup:active,form .form-row .filer-dropzone .filerFile .related-lookup.cms-btn-active{background-image:none !important}form .form-row .filer-dropzone .filerFile .related-lookup.cms-btn-disabled,form .form-row .filer-dropzone .filerFile .related-lookup.cms-btn-disabled:hover,form .form-row .filer-dropzone .filerFile .related-lookup.cms-btn-disabled:focus,form .form-row .filer-dropzone .filerFile .related-lookup.cms-btn-disabled.focus,form .form-row .filer-dropzone .filerFile .related-lookup.cms-btn-disabled:active,form .form-row .filer-dropzone .filerFile .related-lookup.cms-btn-disabled.cms-btn-active,form .form-row .filer-dropzone .filerFile .related-lookup[disabled],form .form-row .filer-dropzone .filerFile .related-lookup[disabled]:hover,form .form-row .filer-dropzone .filerFile .related-lookup[disabled]:focus,form .form-row .filer-dropzone .filerFile .related-lookup[disabled].focus,form .form-row .filer-dropzone .filerFile .related-lookup[disabled]:active,form .form-row .filer-dropzone .filerFile .related-lookup[disabled].cms-btn-active{background-color:var(--dca-primary, var(--primary, #0bf)) !important;border-color:var(--dca-primary, var(--primary, #0bf)) !important;color:var(--dca-white, var(--button-fg, #fff)) true;-webkit-filter:brightness(0.6) opacity(1);filter:brightness(0.6) opacity(1);cursor:not-allowed;-webkit-box-shadow:none !important;box-shadow:none !important}form .form-row .filer-dropzone .filerFile .related-lookup.cms-btn-disabled:before,form .form-row .filer-dropzone .filerFile .related-lookup.cms-btn-disabled:hover:before,form .form-row .filer-dropzone .filerFile .related-lookup.cms-btn-disabled:focus:before,form .form-row .filer-dropzone .filerFile .related-lookup.cms-btn-disabled.focus:before,form .form-row .filer-dropzone .filerFile .related-lookup.cms-btn-disabled:active:before,form .form-row .filer-dropzone .filerFile .related-lookup.cms-btn-disabled.cms-btn-active:before,form .form-row .filer-dropzone .filerFile .related-lookup[disabled]:before,form .form-row .filer-dropzone .filerFile .related-lookup[disabled]:hover:before,form .form-row .filer-dropzone .filerFile .related-lookup[disabled]:focus:before,form .form-row .filer-dropzone .filerFile .related-lookup[disabled].focus:before,form .form-row .filer-dropzone .filerFile .related-lookup[disabled]:active:before,form .form-row .filer-dropzone .filerFile .related-lookup[disabled].cms-btn-active:before{color:var(--dca-white, var(--button-fg, #fff)) true;-webkit-filter:brightness(0.6) opacity(1);filter:brightness(0.6) opacity(1)}form .form-row .filer-dropzone .filerFile .related-lookup .cms-icon{color:var(--dca-white, var(--body-bg, #fff));font-size:17px;margin:0 10px 0 0;vertical-align:middle}form .form-row .filer-dropzone .filerFile .related-lookup:before{display:none}form .form-row .filer-dropzone .filerFile .related-lookup .choose-file,form .form-row .filer-dropzone .filerFile .related-lookup .replace-file,form .form-row .filer-dropzone .filerFile .related-lookup .edit-file{color:var(--dca-white, var(--body-bg, #fff));margin:0}form .form-row .filer-dropzone .filerFile .related-lookup .replace-file{display:none}form .form-row .filer-dropzone .filerFile .related-lookup.edit{display:none}form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change{background-image:none !important;margin-bottom:0;border-radius:3px !important;color:var(--dca-gray-light, var(--button-fg, #999)) !important;background-color:var(--dca-white, var(--button-bg, #fff)) !important;border:1px solid var(--dca-gray-lighter, transparent) !important;background-clip:padding-box;-webkit-appearance:none;float:right !important;padding:5px 0 !important;width:36px !important;height:36px !important}form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change:focus,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.focus,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change:hover{color:var(--dca-gray-light, var(--button-fg, #999)) !important;background-color:var(--dca-white, var(--button-bg, #fff)) !important;border-color:var(--dca-gray-lighter, transparent) !important;-webkit-filter:opacity(0.7) !important;filter:opacity(0.7) !important;text-decoration:none !important}form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change:active,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.cms-btn-active{color:var(--dca-gray-light, var(--button-fg, #999)) !important;background-color:var(--dca-white, var(--button-bg, #fff)) !important;border-color:var(--dca-gray-lighter, transparent) !important;-webkit-filter:brightness(var(--active-brightness)) opacity(1) !important;filter:brightness(var(--active-brightness)) opacity(1) !important;-webkit-box-shadow:inset 0 3px 5px rgba(var(--dca-black, var(--body-fg, #000)), 0.125) !important;box-shadow:inset 0 3px 5px rgba(var(--dca-black, var(--body-fg, #000)), 0.125) !important}form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change:active:hover,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change:active:focus,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change:active.focus,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.cms-btn-active:hover,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.cms-btn-active:focus,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.cms-btn-active.focus{color:var(--dca-gray-light, var(--button-fg, #999)) !important;background-color:var(--dca-white, var(--button-bg, #fff)) !important;border-color:var(--dca-gray-lighter, transparent) !important;-webkit-filter:brightness(calc(var(--focus-brightness) * var(--active-brightness))) opacity(1) !important;filter:brightness(calc(var(--focus-brightness) * var(--active-brightness))) opacity(1) !important}form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change:active,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.cms-btn-active{background-image:none !important}form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.cms-btn-disabled,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.cms-btn-disabled:hover,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.cms-btn-disabled:focus,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.cms-btn-disabled.focus,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.cms-btn-disabled:active,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.cms-btn-disabled.cms-btn-active,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change[disabled],form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change[disabled]:hover,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change[disabled]:focus,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change[disabled].focus,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change[disabled]:active,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change[disabled].cms-btn-active{background-color:var(--dca-white, var(--button-bg, #fff)) !important;border-color:var(--dca-gray-lighter, transparent) !important;color:var(--dca-gray-light, var(--button-fg, #999)) true;-webkit-filter:brightness(0.6) opacity(1);filter:brightness(0.6) opacity(1);cursor:not-allowed;-webkit-box-shadow:none !important;box-shadow:none !important}form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.cms-btn-disabled:before,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.cms-btn-disabled:hover:before,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.cms-btn-disabled:focus:before,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.cms-btn-disabled.focus:before,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.cms-btn-disabled:active:before,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.cms-btn-disabled.cms-btn-active:before,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change[disabled]:before,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change[disabled]:hover:before,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change[disabled]:focus:before,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change[disabled].focus:before,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change[disabled]:active:before,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change[disabled].cms-btn-active:before{color:var(--dca-gray-light, var(--button-fg, #999)) true;-webkit-filter:brightness(0.6) opacity(1);filter:brightness(0.6) opacity(1)}form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change:focus{background-color:var(--dca-white, var(--body-bg, #fff)) !important}form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change span{text-align:center;line-height:24px}form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change .cms-icon{color:var(--dca-gray-light, var(--button-fg, #999));margin-right:0 !important}form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change .choose-file{display:none}form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change .replace-file{display:block}form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.lookup{display:block !important}form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.edit{display:block}form .form-row .filer-dropzone .filerClearer{width:36px !important;height:36px !important;color:red}form .form-row .filer-dropzone .filerFile{position:absolute;top:9px;left:20px;width:calc(100% - 40px)}form .form-row .filer-dropzone .filerFile img[src*=nofile]{background-color:var(--dca-white, var(--body-bg, #fff))}form .form-row .filer-dropzone .filerFile span:not(:empty):not(.choose-file):not(.replace-file):not(.edit-file){overflow:hidden;white-space:nowrap;text-overflow:ellipsis;width:calc(100% - 260px);height:80px;line-height:80px}form .form-row .filer-dropzone .filerFile img{width:80px;height:80px;margin-right:10px;border:solid 1px var(--dca-gray-lighter, var(--border-color, #ddd));border-radius:3px;vertical-align:top}form .form-row .filer-dropzone .filerFile img[src*=nofile]{-webkit-box-sizing:border-box;box-sizing:border-box;margin-right:0;border:solid 1px var(--dca-gray-lighter, var(--border-color, #ddd));border-radius:3px}form .form-row .filer-dropzone .filerFile a{-webkit-box-sizing:border-box;box-sizing:border-box;padding-top:10px !important}form .form-row .filer-dropzone .filerFile span{display:inline-block;color:var(--dca-gray, var(--body-quiet-color, #666));font-weight:normal;margin-bottom:6px;text-align:left}form .form-row .filer-dropzone .filerFile span:empty+.related-lookup{float:none !important;margin-left:0 !important}form .form-row .filer-dropzone .filerFile a.filerClearer{background-image:none !important;margin-bottom:0;border-radius:3px !important;color:var(--dca-gray-light, var(--button-fg, #999)) !important;background-color:var(--dca-white, var(--button-bg, #fff)) !important;border:1px solid var(--dca-gray-lighter, transparent) !important;background-clip:padding-box;-webkit-appearance:none;float:right;padding:5px 0 !important;margin:24px 0 0 10px;width:36px;height:36px;text-align:center;cursor:pointer}form .form-row .filer-dropzone .filerFile a.filerClearer:focus,form .form-row .filer-dropzone .filerFile a.filerClearer.focus,form .form-row .filer-dropzone .filerFile a.filerClearer:hover{color:var(--dca-gray-light, var(--button-fg, #999)) !important;background-color:var(--dca-white, var(--button-bg, #fff)) !important;border-color:var(--dca-gray-lighter, transparent) !important;-webkit-filter:opacity(0.7) !important;filter:opacity(0.7) !important;text-decoration:none !important}form .form-row .filer-dropzone .filerFile a.filerClearer:active,form .form-row .filer-dropzone .filerFile a.filerClearer.cms-btn-active{color:var(--dca-gray-light, var(--button-fg, #999)) !important;background-color:var(--dca-white, var(--button-bg, #fff)) !important;border-color:var(--dca-gray-lighter, transparent) !important;-webkit-filter:brightness(var(--active-brightness)) opacity(1) !important;filter:brightness(var(--active-brightness)) opacity(1) !important;-webkit-box-shadow:inset 0 3px 5px rgba(var(--dca-black, var(--body-fg, #000)), 0.125) !important;box-shadow:inset 0 3px 5px rgba(var(--dca-black, var(--body-fg, #000)), 0.125) !important}form .form-row .filer-dropzone .filerFile a.filerClearer:active:hover,form .form-row .filer-dropzone .filerFile a.filerClearer:active:focus,form .form-row .filer-dropzone .filerFile a.filerClearer:active.focus,form .form-row .filer-dropzone .filerFile a.filerClearer.cms-btn-active:hover,form .form-row .filer-dropzone .filerFile a.filerClearer.cms-btn-active:focus,form .form-row .filer-dropzone .filerFile a.filerClearer.cms-btn-active.focus{color:var(--dca-gray-light, var(--button-fg, #999)) !important;background-color:var(--dca-white, var(--button-bg, #fff)) !important;border-color:var(--dca-gray-lighter, transparent) !important;-webkit-filter:brightness(calc(var(--focus-brightness) * var(--active-brightness))) opacity(1) !important;filter:brightness(calc(var(--focus-brightness) * var(--active-brightness))) opacity(1) !important}form .form-row .filer-dropzone .filerFile a.filerClearer:active,form .form-row .filer-dropzone .filerFile a.filerClearer.cms-btn-active{background-image:none !important}form .form-row .filer-dropzone .filerFile a.filerClearer.cms-btn-disabled,form .form-row .filer-dropzone .filerFile a.filerClearer.cms-btn-disabled:hover,form .form-row .filer-dropzone .filerFile a.filerClearer.cms-btn-disabled:focus,form .form-row .filer-dropzone .filerFile a.filerClearer.cms-btn-disabled.focus,form .form-row .filer-dropzone .filerFile a.filerClearer.cms-btn-disabled:active,form .form-row .filer-dropzone .filerFile a.filerClearer.cms-btn-disabled.cms-btn-active,form .form-row .filer-dropzone .filerFile a.filerClearer[disabled],form .form-row .filer-dropzone .filerFile a.filerClearer[disabled]:hover,form .form-row .filer-dropzone .filerFile a.filerClearer[disabled]:focus,form .form-row .filer-dropzone .filerFile a.filerClearer[disabled].focus,form .form-row .filer-dropzone .filerFile a.filerClearer[disabled]:active,form .form-row .filer-dropzone .filerFile a.filerClearer[disabled].cms-btn-active{background-color:var(--dca-white, var(--button-bg, #fff)) !important;border-color:var(--dca-gray-lighter, transparent) !important;color:var(--dca-gray-light, var(--button-fg, #999)) true;-webkit-filter:brightness(0.6) opacity(1);filter:brightness(0.6) opacity(1);cursor:not-allowed;-webkit-box-shadow:none !important;box-shadow:none !important}form .form-row .filer-dropzone .filerFile a.filerClearer.cms-btn-disabled:before,form .form-row .filer-dropzone .filerFile a.filerClearer.cms-btn-disabled:hover:before,form .form-row .filer-dropzone .filerFile a.filerClearer.cms-btn-disabled:focus:before,form .form-row .filer-dropzone .filerFile a.filerClearer.cms-btn-disabled.focus:before,form .form-row .filer-dropzone .filerFile a.filerClearer.cms-btn-disabled:active:before,form .form-row .filer-dropzone .filerFile a.filerClearer.cms-btn-disabled.cms-btn-active:before,form .form-row .filer-dropzone .filerFile a.filerClearer[disabled]:before,form .form-row .filer-dropzone .filerFile a.filerClearer[disabled]:hover:before,form .form-row .filer-dropzone .filerFile a.filerClearer[disabled]:focus:before,form .form-row .filer-dropzone .filerFile a.filerClearer[disabled].focus:before,form .form-row .filer-dropzone .filerFile a.filerClearer[disabled]:active:before,form .form-row .filer-dropzone .filerFile a.filerClearer[disabled].cms-btn-active:before{color:var(--dca-gray-light, var(--button-fg, #999)) true;-webkit-filter:brightness(0.6) opacity(1);filter:brightness(0.6) opacity(1)}form .form-row .filer-dropzone .filerFile a.filerClearer span:before{color:red !important}form .form-row .filer-dropzone .filerFile a.filerClearer span{text-align:center;line-height:24px}form .form-row .filer-dropzone.filer-dropzone-mobile .filerFile{text-align:center}form .form-row .filer-dropzone.filer-dropzone-mobile .dz-message{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;margin-top:75px}form .form-row .filer-dropzone.filer-dropzone-mobile.js-object-attached .filerFile{text-align:center}@media screen and (max-width: 810px){form .form-row .filer-dropzone.filer-dropzone-mobile.js-object-attached .filerFile.js-file-selector .description_text{text-overflow:ellipsis;width:calc(100% - 250px);overflow:hidden}}form .form-row .filer-dropzone.filer-dropzone-mobile.js-object-attached .filerFile.js-file-selector>span:not(.choose-file):not(.replace-file):not(.edit-file),form .form-row .filer-dropzone.filer-dropzone-mobile.js-object-attached .filerFile.js-file-selector .dz-name{width:calc(100% - 250px)}form .form-row .filer-dropzone.filer-dropzone-folder .filerFile{top:8px}form .form-row .filer-dropzone.filer-dropzone-folder .filerFile #id_folder_description_txt{float:left}@media(max-width: 767px){form .form-row .filer-dropzone{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}}.filer-dropzone{min-height:100px !important}.filer-dropzone .dz-upload{height:5px;background-color:var(--dca-primary, var(--primary, #0bf))}.filer-dropzone .dz-name{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;max-width:calc(100% - 145px)}.filer-dropzone .dz-thumbnail{display:inline-block;overflow:hidden;vertical-align:top;width:80px;height:80px;margin-right:10px;border:solid 1px var(--dca-gray-lighter, var(--border-color, #ddd));border-radius:3px;background:var(--dca-white, var(--body-bg, #fff)) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%232980b9' d='M5 2c-1.105 0-2 .9-2 2v18c0 1.1.895 2 2 2h14c1.105 0 2-.9 2-2V8l-6-6z'/%3E%3Cpath fill='%233498db' d='M5 1c-1.105 0-2 .9-2 2v18c0 1.1.895 2 2 2h14c1.105 0 2-.9 2-2V7l-6-6z'/%3E%3Cpath fill='%232980b9' d='m21 7-6-6v4c0 1.1.895 2 2 2z'/%3E%3C/svg%3E");background-size:contain}.filer-dropzone .dz-thumbnail img{background:var(--dca-white, var(--body-bg, #fff))}.filer-dropzone .dz-thumbnail img[src=""],.filer-dropzone .dz-thumbnail img:not([src]){width:104%;height:104%;margin:-2%}.filer-dropzone-info-message{position:fixed;bottom:35px;left:50%;z-index:2;text-align:center;width:270px;max-height:300px;overflow-y:auto;margin:-50px 0 0 -150px;padding:15px 15px 0;border-radius:3px;background:var(--dca-white, var(--body-bg, #fff));-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.2);box-shadow:0 0 5px 0 rgba(0,0,0,.2)}.filer-dropzone-info-message .icon{font-size:35px;color:var(--dca-primary, var(--primary, #0bf))}.filer-dropzone-info-message .text{margin:5px 0 10px}.filer-dropzone-upload-info{margin-top:10px}.filer-dropzone-upload-info .filer-dropzone-file-name{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.filer-dropzone-upload-info:empty{margin-top:0}.filer-dropzone-progress{height:5px;margin-top:5px;background-color:var(--dca-primary, var(--primary, #0bf))}.filer-dropzone-upload-welcome .folder{color:var(--dca-primary, var(--primary, #0bf));padding:10px 0 0;margin:0 -15px;border-top:solid 1px var(--dca-gray-lighter, var(--border-color, #ddd))}.filer-dropzone-upload-welcome .folder img,.filer-dropzone-upload-welcome .folder span{vertical-align:middle}.filer-dropzone-upload-welcome .folder img{margin-right:5px}.filer-dropzone-upload-welcome .folder .folder-inner{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;padding:0 10px}.filer-dropzone-cancel{padding-top:10px;border-top:solid 1px var(--dca-gray-lighter, var(--border-color, #ddd));margin:15px -15px 10px}.filer-dropzone-cancel a{font-size:12px;color:var(--dca-gray, var(--body-quiet-color, #666)) !important}.filer-dropzone-upload-success,.filer-dropzone-upload-canceled{margin:0 -15px 10px}.filer-dropzone-upload-count{padding-bottom:10px;margin:10px -15px;border-bottom:solid 1px var(--dca-gray-lighter, var(--border-color, #ddd))}.filer-tooltip-wrapper{position:relative}.filer-tooltip{position:absolute;left:-30px;right:-30px;color:var(--dca-gray, var(--body-quiet-color, #666));text-align:center;font-size:12px !important;line-height:15px !important;white-space:normal;margin-top:5px;padding:10px;background-color:var(--dca-white, var(--body-bg, #fff));-webkit-box-shadow:0 0 10px rgba(0,0,0,.25);box-shadow:0 0 10px rgba(0,0,0,.25);border-radius:5px;z-index:10}.filer-tooltip:before{position:absolute;top:-3px;left:50%;z-index:-1;content:"";width:9px;height:9px;margin-left:-5px;-webkit-transform:rotate(45deg);transform:rotate(45deg);background-color:var(--dca-white, var(--body-bg, #fff))}.disabled-btn-tooltip{display:none;outline:none}@-webkit-keyframes passing-through{0%{opacity:0;-webkit-transform:translateY(40px);transform:translateY(40px)}30%,70%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-40px);transform:translateY(-40px)}}@keyframes passing-through{0%{opacity:0;-webkit-transform:translateY(40px);transform:translateY(40px)}30%,70%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-40px);transform:translateY(-40px)}}@-webkit-keyframes slide-in{0%{opacity:0;-webkit-transform:translateY(40px);transform:translateY(40px)}30%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes slide-in{0%{opacity:0;-webkit-transform:translateY(40px);transform:translateY(40px)}30%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes pulse{0%{-webkit-transform:scale(1);transform:scale(1)}10%{-webkit-transform:scale(1.1);transform:scale(1.1)}20%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes pulse{0%{-webkit-transform:scale(1);transform:scale(1)}10%{-webkit-transform:scale(1.1);transform:scale(1.1)}20%{-webkit-transform:scale(1);transform:scale(1)}}.filer-dropzone,.filer-dropzone *{-webkit-box-sizing:border-box;box-sizing:border-box}.filer-dropzone{min-height:150px;padding:20px 20px;border:2px solid rgba(0,0,0,.3);background:#fff}.filer-dropzone.dz-clickable{cursor:pointer}.filer-dropzone.dz-clickable *{cursor:default}.filer-dropzone.dz-clickable .dz-message,.filer-dropzone.dz-clickable .dz-message *{cursor:pointer}.filer-dropzone.dz-drag-hover{border-style:solid}.filer-dropzone.dz-drag-hover .dz-message{opacity:.5}.filer-dropzone .dz-message{text-align:center;margin:2em 0}.filer-dropzone .dz-preview{display:inline-block;position:relative;vertical-align:top;min-height:100px;margin:16px}.filer-dropzone .dz-preview:hover{z-index:1000}.filer-dropzone .dz-preview:hover .dz-details{opacity:1}.filer-dropzone .dz-preview.dz-file-preview .dz-image{border-radius:20px;background:var(--dca-gray-light, var(--body-quiet-color, #999));background:-webkit-gradient(linear, left top, left bottom, from(var(--dca-gray-lightest, var(--darkened-bg, #f2f2f2))), to(var(--dca-gray-lighter, var(--border-color, #ddd))));background:linear-gradient(to bottom, var(--dca-gray-lightest, var(--darkened-bg, #f2f2f2)), var(--dca-gray-lighter, var(--border-color, #ddd)))}.filer-dropzone .dz-preview.dz-file-preview .dz-details{opacity:1}.filer-dropzone .dz-preview.dz-image-preview{background:#fff}.filer-dropzone .dz-preview.dz-image-preview .dz-details{-webkit-transition:opacity .2s linear;transition:opacity .2s linear}.filer-dropzone .dz-preview .dz-remove{display:block;font-size:14px;text-align:center;border:none;cursor:pointer}.filer-dropzone .dz-preview .dz-remove:hover{text-decoration:underline}.filer-dropzone .dz-preview:hover .dz-details{opacity:1}.filer-dropzone .dz-preview .dz-details{position:absolute;top:0;left:0;z-index:20;color:rgba(0,0,0,.9);font-size:13px;line-height:150%;text-align:center;min-width:100%;max-width:100%;padding:2em 1em;opacity:0}.filer-dropzone .dz-preview .dz-details .dz-size{font-size:16px;margin-bottom:1em}.filer-dropzone .dz-preview .dz-details .dz-filename{white-space:nowrap}.filer-dropzone .dz-preview .dz-details .dz-filename:hover span{border:1px solid rgba(200,200,200,.8);background-color:rgba(255,255,255,.8)}.filer-dropzone .dz-preview .dz-details .dz-filename:not(:hover){overflow:hidden;text-overflow:ellipsis}.filer-dropzone .dz-preview .dz-details .dz-filename:not(:hover) span{border:1px solid rgba(0,0,0,0)}.filer-dropzone .dz-preview .dz-details .dz-filename span,.filer-dropzone .dz-preview .dz-details .dz-size span{padding:0 .4em;border-radius:3px;background-color:rgba(255,255,255,.4)}.filer-dropzone .dz-preview:hover .dz-image img{-webkit-transform:scale(1.05, 1.05);transform:scale(1.05, 1.05);-webkit-filter:blur(8px);filter:blur(8px)}.filer-dropzone .dz-preview .dz-image{display:block;position:relative;overflow:hidden;z-index:10;width:120px;height:120px;border-radius:20px}.filer-dropzone .dz-preview .dz-image img{display:block}.filer-dropzone .dz-preview.dz-success .dz-success-mark{-webkit-animation:passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);animation:passing-through 3s cubic-bezier(0.77, 0, 0.175, 1)}.filer-dropzone .dz-preview.dz-error .dz-error-mark{opacity:1;-webkit-animation:slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);animation:slide-in 3s cubic-bezier(0.77, 0, 0.175, 1)}.filer-dropzone .dz-preview .dz-success-mark,.filer-dropzone .dz-preview .dz-error-mark{display:block;position:absolute;top:50%;left:50%;z-index:500;margin-top:-27px;margin-left:-27px;pointer-events:none;opacity:0}.filer-dropzone .dz-preview .dz-success-mark svg,.filer-dropzone .dz-preview .dz-error-mark svg{display:block;width:54px;height:54px}.filer-dropzone .dz-preview.dz-processing .dz-progress{opacity:1;-webkit-transition:all .2s linear;transition:all .2s linear}.filer-dropzone .dz-preview.dz-complete .dz-progress{opacity:0;-webkit-transition:opacity .4s ease-in;transition:opacity .4s ease-in}.filer-dropzone .dz-preview:not(.dz-processing) .dz-progress{-webkit-animation:pulse 6s ease infinite;animation:pulse 6s ease infinite}.filer-dropzone .dz-preview .dz-progress{position:absolute;top:50%;left:50%;overflow:hidden;z-index:1000;width:80px;height:16px;margin-top:-8px;margin-left:-40px;border-radius:8px;pointer-events:none;opacity:1;background:rgba(255,255,255,.9)}.filer-dropzone .dz-preview .dz-progress .dz-upload{position:absolute;top:0;bottom:0;left:0;width:0;background:var(--dca-gray-darkest, var(--body-fg, #333));background:-webkit-gradient(linear, left top, left bottom, from(var(--dca-gray, var(--body-quiet-color, #666))), to(var(--dca-gray-darkest, var(--body-fg, #333))));background:linear-gradient(to bottom, var(--dca-gray, var(--body-quiet-color, #666)), var(--dca-gray-darkest, var(--body-fg, #333)));-webkit-transition:width 300ms ease-in-out;transition:width 300ms ease-in-out}.filer-dropzone .dz-preview.dz-error .dz-error-message{display:block}.filer-dropzone .dz-preview.dz-error:hover .dz-error-message{pointer-events:auto;opacity:1}.filer-dropzone .dz-preview .dz-error-message{display:block;display:none;position:absolute;top:130px;left:-10px;z-index:1000;color:var(--dca-white, var(--body-bg, #fff));font-size:13px;width:140px;padding:.5em 1.2em;border-radius:8px;pointer-events:none;opacity:0;background:#be2626;background:-webkit-gradient(linear, left top, left bottom, from(#be2626), to(#a92222));background:linear-gradient(to bottom, #be2626, #a92222);-webkit-transition:opacity .3s ease;transition:opacity .3s ease}.filer-dropzone .dz-preview .dz-error-message:after{content:"";position:absolute;top:-6px;left:64px;width:0;height:0;border-right:6px solid rgba(0,0,0,0);border-bottom:6px solid #be2626;border-left:6px solid rgba(0,0,0,0)} + */html,body{min-width:320px;height:100% !important}.text-left{text-align:left}.text-right{text-align:right}.clearfix:after{content:"";display:table;clear:both}.related-widget-wrapper{float:none !important}.related-lookup.hidden{display:none !important}.tiny{font-size:12px !important;color:var(--dca-gray-light, var(--body-quiet-color, #999)) !important}.nav-pages{position:relative;font-size:12px;color:var(--dca-gray-light, var(--body-quiet-color, #999)) !important;padding-left:10px;padding-right:20px;padding-top:15px;padding-bottom:15px;-webkit-box-sizing:border-box;box-sizing:border-box;background:var(--dca-white, var(--body-bg, #fff))}.nav-pages span{font-size:12px;color:var(--dca-gray-light, var(--body-quiet-color, #999)) !important}.nav-pages .actions{float:right}#id_upload_button:before{display:none}#content #content-main{margin-top:0}.filebrowser.cms-admin-sideframe #container .breadcrumbs+#content,.filebrowser.cms-admin-sideframe #container .breadcrumbs+.messagelist+#content{margin-left:0 !important;margin-right:0 !important}.filebrowser.cms-admin-sideframe #container .breadcrumbs{left:0 !important;padding-left:20px !important}.filebrowser #container{min-width:auto}.filebrowser #container #content{padding:0;-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.2);box-shadow:0 0 5px 0 rgba(0,0,0,.2)}.filebrowser #container .breadcrumbs+#content,.filebrowser #container .breadcrumbs+.messagelist+#content{margin-left:3% !important}.filebrowser h1.folder_header{position:relative;top:6px}.filebrowser h2{display:none}.filebrowser #content-main{background-color:var(--dca-white, var(--body-bg, #fff))}.field-file,.field-sha1{word-wrap:break-word;word-break:break-all}.well.img-preview{display:none;margin-top:0}.img-wrapper{width:180px;height:180px}.file-duplicates{clear:both;padding:20px 0 0}form .cancel-link{height:auto !important;line-height:inherit !important;padding:10px 15px}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.hidden{display:none !important}.filer-info-bar{min-height:15px;margin:0 0 2px !important;padding:15px 20px;-webkit-box-shadow:0 0 10px -2px rgba(0,0,0,.2);box-shadow:0 0 10px -2px rgba(0,0,0,.2);background-color:var(--dca-white, var(--body-bg, #fff))}.navigator .actions span.all,.navigator .actions span.clear,.navigator .actions span.question{font-size:13px;margin:0 .5em;display:none}#all-items-action-toggle{display:none !important}.image-info{position:relative;float:right;-webkit-box-sizing:border-box;box-sizing:border-box;width:28%;margin-top:0;border:0;border-radius:3px;background:var(--dca-white, var(--body-bg, #fff));-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.2);box-shadow:0 0 5px 0 rgba(0,0,0,.2)}.image-info .image-details,.image-info .actions-list{margin:0;padding:0}.image-info .image-details.image-details,.image-info .actions-list.image-details{margin:10px 0;padding:0 10px}.image-info .image-details li,.image-info .actions-list li{list-style-type:none}.image-info .image-details a,.image-info .actions-list a{cursor:pointer}.image-info.image-info-detail{position:static;float:none;width:100%;margin-bottom:20px;padding:25px;border-radius:0}.image-info.image-info-detail:before,.image-info.image-info-detail:after{content:" ";display:table}.image-info.image-info-detail:after{clear:both}.image-info.image-info-detail+#content-main .object-tools{margin-top:20px;margin-right:20px;background-color:rgba(0,0,0,0)}.image-info.image-info-detail+#content-main .object-tools:before{display:none}.image-info.image-info-detail .image-details-left{float:left}.image-info.image-info-detail .image-details-right{float:left;margin-left:50px}.image-info.image-info-detail .image-details,.image-info.image-info-detail .actions-list{margin-top:0;border:0 !important}.image-info.image-info-detail .image-details.image-details,.image-info.image-info-detail .actions-list.image-details{margin-top:20px;margin-bottom:15px;padding:0}.image-info.image-info-detail .image-details dt,.image-info.image-info-detail .actions-list dt{float:left;color:var(--dca-gray-light, var(--body-quiet-color, #999));font-size:13px;line-height:1rem !important;font-weight:normal;margin-top:0}.image-info.image-info-detail .image-details dd,.image-info.image-info-detail .actions-list dd{color:var(--dca-gray, var(--body-quiet-color, #666));font-size:13px;line-height:16px !important;padding-left:80px;margin-bottom:5px}.image-info.image-info-detail .image-details .text,.image-info.image-info-detail .actions-list .text{font-size:13px;margin-right:15px}.image-info.image-info-detail .image-details .text strong,.image-info.image-info-detail .actions-list .text strong{font-size:13px}.image-info.image-info-detail .image-details li,.image-info.image-info-detail .actions-list li{color:var(--dca-gray, var(--body-quiet-color, #666));font-size:13px !important;font-weight:normal !important;padding:1px 0 !important;border:0 !important}.image-info.image-info-detail .image-details a,.image-info.image-info-detail .actions-list a{padding:0}.image-info.image-info-detail .image-info-title{overflow:hidden;color:var(--dca-gray, var(--body-quiet-color, #666));white-space:nowrap;text-overflow:ellipsis;padding:0 0 5px}.image-info.image-info-detail .image-info-title .icon{float:left;margin-right:5px}.image-info.image-info-detail .image-preview-container{text-align:left;margin:20px 0 0;padding:0}.image-info.image-info-detail .image-preview-container>img{margin-bottom:15px}.image-info.image-info-detail .actions-list .icon{font-size:16px}.image-info.image-info-detail .actions-list .icon:last-child{float:none}@media screen and (max-width: 720px){.image-info{float:none;width:100%}.image-info.image-info-detail .image-details-left,.image-info.image-info-detail .image-details-right{float:none;margin-left:0}}.image-info-close{position:absolute;top:-10px;right:-7px;font-size:20px;cursor:pointer}.image-info-title{padding:5px 10px;border-bottom:solid 1px var(--dca-gray-lighter, var(--border-color, #ddd))}.image-info-title a{margin-left:5px}.image-preview-container{text-align:center;margin:10px 0;padding:0 10px}.image-preview-container .image-preview{display:inline-block;position:relative;margin-bottom:15px;outline:1px solid var(--dca-gray-lightest, var(--darkened-bg, #f2f2f2));background-image:url("data:image/gif;base64,R0lGODlhCAAIAKECAOPj4/z8/P///////yH5BAEKAAIALAAAAAAIAAgAAAINhBEZh8q6DoTPSWvoKQA7")}.image-preview-container .image-preview img{display:block}.image-preview-container .image-preview-field{position:absolute;top:0;right:0;bottom:0;left:0;overflow:hidden}.image-preview-container .image-preview-circle{position:relative;z-index:1;width:26px;height:26px;border:solid 2px red;margin:-13px;border-radius:30px;cursor:move;background:rgba(255,255,255,.5)}.image-preview-container audio,.image-preview-container video{margin-bottom:15px}.image-preview-container audio:focus,.image-preview-container video:focus{outline:none}.button-group .button{margin-right:10px;padding:10px 15px}.actions-list-dropdown a{display:block;padding:5px 10px}.actions-list-dropdown .caret-down{display:inline-block}.actions-list-dropdown .caret-right{display:none}.actions-list-dropdown.js-collapsed{border-bottom:solid 1px var(--dca-gray-lighter, var(--border-color, #ddd))}.actions-list-dropdown.js-collapsed .caret-down{display:none}.actions-list-dropdown.js-collapsed .caret-right{display:inline-block}.actions-list{border-top:solid 1px var(--dca-gray-lighter, var(--border-color, #ddd))}.actions-list:last-child{border-top:none}.actions-list:last-child a{border-bottom:none}.actions-list a{display:block;font-size:20px;padding:5px 10px;border-bottom:solid 1px var(--dca-gray-lighter, var(--border-color, #ddd))}.actions-list .icon:first-child{width:20px}.actions-list .icon:last-child{float:right;margin-top:3px}.actions-separated-list{display:inline-block;margin:0;padding-left:0}@media screen and (max-width: 720px){.actions-separated-list{float:left;margin-left:0}}.actions-separated-list li{display:inline-block;line-height:34px;vertical-align:middle;padding:0 10px;list-style:none}@media screen and (max-width: 720px){.actions-separated-list li:first-child{padding-left:0}}.actions-separated-list li span{vertical-align:middle}.actions-separated-list li a{color:var(--dca-gray, var(--body-quiet-color, #666))}.actions-separated-list span:before{font-size:18px}.search-is-focused .filter-files-container{position:static}.search-is-focused .filter-filers-container-inner{position:absolute;top:0;left:0;right:0}@media screen and (max-width: 720px){.search-is-focused .filter-filers-container-inner{position:static}}.search-is-focused .breadcrumbs-container{position:relative}.search-is-focused.breadcrumb-min-width .filter-filers-container-inner{position:static}.filter-files-container{display:table-cell;vertical-align:middle;position:relative;width:245px;margin:0;padding:0;background:none;-webkit-box-shadow:none;box-shadow:none;z-index:1000}.filter-files-container:before,.filter-files-container:after{content:" ";display:table}.filter-files-container:after{clear:both}@media screen and (max-width: 720px){.filter-files-container{display:block;width:auto;margin-right:0;margin-top:10px}.filter-files-container .filter-files-button{float:none}}.filter-files-container .filer-dropdown-container{position:absolute;top:0;right:0}.filter-files-container .filer-dropdown-container>a,.filter-files-container .filer-dropdown-container>a:visited,.filter-files-container .filer-dropdown-container>a:link:visited,.filter-files-container .filer-dropdown-container>a:link{display:inline-block;line-height:34px;text-align:center;width:34px;height:34px;padding:0}.filter-files-container .filer-dropdown-container.open+.filer-dropdown-menu-checkboxes{display:block;width:calc(100% - 30px)}.filter-files-container .filer-dropdown-container.open+.filer-dropdown-menu-checkboxes li{margin:0;padding:0;list-style-type:none}.filter-files-container .filter-search-wrapper{position:relative;float:left;text-align:right;width:calc(100% - 43px);margin-right:5px}@media screen and (max-width: 720px){.filter-files-container .filter-search-wrapper{float:left}}.filter-files-container .filter-search-wrapper .filer-dropdown-container span{line-height:34px !important;height:34px !important}.filter-files-container .filter-files-button{float:right;text-align:center;white-space:nowrap;height:35px;margin:0;padding:8px !important}.filter-files-container .filter-files-button .icon{position:relative;left:2px;font-size:16px !important;vertical-align:top}.filter-files-container .filter-files-field{color:var(--dca-gray-darkest, var(--body-fg, #333));font-size:12px !important;line-height:35px;font-weight:normal;-webkit-box-sizing:border-box;box-sizing:border-box;min-width:200px !important;height:35px;margin:0;padding:0 35px 0 10px !important;outline:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-transition:max-width 200ms;transition:max-width 200ms}.filter-files-container .filter-files-field::-ms-clear{display:none}.filter-files-container .filer-dropdown-menu{margin-top:0 !important;margin-right:-1px !important}.filter-files-cancel{margin:5px 20px}body.dz-drag-hover .drag-hover-border{display:none !important}body.dz-drag-hover .navigator-table tbody td,body.dz-drag-hover .navigator-table tbody .unfiled td{background-color:var(--dca-gray-lightest, var(--darkened-bg, #f2f2f2)) !important}body.reset-hover td{background-color:var(--dca-white, var(--body-bg, #fff)) !important}.drag-hover-border{position:fixed;border-top:solid 2px var(--dca-primary, var(--primary, #0bf));border-bottom:solid 2px var(--dca-primary, var(--primary, #0bf));pointer-events:none;z-index:100;display:none}.thumbnail-drag-hover-border{border:solid 2px var(--dca-primary, var(--primary, #0bf))}.filebrowser .navigator-list,.filebrowser .navigator-table{width:100%;margin:0;border-top:solid 1px var(--dca-gray-lighter, var(--border-color, #ddd)) !important;border-collapse:collapse !important}.filebrowser .navigator-list .navigator-header,.filebrowser .navigator-list thead th,.filebrowser .navigator-list tbody td,.filebrowser .navigator-table .navigator-header,.filebrowser .navigator-table thead th,.filebrowser .navigator-table tbody td{text-align:left;font-weight:normal;vertical-align:middle;padding:5px !important;border-left:0 !important;border-bottom:1px solid var(--dca-gray-lighter, var(--border-color, #ddd));border-top:1px solid rgba(0,0,0,0);background:none !important}.filebrowser .navigator-list tbody tr.selected .action-button span,.filebrowser .navigator-table tbody tr.selected .action-button span{color:var(--dca-gray-darkest, var(--body-fg, #333)) !important}.filebrowser .navigator-list .navigator-body,.filebrowser .navigator-list .unfiled td,.filebrowser .navigator-table .navigator-body,.filebrowser .navigator-table .unfiled td{padding:12px 5px !important;background-color:var(--dca-gray-super-lightest, var(--darkened-bg, #f7f7f7)) !important}.filebrowser .navigator-list .navigator-body a,.filebrowser .navigator-list .navigator-body a:hover,.filebrowser .navigator-list .unfiled td a,.filebrowser .navigator-list .unfiled td a:hover,.filebrowser .navigator-table .navigator-body a,.filebrowser .navigator-table .navigator-body a:hover,.filebrowser .navigator-table .unfiled td a,.filebrowser .navigator-table .unfiled td a:hover{color:var(--dca-gray, var(--body-quiet-color, #666)) !important}.filebrowser .navigator-list .column-checkbox,.filebrowser .navigator-table .column-checkbox{text-align:center;width:20px;padding-left:20px !important}.filebrowser .navigator-list .column-checkbox input,.filebrowser .navigator-table .column-checkbox input{vertical-align:middle;margin:0}.filebrowser .navigator-list .column-name a,.filebrowser .navigator-table .column-name a{color:var(--dca-primary, var(--primary, #0bf))}.filebrowser .navigator-list .column-icon,.filebrowser .navigator-table .column-icon{width:50px;padding-top:0 !important;padding-bottom:0 !important}.filebrowser .navigator-list .column-icon img,.filebrowser .navigator-table .column-icon img{width:40px;height:auto}.filebrowser .navigator-list .column-action,.filebrowser .navigator-table .column-action{text-align:center;width:90px;white-space:nowrap;padding-right:20px !important}.filebrowser .navigator-list .column-action a,.filebrowser .navigator-table .column-action a{font-size:16px !important;margin:0}.filebrowser .navigator-list .column-action .action-button,.filebrowser .navigator-table .column-action .action-button{background-image:none !important;margin-bottom:0;border-radius:3px !important;color:var(--dca-gray-light, var(--button-fg, #999)) !important;background-color:var(--dca-white, var(--button-bg, #fff)) !important;border:1px solid var(--dca-gray-lighter, transparent) !important;background-clip:padding-box;-webkit-appearance:none;padding:9px !important}.filebrowser .navigator-list .column-action .action-button:focus,.filebrowser .navigator-list .column-action .action-button.focus,.filebrowser .navigator-list .column-action .action-button:hover,.filebrowser .navigator-table .column-action .action-button:focus,.filebrowser .navigator-table .column-action .action-button.focus,.filebrowser .navigator-table .column-action .action-button:hover{color:var(--dca-gray-light, var(--button-fg, #999)) !important;background-color:var(--dca-gray-lightest, var(--darkened-bg, #f2f2f2)) !important;border-color:var(--dca-gray-lighter, transparent) !important;text-decoration:none !important}.filebrowser .navigator-list .column-action .action-button:active,.filebrowser .navigator-list .column-action .action-button.cms-btn-active,.filebrowser .navigator-table .column-action .action-button:active,.filebrowser .navigator-table .column-action .action-button.cms-btn-active{color:var(--dca-gray-light, var(--button-fg, #999)) !important;background-color:var(--dca-white, var(--button-bg, #fff)) !important;border-color:var(--dca-gray-lighter, transparent) !important;-webkit-filter:brightness(var(--active-brightness)) opacity(1) !important;filter:brightness(var(--active-brightness)) opacity(1) !important;-webkit-box-shadow:inset 0 3px 5px rgba(var(--dca-black, var(--body-fg, #000)), 0.125) !important;box-shadow:inset 0 3px 5px rgba(var(--dca-black, var(--body-fg, #000)), 0.125) !important}.filebrowser .navigator-list .column-action .action-button:active:hover,.filebrowser .navigator-list .column-action .action-button:active:focus,.filebrowser .navigator-list .column-action .action-button:active.focus,.filebrowser .navigator-list .column-action .action-button.cms-btn-active:hover,.filebrowser .navigator-list .column-action .action-button.cms-btn-active:focus,.filebrowser .navigator-list .column-action .action-button.cms-btn-active.focus,.filebrowser .navigator-table .column-action .action-button:active:hover,.filebrowser .navigator-table .column-action .action-button:active:focus,.filebrowser .navigator-table .column-action .action-button:active.focus,.filebrowser .navigator-table .column-action .action-button.cms-btn-active:hover,.filebrowser .navigator-table .column-action .action-button.cms-btn-active:focus,.filebrowser .navigator-table .column-action .action-button.cms-btn-active.focus{color:var(--dca-gray-light, var(--button-fg, #999)) !important;background-color:var(--dca-white, var(--button-bg, #fff)) !important;border-color:var(--dca-gray-lighter, transparent) !important;-webkit-filter:brightness(calc(var(--focus-brightness) * var(--active-brightness))) opacity(1) !important;filter:brightness(calc(var(--focus-brightness) * var(--active-brightness))) opacity(1) !important}.filebrowser .navigator-list .column-action .action-button:active,.filebrowser .navigator-list .column-action .action-button.cms-btn-active,.filebrowser .navigator-table .column-action .action-button:active,.filebrowser .navigator-table .column-action .action-button.cms-btn-active{background-image:none !important}.filebrowser .navigator-list .column-action .action-button.cms-btn-disabled,.filebrowser .navigator-list .column-action .action-button.cms-btn-disabled:hover,.filebrowser .navigator-list .column-action .action-button.cms-btn-disabled:focus,.filebrowser .navigator-list .column-action .action-button.cms-btn-disabled.focus,.filebrowser .navigator-list .column-action .action-button.cms-btn-disabled:active,.filebrowser .navigator-list .column-action .action-button.cms-btn-disabled.cms-btn-active,.filebrowser .navigator-list .column-action .action-button[disabled],.filebrowser .navigator-list .column-action .action-button[disabled]:hover,.filebrowser .navigator-list .column-action .action-button[disabled]:focus,.filebrowser .navigator-list .column-action .action-button[disabled].focus,.filebrowser .navigator-list .column-action .action-button[disabled]:active,.filebrowser .navigator-list .column-action .action-button[disabled].cms-btn-active,.filebrowser .navigator-table .column-action .action-button.cms-btn-disabled,.filebrowser .navigator-table .column-action .action-button.cms-btn-disabled:hover,.filebrowser .navigator-table .column-action .action-button.cms-btn-disabled:focus,.filebrowser .navigator-table .column-action .action-button.cms-btn-disabled.focus,.filebrowser .navigator-table .column-action .action-button.cms-btn-disabled:active,.filebrowser .navigator-table .column-action .action-button.cms-btn-disabled.cms-btn-active,.filebrowser .navigator-table .column-action .action-button[disabled],.filebrowser .navigator-table .column-action .action-button[disabled]:hover,.filebrowser .navigator-table .column-action .action-button[disabled]:focus,.filebrowser .navigator-table .column-action .action-button[disabled].focus,.filebrowser .navigator-table .column-action .action-button[disabled]:active,.filebrowser .navigator-table .column-action .action-button[disabled].cms-btn-active{background-color:var(--dca-white, var(--button-bg, #fff)) !important;border-color:var(--dca-gray-lighter, transparent) !important;color:var(--dca-gray-light, var(--button-fg, #999)) true;-webkit-filter:brightness(0.6) opacity(1);filter:brightness(0.6) opacity(1);cursor:not-allowed;-webkit-box-shadow:none !important;box-shadow:none !important}.filebrowser .navigator-list .column-action .action-button.cms-btn-disabled:before,.filebrowser .navigator-list .column-action .action-button.cms-btn-disabled:hover:before,.filebrowser .navigator-list .column-action .action-button.cms-btn-disabled:focus:before,.filebrowser .navigator-list .column-action .action-button.cms-btn-disabled.focus:before,.filebrowser .navigator-list .column-action .action-button.cms-btn-disabled:active:before,.filebrowser .navigator-list .column-action .action-button.cms-btn-disabled.cms-btn-active:before,.filebrowser .navigator-list .column-action .action-button[disabled]:before,.filebrowser .navigator-list .column-action .action-button[disabled]:hover:before,.filebrowser .navigator-list .column-action .action-button[disabled]:focus:before,.filebrowser .navigator-list .column-action .action-button[disabled].focus:before,.filebrowser .navigator-list .column-action .action-button[disabled]:active:before,.filebrowser .navigator-list .column-action .action-button[disabled].cms-btn-active:before,.filebrowser .navigator-table .column-action .action-button.cms-btn-disabled:before,.filebrowser .navigator-table .column-action .action-button.cms-btn-disabled:hover:before,.filebrowser .navigator-table .column-action .action-button.cms-btn-disabled:focus:before,.filebrowser .navigator-table .column-action .action-button.cms-btn-disabled.focus:before,.filebrowser .navigator-table .column-action .action-button.cms-btn-disabled:active:before,.filebrowser .navigator-table .column-action .action-button.cms-btn-disabled.cms-btn-active:before,.filebrowser .navigator-table .column-action .action-button[disabled]:before,.filebrowser .navigator-table .column-action .action-button[disabled]:hover:before,.filebrowser .navigator-table .column-action .action-button[disabled]:focus:before,.filebrowser .navigator-table .column-action .action-button[disabled].focus:before,.filebrowser .navigator-table .column-action .action-button[disabled]:active:before,.filebrowser .navigator-table .column-action .action-button[disabled].cms-btn-active:before{color:var(--dca-gray-light, var(--button-fg, #999)) true;-webkit-filter:brightness(0.6) opacity(1);filter:brightness(0.6) opacity(1)}.filebrowser .navigator-list .column-action .action-button span,.filebrowser .navigator-table .column-action .action-button span{font-size:17px;line-height:33px;vertical-align:middle}.filebrowser .navigator-list .no-files,.filebrowser .navigator-table .no-files{color:var(--dca-gray, var(--body-quiet-color, #666));font-size:14px;text-align:center;padding:40px 0 !important;background-color:var(--dca-gray-lightest, var(--darkened-bg, #f2f2f2)) !important}.filebrowser .navigator-list .no-files span,.filebrowser .navigator-table .no-files span{font-size:20px;margin-right:10px}.filebrowser .navigator-list .no-files span:before,.filebrowser .navigator-table .no-files span:before{vertical-align:sub}.filebrowser .navigator-list .dz-drag-hover td,.filebrowser .navigator-table .dz-drag-hover td{position:relative;background:var(--dca-gray-lightest, var(--darkened-bg, #f2f2f2)) !important;-webkit-box-sizing:border-box !important;box-sizing:border-box !important}.filebrowser .navigator-list .dz-drag-hover td a,.filebrowser .navigator-table .dz-drag-hover td a{color:var(--dca-primary, var(--primary, #0bf)) !important}.filebrowser .navigator-list .dz-drag-hover td a.icon,.filebrowser .navigator-table .dz-drag-hover td a.icon{color:var(--dca-gray-darkest, var(--body-fg, #333)) !important;background-color:var(--dca-white, var(--body-bg, #fff)) !important}.filebrowser .navigator-list.dz-drag-hover,.filebrowser .navigator-table.dz-drag-hover{position:relative}.filebrowser .navigator-list.dz-drag-hover .drag-hover-border,.filebrowser .navigator-table.dz-drag-hover .drag-hover-border{display:none !important}.filebrowser .navigator-list.dz-drag-hover td,.filebrowser .navigator-table.dz-drag-hover td{background:var(--dca-gray-lightest, var(--darkened-bg, #f2f2f2)) !important;-webkit-box-sizing:border-box !important;box-sizing:border-box !important}.filebrowser .navigator-list .reset-hover td,.filebrowser .navigator-list.reset-hover td,.filebrowser .navigator-table .reset-hover td,.filebrowser .navigator-table.reset-hover td{background-color:var(--dca-white, var(--body-bg, #fff)) !important}.filebrowser .navigator-list .reset-hover .dz-drag-hover td,.filebrowser .navigator-list.reset-hover .dz-drag-hover td,.filebrowser .navigator-table .reset-hover .dz-drag-hover td,.filebrowser .navigator-table.reset-hover .dz-drag-hover td{background:var(--dca-gray-lightest, var(--darkened-bg, #f2f2f2)) !important}.navigator-top-nav{position:relative;clear:both;min-height:35px;padding:15px 20px;background:var(--dca-gray-super-lightest, var(--darkened-bg, #f7f7f7));border-bottom:var(--dca-gray-lighter, var(--border-color, #ddd)) solid 1px}.navigator-top-nav .breadcrumbs-container-wrapper{display:table;width:100%}@media screen and (max-width: 720px){.navigator-top-nav .breadcrumbs-container-wrapper{display:block}}.navigator-top-nav .breadcrumbs-container-inner{display:table;table-layout:fixed;width:100%}.navigator-top-nav .breadcrumbs-container-inner .filer-dropdown-container{display:table-cell;width:30px;height:35px;vertical-align:middle}.navigator-top-nav .breadcrumbs-container-inner .filer-dropdown-container span{line-height:35px;height:35px;vertical-align:middle}.navigator-top-nav .breadcrumbs-container{display:table-cell;vertical-align:middle}@media screen and (max-width: 720px){.navigator-top-nav .breadcrumbs-container{position:static;margin-right:20px}}.navigator-top-nav .tools-container{display:table-cell;vertical-align:middle;text-align:right;margin-top:2px}.navigator-top-nav .tools-container:before,.navigator-top-nav .tools-container:after{content:" ";display:table}.navigator-top-nav .tools-container:after{clear:both}@media screen and (max-width: 720px){.navigator-top-nav .tools-container{display:inline;text-align:left}}.navigator-top-nav .nav-button{display:inline-block;color:var(--dca-gray, var(--body-quiet-color, #666));font-size:20px;line-height:34px;vertical-align:top;margin:0 10px}.navigator-top-nav .nav-button span{vertical-align:middle}.navigator-top-nav .nav-button-filter{position:relative;top:-1px}.navigator-top-nav .nav-button-dots{margin:0;padding:0 15px}.navigator-top-nav .separator{display:inline-block;position:relative;vertical-align:top;width:1px;height:34px;margin:0 5px}.navigator-top-nav .separator:before{content:"";display:block;position:absolute;top:-14px;bottom:-11px;overflow:hidden;width:1px;background-color:var(--dca-gray-lighter, var(--border-color, #ddd))}.breadcrumb-min-width .filer-navigator-breadcrumbs-dropdown-container,.breadcrumb-min-width .navigator-breadcrumbs-name-dropdown-wrapper,.breadcrumb-min-width .navigator-breadcrumbs-folder-name-wrapper,.breadcrumb-min-width .breadcrumbs-container-wrapper,.breadcrumb-min-width .breadcrumbs-container,.breadcrumb-min-width .tools-container,.breadcrumb-min-width .filter-files-container,.breadcrumb-min-width .navigator-breadcrumbs,.breadcrumb-min-width .navigator-button-wrapper{display:inline-block;text-align:left}.breadcrumb-min-width .filer-navigator-breadcrumbs-dropdown-container .actions-wrapper,.breadcrumb-min-width .navigator-breadcrumbs-name-dropdown-wrapper .actions-wrapper,.breadcrumb-min-width .navigator-breadcrumbs-folder-name-wrapper .actions-wrapper,.breadcrumb-min-width .breadcrumbs-container-wrapper .actions-wrapper,.breadcrumb-min-width .breadcrumbs-container .actions-wrapper,.breadcrumb-min-width .tools-container .actions-wrapper,.breadcrumb-min-width .filter-files-container .actions-wrapper,.breadcrumb-min-width .navigator-breadcrumbs .actions-wrapper,.breadcrumb-min-width .navigator-button-wrapper .actions-wrapper{white-space:nowrap;margin-left:0;margin-top:10px}.breadcrumb-min-width .filer-navigator-breadcrumbs-dropdown-container .actions-wrapper li:first-child,.breadcrumb-min-width .navigator-breadcrumbs-name-dropdown-wrapper .actions-wrapper li:first-child,.breadcrumb-min-width .navigator-breadcrumbs-folder-name-wrapper .actions-wrapper li:first-child,.breadcrumb-min-width .breadcrumbs-container-wrapper .actions-wrapper li:first-child,.breadcrumb-min-width .breadcrumbs-container .actions-wrapper li:first-child,.breadcrumb-min-width .tools-container .actions-wrapper li:first-child,.breadcrumb-min-width .filter-files-container .actions-wrapper li:first-child,.breadcrumb-min-width .navigator-breadcrumbs .actions-wrapper li:first-child,.breadcrumb-min-width .navigator-button-wrapper .actions-wrapper li:first-child{padding-left:0}.breadcrumb-min-width .navigator-button-wrapper{margin-top:10px}.breadcrumb-min-width .navigator-breadcrumbs-name-dropdown-wrapper{min-height:inherit}.breadcrumb-min-width .navigator-breadcrumbs-name-dropdown-wrapper .filer-dropdown-container .fa-caret-down{vertical-align:text-top}.breadcrumb-min-width .breadcrumbs-container-inner .filer-dropdown-container{display:inline-block !important}.breadcrumb-min-width .navigator-tools{white-space:normal}.breadcrumb-min-width .filter-files-container{width:100%;margin-top:10px;z-index:auto}.breadcrumb-min-width .breadcrumbs-container{margin-right:0}.breadcrumb-min-width .navigator-breadcrumbs .icon{vertical-align:middle}.breadcrumb-min-width .navigator-breadcrumbs-folder-name-wrapper{float:left;width:calc(100% - 30px)}.navigator-tools{white-space:nowrap}.navigator-tools:before,.navigator-tools:after{content:" ";display:table}.navigator-tools:after{clear:both}@media screen and (max-width: 720px){.navigator-tools{display:inline}}.navigator-tools .actions-wrapper{display:inline-block;margin-bottom:0;margin-left:10px}.navigator-tools .actions-wrapper a,.navigator-tools .actions-wrapper a:hover{color:var(--dca-gray-light, var(--body-quiet-color, #999)) !important;cursor:not-allowed}@media screen and (max-width: 720px){.navigator-tools .actions-wrapper{float:none;margin-left:0}.navigator-tools .actions-wrapper:before,.navigator-tools .actions-wrapper:after{content:" ";display:table}.navigator-tools .actions-wrapper:after{clear:both}}.navigator-tools .actions-wrapper.action-selected a{color:var(--dca-gray, var(--body-quiet-color, #666)) !important;cursor:pointer}.navigator-tools .actions-wrapper.action-selected .actions-separated-list{display:inline-block}.navigator-tools .actions-wrapper+.filer-list-type-switcher-wrapper{border-left:solid 1px var(--dca-gray-lighter, var(--border-color, #ddd));margin-left:0}.navigator-tools .actions{display:none;float:right}@media screen and (max-width: 720px){.navigator-tools .actions{float:none;margin-bottom:10px}.navigator-tools .actions:before,.navigator-tools .actions:after{content:" ";display:table}.navigator-tools .actions:after{clear:both}}.navigator-tools .actions .all,.navigator-tools .actions .question,.navigator-tools .actions .clear,.navigator-tools .actions .action-counter{font-size:12px;line-height:34px;vertical-align:text-top}.navigator-tools .actions .action-counter,.navigator-tools .actions .all{color:var(--dca-gray-light, var(--body-quiet-color, #999))}.navigator-tools .actions .question,.navigator-tools .actions .clear{margin-left:10px;padding-left:10px;border-left:solid 1px var(--dca-gray-lighter, var(--border-color, #ddd))}.navigator-tools .filer-list-type-switcher-wrapper{display:inline-block;margin-left:10px}@media screen and (max-width: 720px){.navigator-top-nav .breadcrumbs-container{float:none}.navigator-top-nav .navigator-tools{float:none}.navigator-top-nav .navigator-tools .separator:before{top:0;bottom:0}}.navigator-button-wrapper{display:inline-block;vertical-align:top;text-align:right;margin-bottom:0;margin-left:10px}@media screen and (max-width: 720px){.navigator-button-wrapper{display:block;float:none;text-align:left;margin-top:0;margin-left:0}}.navigator-button{margin-right:10px}.navigator-button,.navigator-button:visited,.navigator-button:link:visited,.navigator-button:link{background-image:none !important;margin-bottom:0;border-radius:3px !important;color:var(--dca-white, var(--button-fg, #fff)) !important;background-color:var(--dca-primary, var(--primary, #0bf)) !important;border:1px solid var(--dca-primary, var(--primary, #0bf)) !important;background-clip:padding-box;-webkit-appearance:none;display:inline-block;vertical-align:top;padding:10px 20px !important}.navigator-button:focus,.navigator-button.focus,.navigator-button:hover,.navigator-button:visited:focus,.navigator-button:visited.focus,.navigator-button:visited:hover,.navigator-button:link:visited:focus,.navigator-button:link:visited.focus,.navigator-button:link:visited:hover,.navigator-button:link:focus,.navigator-button:link.focus,.navigator-button:link:hover{color:var(--dca-white, var(--button-fg, #fff)) !important;background-color:var(--dca-primary, var(--primary, #0bf)) !important;border-color:var(--dca-primary, var(--primary, #0bf)) !important;-webkit-filter:invert(0.05) !important;filter:invert(0.05) !important;text-decoration:none !important}.navigator-button:active,.navigator-button.cms-btn-active,.navigator-button:visited:active,.navigator-button:visited.cms-btn-active,.navigator-button:link:visited:active,.navigator-button:link:visited.cms-btn-active,.navigator-button:link:active,.navigator-button:link.cms-btn-active{color:var(--dca-white, var(--button-fg, #fff)) !important;background-color:var(--dca-primary, var(--primary, #0bf)) !important;border-color:var(--dca-primary, var(--primary, #0bf)) !important;-webkit-filter:brightness(var(--active-brightness)) opacity(1) !important;filter:brightness(var(--active-brightness)) opacity(1) !important;-webkit-box-shadow:inset 0 3px 5px rgba(var(--dca-black, var(--body-fg, #000)), 0.125) !important;box-shadow:inset 0 3px 5px rgba(var(--dca-black, var(--body-fg, #000)), 0.125) !important}.navigator-button:active:hover,.navigator-button:active:focus,.navigator-button:active.focus,.navigator-button.cms-btn-active:hover,.navigator-button.cms-btn-active:focus,.navigator-button.cms-btn-active.focus,.navigator-button:visited:active:hover,.navigator-button:visited:active:focus,.navigator-button:visited:active.focus,.navigator-button:visited.cms-btn-active:hover,.navigator-button:visited.cms-btn-active:focus,.navigator-button:visited.cms-btn-active.focus,.navigator-button:link:visited:active:hover,.navigator-button:link:visited:active:focus,.navigator-button:link:visited:active.focus,.navigator-button:link:visited.cms-btn-active:hover,.navigator-button:link:visited.cms-btn-active:focus,.navigator-button:link:visited.cms-btn-active.focus,.navigator-button:link:active:hover,.navigator-button:link:active:focus,.navigator-button:link:active.focus,.navigator-button:link.cms-btn-active:hover,.navigator-button:link.cms-btn-active:focus,.navigator-button:link.cms-btn-active.focus{color:var(--dca-white, var(--button-fg, #fff)) !important;background-color:var(--dca-primary, var(--primary, #0bf)) !important;border-color:var(--dca-primary, var(--primary, #0bf)) !important;-webkit-filter:brightness(calc(var(--focus-brightness) * var(--active-brightness))) opacity(1) !important;filter:brightness(calc(var(--focus-brightness) * var(--active-brightness))) opacity(1) !important}.navigator-button:active,.navigator-button.cms-btn-active,.navigator-button:visited:active,.navigator-button:visited.cms-btn-active,.navigator-button:link:visited:active,.navigator-button:link:visited.cms-btn-active,.navigator-button:link:active,.navigator-button:link.cms-btn-active{background-image:none !important}.navigator-button.cms-btn-disabled,.navigator-button.cms-btn-disabled:hover,.navigator-button.cms-btn-disabled:focus,.navigator-button.cms-btn-disabled.focus,.navigator-button.cms-btn-disabled:active,.navigator-button.cms-btn-disabled.cms-btn-active,.navigator-button[disabled],.navigator-button[disabled]:hover,.navigator-button[disabled]:focus,.navigator-button[disabled].focus,.navigator-button[disabled]:active,.navigator-button[disabled].cms-btn-active,.navigator-button:visited.cms-btn-disabled,.navigator-button:visited.cms-btn-disabled:hover,.navigator-button:visited.cms-btn-disabled:focus,.navigator-button:visited.cms-btn-disabled.focus,.navigator-button:visited.cms-btn-disabled:active,.navigator-button:visited.cms-btn-disabled.cms-btn-active,.navigator-button:visited[disabled],.navigator-button:visited[disabled]:hover,.navigator-button:visited[disabled]:focus,.navigator-button:visited[disabled].focus,.navigator-button:visited[disabled]:active,.navigator-button:visited[disabled].cms-btn-active,.navigator-button:link:visited.cms-btn-disabled,.navigator-button:link:visited.cms-btn-disabled:hover,.navigator-button:link:visited.cms-btn-disabled:focus,.navigator-button:link:visited.cms-btn-disabled.focus,.navigator-button:link:visited.cms-btn-disabled:active,.navigator-button:link:visited.cms-btn-disabled.cms-btn-active,.navigator-button:link:visited[disabled],.navigator-button:link:visited[disabled]:hover,.navigator-button:link:visited[disabled]:focus,.navigator-button:link:visited[disabled].focus,.navigator-button:link:visited[disabled]:active,.navigator-button:link:visited[disabled].cms-btn-active,.navigator-button:link.cms-btn-disabled,.navigator-button:link.cms-btn-disabled:hover,.navigator-button:link.cms-btn-disabled:focus,.navigator-button:link.cms-btn-disabled.focus,.navigator-button:link.cms-btn-disabled:active,.navigator-button:link.cms-btn-disabled.cms-btn-active,.navigator-button:link[disabled],.navigator-button:link[disabled]:hover,.navigator-button:link[disabled]:focus,.navigator-button:link[disabled].focus,.navigator-button:link[disabled]:active,.navigator-button:link[disabled].cms-btn-active{background-color:var(--dca-primary, var(--primary, #0bf)) !important;border-color:var(--dca-primary, var(--primary, #0bf)) !important;color:var(--dca-white, var(--button-fg, #fff)) true;-webkit-filter:brightness(0.6) opacity(1);filter:brightness(0.6) opacity(1);cursor:not-allowed;-webkit-box-shadow:none !important;box-shadow:none !important}.navigator-button.cms-btn-disabled:before,.navigator-button.cms-btn-disabled:hover:before,.navigator-button.cms-btn-disabled:focus:before,.navigator-button.cms-btn-disabled.focus:before,.navigator-button.cms-btn-disabled:active:before,.navigator-button.cms-btn-disabled.cms-btn-active:before,.navigator-button[disabled]:before,.navigator-button[disabled]:hover:before,.navigator-button[disabled]:focus:before,.navigator-button[disabled].focus:before,.navigator-button[disabled]:active:before,.navigator-button[disabled].cms-btn-active:before,.navigator-button:visited.cms-btn-disabled:before,.navigator-button:visited.cms-btn-disabled:hover:before,.navigator-button:visited.cms-btn-disabled:focus:before,.navigator-button:visited.cms-btn-disabled.focus:before,.navigator-button:visited.cms-btn-disabled:active:before,.navigator-button:visited.cms-btn-disabled.cms-btn-active:before,.navigator-button:visited[disabled]:before,.navigator-button:visited[disabled]:hover:before,.navigator-button:visited[disabled]:focus:before,.navigator-button:visited[disabled].focus:before,.navigator-button:visited[disabled]:active:before,.navigator-button:visited[disabled].cms-btn-active:before,.navigator-button:link:visited.cms-btn-disabled:before,.navigator-button:link:visited.cms-btn-disabled:hover:before,.navigator-button:link:visited.cms-btn-disabled:focus:before,.navigator-button:link:visited.cms-btn-disabled.focus:before,.navigator-button:link:visited.cms-btn-disabled:active:before,.navigator-button:link:visited.cms-btn-disabled.cms-btn-active:before,.navigator-button:link:visited[disabled]:before,.navigator-button:link:visited[disabled]:hover:before,.navigator-button:link:visited[disabled]:focus:before,.navigator-button:link:visited[disabled].focus:before,.navigator-button:link:visited[disabled]:active:before,.navigator-button:link:visited[disabled].cms-btn-active:before,.navigator-button:link.cms-btn-disabled:before,.navigator-button:link.cms-btn-disabled:hover:before,.navigator-button:link.cms-btn-disabled:focus:before,.navigator-button:link.cms-btn-disabled.focus:before,.navigator-button:link.cms-btn-disabled:active:before,.navigator-button:link.cms-btn-disabled.cms-btn-active:before,.navigator-button:link[disabled]:before,.navigator-button:link[disabled]:hover:before,.navigator-button:link[disabled]:focus:before,.navigator-button:link[disabled].focus:before,.navigator-button:link[disabled]:active:before,.navigator-button:link[disabled].cms-btn-active:before{color:var(--dca-white, var(--button-fg, #fff)) true;-webkit-filter:brightness(0.6) opacity(1);filter:brightness(0.6) opacity(1)}.navigator-button .icon{position:relative;margin-right:3px}.navigator-button .fa-folder{top:0}.navigator-button.navigator-button-upload{margin-right:0}.upload-button-disabled{display:inline-block}.navigator-button+.filer-dropdown-menu{margin-top:-2px}.navigator{position:relative;overflow-x:auto;width:100%}.navigator form{margin:0;padding:0;-webkit-box-shadow:none;box-shadow:none}.filer-dropdown-container{display:inline-block;position:relative;vertical-align:top}.filer-dropdown-container .fa-caret-down,.filer-dropdown-container .cms-icon-caret-down{font-size:14px}.filer-dropdown-container .filer-dropdown-menu,.filer-dropdown-container+.filer-dropdown-menu{display:none;right:0;left:auto;border:0;-webkit-box-shadow:0 1px 10px rgba(0,0,0,.25);box-shadow:0 1px 10px rgba(0,0,0,.25)}.filer-dropdown-container .filer-dropdown-menu>li>a,.filer-dropdown-container+.filer-dropdown-menu>li>a{display:block;color:var(--dca-primary, var(--primary, #0bf));font-weight:normal;white-space:normal;padding:12px 20px !important}@media screen and (min-width: 720px){.filer-dropdown-container .filer-dropdown-menu>li>a,.filer-dropdown-container+.filer-dropdown-menu>li>a{white-space:nowrap}}.filer-dropdown-container .filer-dropdown-menu label,.filer-dropdown-container+.filer-dropdown-menu label{display:block;line-height:20px !important;text-transform:none;width:auto;margin:5px 0 !important;padding:0 10px !important}.filer-dropdown-container .filer-dropdown-menu input,.filer-dropdown-container+.filer-dropdown-menu input{position:relative;top:4px;vertical-align:top;margin-right:5px}.filer-dropdown-container .filer-dropdown-menu.filer-dropdown-menu-checkboxes,.filer-dropdown-container+.filer-dropdown-menu.filer-dropdown-menu-checkboxes{width:0;min-height:50px;padding:15px;border:0;-webkit-box-shadow:0 1px 10px rgba(0,0,0,.25);box-shadow:0 1px 10px rgba(0,0,0,.25)}.filer-dropdown-container .filer-dropdown-menu.filer-dropdown-menu-checkboxes:before,.filer-dropdown-container+.filer-dropdown-menu.filer-dropdown-menu-checkboxes:before{display:none}.filer-dropdown-container .filer-dropdown-menu.filer-dropdown-menu-checkboxes .fa-close,.filer-dropdown-container+.filer-dropdown-menu.filer-dropdown-menu-checkboxes .fa-close{position:absolute;top:10px;right:10px;color:var(--dca-gray, var(--body-quiet-color, #666));cursor:pointer}.filer-dropdown-container .filer-dropdown-menu.filer-dropdown-menu-checkboxes .fa-close:hover,.filer-dropdown-container+.filer-dropdown-menu.filer-dropdown-menu-checkboxes .fa-close:hover{color:var(--dca-primary, var(--primary, #0bf))}.filer-dropdown-container .filer-dropdown-menu.filer-dropdown-menu-checkboxes p,.filer-dropdown-container+.filer-dropdown-menu.filer-dropdown-menu-checkboxes p{color:var(--dca-gray-light, var(--body-quiet-color, #999)) !important;font-weight:normal;text-transform:uppercase;margin-bottom:5px}.filer-dropdown-container .filer-dropdown-menu.filer-dropdown-menu-checkboxes label,.filer-dropdown-container+.filer-dropdown-menu.filer-dropdown-menu-checkboxes label{color:var(--dca-gray, var(--body-quiet-color, #666)) !important;font-weight:normal;padding:0 !important;margin-top:0 !important}.filer-dropdown-container .filer-dropdown-menu.filer-dropdown-menu-checkboxes label input,.filer-dropdown-container+.filer-dropdown-menu.filer-dropdown-menu-checkboxes label input{margin-left:0}.filer-dropdown-container .filer-dropdown-menu a:hover,.filer-dropdown-container+.filer-dropdown-menu a:hover{color:var(--dca-white, var(--body-bg, #fff)) !important;background:var(--dca-primary, var(--primary, #0bf)) !important}.filer-dropdown-container.open .filer-dropdown-menu{display:block}.filer-dropdown-container.open .filer-dropdown-menu li{margin:0;padding:0;list-style-type:none}.filer-dropdown-container+.separator{margin-right:10px}.filer-dropdown-container-down>a,.filer-dropdown-container-down>a:link,.filer-dropdown-container-down>a:visited,.filer-dropdown-container-down>a:link:visited{color:var(--dca-gray, var(--body-quiet-color, #666));font-size:20px;line-height:35px;height:35px;padding:0 10px}.filer-dropdown-container-down .filer-dropdown-menu{right:auto;left:-14px;margin-right:10px}.filer-dropdown-menu{position:absolute;top:100%;z-index:1000;display:none;float:left;min-width:160px;margin:2px 0 0;margin-top:0 !important;padding:0;list-style:none;font-size:14px;text-align:left;background-color:var(--dca-white, var(--body-bg, #fff));border-radius:4px;background-clip:padding-box}.filer-dropdown-menu:before{position:absolute;top:-5px;left:35px;z-index:-1;content:"";width:10px;height:10px;margin-left:-5px;-webkit-transform:rotate(45deg);transform:rotate(45deg);background-color:var(--dca-white, var(--body-bg, #fff))}.filer-dropdown-menu.create-menu-dropdown:before{left:auto;right:17px}.navigator-breadcrumbs{display:table-cell;vertical-align:middle;font-size:16px;white-space:nowrap;width:60px}.navigator-breadcrumbs:before,.navigator-breadcrumbs:after{content:" ";display:table}.navigator-breadcrumbs:after{clear:both}.navigator-breadcrumbs>a{color:var(--dca-gray-darkest, var(--body-fg, #333)) !important}.navigator-breadcrumbs .icon{color:var(--dca-gray-light, var(--body-quiet-color, #999));line-height:35px;height:35px;margin:0 5px}.navigator-breadcrumbs .icon:before{vertical-align:middle}.navigator-breadcrumbs li{list-style-type:none}.navigator-breadcrumbs-folder-name-wrapper{display:table-cell;overflow:hidden;font-size:16px;font-weight:bold;vertical-align:middle;white-space:nowrap}.navigator-breadcrumbs-folder-name{display:block;overflow:hidden;white-space:normal;line-height:35px;width:100%;height:35px}.navigator-breadcrumbs-folder-name-inner{display:block;position:relative;overflow:hidden;line-height:35px;height:35px;width:100%;text-overflow:ellipsis}.filer-navigator-breadcrumbs-dropdown-container{position:relative;float:left;vertical-align:middle;margin:0 7px 0 0}.filer-navigator-breadcrumbs-dropdown-container>a img{padding:3px 0}.filer-navigator-breadcrumbs-dropdown-container .navigator-breadcrumbs-dropdown{left:-15px !important;min-width:200px;padding:0;margin-top:0;border:0;-webkit-box-shadow:0 1px 10px rgba(0,0,0,.25);box-shadow:0 1px 10px rgba(0,0,0,.25)}.filer-navigator-breadcrumbs-dropdown-container .navigator-breadcrumbs-dropdown>li{padding:0}.filer-navigator-breadcrumbs-dropdown-container .navigator-breadcrumbs-dropdown>li>a{color:var(--dca-primary, var(--primary, #0bf));padding:12px 20px 3px !important;border-bottom:solid 1px var(--dca-gray-lightest, var(--darkened-bg, #f2f2f2))}.filer-navigator-breadcrumbs-dropdown-container .navigator-breadcrumbs-dropdown>li>a:hover{color:var(--dca-white, var(--body-bg, #fff)) !important;background:var(--dca-primary, var(--primary, #0bf)) !important}.filer-navigator-breadcrumbs-dropdown-container .navigator-breadcrumbs-dropdown>li:last-child>a{border-bottom:none}.filer-navigator-breadcrumbs-dropdown-container .navigator-breadcrumbs-dropdown img{position:relative;top:-5px;vertical-align:top;margin:0 10px 0 0}.navigator-dropdown-arrow-up{position:relative;left:20px;overflow:hidden;width:20px;height:20px;margin-top:-20px;z-index:1001}.navigator-dropdown-arrow-up:after{content:"";position:absolute;top:15px;left:5px;width:10px;height:10px;background:#fff;-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-box-shadow:0 1px 10px rgba(0,0,0,.25);box-shadow:0 1px 10px rgba(0,0,0,.25)}.navigator-breadcrumbs-name-dropdown-wrapper{display:table;min-height:35px}.navigator-breadcrumbs-name-dropdown-wrapper .filer-dropdown-menu{left:auto;right:-80px}.navigator-breadcrumbs-name-dropdown-wrapper .filer-dropdown-menu:before{right:80px;left:auto}.navigator-breadcrumbs-name-dropdown-wrapper a{display:inline-block}.empty-filer-header-cell{display:table-cell;vertical-align:middle}.filebrowser .navigator-thumbnail-list{overflow:hidden}.filebrowser .navigator-thumbnail-list .navigator-list{border-top:0 !important}.filebrowser .navigator-thumbnail-list .navigator-thumbnail-list-header>*{display:inline-block;text-transform:uppercase;margin:0;padding:0;padding-left:10px}.filebrowser .navigator-thumbnail-list .navigator-thumbnail-list-header .navigator-checkbox{float:right;padding-right:20px;text-transform:initial;color:var(--dca-primary, var(--primary, #0bf))}.filebrowser .navigator-thumbnail-list .navigator-thumbnail-list-header .navigator-checkbox input[type=checkbox]{margin-left:5px;vertical-align:middle}.filebrowser .navigator-thumbnail-list .navigator-body{padding:0 !important}.filebrowser .navigator-thumbnail-list .navigator-body:before,.filebrowser .navigator-thumbnail-list .navigator-body:after{content:" ";display:table}.filebrowser .navigator-thumbnail-list .navigator-body:after{clear:both}.filebrowser .navigator-thumbnail-list .thumbnail-item{float:left;display:inline-block;padding:10px;width:125px;height:125px;border:1px solid var(--dca-gray-lighter, var(--border-color, #ddd));margin:16px 12px;background-color:var(--dca-white, var(--body-bg, #fff));position:relative;overflow:hidden}.filebrowser .navigator-thumbnail-list .thumbnail-item .thumbnail-file-item-box{padding:10px;width:125px;height:125px;border:1px solid var(--dca-gray-lighter, var(--border-color, #ddd));margin:16px 12px;background-color:var(--dca-white, var(--body-bg, #fff))}.filebrowser .navigator-thumbnail-list .thumbnail-item .thumbnail-file-item-box:hover{background-color:#f1faff}.filebrowser .navigator-thumbnail-list .thumbnail-item .navigator-checkbox{position:absolute;top:5px;left:5px}.filebrowser .navigator-thumbnail-list .thumbnail-item .navigator-checkbox input{margin:0;vertical-align:top}.filebrowser .navigator-thumbnail-list .thumbnail-item .item-thumbnail,.filebrowser .navigator-thumbnail-list .thumbnail-item .item-icon{height:50%;width:50%;margin:10px auto;margin-bottom:18px}.filebrowser .navigator-thumbnail-list .thumbnail-item .item-thumbnail a,.filebrowser .navigator-thumbnail-list .thumbnail-item .item-icon a{display:block;height:100%;width:100%}.filebrowser .navigator-thumbnail-list .thumbnail-item .item-thumbnail img,.filebrowser .navigator-thumbnail-list .thumbnail-item .item-icon img{width:100%;height:100%}.filebrowser .navigator-thumbnail-list .thumbnail-item .item-name{background:rgba(0,0,0,0);text-align:center;word-break:break-word}.filebrowser .navigator-thumbnail-list .thumbnail-virtual-item{background-color:initial}.filebrowser .navigator-thumbnail-list .thumbnail-folder-item:hover{background-color:#f1faff}.filebrowser .navigator-thumbnail-list .thumbnail-file-item{float:none;width:147px;height:200px;border:0;padding:0;background-color:rgba(0,0,0,0)}.filebrowser .navigator-thumbnail-list .thumbnail-file-item .thumbnail-file-item-box{float:none;margin:0;margin-bottom:5px}.filebrowser .navigator-thumbnail-list .thumbnail-file-item .item-thumbnail{margin:0;height:100%;width:100%}.filebrowser .navigator-thumbnail-list .thumbnail-file-item .item-name{position:relative;word-break:break-word}.insertlinkButton:before{content:"" !important}.insertlinkButton span{font-size:17px}.popup.app-cmsplugin_filer_image .form-row.field-image .field-box,.popup.app-cmsplugin_filer_image .field-box.field-free_link,.popup.app-cmsplugin_filer_image .field-box.field-page_link,.popup.app-cmsplugin_filer_image .field-box.field-file_link{float:none !important;margin-right:0 !important;margin-top:20px !important}.popup.app-cmsplugin_filer_image .form-row.field-image .field-box:first-child,.popup.app-cmsplugin_filer_image .field-box.field-free_link:first-child,.popup.app-cmsplugin_filer_image .field-box.field-page_link:first-child,.popup.app-cmsplugin_filer_image .field-box.field-file_link:first-child{margin-top:0 !important}.popup.app-cmsplugin_filer_image .form-row.field-image .field-box input,.popup.app-cmsplugin_filer_image .field-box.field-free_link input,.popup.app-cmsplugin_filer_image .field-box.field-page_link input,.popup.app-cmsplugin_filer_image .field-box.field-file_link input{width:100% !important}.popup.app-cmsplugin_filer_image .form-row .field-box.field-crop,.popup.app-cmsplugin_filer_image .form-row .field-box.field-upscale{margin-top:30px}.popup.delete-confirmation .colM ul{margin-bottom:25px !important}.popup .image-info-detail{padding:0;padding-bottom:25px;margin-bottom:30px;-webkit-box-shadow:none;box-shadow:none;border-bottom:solid 1px var(--dca-gray-lighter, var(--border-color, #ddd))}.popup.change-list.filebrowser #result_list tbody th,.popup.change-list.filebrowser #result_list tbody td{height:auto}.popup .filer-dropzone{padding:5px 20px}.popup form .form-row .filer-dropzone .filerFile{top:8px}.popup.filebrowser #container #content{margin:0 !important}.popup .navigator-button-wrapper{float:right}@media screen and (max-width: 720px){.popup .navigator-button-wrapper{float:none}}.popup .navigator-top-nav .tools-container{width:70%}.popup .navigator-top-nav .breadcrumbs-container{width:30%}@media screen and (max-width: 720px){.popup .navigator-top-nav .tools-container,.popup .navigator-top-nav .breadcrumbs-container{width:100%}}form .form-row[class*=file] .related-widget-wrapper-link,form .form-row[class*=folder] .related-widget-wrapper-link,form .form-row[class*=img] .related-widget-wrapper-link,form .form-row[class*=image] .related-widget-wrapper-link,form .form-row[class*=visual] .related-widget-wrapper-link{display:none}form .form-row .filer-dropzone{position:relative;min-width:215px;border:solid 1px var(--dca-gray-lighter, var(--border-color, #ddd));border-radius:3px;background-color:var(--dca-gray-lightest, var(--darkened-bg, #f2f2f2));-webkit-box-sizing:border-box !important;box-sizing:border-box !important}form .form-row .filer-dropzone:before,form .form-row .filer-dropzone:after{content:" ";display:table}form .form-row .filer-dropzone:after{clear:both}form .form-row .filer-dropzone .z-index-fix{position:absolute;top:0;right:0;bottom:0;left:0}form .form-row .filer-dropzone.dz-drag-hover{background-color:var(--dca-primary, var(--primary, #0bf));-webkit-filter:brightness(1.5);filter:brightness(1.5);border:solid 2px var(--dca-primary, var(--primary, #0bf)) !important}form .form-row .filer-dropzone.dz-drag-hover .z-index-fix{z-index:1}form .form-row .filer-dropzone.dz-drag-hover .dz-message{opacity:1;display:block !important;visibility:visible}form .form-row .filer-dropzone.dz-drag-hover .filerFile{display:none}form .form-row .filer-dropzone.dz-drag-hover .dz-message,form .form-row .filer-dropzone.dz-drag-hover .dz-message .icon{color:var(--dca-primary, var(--primary, #0bf)) !important}form .form-row .filer-dropzone.dz-started .fileUpload{display:none}form .form-row .filer-dropzone .dz-preview{width:100%;min-height:auto;margin-right:0;margin-bottom:0;margin-left:0;padding-bottom:10px;border-bottom:solid 1px var(--dca-gray-lighter, var(--border-color, #ddd))}form .form-row .filer-dropzone .dz-preview.dz-error{position:relative}form .form-row .filer-dropzone .dz-preview.dz-error .dz-error-message{display:none}form .form-row .filer-dropzone .dz-preview.dz-error:hover .dz-error-message{display:block}form .form-row .filer-dropzone .dz-preview .dz-details{min-width:calc(100% - 80px);max-width:calc(100% - 80px);margin-top:7px;margin-left:40px;padding:0;opacity:1}form .form-row .filer-dropzone .dz-preview .dz-details .dz-filename,form .form-row .filer-dropzone .dz-preview .dz-details .dz-filename:hover,form .form-row .filer-dropzone .dz-preview .dz-details .dz-size{float:left;text-align:left}form .form-row .filer-dropzone .dz-preview .dz-details .dz-filename span,form .form-row .filer-dropzone .dz-preview .dz-details .dz-filename:hover span,form .form-row .filer-dropzone .dz-preview .dz-details .dz-size span{color:var(--dca-gray, var(--body-quiet-color, #666));border:0 !important;background-color:rgba(0,0,0,0) !important}form .form-row .filer-dropzone .dz-preview .dz-remove{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-trash' viewBox='0 0 16 16'%3E%3Cpath d='M5.5 5.5A.5.5 0 0 1 6 6v6a.5.5 0 0 1-1 0V6a.5.5 0 0 1 .5-.5Zm2.5 0a.5.5 0 0 1 .5.5v6a.5.5 0 0 1-1 0V6a.5.5 0 0 1 .5-.5Zm3 .5a.5.5 0 0 0-1 0v6a.5.5 0 0 0 1 0V6Z'/%3E%3Cpath d='M14.5 3a1 1 0 0 1-1 1H13v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V4h-.5a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1H6a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1h3.5a1 1 0 0 1 1 1v1ZM4.118 4 4 4.059V13a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4.059L11.882 4H4.118ZM2.5 3h11V2h-11v1Z'/%3E%3C/svg%3E%0A");background-size:contain;display:inline-block;position:absolute;top:7px;right:25px;font:0/0 a;width:18px;height:18px}form .form-row .filer-dropzone .dz-preview .dz-error-message{top:65px;left:0;width:100%}form .form-row .filer-dropzone .dz-preview .dz-success-mark,form .form-row .filer-dropzone .dz-preview .dz-error-mark{top:5px;right:0;left:auto;margin-top:0}form .form-row .filer-dropzone .dz-preview .dz-success-mark:before,form .form-row .filer-dropzone .dz-preview .dz-error-mark:before{color:var(--dca-gray, var(--body-quiet-color, #666))}form .form-row .filer-dropzone .dz-preview .dz-success-mark svg,form .form-row .filer-dropzone .dz-preview .dz-error-mark svg{display:none}form .form-row .filer-dropzone .dz-preview .dz-success-mark{width:16px;height:16px;background-image:url("data:image/svg+xml,%3Csvg width='13' height='13' viewBox='0 0 1792 1792' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%2370bf2b' d='M1412 734q0-28-18-46l-91-90q-19-19-45-19t-45 19l-408 407-226-226q-19-19-45-19t-45 19l-91 90q-18 18-18 46 0 27 18 45l362 362q19 19 45 19 27 0 46-19l543-543q18-18 18-45zm252 162q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z'/%3E%3C/svg%3E%0A");background-size:contain}form .form-row .filer-dropzone .dz-preview .dz-error-mark{background-image:url("data:image/svg+xml,%3Csvg width='13' height='13' viewBox='0 0 1792 1792' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23dd4646' d='M1277 1122q0-26-19-45l-181-181 181-181q19-19 19-45 0-27-19-46l-90-90q-19-19-46-19-26 0-45 19l-181 181-181-181q-19-19-45-19-27 0-46 19l-90 90q-19 19-19 46 0 26 19 45l181 181-181 181q-19 19-19 45 0 27 19 46l90 90q19 19 46 19 26 0 45-19l181-181 181 181q19 19 45 19 27 0 46-19l90-90q19-19 19-46zm387-226q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z'/%3E%3C/svg%3E%0A");width:16px;height:16px;background-size:contain}form .form-row .filer-dropzone .dz-preview.dz-image-preview,form .form-row .filer-dropzone .dz-preview.dz-file-preview{background-color:rgba(0,0,0,0)}form .form-row .filer-dropzone .dz-preview.dz-image-preview .dz-image,form .form-row .filer-dropzone .dz-preview.dz-file-preview .dz-image{overflow:hidden;width:36px;height:36px;border:solid 1px var(--dca-gray-lighter, var(--border-color, #ddd));border-radius:0}form .form-row .filer-dropzone .dz-preview.dz-image-preview .dz-image img,form .form-row .filer-dropzone .dz-preview.dz-file-preview .dz-image img{width:100%;height:auto}form .form-row .filer-dropzone .dz-preview .dz-progress{top:18px;left:0;width:calc(100% - 40px);height:10px;margin-left:40px}form .form-row .filer-dropzone .dz-message{float:right;color:var(--dca-gray-lightest, var(--darkened-bg, #f2f2f2));width:100%;margin:15px 0 0}form .form-row .filer-dropzone .icon{position:relative;top:3px;color:var(--dca-gray-lightest, var(--darkened-bg, #f2f2f2));font-size:24px;margin-right:10px}form .form-row .filer-dropzone .filerFile .related-lookup{background-image:none !important;margin-bottom:0;border-radius:3px !important;color:var(--dca-white, var(--button-fg, #fff)) !important;background-color:var(--dca-primary, var(--primary, #0bf)) !important;border:1px solid var(--dca-primary, var(--primary, #0bf)) !important;background-clip:padding-box;-webkit-appearance:none;float:left !important;overflow:hidden;line-height:14px;width:auto !important;height:auto !important;padding:10px 20px !important;margin-top:24px;margin-left:10px;text-align:center !important;cursor:pointer}form .form-row .filer-dropzone .filerFile .related-lookup:focus,form .form-row .filer-dropzone .filerFile .related-lookup.focus,form .form-row .filer-dropzone .filerFile .related-lookup:hover{color:var(--dca-white, var(--button-fg, #fff)) !important;background-color:var(--dca-primary, var(--primary, #0bf)) !important;border-color:var(--dca-primary, var(--primary, #0bf)) !important;-webkit-filter:invert(0.05) !important;filter:invert(0.05) !important;text-decoration:none !important}form .form-row .filer-dropzone .filerFile .related-lookup:active,form .form-row .filer-dropzone .filerFile .related-lookup.cms-btn-active{color:var(--dca-white, var(--button-fg, #fff)) !important;background-color:var(--dca-primary, var(--primary, #0bf)) !important;border-color:var(--dca-primary, var(--primary, #0bf)) !important;-webkit-filter:brightness(var(--active-brightness)) opacity(1) !important;filter:brightness(var(--active-brightness)) opacity(1) !important;-webkit-box-shadow:inset 0 3px 5px rgba(var(--dca-black, var(--body-fg, #000)), 0.125) !important;box-shadow:inset 0 3px 5px rgba(var(--dca-black, var(--body-fg, #000)), 0.125) !important}form .form-row .filer-dropzone .filerFile .related-lookup:active:hover,form .form-row .filer-dropzone .filerFile .related-lookup:active:focus,form .form-row .filer-dropzone .filerFile .related-lookup:active.focus,form .form-row .filer-dropzone .filerFile .related-lookup.cms-btn-active:hover,form .form-row .filer-dropzone .filerFile .related-lookup.cms-btn-active:focus,form .form-row .filer-dropzone .filerFile .related-lookup.cms-btn-active.focus{color:var(--dca-white, var(--button-fg, #fff)) !important;background-color:var(--dca-primary, var(--primary, #0bf)) !important;border-color:var(--dca-primary, var(--primary, #0bf)) !important;-webkit-filter:brightness(calc(var(--focus-brightness) * var(--active-brightness))) opacity(1) !important;filter:brightness(calc(var(--focus-brightness) * var(--active-brightness))) opacity(1) !important}form .form-row .filer-dropzone .filerFile .related-lookup:active,form .form-row .filer-dropzone .filerFile .related-lookup.cms-btn-active{background-image:none !important}form .form-row .filer-dropzone .filerFile .related-lookup.cms-btn-disabled,form .form-row .filer-dropzone .filerFile .related-lookup.cms-btn-disabled:hover,form .form-row .filer-dropzone .filerFile .related-lookup.cms-btn-disabled:focus,form .form-row .filer-dropzone .filerFile .related-lookup.cms-btn-disabled.focus,form .form-row .filer-dropzone .filerFile .related-lookup.cms-btn-disabled:active,form .form-row .filer-dropzone .filerFile .related-lookup.cms-btn-disabled.cms-btn-active,form .form-row .filer-dropzone .filerFile .related-lookup[disabled],form .form-row .filer-dropzone .filerFile .related-lookup[disabled]:hover,form .form-row .filer-dropzone .filerFile .related-lookup[disabled]:focus,form .form-row .filer-dropzone .filerFile .related-lookup[disabled].focus,form .form-row .filer-dropzone .filerFile .related-lookup[disabled]:active,form .form-row .filer-dropzone .filerFile .related-lookup[disabled].cms-btn-active{background-color:var(--dca-primary, var(--primary, #0bf)) !important;border-color:var(--dca-primary, var(--primary, #0bf)) !important;color:var(--dca-white, var(--button-fg, #fff)) true;-webkit-filter:brightness(0.6) opacity(1);filter:brightness(0.6) opacity(1);cursor:not-allowed;-webkit-box-shadow:none !important;box-shadow:none !important}form .form-row .filer-dropzone .filerFile .related-lookup.cms-btn-disabled:before,form .form-row .filer-dropzone .filerFile .related-lookup.cms-btn-disabled:hover:before,form .form-row .filer-dropzone .filerFile .related-lookup.cms-btn-disabled:focus:before,form .form-row .filer-dropzone .filerFile .related-lookup.cms-btn-disabled.focus:before,form .form-row .filer-dropzone .filerFile .related-lookup.cms-btn-disabled:active:before,form .form-row .filer-dropzone .filerFile .related-lookup.cms-btn-disabled.cms-btn-active:before,form .form-row .filer-dropzone .filerFile .related-lookup[disabled]:before,form .form-row .filer-dropzone .filerFile .related-lookup[disabled]:hover:before,form .form-row .filer-dropzone .filerFile .related-lookup[disabled]:focus:before,form .form-row .filer-dropzone .filerFile .related-lookup[disabled].focus:before,form .form-row .filer-dropzone .filerFile .related-lookup[disabled]:active:before,form .form-row .filer-dropzone .filerFile .related-lookup[disabled].cms-btn-active:before{color:var(--dca-white, var(--button-fg, #fff)) true;-webkit-filter:brightness(0.6) opacity(1);filter:brightness(0.6) opacity(1)}form .form-row .filer-dropzone .filerFile .related-lookup .cms-icon{color:var(--dca-white, var(--body-bg, #fff));font-size:17px;margin:0 10px 0 0;vertical-align:middle}form .form-row .filer-dropzone .filerFile .related-lookup:before{display:none}form .form-row .filer-dropzone .filerFile .related-lookup .choose-file,form .form-row .filer-dropzone .filerFile .related-lookup .replace-file,form .form-row .filer-dropzone .filerFile .related-lookup .edit-file{color:var(--dca-white, var(--body-bg, #fff));margin:0}form .form-row .filer-dropzone .filerFile .related-lookup .replace-file{display:none}form .form-row .filer-dropzone .filerFile .related-lookup.edit{display:none}form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change{background-image:none !important;margin-bottom:0;border-radius:3px !important;color:var(--dca-gray-light, var(--button-fg, #999)) !important;background-color:var(--dca-white, var(--button-bg, #fff)) !important;border:1px solid var(--dca-gray-lighter, transparent) !important;background-clip:padding-box;-webkit-appearance:none;float:right !important;padding:5px 0 !important;width:36px !important;height:36px !important}form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change:focus,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.focus,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change:hover{color:var(--dca-gray-light, var(--button-fg, #999)) !important;background-color:var(--dca-gray-lightest, var(--darkened-bg, #f2f2f2)) !important;border-color:var(--dca-gray-lighter, transparent) !important;text-decoration:none !important}form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change:active,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.cms-btn-active{color:var(--dca-gray-light, var(--button-fg, #999)) !important;background-color:var(--dca-white, var(--button-bg, #fff)) !important;border-color:var(--dca-gray-lighter, transparent) !important;-webkit-filter:brightness(var(--active-brightness)) opacity(1) !important;filter:brightness(var(--active-brightness)) opacity(1) !important;-webkit-box-shadow:inset 0 3px 5px rgba(var(--dca-black, var(--body-fg, #000)), 0.125) !important;box-shadow:inset 0 3px 5px rgba(var(--dca-black, var(--body-fg, #000)), 0.125) !important}form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change:active:hover,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change:active:focus,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change:active.focus,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.cms-btn-active:hover,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.cms-btn-active:focus,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.cms-btn-active.focus{color:var(--dca-gray-light, var(--button-fg, #999)) !important;background-color:var(--dca-white, var(--button-bg, #fff)) !important;border-color:var(--dca-gray-lighter, transparent) !important;-webkit-filter:brightness(calc(var(--focus-brightness) * var(--active-brightness))) opacity(1) !important;filter:brightness(calc(var(--focus-brightness) * var(--active-brightness))) opacity(1) !important}form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change:active,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.cms-btn-active{background-image:none !important}form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.cms-btn-disabled,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.cms-btn-disabled:hover,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.cms-btn-disabled:focus,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.cms-btn-disabled.focus,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.cms-btn-disabled:active,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.cms-btn-disabled.cms-btn-active,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change[disabled],form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change[disabled]:hover,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change[disabled]:focus,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change[disabled].focus,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change[disabled]:active,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change[disabled].cms-btn-active{background-color:var(--dca-white, var(--button-bg, #fff)) !important;border-color:var(--dca-gray-lighter, transparent) !important;color:var(--dca-gray-light, var(--button-fg, #999)) true;-webkit-filter:brightness(0.6) opacity(1);filter:brightness(0.6) opacity(1);cursor:not-allowed;-webkit-box-shadow:none !important;box-shadow:none !important}form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.cms-btn-disabled:before,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.cms-btn-disabled:hover:before,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.cms-btn-disabled:focus:before,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.cms-btn-disabled.focus:before,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.cms-btn-disabled:active:before,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.cms-btn-disabled.cms-btn-active:before,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change[disabled]:before,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change[disabled]:hover:before,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change[disabled]:focus:before,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change[disabled].focus:before,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change[disabled]:active:before,form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change[disabled].cms-btn-active:before{color:var(--dca-gray-light, var(--button-fg, #999)) true;-webkit-filter:brightness(0.6) opacity(1);filter:brightness(0.6) opacity(1)}form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change:focus{background-color:var(--dca-white, var(--body-bg, #fff)) !important}form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change span{text-align:center;line-height:24px}form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change .cms-icon{color:var(--dca-gray-light, var(--button-fg, #999));margin-right:0 !important}form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change .choose-file{display:none}form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change .replace-file{display:block}form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.lookup{display:block !important}form .form-row .filer-dropzone .filerFile .related-lookup.related-lookup-change.edit{display:block}form .form-row .filer-dropzone .filerClearer{width:36px !important;height:36px !important;color:red}form .form-row .filer-dropzone .filerFile{position:absolute;top:9px;left:20px;width:calc(100% - 40px)}form .form-row .filer-dropzone .filerFile img[src*=nofile]{background-color:var(--dca-white, var(--body-bg, #fff))}form .form-row .filer-dropzone .filerFile span:not(:empty):not(.choose-file):not(.replace-file):not(.edit-file){overflow:hidden;white-space:nowrap;text-overflow:ellipsis;width:calc(100% - 260px);height:80px;line-height:80px}form .form-row .filer-dropzone .filerFile img{width:80px;height:80px;margin-right:10px;border:solid 1px var(--dca-gray-lighter, var(--border-color, #ddd));border-radius:3px;vertical-align:top}form .form-row .filer-dropzone .filerFile img[src*=nofile]{-webkit-box-sizing:border-box;box-sizing:border-box;margin-right:0;border:solid 1px var(--dca-gray-lighter, var(--border-color, #ddd));border-radius:3px}form .form-row .filer-dropzone .filerFile a{-webkit-box-sizing:border-box;box-sizing:border-box;padding-top:10px !important}form .form-row .filer-dropzone .filerFile span{display:inline-block;color:var(--dca-gray, var(--body-quiet-color, #666));font-weight:normal;margin-bottom:6px;text-align:left}form .form-row .filer-dropzone .filerFile span:empty+.related-lookup{float:none !important;margin-left:0 !important}form .form-row .filer-dropzone .filerFile a.filerClearer{background-image:none !important;margin-bottom:0;border-radius:3px !important;color:var(--dca-gray-light, var(--button-fg, #999)) !important;background-color:var(--dca-white, var(--button-bg, #fff)) !important;border:1px solid var(--dca-gray-lighter, transparent) !important;background-clip:padding-box;-webkit-appearance:none;float:right;padding:5px 0 !important;margin:24px 0 0 10px;width:36px;height:36px;text-align:center;cursor:pointer}form .form-row .filer-dropzone .filerFile a.filerClearer:focus,form .form-row .filer-dropzone .filerFile a.filerClearer.focus,form .form-row .filer-dropzone .filerFile a.filerClearer:hover{color:var(--dca-gray-light, var(--button-fg, #999)) !important;background-color:var(--dca-gray-lightest, var(--darkened-bg, #f2f2f2)) !important;border-color:var(--dca-gray-lighter, transparent) !important;text-decoration:none !important}form .form-row .filer-dropzone .filerFile a.filerClearer:active,form .form-row .filer-dropzone .filerFile a.filerClearer.cms-btn-active{color:var(--dca-gray-light, var(--button-fg, #999)) !important;background-color:var(--dca-white, var(--button-bg, #fff)) !important;border-color:var(--dca-gray-lighter, transparent) !important;-webkit-filter:brightness(var(--active-brightness)) opacity(1) !important;filter:brightness(var(--active-brightness)) opacity(1) !important;-webkit-box-shadow:inset 0 3px 5px rgba(var(--dca-black, var(--body-fg, #000)), 0.125) !important;box-shadow:inset 0 3px 5px rgba(var(--dca-black, var(--body-fg, #000)), 0.125) !important}form .form-row .filer-dropzone .filerFile a.filerClearer:active:hover,form .form-row .filer-dropzone .filerFile a.filerClearer:active:focus,form .form-row .filer-dropzone .filerFile a.filerClearer:active.focus,form .form-row .filer-dropzone .filerFile a.filerClearer.cms-btn-active:hover,form .form-row .filer-dropzone .filerFile a.filerClearer.cms-btn-active:focus,form .form-row .filer-dropzone .filerFile a.filerClearer.cms-btn-active.focus{color:var(--dca-gray-light, var(--button-fg, #999)) !important;background-color:var(--dca-white, var(--button-bg, #fff)) !important;border-color:var(--dca-gray-lighter, transparent) !important;-webkit-filter:brightness(calc(var(--focus-brightness) * var(--active-brightness))) opacity(1) !important;filter:brightness(calc(var(--focus-brightness) * var(--active-brightness))) opacity(1) !important}form .form-row .filer-dropzone .filerFile a.filerClearer:active,form .form-row .filer-dropzone .filerFile a.filerClearer.cms-btn-active{background-image:none !important}form .form-row .filer-dropzone .filerFile a.filerClearer.cms-btn-disabled,form .form-row .filer-dropzone .filerFile a.filerClearer.cms-btn-disabled:hover,form .form-row .filer-dropzone .filerFile a.filerClearer.cms-btn-disabled:focus,form .form-row .filer-dropzone .filerFile a.filerClearer.cms-btn-disabled.focus,form .form-row .filer-dropzone .filerFile a.filerClearer.cms-btn-disabled:active,form .form-row .filer-dropzone .filerFile a.filerClearer.cms-btn-disabled.cms-btn-active,form .form-row .filer-dropzone .filerFile a.filerClearer[disabled],form .form-row .filer-dropzone .filerFile a.filerClearer[disabled]:hover,form .form-row .filer-dropzone .filerFile a.filerClearer[disabled]:focus,form .form-row .filer-dropzone .filerFile a.filerClearer[disabled].focus,form .form-row .filer-dropzone .filerFile a.filerClearer[disabled]:active,form .form-row .filer-dropzone .filerFile a.filerClearer[disabled].cms-btn-active{background-color:var(--dca-white, var(--button-bg, #fff)) !important;border-color:var(--dca-gray-lighter, transparent) !important;color:var(--dca-gray-light, var(--button-fg, #999)) true;-webkit-filter:brightness(0.6) opacity(1);filter:brightness(0.6) opacity(1);cursor:not-allowed;-webkit-box-shadow:none !important;box-shadow:none !important}form .form-row .filer-dropzone .filerFile a.filerClearer.cms-btn-disabled:before,form .form-row .filer-dropzone .filerFile a.filerClearer.cms-btn-disabled:hover:before,form .form-row .filer-dropzone .filerFile a.filerClearer.cms-btn-disabled:focus:before,form .form-row .filer-dropzone .filerFile a.filerClearer.cms-btn-disabled.focus:before,form .form-row .filer-dropzone .filerFile a.filerClearer.cms-btn-disabled:active:before,form .form-row .filer-dropzone .filerFile a.filerClearer.cms-btn-disabled.cms-btn-active:before,form .form-row .filer-dropzone .filerFile a.filerClearer[disabled]:before,form .form-row .filer-dropzone .filerFile a.filerClearer[disabled]:hover:before,form .form-row .filer-dropzone .filerFile a.filerClearer[disabled]:focus:before,form .form-row .filer-dropzone .filerFile a.filerClearer[disabled].focus:before,form .form-row .filer-dropzone .filerFile a.filerClearer[disabled]:active:before,form .form-row .filer-dropzone .filerFile a.filerClearer[disabled].cms-btn-active:before{color:var(--dca-gray-light, var(--button-fg, #999)) true;-webkit-filter:brightness(0.6) opacity(1);filter:brightness(0.6) opacity(1)}form .form-row .filer-dropzone .filerFile a.filerClearer span:before{color:red !important}form .form-row .filer-dropzone .filerFile a.filerClearer span{text-align:center;line-height:24px}form .form-row .filer-dropzone.filer-dropzone-mobile .filerFile{text-align:center}form .form-row .filer-dropzone.filer-dropzone-mobile .dz-message{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;margin-top:75px}form .form-row .filer-dropzone.filer-dropzone-mobile.js-object-attached .filerFile{text-align:center}@media screen and (max-width: 810px){form .form-row .filer-dropzone.filer-dropzone-mobile.js-object-attached .filerFile.js-file-selector .description_text{text-overflow:ellipsis;width:calc(100% - 250px);overflow:hidden}}form .form-row .filer-dropzone.filer-dropzone-mobile.js-object-attached .filerFile.js-file-selector>span:not(.choose-file):not(.replace-file):not(.edit-file),form .form-row .filer-dropzone.filer-dropzone-mobile.js-object-attached .filerFile.js-file-selector .dz-name{width:calc(100% - 250px)}form .form-row .filer-dropzone.filer-dropzone-folder .filerFile{top:8px}form .form-row .filer-dropzone.filer-dropzone-folder .filerFile #id_folder_description_txt{float:left}@media(max-width: 767px){form .form-row .filer-dropzone{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}}.filer-dropzone{min-height:100px !important}.filer-dropzone .dz-upload{height:5px;background-color:var(--dca-primary, var(--primary, #0bf))}.filer-dropzone .dz-name{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;max-width:calc(100% - 145px)}.filer-dropzone .dz-thumbnail{display:inline-block;overflow:hidden;vertical-align:top;width:80px;height:80px;margin-right:10px;border:solid 1px var(--dca-gray-lighter, var(--border-color, #ddd));border-radius:3px;background:var(--dca-white, var(--body-bg, #fff)) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%232980b9' d='M5 2c-1.105 0-2 .9-2 2v18c0 1.1.895 2 2 2h14c1.105 0 2-.9 2-2V8l-6-6z'/%3E%3Cpath fill='%233498db' d='M5 1c-1.105 0-2 .9-2 2v18c0 1.1.895 2 2 2h14c1.105 0 2-.9 2-2V7l-6-6z'/%3E%3Cpath fill='%232980b9' d='m21 7-6-6v4c0 1.1.895 2 2 2z'/%3E%3C/svg%3E");background-size:contain}.filer-dropzone .dz-thumbnail img{background:var(--dca-white, var(--body-bg, #fff))}.filer-dropzone .dz-thumbnail img[src=""],.filer-dropzone .dz-thumbnail img:not([src]){width:104%;height:104%;margin:-2%}.filer-dropzone-info-message{position:fixed;bottom:35px;left:50%;z-index:2;text-align:center;width:270px;max-height:300px;overflow-y:auto;margin:-50px 0 0 -150px;padding:15px 15px 0;border-radius:3px;background:var(--dca-white, var(--body-bg, #fff));-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.2);box-shadow:0 0 5px 0 rgba(0,0,0,.2)}.filer-dropzone-info-message .icon{font-size:35px;color:var(--dca-primary, var(--primary, #0bf))}.filer-dropzone-info-message .text{margin:5px 0 10px}.filer-dropzone-upload-info{margin-top:10px}.filer-dropzone-upload-info .filer-dropzone-file-name{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.filer-dropzone-upload-info:empty{margin-top:0}.filer-dropzone-progress{height:5px;margin-top:5px;background-color:var(--dca-primary, var(--primary, #0bf))}.filer-dropzone-upload-welcome .folder{color:var(--dca-primary, var(--primary, #0bf));padding:10px 0 0;margin:0 -15px;border-top:solid 1px var(--dca-gray-lighter, var(--border-color, #ddd))}.filer-dropzone-upload-welcome .folder img,.filer-dropzone-upload-welcome .folder span{vertical-align:middle}.filer-dropzone-upload-welcome .folder img{margin-right:5px}.filer-dropzone-upload-welcome .folder .folder-inner{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;padding:0 10px}.filer-dropzone-cancel{padding-top:10px;border-top:solid 1px var(--dca-gray-lighter, var(--border-color, #ddd));margin:15px -15px 10px}.filer-dropzone-cancel a{font-size:12px;color:var(--dca-gray, var(--body-quiet-color, #666)) !important}.filer-dropzone-upload-success,.filer-dropzone-upload-canceled{margin:0 -15px 10px}.filer-dropzone-upload-count{padding-bottom:10px;margin:10px -15px;border-bottom:solid 1px var(--dca-gray-lighter, var(--border-color, #ddd))}.filer-tooltip-wrapper{position:relative}.filer-tooltip{position:absolute;left:-30px;right:-30px;color:var(--dca-gray, var(--body-quiet-color, #666));text-align:center;font-size:12px !important;line-height:15px !important;white-space:normal;margin-top:5px;padding:10px;background-color:var(--dca-white, var(--body-bg, #fff));-webkit-box-shadow:0 0 10px rgba(0,0,0,.25);box-shadow:0 0 10px rgba(0,0,0,.25);border-radius:5px;z-index:10}.filer-tooltip:before{position:absolute;top:-3px;left:50%;z-index:-1;content:"";width:9px;height:9px;margin-left:-5px;-webkit-transform:rotate(45deg);transform:rotate(45deg);background-color:var(--dca-white, var(--body-bg, #fff))}.disabled-btn-tooltip{display:none;outline:none}@-webkit-keyframes passing-through{0%{opacity:0;-webkit-transform:translateY(40px);transform:translateY(40px)}30%,70%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-40px);transform:translateY(-40px)}}@keyframes passing-through{0%{opacity:0;-webkit-transform:translateY(40px);transform:translateY(40px)}30%,70%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-40px);transform:translateY(-40px)}}@-webkit-keyframes slide-in{0%{opacity:0;-webkit-transform:translateY(40px);transform:translateY(40px)}30%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes slide-in{0%{opacity:0;-webkit-transform:translateY(40px);transform:translateY(40px)}30%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes pulse{0%{-webkit-transform:scale(1);transform:scale(1)}10%{-webkit-transform:scale(1.1);transform:scale(1.1)}20%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes pulse{0%{-webkit-transform:scale(1);transform:scale(1)}10%{-webkit-transform:scale(1.1);transform:scale(1.1)}20%{-webkit-transform:scale(1);transform:scale(1)}}.filer-dropzone,.filer-dropzone *{-webkit-box-sizing:border-box;box-sizing:border-box}.filer-dropzone{min-height:150px;padding:20px 20px;border:2px solid rgba(0,0,0,.3);background:#fff}.filer-dropzone.dz-clickable{cursor:pointer}.filer-dropzone.dz-clickable *{cursor:default}.filer-dropzone.dz-clickable .dz-message,.filer-dropzone.dz-clickable .dz-message *{cursor:pointer}.filer-dropzone.dz-drag-hover{border-style:solid}.filer-dropzone.dz-drag-hover .dz-message{opacity:.5}.filer-dropzone .dz-message{text-align:center;margin:2em 0}.filer-dropzone .dz-preview{display:inline-block;position:relative;vertical-align:top;min-height:100px;margin:16px}.filer-dropzone .dz-preview:hover{z-index:1000}.filer-dropzone .dz-preview:hover .dz-details{opacity:1}.filer-dropzone .dz-preview.dz-file-preview .dz-image{border-radius:20px;background:var(--dca-gray-light, var(--body-quiet-color, #999));background:-webkit-gradient(linear, left top, left bottom, from(var(--dca-gray-lightest, var(--darkened-bg, #f2f2f2))), to(var(--dca-gray-lighter, var(--border-color, #ddd))));background:linear-gradient(to bottom, var(--dca-gray-lightest, var(--darkened-bg, #f2f2f2)), var(--dca-gray-lighter, var(--border-color, #ddd)))}.filer-dropzone .dz-preview.dz-file-preview .dz-details{opacity:1}.filer-dropzone .dz-preview.dz-image-preview{background:#fff}.filer-dropzone .dz-preview.dz-image-preview .dz-details{-webkit-transition:opacity .2s linear;transition:opacity .2s linear}.filer-dropzone .dz-preview .dz-remove{display:block;font-size:14px;text-align:center;border:none;cursor:pointer}.filer-dropzone .dz-preview .dz-remove:hover{text-decoration:underline}.filer-dropzone .dz-preview:hover .dz-details{opacity:1}.filer-dropzone .dz-preview .dz-details{position:absolute;top:0;left:0;z-index:20;color:rgba(0,0,0,.9);font-size:13px;line-height:150%;text-align:center;min-width:100%;max-width:100%;padding:2em 1em;opacity:0}.filer-dropzone .dz-preview .dz-details .dz-size{font-size:16px;margin-bottom:1em}.filer-dropzone .dz-preview .dz-details .dz-filename{white-space:nowrap}.filer-dropzone .dz-preview .dz-details .dz-filename:hover span{border:1px solid rgba(200,200,200,.8);background-color:rgba(255,255,255,.8)}.filer-dropzone .dz-preview .dz-details .dz-filename:not(:hover){overflow:hidden;text-overflow:ellipsis}.filer-dropzone .dz-preview .dz-details .dz-filename:not(:hover) span{border:1px solid rgba(0,0,0,0)}.filer-dropzone .dz-preview .dz-details .dz-filename span,.filer-dropzone .dz-preview .dz-details .dz-size span{padding:0 .4em;border-radius:3px;background-color:rgba(255,255,255,.4)}.filer-dropzone .dz-preview:hover .dz-image img{-webkit-transform:scale(1.05, 1.05);transform:scale(1.05, 1.05);-webkit-filter:blur(8px);filter:blur(8px)}.filer-dropzone .dz-preview .dz-image{display:block;position:relative;overflow:hidden;z-index:10;width:120px;height:120px;border-radius:20px}.filer-dropzone .dz-preview .dz-image img{display:block}.filer-dropzone .dz-preview.dz-success .dz-success-mark{-webkit-animation:passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);animation:passing-through 3s cubic-bezier(0.77, 0, 0.175, 1)}.filer-dropzone .dz-preview.dz-error .dz-error-mark{opacity:1;-webkit-animation:slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);animation:slide-in 3s cubic-bezier(0.77, 0, 0.175, 1)}.filer-dropzone .dz-preview .dz-success-mark,.filer-dropzone .dz-preview .dz-error-mark{display:block;position:absolute;top:50%;left:50%;z-index:500;margin-top:-27px;margin-left:-27px;pointer-events:none;opacity:0}.filer-dropzone .dz-preview .dz-success-mark svg,.filer-dropzone .dz-preview .dz-error-mark svg{display:block;width:54px;height:54px}.filer-dropzone .dz-preview.dz-processing .dz-progress{opacity:1;-webkit-transition:all .2s linear;transition:all .2s linear}.filer-dropzone .dz-preview.dz-complete .dz-progress{opacity:0;-webkit-transition:opacity .4s ease-in;transition:opacity .4s ease-in}.filer-dropzone .dz-preview:not(.dz-processing) .dz-progress{-webkit-animation:pulse 6s ease infinite;animation:pulse 6s ease infinite}.filer-dropzone .dz-preview .dz-progress{position:absolute;top:50%;left:50%;overflow:hidden;z-index:1000;width:80px;height:16px;margin-top:-8px;margin-left:-40px;border-radius:8px;pointer-events:none;opacity:1;background:rgba(255,255,255,.9)}.filer-dropzone .dz-preview .dz-progress .dz-upload{position:absolute;top:0;bottom:0;left:0;width:0;background:var(--dca-gray-darkest, var(--body-fg, #333));background:-webkit-gradient(linear, left top, left bottom, from(var(--dca-gray, var(--body-quiet-color, #666))), to(var(--dca-gray-darkest, var(--body-fg, #333))));background:linear-gradient(to bottom, var(--dca-gray, var(--body-quiet-color, #666)), var(--dca-gray-darkest, var(--body-fg, #333)));-webkit-transition:width 300ms ease-in-out;transition:width 300ms ease-in-out}.filer-dropzone .dz-preview.dz-error .dz-error-message{display:block}.filer-dropzone .dz-preview.dz-error:hover .dz-error-message{pointer-events:auto;opacity:1}.filer-dropzone .dz-preview .dz-error-message{display:block;display:none;position:absolute;top:130px;left:-10px;z-index:1000;color:var(--dca-white, var(--body-bg, #fff));font-size:13px;width:140px;padding:.5em 1.2em;border-radius:8px;pointer-events:none;opacity:0;background:#be2626;background:-webkit-gradient(linear, left top, left bottom, from(#be2626), to(#a92222));background:linear-gradient(to bottom, #be2626, #a92222);-webkit-transition:opacity .3s ease;transition:opacity .3s ease}.filer-dropzone .dz-preview .dz-error-message:after{content:"";position:absolute;top:-6px;left:64px;width:0;height:0;border-right:6px solid rgba(0,0,0,0);border-bottom:6px solid #be2626;border-left:6px solid rgba(0,0,0,0)} /*# sourceMappingURL=maps/admin_filer.css.map */ diff --git a/filer/static/filer/css/maps/admin_filer.css.map b/filer/static/filer/css/maps/admin_filer.css.map index 2eb4c3bb1..47e90e8df 100644 --- a/filer/static/filer/css/maps/admin_filer.css.map +++ b/filer/static/filer/css/maps/admin_filer.css.map @@ -1 +1 @@ -{"version":3,"sources":["admin_filer.scss","components/_base.scss","settings/_custom.scss","components/_image-info.scss","mixins/_custom.scss","components/_action-list.scss","components/_filter-files.scss","components/_navigator.scss","components/_modal.scss","components/_drag-and-drop.scss","components/_tooltip.scss","libs/_dropzone.scss"],"names":[],"mappings":"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","file":"../admin_filer.css","sourcesContent":["/*!\n * @copyright: https://github.com/divio/django-filer\n */\n\n//##############################################################################\n// IMPORT SETTINGS\n@import \"settings/all\";\n@import \"mixins/all\";\n\n//##############################################################################\n// IMPORT COMPONENTS\n@import \"components/base\";\n@import \"components/image-info\";\n@import \"components/action-list\";\n@import \"components/filter-files\";\n@import \"components/navigator\";\n@import \"components/modal\";\n@import \"components/drag-and-drop\";\n@import \"components/tooltip\";\n\n//##############################################################################\n// IMPORT LIBS\n@import \"libs/dropzone\";\n","//##############################################################################\n// BASE\n\nhtml,\nbody {\n min-width: 320px;\n height: 100% !important;\n}\n\n.text-left {\n text-align: left;\n}\n.text-right {\n text-align: right;\n}\n.clearfix:after {\n content: \"\";\n display: table;\n clear: both;\n}\n.related-widget-wrapper {\n float: none !important;\n}\n.related-lookup.hidden {\n display: none !important;\n}\n\n// make sure that tiny styles like on size info has correct font size and color #666\n.tiny {\n font-size: $font-size-small !important;\n color: $gray-light !important;\n}\n\n.nav-pages {\n position: relative;\n // make sure that paginator has correct font size and color #666\n font-size: $font-size-small;\n color: $gray-light !important;\n padding-left: 10px;\n padding-right: 20px;\n padding-top: 15px;\n padding-bottom: 15px;\n box-sizing: border-box;\n background: $white;\n span {\n // make sure that paginator has correct font size and color #666\n font-size: $font-size-small;\n color: $gray-light !important;\n }\n .actions {\n float: right;\n }\n}\n\n#id_upload_button:before {\n display: none;\n}\n#content #content-main {\n margin-top: 0;\n}\n.filebrowser {\n &.cms-admin-sideframe {\n #container {\n .breadcrumbs + #content,\n .breadcrumbs + .messagelist + #content {\n margin-left: 0 !important;\n margin-right: 0 !important;\n }\n .breadcrumbs {\n left: 0 !important;\n padding-left: 20px !important;\n }\n }\n }\n #container {\n min-width: auto;\n #content {\n padding: 0;\n box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);\n }\n .breadcrumbs + #content,\n .breadcrumbs + .messagelist + #content {\n margin-left: 3% !important;\n }\n }\n h1.folder_header {\n position: relative;\n top: 6px;\n }\n // required for django CMS <= 3.1 #673\n h2 {\n display: none;\n }\n #content-main {\n background-color: $white;\n }\n}\n\n.field-file,\n.field-sha1 {\n word-wrap: break-word;\n word-break: break-all;\n}\n\n.well.img-preview {\n display: none;\n margin-top: 0;\n}\n.img-wrapper {\n width: 180px;\n height: 180px;\n}\n\n.file-duplicates {\n clear: both;\n padding: 20px 0 0;\n}\n\nform .cancel-link {\n height: auto !important;\n line-height: inherit !important;\n padding: 10px 15px;\n}\n\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n margin: -1px;\n padding: 0;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n border: 0;\n}\n\n.hidden {\n display: none !important;\n}\n\n.filer-info-bar {\n min-height: 15px;\n margin: 0 0 2px !important;\n padding: 15px 20px;\n box-shadow: 0 0 10px -2px rgba(black, 0.2);\n background-color: $white;\n}\n\n.navigator .actions span.all,\n.navigator .actions span.clear,\n.navigator .actions span.question {\n font-size: 13px;\n margin: 0 0.5em;\n display: none;\n}\n\n#all-items-action-toggle {\n display: none !important;\n}\n","// #############################################################################\n// SETTINGS\n\n$speed-base: 200ms;\n\n// COLORS\n$white: var(--dca-white, var(--body-bg, #fff));\n$black: var(--dca-black, var(--body-fg, #000));\n$shadow-black: #000;\n\n$color-primary: var(--dca-primary, var(--primary, #0bf));\n// $color-primary-light: #f1faff;\n$color-success: #693;\n$color-danger: #f00;\n$color-warning: #c93;\n\n// COLORS gray\n$gray: var(--dca-gray, var(--body-quiet-color, #666)); // #666;\n$gray-lightest: var(--dca-gray-lightest, var(--darkened-bg, #f2f2f2)); // #f2f2f2\n$gray-lighter: var(--dca-gray-lighter, var(--border-color, #ddd)); // #ddd\n$gray-light: var(--dca-gray-light, var(--body-quiet-color, #999)); // #999\n$gray-darker: var(--dca-gray-darker, #454545); // #454545\n$gray-darkest: var(--dca-gray-darkest, var(--body-fg, #333)); // #333\n\n$gray-super-light: var(--dca-gray-super-lightest, var(--darkened-bg, #f7f7f7));\n$gray-dropzone: $gray-lightest;\n\n$hover-bg: $gray-lightest;\n\n//##############################################################################\n// BASE Variables\n$font-size-small: 12px;\n$font-size-normal: 14px;\n$font-size-large: 16px;\n\n$icon-size: 16px;\n\n$line-height-normal: 20px;\n\n$border-radius-base: 3px;\n$border-radius-normal: 5px;\n\n$padding-base: 3px;\n$padding-normal: 10px;\n$padding-large: 20px;\n\n$screen-mobile: 320px;\n$screen-tablet: 720px;\n$screen-desktop: 975px;\n\n$screen-tablet-filer: 810px;\n\n//##############################################################################\n// BUTTONS\n\n$btn-border-radius-base: $border-radius-base;\n$btn-active-shadow: inset 0 3px 5px rgba($black, 0.125);\n\n$btn-default-color: var(--dca-gray-light, var(--button-fg, #999));\n$btn-default-bgcolor: var(--dca-white, var(--button-bg, #fff));\n$btn-default-border: var(--dca-gray-lighter, transparent);\n\n$btn-action-color: var(--dca-white, var(--button-fg, #fff));\n$btn-action-bgcolor: $color-primary;\n$btn-action-border: $color-primary;\n\n//##############################################################################\n// #SHADOW\n\n$base-box-shadow: 0 0 5px 0 rgba($shadow-black, 0.2);\n$dropdown-shadow: 0 1px 10px rgba($shadow-black, 0.25);\n","//##############################################################################\n// IMAGE INFO\n\n.image-info {\n position: relative;\n float: right;\n box-sizing: border-box;\n width: 28%;\n margin-top: 0;\n border: 0;\n border-radius: 3px;\n background: $white;\n box-shadow: 0 0 5px 0 rgba(black,0.2);\n .image-details,\n .actions-list {\n margin: 0;\n padding: 0;\n &.image-details {\n margin: 10px 0;\n padding: 0 10px;\n }\n li {\n list-style-type: none;\n }\n a {\n cursor: pointer;\n }\n }\n &.image-info-detail {\n @include clearfix();\n position: static;\n float: none;\n width: 100%;\n margin-bottom: 20px;\n padding: 25px;\n border-radius: 0;\n // removes background color and shadow from object tools and fixes placement on image detail page\n + #content-main .object-tools {\n margin-top: 20px;\n margin-right: 20px;\n background-color: transparent;\n &:before {\n display: none;\n }\n }\n .image-details-left {\n float: left;\n }\n .image-details-right {\n float: left;\n margin-left: 50px;\n }\n .image-details,\n .actions-list {\n margin-top: 0;\n border: 0 !important;\n &.image-details {\n margin-top: 20px;\n margin-bottom: 15px;\n padding: 0;\n }\n dt {\n float: left;\n color: $gray-light;\n font-size: 13px;\n // required for django CMS without admin styles #673\n line-height: 1rem !important;\n font-weight: normal;\n // required for django CMS without admin styles #673\n margin-top: 0;\n }\n dd {\n color: $gray;\n font-size: 13px;\n // required for django CMS without admin styles #673\n line-height: $font-size-large !important;\n padding-left: 80px;\n // required for django CMS without admin styles #673\n margin-bottom: 5px;\n }\n .text {\n font-size: 13px;\n margin-right: 15px;\n strong {\n font-size: 13px;\n }\n }\n li {\n color: $gray;\n font-size: 13px !important;\n font-weight: normal !important;\n padding: 1px 0 !important;\n border: 0 !important;\n }\n a {\n padding: 0;\n }\n }\n .image-info-title {\n overflow: hidden;\n color: $gray;\n white-space: nowrap;\n text-overflow: ellipsis;\n padding: 0 0 5px;\n .icon {\n float: left;\n margin-right: 5px;\n }\n }\n .image-preview-container {\n text-align: left;\n margin: 20px 0 0;\n padding: 0;\n > img {\n margin-bottom: 15px;\n }\n }\n .actions-list {\n .icon {\n font-size: 16px;\n &:last-child {\n float: none;\n }\n }\n }\n }\n @media screen and (max-width: $screen-tablet) {\n float: none;\n width: 100%;\n &.image-info-detail {\n .image-details-left,\n .image-details-right {\n float: none;\n margin-left: 0;\n }\n }\n }\n}\n\n.image-info-close {\n position: absolute;\n top: -10px;\n right: -7px;\n font-size: 20px;\n cursor: pointer;\n}\n\n.image-info-title {\n padding: 5px 10px;\n border-bottom: solid 1px $gray-lighter;\n a {\n margin-left: 5px;\n }\n}\n\n.image-preview-container {\n text-align: center;\n margin: 10px 0;\n padding: 0 10px;\n .image-preview {\n display: inline-block;\n position: relative;\n margin-bottom: 15px;\n outline: 1px solid $gray-lightest;\n background-image: url(\"data:image/gif;base64,R0lGODlhCAAIAKECAOPj4/z8/P///////yH5BAEKAAIALAAAAAAIAAgAAAINhBEZh8q6DoTPSWvoKQA7\");\n img {\n display: block;\n }\n }\n .image-preview-field {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n overflow: hidden;\n }\n .image-preview-circle {\n position: relative;\n z-index: 1;\n width: 26px;\n height: 26px;\n border: solid 2px $color-danger;\n margin: -13px;\n border-radius: 30px;\n cursor: move;\n background: rgba(255, 255, 255, 0.5);\n }\n audio, video {\n margin-bottom: 15px;\n &:focus {\n outline: none;\n }\n }\n}\n\n.button-group .button {\n margin-right: 10px;\n padding: 10px 15px;\n}\n","// #############################################################################\n// OTHER\n\n// add clearfix which doesnt add overflow:hidden\n@mixin clearfix() {\n &:before,\n &:after {\n content: \" \";\n display: table;\n }\n &:after {\n clear: both;\n }\n}\n// taken from bootstrap with adaptations\n@function important($important) {\n @if($important == true) {\n @return !important;\n } @else {\n @return true;\n }\n}\n/* @mixin button-variant($color, $background, $border, $important: false) {\n background-image: none important($important);\n margin-bottom: 0; // For input.btn\n padding: 6px 20px important($important);\n border-radius: $btn-border-radius-base important($important);\n color: $color important($important);\n font-size: $font-size-small important($important);\n line-height: $font-size-small;\n font-weight: normal;\n text-transform: none important($important);\n letter-spacing: normal important($important);\n background-color: $background important($important);\n border: 1px solid $border important($important);\n background-clip: padding-box;\n appearance: none;\n &:focus {\n color: $color important($important);\n background-color: darken($background, 5%) important($important);\n border-color: darken($border, 5%) important($important);\n text-decoration: none important($important);\n }\n &:hover {\n color: $color important($important);\n background-color: darken($background, 5%) important($important);\n border-color: darken($border, 5%) important($important);\n text-decoration: none important($important);\n }\n &:active {\n color: $color important($important);\n background-color: darken($background, 10%) important($important);\n border-color: darken($border, 10%) important($important);\n box-shadow: $btn-active-shadow important($important);\n\n &:hover,\n &:focus {\n color: $color important($important);\n background-color: darken($background, 17%) important($important);\n border-color: darken($border, 25%) important($important);\n }\n }\n &:active {\n background-image: none important($important);\n }\n &[disabled] {\n &,\n &:hover,\n &:focus,\n &:active {\n background-color: rgba($background, 0.4) important($important);\n border-color: rgba($border, 0.4) important($important);\n color: rgba($color, 0.8) important(1);\n cursor: not-allowed;\n box-shadow: none important($important);\n &:before {\n color: rgba($color, 0.4) important(1);\n }\n }\n }\n}*/\n\n@mixin button-variant($color, $background, $border, $important: false) {\n background-image: none important($important);\n margin-bottom: 0; // For input.btn\n border-radius: $btn-border-radius-base important($important);\n color: $color important($important);\n background-color: $background important($important);\n border: 1px solid $border important($important);\n background-clip: padding-box;\n -webkit-appearance: none;\n &:focus,\n &.focus,\n &:hover {\n color: $color important($important);\n @if $background == $white {\n background-color: $gray-lightest important($important);\n border-color: $border important($important);\n } @else {\n background-color: $background important($important);\n border-color: $border important($important);\n filter: opacity(0.7) important($important);\n // Strange: removing opacity(1.) or correcting it makes item transparent\n }\n text-decoration: none important($important);\n }\n &:active,\n &.cms-btn-active {\n color: $color important($important);\n background-color: $background important($important);\n border-color: $border important($important);\n filter: brightness(var(--active-brightness)) opacity(1) important($important);\n // Strange: removing opacity(1.) or correcting it makes item transparent\n box-shadow: $btn-active-shadow important($important);\n\n &:hover,\n &:focus,\n &.focus {\n color: $color important($important);\n background-color: $background important($important);\n border-color: $border important($important);\n filter: brightness(calc(var(--focus-brightness) * var(--active-brightness))) opacity(1) important($important);\n } // Strange: removing opacity(1.) or correcting it makes item transparent\n }\n &:active,\n &.cms-btn-active {\n background-image: none important($important);\n }\n &.cms-btn-disabled,\n &[disabled] {\n &,\n &:hover,\n &:focus,\n &.focus,\n &:active,\n &.cms-btn-active { // TODO: FABR\n background-color: $background important($important);\n border-color: $border important($important);\n @if $color == $gray {\n color: $gray-lighter important(1);\n } @else {\n color: $color important(1);\n filter: brightness(0.6) opacity(1); // Strange: removing opacity(1.) or correcting it makes item transparent\n }\n cursor: not-allowed;\n box-shadow: none important($important);\n &:before {\n @if $color == $gray {\n color: $gray-lighter important(1);\n } @else {\n color: $color important(1);\n filter: brightness(0.6) opacity(1); // Strange: removing opacity(1.) or correcting it makes item transparent\n }\n }\n }\n }\n}\n","//##############################################################################\n// ACTION LIST\n\n.actions-list-dropdown {\n a {\n display: block;\n padding: 5px 10px;\n }\n .caret-down {\n display: inline-block;\n }\n .caret-right {\n display: none;\n }\n &.js-collapsed {\n border-bottom: solid 1px $gray-lighter;\n .caret-down {\n display: none;\n }\n .caret-right {\n display: inline-block;\n }\n }\n}\n.actions-list {\n border-top: solid 1px $gray-lighter;\n &:last-child {\n border-top: none;\n a {\n border-bottom: none;\n }\n }\n a {\n display: block;\n font-size: 20px;\n padding: 5px 10px;\n border-bottom: solid 1px $gray-lighter;\n }\n .icon {\n &:first-child {\n width: 20px;\n }\n &:last-child {\n float: right;\n margin-top: 3px;\n }\n }\n}\n.actions-separated-list {\n display: inline-block;\n margin: 0;\n padding-left: 0;\n @media screen and (max-width: $screen-tablet) {\n float: left;\n margin-left: 0;\n }\n li {\n display: inline-block;\n line-height: 34px;\n vertical-align: middle;\n padding: 0 10px;\n list-style: none;\n @media screen and (max-width: $screen-tablet) {\n &:first-child {\n padding-left: 0;\n }\n }\n span {\n vertical-align: middle;\n }\n a {\n color: $gray;\n }\n }\n span:before {\n font-size: 18px;\n }\n}\n","//##############################################################################\n// FILTER FILES\n\n.search-is-focused {\n .filter-files-container {\n position: static;\n }\n .filter-filers-container-inner {\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n @media screen and (max-width: $screen-tablet) {\n position: static;\n }\n }\n .breadcrumbs-container {\n position: relative;\n }\n &.breadcrumb-min-width .filter-filers-container-inner {\n position: static;\n }\n}\n\n.filter-files-container {\n @include clearfix;\n display: table-cell;\n vertical-align: middle;\n position: relative;\n width: 245px;\n margin: 0;\n padding: 0;\n background: none;\n box-shadow: none;\n z-index: 1000;\n @media screen and (max-width: $screen-tablet) {\n display: block;\n width: auto;\n margin-right: 0;\n margin-top: 10px;\n .filter-files-button {\n float: none;\n }\n }\n .filer-dropdown-container {\n position: absolute;\n top: 0;\n right: 0;\n > a {\n &,\n &:visited,\n &:link:visited,\n &:link {\n display: inline-block;\n line-height: 34px;\n text-align: center;\n width: 34px;\n height: 34px;\n padding: 0;\n }\n }\n &.open + .filer-dropdown-menu-checkboxes {\n display: block;\n width: calc(100% - 30px);\n li {\n margin: 0;\n padding: 0;\n list-style-type: none;\n }\n }\n }\n .filter-search-wrapper {\n position: relative;\n float: left;\n text-align: right;\n width: calc(100% - 43px);\n margin-right: 5px;\n @media screen and (max-width: $screen-tablet) {\n float: left;\n }\n .filer-dropdown-container span {\n line-height: 34px !important;\n height: 34px !important;\n }\n }\n .filter-files-button {\n float: right;\n text-align: center;\n white-space: nowrap;\n height: 35px;\n margin: 0;\n padding: 8px !important;\n .icon {\n position: relative;\n left: 2px;\n font-size: 16px !important;\n vertical-align: top;\n }\n }\n .filter-files-field {\n color: $gray-darkest;\n font-size: 12px !important;\n line-height: 35px;\n font-weight: normal;\n box-sizing: border-box;\n min-width: 200px !important;\n height: 35px;\n // required for django CMS <= 3.1 #673\n margin: 0;\n padding: 0 35px 0 10px !important;\n outline: none;\n appearance: none;\n transition: max-width $speed-base;\n // disable clear X on IE #690\n &::-ms-clear {\n display: none;\n }\n }\n .filer-dropdown-menu {\n margin-top: 0 !important;\n margin-right: -1px !important;\n }\n}\n.filter-files-cancel {\n margin: 5px 20px;\n}\n","//##############################################################################\n// NAVIGATOR\n\nbody {\n &.dz-drag-hover {\n .drag-hover-border {\n display: none !important;\n }\n .navigator-table tbody td,\n .navigator-table tbody .unfiled td {\n background-color: $hover-bg !important;\n }\n }\n &.reset-hover td {\n background-color: $white !important;\n }\n}\n.drag-hover-border {\n position: fixed;\n border-top: solid 2px $color-primary;\n border-bottom: solid 2px $color-primary;\n pointer-events: none;\n z-index: 100;\n display: none;\n}\n.thumbnail-drag-hover-border {\n border: solid 2px $color-primary;\n}\n.filebrowser .navigator-list,\n.filebrowser .navigator-table {\n // required for django CMS <= 3.1 #673\n width: 100%;\n margin: 0;\n border-top: solid 1px $gray-lighter !important;\n border-collapse: collapse !important;\n .navigator-header,\n thead th,\n tbody td {\n text-align: left;\n font-weight: normal;\n vertical-align: middle;\n padding: 5px !important;\n border-left: 0 !important;\n border-bottom: 1px solid $gray-lighter;\n border-top: 1px solid transparent;\n background: none !important;\n }\n tbody tr.selected {\n .action-button span {\n color: $gray-darkest !important;\n }\n }\n .navigator-body,\n .unfiled td {\n padding: 12px 5px !important;\n background-color: $gray-super-light !important;\n a,\n a:hover {\n color: $gray !important;\n }\n }\n .column-checkbox {\n text-align: center;\n width: 20px;\n padding-left: 20px !important;\n input {\n // makes sure that checkbox is vertical aligned #664\n vertical-align: middle;\n margin: 0;\n }\n }\n .column-name a {\n color: $color-primary;\n }\n .column-icon {\n width: 50px;\n // removes padding to make sure that column has correct height #664\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n img {\n width: 40px;\n height: auto;\n }\n }\n .column-action {\n text-align: center;\n width: 90px;\n white-space: nowrap;\n padding-right: 20px !important;\n a {\n font-size: 16px !important;\n margin: 0;\n }\n .action-button {\n @include button-variant($btn-default-color, $btn-default-bgcolor, $btn-default-border, true);\n padding: 9px !important;\n span {\n font-size: 17px;\n line-height: 33px;\n vertical-align: middle;\n }\n }\n }\n .no-files {\n color: $gray;\n font-size: $font-size-normal;\n text-align: center;\n padding: 40px 0 !important;\n background-color: $gray-lightest !important;\n span {\n font-size: 20px;\n margin-right: 10px;\n &:before {\n vertical-align: sub;\n }\n }\n }\n .dz-drag-hover {\n td {\n position: relative;\n background: $hover-bg !important;\n box-sizing: border-box !important;\n a {\n &.icon {\n color: $gray-darkest !important;\n background-color: $white !important;\n }\n color: $color-primary !important;\n }\n }\n }\n &.dz-drag-hover {\n position: relative;\n .drag-hover-border {\n display: none !important;\n }\n td {\n background: $hover-bg !important;\n box-sizing: border-box !important;\n }\n }\n .reset-hover,\n &.reset-hover {\n td {\n background-color: $white !important;\n }\n .dz-drag-hover {\n td {\n background: $hover-bg !important;\n }\n }\n }\n}\n.navigator-top-nav {\n position: relative;\n clear: both;\n min-height: 35px;\n padding: 15px 20px;\n background: $gray-super-light;\n border-bottom: $gray-lighter solid 1px;\n .breadcrumbs-container-wrapper {\n display: table;\n width: 100%;\n @media screen and (max-width: $screen-tablet) {\n display: block;\n }\n }\n .breadcrumbs-container-inner {\n display: table;\n table-layout: fixed;\n width: 100%;\n .filer-dropdown-container {\n display: table-cell;\n width: 30px;\n height: 35px;\n vertical-align: middle;\n span {\n line-height: 35px;\n height: 35px;\n vertical-align: middle;\n }\n }\n }\n .breadcrumbs-container {\n display: table-cell;\n vertical-align: middle;\n @media screen and (max-width: $screen-tablet) {\n position: static;\n margin-right: 20px;\n }\n }\n .tools-container {\n @include clearfix;\n display: table-cell;\n vertical-align: middle;\n text-align: right;\n margin-top: 2px;\n @media screen and (max-width: $screen-tablet) {\n display: inline;\n text-align: left;\n }\n }\n .nav-button {\n display: inline-block;\n color: $gray;\n font-size: 20px;\n line-height: 34px;\n vertical-align: top;\n margin: 0 10px;\n span {\n vertical-align: middle;\n }\n }\n .nav-button-filter {\n position: relative;\n top: -1px;\n }\n .nav-button-dots {\n margin: 0;\n padding: 0 15px;\n }\n .separator {\n display: inline-block;\n position: relative;\n vertical-align: top;\n width: 1px;\n height: 34px;\n margin: 0 5px;\n &:before {\n content: \"\";\n display: block;\n position: absolute;\n top: -14px;\n bottom: -11px;\n overflow: hidden;\n width: 1px;\n background-color: $gray-lighter;\n }\n }\n}\n.breadcrumb-min-width {\n .filer-navigator-breadcrumbs-dropdown-container,\n .navigator-breadcrumbs-name-dropdown-wrapper,\n .navigator-breadcrumbs-folder-name-wrapper,\n .breadcrumbs-container-wrapper,\n .breadcrumbs-container,\n .tools-container,\n .filter-files-container,\n .navigator-breadcrumbs,\n .navigator-button-wrapper {\n display: inline-block;\n text-align: left;\n .actions-wrapper {\n white-space: nowrap;\n margin-left: 0;\n margin-top: 10px;\n li:first-child {\n padding-left: 0;\n }\n }\n }\n .navigator-button-wrapper {\n margin-top: 10px;\n }\n .navigator-breadcrumbs-name-dropdown-wrapper {\n min-height: inherit;\n .filer-dropdown-container .fa-caret-down {\n vertical-align: text-top;\n }\n }\n .breadcrumbs-container-inner .filer-dropdown-container {\n display: inline-block !important;\n }\n .navigator-tools {\n white-space: normal;\n }\n .filter-files-container {\n width: 100%;\n margin-top: 10px;\n z-index: auto;\n }\n .breadcrumbs-container {\n margin-right: 0;\n }\n .navigator-breadcrumbs .icon {\n vertical-align: middle;\n }\n .navigator-breadcrumbs-folder-name-wrapper {\n float: left;\n width: calc(100% - 30px);\n }\n}\n\n.navigator-tools {\n @include clearfix;\n white-space: nowrap;\n @media screen and (max-width: $screen-tablet) {\n display: inline;\n }\n .actions-wrapper {\n display: inline-block;\n margin-bottom: 0;\n margin-left: 10px;\n a, a:hover {\n color: $gray-light !important;\n cursor: not-allowed;\n }\n @media screen and (max-width: $screen-tablet) {\n @include clearfix();\n float: none;\n margin-left: 0;\n }\n &.action-selected {\n a {\n color: $gray !important;\n cursor: pointer;\n }\n .actions-separated-list {\n display: inline-block;\n }\n }\n + .filer-list-type-switcher-wrapper {\n border-left: solid 1px $gray-lighter;\n margin-left: 0;\n }\n }\n .actions {\n display: none;\n float: right;\n @media screen and (max-width: $screen-tablet) {\n @include clearfix();\n float: none;\n margin-bottom: 10px;\n }\n .all,\n .question,\n .clear,\n .action-counter {\n font-size: $font-size-small;\n line-height: 34px;\n vertical-align: text-top;\n }\n .action-counter,\n .all {\n color: $gray-light;\n }\n .question,\n .clear {\n margin-left: 10px;\n padding-left: 10px;\n border-left: solid 1px $gray-lighter;\n }\n }\n .filer-list-type-switcher-wrapper {\n display: inline-block;\n margin-left: 10px;\n }\n\n}\n@media screen and (max-width: $screen-tablet) {\n .navigator-top-nav {\n .breadcrumbs-container {\n float: none;\n }\n .navigator-tools {\n float: none;\n .separator:before {\n top: 0;\n bottom: 0;\n }\n }\n }\n}\n// make sure that buttons break to new line on mobile view #677\n.navigator-button-wrapper {\n display: inline-block;\n vertical-align: top;\n text-align: right;\n margin-bottom: 0;\n margin-left: 10px;\n @media screen and (max-width: $screen-tablet) {\n display: block;\n float: none;\n text-align: left;\n margin-top: 0;\n margin-left: 0;\n }\n}\n.navigator-button {\n margin-right: 10px;\n &,\n &:visited,\n &:link:visited,\n &:link {\n @include button-variant($btn-action-color, $btn-action-bgcolor, $btn-action-border, true);\n display: inline-block;\n vertical-align: top;\n padding: 10px 20px !important;\n }\n .icon {\n position: relative;\n margin-right: 3px;\n }\n .fa-folder {\n top: 0;\n }\n &.navigator-button-upload {\n margin-right: 0;\n }\n}\n\n.upload-button-disabled {\n display: inline-block;\n}\n.navigator-button + .filer-dropdown-menu {\n margin-top: -2px;\n}\n\n.navigator {\n position: relative;\n overflow-x: auto;\n width: 100%;\n form {\n margin: 0;\n padding: 0;\n box-shadow: none;\n }\n}\n\n.filer-dropdown-container {\n display: inline-block;\n position: relative;\n vertical-align: top;\n .fa-caret-down, .cms-icon-caret-down {\n font-size: 14px;\n }\n .filer-dropdown-menu,\n + .filer-dropdown-menu {\n display: none;\n right: 0;\n left: auto;\n border: 0;\n box-shadow: $dropdown-shadow;\n > li > a {\n display: block;\n color: $color-primary;\n font-weight: normal;\n white-space: normal;\n padding: 12px 20px !important;\n @media screen and (min-width: $screen-tablet) {\n white-space: nowrap;\n }\n }\n label {\n display: block;\n line-height: 20px !important;\n text-transform: none;\n width: auto;\n margin: 5px 0 !important;\n padding: 0 10px !important;\n }\n input {\n position: relative;\n top: 4px;\n vertical-align: top;\n margin-right: 5px;\n }\n &.filer-dropdown-menu-checkboxes {\n width: 0;\n min-height: 50px;\n padding: 15px;\n border: 0;\n box-shadow: $dropdown-shadow;\n &:before {\n display: none;\n }\n .fa-close {\n position: absolute;\n top: 10px;\n right: 10px;\n color: $gray;\n cursor: pointer;\n &:hover {\n color: $color-primary;\n }\n }\n p {\n color: $gray-light !important;\n font-weight: normal;\n text-transform: uppercase;\n margin-bottom: 5px;\n }\n label {\n color: $gray !important;\n font-weight: normal;\n padding: 0 !important;\n margin-top: 0 !important;\n input {\n margin-left: 0;\n }\n }\n }\n a:hover {\n color: $white !important;\n background: $color-primary !important;\n }\n }\n &.open .filer-dropdown-menu {\n display: block;\n li {\n margin: 0;\n padding: 0;\n list-style-type: none;\n }\n }\n + .separator {\n margin-right: 10px;\n }\n}\n.filer-dropdown-container-down {\n > a {\n &,\n &:link,\n &:visited,\n &:link:visited {\n color: $gray;\n font-size: 20px;\n line-height: 35px;\n height: 35px;\n padding: 0 10px;\n }\n }\n .filer-dropdown-menu {\n right: auto;\n left: -14px;\n margin-right: 10px;\n }\n}\n\n.filer-dropdown-menu {\n position: absolute;\n top: 100%;\n z-index: 1000;\n display: none;\n float: left;\n min-width: 160px;\n margin: 2px 0 0;\n margin-top: 0 !important;\n padding: 0;\n list-style: none;\n font-size: 14px;\n text-align: left;\n background-color: $white;\n border-radius: 4px;\n background-clip: padding-box;\n &:before {\n position: absolute;\n top: -5px;\n left: 35px;\n z-index: -1;\n content: '';\n width: 10px;\n height: 10px;\n margin-left: -5px;\n transform: rotate(45deg);\n background-color: $white;\n }\n &.create-menu-dropdown:before {\n left: auto;\n right: 17px;\n }\n}\n\n.navigator-breadcrumbs {\n @include clearfix;\n display: table-cell;\n vertical-align: middle;\n font-size: 16px;\n white-space: nowrap;\n width: 60px;\n > a {\n color: $gray-darkest !important;\n }\n .icon {\n color: $gray-light;\n line-height: 35px;\n height: 35px;\n margin: 0 5px;\n &:before {\n vertical-align: middle;\n }\n }\n li {\n list-style-type: none;\n }\n}\n.navigator-breadcrumbs-folder-name-wrapper {\n display: table-cell;\n overflow: hidden;\n font-size: 16px;\n font-weight: bold;\n vertical-align: middle;\n white-space: nowrap;\n}\n.navigator-breadcrumbs-folder-name {\n display: block;\n overflow: hidden;\n white-space: normal;\n line-height: 35px;\n width: 100%;\n height: 35px;\n}\n.navigator-breadcrumbs-folder-name-inner {\n display: block;\n position: relative;\n overflow: hidden;\n line-height: 35px;\n height: 35px;\n width: 100%;\n text-overflow: ellipsis;\n}\n.filer-navigator-breadcrumbs-dropdown-container {\n position: relative;\n float: left;\n vertical-align: middle;\n margin: 0 7px 0 0;\n > a img {\n padding: 3px 0;\n }\n .navigator-breadcrumbs-dropdown {\n left: -15px !important;\n min-width: 200px;\n padding: 0;\n margin-top: 0;\n border: 0;\n box-shadow: $dropdown-shadow;\n > li {\n padding: 0;\n > a {\n color: $color-primary;\n padding: 12px 20px 3px !important;\n border-bottom: solid 1px $gray-lightest;\n &:hover {\n color: $white !important;\n background: $color-primary !important;\n }\n }\n &:last-child > a {\n border-bottom: none;\n }\n }\n img {\n position: relative;\n top: -5px;\n vertical-align: top;\n margin: 0 10px 0 0;\n }\n }\n}\n\n.navigator-dropdown-arrow-up {\n position: relative;\n left: 20px;\n overflow: hidden;\n width: 20px;\n height: 20px;\n margin-top: -20px;\n z-index: 1001;\n &:after {\n content: \"\";\n position: absolute;\n top: 15px;\n left: 5px;\n width: 10px;\n height: 10px;\n background: white;\n transform: rotate(45deg);\n box-shadow: $dropdown-shadow;\n }\n}\n\n.navigator-breadcrumbs-name-dropdown-wrapper {\n display: table;\n min-height: 35px;\n .filer-dropdown-menu {\n left: auto;\n right: -80px;\n &:before {\n right: 80px;\n left: auto;\n }\n }\n a {\n display: inline-block;\n }\n}\n\n.empty-filer-header-cell {\n display: table-cell;\n vertical-align: middle;\n}\n\n.filebrowser .navigator-thumbnail-list {\n overflow: hidden;\n .navigator-list {\n border-top: 0 !important;\n }\n .navigator-thumbnail-list-header {\n & > * {\n display: inline-block;\n text-transform: uppercase;\n margin: 0;\n padding: 0;\n padding-left: 10px;\n }\n .navigator-checkbox {\n float: right;\n padding-right: 20px;\n text-transform: initial;\n color: $color-primary;\n input[type=\"checkbox\"] {\n margin-left: 5px;\n vertical-align: middle;\n }\n }\n }\n .navigator-body {\n @include clearfix;\n padding: 0 !important;\n }\n .thumbnail-item {\n float: left;\n display: inline-block;\n padding: 10px;\n width: 125px;\n height: 125px;\n border: 1px solid $gray-lighter;\n margin: 16px 12px;\n background-color: $white;\n position: relative;\n overflow: hidden;\n .thumbnail-file-item-box {\n padding: 10px;\n width: 125px;\n height: 125px;\n border: 1px solid $gray-lighter;\n margin: 16px 12px;\n background-color: $white;\n &:hover {\n background-color: #f1faff;\n }\n }\n .navigator-checkbox {\n position: absolute;\n top: 5px;\n left: 5px;\n input {\n margin: 0;\n vertical-align: top;\n }\n }\n .item-thumbnail,\n .item-icon {\n height: 50%;\n width: 50%;\n margin: 10px auto;\n margin-bottom: 18px;\n a {\n display: block;\n height: 100%;\n width: 100%;\n }\n img {\n width: 100%;\n height: 100%;\n }\n }\n .item-name {\n background: transparent;\n text-align: center;\n word-break: break-word;\n }\n }\n .thumbnail-virtual-item {\n background-color: initial;\n }\n .thumbnail-folder-item {\n &:hover {\n background-color: #f1faff;\n }\n }\n .thumbnail-file-item {\n float: none;\n width: 147px;\n height: 200px;\n border: 0;\n padding: 0;\n background-color: transparent;\n .thumbnail-file-item-box {\n float: none;\n margin: 0;\n margin-bottom: 5px;\n }\n .item-thumbnail {\n margin: 0;\n height: 100%;\n width: 100%;\n }\n .item-name {\n position: relative;\n word-break: break-word;\n }\n }\n}\n\n.insertlinkButton {\n &:before {\n content:\"\" !important; // Necessary since djangocms-admin-style tries to add its own icon\n }\n span {\n font-size: 17px;\n }\n}\n","//##############################################################################\n// MODAL\n\n.popup {\n &.app-cmsplugin_filer_image {\n .form-row.field-image .field-box,\n .field-box.field-free_link,\n .field-box.field-page_link,\n .field-box.field-file_link {\n float: none !important;\n margin-right: 0 !important;\n margin-top: 20px !important;\n &:first-child {\n margin-top: 0 !important\n }\n input {\n width: 100% !important;\n }\n }\n .form-row .field-box {\n &.field-crop,\n &.field-upscale {\n margin-top: 30px;\n }\n }\n }\n &.delete-confirmation .colM ul {\n // makes sure that between list and button is a space #744\n margin-bottom: 25px !important;\n }\n .image-info-detail {\n padding: 0;\n padding-bottom: 25px;\n margin-bottom: 30px;\n box-shadow: none;\n border-bottom: solid 1px $gray-lighter;\n }\n &.change-list.filebrowser {\n #result_list tbody th,\n #result_list tbody td {\n // makes sure that changelist columns has correct height on modal window #665\n height: auto;\n }\n }\n .filer-dropzone {\n padding: 5px 20px;\n }\n form .form-row .filer-dropzone .filerFile {\n top: 8px;\n }\n &.filebrowser #container #content {\n margin: 0 !important;\n }\n .navigator-button-wrapper {\n float: right;\n @media screen and (max-width: $screen-tablet) {\n float: none;\n }\n }\n .navigator-top-nav {\n .tools-container {\n width: 70%;\n }\n .breadcrumbs-container {\n width: 30%;\n }\n .tools-container,\n .breadcrumbs-container {\n @media screen and (max-width: $screen-tablet) {\n width: 100%;\n }\n }\n }\n}\n","//##############################################################################\n// DRAG AND DROP\n\nform .form-row {\n &[class*=\"file\"],\n &[class*=\"folder\"],\n &[class*=\"img\"],\n &[class*=\"image\"],\n &[class*=\"visual\"] {\n .related-widget-wrapper-link {\n display: none;\n }\n }\n .filer-dropzone {\n @include clearfix;\n position: relative;\n min-width: 215px;\n border: solid 1px $gray-lighter;\n border-radius: $border-radius-base;\n background-color: $gray-lightest;\n box-sizing: border-box !important;\n .z-index-fix {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n }\n &.dz-drag-hover {\n background-color: $color-primary;\n filter: brightness(1.5);\n border: solid 2px $color-primary !important;\n .z-index-fix {\n z-index: 1;\n }\n .dz-message {\n opacity: 1;\n display: block !important;\n visibility: visible;\n }\n .filerFile {\n display: none;\n }\n .dz-message, .dz-message .icon {\n color: $color-primary !important;\n }\n }\n &.dz-started .fileUpload {\n display: none;\n }\n .dz-preview {\n width: 100%;\n min-height: auto;\n margin-right: 0;\n margin-bottom: 0;\n margin-left: 0;\n padding-bottom: 10px;\n border-bottom: solid 1px $gray-lighter;\n &.dz-error {\n position: relative;\n .dz-error-message {\n display: none;\n }\n &:hover .dz-error-message {\n display: block;\n }\n }\n .dz-details {\n min-width: calc(100% - 80px);\n max-width: calc(100% - 80px);\n margin-top: 7px;\n margin-left: 40px;\n padding: 0;\n opacity: 1;\n .dz-filename,\n .dz-filename:hover,\n .dz-size {\n float: left;\n text-align: left;\n span {\n color: $gray;\n border: 0 !important;\n background-color: transparent !important;\n }\n }\n }\n .dz-remove {\n background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-trash' viewBox='0 0 16 16'%3E%3Cpath d='M5.5 5.5A.5.5 0 0 1 6 6v6a.5.5 0 0 1-1 0V6a.5.5 0 0 1 .5-.5Zm2.5 0a.5.5 0 0 1 .5.5v6a.5.5 0 0 1-1 0V6a.5.5 0 0 1 .5-.5Zm3 .5a.5.5 0 0 0-1 0v6a.5.5 0 0 0 1 0V6Z'/%3E%3Cpath d='M14.5 3a1 1 0 0 1-1 1H13v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V4h-.5a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1H6a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1h3.5a1 1 0 0 1 1 1v1ZM4.118 4 4 4.059V13a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4.059L11.882 4H4.118ZM2.5 3h11V2h-11v1Z'/%3E%3C/svg%3E%0A\");\n background-size:contain;\n display: inline-block;\n position: absolute;\n top: 7px;\n right: 25px;\n font: 0/0 a;\n width: 18px;\n height: 18px;\n }\n .dz-error-message {\n top: 65px;\n left: 0;\n width: 100%;\n }\n .dz-success-mark,\n .dz-error-mark {\n top: 5px;\n right: 0;\n left: auto;\n margin-top: 0;\n &:before {\n color: $gray;\n }\n svg {\n display: none;\n }\n }\n .dz-success-mark {\n // Check icon\n width: 16px;\n height: 16px;\n background-image: url(\"data:image/svg+xml,%3Csvg width='13' height='13' viewBox='0 0 1792 1792' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%2370bf2b' d='M1412 734q0-28-18-46l-91-90q-19-19-45-19t-45 19l-408 407-226-226q-19-19-45-19t-45 19l-91 90q-18 18-18 46 0 27 18 45l362 362q19 19 45 19 27 0 46-19l543-543q18-18 18-45zm252 162q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z'/%3E%3C/svg%3E%0A\");\n background-size: contain;\n }\n .dz-error-mark {\n // Remove icon\n background-image: url(\"data:image/svg+xml,%3Csvg width='13' height='13' viewBox='0 0 1792 1792' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23dd4646' d='M1277 1122q0-26-19-45l-181-181 181-181q19-19 19-45 0-27-19-46l-90-90q-19-19-46-19-26 0-45 19l-181 181-181-181q-19-19-45-19-27 0-46 19l-90 90q-19 19-19 46 0 26 19 45l181 181-181 181q-19 19-19 45 0 27 19 46l90 90q19 19 46 19 26 0 45-19l181-181 181 181q19 19 45 19 27 0 46-19l90-90q19-19 19-46zm387-226q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z'/%3E%3C/svg%3E%0A\");\n width: 16px;\n height: 16px;\n background-size: contain;\n }\n &.dz-image-preview,\n &.dz-file-preview {\n background-color: transparent;\n .dz-image {\n overflow: hidden;\n width: 36px;\n height: 36px;\n border: solid 1px $gray-lighter;\n border-radius: 0;\n img {\n width: 100%;\n height: auto;\n }\n }\n }\n .dz-progress {\n top: 18px;\n left: 0;\n width: calc(100% - 40px);\n height: 10px;\n margin-left: 40px;\n }\n }\n .dz-message {\n float: right;\n color: $gray-dropzone;\n width: 100%;\n margin: 15px 0 0;\n }\n .icon {\n position: relative;\n top: 3px;\n color: $gray-dropzone;\n font-size: 24px;\n margin-right: 10px;\n }\n .filerFile .related-lookup {\n @include button-variant($btn-action-color, $btn-action-bgcolor, $btn-action-border, true);\n float: left !important;\n overflow: hidden;\n // makes true that button has correct height #668\n line-height: $font-size-normal;\n width: auto !important;\n height: auto !important;\n padding: 10px 20px !important;\n margin-top: 24px;\n margin-left: 10px;\n text-align: center !important;\n cursor: pointer;\n .cms-icon {\n color: $white;\n font-size: 17px;\n margin: 0 10px 0 0;\n vertical-align: middle;\n }\n &:before {\n display: none;\n }\n .choose-file,\n .replace-file,\n .edit-file {\n color: $white;\n margin: 0;\n }\n .replace-file {\n display: none;\n }\n &.edit {\n display: none;\n }\n &.related-lookup-change {\n @include button-variant($btn-default-color, $btn-default-bgcolor, $btn-default-border, true);\n float: right !important;\n padding: 5px 0 !important;\n width: 36px !important;\n height: 36px !important;\n &:focus {\n background-color: $white !important;\n }\n span {\n text-align: center;\n line-height: 24px;\n }\n .cms-icon {\n color: $btn-default-color;\n margin-right: 0 !important;\n }\n .choose-file {\n display: none;\n }\n .replace-file {\n display: block;\n }\n &.lookup {\n display: block !important;\n }\n &.edit {\n display: block;\n }\n }\n }\n // makes sure that filer clear button has correct size #669\n .filerClearer {\n width: 36px !important;\n height: 36px !important;\n color: $color-danger;\n }\n .filerFile {\n position: absolute;\n top: 9px;\n // required for django CMS <= 3.1 #673\n left: 20px;\n width: calc(100% - 40px);\n img[src*=nofile] {\n background-color: $white;\n }\n // make sure that text crops if there is not enough space #670\n span:not(:empty):not(.choose-file):not(.replace-file):not(.edit-file) {\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n width: calc(100% - 260px);\n height: 80px;\n line-height: 80px;\n }\n // required for django CMS <= 3.1 #673\n img {\n width: 80px;\n height: 80px;\n margin-right: 10px;\n border: solid 1px $gray-lighter;\n border-radius: $border-radius-base;\n vertical-align: top;\n &[src*=\"nofile\"] {\n box-sizing: border-box;\n margin-right: 0;\n border: solid 1px $gray-lighter;\n border-radius: $border-radius-base;\n }\n }\n // required for django CMS <= 3.1\n a {\n box-sizing: border-box;\n padding-top: 10px !important;\n }\n // required for django CMS <= 3.1 #673\n span {\n display: inline-block;\n color: $gray;\n font-weight: normal;\n margin-bottom: 6px;\n text-align: left;\n &:empty + .related-lookup {\n float: none !important;\n margin-left: 0 !important;\n }\n }\n // required for django CMS <= 3.1 #673\n a.filerClearer {\n @include button-variant($btn-default-color, $btn-default-bgcolor, $btn-default-border, true);\n float: right;\n padding: 5px 0 !important;\n margin: 24px 0 0 10px;\n width: 36px;\n height: 36px;\n text-align: center;\n cursor: pointer;\n span:before {\n color: $color-danger !important;\n }\n span {\n text-align: center;\n line-height: 24px;\n }\n }\n\n }\n &.filer-dropzone-mobile {\n .filerFile {\n text-align: center;\n }\n .dz-message {\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n // make sure that drag and drop widget looks nice on mobile #670\n margin-top: 75px;\n }\n &.js-object-attached .filerFile {\n text-align: center;\n &.js-file-selector {\n @media screen and (max-width: $screen-tablet-filer) {\n .description_text {\n text-overflow: ellipsis;\n width: calc(100% - 250px);\n overflow: hidden;\n }\n }\n >span:not(.choose-file):not(.replace-file):not(.edit-file), .dz-name {\n width: calc(100% - 250px);\n }\n }\n }\n\n }\n &.filer-dropzone-folder .filerFile {\n top: 8px;\n #id_folder_description_txt {\n float: left;\n }\n }\n\n @media (max-width: 767px) {\n flex-grow: 1;\n }\n\n }\n}\n\n.filer-dropzone {\n min-height: 100px !important;\n .dz-upload {\n height: 5px;\n background-color: $color-primary;\n }\n .dz-name {\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n max-width: calc(100% - 145px);\n }\n .dz-thumbnail {\n display: inline-block;\n overflow: hidden;\n vertical-align: top;\n width: 80px;\n height: 80px;\n margin-right: 10px;\n border: solid 1px $gray-lighter;\n border-radius: 3px;\n background: $white url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%232980b9' d='M5 2c-1.105 0-2 .9-2 2v18c0 1.1.895 2 2 2h14c1.105 0 2-.9 2-2V8l-6-6z'/%3E%3Cpath fill='%233498db' d='M5 1c-1.105 0-2 .9-2 2v18c0 1.1.895 2 2 2h14c1.105 0 2-.9 2-2V7l-6-6z'/%3E%3Cpath fill='%232980b9' d='m21 7-6-6v4c0 1.1.895 2 2 2z'/%3E%3C/svg%3E\");\n background-size: contain;\n img {\n background: $white;\n &[src=\"\"],\n &:not([src]) {\n width: 104%;\n height: 104%;\n margin: -2%;\n }\n }\n }\n}\n\n.filer-dropzone-info-message {\n position: fixed;\n bottom: 35px;\n left: 50%;\n z-index: 2;\n text-align: center;\n width: 270px;\n max-height: 300px;\n overflow-y: auto;\n margin: -50px 0 0 -150px;\n padding: 15px 15px 0;\n border-radius: $border-radius-base;\n background: $white;\n box-shadow: $base-box-shadow;\n .icon {\n font-size: 35px;\n color: $color-primary;\n }\n .text {\n margin: 5px 0 10px;\n }\n}\n.filer-dropzone-upload-info {\n margin-top: 10px;\n // make sure that file name on upload progress is cut #675\n .filer-dropzone-file-name {\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n }\n &:empty {\n margin-top: 0;\n }\n}\n.filer-dropzone-progress {\n height: 5px;\n margin-top: 5px;\n background-color: $color-primary;\n}\n\n.filer-dropzone-upload-welcome .folder {\n color: $color-primary;\n padding: 10px 0 0;\n margin: 0 -15px;\n border-top: solid 1px $gray-lighter;\n img,\n span {\n vertical-align: middle;\n }\n img {\n margin-right: 5px;\n }\n .folder-inner {\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n padding: 0 10px;\n }\n}\n\n.filer-dropzone-cancel {\n padding-top: 10px;\n border-top: solid 1px $gray-lighter;\n margin: 15px -15px 10px;\n a {\n font-size: $font-size-small;\n color: $gray !important;\n }\n}\n.filer-dropzone-upload-success,\n.filer-dropzone-upload-canceled {\n margin: 0 -15px 10px;\n}\n\n.filer-dropzone-upload-count {\n padding-bottom: 10px;\n margin: 10px -15px;\n border-bottom: solid 1px $gray-lighter;\n}\n",".filer-tooltip-wrapper {\n position: relative;\n}\n\n.filer-tooltip {\n position: absolute;\n left: -30px;\n right: -30px;\n color: $gray;\n text-align: center;\n font-size: $font-size-small !important;\n line-height: 15px !important;\n white-space: normal;\n margin-top: 5px;\n padding: 10px;\n background-color: $white;\n box-shadow: 0 0 10px rgba(black,.25);\n border-radius: 5px;\n z-index: 10;\n &:before {\n position: absolute;\n top: -3px;\n left: 50%;\n z-index: -1;\n content: '';\n width: 9px;\n height: 9px;\n margin-left: -5px;\n transform: rotate(45deg);\n background-color: $white;\n }\n}\n\n.disabled-btn-tooltip {\n display: none;\n outline: none;\n}\n","/*\n * The MIT License\n * Copyright (c) 2012 Matias Meno \n */\n@keyframes passing-through {\n 0% {\n opacity: 0;\n transform: translateY(40px);\n }\n 30%,\n 70% {\n opacity: 1;\n transform: translateY(0);\n }\n 100% {\n opacity: 0;\n transform: translateY(-40px);\n }\n}\n@keyframes slide-in {\n 0% {\n opacity: 0;\n transform: translateY(40px);\n }\n 30% {\n opacity: 1;\n transform: translateY(0);\n }\n}\n@keyframes pulse {\n 0% {\n transform: scale(1);\n }\n 10% {\n transform: scale(1.1);\n }\n 20% {\n transform: scale(1);\n }\n}\n.filer-dropzone,\n.filer-dropzone * {\n box-sizing: border-box;\n}\n\n.filer-dropzone {\n min-height: 150px;\n padding: 20px 20px;\n border: 2px solid rgba(0, 0, 0, 0.3);\n background: white;\n}\n.filer-dropzone.dz-clickable {\n cursor: pointer;\n}\n.filer-dropzone.dz-clickable * {\n cursor: default;\n}\n.filer-dropzone.dz-clickable .dz-message,\n.filer-dropzone.dz-clickable .dz-message * {\n cursor: pointer;\n}\n.filer-dropzone.dz-drag-hover {\n border-style: solid;\n}\n.filer-dropzone.dz-drag-hover .dz-message {\n opacity: 0.5;\n}\n.filer-dropzone .dz-message {\n text-align: center;\n margin: 2em 0;\n}\n.filer-dropzone .dz-preview {\n display: inline-block;\n position: relative;\n vertical-align: top;\n min-height: 100px;\n margin: 16px;\n}\n.filer-dropzone .dz-preview:hover {\n z-index: 1000;\n}\n.filer-dropzone .dz-preview:hover .dz-details {\n opacity: 1;\n}\n.filer-dropzone .dz-preview.dz-file-preview .dz-image {\n border-radius: 20px;\n background: $gray-light;\n background: linear-gradient(to bottom, $gray-lightest, $gray-lighter);\n}\n.filer-dropzone .dz-preview.dz-file-preview .dz-details {\n opacity: 1;\n}\n.filer-dropzone .dz-preview.dz-image-preview {\n background: white;\n}\n.filer-dropzone .dz-preview.dz-image-preview .dz-details {\n transition: opacity 0.2s linear;\n}\n.filer-dropzone .dz-preview .dz-remove {\n display: block;\n font-size: 14px;\n text-align: center;\n border: none;\n cursor: pointer;\n}\n.filer-dropzone .dz-preview .dz-remove:hover {\n text-decoration: underline;\n}\n.filer-dropzone .dz-preview:hover .dz-details {\n opacity: 1;\n}\n.filer-dropzone .dz-preview .dz-details {\n position: absolute;\n top: 0;\n left: 0;\n z-index: 20;\n color: rgba(0, 0, 0, 0.9);\n font-size: 13px;\n line-height: 150%;\n text-align: center;\n min-width: 100%;\n max-width: 100%;\n padding: 2em 1em;\n opacity: 0;\n}\n.filer-dropzone .dz-preview .dz-details .dz-size {\n font-size: 16px;\n margin-bottom: 1em;\n}\n.filer-dropzone .dz-preview .dz-details .dz-filename {\n white-space: nowrap;\n}\n.filer-dropzone .dz-preview .dz-details .dz-filename:hover span {\n border: 1px solid rgba(200, 200, 200, 0.8);\n background-color: rgba(255, 255, 255, 0.8);\n}\n.filer-dropzone .dz-preview .dz-details .dz-filename:not(:hover) {\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.filer-dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {\n border: 1px solid transparent;\n}\n.filer-dropzone .dz-preview .dz-details .dz-filename span,\n.filer-dropzone .dz-preview .dz-details .dz-size span {\n padding: 0 0.4em;\n border-radius: 3px;\n background-color: rgba(255, 255, 255, 0.4);\n}\n.filer-dropzone .dz-preview:hover .dz-image img {\n transform: scale(1.05, 1.05);\n\n filter: blur(8px);\n}\n.filer-dropzone .dz-preview .dz-image {\n display: block;\n position: relative;\n overflow: hidden;\n z-index: 10;\n width: 120px;\n height: 120px;\n border-radius: 20px;\n}\n.filer-dropzone .dz-preview .dz-image img {\n display: block;\n}\n.filer-dropzone .dz-preview.dz-success .dz-success-mark {\n animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);\n}\n.filer-dropzone .dz-preview.dz-error .dz-error-mark {\n opacity: 1;\n animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);\n}\n.filer-dropzone .dz-preview .dz-success-mark,\n.filer-dropzone .dz-preview .dz-error-mark {\n display: block;\n position: absolute;\n top: 50%;\n left: 50%;\n z-index: 500;\n margin-top: -27px;\n margin-left: -27px;\n pointer-events: none;\n opacity: 0;\n}\n.filer-dropzone .dz-preview .dz-success-mark svg,\n.filer-dropzone .dz-preview .dz-error-mark svg {\n display: block;\n width: 54px;\n height: 54px;\n}\n.filer-dropzone .dz-preview.dz-processing .dz-progress {\n opacity: 1;\n transition: all 0.2s linear;\n}\n.filer-dropzone .dz-preview.dz-complete .dz-progress {\n opacity: 0;\n transition: opacity 0.4s ease-in;\n}\n.filer-dropzone .dz-preview:not(.dz-processing) .dz-progress {\n animation: pulse 6s ease infinite;\n}\n.filer-dropzone .dz-preview .dz-progress {\n position: absolute;\n top: 50%;\n left: 50%;\n overflow: hidden;\n z-index: 1000;\n width: 80px;\n height: 16px;\n margin-top: -8px;\n margin-left: -40px;\n border-radius: 8px;\n pointer-events: none;\n opacity: 1;\n background: rgba(255, 255, 255, 0.9);\n}\n.filer-dropzone .dz-preview .dz-progress .dz-upload {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n width: 0;\n background: $gray-darkest;\n background: linear-gradient(to bottom, $gray, $gray-darkest);\n transition: width 300ms ease-in-out;\n}\n.filer-dropzone .dz-preview.dz-error .dz-error-message {\n display: block;\n}\n.filer-dropzone .dz-preview.dz-error:hover .dz-error-message {\n pointer-events: auto;\n opacity: 1;\n}\n.filer-dropzone .dz-preview .dz-error-message {\n display: block;\n display: none;\n position: absolute;\n top: 130px;\n left: -10px;\n z-index: 1000;\n color: $white;\n font-size: 13px;\n width: 140px;\n padding: 0.5em 1.2em;\n border-radius: 8px;\n pointer-events: none;\n opacity: 0;\n background: #be2626;\n background: linear-gradient(to bottom, #be2626, #a92222);\n transition: opacity 0.3s ease;\n}\n.filer-dropzone .dz-preview .dz-error-message:after {\n content: \"\";\n position: absolute;\n top: -6px;\n left: 64px;\n width: 0;\n height: 0;\n border-right: 6px solid transparent;\n border-bottom: 6px solid #be2626;\n border-left: 6px solid transparent;\n}\n"]} \ No newline at end of file +{"version":3,"sources":["admin_filer.scss","components/_base.scss","settings/_custom.scss","components/_image-info.scss","mixins/_custom.scss","components/_action-list.scss","components/_filter-files.scss","components/_navigator.scss","components/_modal.scss","components/_drag-and-drop.scss","components/_tooltip.scss","libs/_dropzone.scss"],"names":[],"mappings":"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","file":"../admin_filer.css","sourcesContent":["/*!\n * @copyright: https://github.com/divio/django-filer\n */\n\n//##############################################################################\n// IMPORT SETTINGS\n@import \"settings/all\";\n@import \"mixins/all\";\n\n//##############################################################################\n// IMPORT COMPONENTS\n@import \"components/base\";\n@import \"components/image-info\";\n@import \"components/action-list\";\n@import \"components/filter-files\";\n@import \"components/navigator\";\n@import \"components/modal\";\n@import \"components/drag-and-drop\";\n@import \"components/tooltip\";\n\n//##############################################################################\n// IMPORT LIBS\n@import \"libs/dropzone\";\n","//##############################################################################\n// BASE\n\nhtml,\nbody {\n min-width: 320px;\n height: 100% !important;\n}\n\n.text-left {\n text-align: left;\n}\n.text-right {\n text-align: right;\n}\n.clearfix:after {\n content: \"\";\n display: table;\n clear: both;\n}\n.related-widget-wrapper {\n float: none !important;\n}\n.related-lookup.hidden {\n display: none !important;\n}\n\n// make sure that tiny styles like on size info has correct font size and color #666\n.tiny {\n font-size: $font-size-small !important;\n color: $gray-light !important;\n}\n\n.nav-pages {\n position: relative;\n // make sure that paginator has correct font size and color #666\n font-size: $font-size-small;\n color: $gray-light !important;\n padding-left: 10px;\n padding-right: 20px;\n padding-top: 15px;\n padding-bottom: 15px;\n box-sizing: border-box;\n background: $white;\n span {\n // make sure that paginator has correct font size and color #666\n font-size: $font-size-small;\n color: $gray-light !important;\n }\n .actions {\n float: right;\n }\n}\n\n#id_upload_button:before {\n display: none;\n}\n#content #content-main {\n margin-top: 0;\n}\n.filebrowser {\n &.cms-admin-sideframe {\n #container {\n .breadcrumbs + #content,\n .breadcrumbs + .messagelist + #content {\n margin-left: 0 !important;\n margin-right: 0 !important;\n }\n .breadcrumbs {\n left: 0 !important;\n padding-left: 20px !important;\n }\n }\n }\n #container {\n min-width: auto;\n #content {\n padding: 0;\n box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);\n }\n .breadcrumbs + #content,\n .breadcrumbs + .messagelist + #content {\n margin-left: 3% !important;\n }\n }\n h1.folder_header {\n position: relative;\n top: 6px;\n }\n // required for django CMS <= 3.1 #673\n h2 {\n display: none;\n }\n #content-main {\n background-color: $white;\n }\n}\n\n.field-file,\n.field-sha1 {\n word-wrap: break-word;\n word-break: break-all;\n}\n\n.well.img-preview {\n display: none;\n margin-top: 0;\n}\n.img-wrapper {\n width: 180px;\n height: 180px;\n}\n\n.file-duplicates {\n clear: both;\n padding: 20px 0 0;\n}\n\nform .cancel-link {\n height: auto !important;\n line-height: inherit !important;\n padding: 10px 15px;\n}\n\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n margin: -1px;\n padding: 0;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n border: 0;\n}\n\n.hidden {\n display: none !important;\n}\n\n.filer-info-bar {\n min-height: 15px;\n margin: 0 0 2px !important;\n padding: 15px 20px;\n box-shadow: 0 0 10px -2px rgba(black, 0.2);\n background-color: $white;\n}\n\n.navigator .actions span.all,\n.navigator .actions span.clear,\n.navigator .actions span.question {\n font-size: 13px;\n margin: 0 0.5em;\n display: none;\n}\n\n#all-items-action-toggle {\n display: none !important;\n}\n","// #############################################################################\n// SETTINGS\n\n$speed-base: 200ms;\n\n// COLORS\n$white: var(--dca-white, var(--body-bg, #fff));\n$black: var(--dca-black, var(--body-fg, #000));\n$shadow-black: #000;\n\n$color-primary: var(--dca-primary, var(--primary, #0bf));\n// $color-primary-light: #f1faff;\n$color-success: #693;\n$color-danger: #f00;\n$color-warning: #c93;\n\n// COLORS gray\n$gray: var(--dca-gray, var(--body-quiet-color, #666)); // #666;\n$gray-lightest: var(--dca-gray-lightest, var(--darkened-bg, #f2f2f2)); // #f2f2f2\n$gray-lighter: var(--dca-gray-lighter, var(--border-color, #ddd)); // #ddd\n$gray-light: var(--dca-gray-light, var(--body-quiet-color, #999)); // #999\n$gray-darker: var(--dca-gray-darker, #454545); // #454545\n$gray-darkest: var(--dca-gray-darkest, var(--body-fg, #333)); // #333\n\n$gray-super-light: var(--dca-gray-super-lightest, var(--darkened-bg, #f7f7f7));\n$gray-dropzone: $gray-lightest;\n\n$hover-bg: $gray-lightest;\n\n//##############################################################################\n// BASE Variables\n$font-size-small: 12px;\n$font-size-normal: 14px;\n$font-size-large: 16px;\n\n$icon-size: 16px;\n\n$line-height-normal: 20px;\n\n$border-radius-base: 3px;\n$border-radius-normal: 5px;\n\n$padding-base: 3px;\n$padding-normal: 10px;\n$padding-large: 20px;\n\n$screen-mobile: 320px;\n$screen-tablet: 720px;\n$screen-desktop: 975px;\n\n$screen-tablet-filer: 810px;\n\n//##############################################################################\n// BUTTONS\n\n$btn-border-radius-base: $border-radius-base;\n$btn-active-shadow: inset 0 3px 5px rgba($black, 0.125);\n\n$btn-default-color: var(--dca-gray-light, var(--button-fg, #999));\n$btn-default-bgcolor: var(--dca-white, var(--button-bg, #fff));\n$btn-default-border: var(--dca-gray-lighter, transparent);\n\n$btn-action-color: var(--dca-white, var(--button-fg, #fff));\n$btn-action-bgcolor: $color-primary;\n$btn-action-border: $color-primary;\n\n//##############################################################################\n// #SHADOW\n\n$base-box-shadow: 0 0 5px 0 rgba($shadow-black, 0.2);\n$dropdown-shadow: 0 1px 10px rgba($shadow-black, 0.25);\n","//##############################################################################\n// IMAGE INFO\n\n.image-info {\n position: relative;\n float: right;\n box-sizing: border-box;\n width: 28%;\n margin-top: 0;\n border: 0;\n border-radius: 3px;\n background: $white;\n box-shadow: 0 0 5px 0 rgba(black,0.2);\n .image-details,\n .actions-list {\n margin: 0;\n padding: 0;\n &.image-details {\n margin: 10px 0;\n padding: 0 10px;\n }\n li {\n list-style-type: none;\n }\n a {\n cursor: pointer;\n }\n }\n &.image-info-detail {\n @include clearfix();\n position: static;\n float: none;\n width: 100%;\n margin-bottom: 20px;\n padding: 25px;\n border-radius: 0;\n // removes background color and shadow from object tools and fixes placement on image detail page\n + #content-main .object-tools {\n margin-top: 20px;\n margin-right: 20px;\n background-color: transparent;\n &:before {\n display: none;\n }\n }\n .image-details-left {\n float: left;\n }\n .image-details-right {\n float: left;\n margin-left: 50px;\n }\n .image-details,\n .actions-list {\n margin-top: 0;\n border: 0 !important;\n &.image-details {\n margin-top: 20px;\n margin-bottom: 15px;\n padding: 0;\n }\n dt {\n float: left;\n color: $gray-light;\n font-size: 13px;\n // required for django CMS without admin styles #673\n line-height: 1rem !important;\n font-weight: normal;\n // required for django CMS without admin styles #673\n margin-top: 0;\n }\n dd {\n color: $gray;\n font-size: 13px;\n // required for django CMS without admin styles #673\n line-height: $font-size-large !important;\n padding-left: 80px;\n // required for django CMS without admin styles #673\n margin-bottom: 5px;\n }\n .text {\n font-size: 13px;\n margin-right: 15px;\n strong {\n font-size: 13px;\n }\n }\n li {\n color: $gray;\n font-size: 13px !important;\n font-weight: normal !important;\n padding: 1px 0 !important;\n border: 0 !important;\n }\n a {\n padding: 0;\n }\n }\n .image-info-title {\n overflow: hidden;\n color: $gray;\n white-space: nowrap;\n text-overflow: ellipsis;\n padding: 0 0 5px;\n .icon {\n float: left;\n margin-right: 5px;\n }\n }\n .image-preview-container {\n text-align: left;\n margin: 20px 0 0;\n padding: 0;\n > img {\n margin-bottom: 15px;\n }\n }\n .actions-list {\n .icon {\n font-size: 16px;\n &:last-child {\n float: none;\n }\n }\n }\n }\n @media screen and (max-width: $screen-tablet) {\n float: none;\n width: 100%;\n &.image-info-detail {\n .image-details-left,\n .image-details-right {\n float: none;\n margin-left: 0;\n }\n }\n }\n}\n\n.image-info-close {\n position: absolute;\n top: -10px;\n right: -7px;\n font-size: 20px;\n cursor: pointer;\n}\n\n.image-info-title {\n padding: 5px 10px;\n border-bottom: solid 1px $gray-lighter;\n a {\n margin-left: 5px;\n }\n}\n\n.image-preview-container {\n text-align: center;\n margin: 10px 0;\n padding: 0 10px;\n .image-preview {\n display: inline-block;\n position: relative;\n margin-bottom: 15px;\n outline: 1px solid $gray-lightest;\n background-image: url(\"data:image/gif;base64,R0lGODlhCAAIAKECAOPj4/z8/P///////yH5BAEKAAIALAAAAAAIAAgAAAINhBEZh8q6DoTPSWvoKQA7\");\n img {\n display: block;\n }\n }\n .image-preview-field {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n overflow: hidden;\n }\n .image-preview-circle {\n position: relative;\n z-index: 1;\n width: 26px;\n height: 26px;\n border: solid 2px $color-danger;\n margin: -13px;\n border-radius: 30px;\n cursor: move;\n background: rgba(255, 255, 255, 0.5);\n }\n audio, video {\n margin-bottom: 15px;\n &:focus {\n outline: none;\n }\n }\n}\n\n.button-group .button {\n margin-right: 10px;\n padding: 10px 15px;\n}\n","// #############################################################################\n// OTHER\n\n// add clearfix which doesnt add overflow:hidden\n@mixin clearfix() {\n &:before,\n &:after {\n content: \" \";\n display: table;\n }\n &:after {\n clear: both;\n }\n}\n// taken from bootstrap with adaptations\n@function important($important) {\n @if($important == true) {\n @return !important;\n } @else {\n @return true;\n }\n}\n/* @mixin button-variant($color, $background, $border, $important: false) {\n background-image: none important($important);\n margin-bottom: 0; // For input.btn\n padding: 6px 20px important($important);\n border-radius: $btn-border-radius-base important($important);\n color: $color important($important);\n font-size: $font-size-small important($important);\n line-height: $font-size-small;\n font-weight: normal;\n text-transform: none important($important);\n letter-spacing: normal important($important);\n background-color: $background important($important);\n border: 1px solid $border important($important);\n background-clip: padding-box;\n appearance: none;\n &:focus {\n color: $color important($important);\n background-color: darken($background, 5%) important($important);\n border-color: darken($border, 5%) important($important);\n text-decoration: none important($important);\n }\n &:hover {\n color: $color important($important);\n background-color: darken($background, 5%) important($important);\n border-color: darken($border, 5%) important($important);\n text-decoration: none important($important);\n }\n &:active {\n color: $color important($important);\n background-color: darken($background, 10%) important($important);\n border-color: darken($border, 10%) important($important);\n box-shadow: $btn-active-shadow important($important);\n\n &:hover,\n &:focus {\n color: $color important($important);\n background-color: darken($background, 17%) important($important);\n border-color: darken($border, 25%) important($important);\n }\n }\n &:active {\n background-image: none important($important);\n }\n &[disabled] {\n &,\n &:hover,\n &:focus,\n &:active {\n background-color: rgba($background, 0.4) important($important);\n border-color: rgba($border, 0.4) important($important);\n color: rgba($color, 0.8) important(1);\n cursor: not-allowed;\n box-shadow: none important($important);\n &:before {\n color: rgba($color, 0.4) important(1);\n }\n }\n }\n}*/\n\n@mixin button-variant($color, $background, $border, $important: false) {\n background-image: none important($important);\n margin-bottom: 0; // For input.btn\n border-radius: $btn-border-radius-base important($important);\n color: $color important($important);\n background-color: $background important($important);\n border: 1px solid $border important($important);\n background-clip: padding-box;\n -webkit-appearance: none;\n &:focus,\n &.focus,\n &:hover {\n color: $color important($important);\n @if $background == $btn-default-bgcolor {\n background-color: $gray-lightest important($important);\n border-color: $border important($important);\n } @else {\n background-color: $background important($important);\n border-color: $border important($important);\n filter: invert(0.05) important($important);\n }\n text-decoration: none important($important);\n }\n &:active,\n &.cms-btn-active {\n color: $color important($important);\n background-color: $background important($important);\n border-color: $border important($important);\n filter: brightness(var(--active-brightness)) opacity(1) important($important);\n // Strange: removing opacity(1.) or correcting it makes item transparent\n box-shadow: $btn-active-shadow important($important);\n\n &:hover,\n &:focus,\n &.focus {\n color: $color important($important);\n background-color: $background important($important);\n border-color: $border important($important);\n filter: brightness(calc(var(--focus-brightness) * var(--active-brightness))) opacity(1) important($important);\n } // Strange: removing opacity(1.) or correcting it makes item transparent\n }\n &:active,\n &.cms-btn-active {\n background-image: none important($important);\n }\n &.cms-btn-disabled,\n &[disabled] {\n &,\n &:hover,\n &:focus,\n &.focus,\n &:active,\n &.cms-btn-active { // TODO: FABR\n background-color: $background important($important);\n border-color: $border important($important);\n @if $color == $gray {\n color: $gray-lighter important(1);\n } @else {\n color: $color important(1);\n filter: brightness(0.6) opacity(1); // Strange: removing opacity(1.) or correcting it makes item transparent\n }\n cursor: not-allowed;\n box-shadow: none important($important);\n &:before {\n @if $color == $gray {\n color: $gray-lighter important(1);\n } @else {\n color: $color important(1);\n filter: brightness(0.6) opacity(1); // Strange: removing opacity(1.) or correcting it makes item transparent\n }\n }\n }\n }\n}\n","//##############################################################################\n// ACTION LIST\n\n.actions-list-dropdown {\n a {\n display: block;\n padding: 5px 10px;\n }\n .caret-down {\n display: inline-block;\n }\n .caret-right {\n display: none;\n }\n &.js-collapsed {\n border-bottom: solid 1px $gray-lighter;\n .caret-down {\n display: none;\n }\n .caret-right {\n display: inline-block;\n }\n }\n}\n.actions-list {\n border-top: solid 1px $gray-lighter;\n &:last-child {\n border-top: none;\n a {\n border-bottom: none;\n }\n }\n a {\n display: block;\n font-size: 20px;\n padding: 5px 10px;\n border-bottom: solid 1px $gray-lighter;\n }\n .icon {\n &:first-child {\n width: 20px;\n }\n &:last-child {\n float: right;\n margin-top: 3px;\n }\n }\n}\n.actions-separated-list {\n display: inline-block;\n margin: 0;\n padding-left: 0;\n @media screen and (max-width: $screen-tablet) {\n float: left;\n margin-left: 0;\n }\n li {\n display: inline-block;\n line-height: 34px;\n vertical-align: middle;\n padding: 0 10px;\n list-style: none;\n @media screen and (max-width: $screen-tablet) {\n &:first-child {\n padding-left: 0;\n }\n }\n span {\n vertical-align: middle;\n }\n a {\n color: $gray;\n }\n }\n span:before {\n font-size: 18px;\n }\n}\n","//##############################################################################\n// FILTER FILES\n\n.search-is-focused {\n .filter-files-container {\n position: static;\n }\n .filter-filers-container-inner {\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n @media screen and (max-width: $screen-tablet) {\n position: static;\n }\n }\n .breadcrumbs-container {\n position: relative;\n }\n &.breadcrumb-min-width .filter-filers-container-inner {\n position: static;\n }\n}\n\n.filter-files-container {\n @include clearfix;\n display: table-cell;\n vertical-align: middle;\n position: relative;\n width: 245px;\n margin: 0;\n padding: 0;\n background: none;\n box-shadow: none;\n z-index: 1000;\n @media screen and (max-width: $screen-tablet) {\n display: block;\n width: auto;\n margin-right: 0;\n margin-top: 10px;\n .filter-files-button {\n float: none;\n }\n }\n .filer-dropdown-container {\n position: absolute;\n top: 0;\n right: 0;\n > a {\n &,\n &:visited,\n &:link:visited,\n &:link {\n display: inline-block;\n line-height: 34px;\n text-align: center;\n width: 34px;\n height: 34px;\n padding: 0;\n }\n }\n &.open + .filer-dropdown-menu-checkboxes {\n display: block;\n width: calc(100% - 30px);\n li {\n margin: 0;\n padding: 0;\n list-style-type: none;\n }\n }\n }\n .filter-search-wrapper {\n position: relative;\n float: left;\n text-align: right;\n width: calc(100% - 43px);\n margin-right: 5px;\n @media screen and (max-width: $screen-tablet) {\n float: left;\n }\n .filer-dropdown-container span {\n line-height: 34px !important;\n height: 34px !important;\n }\n }\n .filter-files-button {\n float: right;\n text-align: center;\n white-space: nowrap;\n height: 35px;\n margin: 0;\n padding: 8px !important;\n .icon {\n position: relative;\n left: 2px;\n font-size: 16px !important;\n vertical-align: top;\n }\n }\n .filter-files-field {\n color: $gray-darkest;\n font-size: 12px !important;\n line-height: 35px;\n font-weight: normal;\n box-sizing: border-box;\n min-width: 200px !important;\n height: 35px;\n // required for django CMS <= 3.1 #673\n margin: 0;\n padding: 0 35px 0 10px !important;\n outline: none;\n appearance: none;\n transition: max-width $speed-base;\n // disable clear X on IE #690\n &::-ms-clear {\n display: none;\n }\n }\n .filer-dropdown-menu {\n margin-top: 0 !important;\n margin-right: -1px !important;\n }\n}\n.filter-files-cancel {\n margin: 5px 20px;\n}\n","//##############################################################################\n// NAVIGATOR\n\nbody {\n &.dz-drag-hover {\n .drag-hover-border {\n display: none !important;\n }\n .navigator-table tbody td,\n .navigator-table tbody .unfiled td {\n background-color: $hover-bg !important;\n }\n }\n &.reset-hover td {\n background-color: $white !important;\n }\n}\n.drag-hover-border {\n position: fixed;\n border-top: solid 2px $color-primary;\n border-bottom: solid 2px $color-primary;\n pointer-events: none;\n z-index: 100;\n display: none;\n}\n.thumbnail-drag-hover-border {\n border: solid 2px $color-primary;\n}\n.filebrowser .navigator-list,\n.filebrowser .navigator-table {\n // required for django CMS <= 3.1 #673\n width: 100%;\n margin: 0;\n border-top: solid 1px $gray-lighter !important;\n border-collapse: collapse !important;\n .navigator-header,\n thead th,\n tbody td {\n text-align: left;\n font-weight: normal;\n vertical-align: middle;\n padding: 5px !important;\n border-left: 0 !important;\n border-bottom: 1px solid $gray-lighter;\n border-top: 1px solid transparent;\n background: none !important;\n }\n tbody tr.selected {\n .action-button span {\n color: $gray-darkest !important;\n }\n }\n .navigator-body,\n .unfiled td {\n padding: 12px 5px !important;\n background-color: $gray-super-light !important;\n a,\n a:hover {\n color: $gray !important;\n }\n }\n .column-checkbox {\n text-align: center;\n width: 20px;\n padding-left: 20px !important;\n input {\n // makes sure that checkbox is vertical aligned #664\n vertical-align: middle;\n margin: 0;\n }\n }\n .column-name a {\n color: $color-primary;\n }\n .column-icon {\n width: 50px;\n // removes padding to make sure that column has correct height #664\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n img {\n width: 40px;\n height: auto;\n }\n }\n .column-action {\n text-align: center;\n width: 90px;\n white-space: nowrap;\n padding-right: 20px !important;\n a {\n font-size: 16px !important;\n margin: 0;\n }\n .action-button {\n @include button-variant($btn-default-color, $btn-default-bgcolor, $btn-default-border, true);\n padding: 9px !important;\n span {\n font-size: 17px;\n line-height: 33px;\n vertical-align: middle;\n }\n }\n }\n .no-files {\n color: $gray;\n font-size: $font-size-normal;\n text-align: center;\n padding: 40px 0 !important;\n background-color: $gray-lightest !important;\n span {\n font-size: 20px;\n margin-right: 10px;\n &:before {\n vertical-align: sub;\n }\n }\n }\n .dz-drag-hover {\n td {\n position: relative;\n background: $hover-bg !important;\n box-sizing: border-box !important;\n a {\n &.icon {\n color: $gray-darkest !important;\n background-color: $white !important;\n }\n color: $color-primary !important;\n }\n }\n }\n &.dz-drag-hover {\n position: relative;\n .drag-hover-border {\n display: none !important;\n }\n td {\n background: $hover-bg !important;\n box-sizing: border-box !important;\n }\n }\n .reset-hover,\n &.reset-hover {\n td {\n background-color: $white !important;\n }\n .dz-drag-hover {\n td {\n background: $hover-bg !important;\n }\n }\n }\n}\n.navigator-top-nav {\n position: relative;\n clear: both;\n min-height: 35px;\n padding: 15px 20px;\n background: $gray-super-light;\n border-bottom: $gray-lighter solid 1px;\n .breadcrumbs-container-wrapper {\n display: table;\n width: 100%;\n @media screen and (max-width: $screen-tablet) {\n display: block;\n }\n }\n .breadcrumbs-container-inner {\n display: table;\n table-layout: fixed;\n width: 100%;\n .filer-dropdown-container {\n display: table-cell;\n width: 30px;\n height: 35px;\n vertical-align: middle;\n span {\n line-height: 35px;\n height: 35px;\n vertical-align: middle;\n }\n }\n }\n .breadcrumbs-container {\n display: table-cell;\n vertical-align: middle;\n @media screen and (max-width: $screen-tablet) {\n position: static;\n margin-right: 20px;\n }\n }\n .tools-container {\n @include clearfix;\n display: table-cell;\n vertical-align: middle;\n text-align: right;\n margin-top: 2px;\n @media screen and (max-width: $screen-tablet) {\n display: inline;\n text-align: left;\n }\n }\n .nav-button {\n display: inline-block;\n color: $gray;\n font-size: 20px;\n line-height: 34px;\n vertical-align: top;\n margin: 0 10px;\n span {\n vertical-align: middle;\n }\n }\n .nav-button-filter {\n position: relative;\n top: -1px;\n }\n .nav-button-dots {\n margin: 0;\n padding: 0 15px;\n }\n .separator {\n display: inline-block;\n position: relative;\n vertical-align: top;\n width: 1px;\n height: 34px;\n margin: 0 5px;\n &:before {\n content: \"\";\n display: block;\n position: absolute;\n top: -14px;\n bottom: -11px;\n overflow: hidden;\n width: 1px;\n background-color: $gray-lighter;\n }\n }\n}\n.breadcrumb-min-width {\n .filer-navigator-breadcrumbs-dropdown-container,\n .navigator-breadcrumbs-name-dropdown-wrapper,\n .navigator-breadcrumbs-folder-name-wrapper,\n .breadcrumbs-container-wrapper,\n .breadcrumbs-container,\n .tools-container,\n .filter-files-container,\n .navigator-breadcrumbs,\n .navigator-button-wrapper {\n display: inline-block;\n text-align: left;\n .actions-wrapper {\n white-space: nowrap;\n margin-left: 0;\n margin-top: 10px;\n li:first-child {\n padding-left: 0;\n }\n }\n }\n .navigator-button-wrapper {\n margin-top: 10px;\n }\n .navigator-breadcrumbs-name-dropdown-wrapper {\n min-height: inherit;\n .filer-dropdown-container .fa-caret-down {\n vertical-align: text-top;\n }\n }\n .breadcrumbs-container-inner .filer-dropdown-container {\n display: inline-block !important;\n }\n .navigator-tools {\n white-space: normal;\n }\n .filter-files-container {\n width: 100%;\n margin-top: 10px;\n z-index: auto;\n }\n .breadcrumbs-container {\n margin-right: 0;\n }\n .navigator-breadcrumbs .icon {\n vertical-align: middle;\n }\n .navigator-breadcrumbs-folder-name-wrapper {\n float: left;\n width: calc(100% - 30px);\n }\n}\n\n.navigator-tools {\n @include clearfix;\n white-space: nowrap;\n @media screen and (max-width: $screen-tablet) {\n display: inline;\n }\n .actions-wrapper {\n display: inline-block;\n margin-bottom: 0;\n margin-left: 10px;\n a, a:hover {\n color: $gray-light !important;\n cursor: not-allowed;\n }\n @media screen and (max-width: $screen-tablet) {\n @include clearfix();\n float: none;\n margin-left: 0;\n }\n &.action-selected {\n a {\n color: $gray !important;\n cursor: pointer;\n }\n .actions-separated-list {\n display: inline-block;\n }\n }\n + .filer-list-type-switcher-wrapper {\n border-left: solid 1px $gray-lighter;\n margin-left: 0;\n }\n }\n .actions {\n display: none;\n float: right;\n @media screen and (max-width: $screen-tablet) {\n @include clearfix();\n float: none;\n margin-bottom: 10px;\n }\n .all,\n .question,\n .clear,\n .action-counter {\n font-size: $font-size-small;\n line-height: 34px;\n vertical-align: text-top;\n }\n .action-counter,\n .all {\n color: $gray-light;\n }\n .question,\n .clear {\n margin-left: 10px;\n padding-left: 10px;\n border-left: solid 1px $gray-lighter;\n }\n }\n .filer-list-type-switcher-wrapper {\n display: inline-block;\n margin-left: 10px;\n }\n\n}\n@media screen and (max-width: $screen-tablet) {\n .navigator-top-nav {\n .breadcrumbs-container {\n float: none;\n }\n .navigator-tools {\n float: none;\n .separator:before {\n top: 0;\n bottom: 0;\n }\n }\n }\n}\n// make sure that buttons break to new line on mobile view #677\n.navigator-button-wrapper {\n display: inline-block;\n vertical-align: top;\n text-align: right;\n margin-bottom: 0;\n margin-left: 10px;\n @media screen and (max-width: $screen-tablet) {\n display: block;\n float: none;\n text-align: left;\n margin-top: 0;\n margin-left: 0;\n }\n}\n.navigator-button {\n margin-right: 10px;\n &,\n &:visited,\n &:link:visited,\n &:link {\n @include button-variant($btn-action-color, $btn-action-bgcolor, $btn-action-border, true);\n display: inline-block;\n vertical-align: top;\n padding: 10px 20px !important;\n }\n .icon {\n position: relative;\n margin-right: 3px;\n }\n .fa-folder {\n top: 0;\n }\n &.navigator-button-upload {\n margin-right: 0;\n }\n}\n\n.upload-button-disabled {\n display: inline-block;\n}\n.navigator-button + .filer-dropdown-menu {\n margin-top: -2px;\n}\n\n.navigator {\n position: relative;\n overflow-x: auto;\n width: 100%;\n form {\n margin: 0;\n padding: 0;\n box-shadow: none;\n }\n}\n\n.filer-dropdown-container {\n display: inline-block;\n position: relative;\n vertical-align: top;\n .fa-caret-down, .cms-icon-caret-down {\n font-size: 14px;\n }\n .filer-dropdown-menu,\n + .filer-dropdown-menu {\n display: none;\n right: 0;\n left: auto;\n border: 0;\n box-shadow: $dropdown-shadow;\n > li > a {\n display: block;\n color: $color-primary;\n font-weight: normal;\n white-space: normal;\n padding: 12px 20px !important;\n @media screen and (min-width: $screen-tablet) {\n white-space: nowrap;\n }\n }\n label {\n display: block;\n line-height: 20px !important;\n text-transform: none;\n width: auto;\n margin: 5px 0 !important;\n padding: 0 10px !important;\n }\n input {\n position: relative;\n top: 4px;\n vertical-align: top;\n margin-right: 5px;\n }\n &.filer-dropdown-menu-checkboxes {\n width: 0;\n min-height: 50px;\n padding: 15px;\n border: 0;\n box-shadow: $dropdown-shadow;\n &:before {\n display: none;\n }\n .fa-close {\n position: absolute;\n top: 10px;\n right: 10px;\n color: $gray;\n cursor: pointer;\n &:hover {\n color: $color-primary;\n }\n }\n p {\n color: $gray-light !important;\n font-weight: normal;\n text-transform: uppercase;\n margin-bottom: 5px;\n }\n label {\n color: $gray !important;\n font-weight: normal;\n padding: 0 !important;\n margin-top: 0 !important;\n input {\n margin-left: 0;\n }\n }\n }\n a:hover {\n color: $white !important;\n background: $color-primary !important;\n }\n }\n &.open .filer-dropdown-menu {\n display: block;\n li {\n margin: 0;\n padding: 0;\n list-style-type: none;\n }\n }\n + .separator {\n margin-right: 10px;\n }\n}\n.filer-dropdown-container-down {\n > a {\n &,\n &:link,\n &:visited,\n &:link:visited {\n color: $gray;\n font-size: 20px;\n line-height: 35px;\n height: 35px;\n padding: 0 10px;\n }\n }\n .filer-dropdown-menu {\n right: auto;\n left: -14px;\n margin-right: 10px;\n }\n}\n\n.filer-dropdown-menu {\n position: absolute;\n top: 100%;\n z-index: 1000;\n display: none;\n float: left;\n min-width: 160px;\n margin: 2px 0 0;\n margin-top: 0 !important;\n padding: 0;\n list-style: none;\n font-size: 14px;\n text-align: left;\n background-color: $white;\n border-radius: 4px;\n background-clip: padding-box;\n &:before {\n position: absolute;\n top: -5px;\n left: 35px;\n z-index: -1;\n content: '';\n width: 10px;\n height: 10px;\n margin-left: -5px;\n transform: rotate(45deg);\n background-color: $white;\n }\n &.create-menu-dropdown:before {\n left: auto;\n right: 17px;\n }\n}\n\n.navigator-breadcrumbs {\n @include clearfix;\n display: table-cell;\n vertical-align: middle;\n font-size: 16px;\n white-space: nowrap;\n width: 60px;\n > a {\n color: $gray-darkest !important;\n }\n .icon {\n color: $gray-light;\n line-height: 35px;\n height: 35px;\n margin: 0 5px;\n &:before {\n vertical-align: middle;\n }\n }\n li {\n list-style-type: none;\n }\n}\n.navigator-breadcrumbs-folder-name-wrapper {\n display: table-cell;\n overflow: hidden;\n font-size: 16px;\n font-weight: bold;\n vertical-align: middle;\n white-space: nowrap;\n}\n.navigator-breadcrumbs-folder-name {\n display: block;\n overflow: hidden;\n white-space: normal;\n line-height: 35px;\n width: 100%;\n height: 35px;\n}\n.navigator-breadcrumbs-folder-name-inner {\n display: block;\n position: relative;\n overflow: hidden;\n line-height: 35px;\n height: 35px;\n width: 100%;\n text-overflow: ellipsis;\n}\n.filer-navigator-breadcrumbs-dropdown-container {\n position: relative;\n float: left;\n vertical-align: middle;\n margin: 0 7px 0 0;\n > a img {\n padding: 3px 0;\n }\n .navigator-breadcrumbs-dropdown {\n left: -15px !important;\n min-width: 200px;\n padding: 0;\n margin-top: 0;\n border: 0;\n box-shadow: $dropdown-shadow;\n > li {\n padding: 0;\n > a {\n color: $color-primary;\n padding: 12px 20px 3px !important;\n border-bottom: solid 1px $gray-lightest;\n &:hover {\n color: $white !important;\n background: $color-primary !important;\n }\n }\n &:last-child > a {\n border-bottom: none;\n }\n }\n img {\n position: relative;\n top: -5px;\n vertical-align: top;\n margin: 0 10px 0 0;\n }\n }\n}\n\n.navigator-dropdown-arrow-up {\n position: relative;\n left: 20px;\n overflow: hidden;\n width: 20px;\n height: 20px;\n margin-top: -20px;\n z-index: 1001;\n &:after {\n content: \"\";\n position: absolute;\n top: 15px;\n left: 5px;\n width: 10px;\n height: 10px;\n background: white;\n transform: rotate(45deg);\n box-shadow: $dropdown-shadow;\n }\n}\n\n.navigator-breadcrumbs-name-dropdown-wrapper {\n display: table;\n min-height: 35px;\n .filer-dropdown-menu {\n left: auto;\n right: -80px;\n &:before {\n right: 80px;\n left: auto;\n }\n }\n a {\n display: inline-block;\n }\n}\n\n.empty-filer-header-cell {\n display: table-cell;\n vertical-align: middle;\n}\n\n.filebrowser .navigator-thumbnail-list {\n overflow: hidden;\n .navigator-list {\n border-top: 0 !important;\n }\n .navigator-thumbnail-list-header {\n & > * {\n display: inline-block;\n text-transform: uppercase;\n margin: 0;\n padding: 0;\n padding-left: 10px;\n }\n .navigator-checkbox {\n float: right;\n padding-right: 20px;\n text-transform: initial;\n color: $color-primary;\n input[type=\"checkbox\"] {\n margin-left: 5px;\n vertical-align: middle;\n }\n }\n }\n .navigator-body {\n @include clearfix;\n padding: 0 !important;\n }\n .thumbnail-item {\n float: left;\n display: inline-block;\n padding: 10px;\n width: 125px;\n height: 125px;\n border: 1px solid $gray-lighter;\n margin: 16px 12px;\n background-color: $white;\n position: relative;\n overflow: hidden;\n .thumbnail-file-item-box {\n padding: 10px;\n width: 125px;\n height: 125px;\n border: 1px solid $gray-lighter;\n margin: 16px 12px;\n background-color: $white;\n &:hover {\n background-color: #f1faff;\n }\n }\n .navigator-checkbox {\n position: absolute;\n top: 5px;\n left: 5px;\n input {\n margin: 0;\n vertical-align: top;\n }\n }\n .item-thumbnail,\n .item-icon {\n height: 50%;\n width: 50%;\n margin: 10px auto;\n margin-bottom: 18px;\n a {\n display: block;\n height: 100%;\n width: 100%;\n }\n img {\n width: 100%;\n height: 100%;\n }\n }\n .item-name {\n background: transparent;\n text-align: center;\n word-break: break-word;\n }\n }\n .thumbnail-virtual-item {\n background-color: initial;\n }\n .thumbnail-folder-item {\n &:hover {\n background-color: #f1faff;\n }\n }\n .thumbnail-file-item {\n float: none;\n width: 147px;\n height: 200px;\n border: 0;\n padding: 0;\n background-color: transparent;\n .thumbnail-file-item-box {\n float: none;\n margin: 0;\n margin-bottom: 5px;\n }\n .item-thumbnail {\n margin: 0;\n height: 100%;\n width: 100%;\n }\n .item-name {\n position: relative;\n word-break: break-word;\n }\n }\n}\n\n.insertlinkButton {\n &:before {\n content:\"\" !important; // Necessary since djangocms-admin-style tries to add its own icon\n }\n span {\n font-size: 17px;\n }\n}\n","//##############################################################################\n// MODAL\n\n.popup {\n &.app-cmsplugin_filer_image {\n .form-row.field-image .field-box,\n .field-box.field-free_link,\n .field-box.field-page_link,\n .field-box.field-file_link {\n float: none !important;\n margin-right: 0 !important;\n margin-top: 20px !important;\n &:first-child {\n margin-top: 0 !important\n }\n input {\n width: 100% !important;\n }\n }\n .form-row .field-box {\n &.field-crop,\n &.field-upscale {\n margin-top: 30px;\n }\n }\n }\n &.delete-confirmation .colM ul {\n // makes sure that between list and button is a space #744\n margin-bottom: 25px !important;\n }\n .image-info-detail {\n padding: 0;\n padding-bottom: 25px;\n margin-bottom: 30px;\n box-shadow: none;\n border-bottom: solid 1px $gray-lighter;\n }\n &.change-list.filebrowser {\n #result_list tbody th,\n #result_list tbody td {\n // makes sure that changelist columns has correct height on modal window #665\n height: auto;\n }\n }\n .filer-dropzone {\n padding: 5px 20px;\n }\n form .form-row .filer-dropzone .filerFile {\n top: 8px;\n }\n &.filebrowser #container #content {\n margin: 0 !important;\n }\n .navigator-button-wrapper {\n float: right;\n @media screen and (max-width: $screen-tablet) {\n float: none;\n }\n }\n .navigator-top-nav {\n .tools-container {\n width: 70%;\n }\n .breadcrumbs-container {\n width: 30%;\n }\n .tools-container,\n .breadcrumbs-container {\n @media screen and (max-width: $screen-tablet) {\n width: 100%;\n }\n }\n }\n}\n","//##############################################################################\n// DRAG AND DROP\n\nform .form-row {\n &[class*=\"file\"],\n &[class*=\"folder\"],\n &[class*=\"img\"],\n &[class*=\"image\"],\n &[class*=\"visual\"] {\n .related-widget-wrapper-link {\n display: none;\n }\n }\n .filer-dropzone {\n @include clearfix;\n position: relative;\n min-width: 215px;\n border: solid 1px $gray-lighter;\n border-radius: $border-radius-base;\n background-color: $gray-lightest;\n box-sizing: border-box !important;\n .z-index-fix {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n }\n &.dz-drag-hover {\n background-color: $color-primary;\n filter: brightness(1.5);\n border: solid 2px $color-primary !important;\n .z-index-fix {\n z-index: 1;\n }\n .dz-message {\n opacity: 1;\n display: block !important;\n visibility: visible;\n }\n .filerFile {\n display: none;\n }\n .dz-message, .dz-message .icon {\n color: $color-primary !important;\n }\n }\n &.dz-started .fileUpload {\n display: none;\n }\n .dz-preview {\n width: 100%;\n min-height: auto;\n margin-right: 0;\n margin-bottom: 0;\n margin-left: 0;\n padding-bottom: 10px;\n border-bottom: solid 1px $gray-lighter;\n &.dz-error {\n position: relative;\n .dz-error-message {\n display: none;\n }\n &:hover .dz-error-message {\n display: block;\n }\n }\n .dz-details {\n min-width: calc(100% - 80px);\n max-width: calc(100% - 80px);\n margin-top: 7px;\n margin-left: 40px;\n padding: 0;\n opacity: 1;\n .dz-filename,\n .dz-filename:hover,\n .dz-size {\n float: left;\n text-align: left;\n span {\n color: $gray;\n border: 0 !important;\n background-color: transparent !important;\n }\n }\n }\n .dz-remove {\n background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-trash' viewBox='0 0 16 16'%3E%3Cpath d='M5.5 5.5A.5.5 0 0 1 6 6v6a.5.5 0 0 1-1 0V6a.5.5 0 0 1 .5-.5Zm2.5 0a.5.5 0 0 1 .5.5v6a.5.5 0 0 1-1 0V6a.5.5 0 0 1 .5-.5Zm3 .5a.5.5 0 0 0-1 0v6a.5.5 0 0 0 1 0V6Z'/%3E%3Cpath d='M14.5 3a1 1 0 0 1-1 1H13v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V4h-.5a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1H6a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1h3.5a1 1 0 0 1 1 1v1ZM4.118 4 4 4.059V13a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4.059L11.882 4H4.118ZM2.5 3h11V2h-11v1Z'/%3E%3C/svg%3E%0A\");\n background-size:contain;\n display: inline-block;\n position: absolute;\n top: 7px;\n right: 25px;\n font: 0/0 a;\n width: 18px;\n height: 18px;\n }\n .dz-error-message {\n top: 65px;\n left: 0;\n width: 100%;\n }\n .dz-success-mark,\n .dz-error-mark {\n top: 5px;\n right: 0;\n left: auto;\n margin-top: 0;\n &:before {\n color: $gray;\n }\n svg {\n display: none;\n }\n }\n .dz-success-mark {\n // Check icon\n width: 16px;\n height: 16px;\n background-image: url(\"data:image/svg+xml,%3Csvg width='13' height='13' viewBox='0 0 1792 1792' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%2370bf2b' d='M1412 734q0-28-18-46l-91-90q-19-19-45-19t-45 19l-408 407-226-226q-19-19-45-19t-45 19l-91 90q-18 18-18 46 0 27 18 45l362 362q19 19 45 19 27 0 46-19l543-543q18-18 18-45zm252 162q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z'/%3E%3C/svg%3E%0A\");\n background-size: contain;\n }\n .dz-error-mark {\n // Remove icon\n background-image: url(\"data:image/svg+xml,%3Csvg width='13' height='13' viewBox='0 0 1792 1792' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23dd4646' d='M1277 1122q0-26-19-45l-181-181 181-181q19-19 19-45 0-27-19-46l-90-90q-19-19-46-19-26 0-45 19l-181 181-181-181q-19-19-45-19-27 0-46 19l-90 90q-19 19-19 46 0 26 19 45l181 181-181 181q-19 19-19 45 0 27 19 46l90 90q19 19 46 19 26 0 45-19l181-181 181 181q19 19 45 19 27 0 46-19l90-90q19-19 19-46zm387-226q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z'/%3E%3C/svg%3E%0A\");\n width: 16px;\n height: 16px;\n background-size: contain;\n }\n &.dz-image-preview,\n &.dz-file-preview {\n background-color: transparent;\n .dz-image {\n overflow: hidden;\n width: 36px;\n height: 36px;\n border: solid 1px $gray-lighter;\n border-radius: 0;\n img {\n width: 100%;\n height: auto;\n }\n }\n }\n .dz-progress {\n top: 18px;\n left: 0;\n width: calc(100% - 40px);\n height: 10px;\n margin-left: 40px;\n }\n }\n .dz-message {\n float: right;\n color: $gray-dropzone;\n width: 100%;\n margin: 15px 0 0;\n }\n .icon {\n position: relative;\n top: 3px;\n color: $gray-dropzone;\n font-size: 24px;\n margin-right: 10px;\n }\n .filerFile .related-lookup {\n @include button-variant($btn-action-color, $btn-action-bgcolor, $btn-action-border, true);\n float: left !important;\n overflow: hidden;\n // makes true that button has correct height #668\n line-height: $font-size-normal;\n width: auto !important;\n height: auto !important;\n padding: 10px 20px !important;\n margin-top: 24px;\n margin-left: 10px;\n text-align: center !important;\n cursor: pointer;\n .cms-icon {\n color: $white;\n font-size: 17px;\n margin: 0 10px 0 0;\n vertical-align: middle;\n }\n &:before {\n display: none;\n }\n .choose-file,\n .replace-file,\n .edit-file {\n color: $white;\n margin: 0;\n }\n .replace-file {\n display: none;\n }\n &.edit {\n display: none;\n }\n &.related-lookup-change {\n @include button-variant($btn-default-color, $btn-default-bgcolor, $btn-default-border, true);\n float: right !important;\n padding: 5px 0 !important;\n width: 36px !important;\n height: 36px !important;\n &:focus {\n background-color: $white !important;\n }\n span {\n text-align: center;\n line-height: 24px;\n }\n .cms-icon {\n color: $btn-default-color;\n margin-right: 0 !important;\n }\n .choose-file {\n display: none;\n }\n .replace-file {\n display: block;\n }\n &.lookup {\n display: block !important;\n }\n &.edit {\n display: block;\n }\n }\n }\n // makes sure that filer clear button has correct size #669\n .filerClearer {\n width: 36px !important;\n height: 36px !important;\n color: $color-danger;\n }\n .filerFile {\n position: absolute;\n top: 9px;\n // required for django CMS <= 3.1 #673\n left: 20px;\n width: calc(100% - 40px);\n img[src*=nofile] {\n background-color: $white;\n }\n // make sure that text crops if there is not enough space #670\n span:not(:empty):not(.choose-file):not(.replace-file):not(.edit-file) {\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n width: calc(100% - 260px);\n height: 80px;\n line-height: 80px;\n }\n // required for django CMS <= 3.1 #673\n img {\n width: 80px;\n height: 80px;\n margin-right: 10px;\n border: solid 1px $gray-lighter;\n border-radius: $border-radius-base;\n vertical-align: top;\n &[src*=\"nofile\"] {\n box-sizing: border-box;\n margin-right: 0;\n border: solid 1px $gray-lighter;\n border-radius: $border-radius-base;\n }\n }\n // required for django CMS <= 3.1\n a {\n box-sizing: border-box;\n padding-top: 10px !important;\n }\n // required for django CMS <= 3.1 #673\n span {\n display: inline-block;\n color: $gray;\n font-weight: normal;\n margin-bottom: 6px;\n text-align: left;\n &:empty + .related-lookup {\n float: none !important;\n margin-left: 0 !important;\n }\n }\n // required for django CMS <= 3.1 #673\n a.filerClearer {\n @include button-variant($btn-default-color, $btn-default-bgcolor, $btn-default-border, true);\n float: right;\n padding: 5px 0 !important;\n margin: 24px 0 0 10px;\n width: 36px;\n height: 36px;\n text-align: center;\n cursor: pointer;\n span:before {\n color: $color-danger !important;\n }\n span {\n text-align: center;\n line-height: 24px;\n }\n }\n\n }\n &.filer-dropzone-mobile {\n .filerFile {\n text-align: center;\n }\n .dz-message {\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n // make sure that drag and drop widget looks nice on mobile #670\n margin-top: 75px;\n }\n &.js-object-attached .filerFile {\n text-align: center;\n &.js-file-selector {\n @media screen and (max-width: $screen-tablet-filer) {\n .description_text {\n text-overflow: ellipsis;\n width: calc(100% - 250px);\n overflow: hidden;\n }\n }\n >span:not(.choose-file):not(.replace-file):not(.edit-file), .dz-name {\n width: calc(100% - 250px);\n }\n }\n }\n\n }\n &.filer-dropzone-folder .filerFile {\n top: 8px;\n #id_folder_description_txt {\n float: left;\n }\n }\n\n @media (max-width: 767px) {\n flex-grow: 1;\n }\n\n }\n}\n\n.filer-dropzone {\n min-height: 100px !important;\n .dz-upload {\n height: 5px;\n background-color: $color-primary;\n }\n .dz-name {\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n max-width: calc(100% - 145px);\n }\n .dz-thumbnail {\n display: inline-block;\n overflow: hidden;\n vertical-align: top;\n width: 80px;\n height: 80px;\n margin-right: 10px;\n border: solid 1px $gray-lighter;\n border-radius: 3px;\n background: $white url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%232980b9' d='M5 2c-1.105 0-2 .9-2 2v18c0 1.1.895 2 2 2h14c1.105 0 2-.9 2-2V8l-6-6z'/%3E%3Cpath fill='%233498db' d='M5 1c-1.105 0-2 .9-2 2v18c0 1.1.895 2 2 2h14c1.105 0 2-.9 2-2V7l-6-6z'/%3E%3Cpath fill='%232980b9' d='m21 7-6-6v4c0 1.1.895 2 2 2z'/%3E%3C/svg%3E\");\n background-size: contain;\n img {\n background: $white;\n &[src=\"\"],\n &:not([src]) {\n width: 104%;\n height: 104%;\n margin: -2%;\n }\n }\n }\n}\n\n.filer-dropzone-info-message {\n position: fixed;\n bottom: 35px;\n left: 50%;\n z-index: 2;\n text-align: center;\n width: 270px;\n max-height: 300px;\n overflow-y: auto;\n margin: -50px 0 0 -150px;\n padding: 15px 15px 0;\n border-radius: $border-radius-base;\n background: $white;\n box-shadow: $base-box-shadow;\n .icon {\n font-size: 35px;\n color: $color-primary;\n }\n .text {\n margin: 5px 0 10px;\n }\n}\n.filer-dropzone-upload-info {\n margin-top: 10px;\n // make sure that file name on upload progress is cut #675\n .filer-dropzone-file-name {\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n }\n &:empty {\n margin-top: 0;\n }\n}\n.filer-dropzone-progress {\n height: 5px;\n margin-top: 5px;\n background-color: $color-primary;\n}\n\n.filer-dropzone-upload-welcome .folder {\n color: $color-primary;\n padding: 10px 0 0;\n margin: 0 -15px;\n border-top: solid 1px $gray-lighter;\n img,\n span {\n vertical-align: middle;\n }\n img {\n margin-right: 5px;\n }\n .folder-inner {\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n padding: 0 10px;\n }\n}\n\n.filer-dropzone-cancel {\n padding-top: 10px;\n border-top: solid 1px $gray-lighter;\n margin: 15px -15px 10px;\n a {\n font-size: $font-size-small;\n color: $gray !important;\n }\n}\n.filer-dropzone-upload-success,\n.filer-dropzone-upload-canceled {\n margin: 0 -15px 10px;\n}\n\n.filer-dropzone-upload-count {\n padding-bottom: 10px;\n margin: 10px -15px;\n border-bottom: solid 1px $gray-lighter;\n}\n",".filer-tooltip-wrapper {\n position: relative;\n}\n\n.filer-tooltip {\n position: absolute;\n left: -30px;\n right: -30px;\n color: $gray;\n text-align: center;\n font-size: $font-size-small !important;\n line-height: 15px !important;\n white-space: normal;\n margin-top: 5px;\n padding: 10px;\n background-color: $white;\n box-shadow: 0 0 10px rgba(black,.25);\n border-radius: 5px;\n z-index: 10;\n &:before {\n position: absolute;\n top: -3px;\n left: 50%;\n z-index: -1;\n content: '';\n width: 9px;\n height: 9px;\n margin-left: -5px;\n transform: rotate(45deg);\n background-color: $white;\n }\n}\n\n.disabled-btn-tooltip {\n display: none;\n outline: none;\n}\n","/*\n * The MIT License\n * Copyright (c) 2012 Matias Meno \n */\n@keyframes passing-through {\n 0% {\n opacity: 0;\n transform: translateY(40px);\n }\n 30%,\n 70% {\n opacity: 1;\n transform: translateY(0);\n }\n 100% {\n opacity: 0;\n transform: translateY(-40px);\n }\n}\n@keyframes slide-in {\n 0% {\n opacity: 0;\n transform: translateY(40px);\n }\n 30% {\n opacity: 1;\n transform: translateY(0);\n }\n}\n@keyframes pulse {\n 0% {\n transform: scale(1);\n }\n 10% {\n transform: scale(1.1);\n }\n 20% {\n transform: scale(1);\n }\n}\n.filer-dropzone,\n.filer-dropzone * {\n box-sizing: border-box;\n}\n\n.filer-dropzone {\n min-height: 150px;\n padding: 20px 20px;\n border: 2px solid rgba(0, 0, 0, 0.3);\n background: white;\n}\n.filer-dropzone.dz-clickable {\n cursor: pointer;\n}\n.filer-dropzone.dz-clickable * {\n cursor: default;\n}\n.filer-dropzone.dz-clickable .dz-message,\n.filer-dropzone.dz-clickable .dz-message * {\n cursor: pointer;\n}\n.filer-dropzone.dz-drag-hover {\n border-style: solid;\n}\n.filer-dropzone.dz-drag-hover .dz-message {\n opacity: 0.5;\n}\n.filer-dropzone .dz-message {\n text-align: center;\n margin: 2em 0;\n}\n.filer-dropzone .dz-preview {\n display: inline-block;\n position: relative;\n vertical-align: top;\n min-height: 100px;\n margin: 16px;\n}\n.filer-dropzone .dz-preview:hover {\n z-index: 1000;\n}\n.filer-dropzone .dz-preview:hover .dz-details {\n opacity: 1;\n}\n.filer-dropzone .dz-preview.dz-file-preview .dz-image {\n border-radius: 20px;\n background: $gray-light;\n background: linear-gradient(to bottom, $gray-lightest, $gray-lighter);\n}\n.filer-dropzone .dz-preview.dz-file-preview .dz-details {\n opacity: 1;\n}\n.filer-dropzone .dz-preview.dz-image-preview {\n background: white;\n}\n.filer-dropzone .dz-preview.dz-image-preview .dz-details {\n transition: opacity 0.2s linear;\n}\n.filer-dropzone .dz-preview .dz-remove {\n display: block;\n font-size: 14px;\n text-align: center;\n border: none;\n cursor: pointer;\n}\n.filer-dropzone .dz-preview .dz-remove:hover {\n text-decoration: underline;\n}\n.filer-dropzone .dz-preview:hover .dz-details {\n opacity: 1;\n}\n.filer-dropzone .dz-preview .dz-details {\n position: absolute;\n top: 0;\n left: 0;\n z-index: 20;\n color: rgba(0, 0, 0, 0.9);\n font-size: 13px;\n line-height: 150%;\n text-align: center;\n min-width: 100%;\n max-width: 100%;\n padding: 2em 1em;\n opacity: 0;\n}\n.filer-dropzone .dz-preview .dz-details .dz-size {\n font-size: 16px;\n margin-bottom: 1em;\n}\n.filer-dropzone .dz-preview .dz-details .dz-filename {\n white-space: nowrap;\n}\n.filer-dropzone .dz-preview .dz-details .dz-filename:hover span {\n border: 1px solid rgba(200, 200, 200, 0.8);\n background-color: rgba(255, 255, 255, 0.8);\n}\n.filer-dropzone .dz-preview .dz-details .dz-filename:not(:hover) {\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.filer-dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {\n border: 1px solid transparent;\n}\n.filer-dropzone .dz-preview .dz-details .dz-filename span,\n.filer-dropzone .dz-preview .dz-details .dz-size span {\n padding: 0 0.4em;\n border-radius: 3px;\n background-color: rgba(255, 255, 255, 0.4);\n}\n.filer-dropzone .dz-preview:hover .dz-image img {\n transform: scale(1.05, 1.05);\n\n filter: blur(8px);\n}\n.filer-dropzone .dz-preview .dz-image {\n display: block;\n position: relative;\n overflow: hidden;\n z-index: 10;\n width: 120px;\n height: 120px;\n border-radius: 20px;\n}\n.filer-dropzone .dz-preview .dz-image img {\n display: block;\n}\n.filer-dropzone .dz-preview.dz-success .dz-success-mark {\n animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);\n}\n.filer-dropzone .dz-preview.dz-error .dz-error-mark {\n opacity: 1;\n animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);\n}\n.filer-dropzone .dz-preview .dz-success-mark,\n.filer-dropzone .dz-preview .dz-error-mark {\n display: block;\n position: absolute;\n top: 50%;\n left: 50%;\n z-index: 500;\n margin-top: -27px;\n margin-left: -27px;\n pointer-events: none;\n opacity: 0;\n}\n.filer-dropzone .dz-preview .dz-success-mark svg,\n.filer-dropzone .dz-preview .dz-error-mark svg {\n display: block;\n width: 54px;\n height: 54px;\n}\n.filer-dropzone .dz-preview.dz-processing .dz-progress {\n opacity: 1;\n transition: all 0.2s linear;\n}\n.filer-dropzone .dz-preview.dz-complete .dz-progress {\n opacity: 0;\n transition: opacity 0.4s ease-in;\n}\n.filer-dropzone .dz-preview:not(.dz-processing) .dz-progress {\n animation: pulse 6s ease infinite;\n}\n.filer-dropzone .dz-preview .dz-progress {\n position: absolute;\n top: 50%;\n left: 50%;\n overflow: hidden;\n z-index: 1000;\n width: 80px;\n height: 16px;\n margin-top: -8px;\n margin-left: -40px;\n border-radius: 8px;\n pointer-events: none;\n opacity: 1;\n background: rgba(255, 255, 255, 0.9);\n}\n.filer-dropzone .dz-preview .dz-progress .dz-upload {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n width: 0;\n background: $gray-darkest;\n background: linear-gradient(to bottom, $gray, $gray-darkest);\n transition: width 300ms ease-in-out;\n}\n.filer-dropzone .dz-preview.dz-error .dz-error-message {\n display: block;\n}\n.filer-dropzone .dz-preview.dz-error:hover .dz-error-message {\n pointer-events: auto;\n opacity: 1;\n}\n.filer-dropzone .dz-preview .dz-error-message {\n display: block;\n display: none;\n position: absolute;\n top: 130px;\n left: -10px;\n z-index: 1000;\n color: $white;\n font-size: 13px;\n width: 140px;\n padding: 0.5em 1.2em;\n border-radius: 8px;\n pointer-events: none;\n opacity: 0;\n background: #be2626;\n background: linear-gradient(to bottom, #be2626, #a92222);\n transition: opacity 0.3s ease;\n}\n.filer-dropzone .dz-preview .dz-error-message:after {\n content: \"\";\n position: absolute;\n top: -6px;\n left: 64px;\n width: 0;\n height: 0;\n border-right: 6px solid transparent;\n border-bottom: 6px solid #be2626;\n border-left: 6px solid transparent;\n}\n"]} \ No newline at end of file diff --git a/filer/static/filer/js/base.js b/filer/static/filer/js/base.js index 72ce33ceb..d14ab215a 100644 --- a/filer/static/filer/js/base.js +++ b/filer/static/filer/js/base.js @@ -264,5 +264,19 @@ Cl.mediator = new Mediator(); $allFilesToggle.prop('checked', false); }); })(); + $('.js-copy-url').on('click', function (e) { + e.preventDefault(); + for(var el of document.getElementsByClassName('info filer-tooltip')) { + el.remove(); + } + var url = new URL(this.dataset.url, document.location.href); + var msg = this.dataset.msg || 'URL copied to clipboard'; + var infobox = document.createElement('template'); + navigator.clipboard.writeText(url.href); + infobox.innerHTML = '
' + msg + '
'; + this.classList.add('filer-tooltip-wrapper'); + this.appendChild(infobox.content.firstChild); + setTimeout(() => {this.getElementsByClassName('info')[0].remove(); }, 1200); + }); }); })(djQuery); diff --git a/filer/templates/admin/filer/folder/directory_table_list.html b/filer/templates/admin/filer/folder/directory_table_list.html index c1eb72f7e..db117d321 100644 --- a/filer/templates/admin/filer/folder/directory_table_list.html +++ b/filer/templates/admin/filer/folder/directory_table_list.html @@ -139,8 +139,12 @@ {% if file.canonical_url %} - + {% endif %} + + + + diff --git a/filer/templates/admin/filer/tools/detail_info.html b/filer/templates/admin/filer/tools/detail_info.html index aa57db1bd..a111bb487 100644 --- a/filer/templates/admin/filer/tools/detail_info.html +++ b/filer/templates/admin/filer/tools/detail_info.html @@ -10,11 +10,12 @@   {% translate "Download" %} - {% if original.mime_maintype == 'image' and "svg" not in original.mime_type %} - - {% translate "Expand" %}  - - + {% if original.mime_maintype == 'image' %} + + {% translate "Expand" %}  + + {% endif %} {% else %} {% translate "File is missing" %} diff --git a/tests/test_admin.py b/tests/test_admin.py index cfab9db30..de802146a 100644 --- a/tests/test_admin.py +++ b/tests/test_admin.py @@ -338,6 +338,20 @@ def test_detail_view_missing_file(self): self.assertContains(response, 'height="210"') self.assertContains(response, 'alt="File is missing"') + def test_image_expand_view(self): + url = reverse("admin:filer_image_expand_view", kwargs={ + 'file_id': self.file_object.pk + }) + original_url = self.file_object.url + + response = self.client.get(url) + + self.assertContains(response, f""" + + + +""") + class FilerClipboardAdminUrlsTests(TestCase): def setUp(self): @@ -1818,7 +1832,6 @@ def test_admin_url_params(self): class FileIconContextTests(TestCase): - def test_image_icon_with_size(self): """ Image with get an aspect ratio and will be present in context